From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1684529-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 6D0B0158042
	for <garchives@archives.gentoo.org>; Tue, 29 Oct 2024 21:04:42 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 484C6E082F;
	Tue, 29 Oct 2024 21:04:41 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 2B851E082F
	for <gentoo-commits@lists.gentoo.org>; Tue, 29 Oct 2024 21:04:41 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 3924B340C3C
	for <gentoo-commits@lists.gentoo.org>; Tue, 29 Oct 2024 21:04:40 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 9AB34197F
	for <gentoo-commits@lists.gentoo.org>; Tue, 29 Oct 2024 21:04:38 +0000 (UTC)
From: "Andreas K. Hüttel" <dilfridge@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" <dilfridge@gentoo.org>
Message-ID: <1730235861.67752bb9657e92e85109925526f4d5bef667ca4a.dilfridge@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/fping/
X-VCS-Repository: repo/gentoo
X-VCS-Files: net-analyzer/fping/fping-5.1.ebuild
X-VCS-Directories: net-analyzer/fping/
X-VCS-Committer: dilfridge
X-VCS-Committer-Name: Andreas K. Hüttel
X-VCS-Revision: 67752bb9657e92e85109925526f4d5bef667ca4a
X-VCS-Branch: master
Date: Tue, 29 Oct 2024 21:04:38 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: e882c559-20fd-46f8-8c62-8d2c7dcceaf7
X-Archives-Hash: 684362cc9a4e3c1a5a5985e2a7529943

commit:     67752bb9657e92e85109925526f4d5bef667ca4a
Author:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 29 20:55:33 2024 +0000
Commit:     Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Oct 29 21:04:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67752bb9

net-analyzer/fping: drop 5.1

Bug: https://bugs.gentoo.org/895182
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>

 net-analyzer/fping/fping-5.1.ebuild | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/net-analyzer/fping/fping-5.1.ebuild b/net-analyzer/fping/fping-5.1.ebuild
deleted file mode 100644
index cb39ea8b287d..000000000000
--- a/net-analyzer/fping/fping-5.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-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 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
-IUSE="suid"
-
-FILECAPS=( cap_net_raw+ep usr/sbin/fping )
-
-src_configure() {
-	econf --enable-ipv6
-}
-
-src_install() {
-	default
-
-	if use suid; then
-		fperms u+s /usr/sbin/fping
-	fi
-
-	dosym fping /usr/sbin/fping6
-}