--- netsend-0.0~svnr250.orig/netsend.pod +++ netsend-0.0~svnr250/netsend.pod @@ -128,6 +128,11 @@ =back +=back + +=back + +=back =head1 EXIT STATUS --- netsend-0.0~svnr250.orig/proto_udplite_trans.c +++ netsend-0.0~svnr250/proto_udplite_trans.c @@ -24,6 +24,7 @@ #include #include +#include #include #include #include --- netsend-0.0~svnr250.orig/proto_udplite_recv.c +++ netsend-0.0~svnr250/proto_udplite_recv.c @@ -22,6 +22,7 @@ #include #include +#include #include #include #include --- netsend-0.0~svnr250.orig/Makefile +++ netsend-0.0~svnr250/Makefile @@ -44,7 +44,7 @@ @bash configure $(TARGET): $(OBJECTS) - $(CC) $(LIBS) $(CFLAGS) -o $(TARGET) $(OBJECTS) + $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) %.o: %.c analyze.h error.h global.h xfuncs.h Makefile $(CC) $(CFLAGS) -c $< -o $@ --- netsend-0.0~svnr250.orig/debian/changelog +++ netsend-0.0~svnr250/debian/changelog @@ -0,0 +1,64 @@ +netsend (0.0~svnr250-1.2ubuntu1) trusty; urgency=low + + * Merge from Debian unstable. Remaining changes: + - Reorder libraries to fix FTBFS with ld --as-needed + + -- Angel Abad Wed, 23 Oct 2013 13:42:10 +0200 + +netsend (0.0~svnr250-1.2) unstable; urgency=low + + * Non-maintainer upload. + * Fix "FTBFS with perl 5.18: POD errors": + apply patch from brian m. carlson that fixed the POD syntax. + (Closes: #719504) + + -- gregor herrmann Tue, 20 Aug 2013 16:09:24 +0200 + +netsend (0.0~svnr250-1.1ubuntu1) oneiric; urgency=low + + * Reorder libraries to fix FTBFS with ld --as-needed (LP: #770804) + + -- Angel Abad Sat, 20 Aug 2011 13:26:07 +0200 + +netsend (0.0~svnr250-1.1) unstable; urgency=medium + + * Non-maintainer upload. + * Include in proto_udplite_{recv,trans}.c to fix FTBFS under glibc + 2.9. (Closes: #518844) + + -- Chris Lamb Mon, 03 Aug 2009 19:10:10 +0100 + +netsend (0.0~svnr250-1) unstable; urgency=low + + * New upstream SVN revision: + General code cleanup + Manpage updates + RW now default xmit method + New support for TCP_MD5SIG + + -- Martin Peylo Sun, 06 Apr 2008 18:16:58 +0200 + +netsend (0.0~svnr220-1) unstable; urgency=low + + * New upstream SVN revision: + Bug effectively disabling TIPC usage was fixed. + Now falling back to other send methods if the default does not work with + the specified protocol. + + -- Martin Peylo Thu, 13 Mar 2008 01:07:58 +0100 + +netsend (0.0~svnr218-1) unstable; urgency=low + + * New upstream SVN revision: + UDPlite support was improved. + Superfluous debug ouput for short option was removed. + Internal protocol handling was restructured. + + -- Martin Peylo Tue, 19 Feb 2008 02:39:23 +0100 + +netsend (0.0~svnr206-1) unstable; urgency=low + + * Initial release (Closes: # 457384) + + -- Martin Peylo Sat, 22 Dec 2007 13:23:17 +0100 + --- netsend-0.0~svnr250.orig/debian/copyright +++ netsend-0.0~svnr250/debian/copyright @@ -0,0 +1,33 @@ +This package was debianized by Martin Peylo on +Sat, 22 Dec 2007 01:35:07 +0100. + +It was downloaded from http://netsend.berlios.de/ with SVN + svn co http://svn.berlios.de/svnroot/repos/netsend/trunk + +Upstream Author: Florian Westphal + Hagen Paul Pfeifer + +Copyright: 2006 - Hagen Paul Pfeifer + 2007 - Florian Westphal + +License: + + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2007, Martin Peylo and +is licensed under the GPL, see above. --- netsend-0.0~svnr250.orig/debian/compat +++ netsend-0.0~svnr250/debian/compat @@ -0,0 +1 @@ +5 --- netsend-0.0~svnr250.orig/debian/dirs +++ netsend-0.0~svnr250/debian/dirs @@ -0,0 +1 @@ +usr/bin --- netsend-0.0~svnr250.orig/debian/control +++ netsend-0.0~svnr250/debian/control @@ -0,0 +1,23 @@ +Source: netsend +Section: net +Priority: optional +Maintainer: Ubuntu Developers +XSBC-Original-Maintainer: Martin Peylo +Build-Depends: debhelper (>= 5), linux-libc-dev | linux-kernel-headers, perl +Standards-Version: 3.7.3 +Homepage: http://netsend.berlios.de/ + +Package: netsend +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Suggests: tipcutils +Description: a speedy filetransfer and network diagnostic program + Netsend transmits and receives files. It is highly configurable and offers + the transport protocols TCP, DCCP, UDP, UDPLITE and SCTP using either + IPv4 or IPv6 on the network layer. The cluster protocol TIPC is also + supported. + . + The user is able to tweak various options of the Linux network stack + to gain maximum performance. While this is not needed for trivial + filetransfer, it is valuable for network protocol performance + testing. --- netsend-0.0~svnr250.orig/debian/docs +++ netsend-0.0~svnr250/debian/docs @@ -0,0 +1 @@ +TODO --- netsend-0.0~svnr250.orig/debian/rules +++ netsend-0.0~svnr250/debian/rules @@ -0,0 +1,101 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Actually --prefix is ignored so far (svn rev 206) + ./configure --prefix=$(CURDIR)/debian/netsend/usr + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # This builds netsend + $(MAKE) + # This builds netsend.1 + $(MAKE) man + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + $(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Upstream make ignores the "configure --prefix=" + # setting so far (svn rev 203) + $(MAKE) DESTDIR=$(CURDIR)/debian/netsend/usr install + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_installexamples unit_test.sh +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman netsend.1 +# dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install