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 6D0F915806E for ; Mon, 5 Jun 2023 11:03:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85256E08ED; Mon, 5 Jun 2023 11:03:29 +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 69901E08ED for ; Mon, 5 Jun 2023 11:03:29 +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 56678340EE3 for ; Mon, 5 Jun 2023 11:03:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 837798DC for ; Mon, 5 Jun 2023 11:03:26 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1685963002.bcacc1b10859dd4bcee4c494378eba8b2dc1b173.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/pdns/pdns-4.7.4.ebuild net-dns/pdns/pdns-4.8.0.ebuild X-VCS-Directories: net-dns/pdns/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: bcacc1b10859dd4bcee4c494378eba8b2dc1b173 X-VCS-Branch: master Date: Mon, 5 Jun 2023 11:03:26 +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: 2f8e1e28-ca46-42b2-b7d7-8cb0a052d447 X-Archives-Hash: d59d0c2afd0950035445471b73b0c54a commit: bcacc1b10859dd4bcee4c494378eba8b2dc1b173 Author: Sven Wegener gentoo org> AuthorDate: Mon Jun 5 10:45:32 2023 +0000 Commit: Sven Wegener gentoo org> CommitDate: Mon Jun 5 11:03:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcacc1b1 net-dns/pdns: remove lua USE flag, bug #907676 Besides the lua backend, pdns always requires lua for internal functions. Closes: https://bugs.gentoo.org/907676 Signed-off-by: Sven Wegener gentoo.org> net-dns/pdns/pdns-4.7.4.ebuild | 4 ++-- net-dns/pdns/pdns-4.8.0.ebuild | 9 ++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/net-dns/pdns/pdns-4.7.4.ebuild b/net-dns/pdns/pdns-4.7.4.ebuild index d5fc1d607c57..a488c22893d4 100644 --- a/net-dns/pdns/pdns-4.7.4.ebuild +++ b/net-dns/pdns/pdns-4.7.4.ebuild @@ -23,9 +23,9 @@ KEYWORDS="amd64 x86" IUSE="debug doc geoip ldap lmdb lua-records mysql postgres remote sodium sqlite systemd tools tinydns test" RESTRICT="!test? ( test )" -REQUIRED_USE="lua-records? ( ${LUA_REQUIRED_USE} )" +REQUIRED_USE="${LUA_REQUIRED_USE}" -DEPEND="lua-records? ( ${LUA_DEPS} ) +DEPEND="${LUA_DEPS} dev-libs/openssl:= dev-libs/boost:= lmdb? ( >=dev-db/lmdb-0.9.29 ) diff --git a/net-dns/pdns/pdns-4.8.0.ebuild b/net-dns/pdns/pdns-4.8.0.ebuild index 5640b0019192..f4cd9f633ea0 100644 --- a/net-dns/pdns/pdns-4.8.0.ebuild +++ b/net-dns/pdns/pdns-4.8.0.ebuild @@ -16,12 +16,12 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="debug doc geoip ldap lmdb lua lua-records mysql odbc postgres remote sodium sqlite systemd tools tinydns test" +IUSE="debug doc geoip ldap lmdb lua-records mysql odbc postgres remote sodium sqlite systemd tools tinydns test" RESTRICT="!test? ( test )" -REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} ) lua-records? ( lua )" +REQUIRED_USE="${LUA_REQUIRED_USE}" -DEPEND="lua? ( ${LUA_DEPS} ) +DEPEND="${LUA_DEPS} dev-libs/openssl:= dev-libs/boost:= lmdb? ( >=dev-db/lmdb-0.9.29 ) @@ -52,12 +52,11 @@ pkg_setup() { } src_configure() { - local cnf_dynmodules="pipe bind" # the default backends, always enabled + local cnf_dynmodules="bind lua2 pipe" # the default backends, always enabled use geoip && cnf_dynmodules+=" geoip" use ldap && cnf_dynmodules+=" ldap" use lmdb && cnf_dynmodules+=" lmdb" - use lua && cnf_dynmodules+=" lua2" use mysql && cnf_dynmodules+=" gmysql" use odbc && cnf_dynmodules+=" godbc" use postgres && cnf_dynmodules+=" gpgsql"