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 D76B31396D0 for ; Mon, 4 Sep 2017 19:37:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2895E1FC048; Mon, 4 Sep 2017 19:37:01 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 ECBC41FC048 for ; Mon, 4 Sep 2017 19:37:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 9169533BEAE for ; Mon, 4 Sep 2017 19:36:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2323D8DF6 for ; Mon, 4 Sep 2017 19:36:57 +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: <1504553765.a785c24670fc73413412baf756ac2a5163e78402.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.0.2.ebuild net-dns/pdns/pdns-4.0.3-r3.ebuild net-dns/pdns/pdns-4.0.3.ebuild net-dns/pdns/pdns-4.0.4.ebuild net-dns/pdns/pdns-4.1.0_rc1.ebuild X-VCS-Directories: net-dns/pdns/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: a785c24670fc73413412baf756ac2a5163e78402 X-VCS-Branch: master Date: Mon, 4 Sep 2017 19:36: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-Archives-Salt: 908d2f1e-c9d3-41b6-92db-3eac9d220d45 X-Archives-Hash: 58a1c84cf82520d6bec8f56a6ab93ceb commit: a785c24670fc73413412baf756ac2a5163e78402 Author: Stijn Tintel linux-ipv6 be> AuthorDate: Mon Sep 4 08:32:04 2017 +0000 Commit: Sven Wegener gentoo org> CommitDate: Mon Sep 4 19:36:05 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a785c246 net-dns/pdns: add libressl support PowerDNS Authoritative Server supports LibreSSL since version 4.0.2. Compile-tested all versions on Gentoo Hardened musl amd64. Signed-off-by: Stijn Tintel linux-ipv6.be> Closes: https://github.com/gentoo/gentoo/pull/5609 Signed-off-by: Sven Wegener gentoo.org> net-dns/pdns/pdns-4.0.2.ebuild | 5 +++-- net-dns/pdns/pdns-4.0.3-r3.ebuild | 5 +++-- net-dns/pdns/pdns-4.0.3.ebuild | 5 +++-- net-dns/pdns/pdns-4.0.4.ebuild | 5 +++-- net-dns/pdns/pdns-4.1.0_rc1.ebuild | 5 +++-- 5 files changed, 15 insertions(+), 10 deletions(-) diff --git a/net-dns/pdns/pdns-4.0.2.ebuild b/net-dns/pdns/pdns-4.0.2.ebuild index 1667ccf8b37..99bcbba8399 100644 --- a/net-dns/pdns/pdns-4.0.2.ebuild +++ b/net-dns/pdns/pdns-4.0.2.ebuild @@ -18,12 +18,13 @@ KEYWORDS="amd64 x86" # oracle: dito (need Oracle Client Libraries) # xdb: (almost) dead, surely not supported -IUSE="botan debug doc geoip ldap lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" +IUSE="botan debug doc geoip ldap libressl lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" REQUIRED_USE="mydns? ( mysql ) ?? ( lua luajit )" RDEPEND=" - dev-libs/openssl:= + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:= ) >=dev-libs/boost-1.35:= botan? ( =dev-libs/botan-1.10*[threads] ) lua? ( dev-lang/lua:= ) diff --git a/net-dns/pdns/pdns-4.0.3-r3.ebuild b/net-dns/pdns/pdns-4.0.3-r3.ebuild index f68b555fb8d..2ba5df54f29 100644 --- a/net-dns/pdns/pdns-4.0.3-r3.ebuild +++ b/net-dns/pdns/pdns-4.0.3-r3.ebuild @@ -18,12 +18,13 @@ KEYWORDS="~amd64 ~x86" # oracle: dito (need Oracle Client Libraries) # xdb: (almost) dead, surely not supported -IUSE="botan debug doc geoip ldap lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" +IUSE="botan debug doc geoip ldap libressl lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" REQUIRED_USE="mydns? ( mysql ) ?? ( lua luajit )" RDEPEND=" - dev-libs/openssl:= + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:= ) >=dev-libs/boost-1.35:= botan? ( =dev-libs/botan-1.10*[threads] ) lua? ( dev-lang/lua:= ) diff --git a/net-dns/pdns/pdns-4.0.3.ebuild b/net-dns/pdns/pdns-4.0.3.ebuild index 53faa0c23cf..c7455c660e7 100644 --- a/net-dns/pdns/pdns-4.0.3.ebuild +++ b/net-dns/pdns/pdns-4.0.3.ebuild @@ -18,12 +18,13 @@ KEYWORDS="~amd64 ~x86" # oracle: dito (need Oracle Client Libraries) # xdb: (almost) dead, surely not supported -IUSE="botan debug doc geoip ldap lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" +IUSE="botan debug doc geoip ldap libressl lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" REQUIRED_USE="mydns? ( mysql ) ?? ( lua luajit )" RDEPEND=" - dev-libs/openssl:= + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:= ) >=dev-libs/boost-1.35:= botan? ( =dev-libs/botan-1.10*[threads] ) lua? ( dev-lang/lua:= ) diff --git a/net-dns/pdns/pdns-4.0.4.ebuild b/net-dns/pdns/pdns-4.0.4.ebuild index f68b555fb8d..2ba5df54f29 100644 --- a/net-dns/pdns/pdns-4.0.4.ebuild +++ b/net-dns/pdns/pdns-4.0.4.ebuild @@ -18,12 +18,13 @@ KEYWORDS="~amd64 ~x86" # oracle: dito (need Oracle Client Libraries) # xdb: (almost) dead, surely not supported -IUSE="botan debug doc geoip ldap lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" +IUSE="botan debug doc geoip ldap libressl lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" REQUIRED_USE="mydns? ( mysql ) ?? ( lua luajit )" RDEPEND=" - dev-libs/openssl:= + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:= ) >=dev-libs/boost-1.35:= botan? ( =dev-libs/botan-1.10*[threads] ) lua? ( dev-lang/lua:= ) diff --git a/net-dns/pdns/pdns-4.1.0_rc1.ebuild b/net-dns/pdns/pdns-4.1.0_rc1.ebuild index bd6ec7e3d59..95b9943f9c6 100644 --- a/net-dns/pdns/pdns-4.1.0_rc1.ebuild +++ b/net-dns/pdns/pdns-4.1.0_rc1.ebuild @@ -18,12 +18,13 @@ KEYWORDS="~amd64 ~x86" # oracle: dito (need Oracle Client Libraries) # xdb: (almost) dead, surely not supported -IUSE="botan debug doc geoip ldap lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" +IUSE="botan debug doc geoip ldap libressl lua luajit mydns mysql opendbx postgres protobuf remote sqlite systemd tools tinydns test" REQUIRED_USE="mydns? ( mysql ) ?? ( lua luajit )" RDEPEND=" - dev-libs/openssl:= + libressl? ( dev-libs/libressl:= ) + !libressl? ( dev-libs/openssl:= ) >=dev-libs/boost-1.35:= botan? ( =dev-libs/botan-1.10*[threads] ) lua? ( dev-lang/lua:= )