-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
001aab4
commit 089dc53
Showing
4 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
Source: iperf3 | ||
Section: net | ||
Priority: optional | ||
Maintainer: perfSONAR developers <[email protected]> | ||
Uploaders: Antoine Delvaux <[email protected]> | ||
Build-Depends: debhelper (>= 10), libssl-dev, libsctp-dev [linux-any] | ||
Standards-Version: 3.9.8 | ||
Homepage: http://software.es.net/iperf/ | ||
|
||
Package: iperf3 | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: Internet Protocol bandwidth measuring tool | ||
Iperf3 is a tool for performing network throughput measurements. It can | ||
test either TCP or UDP throughput. | ||
. | ||
This is a new implementation that shares no code with the original | ||
iperf from NLANR/DAST and also is not backwards compatible. | ||
. | ||
This package contains the command line utility. | ||
|
||
Package: libiperf0 | ||
Architecture: any | ||
Section: libs | ||
Multi-Arch: same | ||
Pre-Depends: ${misc:Pre-Depends} | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: Internet Protocol bandwidth measuring tool (runtime files) | ||
Iperf3 is a tool for performing network throughput measurements. It can | ||
test either TCP or UDP throughput. | ||
. | ||
This is a new implementation that shares no code with the original | ||
iperf from NLANR/DAST and also is not backwards compatible. | ||
. | ||
This is the runtime package for programs that use the shared iperf | ||
library. | ||
|
||
Package: libiperf-dev | ||
Architecture: any | ||
Section: libdevel | ||
Multi-Arch: same | ||
Depends: libiperf0 (= ${binary:Version}), ${misc:Depends} | ||
Description: Internet Protocol bandwidth measuring tool (development files) | ||
Iperf3 is a tool for performing network throughput measurements. It can | ||
test either TCP or UDP throughput. | ||
. | ||
This is a new implementation that shares no code with the original | ||
iperf from NLANR/DAST and also is not backwards compatible. | ||
. | ||
This is the development package which contains headers files and the | ||
static iperf library. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/make -f | ||
|
||
export DH_OPTIONS | ||
|
||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all | ||
|
||
override_dh_installchangelogs: | ||
dh_installchangelogs RELNOTES.md | ||
|
||
%: | ||
dh $@ | ||
|
||
# Ubuntu dbgsym.ddeb are currently not supported by reprepro | ||
override_dh_strip: | ||
dh_strip --no-automatic-dbgsym |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters