diff options
author | Sam James <sam@gentoo.org> | 2021-03-22 22:18:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-23 04:48:40 +0000 |
commit | ad04f60b47f190af3669bd224e6056b11249fca9 (patch) | |
tree | b8c8250be5e83a01d1df8b391bfb0b7edc9022e4 /net-misc/iperf | |
parent | net-analyzer/vnstat: port to EAPI 7 (diff) | |
download | gentoo-ad04f60b47f190af3669bd224e6056b11249fca9.tar.gz gentoo-ad04f60b47f190af3669bd224e6056b11249fca9.tar.bz2 gentoo-ad04f60b47f190af3669bd224e6056b11249fca9.zip |
net-misc/iperf: minor style changes
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/iperf')
-rw-r--r-- | net-misc/iperf/iperf-2.0.14a.ebuild | 2 | ||||
-rw-r--r-- | net-misc/iperf/iperf-2.99999.99999.ebuild | 2 | ||||
-rw-r--r-- | net-misc/iperf/iperf-3.9-r1.ebuild | 6 | ||||
-rw-r--r-- | net-misc/iperf/iperf-3.99999.99999.ebuild | 7 |
4 files changed, 10 insertions, 7 deletions
diff --git a/net-misc/iperf/iperf-2.0.14a.ebuild b/net-misc/iperf/iperf-2.0.14a.ebuild index 8e383190aae1..1f6705f71ebd 100644 --- a/net-misc/iperf/iperf-2.0.14a.ebuild +++ b/net-misc/iperf/iperf-2.0.14a.ebuild @@ -15,7 +15,7 @@ SLOT="2" KEYWORDS="amd64 ~arm ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="ipv6 threads debug" -DOCS=( "INSTALL" "README" ) +DOCS=( INSTALL README ) PATCHES=( "${FILESDIR}"/${PN}-2.0.12-ipv6.patch diff --git a/net-misc/iperf/iperf-2.99999.99999.ebuild b/net-misc/iperf/iperf-2.99999.99999.ebuild index a4087a924a8e..6c9197a333b9 100644 --- a/net-misc/iperf/iperf-2.99999.99999.ebuild +++ b/net-misc/iperf/iperf-2.99999.99999.ebuild @@ -13,7 +13,7 @@ LICENSE="HPND" SLOT="2" IUSE="ipv6 threads debug" -DOCS=( "INSTALL" "README" ) +DOCS=( INSTALL README ) src_configure() { econf \ diff --git a/net-misc/iperf/iperf-3.9-r1.ebuild b/net-misc/iperf/iperf-3.9-r1.ebuild index d53aca6f6b77..2c1fd2153029 100644 --- a/net-misc/iperf/iperf-3.9-r1.ebuild +++ b/net-misc/iperf/iperf-3.9-r1.ebuild @@ -2,10 +2,11 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit systemd DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool" -HOMEPAGE="https://github.com/esnet/iperf/" +HOMEPAGE="https://github.com/esnet/iperf" SRC_URI="https://github.com/esnet/iperf/archive/${PV/_/}.tar.gz -> ${P}.tar.gz" S="${WORKDIR}/${P/_/}" @@ -21,7 +22,7 @@ DEPEND=" " RDEPEND="${DEPEND}" -DOCS=( "README.md" "RELNOTES.md" ) +DOCS=( README.md RELNOTES.md ) src_configure() { econf \ @@ -35,5 +36,6 @@ src_install() { newconfd "${FILESDIR}"/iperf.confd iperf3 newinitd "${FILESDIR}"/iperf3.initd iperf3 systemd_dounit contrib/iperf3.service + find "${ED}" -name '*.la' -delete || die } diff --git a/net-misc/iperf/iperf-3.99999.99999.ebuild b/net-misc/iperf/iperf-3.99999.99999.ebuild index d209c9b4ed3d..caa68e8e7fe4 100644 --- a/net-misc/iperf/iperf-3.99999.99999.ebuild +++ b/net-misc/iperf/iperf-3.99999.99999.ebuild @@ -6,8 +6,8 @@ EAPI=7 inherit autotools git-r3 DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool" -HOMEPAGE="https://github.com/esnet/iperf/" -EGIT_REPO_URI="https://github.com/esnet/iperf/" +HOMEPAGE="https://github.com/esnet/iperf" +EGIT_REPO_URI="https://github.com/esnet/iperf" S="${WORKDIR}/${P/_/}" LICENSE="BSD" @@ -21,7 +21,7 @@ DEPEND=" " RDEPEND="${DEPEND}" -DOCS=( "README.md" "RELNOTES.md" ) +DOCS=( README.md RELNOTES.md ) src_configure() { econf \ @@ -34,5 +34,6 @@ src_install() { newconfd "${FILESDIR}"/iperf.confd iperf3 newinitd "${FILESDIR}"/iperf3.initd iperf3 + find "${ED}" -name '*.la' -delete || die } |