[arch-commits] Commit in powerdns/repos/community-x86_64 (6 files)

Evangelos Foutras foutrelis at gemini.archlinux.org
Mon Oct 25 02:54:27 UTC 2021


    Date: Monday, October 25, 2021 @ 02:54:27
  Author: foutrelis
Revision: 1033315

archrelease: copy trunk to community-x86_64

Added:
  powerdns/repos/community-x86_64/PKGBUILD
    (from rev 1033314, powerdns/trunk/PKGBUILD)
  powerdns/repos/community-x86_64/boost-1.76.patch
    (from rev 1033314, powerdns/trunk/boost-1.76.patch)
  powerdns/repos/community-x86_64/sysusers.conf
    (from rev 1033314, powerdns/trunk/sysusers.conf)
Deleted:
  powerdns/repos/community-x86_64/PKGBUILD
  powerdns/repos/community-x86_64/boost-1.76.patch
  powerdns/repos/community-x86_64/sysusers.conf

------------------+
 PKGBUILD         |  162 ++++++++++++++++++++++++++---------------------------
 boost-1.76.patch |   30 ++++-----
 sysusers.conf    |    2 
 3 files changed, 97 insertions(+), 97 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-10-25 02:54:20 UTC (rev 1033314)
+++ PKGBUILD	2021-10-25 02:54:27 UTC (rev 1033315)
@@ -1,81 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Maintainer: Remi Gacogne <rgacogne[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: Pieter Lexis <pieter[dot]lexis[at]powerdns[dot]com>
-
-pkgname=powerdns
-pkgver=4.5.1
-pkgrel=2
-pkgdesc='Authoritative DNS server'
-url='https://www.powerdns.com/'
-arch=('x86_64')
-license=('GPL2')
-depends=('boost-libs' 'libcurl.so' 'libsodium' 'lmdb' 'luajit' 'openssl'
-         'sqlite' 'systemd-libs')
-makedepends=('boost' 'geoip' 'libldap' 'mariadb-libs' 'curl' 'libmaxminddb'
-             'postgresql-libs' 'systemd' 'tinycdb' 'unixodbc' 'yaml-cpp')
-optdepends=('geoip: GeoIP backend'
-            'mariadb-libs: MariaDB/MySQL and MyDNS backend'
-            'libldap: LDAP backend'
-            'libmaxminddb: MaxMindDB GeoIP2 database for the GeoIP 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=('428be2bea0d39613fe31def9116c0d3dbfc95eac953ca058df088f06a971a5a1a49067f83c99719af2657e7abcf2e7c471311bd26a1ebf1bae2bd70e1a823fca'
-            '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 lmdb lua2 pipe random remote tinydns" \
-    --docdir=/usr/share/doc/powerdns \
-    --with-libsodium \
-    --enable-tools \
-    --enable-ixfrdist \
-    --enable-dns-over-tls \
-    --disable-dependency-tracking \
-    --disable-silent-rules \
-    --enable-reproducible \
-    --enable-unit-tests \
-    --enable-systemd \
-    --with-service-user=powerdns \
-    --with-service-group=powerdns
-  make
-}
-
-check() {
-  make -C pdns-${pkgver} check
-}
-
-package() {
-  make -C pdns-${pkgver} DESTDIR="${pkgdir}" install
-  install -Dm 644 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-x86_64/PKGBUILD (from rev 1033314, powerdns/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-10-25 02:54:27 UTC (rev 1033315)
@@ -0,0 +1,81 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: Remi Gacogne <rgacogne[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: Pieter Lexis <pieter[dot]lexis[at]powerdns[dot]com>
+
+pkgname=powerdns
+pkgver=4.5.1
+pkgrel=3
+pkgdesc='Authoritative DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('boost-libs' 'libcurl.so' 'libsodium' 'lmdb' 'luajit' 'openssl'
+         'sqlite' 'systemd-libs')
+makedepends=('boost' 'geoip' 'libldap' 'mariadb-libs' 'curl' 'libmaxminddb'
+             'postgresql-libs' 'systemd' 'tinycdb' 'unixodbc' 'yaml-cpp')
+optdepends=('geoip: GeoIP backend'
+            'mariadb-libs: MariaDB/MySQL and MyDNS backend'
+            'libldap: LDAP backend'
+            'libmaxminddb: MaxMindDB GeoIP2 database for the GeoIP 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=('428be2bea0d39613fe31def9116c0d3dbfc95eac953ca058df088f06a971a5a1a49067f83c99719af2657e7abcf2e7c471311bd26a1ebf1bae2bd70e1a823fca'
+            '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 lmdb lua2 pipe random remote tinydns" \
+    --docdir=/usr/share/doc/powerdns \
+    --with-libsodium \
+    --enable-tools \
+    --enable-ixfrdist \
+    --enable-dns-over-tls \
+    --disable-dependency-tracking \
+    --disable-silent-rules \
+    --enable-reproducible \
+    --enable-unit-tests \
+    --enable-systemd \
+    --with-service-user=powerdns \
+    --with-service-group=powerdns
+  make
+}
+
+check() {
+  make -C pdns-${pkgver} check
+}
+
+package() {
+  make -C pdns-${pkgver} DESTDIR="${pkgdir}" install
+  install -Dm 644 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:

Deleted: boost-1.76.patch
===================================================================
--- boost-1.76.patch	2021-10-25 02:54:20 UTC (rev 1033314)
+++ boost-1.76.patch	2021-10-25 02:54:27 UTC (rev 1033315)
@@ -1,15 +0,0 @@
-Upstream commit: https://github.com/PowerDNS/pdns/commit/311f26839819
-
-diff -upr pdns-4.4.1.orig/pdns/Makefile.am pdns-4.4.1/pdns/Makefile.am
---- pdns-4.4.1.orig/pdns/Makefile.am	2021-02-07 00:37:20.000000000 +0200
-+++ pdns-4.4.1/pdns/Makefile.am	2021-06-09 00:18:28.264532242 +0300
-@@ -6,7 +6,8 @@ AM_CPPFLAGS += \
- 	$(LIBEDIT_CFLAGS) \
- 	$(LIBCRYPTO_INCLUDES) \
- 	$(SYSTEMD_CFLAGS) \
--	$(YAML_CFLAGS)
-+	$(YAML_CFLAGS) \
-+	-DBOOST_CONTAINER_USE_STD_EXCEPTIONS
- 
- AM_CXXFLAGS = \
- 	-DSYSCONFDIR=\"$(sysconfdir)\" \

Copied: powerdns/repos/community-x86_64/boost-1.76.patch (from rev 1033314, powerdns/trunk/boost-1.76.patch)
===================================================================
--- boost-1.76.patch	                        (rev 0)
+++ boost-1.76.patch	2021-10-25 02:54:27 UTC (rev 1033315)
@@ -0,0 +1,15 @@
+Upstream commit: https://github.com/PowerDNS/pdns/commit/311f26839819
+
+diff -upr pdns-4.4.1.orig/pdns/Makefile.am pdns-4.4.1/pdns/Makefile.am
+--- pdns-4.4.1.orig/pdns/Makefile.am	2021-02-07 00:37:20.000000000 +0200
++++ pdns-4.4.1/pdns/Makefile.am	2021-06-09 00:18:28.264532242 +0300
+@@ -6,7 +6,8 @@ AM_CPPFLAGS += \
+ 	$(LIBEDIT_CFLAGS) \
+ 	$(LIBCRYPTO_INCLUDES) \
+ 	$(SYSTEMD_CFLAGS) \
+-	$(YAML_CFLAGS)
++	$(YAML_CFLAGS) \
++	-DBOOST_CONTAINER_USE_STD_EXCEPTIONS
+ 
+ AM_CXXFLAGS = \
+ 	-DSYSCONFDIR=\"$(sysconfdir)\" \

Deleted: sysusers.conf
===================================================================
--- sysusers.conf	2021-10-25 02:54:20 UTC (rev 1033314)
+++ sysusers.conf	2021-10-25 02:54:27 UTC (rev 1033315)
@@ -1 +0,0 @@
-u powerdns - "PowerDNS Authoritative Server" -

Copied: powerdns/repos/community-x86_64/sysusers.conf (from rev 1033314, powerdns/trunk/sysusers.conf)
===================================================================
--- sysusers.conf	                        (rev 0)
+++ sysusers.conf	2021-10-25 02:54:27 UTC (rev 1033315)
@@ -0,0 +1 @@
+u powerdns - "PowerDNS Authoritative Server" -



More information about the arch-commits mailing list