0f081b7b2e
* s/bandwidth/bitrate/ in user-facing places. Towards #583. iperf3 has long misused terminology; bandwidth is a measure of capacity. iperf3 measures bitrate or throughput. We standardize on "bitrate" because it begins with the same letter as "bandwidth" (to match the -b command-line option). User-facing output mentioning "bandwidth" now uses "bitrate". The long command-line option for -b (--bandwidth) is now --bitrate (--bandwidth is transparently accepted for backward compatibility). A few places in documentation that talk about bandwidth as a measured value have been reworded to use bitrate or throughput. There are a number of places in code where variables are still called "bandwidth". We leave these alone for now. A mention of "bandwidth" in the test parameters JSON also needs to remain unchanged to avoid breaking compatibility. However, the test results JSON never used the term "bandwidth" in the first place. * s/bandwidth/throughput in one place in RPM description. Towards #583.
107 строки
2.9 KiB
RPMSpec
107 строки
2.9 KiB
RPMSpec
Name: iperf3
|
|
Version: @VERSION@
|
|
Release: 1%{?dist}
|
|
Summary: Measurement tool for TCP/UDP bandwidth performance
|
|
|
|
Group: Applications/Internet
|
|
License: BSD
|
|
URL: http://github.com/esnet/iperf
|
|
Source0: http://stats.es.net/software/iperf-%{version}.tar.gz
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
%if 0%{?el5}
|
|
BuildRequires: e2fsprogs-devel, openssl-devel
|
|
%else
|
|
BuildRequires: openssl-devel
|
|
%endif
|
|
|
|
%description
|
|
iperf3 is a tool for active measurements of the maximum achievable
|
|
bandwidth between two IP hosts. It supports tuning of various
|
|
parameters related to timing, protocols, and buffers. For each test,
|
|
it reports the throughput, loss, and other parameters.
|
|
|
|
%package devel
|
|
Summary: Development files for %{name}
|
|
Group: Development/Libraries
|
|
|
|
%description devel
|
|
The %{name}-devel package contains libraries and header files for
|
|
developing applications that use %{name}.
|
|
|
|
%prep
|
|
%setup -q -n iperf-%{version}
|
|
|
|
%build
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
%makeinstall -C src INSTALL_DIR="%{buildroot}%{_bindir}"
|
|
mkdir -p %{buildroot}%{_mandir}/man1
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%%doc README.md INSTALL LICENSE RELEASE_NOTES
|
|
%{_mandir}/man1/iperf3.1.gz
|
|
%{_mandir}/man3/libiperf.3.gz
|
|
%{_bindir}/iperf3
|
|
%{_libdir}/*.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root,-)
|
|
%{_includedir}/iperf_api.h
|
|
%{_libdir}/libiperf.a
|
|
%{_libdir}/libiperf.la
|
|
%{_libdir}/*.so
|
|
%{_libdir}/*.so.*
|
|
|
|
%changelog
|
|
* Fri Aug 29 2014 Aaron Brown <aaron@internet2.edu> 3.0.7-1
|
|
- Update to 3.0.7
|
|
|
|
* Tue Jul 29 2014 Aaron Brown <aaron@internet2.edu> 3.0.6-1
|
|
- Update to 3.0.6
|
|
|
|
* Mon Jun 16 2014 Aaron Brown <aaron@internet2.edu> 3.0.5-1
|
|
- Update to 3.0.5
|
|
|
|
* Wed Apr 2 2014 Susant Sahani <ssahani@redhat.com> 3.0.3-2
|
|
- Moved static library to devel section only .
|
|
|
|
* Sun Mar 30 2014 Susant Sahani <ssahani@redhat.com> 3.0.3-1
|
|
- Update to 3.0.3 and added devel rpm support
|
|
|
|
* Tue Mar 11 2014 Susant Sahani <ssahani@redhat.com> 3.0.2-1
|
|
- Update to 3.0.2
|
|
|
|
* Tue Jan 14 2014 Susant Sahani <ssahani@redhat.com> 3.0.1-1
|
|
- Update to 3.0.1
|
|
|
|
* Fri Oct 25 2013 Steven Roberts <strobert@strobe.net> 3.0-1
|
|
- Update to 3.0
|
|
|
|
* Sat May 04 2013 Kevin Fenzi <kevin@scrye.com> 3.0-0.4.b5
|
|
- Update to 3.0b5
|
|
|
|
* 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
|
|
|
|
* 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
|
|
|
|
* 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
|
|
|
|
* 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
|
|
|