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 9890F158086 for ; Fri, 3 Dec 2021 04:30:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A504E0825; Fri, 3 Dec 2021 04:29:58 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 07460E0825 for ; Fri, 3 Dec 2021 04:29:58 +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 E97893431F9 for ; Fri, 3 Dec 2021 04:29:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8627014D for ; Fri, 3 Dec 2021 04:29:55 +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: <1638505777.464c6642aba8bb66073c95ab04d057b03df996ae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/ldns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/ldns/ldns-1.8.0-r1.ebuild X-VCS-Directories: net-libs/ldns/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 464c6642aba8bb66073c95ab04d057b03df996ae X-VCS-Branch: master Date: Fri, 3 Dec 2021 04:29:55 +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: 71b6ae59-ff9d-4ef8-8dc3-76d2ffc0fb62 X-Archives-Hash: 85a6ac33c4c41b1ae2e10f8250a578b9 commit: 464c6642aba8bb66073c95ab04d057b03df996ae Author: Sam James gentoo org> AuthorDate: Fri Dec 3 04:29:37 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Dec 3 04:29:37 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464c6642 net-libs/ldns: restore version pre bindist changes for security stabilisation Bug: https://bugs.gentoo.org/827968 Signed-off-by: Sam James gentoo.org> net-libs/ldns/ldns-1.8.0-r1.ebuild | 123 +++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) diff --git a/net-libs/ldns/ldns-1.8.0-r1.ebuild b/net-libs/ldns/ldns-1.8.0-r1.ebuild new file mode 100644 index 000000000000..5d48f102da5c --- /dev/null +++ b/net-libs/ldns/ldns-1.8.0-r1.ebuild @@ -0,0 +1,123 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +PYTHON_COMPAT=( python3_{7,8,9,10} ) +inherit python-single-r1 autotools multilib-minimal + +DESCRIPTION="a library with the aim to simplify DNS programming in C" +HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" +SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/3" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris" +IUSE="+dane doc +ecdsa ed25519 ed448 gost python static-libs vim-syntax" + +# configure will die if ecdsa is enabled and ssl is not +REQUIRED_USE=" + python? ( ${PYTHON_REQUIRED_USE} ) +" + +RDEPEND=" + python? ( ${PYTHON_DEPS} ) + ecdsa? ( + >=dev-libs/openssl-1.0.1e:0=[-bindist(-),${MULTILIB_USEDEP}] + ) + ed25519? ( + >=dev-libs/openssl-1.1.0:0=[-bindist(-),${MULTILIB_USEDEP}] + ) + ed448? ( + >=dev-libs/openssl-1.1.1:0=[-bindist(-),${MULTILIB_USEDEP}] + ) + >=dev-libs/openssl-1.0.1e:0=[${MULTILIB_USEDEP}] +" +DEPEND="${RDEPEND} + python? ( dev-lang/swig ) + doc? ( app-doc/doxygen ) +" + +RESTRICT="test" # 1.6.9 has no test directory + +MULTILIB_CHOST_TOOLS=( + /usr/bin/ldns-config +) + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +multilib_src_configure() { + # >=openssl-1.1.0 required for dane-ta + if has_version "