forked from pool/iperf
Accepting request 125813 from home:coolo:branches:openSUSE:Factory
- disable _service file for factory update - update license to be spdx.org conform OBS-URL: https://build.opensuse.org/request/show/125813 OBS-URL: https://build.opensuse.org/package/show/network:utilities/iperf?expand=0&rev=9
This commit is contained in:
parent
c7692b7e17
commit
80602d799e
13
_service
Normal file
13
_service
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<services>
|
||||||
|
<service name="download_url" mode="localonly">
|
||||||
|
<param name="protocol">https</param>
|
||||||
|
<param name="host">downloads.sourceforge.net</param>
|
||||||
|
<param name="path">/project/iperf/iperf-2.0.5.tar.gz</param>
|
||||||
|
</service>
|
||||||
|
<service name="verify_file" mode="localonly">
|
||||||
|
<param name="file">iperf-2.0.5.tar.gz</param>
|
||||||
|
<param name="verifier">sha256</param>
|
||||||
|
<param name="checksum">636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b</param>
|
||||||
|
</service>
|
||||||
|
</services>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e2bb434a54598e7b288765408f1fec19437cbfb65d6246c068e434410c66b812
|
|
||||||
size 201163
|
|
3
iperf-2.0.5.tar.gz
Normal file
3
iperf-2.0.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:636b4eff0431cea80667ea85a67ce4c68698760a9837e1e9d13096d20362265b
|
||||||
|
size 248583
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jun 22 13:59:52 UTC 2012 - coolo@suse.com
|
||||||
|
|
||||||
|
- disable _service file for factory update
|
||||||
|
- update license to be spdx.org conform
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Aug 27 18:18:45 UTC 2010 - reddwarf@opensuse.org
|
||||||
|
|
||||||
|
- Update to 2.0.5
|
||||||
|
* bumped default TCP send/recv buffer to 128K (this is not the
|
||||||
|
kernel buffer that controls the window, but rather the Iperf
|
||||||
|
internal buffer)
|
||||||
|
* honor -i flag when for a server (-s) when using TCP
|
||||||
|
* Exit rather than warn on connection failure
|
||||||
|
* Reduce CPU usage
|
||||||
|
* "neater" output for some units, eg Kbps, Mbps, Gbps
|
||||||
|
* addresses some typos
|
||||||
|
* prevent underflow when the amount of data to be
|
||||||
|
transmitted (-n) is not a multiple of the buffer size (-l)
|
||||||
|
* print report headers only once
|
||||||
|
* use appropriate report header for UDP tests
|
||||||
|
- Cleaned with spec-cleaner
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 30 13:03:23 UTC 2010 - poletti.marco@gmail.com
|
Tue Mar 30 13:03:23 UTC 2010 - poletti.marco@gmail.com
|
||||||
|
|
||||||
|
37
iperf.spec
37
iperf.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package iperf (Version 2.0.4)
|
# spec file for package iperf
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,19 +15,16 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: iperf
|
Name: iperf
|
||||||
License: UI License
|
Version: 2.0.5
|
||||||
AutoReqProv: on
|
Release: 0
|
||||||
Version: 2.0.4
|
|
||||||
Release: 1
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
Summary: A Tool To Measure Network Performance
|
Summary: A Tool To Measure Network Performance
|
||||||
Source: %{name}-%{version}.tar.bz2
|
License: NCSA
|
||||||
Url: http://sourceforge.net/projects/iperf/
|
|
||||||
Group: Productivity/Networking/Other
|
Group: Productivity/Networking/Other
|
||||||
|
Url: http://sourceforge.net/projects/iperf/
|
||||||
|
Source: %{name}-%{version}.tar.gz
|
||||||
|
BuildRequires: gcc-c++
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -36,26 +33,22 @@ measuring maximum TCP and UDP bandwidth performance.
|
|||||||
Iperf allows the tuning of various parameters and UDP characteristics.
|
Iperf allows the tuning of various parameters and UDP characteristics.
|
||||||
Iperf reports bandwidth, delay jitter, datagram loss.
|
Iperf reports bandwidth, delay jitter, datagram loss.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{version}
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
make %{?jobs:-j%jobs}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%makeinstall
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf %{buildroot}
|
||||||
|
|
||||||
%files
|
%files
|
||||||
|
%defattr(0644,root,root,0755)
|
||||||
%defattr(755,root,root)
|
%attr(0755,root,root) %{_bindir}/%{name}
|
||||||
%{_prefix}/bin/iperf
|
%doc %{_mandir}/man1/%{name}.1%{ext_man}
|
||||||
|
|
||||||
%defattr(644,root,root)
|
|
||||||
%doc %{_mandir}/man1/iperf.1.gz
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user