commit: 879f95805baf6fe1668dd23a8d3a89e61a0d518d Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Fri Jan 24 19:57:58 2025 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Fri Jan 24 19:57:58 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=879f9580
net-analyzer/arping: drop 2.22, 2.23 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> net-analyzer/arping/Manifest | 2 -- net-analyzer/arping/arping-2.22.ebuild | 37 --------------------- net-analyzer/arping/arping-2.23.ebuild | 60 ---------------------------------- 3 files changed, 99 deletions(-) diff --git a/net-analyzer/arping/Manifest b/net-analyzer/arping/Manifest index c5efc6126560..1905cf1b624b 100644 --- a/net-analyzer/arping/Manifest +++ b/net-analyzer/arping/Manifest @@ -1,3 +1 @@ -DIST arping-2.22.tar.gz 50152 BLAKE2B 2215773b922219537339550e8034bb6eca82974469ebd0e399c73bd259ef4ff7a4510d9a5ff108cef3dac492477c54fc2517c2dfd4035158d0269f03c0e2a0b5 SHA512 0b36fff2c14c1ff89453ba63eea04de3343fcb19da7dbc1c8749bc926e441c54915cd628d54171d449e66e92663e31f12e057c30a80cd49c4412650e2cd00ef3 -DIST arping-2.23.tar.gz 51911 BLAKE2B 8b0d34522957a83d0a66b47576fa0ecbd1e4fc86537df6d2737510bdb1a4ea3d30feb664077790a8f70be9cf2cdcdc30a648261e9a6a30401ce85274c45ccf12 SHA512 45295fd68717379d18fcff4270c70e0d9df3cae175f0c2a9f1e8e88e3046f5109e7a95bb717be329af8d6002c9a2338efd39831a652c0b425b75058287fa35df DIST arping-2.25.tar.gz 62032 BLAKE2B a7b5bdfb693ee31781509584b4a0363e856d8134cebe1119fee974a57c399f1128a306b85e3f3669d4fe8f7031dfb87b9cfcc2f8df76b6f969310a12460363ad SHA512 7cfc1ed73bd7621911f9b1b0ad23680c7dde6f8674a0223e6341dc6e40c7d49bb293bc519e9e9de8abaa9209ad7fedad902901235f87b8d21395f3396739b922 diff --git a/net-analyzer/arping/arping-2.22.ebuild b/net-analyzer/arping/arping-2.22.ebuild deleted file mode 100644 index d959be9a14ba..000000000000 --- a/net-analyzer/arping/arping-2.22.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools fcaps - -DESCRIPTION="Utility to see if a specific IP is taken and what MAC owns it" -HOMEPAGE="https://www.habets.pp.se/synscan/programs.php?prog=arping" -SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${P}.tar.gz" -S="${WORKDIR}/${PN}-${P}" - -LICENSE="GPL-2+" -SLOT="2" -KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND=" - net-libs/libpcap - net-libs/libnet:1.1 - !net-misc/iputils[arping(+)] -" -DEPEND=" - ${RDEPEND} - test? ( - dev-libs/check - dev-python/python-subunit - ) -" - -FILECAPS=( cap_net_raw usr/sbin/arping ) - -src_prepare() { - default - eautoreconf -} diff --git a/net-analyzer/arping/arping-2.23.ebuild b/net-analyzer/arping/arping-2.23.ebuild deleted file mode 100644 index a403799cf52b..000000000000 --- a/net-analyzer/arping/arping-2.23.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools fcaps - -DESCRIPTION="Utility to see if a specific IP is taken and what MAC owns it" -HOMEPAGE="https://www.habets.pp.se/synscan/programs.php?prog=arping" -if [[ ${PV} == 9999 ]] ; then - EGIT_REPO_URI="https://github.com/ThomasHabets/arping" - inherit git-r3 -else - SRC_URI="https://github.com/ThomasHabets/${PN}/archive/${P}.tar.gz" - KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux" - - S="${WORKDIR}/${PN}-${P}" -fi - -LICENSE="GPL-2+" -SLOT="2" -IUSE="+seccomp test" -RESTRICT="!test? ( test )" - -RDEPEND="net-libs/libpcap - net-libs/libnet:1.1 - sys-libs/libcap - seccomp? ( sys-libs/libseccomp ) - !net-misc/iputils[arping(+)]" -DEPEND="${RDEPEND} - test? ( - dev-libs/check - dev-python/python-subunit - )" - -FILECAPS=( cap_net_raw usr/sbin/arping ) - -PATCHES=( - "${FILESDIR}"/${PN}-2.23-configure.ac-seccomp-disable.patch -) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - local myeconfargs=( - # Controls whether seccomp is used by default - $(use_enable seccomp) - ) - - # Needed to actually make it optional and not automagic - # (and we want it optional for the non-seccomp arches, like sparc) - export ac_cv_lib_seccomp_seccomp_init=$(usex seccomp) - export ac_cv_header_seccomp_h=$(usex seccomp) - - econf "${myeconfargs[@]}" -}