Date: Tuesday, May 11, 2021 @ 09:41:21 Author: rgacogne Revision: 929927
archrelease: copy trunk to community-testing-x86_64 Added: powerdns-recursor/repos/community-testing-x86_64/ powerdns-recursor/repos/community-testing-x86_64/PKGBUILD (from rev 929926, powerdns-recursor/trunk/PKGBUILD) powerdns-recursor/repos/community-testing-x86_64/sysusers.conf (from rev 929926, powerdns-recursor/trunk/sysusers.conf) ---------------+ PKGBUILD | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ sysusers.conf | 1 2 files changed, 58 insertions(+) Copied: powerdns-recursor/repos/community-testing-x86_64/PKGBUILD (from rev 929926, powerdns-recursor/trunk/PKGBUILD) =================================================================== --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2021-05-11 09:41:21 UTC (rev 929927) @@ -0,0 +1,57 @@ +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Maintainer: Remi Gacogne <rgacogne[at]archlinux[dot]org> +# Contributor: Alexander Rødseth <rods...@gmail.com> +# Contributor: Jan de Groot <j...@archlinux.org> +# Contributor: Jan Steffens <hef...@archlinux.org> + +pkgname=powerdns-recursor +pkgver=4.5.1 +pkgrel=1 +pkgdesc='Resolving DNS server' +url='https://www.powerdns.com/' +arch=('x86_64') +license=('GPL2') +depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'luajit' 'openssl' + 'libboost_context.so' 'fstrm' 'net-snmp') +makedepends=('boost' 'inetutils' 'pandoc' 'ragel' 'systemd') +provides=('pdns-recursor') +conflicts=('pdns-recursor') +backup=('etc/powerdns/recursor.conf') +source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc} + sysusers.conf) +sha512sums=('0cfbc95e3e84a2ab2cd88ee638b0ff26f5f35b64754086483555df28f045d64b5fdfab3e8c430c0b4e97dc4eda624226c37ec0f50902ffe5f84882d814e8051e' + 'SKIP' + '63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72') +validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7' # Pieter Lexis <pieter.le...@powerdns.com> + 'FBAE0323821C7706A5CA151BDCF513FA7EED19F3' # Peter van Dijk <peter.van.d...@powerdns.com> + '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik <erik.wink...@open-xchange.com> + +prepare() { + cd pdns-recursor-${pkgver} + autoreconf -i +} + +build() { + cd pdns-recursor-${pkgver} + ./configure \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc/powerdns \ + --disable-silent-rules \ + --enable-reproducible \ + --enable-systemd \ + --with-libsodium \ + --with-lua=luajit \ + --with-service-user=pdns-recursor \ + --with-service-group=pdns-recursor + make +} + +package() { + cd pdns-recursor-${pkgver} + make DESTDIR="${pkgdir}" install + mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,} + install -Dm 644 "${srcdir}/sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/powerdns-recursor.conf" +} + +# vim: ts=2 sw=2 et: Copied: powerdns-recursor/repos/community-testing-x86_64/sysusers.conf (from rev 929926, powerdns-recursor/trunk/sysusers.conf) =================================================================== --- community-testing-x86_64/sysusers.conf (rev 0) +++ community-testing-x86_64/sysusers.conf 2021-05-11 09:41:21 UTC (rev 929927) @@ -0,0 +1 @@ +u pdns-recursor - "PowerDNS Recursor" -