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: Thu, 29 Mar 2018 18:05:17
Message-Id: 1522346709.d67e1191e06c078eef31c717d5cdb24cc6bf2378.swegener@gentoo
1 commit: d67e1191e06c078eef31c717d5cdb24cc6bf2378
2 Author: Sven Wegener <swegener <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 29 18:03:35 2018 +0000
4 Commit: Sven Wegener <swegener <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 29 18:05:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d67e1191
7
8 net-dns/pdns-recursor: Version bump
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 net-dns/pdns-recursor/Manifest | 1 +
13 net-dns/pdns-recursor/pdns-recursor-4.1.2.ebuild | 80 ++++++++++++++++++++++++
14 2 files changed, 81 insertions(+)
15
16 diff --git a/net-dns/pdns-recursor/Manifest b/net-dns/pdns-recursor/Manifest
17 index 835ce37a1f8..5d411f88240 100644
18 --- a/net-dns/pdns-recursor/Manifest
19 +++ b/net-dns/pdns-recursor/Manifest
20 @@ -1,2 +1,3 @@
21 DIST pdns-recursor-4.0.8.tar.bz2 1071831 BLAKE2B d9ab0dada8efa4b05c136650b9a2eab3aec4acab28ffb6da5bb4f627dc085b2c2d046d1f0dac5cf6e7054b47d76b8d7b95f56cc096b613891a4422b77e9abe9d SHA512 9886fccd3042904b7133e03a7b45479c8f2f57ecb33e4a043703b5e84816cd04a331503870e16030c86b353c1e14d9283dba767c1247e46ed6e14b7e0e93a5ef
22 DIST pdns-recursor-4.1.1.tar.bz2 1224544 BLAKE2B 886353fabed5795696e84c6f70872577ff3832e449c5b88c81fec007777eb39b764091b92c9c8b5dfc7aa0af2fdb305a3ec3578ccaff469e9c305903bcea8089 SHA512 a8561bf0688752f30c4c997930f13d55c506b2a2113d22b074443757a51cde9be182ef948e61eb8c4d639bbf8679d8a4139aafb6983f483b3a917e049fa64e45
23 +DIST pdns-recursor-4.1.2.tar.bz2 1219927 BLAKE2B 3db5d383ad75406925c7196ad0b9552c938a60238fa60e4317c5f4037d716d2faf2ac897dac18661df809211129950a2988846a1c7aa1d24f89c5a682448abfc SHA512 eaf28ce424f1367e548cb78c09de9d39154dddd87e2f19ed238197b6304b20bd9fef599d7df44ca128d89d8cd04d3b7fdd455241bb34ecd688c8042a020c4a36
24
25 diff --git a/net-dns/pdns-recursor/pdns-recursor-4.1.2.ebuild b/net-dns/pdns-recursor/pdns-recursor-4.1.2.ebuild
26 new file mode 100644
27 index 00000000000..7e2d4e9bfdb
28 --- /dev/null
29 +++ b/net-dns/pdns-recursor/pdns-recursor-4.1.2.ebuild
30 @@ -0,0 +1,80 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="6"
35 +
36 +inherit toolchain-funcs flag-o-matic eutils versionator
37 +
38 +DESCRIPTION="The PowerDNS Recursor"
39 +HOMEPAGE="https://www.powerdns.com/"
40 +SRC_URI="https://downloads.powerdns.com/releases/${P/_/-}.tar.bz2"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~x86"
45 +IUSE="libressl luajit protobuf snmp sodium systemd"
46 +
47 +DEPEND="!luajit? ( >=dev-lang/lua-5.1:= )
48 + luajit? ( dev-lang/luajit:= )
49 + protobuf? (
50 + dev-libs/protobuf
51 + >=dev-libs/boost-1.42:=
52 + )
53 + systemd? ( sys-apps/systemd:0= )
54 + snmp? ( net-analyzer/net-snmp )
55 + sodium? ( dev-libs/libsodium:= )
56 + libressl? ( dev-libs/libressl:= )
57 + !libressl? ( dev-libs/openssl:= )
58 + >=dev-libs/boost-1.35:="
59 +RDEPEND="${DEPEND}
60 + !<net-dns/pdns-2.9.20-r1"
61 +DEPEND="${DEPEND}
62 + virtual/pkgconfig"
63 +
64 +S="${WORKDIR}"/${P/_/-}
65 +
66 +pkg_setup() {
67 + filter-flags -ftree-vectorize
68 +}
69 +
70 +src_configure() {
71 + econf \
72 + --sysconfdir=/etc/powerdns \
73 + $(use_enable systemd) \
74 + $(use_enable sodium libsodium) \
75 + $(use_with !luajit lua) \
76 + $(use_with luajit luajit) \
77 + $(use_with protobuf) \
78 + $(use_with snmp net-snmp)
79 +}
80 +
81 +src_install() {
82 + default
83 +
84 + mv "${D}"/etc/powerdns/recursor.conf{-dist,}
85 +
86 + # set defaults: setuid=nobody, setgid=nobody
87 + sed -i \
88 + -e 's/^# set\([ug]\)id=$/set\1id=nobody/' \
89 + -e 's/^# quiet=$/quiet=on/' \
90 + -e 's/^# chroot=$/chroot=\/var\/lib\/powerdns/' \
91 + "${D}"/etc/powerdns/recursor.conf
92 +
93 + newinitd "${FILESDIR}"/pdns-recursor-r1 pdns-recursor
94 +
95 + keepdir /var/lib/powerdns
96 +}
97 +
98 +pkg_postinst() {
99 + local old
100 +
101 + for old in ${REPLACING_VERSIONS}; do
102 + version_compare ${old} 4.0.0-r1
103 + [[ $? -eq 1 ]] || continue
104 +
105 + ewarn "Starting with 4.0.0-r1 the init script has been renamed from precursor"
106 + ewarn "to pdns-recursor, please update your runlevels accordingly."
107 +
108 + break
109 + done
110 +}