diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:16:34 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:24:56 +0000 |
commit | c0bb5fdf3718850c79765609e7ec95c372362a06 (patch) | |
tree | fa5f28305ba420d69dd19247f6e5d1eb5d5472fe /net-analyzer | |
parent | net-analyzer/hydra: drop 9.1-r1, 9.2-r1, 9.3-r1 (diff) | |
download | gentoo-c0bb5fdf3718850c79765609e7ec95c372362a06.tar.gz gentoo-c0bb5fdf3718850c79765609e7ec95c372362a06.tar.bz2 gentoo-c0bb5fdf3718850c79765609e7ec95c372362a06.zip |
net-analyzer/fping: drop 5.0
Bug: https://bugs.gentoo.org/886227
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/fping/Manifest | 1 | ||||
-rw-r--r-- | net-analyzer/fping/files/fping-4.2-fping6-6.patch | 21 | ||||
-rw-r--r-- | net-analyzer/fping/fping-5.0.ebuild | 35 |
3 files changed, 0 insertions, 57 deletions
diff --git a/net-analyzer/fping/Manifest b/net-analyzer/fping/Manifest index 196c468ebd2c..5d58b6f9d312 100644 --- a/net-analyzer/fping/Manifest +++ b/net-analyzer/fping/Manifest @@ -1,2 +1 @@ -DIST fping-5.0.tar.gz 185281 BLAKE2B 6dbb6708ecb55c1f1281bcd9e298475a1ad3a21aa81d8488b61cb39ad07d1d7285247a3c39883cbaae0b1a0e4403b6340ea7ec43411b81546f0e8eeefb02ef88 SHA512 c843f7bb7c4e3289c4dd9eb8ae2ab93a363316c0000aac9187f79580a3d2505df179f2e0ae9e0a791c74bfc9e17c476874f8e122dfa6ad74930498c4e02d0de3 DIST fping-5.1.tar.gz 191224 BLAKE2B 2fb344e650b5a359fb8780f2c599455d39405ae823edf695ee4385aa2661dc5811e088bafa1b9f53846ee90c0afa959a92832381a03346d1fda048eb4e7ee098 SHA512 1a208da8dcd99093d0512af5d85ba5e7b5743ec97993d24c1fe612bb58d93090ac1ba0952f648aa075f16d390a77c4be65e394ae56dbede2a6914e0e8c68e2bd diff --git a/net-analyzer/fping/files/fping-4.2-fping6-6.patch b/net-analyzer/fping/files/fping-4.2-fping6-6.patch deleted file mode 100644 index 63138d3e2d2c..000000000000 --- a/net-analyzer/fping/files/fping-4.2-fping6-6.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 6fd4f8bd91abc43f80078bdd0084cb6d2b1de7f1 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Johan=20Str=C3=B6m?= <johan@stromnet.se> -Date: Tue, 25 Jun 2019 14:03:14 +0200 -Subject: [PATCH] Do not fail if using fping6 with -6 flag - -Mostly for backwards compatability ---- - src/fping.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/src/fping.c -+++ b/src/fping.c -@@ -435,7 +435,7 @@ - break; - case '6': - #ifdef IPV6 -- if (hints_ai_family != AF_UNSPEC) { -+ if (hints_ai_family != AF_UNSPEC && hints_ai_family != AF_INET6) { - fprintf(stderr, "%s: can't specify both -4 and -6\n", prog); - exit(1); - } diff --git a/net-analyzer/fping/fping-5.0.ebuild b/net-analyzer/fping/fping-5.0.ebuild deleted file mode 100644 index 36614ec7655f..000000000000 --- a/net-analyzer/fping/fping-5.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit fcaps - -DESCRIPTION="A utility to ping multiple hosts at once" -HOMEPAGE="https://fping.org/ https://github.com/schweikert/fping/" -SRC_URI="https://fping.org/dist/${P}.tar.gz" - -LICENSE="fping" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux" -IUSE="ipv6 suid" - -FILECAPS=( cap_net_raw+ep usr/sbin/fping ) -PATCHES=( - "${FILESDIR}"/${PN}-4.2-fping6-6.patch -) - -src_configure() { - econf $(use_enable ipv6) -} - -src_install() { - default - - if use suid; then - fperms u+s /usr/sbin/fping - fi - - if use ipv6; then - dosym fping /usr/sbin/fping6 - fi -} |