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

2020-12-12 Thread Evangelos Foutras via arch-commits
Date: Saturday, December 12, 2020 @ 16:23:16
  Author: foutrelis
Revision: 773432

archrelease: copy trunk to community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 773430, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/boost-1.73.patch
(from rev 773430, powerdns-recursor/trunk/boost-1.73.patch)
  powerdns-recursor/repos/community-staging-x86_64/sysusers.conf
(from rev 773430, powerdns-recursor/trunk/sysusers.conf)

--+
 PKGBUILD |   61 +
 boost-1.73.patch |   57 +
 sysusers.conf|1 
 3 files changed, 119 insertions(+)

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
773430, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-12 16:23:16 UTC (rev 773432)
@@ -0,0 +1,61 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.3.5
+pkgrel=4
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'luajit' 'openssl' 
'protobuf'
+ 'libboost_context.so' 'fstrm' 'net-snmp' 'libprotobuf.so')
+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}
+boost-1.73.patch
+sysusers.conf)
+sha512sums=('2d39e6016000951c0beca38b26c41664b57c059dee762d7499f34e599ed6c2653af73edb31ba5a8d35f749534f24c0d85b6aedf4c35dc8a05777ffebd1b25851'
+'SKIP'
+
'5000bcb3e58c559d4e59105cedc7befb037bca3ef62730718ee6113c940fdb462d0ff7b47b8881d30139d7dfd1e5832a33dbe7f57b48e385f5359406486de7fe'
+
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

+  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

+
+prepare() {
+  cd pdns-recursor-${pkgver}
+  patch -Np1 -i ../boost-1.73.patch
+  autoreconf -i
+}
+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd \
+--with-protobuf \
+--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-staging-x86_64/boost-1.73.patch (from 
rev 773430, powerdns-recursor/trunk/boost-1.73.patch)
===
--- community-staging-x86_64/boost-1.73.patch   (rev 0)
+++ community-staging-x86_64/boost-1.73.patch   2020-12-12 16:23:16 UTC (rev 
773432)
@@ -0,0 +1,57 @@
+diff --git a/webserver.cc b/webserver.cc
+index eafd305..b47cc6d 100644
+--- a/webserver.cc
 b/webserver.cc
+@@ -107,7 +107,7 @@ static void bareHandlerWrapper(WebServer::HandlerFunction 
handler, YaHTTP::Reque
+ 
+ void WebServer::registerBareHandler(const string& url, HandlerFunction 
handler)
+ {
+-  YaHTTP::THandlerFunction f = boost::bind(, handler, _1, 
_2);
++  YaHTTP::THandlerFunction f = std::bind(, handler, 
std::placeholders::_1, std::placeholders::_2);
+   YaHTTP::Router::Any(url, f);
+ }
+ 
+@@ -179,7 +179,7 @@ void WebServer::apiWrapper(WebServer::HandlerFunction 
handler, HttpRequest* req,
+ }
+ 
+ void WebServer::registerApiHandler(const string& url, HandlerFunction 
handler, bool allowPassword) {
+-  HandlerFunction f = boost::bind(::apiWrapper, this, handler, _1, 
_2, allowPassword);
++  HandlerFunction f = std::bind(::apiWrapper, this, handler, 
std::placeholders::_1, std::placeholders::_2, allowPassword);
+   registerBareHandler(url, f);
+ }
+ 
+@@ -196,7 +196,7 @@ void WebServer::webWrapper(WebServer::HandlerFunction 
handler, HttpRequest* req,
+ }
+ 
+ void WebServer::registerWebHandler(const string& url, HandlerFunction 
handler) {
+-  HandlerFunction f = boost::bind(::webWrapper, this, handler, 

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

2020-12-06 Thread Evangelos Foutras via arch-commits
Date: Sunday, December 6, 2020 @ 23:41:01
  Author: foutrelis
Revision: 771332

archrelease: copy trunk to community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 771331, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/boost-1.73.patch
(from rev 771331, powerdns-recursor/trunk/boost-1.73.patch)
  powerdns-recursor/repos/community-staging-x86_64/sysusers.conf
(from rev 771331, powerdns-recursor/trunk/sysusers.conf)

--+
 PKGBUILD |   61 +
 boost-1.73.patch |   57 +
 sysusers.conf|1 
 3 files changed, 119 insertions(+)

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
771331, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2020-12-06 23:41:01 UTC (rev 771332)
@@ -0,0 +1,61 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.3.5
+pkgrel=3
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'luajit' 'openssl' 
'protobuf'
+ 'libboost_context.so' 'fstrm' 'net-snmp' 'libprotobuf.so')
+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}
+boost-1.73.patch
+sysusers.conf)
+sha512sums=('2d39e6016000951c0beca38b26c41664b57c059dee762d7499f34e599ed6c2653af73edb31ba5a8d35f749534f24c0d85b6aedf4c35dc8a05777ffebd1b25851'
+'SKIP'
+
'5000bcb3e58c559d4e59105cedc7befb037bca3ef62730718ee6113c940fdb462d0ff7b47b8881d30139d7dfd1e5832a33dbe7f57b48e385f5359406486de7fe'
+
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

+  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

+
+prepare() {
+  cd pdns-recursor-${pkgver}
+  patch -Np1 -i ../boost-1.73.patch
+  autoreconf -i
+}
+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd \
+--with-protobuf \
+--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-staging-x86_64/boost-1.73.patch (from 
rev 771331, powerdns-recursor/trunk/boost-1.73.patch)
===
--- community-staging-x86_64/boost-1.73.patch   (rev 0)
+++ community-staging-x86_64/boost-1.73.patch   2020-12-06 23:41:01 UTC (rev 
771332)
@@ -0,0 +1,57 @@
+diff --git a/webserver.cc b/webserver.cc
+index eafd305..b47cc6d 100644
+--- a/webserver.cc
 b/webserver.cc
+@@ -107,7 +107,7 @@ static void bareHandlerWrapper(WebServer::HandlerFunction 
handler, YaHTTP::Reque
+ 
+ void WebServer::registerBareHandler(const string& url, HandlerFunction 
handler)
+ {
+-  YaHTTP::THandlerFunction f = boost::bind(, handler, _1, 
_2);
++  YaHTTP::THandlerFunction f = std::bind(, handler, 
std::placeholders::_1, std::placeholders::_2);
+   YaHTTP::Router::Any(url, f);
+ }
+ 
+@@ -179,7 +179,7 @@ void WebServer::apiWrapper(WebServer::HandlerFunction 
handler, HttpRequest* req,
+ }
+ 
+ void WebServer::registerApiHandler(const string& url, HandlerFunction 
handler, bool allowPassword) {
+-  HandlerFunction f = boost::bind(::apiWrapper, this, handler, _1, 
_2, allowPassword);
++  HandlerFunction f = std::bind(::apiWrapper, this, handler, 
std::placeholders::_1, std::placeholders::_2, allowPassword);
+   registerBareHandler(url, f);
+ }
+ 
+@@ -196,7 +196,7 @@ void WebServer::webWrapper(WebServer::HandlerFunction 
handler, HttpRequest* req,
+ }
+ 
+ void WebServer::registerWebHandler(const string& url, HandlerFunction 
handler) {
+-  HandlerFunction f = boost::bind(::webWrapper, this, handler, _1, 

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

2020-05-29 Thread Lukas Fleischer via arch-commits
Date: Friday, May 29, 2020 @ 18:30:45
  Author: lfleischer
Revision: 637255

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

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

---+
 PKGBUILD  |   61 
 sysusers.conf |1 
 2 files changed, 62 insertions(+)

Copied: powerdns-recursor/repos/community-testing-x86_64/PKGBUILD (from rev 
637254, powerdns-recursor/repos/community-staging-x86_64/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2020-05-29 18:30:45 UTC (rev 637255)
@@ -0,0 +1,61 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.3.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' 
'protobuf'
+ 'libboost_context.so' 'fstrm' 'net-snmp' 'libprotobuf.so')
+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
+
${pkgname}-gcc10.patch::https://github.com/PowerDNS/pdns/commit/ffb885e937c27bb1c62dee8f18c58.patch)
+sha512sums=('49ae4957ef202f94ec87e6449dfa9c147689b5576ca1002e0155319099d698300c113e221571f6d41cb1cdc1649619621c2ccf8105620c25452ac30bd83e46b8'
+'SKIP'
+
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72'
+
'3685c8e08df2073351e3cd722ea1d7d19236c148d3a88368884ae5eb0a4fcd084eb2b62082e7f326e0770cd56c184a0f14fb026c02c0111a8386b6a0a46db3e5')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3'  # Peter van Dijk 

+  '16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik 

+
+prepare() {
+  cd pdns-recursor-${pkgver}
+  patch -Np1 < "${srcdir}/${pkgname}-gcc10.patch"
+  autoreconf -i
+}
+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd \
+--with-protobuf \
+--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 637254, powerdns-recursor/repos/community-staging-x86_64/sysusers.conf)
===
--- community-testing-x86_64/sysusers.conf  (rev 0)
+++ community-testing-x86_64/sysusers.conf  2020-05-29 18:30:45 UTC (rev 
637255)
@@ -0,0 +1 @@
+u pdns-recursor - "PowerDNS Recursor" -


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

2017-10-20 Thread Antonio Rojas
Date: Friday, October 20, 2017 @ 19:46:47
  Author: arojas
Revision: 263757

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-i686/
  powerdns-recursor/repos/community-staging-i686/PKGBUILD
(from rev 263756, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 263756, powerdns-recursor/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: powerdns-recursor/repos/community-staging-i686/PKGBUILD (from rev 
263756, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-10-20 19:46:47 UTC (rev 263757)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.6
+pkgrel=3
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('2203fd96469deded1da677344485da221eec036b1ad9fb418a89cd4477d73f2a6fcf984a39b574561df6946f440ddf1982de20cd39d7204da9c27e74216d1159'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3') # Peter van Dijk 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
263756, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-10-20 19:46:47 UTC (rev 263757)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.6
+pkgrel=3
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('2203fd96469deded1da677344485da221eec036b1ad9fb418a89cd4477d73f2a6fcf984a39b574561df6946f440ddf1982de20cd39d7204da9c27e74216d1159'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3') # Peter van Dijk 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-09-11 Thread Levente Polyak
Date: Monday, September 11, 2017 @ 16:58:43
  Author: anthraxx
Revision: 256950

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-i686/
  powerdns-recursor/repos/community-staging-i686/PKGBUILD
(from rev 256949, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 256949, powerdns-recursor/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   44 
 community-staging-x86_64/PKGBUILD |   44 
 2 files changed, 88 insertions(+)

Copied: powerdns-recursor/repos/community-staging-i686/PKGBUILD (from rev 
256949, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-09-11 16:58:43 UTC (rev 256950)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.6
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('2203fd96469deded1da677344485da221eec036b1ad9fb418a89cd4477d73f2a6fcf984a39b574561df6946f440ddf1982de20cd39d7204da9c27e74216d1159'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3') # Peter van Dijk 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
256949, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-09-11 16:58:43 UTC (rev 256950)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.6
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('2203fd96469deded1da677344485da221eec036b1ad9fb418a89cd4477d73f2a6fcf984a39b574561df6946f440ddf1982de20cd39d7204da9c27e74216d1159'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3') # Peter van Dijk 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-07-18 Thread Levente Polyak
Date: Tuesday, July 18, 2017 @ 19:57:17
  Author: anthraxx
Revision: 245594

archrelease: copy trunk to community-i686, community-x86_64

Added:
  powerdns-recursor/repos/community-i686/PKGBUILD
(from rev 245593, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-x86_64/PKGBUILD
(from rev 245593, powerdns-recursor/trunk/PKGBUILD)
Deleted:
  powerdns-recursor/repos/community-i686/PKGBUILD
  powerdns-recursor/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   88 
 community-i686/PKGBUILD   |   43 -
 community-x86_64/PKGBUILD |   43 -
 3 files changed, 88 insertions(+), 86 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-07-18 19:57:05 UTC (rev 245593)
+++ community-i686/PKGBUILD 2017-07-18 19:57:17 UTC (rev 245594)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Jan Steffens 
-# Contributor: Remi Gacogne 
-
-pkgname=powerdns-recursor
-pkgver=4.0.4
-pkgrel=5
-pkgdesc='Resolving DNS server'
-url='https://www.powerdns.com/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
- 'libboost_context.so')
-makedepends=('boost' 'inetutils' 'systemd')
-provides=('pdns-recursor')
-conflicts=('pdns-recursor')
-backup=('etc/powerdns/recursor.conf')
-source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
-sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
-'SKIP')
-validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

-
-build() {
-  cd pdns-recursor-${pkgver}
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc/powerdns \
---disable-silent-rules \
---enable-reproducible \
---enable-systemd
-  make
-}
-
-package() {
-  cd pdns-recursor-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
-}
-
-# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-i686/PKGBUILD (from rev 245593, 
powerdns-recursor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-07-18 19:57:17 UTC (rev 245594)
@@ -0,0 +1,44 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.6
+pkgrel=1
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('2203fd96469deded1da677344485da221eec036b1ad9fb418a89cd4477d73f2a6fcf984a39b574561df6946f440ddf1982de20cd39d7204da9c27e74216d1159'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7'  # Pieter Lexis 

+  'FBAE0323821C7706A5CA151BDCF513FA7EED19F3') # Peter van Dijk 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-07-18 19:57:05 UTC (rev 245593)
+++ community-x86_64/PKGBUILD   2017-07-18 19:57:17 UTC (rev 245594)
@@ -1,43 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Jan Steffens 
-# Contributor: Remi Gacogne 
-
-pkgname=powerdns-recursor
-pkgver=4.0.4
-pkgrel=5
-pkgdesc='Resolving DNS server'
-url='https://www.powerdns.com/'
-arch=('i686' 'x86_64')

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

2017-05-21 Thread Antonio Rojas
Date: Sunday, May 21, 2017 @ 19:37:01
  Author: arojas
Revision: 228935

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-i686/
  powerdns-recursor/repos/community-staging-i686/PKGBUILD
(from rev 228934, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 228934, powerdns-recursor/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   43 
 community-staging-x86_64/PKGBUILD |   43 
 2 files changed, 86 insertions(+)

Copied: powerdns-recursor/repos/community-staging-i686/PKGBUILD (from rev 
228934, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-21 19:37:01 UTC (rev 228935)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=5
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
228934, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-21 19:37:01 UTC (rev 228935)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=5
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-05-15 Thread Antonio Rojas
Date: Monday, May 15, 2017 @ 20:15:13
  Author: arojas
Revision: 228152

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-i686/
  powerdns-recursor/repos/community-staging-i686/PKGBUILD
(from rev 228151, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 228151, powerdns-recursor/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   43 
 community-staging-x86_64/PKGBUILD |   43 
 2 files changed, 86 insertions(+)

Copied: powerdns-recursor/repos/community-staging-i686/PKGBUILD (from rev 
228151, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-05-15 20:15:13 UTC (rev 228152)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=4
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
228151, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-05-15 20:15:13 UTC (rev 228152)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=4
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-03-05 Thread Levente Polyak
Date: Sunday, March 5, 2017 @ 13:56:40
  Author: anthraxx
Revision: 214958

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-i686/
  powerdns-recursor/repos/community-staging-i686/PKGBUILD
(from rev 214957, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 214957, powerdns-recursor/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   43 
 community-staging-x86_64/PKGBUILD |   43 
 2 files changed, 86 insertions(+)

Copied: powerdns-recursor/repos/community-staging-i686/PKGBUILD (from rev 
214957, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-03-05 13:56:40 UTC (rev 214958)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=3
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
214957, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-03-05 13:56:40 UTC (rev 214958)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=3
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2017-02-01 Thread Jelle van der Waa
Date: Wednesday, February 1, 2017 @ 20:52:32
  Author: jelle
Revision: 209665

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  powerdns-recursor/repos/community-staging-i686/
  powerdns-recursor/repos/community-staging-i686/PKGBUILD
(from rev 209664, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-staging-x86_64/
  powerdns-recursor/repos/community-staging-x86_64/PKGBUILD
(from rev 209664, powerdns-recursor/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   43 
 community-staging-x86_64/PKGBUILD |   43 
 2 files changed, 86 insertions(+)

Copied: powerdns-recursor/repos/community-staging-i686/PKGBUILD (from rev 
209664, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-02-01 20:52:32 UTC (rev 209665)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-staging-x86_64/PKGBUILD (from rev 
209664, powerdns-recursor/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-02-01 20:52:32 UTC (rev 209665)
@@ -0,0 +1,43 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.4
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf'
+ 'libboost_context.so')
+makedepends=('boost' 'inetutils' 'systemd')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('9473dfe9abc509b2bb953139dd7892de2027ee1508902fa0c2cd30dd9a88878fcf44370b8372d573cbab12de32bb8c604005d3b39ea34db2ef86786e689d36ab'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2016-10-21 Thread Levente Polyak
Date: Friday, October 21, 2016 @ 11:36:38
  Author: anthraxx
Revision: 192858

archrelease: copy trunk to community-i686, community-x86_64

Added:
  powerdns-recursor/repos/community-i686/PKGBUILD
(from rev 192857, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-x86_64/PKGBUILD
(from rev 192857, powerdns-recursor/trunk/PKGBUILD)
Deleted:
  powerdns-recursor/repos/community-i686/PKGBUILD
  powerdns-recursor/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   84 
 community-i686/PKGBUILD   |   41 -
 community-x86_64/PKGBUILD |   41 -
 3 files changed, 84 insertions(+), 82 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-10-21 11:34:23 UTC (rev 192857)
+++ community-i686/PKGBUILD 2016-10-21 11:36:38 UTC (rev 192858)
@@ -1,41 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Jan Steffens 
-# Contributor: Remi Gacogne 
-
-pkgname=powerdns-recursor
-pkgver=4.0.2
-pkgrel=1
-pkgdesc='Resolving DNS server'
-url='https://www.powerdns.com/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf')
-makedepends=('boost' 'inetutils' 'pkg-config')
-provides=('pdns-recursor')
-conflicts=('pdns-recursor')
-backup=('etc/powerdns/recursor.conf')
-source=(http://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
-sha512sums=('74dea771deb0bcce6209c256f4c2c82a76d34a80a4a67497b58bf8889166a51864c2649527475aa6e6355af8bba86a68d599828274eaa7521006384223f2e937'
-'SKIP')
-validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

-
-build() {
-  cd pdns-recursor-${pkgver}
-  ./configure \
---prefix=/usr \
---sbindir=/usr/bin \
---sysconfdir=/etc/powerdns \
---disable-silent-rules \
---enable-reproducible
-  make
-}
-
-package() {
-  cd pdns-recursor-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
-}
-
-# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-i686/PKGBUILD (from rev 192857, 
powerdns-recursor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-10-21 11:36:38 UTC (rev 192858)
@@ -0,0 +1,42 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.2
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'systemd' 'lua' 'openssl' 'protobuf')
+makedepends=('boost' 'inetutils' 'pkg-config')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(http://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('74dea771deb0bcce6209c256f4c2c82a76d34a80a4a67497b58bf8889166a51864c2649527475aa6e6355af8bba86a68d599828274eaa7521006384223f2e937'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible \
+--enable-systemd
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-10-21 11:34:23 UTC (rev 192857)
+++ community-x86_64/PKGBUILD   2016-10-21 11:36:38 UTC (rev 192858)
@@ -1,41 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Alexander Rødseth 
-# Contributor: Jan de Groot 
-# Contributor: Jan Steffens 
-# Contributor: Remi Gacogne 
-
-pkgname=powerdns-recursor
-pkgver=4.0.2
-pkgrel=1
-pkgdesc='Resolving DNS server'
-url='https://www.powerdns.com/'
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf')
-makedepends=('boost' 'inetutils' 'pkg-config')
-provides=('pdns-recursor')

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

2016-08-30 Thread Levente Polyak
Date: Tuesday, August 30, 2016 @ 13:35:10
  Author: anthraxx
Revision: 188055

archrelease: copy trunk to community-testing-i686, community-testing-x86_64

Added:
  powerdns-recursor/repos/community-testing-i686/
  powerdns-recursor/repos/community-testing-i686/PKGBUILD
(from rev 188054, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-testing-x86_64/
  powerdns-recursor/repos/community-testing-x86_64/PKGBUILD
(from rev 188054, powerdns-recursor/trunk/PKGBUILD)

---+
 community-testing-i686/PKGBUILD   |   41 
 community-testing-x86_64/PKGBUILD |   41 
 2 files changed, 82 insertions(+)

Copied: powerdns-recursor/repos/community-testing-i686/PKGBUILD (from rev 
188054, powerdns-recursor/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2016-08-30 13:35:10 UTC (rev 188055)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf')
+makedepends=('boost' 'inetutils' 'pkg-config')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(http://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('74dea771deb0bcce6209c256f4c2c82a76d34a80a4a67497b58bf8889166a51864c2649527475aa6e6355af8bba86a68d599828274eaa7521006384223f2e937'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-testing-x86_64/PKGBUILD (from rev 
188054, powerdns-recursor/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   (rev 0)
+++ community-testing-x86_64/PKGBUILD   2016-08-30 13:35:10 UTC (rev 188055)
@@ -0,0 +1,41 @@
+# Maintainer: Levente Polyak 
+# Contributor: Alexander Rødseth 
+# Contributor: Jan de Groot 
+# Contributor: Jan Steffens 
+# Contributor: Remi Gacogne 
+
+pkgname=powerdns-recursor
+pkgver=4.0.2
+pkgrel=1
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+arch=('i686' 'x86_64')
+license=('GPL2')
+depends=('gcc-libs' 'boost-libs' 'libsystemd' 'lua' 'openssl' 'protobuf')
+makedepends=('boost' 'inetutils' 'pkg-config')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(http://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc})
+sha512sums=('74dea771deb0bcce6209c256f4c2c82a76d34a80a4a67497b58bf8889166a51864c2649527475aa6e6355af8bba86a68d599828274eaa7521006384223f2e937'
+'SKIP')
+validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7') # Pieter Lexis 

+
+build() {
+  cd pdns-recursor-${pkgver}
+  ./configure \
+--prefix=/usr \
+--sbindir=/usr/bin \
+--sysconfdir=/etc/powerdns \
+--disable-silent-rules \
+--enable-reproducible
+  make
+}
+
+package() {
+  cd pdns-recursor-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
+}
+
+# vim: ts=2 sw=2 et:


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

2014-01-27 Thread Alexander Rødseth
Date: Monday, January 27, 2014 @ 16:44:36
  Author: arodseth
Revision: 104855

archrelease: copy trunk to community-x86_64, community-i686

Added:
  powerdns-recursor/repos/community-i686/PKGBUILD
(from rev 104854, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-i686/pdns-recursor.service
(from rev 104854, powerdns-recursor/trunk/pdns-recursor.service)
  powerdns-recursor/repos/community-x86_64/PKGBUILD
(from rev 104854, powerdns-recursor/trunk/PKGBUILD)
  powerdns-recursor/repos/community-x86_64/pdns-recursor.service
(from rev 104854, powerdns-recursor/trunk/pdns-recursor.service)

+
 community-i686/PKGBUILD|   41 +++
 community-i686/pdns-recursor.service   |   10 +++
 community-x86_64/PKGBUILD  |   41 +++
 community-x86_64/pdns-recursor.service |   10 +++
 4 files changed, 102 insertions(+)

Copied: powerdns-recursor/repos/community-i686/PKGBUILD (from rev 104854, 
powerdns-recursor/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-01-27 15:44:36 UTC (rev 104855)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 100035 2013-10-31 11:20:48Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Jan Steffens hef...@archlinux.org
+
+pkgname=powerdns-recursor
+pkgver=3.5.3
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+license=('GPL')
+arch=('x86_64' 'i686')
+depends=('gcc-libs' 'lua51')
+makedepends=('boost')
+replaces=('pdns-recursor')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(http://downloads.powerdns.com/releases/pdns-recursor-$pkgver.tar.bz2;
+'pdns-recursor.service')
+sha256sums=('192c0b47a1cfcdccaa88d70fd33766a4c381f4223f966416f15e169df5d58eaa'
+'d4f545e85dffa86bf23c89ff0f352c74ec3524dfc53871f129656299222e4fba')
+
+build() {
+  make -C pdns-recursor-$pkgver -j1 LUA=1 \
+LUA_CPPFLAGS_CONFIG=$(pkg-config --cflags lua5.1) \
+LUA_LIBS_CONFIG=$(pkg-config --libs lua5.1)
+}
+
+package() {
+  cd pdns-recursor-$pkgver
+
+  make SBINDIR=/usr/bin DESTDIR=$pkgdir install
+  mv $pkgdir/etc/powerdns/recursor.conf-dist \
+$pkgdir/etc/powerdns/recursor.conf
+  rm -r $pkgdir/etc/init.d
+  install -Dm644 $srcdir/pdns-recursor.service \
+$pkgdir/usr/lib/systemd/system/pdns-recursor.service
+}
+
+# vim:set ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-i686/pdns-recursor.service (from rev 
104854, powerdns-recursor/trunk/pdns-recursor.service)
===
--- community-i686/pdns-recursor.service(rev 0)
+++ community-i686/pdns-recursor.service2014-01-27 15:44:36 UTC (rev 
104855)
@@ -0,0 +1,10 @@
+[Unit]
+Description=PowerDNS resolving DNS server
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/pdns_recursor --daemon
+
+[Install]
+WantedBy=multi-user.target

Copied: powerdns-recursor/repos/community-x86_64/PKGBUILD (from rev 104854, 
powerdns-recursor/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-01-27 15:44:36 UTC (rev 104855)
@@ -0,0 +1,41 @@
+# $Id: PKGBUILD 100035 2013-10-31 11:20:48Z arodseth $
+# Maintainer: Alexander Rødseth rods...@gmail.com
+# Contributor: Jan de Groot j...@archlinux.org
+# Contributor: Jan Steffens hef...@archlinux.org
+
+pkgname=powerdns-recursor
+pkgver=3.5.3
+pkgrel=2
+pkgdesc='Resolving DNS server'
+url='https://www.powerdns.com/'
+license=('GPL')
+arch=('x86_64' 'i686')
+depends=('gcc-libs' 'lua51')
+makedepends=('boost')
+replaces=('pdns-recursor')
+provides=('pdns-recursor')
+conflicts=('pdns-recursor')
+backup=('etc/powerdns/recursor.conf')
+source=(http://downloads.powerdns.com/releases/pdns-recursor-$pkgver.tar.bz2;
+'pdns-recursor.service')
+sha256sums=('192c0b47a1cfcdccaa88d70fd33766a4c381f4223f966416f15e169df5d58eaa'
+'d4f545e85dffa86bf23c89ff0f352c74ec3524dfc53871f129656299222e4fba')
+
+build() {
+  make -C pdns-recursor-$pkgver -j1 LUA=1 \
+LUA_CPPFLAGS_CONFIG=$(pkg-config --cflags lua5.1) \
+LUA_LIBS_CONFIG=$(pkg-config --libs lua5.1)
+}
+
+package() {
+  cd pdns-recursor-$pkgver
+
+  make SBINDIR=/usr/bin DESTDIR=$pkgdir install
+  mv $pkgdir/etc/powerdns/recursor.conf-dist \
+$pkgdir/etc/powerdns/recursor.conf
+  rm -r $pkgdir/etc/init.d
+  install -Dm644 $srcdir/pdns-recursor.service \
+$pkgdir/usr/lib/systemd/system/pdns-recursor.service
+}
+
+# vim:set ts=2 sw=2 et:

Copied: powerdns-recursor/repos/community-x86_64/pdns-recursor.service (from 
rev 104854,