From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6296C158094 for ; Sun, 10 Jul 2022 07:45:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13A92E0AF7; Sun, 10 Jul 2022 07:45:55 +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 D409BE0AF7 for ; Sun, 10 Jul 2022 07:45:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B2E77340CE7 for ; Sun, 10 Jul 2022 07:45:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CE2A500 for ; Sun, 10 Jul 2022 07:45:52 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1657438929.c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netselect/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/netselect/netselect-0.4-r1.ebuild X-VCS-Directories: net-analyzer/netselect/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30 X-VCS-Branch: master Date: Sun, 10 Jul 2022 07:45:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6cd792b1-62a0-4735-ace1-70b537ad97bc X-Archives-Hash: d0d22f0e585fcf109c0f4913087a62a1 commit: c57d1bf1eeffc10a8e2d9a23b3ab32f428d8cc30 Author: Sam James gentoo org> AuthorDate: Sun Jul 10 07:42:09 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 10 07:42:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c57d1bf1 net-analyzer/netselect: drop 0.4-r1 Signed-off-by: Sam James gentoo.org> net-analyzer/netselect/netselect-0.4-r1.ebuild | 47 -------------------------- 1 file changed, 47 deletions(-) diff --git a/net-analyzer/netselect/netselect-0.4-r1.ebuild b/net-analyzer/netselect/netselect-0.4-r1.ebuild deleted file mode 100644 index 80066a138a33..000000000000 --- a/net-analyzer/netselect/netselect-0.4-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Ultrafast implementation of ping" -HOMEPAGE="http://apenwarr.ca/netselect/" -SRC_URI=" - https://github.com/apenwarr/${PN}/archive/${P}.tar.gz - ipv6? ( https://dev.gentoo.org/~jsmolic/distfiles/${P}-ipv6.patch.xz ) -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="ipv6" - -PATCHES=( - "${FILESDIR}"/${PN}-0.4-bsd.patch - "${FILESDIR}"/${PN}-0.4-flags.patch -) -S=${WORKDIR}/${PN}-${P} - -src_prepare() { - use ipv6 && eapply "${WORKDIR}"/${PN}-0.4-ipv6.patch - - default -} - -src_compile() { - emake CC="$(tc-getCC)" LDFLAGS="${CFLAGS} ${LDFLAGS}" -} - -src_install() { - dobin netselect - - if ! use prefix ; then - fowners root:wheel /usr/bin/netselect - fperms 4711 /usr/bin/netselect - fi - - dodoc HISTORY README - - doman netselect.1 -}