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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3082E1581EC for ; Tue, 19 Nov 2024 13:52:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E5A5DE07E6; Tue, 19 Nov 2024 13:52:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C3DD3E07E1 for ; Tue, 19 Nov 2024 13:52:52 +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 06E0634106C for ; Tue, 19 Nov 2024 13:52:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B2CE1E04 for ; Tue, 19 Nov 2024 13:52:50 +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: <1732023401.501db695c6dba65a19c15efa863f6a13f44e4f31.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/jwhois/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/jwhois/jwhois-4.0-r1.ebuild X-VCS-Directories: net-misc/jwhois/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 501db695c6dba65a19c15efa863f6a13f44e4f31 X-VCS-Branch: master Date: Tue, 19 Nov 2024 13:52:50 +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: aa63c606-fbfc-440b-9c18-bbb039e25bf8 X-Archives-Hash: b26b825d56c6bcaacb2b21a8d57d668a commit: 501db695c6dba65a19c15efa863f6a13f44e4f31 Author: Sam James gentoo org> AuthorDate: Tue Nov 19 13:36:41 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 19 13:36:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=501db695 net-misc/jwhois: drop 4.0-r1 Bug: https://bugs.gentoo.org/900284 Signed-off-by: Sam James gentoo.org> net-misc/jwhois/jwhois-4.0-r1.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/net-misc/jwhois/jwhois-4.0-r1.ebuild b/net-misc/jwhois/jwhois-4.0-r1.ebuild deleted file mode 100644 index b8d0d0cb440d..000000000000 --- a/net-misc/jwhois/jwhois-4.0-r1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Advanced Internet Whois client capable of recursive queries" -HOMEPAGE="https://www.gnu.org/software/jwhois/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86" -IUSE="idn nls" - -RDEPEND="idn? ( net-dns/libidn )" -DEPEND="${RDEPEND}" - -PATCHES=( - # bug 208875 - "${FILESDIR}"/${P}-connect-logic.patch -) - -src_configure() { - econf \ - --localstatedir="${EPREFIX}"/var/cache \ - --without-cache \ - $(use_enable nls) \ - $(use_with idn libidn) -}