Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/iperf/
Date: Sun, 02 Oct 2022 02:26:32
Message-Id: 1664677573.67f8e539e6157ad293d7d4903d9e20c4c7bef0ac.sam@gentoo
1 commit: 67f8e539e6157ad293d7d4903d9e20c4c7bef0ac
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 2 01:56:41 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 2 02:26:13 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67f8e539
7
8 net-misc/iperf: drop 3.99999.99999
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 net-misc/iperf/iperf-3.99999.99999.ebuild | 38 -------------------------------
13 1 file changed, 38 deletions(-)
14
15 diff --git a/net-misc/iperf/iperf-3.99999.99999.ebuild b/net-misc/iperf/iperf-3.99999.99999.ebuild
16 deleted file mode 100644
17 index fcfe1f4f75f0..000000000000
18 --- a/net-misc/iperf/iperf-3.99999.99999.ebuild
19 +++ /dev/null
20 @@ -1,38 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -inherit git-r3
27 -
28 -DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool"
29 -HOMEPAGE="https://github.com/esnet/iperf"
30 -EGIT_REPO_URI="https://github.com/esnet/iperf"
31 -S="${WORKDIR}/${P/_/}"
32 -
33 -LICENSE="BSD"
34 -SLOT="3"
35 -IUSE="sctp static-libs"
36 -
37 -DEPEND="
38 - dev-libs/openssl:0=
39 - sctp? ( net-misc/lksctp-tools )
40 -"
41 -RDEPEND="${DEPEND}"
42 -
43 -DOCS=( README.md RELNOTES.md )
44 -
45 -src_configure() {
46 - econf \
47 - $(use_enable static-libs static) \
48 - $(use_with sctp)
49 -}
50 -
51 -src_install() {
52 - default
53 -
54 - newconfd "${FILESDIR}"/iperf.confd iperf3
55 - newinitd "${FILESDIR}"/iperf3.initd iperf3
56 -
57 - find "${ED}" -name '*.la' -delete || die
58 -}