Annotation of embedaddon/iperf/iperf3.spec.in, revision 1.1.1.1
1.1 misho 1: Name: iperf3
2: Version: @VERSION@
3: Release: 1%{?dist}
4: Summary: Measurement tool for TCP/UDP bandwidth performance
5:
6: Group: Applications/Internet
7: License: BSD
8: URL: http://github.com/esnet/iperf
9: Source0: http://stats.es.net/software/iperf-%{version}.tar.gz
10: BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
11:
12: %if 0%{?el5}
13: BuildRequires: e2fsprogs-devel
14: %endif
15:
16: %description
17: Iperf is a tool to measure maximum TCP bandwidth, allowing the tuning of
18: various parameters and UDP characteristics. Iperf reports bandwidth, delay
19: jitter, data-gram loss.
20:
21: %package devel
22: Summary: Development files for %{name}
23: Group: Development/Libraries
24:
25: %description devel
26: The %{name}-devel package contains libraries and header files for
27: developing applications that use %{name}.
28:
29: %prep
30: %setup -q -n iperf-%{version}
31:
32: %build
33: %configure
34: make %{?_smp_mflags}
35:
36: %install
37: rm -rf $RPM_BUILD_ROOT
38: %makeinstall -C src INSTALL_DIR="%{buildroot}%{_bindir}"
39: mkdir -p %{buildroot}%{_mandir}/man1
40:
41: %clean
42: rm -rf $RPM_BUILD_ROOT
43:
44: %files
45: %defattr(-,root,root,-)
46: %%doc README.md INSTALL LICENSE RELEASE_NOTES
47: %{_mandir}/man1/iperf3.1.gz
48: %{_mandir}/man3/libiperf.3.gz
49: %{_bindir}/iperf3
50: %{_libdir}/*.so.*
51:
52: %files devel
53: %defattr(-,root,root,-)
54: %{_includedir}/iperf_api.h
55: %{_libdir}/libiperf.a
56: %{_libdir}/libiperf.la
57: %{_libdir}/*.so
58: %{_libdir}/*.so.*
59:
60: %changelog
61: * Fri Aug 29 2014 Aaron Brown <aaron@internet2.edu> 3.0.7-1
62: - Update to 3.0.7
63:
64: * Tue Jul 29 2014 Aaron Brown <aaron@internet2.edu> 3.0.6-1
65: - Update to 3.0.6
66:
67: * Mon Jun 16 2014 Aaron Brown <aaron@internet2.edu> 3.0.5-1
68: - Update to 3.0.5
69:
70: * Wed Apr 2 2014 Susant Sahani <ssahani@redhat.com> 3.0.3-2
71: - Moved static library to devel section only .
72:
73: * Sun Mar 30 2014 Susant Sahani <ssahani@redhat.com> 3.0.3-1
74: - Update to 3.0.3 and added devel rpm support
75:
76: * Tue Mar 11 2014 Susant Sahani <ssahani@redhat.com> 3.0.2-1
77: - Update to 3.0.2
78:
79: * Tue Jan 14 2014 Susant Sahani <ssahani@redhat.com> 3.0.1-1
80: - Update to 3.0.1
81:
82: * Fri Oct 25 2013 Steven Roberts <strobert@strobe.net> 3.0-1
83: - Update to 3.0
84:
85: * Sat May 04 2013 Kevin Fenzi <kevin@scrye.com> 3.0-0.4.b5
86: - Update to 3.0b5
87:
88: * Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.3.b4
89: - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
90:
91: * Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.2.b4
92: - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
93:
94: * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-0.1.b4
95: - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
96:
97: * Wed Apr 06 2011 G.Balaji <balajig81@gmail.com> 3.0b4-2
98: - Changed the Spec name, removed static libs generation and devel
99: - package.
100:
101: * Sat Mar 26 2011 G.Balaji <balajig81@gmail.com> 3.0b4-1
102: - Initial Version
103:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>