2014-04-02 21:10:46 +00:00
|
|
|
Name: iperf3
|
2014-06-19 04:22:43 +00:00
|
|
|
Version: 3.0.5
|
|
|
|
Release: 1%{?dist}
|
2014-04-02 21:10:46 +00:00
|
|
|
Summary: Measurement tool for TCP/UDP bandwidth performance
|
|
|
|
|
|
|
|
Group: Applications/Internet
|
|
|
|
License: BSD
|
|
|
|
URL: http://github.com/esnet/iperf
|
2014-06-19 04:22:43 +00:00
|
|
|
Source0: http://downloads.es.net/pub/iperf/iperf-%{version}.tar.gz
|
2014-04-02 21:10:46 +00:00
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
BuildRequires: libuuid-devel
|
2011-04-26 02:25:34 +00:00
|
|
|
|
|
|
|
%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.
|
|
|
|
|
2014-03-31 16:20:31 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: Development/Libraries
|
2014-04-02 21:10:46 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2014-03-31 16:20:31 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
2011-04-26 02:25:34 +00:00
|
|
|
%prep
|
2014-01-16 18:04:42 +00:00
|
|
|
%setup -q -n iperf-%{version}
|
2011-04-26 02:25:34 +00:00
|
|
|
|
|
|
|
%build
|
2014-04-02 21:10:46 +00:00
|
|
|
%configure --disable-static
|
2011-04-26 02:25:34 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%makeinstall -C src INSTALL_DIR="%{buildroot}%{_bindir}"
|
|
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
2014-04-02 21:10:46 +00:00
|
|
|
rm -f %{buildroot}%{_libdir}/libiperf.la
|
2011-04-26 02:25:34 +00:00
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
2014-04-02 21:10:46 +00:00
|
|
|
%doc AUTHORS README.md LICENSE RELEASE_NOTES
|
2011-04-26 02:25:34 +00:00
|
|
|
%{_mandir}/man1/iperf3.1.gz
|
2013-05-04 19:17:29 +00:00
|
|
|
%{_mandir}/man3/libiperf.3.gz
|
2011-04-26 02:25:34 +00:00
|
|
|
%{_bindir}/iperf3
|
2014-04-02 07:30:37 +00:00
|
|
|
%{_libdir}/*.so.*
|
2011-04-26 02:25:34 +00:00
|
|
|
|
2014-04-02 21:10:46 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%files devel
|
2014-03-31 16:20:31 +00:00
|
|
|
%defattr(-,root,root,-)
|
2014-04-02 07:30:37 +00:00
|
|
|
%{_includedir}/iperf_api.h
|
2014-03-31 16:20:31 +00:00
|
|
|
%{_libdir}/*.so
|
2011-04-26 02:25:34 +00:00
|
|
|
|
|
|
|
%changelog
|
2014-06-19 04:22:43 +00:00
|
|
|
* Thu Jun 19 2014 Susant Sahani <ssahani@redhat.com> 3.0.5-1
|
|
|
|
- Update to 3.0.5
|
|
|
|
|
2014-06-11 04:45:12 +00:00
|
|
|
* Tue Jun 10 2014 Susant Sahani <ssahani@redhat.com> - 3.0.3-5
|
|
|
|
- fix compilation BZ #1106803
|
|
|
|
|
2014-06-07 22:35:37 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.3-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-02 21:10:46 +00:00
|
|
|
* Wed Apr 2 2014 François Cami <fcami@fedoraproject.org> - 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.
|
|
|
|
|
2014-04-02 07:30:37 +00:00
|
|
|
* Wed Apr 2 2014 Susant Sahani <ssahani@redhat.com> 3.0.3-2
|
|
|
|
- Moved static library to devel section only .
|
|
|
|
|
2014-03-31 16:20:31 +00:00
|
|
|
* Sun Mar 30 2014 Susant Sahani <ssahani@redhat.com> 3.0.3-1
|
|
|
|
- Update to 3.0.3 and added devel rpm support
|
|
|
|
|
2014-03-11 08:50:01 +00:00
|
|
|
* Tue Mar 11 2014 Susant Sahani <ssahani@redhat.com> 3.0.2-1
|
|
|
|
- Update to 3.0.2
|
|
|
|
|
2014-01-16 18:04:42 +00:00
|
|
|
* Tue Jan 14 2014 Susant Sahani <ssahani@redhat.com> 3.0.1-1
|
|
|
|
- Update to 3.0.1
|
|
|
|
|
2013-10-26 07:22:57 +00:00
|
|
|
* Fri Oct 25 2013 Steven Roberts <strobert@strobe.net> 3.0-1
|
|
|
|
- Update to 3.0
|
|
|
|
|
2013-08-03 19:49:51 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.5.b5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-04 19:17:29 +00:00
|
|
|
* Sat May 04 2013 Kevin Fenzi <kevin@scrye.com> 3.0-0.4.b5
|
|
|
|
- Update to 3.0b5
|
|
|
|
|
2013-02-14 02:12:00 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.3.b4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-19 15:00:47 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.2.b4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 05:57:25 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.1.b4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-04-26 02:25:34 +00:00
|
|
|
* Wed Apr 06 2011 G.Balaji <balajig81@gmail.com> 3.0b4-2
|
|
|
|
- Changed the Spec name, removed static libs generation and devel
|
|
|
|
- package.
|
|
|
|
|
|
|
|
* Sat Mar 26 2011 G.Balaji <balajig81@gmail.com> 3.0b4-1
|
|
|
|
- Initial Version
|
|
|
|
|