From aab71d03742ef59cfebcb4a9fb09e581a52ea028 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 7 May 2019 05:18:39 -0400 Subject: [PATCH] import iperf3-3.5-3.el8 --- .gitignore | 1 + .iperf3.metadata | 1 + SOURCES/0001-remove-sctp-from-manpage.patch | 43 +++++ SPECS/iperf3.spec | 180 ++++++++++++++++++++ 4 files changed, 225 insertions(+) create mode 100644 .gitignore create mode 100644 .iperf3.metadata create mode 100644 SOURCES/0001-remove-sctp-from-manpage.patch create mode 100644 SPECS/iperf3.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..881f8a1 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/iperf-3.5.tar.gz diff --git a/.iperf3.metadata b/.iperf3.metadata new file mode 100644 index 0000000..bbb7bda --- /dev/null +++ b/.iperf3.metadata @@ -0,0 +1 @@ +b255fe0905159bcfe2578e4774ab3091f69f898f SOURCES/iperf-3.5.tar.gz diff --git a/SOURCES/0001-remove-sctp-from-manpage.patch b/SOURCES/0001-remove-sctp-from-manpage.patch new file mode 100644 index 0000000..8f695c9 --- /dev/null +++ b/SOURCES/0001-remove-sctp-from-manpage.patch @@ -0,0 +1,43 @@ +diff --git a/src/iperf3.1 b/src/iperf3.1 +index 639d5a4..8751afa 100644 +--- a/src/iperf3.1 ++++ b/src/iperf3.1 +@@ -197,9 +197,6 @@ run in client mode, connecting to the specified server. + By default, a test consists of sending data from the client to the + server, unless the \-R flag is specified. + .TP +-.BR --sctp +-use SCTP rather than TCP (FreeBSD and Linux) +-.TP + .BR -u ", " --udp + use UDP rather than TCP + .TP +diff --git a/src/iperf3.1 b/src/iperf3.1 +index 8751afa..05483a9 100644 +--- a/src/iperf3.1 ++++ b/src/iperf3.1 +@@ -303,24 +303,6 @@ values can be specified in decimal, octal and hex (see --tos above). + .BR -L ", " --flowlabel " \fIn\fR" + set the IPv6 flow label (currently only supported on Linux) + .TP +-.BR -X ", " --xbind " \fIname\fR" +-Bind SCTP associations to a specific subset of links using sctp_bindx(3). +-The \fB--B\fR flag will be ignored if this flag is specified. +-Normally SCTP will include the protocol addresses of all active links +-on the local host when setting up an association. Specifying at least +-one \fB--X\fR name will disable this behaviour. +-This flag must be specified for each link to be included in the +-association, and is supported for both iperf servers and clients +-(the latter are supported by passing the first \fB--X\fR argument to bind(2)). +-Hostnames are accepted as arguments and are resolved using +-getaddrinfo(3). +-If the \fB--4\fR or \fB--6\fR flags are specified, names +-which do not resolve to addresses within the +-specified protocol family will be ignored. +-.TP +-.BR --nstreams " \fIn\fR" +-Set number of SCTP streams. +-.TP + .BR -Z ", " --zerocopy " " + Use a "zero copy" method of sending data, such as sendfile(2), + instead of the usual write(2). diff --git a/SPECS/iperf3.spec b/SPECS/iperf3.spec new file mode 100644 index 0000000..0c7006f --- /dev/null +++ b/SPECS/iperf3.spec @@ -0,0 +1,180 @@ +Name: iperf3 +Version: 3.5 +Release: 3%{?dist} +Summary: Measurement tool for TCP/UDP bandwidth performance + +Group: Applications/Internet +License: BSD +URL: http://github.com/esnet/iperf +Source0: http://downloads.es.net/pub/iperf/iperf-%{version}.tar.gz +BuildRequires: libuuid-devel git-core gcc make + +Patch0001: 0001-remove-sctp-from-manpage.patch + +%description +Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of +various parameters and UDP characteristics. Iperf reports bandwidth, delay +jitter, data-gram loss. + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%prep +%autosetup -S git -n iperf-%{version} + +%build +%configure --disable-static +sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool +sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +%makeinstall -C src INSTALL_DIR="%{buildroot}%{_bindir}" +mkdir -p %{buildroot}%{_mandir}/man1 +rm -f %{buildroot}%{_libdir}/libiperf.la + +%files +%defattr(-,root,root,-) +%doc README.md LICENSE RELEASE_NOTES +%{_mandir}/man1/iperf3.1.gz +%{_mandir}/man3/libiperf.3.gz +%{_bindir}/iperf3 +%{_libdir}/*.so.* + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files devel +%defattr(-,root,root,-) +%{_includedir}/iperf_api.h +%{_libdir}/*.so + +%changelog +* Sun Dec 16 2018 Michal Ruprich - 3.5-3 +- Related: #1647413 - Removing nstreams and xbind from man since these are SCTP-related options + +* Thu Nov 22 2018 Michal Ruprich - 3.5-2 +- Related: #1647413 - adding some BuildRequires + +* Thu Nov 22 2018 Michal Ruprich - 3.5-2 +- Resolves: #1647413 - iperf3 with option --sctp in client mode fails with error 'iperf3: unrecognized option --sctp' + +* Sat Mar 03 2018 Kevin Fenzi - 3.5-1 +- Update to 3.5. Fixes bug #1551166 + +* Fri Feb 16 2018 Kevin Fenzi - 3.4-1 +- Upgrade to 3.4. Fixes bug #1545468 + +* Wed Feb 07 2018 Fedora Release Engineering - 3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Sat Nov 04 2017 Kevin Fenzi - 3.3-1 +- Update to 3.3. Fixes bug #1508669 + +* Wed Aug 02 2017 Fedora Release Engineering - 3.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Jun 28 2017 Kevin Fenzi - 3.2-1 +- Update to 3.2. Fixes bug #1465195 + +* Wed Mar 08 2017 Kevin Fenzi - 3.1.7-1 +- Update to 3.1.7. Fixes bug #1429901 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.1.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Fri Feb 03 2017 Kevin Fenzi - 3.1.6-1 +- Update to 3.1.6. Fixes bug #1418879 + +* Fri Jan 13 2017 Kevin Fenzi - 3.1.5-1 +- Update to 3.1.5. Fixes bug #1412848 + +* Sat Nov 05 2016 Kevin Fenzi - 3.1.4-1 +- Update to 3.1.4. Fixes bug #1390396 + +* Wed Jun 08 2016 Kevin Fenzi - 3.1.3-1 +- Update to 3.1.3 + +* Thu Feb 04 2016 Fedora Release Engineering - 3.1b3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Oct 08 2015 Susant Sahani 3.1b3 +- Update to 3.1b3 + +* Wed Jun 17 2015 Fedora Release Engineering - 3.0.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon May 04 2015 Susant Sahani 3.0.11-1 +- Update to 3.0.11 + +* Sat Dec 20 2014 Susant Sahani 3.0.10-1 +- Update to 3.0.10 + +* Sat Aug 16 2014 Fedora Release Engineering - 3.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Wed Jul 30 2014 Susant Sahani 3.0.6-1 +- Update to 3.0.6 + +* Thu Jun 19 2014 Susant Sahani 3.0.5-1 +- Update to 3.0.5 + +* Tue Jun 10 2014 Susant Sahani - 3.0.3-5 +- fix compilation BZ #1106803 + +* Sat Jun 07 2014 Fedora Release Engineering - 3.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed Apr 2 2014 François Cami - 3.0.3-3 +- Drop static library support (#1081486). +- iperf3-devel subpackage must require iperf3. +- iperf3-devel should only contain the unversioned shared library. +- Call ldconfig since we are installing a shared library now. +- Removed INSTALL file. + +* Wed Apr 2 2014 Susant Sahani 3.0.3-2 +- Moved static library to devel section only . + +* Sun Mar 30 2014 Susant Sahani 3.0.3-1 +- Update to 3.0.3 and added devel rpm support + +* Tue Mar 11 2014 Susant Sahani 3.0.2-1 +- Update to 3.0.2 + +* Tue Jan 14 2014 Susant Sahani 3.0.1-1 +- Update to 3.0.1 + +* Fri Oct 25 2013 Steven Roberts 3.0-1 +- Update to 3.0 + +* Sat Aug 03 2013 Fedora Release Engineering - 3.0-0.5.b5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat May 04 2013 Kevin Fenzi 3.0-0.4.b5 +- Update to 3.0b5 + +* Thu Feb 14 2013 Fedora Release Engineering - 3.0-0.3.b4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Jul 19 2012 Fedora Release Engineering - 3.0-0.2.b4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Fri Jan 13 2012 Fedora Release Engineering - 3.0-0.1.b4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Apr 06 2011 G.Balaji 3.0b4-2 +- Changed the Spec name, removed static libs generation and devel +- package. + +* Sat Mar 26 2011 G.Balaji 3.0b4-1 +- Initial Version