commit:     6b5e01e21c8af6e19e58d43cca008a3f5293b13c
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 18 16:22:26 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 18 16:46:30 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b5e01e2

net-misc/iperf: drop 3.18, 3.19

Bug: https://bugs.gentoo.org/960763
Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/iperf/Manifest          |  2 --
 net-misc/iperf/iperf-3.18.ebuild | 54 ----------------------------------------
 net-misc/iperf/iperf-3.19.ebuild | 53 ---------------------------------------
 3 files changed, 109 deletions(-)

diff --git a/net-misc/iperf/Manifest b/net-misc/iperf/Manifest
index b061d57991cd..3d405159a0b2 100644
--- a/net-misc/iperf/Manifest
+++ b/net-misc/iperf/Manifest
@@ -1,4 +1,2 @@
 DIST iperf-2.2.1.tar.gz 509514 BLAKE2B 
9075df9513e98beeaed5c2f6799f62f72fbfd8fc63696674018b7435dae87d5edeca3fb0541775c37c188bd61bd8394c3125a8a8c07e0c4ba1c2efa86a602404
 SHA512 
07a08afe647e87939e05c9cd55601ca1227c91f44ef32fdf305a0e15e524d1de29d38e9a3f66253d7308585224e54db395d7dec654d31eea746f45c6947ebc2a
-DIST iperf-3.18.tar.gz 688037 BLAKE2B 
64272ab8288cb217603d4fa438bc547967baa964bc518c91f9f1f1c85d9a0a9a7ca5b4c558b3e2c68507c1cb76b40592fd9a80f0bb4cc8a1716e029b32289276
 SHA512 
a458292c34c29a60cce60eb6be4afd15220d4cf29f225a1c1be9ec8ef86baa85fa4e174e747cacfa5711c6957ad16d448c2d3d4029b6bfd58db9c39269f30caa
 DIST iperf-3.19.1.tar.gz 698445 BLAKE2B 
fae065d3e8131c072bd70666c87067c85b2ea56fcee70197bea1d5b82266b1d2f4dbb9318b566fdd4add08776dadb1feebe9915108531d3af9e13a777e2b60e7
 SHA512 
7239eddf55197c45aa751d05b6518a0782ec4f2ce4d9b4246b74c41dc21077102f3f5cc3359129c32c6842d482f4a9557a92ab84d96e0a9c7063052c9cbed4f6
-DIST iperf-3.19.tar.gz 694741 BLAKE2B 
b6f5e9bdef5ee3fc38bef893144bc6ad003ccbc7b3db4793dbd2aec5998faa55cac215a0db06ab37729dc1c05787ebacbf09db8a6e6517f82492a6c67ec3d9e6
 SHA512 
f0631cd1158a90dc402fa30563e6f26dbdbc5d5b0665bed25248f9153118f55296913abeb89bf0b1db760ca2c68f60e0c9cf2df82aa096318ca618ca09176388

diff --git a/net-misc/iperf/iperf-3.18.ebuild b/net-misc/iperf/iperf-3.18.ebuild
deleted file mode 100644
index 3c46fad222c1..000000000000
--- a/net-misc/iperf/iperf-3.18.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools systemd
-
-DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool"
-HOMEPAGE="https://github.com/esnet/iperf";
-SRC_URI="https://github.com/esnet/iperf/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="sctp"
-
-DEPEND="
-       >=dev-libs/cJSON-1.7.15
-       dev-libs/openssl:=
-       sctp? ( net-misc/lksctp-tools )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-DOCS=( README.md RELNOTES.md )
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-3.10.1-drop-forced-debugging-symbols.patch
-       "${FILESDIR}"/${PN}-3.18-unbundle-cJSON.patch
-       "${FILESDIR}"/${PN}-3.17.1-c23.patch
-)
-
-src_prepare() {
-       default
-
-       # Drop bundled cjson
-       rm src/cjson.{c,h} || die
-
-       eautoreconf
-}
-
-src_configure() {
-       econf $(use_with sctp)
-}
-
-src_install() {
-       default
-
-       newconfd "${FILESDIR}"/iperf.confd iperf3
-       newinitd "${FILESDIR}"/iperf3.initd iperf3
-       systemd_dounit contrib/iperf3.service
-
-       find "${ED}" -name '*.la' -type f -delete || die
-}

diff --git a/net-misc/iperf/iperf-3.19.ebuild b/net-misc/iperf/iperf-3.19.ebuild
deleted file mode 100644
index 2755d1fa2443..000000000000
--- a/net-misc/iperf/iperf-3.19.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools systemd
-
-DESCRIPTION="A TCP, UDP, and SCTP network bandwidth measurement tool"
-HOMEPAGE="https://github.com/esnet/iperf";
-SRC_URI="https://github.com/esnet/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-IUSE="sctp"
-
-DEPEND="
-       >=dev-libs/cJSON-1.7.15
-       dev-libs/openssl:=
-       sctp? ( net-misc/lksctp-tools )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-DOCS=( README.md RELNOTES.md )
-
-PATCHES=(
-       "${FILESDIR}"/${PN}-3.10.1-drop-forced-debugging-symbols.patch
-       "${FILESDIR}"/${PN}-3.18-unbundle-cJSON.patch
-)
-
-src_prepare() {
-       default
-
-       # Drop bundled cjson
-       rm src/cjson.{c,h} || die
-
-       eautoreconf
-}
-
-src_configure() {
-       econf $(use_with sctp)
-}
-
-src_install() {
-       default
-
-       newconfd "${FILESDIR}"/iperf.confd iperf3
-       newinitd "${FILESDIR}"/iperf3.initd iperf3
-       systemd_dounit contrib/iperf3.service
-
-       find "${ED}" -name '*.la' -type f -delete || die
-}

Reply via email to