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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4B69213835A for ; Fri, 15 Jan 2021 17:43:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3453FE086D; Fri, 15 Jan 2021 17:43:00 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19940E086D for ; Fri, 15 Jan 2021 17:43:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA93C340CB1 for ; Fri, 15 Jan 2021 17:42:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BCEC476 for ; Fri, 15 Jan 2021 17:42:57 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1610732572.dae964d5a33465f2739cb82988b0806ec05dd716.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdnsd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild X-VCS-Directories: net-dns/pdnsd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: dae964d5a33465f2739cb82988b0806ec05dd716 X-VCS-Branch: master Date: Fri, 15 Jan 2021 17:42:57 +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: 56c42d11-e957-4764-b9c6-543be3b54c93 X-Archives-Hash: faca9e6d31b05c18d0ca763909183651 commit: dae964d5a33465f2739cb82988b0806ec05dd716 Author: Lars Wendler gentoo org> AuthorDate: Fri Jan 15 17:21:50 2021 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri Jan 15 17:42:52 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dae964d5 net-dns/pdnsd: Removed isdn support Closes: https://bugs.gentoo.org/765544 Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Lars Wendler gentoo.org> net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild index beab65cedd7..1b6f6b34a9b 100644 --- a/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild +++ b/net-dns/pdnsd/pdnsd-1.2.9a-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -12,7 +12,7 @@ SRC_URI="http://members.home.nl/p.a.rombouts/pdnsd/releases/${P}-par.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~s390 ~sparc ~x86" -IUSE="debug ipv6 isdn +urandom test" +IUSE="debug ipv6 +urandom test" RESTRICT="!test? ( test )" RDEPEND=" @@ -23,12 +23,12 @@ DEPEND="test? ( net-dns/bind-tools )" src_configure() { local myeconfargs=( + --disable-isdn --sysconfdir="${EPREFIX}"/etc/pdnsd --with-cachedir="${EPREFIX}"/var/cache/pdnsd --with-default-id=pdnsd $(use_enable ipv6) $(use_enable ipv6 ipv6-startup) - $(use_enable isdn) $(usex debug '--with-debug=3' '') $(usex urandom "--with-random-device=${EPREFIX}/dev/urandom" '') )