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 5253215817D for ; Sat, 22 Jun 2024 20:01:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D9B6E2B16; Sat, 22 Jun 2024 20:01: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7D916E2B16 for ; Sat, 22 Jun 2024 20:01: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E4F8834097F for ; Sat, 22 Jun 2024 20:01:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2781E1D56 for ; Sat, 22 Jun 2024 20:01:08 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1719086414.d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnssec-validator/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild X-VCS-Directories: net-dns/dnssec-validator/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f X-VCS-Branch: master Date: Sat, 22 Jun 2024 20:01:08 +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: 3fc1d159-3fea-4d8f-a873-7feb276cf073 X-Archives-Hash: b54ef9a594f6bf7b6d4b3c391397bafe commit: d6104c3c1c06b5776e93d9a4ce8f72f4e59a982f Author: Conrad Kostecki gentoo org> AuthorDate: Sat Jun 22 19:52:22 2024 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jun 22 20:00:14 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6104c3c net-dns/dnssec-validator: drop 2.2.3-r3 Signed-off-by: Conrad Kostecki gentoo.org> .../dnssec-validator-2.2.3-r3.ebuild | 60 ---------------------- 1 file changed, 60 deletions(-) diff --git a/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild b/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild deleted file mode 100644 index 20a94d1e224c..000000000000 --- a/net-dns/dnssec-validator/dnssec-validator-2.2.3-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools - -DESCRIPTION="Tools to ease the validation of DNSSEC related technologies" -HOMEPAGE="https://www.dnssec-tools.org/" -SRC_URI="https://github.com/DNSSEC-Tools/DNSSEC-Tools/archive/dnssec-tools-${PV}.tar.gz" -S="${WORKDIR}/DNSSEC-Tools-dnssec-tools-${PV}/dnssec-tools/validator" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm ~arm64 x86" -IUSE="dlv +nsec3 static-libs +threads" - -RDEPEND=">=dev-libs/openssl-1.1.0:0=" -DEPEND="${RDEPEND}" - -# Tests fail due "Cannot create context: -7" -RESTRICT="test" - -PATCHES=( - # Users LDFLAGS are not respected - # See https://github.com/DNSSEC-Tools/DNSSEC-Tools/pull/9 - "${FILESDIR}/${P}-ldflags.patch" -) - -src_prepare() { - default - - mv configure.in configure.ac || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - $(use_with dlv) - $(use_with nsec3) - $(use_enable static-libs static) - $(use_with threads) - --with-dnsval-conf="${EPREFIX}/etc/dnssec-tools/dnsval.conf" - --with-ipv6 - --with-resolv-conf="${EPREFIX}/etc/dnssec-tools/resolv.conf" - --with-root-hints="${EPREFIX}/etc/dnssec-tools/root.hints" - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - # Install fails with MAKEOPTS > -j1 - # See https://github.com/DNSSEC-Tools/DNSSEC-Tools/issues/8 - emake -j1 DESTDIR="${D}" install - - einstalldocs - - find "${D}" -name '*.la' -delete || die -}