Gentoo Archives: gentoo-commits

From: Sven Wegener <swegener@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/pdns-recursor/
Date: Fri, 08 Oct 2021 19:10:11
Message-Id: 1633720196.cf8cb0aeecc74576640b486f44509cc86a5aca18.swegener@gentoo
1 commit: cf8cb0aeecc74576640b486f44509cc86a5aca18
2 Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 8 16:47:25 2021 +0000
4 Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 8 19:09:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf8cb0ae
7
8 net-dns/pdns-recursor: Version bump to 4.4.6
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.3
11 Signed-off-by: Sven Wegener <swegener <AT> gentoo.org>
12
13 net-dns/pdns-recursor/Manifest | 1 +
14 net-dns/pdns-recursor/pdns-recursor-4.4.6.ebuild | 88 ++++++++++++++++++++++++
15 2 files changed, 89 insertions(+)
16
17 diff --git a/net-dns/pdns-recursor/Manifest b/net-dns/pdns-recursor/Manifest
18 index 3a7d33342f3..f0aa297eb72 100644
19 --- a/net-dns/pdns-recursor/Manifest
20 +++ b/net-dns/pdns-recursor/Manifest
21 @@ -1,2 +1,3 @@
22 DIST pdns-recursor-4.4.5.tar.bz2 1400394 BLAKE2B a373d15987860bd6b890e5aa5900f28623ff763a711e527b05c3de950c7fbec186dc5e085100008a8ee89bab24140b0f993357349ec04d968e7f386156cdefbc SHA512 21f4172bb8908cfb53e8d457533a85940b13da6733c2da3972b587e64a0f6d52bfd52b85d5d65769c33dd479ce89b6306bdd105c120ab99b32963e7f0cfbc2e2
23 +DIST pdns-recursor-4.4.6.tar.bz2 1403882 BLAKE2B 2f860128849cce29131300cbda2f2646c7fbaeeb704a6131933d3bbe205bdf1dddd45f9f79f74345b2dea34e56d145b9ef878c0cd6280ceeb075c196afe53d5e SHA512 0ac897da628fb133bd7cd3932e0a1d362c88c55cb07dc2d5d645f731dc8dbf5d18993967654a60156cba7eaac7869ee10a67987a2a492c0c239de9788188caf4
24 DIST pdns-recursor-4.5.5.tar.bz2 1472089 BLAKE2B 408bd0d11b0945de15fe22b290b127a9b7f9f053359a0269fb9e478ae536ed5c4b5ad3b5fa8b15d7786fdd0cdd8721d5a5cb66d46f816105e37ecd9fc9557854 SHA512 7df2e89eea55e870724370753b39d867e2b32fc8bcbdb3efaefa824917b16b9d382817dce7d551dc16d8ad0b0c04b3021cba310b47de969fe54c395eafe7706b
25
26 diff --git a/net-dns/pdns-recursor/pdns-recursor-4.4.6.ebuild b/net-dns/pdns-recursor/pdns-recursor-4.4.6.ebuild
27 new file mode 100644
28 index 00000000000..dc546d8cd6c
29 --- /dev/null
30 +++ b/net-dns/pdns-recursor/pdns-recursor-4.4.6.ebuild
31 @@ -0,0 +1,88 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +LUA_COMPAT=( lua5-{1..4} luajit )
38 +
39 +inherit flag-o-matic lua-single
40 +
41 +DESCRIPTION="The PowerDNS Recursor"
42 +HOMEPAGE="https://www.powerdns.com/"
43 +SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2"
44 +
45 +LICENSE="GPL-2"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~x86"
48 +IUSE="debug dnstap protobuf snmp sodium systemd test"
49 +REQUIRED_USE="${LUA_REQUIRED_USE}
50 + dnstap? ( protobuf )"
51 +RESTRICT="!test? ( test )"
52 +
53 +DEPEND="${LUA_DEPS}
54 + protobuf? (
55 + dev-libs/protobuf
56 + >=dev-libs/boost-1.42:=
57 + )
58 + dnstap? ( dev-libs/fstrm )
59 + systemd? ( sys-apps/systemd:0= )
60 + snmp? ( net-analyzer/net-snmp )
61 + sodium? ( dev-libs/libsodium:= )
62 + dev-libs/openssl:=
63 + >=dev-libs/boost-1.35:="
64 +RDEPEND="${DEPEND}
65 + !<net-dns/pdns-2.9.20-r1
66 + acct-user/pdns
67 + acct-group/pdns"
68 +BDEPEND="virtual/pkgconfig"
69 +
70 +S="${WORKDIR}"/${P/_/-}
71 +
72 +pkg_setup() {
73 + lua-single_pkg_setup
74 + filter-flags -ftree-vectorize
75 +}
76 +
77 +src_configure() {
78 + econf \
79 + --sysconfdir=/etc/powerdns \
80 + --with-nod-cache-dir=/var/lib/powerdns \
81 + --with-service-user=pdns \
82 + --with-service-group=pdns \
83 + --with-lua="${ELUA}" \
84 + $(use_enable debug verbose-logging) \
85 + $(use_enable systemd) \
86 + $(use_enable dnstap dnstap) \
87 + $(use_enable test unit-tests) \
88 + $(use_with sodium libsodium) \
89 + $(use_with protobuf) \
90 + $(use_with snmp net-snmp)
91 +}
92 +
93 +src_install() {
94 + default
95 +
96 + mv "${D}"/etc/powerdns/recursor.conf{-dist,}
97 +
98 + # set defaults: setuid=nobody, setgid=nobody
99 + sed -i \
100 + -e 's/^# set\([ug]\)id=$/set\1id=pdns/' \
101 + -e 's/^# quiet=$/quiet=on/' \
102 + -e 's/^# chroot=$/chroot=\/var\/lib\/powerdns/' \
103 + "${D}"/etc/powerdns/recursor.conf
104 +
105 + newinitd "${FILESDIR}"/pdns-recursor-r2 pdns-recursor
106 +}
107 +
108 +pkg_postinst() {
109 + local old
110 +
111 + for old in ${REPLACING_VERSIONS}; do
112 + ver_test ${old} -lt 4.0.0-r1 || continue
113 +
114 + ewarn "Starting with 4.0.0-r1 the init script has been renamed from precursor"
115 + ewarn "to pdns-recursor, please update your runlevels accordingly."
116 +
117 + break
118 + done
119 +}