linux-decnet-commit Mailing List for DECnet for Linux (Page 16)
Brought to you by:
chrissie_c,
ph3-der-loewe
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(15) |
Nov
(16) |
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(20) |
Feb
(27) |
Mar
(25) |
Apr
(12) |
May
(2) |
Jun
(6) |
Jul
(36) |
Aug
(12) |
Sep
(12) |
Oct
(16) |
Nov
(5) |
Dec
(5) |
2003 |
Jan
(8) |
Feb
(9) |
Mar
(25) |
Apr
(18) |
May
(29) |
Jun
(4) |
Jul
(1) |
Aug
|
Sep
(10) |
Oct
(5) |
Nov
(3) |
Dec
(9) |
2004 |
Jan
(17) |
Feb
|
Mar
(9) |
Apr
|
May
(4) |
Jun
(1) |
Jul
(2) |
Aug
(21) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2005 |
Jan
(5) |
Feb
|
Mar
(13) |
Apr
|
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
(13) |
Oct
(83) |
Nov
(2) |
Dec
|
2006 |
Jan
(21) |
Feb
(1) |
Mar
(32) |
Apr
(31) |
May
(3) |
Jun
(1) |
Jul
|
Aug
(7) |
Sep
|
Oct
(1) |
Nov
(3) |
Dec
(13) |
2007 |
Jan
(1) |
Feb
(7) |
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(20) |
Sep
|
Oct
|
Nov
|
Dec
(7) |
2008 |
Jan
(4) |
Feb
(13) |
Mar
(24) |
Apr
(18) |
May
(10) |
Jun
|
Jul
|
Aug
(40) |
Sep
(72) |
Oct
(61) |
Nov
(9) |
Dec
(2) |
2009 |
Jan
(6) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
(3) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
(41) |
Aug
(28) |
Sep
(2) |
Oct
(5) |
Nov
(4) |
Dec
|
2011 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Patrick C. <pa...@us...> - 2007-12-07 11:05:14
|
Update of /cvsroot/linux-decnet/dnprogs/librms In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7789/librms Modified Files: getreply.cc Log Message: Add some consts to get rid of compiler warnings. Index: getreply.cc =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/librms/getreply.cc,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** getreply.cc 15 Oct 2005 14:29:55 -0000 1.5 --- getreply.cc 7 Dec 2007 11:05:03 -0000 1.6 *************** *** 42,46 **** // Save this stuff so we can delete the message int code = sm->get_code() & 0xFF; ! char *err = sm->get_message(); delete m; --- 42,46 ---- // Save this stuff so we can delete the message int code = sm->get_code() & 0xFF; ! char *err = (char *)sm->get_message(); delete m; |
From: Patrick C. <pa...@us...> - 2007-12-07 11:03:42
|
Update of /cvsroot/linux-decnet/dnprogs/debian In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7391/debian Modified Files: changelog rules Log Message: Fix shlibs building Index: changelog =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/debian/changelog,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -r1.50 -r1.51 *** changelog 11 Aug 2007 10:18:36 -0000 1.50 --- changelog 7 Dec 2007 11:03:37 -0000 1.51 *************** *** 1,2 **** --- 1,9 ---- + dnprogs (2.39.2) unstable; urgency=low + + * Fix package building with new dpkg-shlibdeps + Closes: #453786 + + -- Patrick Caulfield <pa...@de...> Fri, 07 Dec 2007 11:02:10 +0000 + dnprogs (2.39.1) unstable; urgency=low Index: rules =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/debian/rules,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** rules 11 Feb 2007 13:09:44 -0000 1.23 --- rules 7 Dec 2007 11:03:37 -0000 1.24 *************** *** 50,56 **** dh_compress -pdnet-common dh_fixperms -pdnet-common dh_shlibdeps -pdnet-common dh_gencontrol -pdnet-common - dh_makeshlibs -pdnet-common dh_installdeb -pdnet-common dh_md5sums -pdnet-common --- 50,56 ---- dh_compress -pdnet-common dh_fixperms -pdnet-common + dh_makeshlibs -pdnet-common dh_shlibdeps -pdnet-common dh_gencontrol -pdnet-common dh_installdeb -pdnet-common dh_md5sums -pdnet-common *************** *** 85,91 **** dh_compress -Ndnet-common dh_fixperms -Ndnet-common dh_shlibdeps -Ndnet-common dh_gencontrol -Ndnet-common ! dh_makeshlibs -Ndnet-common dh_installdeb -Ndnet-common dh_md5sums -Ndnet-common --- 85,92 ---- dh_compress -Ndnet-common dh_fixperms -Ndnet-common + dh_makeshlibs -Ndnet-common dh_shlibdeps -Ndnet-common dh_gencontrol -Ndnet-common ! dh_installdeb -Ndnet-common dh_md5sums -Ndnet-common |
From: Patrick C. <pa...@us...> - 2007-08-11 10:18:41
|
Update of /cvsroot/linux-decnet/dnprogs/debian In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv19300/debian Modified Files: changelog Log Message: 2.39.2 Index: changelog =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/debian/changelog,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -r1.49 -r1.50 *** changelog 4 Jun 2007 09:09:10 -0000 1.49 --- changelog 11 Aug 2007 10:18:36 -0000 1.50 *************** *** 1,2 **** --- 1,9 ---- + dnprogs (2.39.1) unstable; urgency=low + + * Honour DEB_BUILD_OPTIONS=nostrip + Closes: #436773 + + -- Patrick Caulfield <pa...@de...> Sat, 11 Aug 2007 11:11:38 +0100 + dnprogs (2.39) unstable; urgency=low |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:12
|
Update of /cvsroot/linux-decnet/dnprogs/phone In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/phone Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/phone/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile 12 Aug 2004 09:17:34 -0000 1.5 --- Makefile 9 Aug 2007 09:26:55 -0000 1.6 *************** *** 63,68 **** install -d $(manprefix)/man/man1 install -d $(manprefix)/man/man8 ! install -m 0755 -s $(PROG1) $(prefix)/bin ! install -m 0755 -s $(PROG2) $(prefix)/sbin install -m 0644 $(MANPAGES1) $(manprefix)/man/man1 install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 --- 63,68 ---- install -d $(manprefix)/man/man1 install -d $(manprefix)/man/man8 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin ! install -m 0755 $(STRIPBIN) $(PROG2) $(prefix)/sbin install -m 0644 $(MANPAGES1) $(manprefix)/man/man1 install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:12
|
Update of /cvsroot/linux-decnet/dnprogs/fal In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/fal Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/fal/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile 12 Aug 2004 09:17:34 -0000 1.3 --- Makefile 9 Aug 2007 09:26:54 -0000 1.4 *************** *** 19,23 **** install -d $(manprefix)/man/man8 install -d $(manprefix)/man/man5 ! install -m 0755 -s $(PROG1) $(prefix)/sbin install -m 0644 fal.8 $(manprefix)/man/man8 install -m 0644 decnet.proxy.5 $(manprefix)/man/man5 --- 19,23 ---- install -d $(manprefix)/man/man8 install -d $(manprefix)/man/man5 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/sbin install -m 0644 fal.8 $(manprefix)/man/man8 install -m 0644 decnet.proxy.5 $(manprefix)/man/man5 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:05
|
Update of /cvsroot/linux-decnet/dnprogs/libdnet In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/libdnet Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdnet/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** Makefile 12 Aug 2004 09:17:34 -0000 1.7 --- Makefile 9 Aug 2007 09:26:54 -0000 1.8 *************** *** 43,47 **** install -d $(libprefix)/lib install -m 0644 libdnet.a $(libprefix)/lib/libdnet.a ! install -m 0644 -s $(SHAREDLIB) $(libprefix)/lib/$(SHAREDLIB) ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so.$(MAJOR_VERSION) ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so --- 43,47 ---- install -d $(libprefix)/lib install -m 0644 libdnet.a $(libprefix)/lib/libdnet.a ! install -m 0644 $(STRIPBIN) $(SHAREDLIB) $(libprefix)/lib/$(SHAREDLIB) ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so.$(MAJOR_VERSION) ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:05
|
Update of /cvsroot/linux-decnet/dnprogs/libdaemon In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/libdaemon Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdaemon/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Makefile 24 Jan 2006 13:53:20 -0000 1.9 --- Makefile 9 Aug 2007 09:26:54 -0000 1.10 *************** *** 34,38 **** install: ! install -m 0644 -s $(SHAREDLIB) $(libprefix)/lib install -m 0644 $(STATICLIB) $(libprefix)/lib ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so.$(MAJOR_VERSION) --- 34,38 ---- install: ! install -m 0644 $(STRIPBIN) $(SHAREDLIB) $(libprefix)/lib install -m 0644 $(STATICLIB) $(libprefix)/lib ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so.$(MAJOR_VERSION) |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:04
|
Update of /cvsroot/linux-decnet/dnprogs/multinet In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/multinet Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/multinet/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile 30 Mar 2006 07:56:11 -0000 1.2 --- Makefile 9 Aug 2007 09:26:55 -0000 1.3 *************** *** 12,16 **** install -d $(prefix)/sbin install -d $(manprefix)/man/man8 ! install -m 0755 -s multinet $(prefix)/sbin install -m 0644 multinet.8 $(manprefix)/man/man8 --- 12,16 ---- install -d $(prefix)/sbin install -d $(manprefix)/man/man8 ! install -m 0755 $(STRIPBIN) multinet $(prefix)/sbin install -m 0644 multinet.8 $(manprefix)/man/man8 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:02
|
Update of /cvsroot/linux-decnet/dnprogs/dnsubmit In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dnsubmit Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnsubmit/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile 12 Aug 2004 09:17:33 -0000 1.4 --- Makefile 9 Aug 2007 09:26:54 -0000 1.5 *************** *** 21,25 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin ln -sf $(PROG1) $(prefix)/bin/$(PROG2) install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 21,25 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin ln -sf $(PROG1) $(prefix)/bin/$(PROG2) install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dntask In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dntask Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dntask/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile 12 Aug 2004 09:17:33 -0000 1.3 --- Makefile 9 Aug 2007 09:26:54 -0000 1.4 *************** *** 17,21 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 17,21 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/librms In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/librms Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/librms/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile 18 Jan 2002 19:15:45 -0000 1.5 --- Makefile 9 Aug 2007 09:26:54 -0000 1.6 *************** *** 49,53 **** install: install -d $(prefix)/lib ! install -m 0644 -s $(SHAREDLIB) $(libprefix)/lib install -m 0644 $(STATICLIB) $(libprefix)/lib install -d $(prefix)/include --- 49,53 ---- install: install -d $(prefix)/lib ! install -m 0644 $(STRIPBIN) $(SHAREDLIB) $(libprefix)/lib install -m 0644 $(STATICLIB) $(libprefix)/lib install -d $(prefix)/include |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dnroute In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dnroute Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnroute/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Makefile 5 Apr 2006 08:52:00 -0000 1.9 --- Makefile 9 Aug 2007 09:26:54 -0000 1.10 *************** *** 16,20 **** install -d $(prefix)/sbin install -d $(manprefix)/man/man8 ! install -m 0755 -s dnroute $(prefix)/sbin install -m 0755 dnetinfo.sh $(prefix)/sbin/dnetinfo install -m 0644 dnroute.8 $(manprefix)/man/man8 --- 16,20 ---- install -d $(prefix)/sbin install -d $(manprefix)/man/man8 ! install -m 0755 $(STRIPBIN) dnroute $(prefix)/sbin install -m 0755 dnetinfo.sh $(prefix)/sbin/dnetinfo install -m 0644 dnroute.8 $(manprefix)/man/man8 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dndel In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dndel Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dndel/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile 12 Aug 2004 09:17:32 -0000 1.3 --- Makefile 9 Aug 2007 09:26:54 -0000 1.4 *************** *** 17,21 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 17,21 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/libdap In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/libdap Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/libdap/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile 24 Sep 2003 15:53:43 -0000 1.4 --- Makefile 9 Aug 2007 09:26:54 -0000 1.5 *************** *** 34,38 **** install: ! install -m 0644 -s $(SHAREDLIB) $(libprefix)/lib install -m 0644 $(STATICLIB) $(libprefix)/lib ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so.$(MAJOR_VERSION) --- 34,38 ---- install: ! install -m 0644 $(STRIPBIN) $(SHAREDLIB) $(libprefix)/lib install -m 0644 $(STATICLIB) $(libprefix)/lib ln -sf $(SHAREDLIB) $(libprefix)/lib/$(LIBNAME).so.$(MAJOR_VERSION) |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/mail In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/mail Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/mail/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** Makefile 16 Oct 2005 09:00:41 -0000 1.8 --- Makefile 9 Aug 2007 09:26:55 -0000 1.9 *************** *** 37,42 **** install -d $(manprefix)/man/man5 install -d $(manprefix)/man/man8 ! install -m 0755 -s $(PROG1) $(prefix)/sbin ! install -m 0755 -s $(PROG2) $(prefix)/sbin install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 --- 37,42 ---- install -d $(manprefix)/man/man5 install -d $(manprefix)/man/man8 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/sbin ! install -m 0755 $(STRIPBIN) $(PROG2) $(prefix)/sbin install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dnetd In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dnetd Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnetd/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile 12 Aug 2004 09:17:33 -0000 1.4 --- Makefile 9 Aug 2007 09:26:54 -0000 1.5 *************** *** 22,26 **** install -d $(manprefix)/man/man5 install -d $(manprefix)/man/man8 ! install -m 0750 -s $(PROG1) $(prefix)/sbin install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 --- 22,26 ---- install -d $(manprefix)/man/man5 install -d $(manprefix)/man/man8 ! install -m 0750 $(STRIPBIN) $(PROG1) $(prefix)/sbin install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 install -m 0644 $(MANPAGES8) $(manprefix)/man/man8 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dnlogin In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dnlogin Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dnlogin/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** Makefile 21 Mar 2006 16:32:01 -0000 1.7 --- Makefile 9 Aug 2007 09:26:54 -0000 1.8 *************** *** 22,26 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 22,26 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/apps In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/apps Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/apps/Makefile,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Makefile 27 Apr 2006 09:52:48 -0000 1.9 --- Makefile 9 Aug 2007 09:26:54 -0000 1.10 *************** *** 69,78 **** install -d $(manprefix)/man/man8 install -d $(sysconfprefix)/etc ! install -m 0755 -s $(PROG2) $(prefix)/bin ! install -m 0755 -s $(PROG4) $(prefix)/bin ! install -m 0755 -s $(PROG5) $(prefix)/sbin install -m 0700 setether.sh $(prefix)/sbin/setether ! if [ -f $(PROG6) ]; then install -m 0750 -s $(PROG6) $(prefix)/sbin; fi ! install -m 0755 -s $(PROG7) $(prefix)/sbin install -m 0644 $(MANPAGES1) $(manprefix)/man/man1 install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 --- 69,78 ---- install -d $(manprefix)/man/man8 install -d $(sysconfprefix)/etc ! install -m 0755 $(STRIPBIN) $(PROG2) $(prefix)/bin ! install -m 0755 $(STRIPBIN) $(PROG4) $(prefix)/bin ! install -m 0755 $(STRIPBIN) $(PROG5) $(prefix)/sbin install -m 0700 setether.sh $(prefix)/sbin/setether ! if [ -f $(PROG6) ]; then install -m 0750 $(STRIPBIN) $(PROG6) $(prefix)/sbin; fi ! install -m 0755 $(STRIPBIN) $(PROG7) $(prefix)/sbin install -m 0644 $(MANPAGES1) $(manprefix)/man/man1 install -m 0644 $(MANPAGES5) $(manprefix)/man/man5 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010 Modified Files: Makefile.common Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile.common =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/Makefile.common,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -r1.40 -r1.41 *** Makefile.common 28 Feb 2007 17:12:44 -0000 1.40 --- Makefile.common 9 Aug 2007 09:26:54 -0000 1.41 *************** *** 137,140 **** --- 137,146 ---- endif + ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + STRIPBIN= + else + STRIPBIN=-s + endif + LIBS=$(LIBDAP) $(LIBDNET) DEPLIBS=$(DEPLIBDAP) $(DEPLIBDNET) |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dncopy In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dncopy Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dncopy/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile 10 Mar 2006 08:13:16 -0000 1.4 --- Makefile 9 Aug 2007 09:26:54 -0000 1.5 *************** *** 21,25 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin ln -sf $(PROG1) $(prefix)/bin/$(PROG2) install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 21,25 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin ln -sf $(PROG1) $(prefix)/bin/$(PROG2) install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dndir In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dndir Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dndir/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile 12 Aug 2004 09:17:33 -0000 1.3 --- Makefile 9 Aug 2007 09:26:54 -0000 1.4 *************** *** 17,21 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 17,21 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-08-09 09:27:01
|
Update of /cvsroot/linux-decnet/dnprogs/dapfs In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv1010/dapfs Modified Files: Makefile Log Message: Honour DEB_BUILD_OPTIONS=nostrip Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/dapfs/Makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile 28 Oct 2005 15:14:54 -0000 1.3 --- Makefile 9 Aug 2007 09:26:54 -0000 1.4 *************** *** 11,15 **** all: $(PROG1) ! CFLAGS=-g $(PROG1): $(PROG1OBJS) $(DEPLIBS) --- 11,15 ---- all: $(PROG1) ! CFLAGS=-g -I../include $(PROG1): $(PROG1OBJS) $(DEPLIBS) *************** *** 19,23 **** install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 -s $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 --- 19,23 ---- install -d $(prefix)/bin install -d $(manprefix)/man/man1 ! install -m 0755 $(STRIPBIN) $(PROG1) $(prefix)/bin install -m 0644 $(MANPAGES) $(manprefix)/man/man1 |
From: Patrick C. <pa...@us...> - 2007-07-16 08:05:23
|
Update of /cvsroot/linux-decnet/dnprogs/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv29839 Modified Files: Makefile Added Files: dnetconf dnetd Log Message: Add scripts for gentoo. Thanks to Scott Lorberbaum --- NEW FILE: dnetconf --- # Dnetd config file for gentoo # DECnet services # Daemons to start. You may remove the ones you don't want daemons="dnetd" #daemons="dnetd phoned" # Prefix for where the progs are installed. Either /usr or /usr/local # depending on whether a certain use flag was set during emerge. prefix=/usr/local # Please set this to the same interface as the default one that # has been specified in the /etc/decnet.conf file # this is only used for the /etc/init.d/dnetd file ETHER=eth2 # Interfaces to set the MAC address of. By default only the default # interface in /etc/decnet.conf will be set. If you want to setup # more interfaces for DECnet than add them here. extra_interfaces="" # DON'T EDIT THESE YET! # Various variables startendecho="" stopendecho="done." # INFORMATION ON STARTING DNETD FROM /etc/conf.d/local.start # # Here is an example from my own machine that I use to get the # service started in the bootup process # bring the interface down # ifconfig your_default_interface down # run the dnetd startup script # /etc/init.d/dnetd start # bring the interface backup # ifconfig your_default_interface up # make sure the default interface is known to the kernel # echo "your_default_interface" > /proc/sys/net/decnet/default_device # make sure this hosts node name is known to the kernel # echo "mynodename" > /proc/sys/net/decnet/node_name # echo make sure this hosts node address is known to the kernel # echo mynodeaddress > /proc/sys/net/decnet/node_address # re-add the default gateway is your gateway is set manually or is static # route add default gw default_gw # Add neighbors to the default interface with addresses of remote_node_address(1-3) # to the kernel # ip -f dnet neigh add remote_node_address1 dev default_interface # ip -f dnet neigh add remote_node_address2 dev default_interface # ip -f dnet neigh add remote_node_address3 dev default_interface --- NEW FILE: dnetd --- #!/sbin/runscript # # /etc/init.d/dnetd # # Starts/Stops DECnet processes # # description: DECnet. # processname: dnetd # config: /etc/decnet.conf # # # This script should go in # /etc/init.d for Gentoo Linux # # You can install it using the following command: # # rc-update add dnetd default # # ----------------------------------------------------------------------------- # depend() { before net.${ETHER} } checkconfig() { [[ ! -f /etc/decnet.conf ]] && echo $"DECnet not started as it is not configured." && return 1 # If there is no DECnet in the kernel then try to load it. [[ ! -f /proc/net/decnet ]] && modprobe decnet [[ ! -f /proc/net/decnet ]] && echo $"DECnet not started as it is not in the kernel." && return 1 } start() { local myopts="/var/run/${SVCNAME}.pid" checkconfig || (echo "not checked good" && return 1) #echo -n $"Starting DECnet: " NODE=`grep executor /etc/decnet.conf| awk '{print $2}'` echo "$NODE" > /proc/sys/net/decnet/node_address CCT=`grep executor /etc/decnet.conf | awk '{print $6}'` echo "$CCT" > /proc/sys/net/decnet/default_device $prefix/sbin/setether $NODE $CCT $extra_interfaces ebegin "Starting ${SVCNAME}" for i in $daemons do echo " starting $i"; start-stop-daemon --start --startas $prefix/sbin/$i --name dnetd # echo -n $" `eval echo $startecho`" done #echo $"$startendecho" eend $? } stop() { ebegin "Stopping ${SVCNAME}" start-stop-daemon --stop --quiet --exec dnetd eend $? } reload() { ebegin "Reloading ${SVCNAME}" start-stop-daemon --stop --quiet --pidfile /var/run/${SVCNAME}.pid \ --signal HUP eend $? } restart() { svc_stop svc_start eend $? } Index: Makefile =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/scripts/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile 12 Aug 2004 09:17:34 -0000 1.6 --- Makefile 16 Jul 2007 08:05:19 -0000 1.7 *************** *** 19,23 **** elif [ -d /var/lib/rpm ]; then \ install -Dm 0700 decnet.sh $(sysconfprefix)/etc/rc.d/init.d/decnet; \ ! else install -Dm 0700 rc.decnet $(sysconfprefix)/etc/rc.d/rc.decnet; \ fi endif --- 19,26 ---- elif [ -d /var/lib/rpm ]; then \ install -Dm 0700 decnet.sh $(sysconfprefix)/etc/rc.d/init.d/decnet; \ ! elif [ -d /var/lib/portage ]; then \ ! install -Dm 0700 dnetd $(sysconfprefix)/etc/init.d/dnetd; \ ! install -Dm 0700 dnetconf $(sysconfprefix)/etc/conf.d/dnetd; \ ! else install -Dm 0700 rc.decnet $(sysconfprefix)/etc/rc.d/rc.decnet; \ fi endif |
From: Patrick C. <pa...@us...> - 2007-07-15 16:04:11
|
Update of /cvsroot/linux-decnet/dnprogs/dapfs In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv30559 Added Files: dapfs.h Log Message: --- NEW FILE: dapfs.h --- #define VMSNAME_LEN 2048 #define BUFLEN 1024 |
From: Patrick C. <pa...@us...> - 2007-06-04 09:09:16
|
Update of /cvsroot/linux-decnet/dnprogs/debian In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23928/debian Modified Files: changelog Log Message: Add bug fix number Index: changelog =================================================================== RCS file: /cvsroot/linux-decnet/dnprogs/debian/changelog,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -r1.48 -r1.49 *** changelog 16 Feb 2007 10:07:36 -0000 1.48 --- changelog 4 Jun 2007 09:09:10 -0000 1.49 *************** *** 2,7 **** * Fix compile error with latest kernel headers. ! -- Patrick Caulfield <pa...@de...> Sat, 17 Feb 2007 11:01:19 +0000 dnprogs (2.38.2) unstable; urgency=low --- 2,8 ---- * Fix compile error with latest kernel headers. + Closes: #427324 ! -- Patrick Caulfield <pa...@de...> Mon, 4 Jun 2007 09:58:58 +0100 dnprogs (2.38.2) unstable; urgency=low |