[arch-commits] Commit in powerdns/repos (4 files)

Lukas Fleischer lfleischer at archlinux.org
Thu Dec 12 03:11:22 UTC 2019


    Date: Thursday, December 12, 2019 @ 03:11:22
  Author: lfleischer
Revision: 537153

db-move: moved powerdns from [community-staging] to [community-testing] (x86_64)

Added:
  powerdns/repos/community-testing-x86_64/
  powerdns/repos/community-testing-x86_64/PKGBUILD
    (from rev 537152, powerdns/repos/community-staging-x86_64/PKGBUILD)
  powerdns/repos/community-testing-x86_64/sysusers.conf
    (from rev 537152, powerdns/repos/community-staging-x86_64/sysusers.conf)
Deleted:
  powerdns/repos/community-staging-x86_64/

---------------+
 PKGBUILD      |   78 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sysusers.conf |    1 
 2 files changed, 79 insertions(+)

Copied: powerdns/repos/community-testing-x86_64/PKGBUILD (from rev 537152, powerdns/repos/community-staging-x86_64/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2019-12-12 03:11:22 UTC (rev 537153)
@@ -0,0 +1,78 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Alexander Rødseth <rodseth at gmail.com>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+# Contributor: Kevin Mihelich <kevin at archlinuxarm.org>
+# Contributor: Remi Gacogne <rgacogne[at]archlinux[dot]org>
+# Contributor: Pieter Lexis <pieter[dot]lexis[at]powerdns[dot]com>
+
+pkgname=powerdns
+pkgver=4.2.0
+pkgrel=7
+pkgdesc='Authoritative DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('boost-libs' 'botan>=2.7.0' 'libsodium' 'luajit' 'openssl' 'protobuf'
+         'sqlite' 'systemd' 'lua' 'curl' 'libcurl.so')
+makedepends=('boost' 'geoip' 'libldap' 'mariadb-libs' 'opendbx'
+             'postgresql-libs' 'tinycdb' 'unixodbc' 'yaml-cpp')
+optdepends=('geoip: GeoIP backend'
+            'mariadb-libs: MariaDB/MySQL and MyDNS backend'
+            'libldap: LDAP backend'
+            'opendbx: OpenDBX backend'
+            'postgresql-libs: PostgreSQL backend'
+            'unixodbc: ODBC backend'
+            'tinycdb: TinyDNS backend'
+            'yaml-cpp: GeoIP backend')
+provides=('pdns')
+conflicts=('pdns')
+backup=('etc/powerdns/pdns.conf')
+source=(https://downloads.powerdns.com/releases/pdns-${pkgver}.tar.bz2{,.asc}
+        sysusers.conf)
+sha512sums=('ee67c132458e539d522aaa5835237dc64d92ad546f51e0ef86366964f7105631f2bd1e6c5d19d85466d95e1982f6410aeb14932c265fddfd301e403e76542624'
+            'SKIP'
+            '522bde8b76367db6edd461fca8f81d50304a4d764addf33774b3e2c5c93a9e72d93993f54ddd4ee887ceeccf70280aceea3ffaf6370d26310e0a7ebbbf61f26a')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'   # Winkels, Erik <erik.winkels at open-xchange.com>
+              '16E12866B7738C73976A57436FFC33439B0D04DF'   # Peter van Dijk <peter.van.dijk at powerdns.com>
+              'FBAE0323821C7706A5CA151BDCF513FA7EED19F3' ) # Pieter Lexis <pieter.lexis at powerdns.com>
+
+prepare() {
+  cd pdns-${pkgver}
+  # Patch the Makefile.in's so /powerdns is used instead of /pdns (for e.g. $LIBDIR)
+  # This allows for running pdns_server without setting `module-dir` in the config.
+  find . -name 'Makefile.in' -exec sed -i 's,pkglibdir = \$(libdir)/@PACKAGE@,pkglibdir = $(libdir)/powerdns,' {} \;
+}
+
+build() {
+  cd pdns-${pkgver}
+  ./configure \
+    --prefix=/usr \
+    --sysconfdir=/etc/powerdns \
+    --sbindir=/usr/bin \
+    --with-modules='' \
+    --with-dynmodules="bind geoip gmysql godbc gpgsql gsqlite3 ldap lua mydns opendbx pipe random remote tinydns" \
+    --docdir=/usr/share/doc/powerdns \
+    --enable-libsodium \
+    --enable-botan \
+    --enable-tools \
+    --disable-dependency-tracking \
+    --disable-silent-rules \
+    --enable-reproducible \
+    --enable-unit-tests \
+    --enable-systemd
+  make
+}
+
+check() {
+  make -C pdns-${pkgver} check
+}
+
+package() {
+  make -C pdns-${pkgver} DESTDIR="${pkgdir}" install
+  install -D -m644 sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf"
+  mv "${pkgdir}/etc/powerdns/pdns.conf"{-dist,}
+  # Ensure we run as the powerdns user
+  sed -i "s,^# \(set.id=\),\1${pkgname}," "${pkgdir}/etc/powerdns/pdns.conf"
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns/repos/community-testing-x86_64/sysusers.conf (from rev 537152, powerdns/repos/community-staging-x86_64/sysusers.conf)
===================================================================
--- community-testing-x86_64/sysusers.conf	                        (rev 0)
+++ community-testing-x86_64/sysusers.conf	2019-12-12 03:11:22 UTC (rev 537153)
@@ -0,0 +1 @@
+u powerdns - "PowerDNS Authoritative Server" -



More information about the arch-commits mailing list