# # spec file for package iperf # # Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed # upon. The license for this file, and modifications and additions to the # file, is the same license as for the pristine package itself (unless the # license for the pristine package is not an Open Source License, in which # case the license is the MIT License). An "Open Source License" is a # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. # Please submit bugfixes or comments via http://bugs.opensuse.org/ # Name: iperf Version: 3.0.2 Release: 0 %define soname 0 Summary: A tool to measure network performance License: BSD-3-Clause Group: Productivity/Networking/Diagnostic Url: https://github.com/esnet/iperf Source: https://github.com/esnet/iperf/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz # PATCH-FIX-UPSTREAM -- Prevent a possible buffer overflow in strcat Patch0: iperf-3.0.2_strncat_bufferoverflow.patch # PATCH-FIX-OPENSUSE -- Disable profiling on i586, as option -pg conflicts with -fomit-frame-pointer Patch1: iperf-3.0.2_disable-profiling.patch BuildRequires: libuuid-devel BuildRoot: %{_tmppath}/%{name}-%{version}-build %description %{name} is a tool for active measurements of the maximum achievable bandwidth on IP networks. It supports tuning of various parameters related to timing, protocols, and buffers. For each test it reports the bandwidth, loss, and other parameters. This version, sometimes referred to as iperf3, is a redesign of an original version developed at NLANR/DAST. iperf3 is a new implementation from scratch, with the goal of a smaller, simpler code base, and a library version of the functionality that can be used in other programs. iperf3 also a number of features found in other tools such as nuttcp and netperf, but were missing from the original iperf. These include, for example, a zero-copy mode and optional JSON output. Note that iperf3 is NOT backwards compatible with the original iperf. %package -n lib%{name}%{soname} Summary: A library to measure network performance Group: Development/Libraries/C and C++ %description -n lib%{name}%{soname} lib%{name} gives you access to all the functionality of the iperf3 network testing tool. You can build it directly into your own program, instead of having to run it as a shell command. %package devel Summary: A tool to measure network performance Group: Development/Libraries/C and C++ Requires: lib%{name}%{soname} = %{version} Requires: libuuid-devel %description devel %{name} is a tool for active measurements of the maximum achievable bandwidth on IP networks. It supports tuning of various parameters related to timing, protocols, and buffers. For each test it reports the bandwidth, loss, and other parameters. This package contains development files. %prep %setup -q %patch0 -p 1 %ifarch i386 i486 i586 i686 %patch1 -p 1 %endif %build %configure %{__make} %{?_smp_mflags} %install %{__make} %{?_smp_mflags} install DESTDIR=%{buildroot} # cleanup empty libtool .la file %{__rm} %{buildroot}%{_libdir}/lib%{name}.la %post -n lib%{name}%{soname} -p /sbin/ldconfig %postun -n lib%{name}%{soname} -p /sbin/ldconfig %files %defattr(-, root, root) %doc AUTHORS LICENSE README.md RELEASE_NOTES TODO %{_bindir}/%{name}3 %doc %{_mandir}/man1/%{name}3.1%{ext_man} %files -n lib%{name}%{soname} %defattr(-, root, root) %doc LICENSE %{_libdir}/lib%{name}.so.* %files devel %defattr(-, root, root) %doc LICENSE %{_includedir}/%{name}_api.h %{_libdir}/lib%{name}.a %{_libdir}/lib%{name}.so %doc %{_mandir}/man3/lib%{name}.3%{ext_man} %changelog