[arch-commits] Commit in bind/repos (10 files)

2020-11-09 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 10, 2020 @ 05:18:02
  Author: foutrelis
Revision: 400034

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 400033, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 400033, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/bind.install
(from rev 400033, bind/trunk/bind.install)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 400033, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 400033, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 400033, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 400033, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 400033, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 400033, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 
 PKGBUILD   |  107 +++
 bind.install   |   10 
 localhost.ip6.zone |   10 
 localhost.zone |   11 +
 named.conf |   57 +++
 named.service  |   10 
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 217 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 400033, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2020-11-10 05:18:02 UTC (rev 400034)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 400033, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-11-10 05:18:02 UTC (rev 400034)
@@ -0,0 +1,107 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+_pkgver=9.16.8
+pkgname=bind
+pkgver=${_pkgver//-/.}
+pkgrel=2
+pkgdesc='A complete, highly portable implementation of the DNS protocol'
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
+  'xz' 'libmaxminddb' 'libnsl' 'libuv' 'python-sphinx')
+depends=('bash' 'dnssec-anchors' 'e2fsprogs' 'glibc' 'icu' 'libedit' 'json-c'
+  'krb5' 'libcap' 'libidn2' 'libmaxminddb' 'libnsl' 'libuv' 'libxml2' 'lmdb'
+  'openssl' 'python' 'python-ply' 'readline' 'xz' 'zlib')
+conflicts=('bind-tools' 'dnsutils')
+replaces=('bind-tools' 'dnsutils' 'host')
+provides=('bind-tools' 'dnsutils' 'dns-server')
+backup=('etc/named.conf'
+'var/named/127.0.0.zone'
+'var/named/localhost.zone'
+'var/named/localhost.ip6.zone')
+install=bind.install
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone')
+sha256sums=('9e9b9c563692be86ec41f670f6b70e26c14e72445c742d7b5eb4db7d2b5e8d31'
+'SKIP'
+'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
+'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
+
+prepare() {
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS
+  # support to chase DNSSEC signature chains
+  CFLAGS+=' 

[arch-commits] Commit in bind/repos (10 files)

2020-07-17 Thread Sébastien Luttringer via arch-commits
Date: Saturday, July 18, 2020 @ 01:00:54
  Author: seblu
Revision: 392261

archrelease: copy trunk to testing-x86_64

Added:
  bind/repos/testing-x86_64/
  bind/repos/testing-x86_64/127.0.0.zone
(from rev 392260, bind/trunk/127.0.0.zone)
  bind/repos/testing-x86_64/PKGBUILD
(from rev 392260, bind/trunk/PKGBUILD)
  bind/repos/testing-x86_64/bind.install
(from rev 392260, bind/trunk/bind.install)
  bind/repos/testing-x86_64/localhost.ip6.zone
(from rev 392260, bind/trunk/localhost.ip6.zone)
  bind/repos/testing-x86_64/localhost.zone
(from rev 392260, bind/trunk/localhost.zone)
  bind/repos/testing-x86_64/named.conf
(from rev 392260, bind/trunk/named.conf)
  bind/repos/testing-x86_64/named.service
(from rev 392260, bind/trunk/named.service)
  bind/repos/testing-x86_64/sysusers.conf
(from rev 392260, bind/trunk/sysusers.conf)
  bind/repos/testing-x86_64/tmpfiles.conf
(from rev 392260, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 
 PKGBUILD   |  107 +++
 bind.install   |   10 
 localhost.ip6.zone |   10 
 localhost.zone |   11 +
 named.conf |   57 +++
 named.service  |   10 
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 217 insertions(+)

Copied: bind/repos/testing-x86_64/127.0.0.zone (from rev 392260, 
bind/trunk/127.0.0.zone)
===
--- testing-x86_64/127.0.0.zone (rev 0)
+++ testing-x86_64/127.0.0.zone 2020-07-18 01:00:54 UTC (rev 392261)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/testing-x86_64/PKGBUILD (from rev 392260, 
bind/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-18 01:00:54 UTC (rev 392261)
@@ -0,0 +1,107 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+_pkgver=9.16.5
+pkgname=bind
+pkgver=${_pkgver//-/.}
+pkgrel=2
+pkgdesc='The ISC DNS Server'
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
+  'xz' 'libmaxminddb' 'libnsl' 'libuv' 'python-sphinx')
+depends=('bash' 'dnssec-anchors' 'e2fsprogs' 'glibc' 'icu' 'libedit' 'json-c'
+  'krb5' 'libcap' 'libidn2' 'libmaxminddb' 'libnsl' 'libuv' 'libxml2' 'lmdb'
+  'openssl' 'python' 'python-ply' 'readline' 'xz' 'zlib')
+conflicts=('bind-tools' 'dnsutils')
+replaces=('bind-tools' 'dnsutils' 'host')
+provides=('bind-tools' 'dnsutils' 'dns-server')
+backup=('etc/named.conf'
+'var/named/127.0.0.zone'
+'var/named/localhost.zone'
+'var/named/localhost.ip6.zone')
+install=bind.install
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone')
+sha256sums=('6378b3e51fef11a8be4794dc48e8111ba92d211c0dfd129a0c296ed06a3dc075'
+'SKIP'
+'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
+'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
+
+prepare() {
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS
+  # support to chase DNSSEC signature chains
+  CFLAGS+=' -DDIG_SIGCHASE'
+  # compile with gcc10, 

[arch-commits] Commit in bind/repos (10 files)

2020-04-25 Thread Evangelos Foutras via arch-commits
Date: Saturday, April 25, 2020 @ 14:31:35
  Author: foutrelis
Revision: 381563

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 381562, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 381562, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/bind.install
(from rev 381562, bind/trunk/bind.install)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 381562, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 381562, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 381562, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 381562, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 381562, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 381562, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 
 PKGBUILD   |  122 +++
 bind.install   |   10 
 localhost.ip6.zone |   10 
 localhost.zone |   11 
 named.conf |   57 +++
 named.service  |   10 
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 232 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 381562, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2020-04-25 14:31:35 UTC (rev 381563)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 381562, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-04-25 14:31:35 UTC (rev 381563)
@@ -0,0 +1,122 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.16.2
+pkgver=${_pkgver//-/.}
+pkgrel=2
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
+  'xz' 'libmaxminddb' 'libnsl' 'libuv')
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone')
+sha256sums=('d9e5b77cfca5ccad97f19cddc87128758ec15c16e6585000c6b2f84fc225993f'
+'SKIP'
+'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
+'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
+
+prepare() {
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+echo "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-fixed-rrset \
+--enable-full-report \
+--enable-dnsrps \
+--with-python=/usr/bin/python \
+--with-geoip2 \
+--with-openssl \
+--with-libidn2 \
+--with-libjson \
+--with-libxml2 \
+--with-lmdb \
+--with-libtool
+  make
+}
+
+package_bind() {
+  pkgdesc='The ISC DNS Server'
+  provides=('dns-server')
+  depends=('glibc' 'libxml2' 'libcap' 'openssl' 'json-c' 'bind-tools' 'zlib'
+   'lmdb' 'libmaxminddb')
+  

[arch-commits] Commit in bind/repos (10 files)

2020-02-19 Thread Sébastien Luttringer via arch-commits
Date: Thursday, February 20, 2020 @ 04:33:18
  Author: seblu
Revision: 375904

archrelease: copy trunk to community-x86_64

Added:
  bind/repos/community-x86_64/
  bind/repos/community-x86_64/127.0.0.zone
(from rev 375903, bind/trunk/127.0.0.zone)
  bind/repos/community-x86_64/PKGBUILD
(from rev 375903, bind/trunk/PKGBUILD)
  bind/repos/community-x86_64/bind.install
(from rev 375903, bind/trunk/bind.install)
  bind/repos/community-x86_64/localhost.ip6.zone
(from rev 375903, bind/trunk/localhost.ip6.zone)
  bind/repos/community-x86_64/localhost.zone
(from rev 375903, bind/trunk/localhost.zone)
  bind/repos/community-x86_64/named.conf
(from rev 375903, bind/trunk/named.conf)
  bind/repos/community-x86_64/named.service
(from rev 375903, bind/trunk/named.service)
  bind/repos/community-x86_64/sysusers.conf
(from rev 375903, bind/trunk/sysusers.conf)
  bind/repos/community-x86_64/tmpfiles.conf
(from rev 375903, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 
 PKGBUILD   |  122 +++
 bind.install   |   10 
 localhost.ip6.zone |   10 
 localhost.zone |   11 
 named.conf |   57 +++
 named.service  |   10 
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 232 insertions(+)

Copied: bind/repos/community-x86_64/127.0.0.zone (from rev 375903, 
bind/trunk/127.0.0.zone)
===
--- community-x86_64/127.0.0.zone   (rev 0)
+++ community-x86_64/127.0.0.zone   2020-02-20 04:33:18 UTC (rev 375904)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/community-x86_64/PKGBUILD (from rev 375903, 
bind/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2020-02-20 04:33:18 UTC (rev 375904)
@@ -0,0 +1,122 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.16.0
+pkgver=${_pkgver//-/.}
+pkgrel=1
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
+  'xz' 'libmaxminddb' 'libnsl' 'libuv')
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.xz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone')
+sha256sums=('af4bd9bdaeb1aa7399429972f3a8aa01dd6886b7ae046d703ab8da45330f2e28'
+'SKIP'
+'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
+'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
+
+prepare() {
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+msg2 "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-fixed-rrset \
+--enable-full-report \
+--enable-dnsrps \
+--with-python=/usr/bin/python \
+--with-geoip2 \
+--with-openssl \
+--with-libidn2 \
+--with-libjson \
+--with-libxml2 \
+--with-lmdb \
+--with-libtool
+  make
+}
+
+package_bind() {
+  pkgdesc='The ISC DNS Server'
+  provides=('dns-server')
+  depends=('glibc' 'libxml2' 'libcap' 'openssl' 'geoip' 'json-c' 'bind-tools'

[arch-commits] Commit in bind/repos (10 files)

2019-12-02 Thread Sébastien Luttringer via arch-commits
Date: Tuesday, December 3, 2019 @ 03:40:34
  Author: seblu
Revision: 370257

archrelease: copy trunk to testing-x86_64

Added:
  bind/repos/testing-x86_64/
  bind/repos/testing-x86_64/127.0.0.zone
(from rev 370256, bind/trunk/127.0.0.zone)
  bind/repos/testing-x86_64/PKGBUILD
(from rev 370256, bind/trunk/PKGBUILD)
  bind/repos/testing-x86_64/empty.zone
(from rev 370256, bind/trunk/empty.zone)
  bind/repos/testing-x86_64/localhost.ip6.zone
(from rev 370256, bind/trunk/localhost.ip6.zone)
  bind/repos/testing-x86_64/localhost.zone
(from rev 370256, bind/trunk/localhost.zone)
  bind/repos/testing-x86_64/named.conf
(from rev 370256, bind/trunk/named.conf)
  bind/repos/testing-x86_64/named.service
(from rev 370256, bind/trunk/named.service)
  bind/repos/testing-x86_64/sysusers.conf
(from rev 370256, bind/trunk/sysusers.conf)
  bind/repos/testing-x86_64/tmpfiles.conf
(from rev 370256, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 
 PKGBUILD   |  125 +++
 empty.zone |8 +++
 localhost.ip6.zone |   10 
 localhost.zone |   11 
 named.conf |   67 +++
 named.service  |   10 
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 243 insertions(+)

Copied: bind/repos/testing-x86_64/127.0.0.zone (from rev 370256, 
bind/trunk/127.0.0.zone)
===
--- testing-x86_64/127.0.0.zone (rev 0)
+++ testing-x86_64/127.0.0.zone 2019-12-03 03:40:34 UTC (rev 370257)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/testing-x86_64/PKGBUILD (from rev 370256, 
bind/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-12-03 03:40:34 UTC (rev 370257)
@@ -0,0 +1,125 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.14.8
+pkgver=${_pkgver//-/.}
+pkgrel=3
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb' 'zlib' 'icu'
+  'xz' 'libmaxminddb')
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone'
+'empty.zone')
+sha256sums=('e545aa75ced6695a9bf4b591606ef00260fb3c055c2865b299cfe0fe6eeea076'
+'SKIP'
+'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+'7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+'aeba2dce22039c2abf02d384602b434fd992733b31774ca6e80f4cb8999b8fa5'
+'3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+'0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8'
+'4adfd0433850f3b6e168a80d211b8a0c3de95711315bdeb47dfae4c1af3d5dec')
+
+prepare() {
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+src="${src%%::*}"
+src="${src##*/}"
+[[ $src = *.patch ]] || continue
+msg2 "Applying patch $src..."
+patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-fixed-rrset \
+--enable-full-report \
+--enable-dnsrps \
+--with-python=/usr/bin/python \
+--with-geoip2 \
+--with-openssl \
+--with-libidn2 \
+--with-libjson \
+--with-libxml2 \
+--with-lmdb \
+--with-libtool
+  make
+}
+
+package_bind() {
+  pkgdesc='The ISC DNS Server'
+  provides=('dns-server')
+  depends=('glibc' 'libxml2' 'libcap' 

[arch-commits] Commit in bind/repos (10 files)

2019-11-11 Thread Evangelos Foutras via arch-commits
Date: Tuesday, November 12, 2019 @ 01:49:47
  Author: foutrelis
Revision: 367831

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 367830, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 367830, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/empty.zone
(from rev 367830, bind/trunk/empty.zone)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 367830, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 367830, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 367830, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 367830, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 367830, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 367830, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 +++
 PKGBUILD   |  129 +++
 empty.zone |8 +++
 localhost.ip6.zone |   10 +++
 localhost.zone |   11 
 named.conf |   72 
 named.service  |   10 +++
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 252 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 367830, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2019-11-12 01:49:47 UTC (rev 367831)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 367830, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-11-12 01:49:47 UTC (rev 367831)
@@ -0,0 +1,129 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.14.7
+pkgver=${_pkgver//-/.}
+pkgrel=4
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb'
+  'zlib' 'icu' 'xz')
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone'
+'empty.zone')
+sha1sums=('ab0b14f4fe6a818fb15673ea9cef3eead8f6a94b'
+  'SKIP'
+  'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
+  '9537f4835a1f736788d0733c7996a10db2d4eee4'
+  'c017aae379c32c7cb1aa1ad84776b83e3a5c139f'
+  '62b06487323dd0d515a4dc659b8ecd193c29107b'
+  '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
+  '52da8f1c0247a11b16daa4e03d920e8f09315cbe'
+  '9c33726088342207ad06d33b2c13408290a0c8ad'
+  '4f4457b310cbbeadca2272eced062a9c2b2b42fe')
+
+prepare() {
+  msg2 'Getting a fresh version of root DNS'
+  # no more using source array, lack of versioning.
+  curl -o root.hint https://www.internic.net/zones/named.root
+  [[ -s root.hint ]]
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-fixed-rrset \
+--enable-full-report \
+--enable-dnsrps \
+--with-python=/usr/bin/python \
+--with-geoip \
+--with-openssl \
+--with-libidn2 \
+--with-libjson \
+--with-libxml2 \
+--with-lmdb \
+--with-libtool
+  make
+}
+
+package_bind() {
+  pkgdesc='The ISC DNS Server'
+  provides=('dns-server')
+  depends=('glibc' 'libxml2' 'libcap' 'openssl' 'geoip' 'json-c' 'bind-tools'
+  

[arch-commits] Commit in bind/repos (10 files)

2019-10-25 Thread Evangelos Foutras via arch-commits
Date: Friday, October 25, 2019 @ 20:23:39
  Author: foutrelis
Revision: 365723

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 365722, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 365722, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/empty.zone
(from rev 365722, bind/trunk/empty.zone)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 365722, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 365722, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 365722, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 365722, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 365722, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 365722, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 +++
 PKGBUILD   |  129 +++
 empty.zone |8 +++
 localhost.ip6.zone |   10 +++
 localhost.zone |   11 
 named.conf |   72 
 named.service  |   10 +++
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 252 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 365722, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2019-10-25 20:23:39 UTC (rev 365723)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 365722, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-10-25 20:23:39 UTC (rev 365723)
@@ -0,0 +1,129 @@
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.14.7
+pkgver=${_pkgver//-/.}
+pkgrel=2
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+  'libidn2' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'lmdb'
+  'zlib' 'icu' 'xz')
+validpgpkeys=('AE3FAC796711EC59FC007AA474BB6B9A4CBB3D38') #ISC Code Signing 
Key 2019 – 2020 (codes...@isc.org)
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone'
+'empty.zone')
+sha1sums=('ab0b14f4fe6a818fb15673ea9cef3eead8f6a94b'
+  'SKIP'
+  'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
+  '9537f4835a1f736788d0733c7996a10db2d4eee4'
+  'c017aae379c32c7cb1aa1ad84776b83e3a5c139f'
+  '62b06487323dd0d515a4dc659b8ecd193c29107b'
+  '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
+  '52da8f1c0247a11b16daa4e03d920e8f09315cbe'
+  '9c33726088342207ad06d33b2c13408290a0c8ad'
+  '4f4457b310cbbeadca2272eced062a9c2b2b42fe')
+
+prepare() {
+  msg2 'Getting a fresh version of root DNS'
+  # no more using source array, lack of versioning.
+  curl -o root.hint https://www.internic.net/zones/named.root
+  [[ -s root.hint ]]
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-fixed-rrset \
+--enable-full-report \
+--enable-dnsrps \
+--with-python=/usr/bin/python \
+--with-geoip \
+--with-openssl \
+--with-libidn2 \
+--with-libjson \
+--with-libxml2 \
+--with-lmdb \
+--with-libtool
+  make
+}
+
+package_bind() {
+  pkgdesc='The ISC DNS Server'
+  provides=('dns-server')
+  depends=('glibc' 'libxml2' 'libcap' 'openssl' 'geoip' 'json-c' 'bind-tools'
+

[arch-commits] Commit in bind/repos (10 files)

2018-07-08 Thread Evangelos Foutras via arch-commits
Date: Sunday, July 8, 2018 @ 13:58:56
  Author: foutrelis
Revision: 328070

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 328069, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 328069, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/empty.zone
(from rev 328069, bind/trunk/empty.zone)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 328069, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 328069, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 328069, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 328069, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 328069, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 328069, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 +++
 PKGBUILD   |  134 +++
 empty.zone |8 +++
 localhost.ip6.zone |   10 +++
 localhost.zone |   11 
 named.conf |   72 +++
 named.service  |   10 +++
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 257 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 328069, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2018-07-08 13:58:56 UTC (rev 328070)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 328069, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-07-08 13:58:56 UTC (rev 328070)
@@ -0,0 +1,134 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.13.0
+pkgver=${_pkgver//-/.}
+pkgrel=3
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+ 'idnkit' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'libseccomp')
+validpgpkeys=('2B48A38AE1CF9886435F89EE45AC7857189CDBC5'
+  'ADBE9446286C794905F1E0756FA6EBC9911A4C02' #ISC, Inc)
+  'BE0E9748B718253A28BB89FFF1B11BF05CF02E57' #Internet Systems 
Consortium, Inc.
+  )
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone'
+'empty.zone')
+sha1sums=('d17bb3d8ae8699ca8584c12e65cdd8540dc989ca'
+  'SKIP'
+  'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
+  '9537f4835a1f736788d0733c7996a10db2d4eee4'
+  'c017aae379c32c7cb1aa1ad84776b83e3a5c139f'
+  '62b06487323dd0d515a4dc659b8ecd193c29107b'
+  '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
+  '52da8f1c0247a11b16daa4e03d920e8f09315cbe'
+  '9c33726088342207ad06d33b2c13408290a0c8ad'
+  '4f4457b310cbbeadca2272eced062a9c2b2b42fe')
+
+prepare() {
+  msg2 'Getting a fresh version of root DNS'
+  # no more using source array, lack of versioning.
+  curl -o root.hint https://www.internic.net/zones/named.root
+  [[ -s root.hint ]]
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-ipv6 \
+--enable-filter- \
+--enable-fixed-rrset \
+--enable-seccomp \
+--enable-full-report \
+--with-python=/usr/bin/python \
+--with-geoip \
+--with-idn \
+--with-openssl \
+--with-libjson \
+--with-libxml2 \
+

[arch-commits] Commit in bind/repos (10 files)

2018-06-03 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 3, 2018 @ 13:29:37
  Author: jelle
Revision: 325633

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 325632, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 325632, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/empty.zone
(from rev 325632, bind/trunk/empty.zone)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 325632, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 325632, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 325632, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 325632, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 325632, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 325632, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 +++
 PKGBUILD   |  134 +++
 empty.zone |8 +++
 localhost.ip6.zone |   10 +++
 localhost.zone |   11 
 named.conf |   72 +++
 named.service  |   10 +++
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 257 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 325632, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2018-06-03 13:29:37 UTC (rev 325633)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 325632, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-06-03 13:29:37 UTC (rev 325633)
@@ -0,0 +1,134 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.13.0
+pkgver=${_pkgver//-/.}
+pkgrel=1
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+ 'idnkit' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'libseccomp')
+validpgpkeys=('2B48A38AE1CF9886435F89EE45AC7857189CDBC5'
+  'ADBE9446286C794905F1E0756FA6EBC9911A4C02' #ISC, Inc)
+  'BE0E9748B718253A28BB89FFF1B11BF05CF02E57' #Internet Systems 
Consortium, Inc.
+  )
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone'
+'empty.zone')
+sha1sums=('d17bb3d8ae8699ca8584c12e65cdd8540dc989ca'
+  'SKIP'
+  'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
+  '9537f4835a1f736788d0733c7996a10db2d4eee4'
+  'c017aae379c32c7cb1aa1ad84776b83e3a5c139f'
+  '62b06487323dd0d515a4dc659b8ecd193c29107b'
+  '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
+  '52da8f1c0247a11b16daa4e03d920e8f09315cbe'
+  '9c33726088342207ad06d33b2c13408290a0c8ad'
+  '4f4457b310cbbeadca2272eced062a9c2b2b42fe')
+
+prepare() {
+  msg2 'Getting a fresh version of root DNS'
+  # no more using source array, lack of versioning.
+  curl -o root.hint https://www.internic.net/zones/named.root
+  [[ -s root.hint ]]
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-ipv6 \
+--enable-filter- \
+--enable-fixed-rrset \
+--enable-seccomp \
+--enable-full-report \
+--with-python=/usr/bin/python \
+--with-geoip \
+--with-idn \
+--with-openssl \
+--with-libjson \
+--with-libxml2 \
+

[arch-commits] Commit in bind/repos (10 files)

2017-12-25 Thread Sébastien Luttringer via arch-commits
Date: Monday, December 25, 2017 @ 20:58:22
  Author: seblu
Revision: 313618

archrelease: copy trunk to staging-x86_64

Added:
  bind/repos/staging-x86_64/
  bind/repos/staging-x86_64/127.0.0.zone
(from rev 313617, bind/trunk/127.0.0.zone)
  bind/repos/staging-x86_64/PKGBUILD
(from rev 313617, bind/trunk/PKGBUILD)
  bind/repos/staging-x86_64/empty.zone
(from rev 313617, bind/trunk/empty.zone)
  bind/repos/staging-x86_64/localhost.ip6.zone
(from rev 313617, bind/trunk/localhost.ip6.zone)
  bind/repos/staging-x86_64/localhost.zone
(from rev 313617, bind/trunk/localhost.zone)
  bind/repos/staging-x86_64/named.conf
(from rev 313617, bind/trunk/named.conf)
  bind/repos/staging-x86_64/named.service
(from rev 313617, bind/trunk/named.service)
  bind/repos/staging-x86_64/sysusers.conf
(from rev 313617, bind/trunk/sysusers.conf)
  bind/repos/staging-x86_64/tmpfiles.conf
(from rev 313617, bind/trunk/tmpfiles.conf)

+
 127.0.0.zone   |   10 +++
 PKGBUILD   |  134 +++
 empty.zone |8 +++
 localhost.ip6.zone |   10 +++
 localhost.zone |   11 
 named.conf |   72 +++
 named.service  |   10 +++
 sysusers.conf  |1 
 tmpfiles.conf  |1 
 9 files changed, 257 insertions(+)

Copied: bind/repos/staging-x86_64/127.0.0.zone (from rev 313617, 
bind/trunk/127.0.0.zone)
===
--- staging-x86_64/127.0.0.zone (rev 0)
+++ staging-x86_64/127.0.0.zone 2017-12-25 20:58:22 UTC (rev 313618)
@@ -0,0 +1,10 @@
+@   1D IN SOA   localhost. root.localhost. (
+42; serial (mmdd##)
+3H; refresh
+15M   ; retry
+1W; expiry
+1D )  ; minimum ttl
+
+1D  IN  NS  localhost.
+
+1.0.0.127.in-addr.arpa. 1D  IN  PTR localhost.

Copied: bind/repos/staging-x86_64/PKGBUILD (from rev 313617, 
bind/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2017-12-25 20:58:22 UTC (rev 313618)
@@ -0,0 +1,134 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson 
+# Contributor: judd 
+# Contributor: Mario Vazquez 
+
+pkgbase=bind
+pkgname=(bind bind-tools)
+_pkgver=9.11.2
+pkgver=${_pkgver//-/.}
+pkgrel=3
+url='https://www.isc.org/software/bind/'
+license=('custom:MPL2')
+arch=('x86_64')
+options=('!emptydirs')
+makedepends=('libcap' 'libxml2' 'zlib' 'krb5' 'e2fsprogs' 'openssl' 'readline'
+ 'idnkit' 'geoip' 'dnssec-anchors' 'python' 'json-c' 'python-ply' 'libseccomp')
+validpgpkeys=('2B48A38AE1CF9886435F89EE45AC7857189CDBC5'
+  'ADBE9446286C794905F1E0756FA6EBC9911A4C02' #ISC, Inc)
+  'BE0E9748B718253A28BB89FFF1B11BF05CF02E57' #Internet Systems 
Consortium, Inc.
+  )
+source=("https://ftp.isc.org/isc/bind9/${_pkgver}/bind-${_pkgver}.tar.gz"{,.asc}
+'tmpfiles.conf'
+'sysusers.conf'
+'named.conf'
+'named.service'
+'localhost.zone'
+'localhost.ip6.zone'
+'127.0.0.zone'
+'empty.zone')
+sha1sums=('94154a30fcb0de87b57aeb26bbf31d6719c68307'
+  'SKIP'
+  'c5a2bcd9b0f009ae71f3a03fbdbe012196962a11'
+  '9537f4835a1f736788d0733c7996a10db2d4eee4'
+  'c017aae379c32c7cb1aa1ad84776b83e3a5c139f'
+  '62b06487323dd0d515a4dc659b8ecd193c29107b'
+  '6704303a6ed431a29b1d8fe7b12decd4d1f2f50f'
+  '52da8f1c0247a11b16daa4e03d920e8f09315cbe'
+  '9c33726088342207ad06d33b2c13408290a0c8ad'
+  '4f4457b310cbbeadca2272eced062a9c2b2b42fe')
+
+prepare() {
+  msg2 'Getting a fresh version of root DNS'
+  # no more using source array, lack of versioning.
+  curl -o root.hint https://www.internic.net/zones/named.root
+  [[ -s root.hint ]]
+  cd bind-$_pkgver
+  # apply patch from the source array (should be a pacman feature)
+  local filename
+  for filename in "${source[@]}"; do
+if [[ "$filename" =~ \.patch$ ]]; then
+  msg2 "Applying patch ${filename##*/}"
+  patch -p1 -N -i "$srcdir/${filename##*/}"
+fi
+  done
+}
+
+build() {
+  cd bind-$_pkgver
+  export CFLAGS+=' -DDIG_SIGCHASE'
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--sbindir=/usr/bin \
+--localstatedir=/var \
+--disable-static \
+--enable-ipv6 \
+--enable-filter- \
+--enable-fixed-rrset \
+--enable-seccomp \
+--enable-full-report \
+--with-python=/usr/bin/python \
+--with-geoip \
+--with-idn \
+

[arch-commits] Commit in bind/repos (10 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:19:25
  Author: seblu
Revision: 217754

archrelease: copy trunk to extra-i686

Added:
  bind/repos/extra-i686/
  bind/repos/extra-i686/01-fix-forgotten-log.patch
(from rev 217753, bind/trunk/01-fix-forgotten-log.patch)
  bind/repos/extra-i686/127.0.0.zone
(from rev 217753, bind/trunk/127.0.0.zone)
  bind/repos/extra-i686/PKGBUILD
(from rev 217753, bind/trunk/PKGBUILD)
  bind/repos/extra-i686/bind.install
(from rev 217753, bind/trunk/bind.install)
  bind/repos/extra-i686/localhost.zone
(from rev 217753, bind/trunk/localhost.zone)
  bind/repos/extra-i686/named.conf
(from rev 217753, bind/trunk/named.conf)
  bind/repos/extra-i686/named.logrotate
(from rev 217753, bind/trunk/named.logrotate)
  bind/repos/extra-i686/named.service
(from rev 217753, bind/trunk/named.service)
  bind/repos/extra-i686/tmpfiles.d
(from rev 217753, bind/trunk/tmpfiles.d)

+
 01-fix-forgotten-log.patch |   41 
 127.0.0.zone   |   11 +
 PKGBUILD   |   87 +++
 bind.install   |   23 +++
 localhost.zone |   10 
 named.conf |   64 +++
 named.logrotate|6 ++
 named.service  |   11 +
 tmpfiles.d |1 
 9 files changed, 254 insertions(+)

Copied: bind/repos/extra-i686/01-fix-forgotten-log.patch (from rev 217753, 
bind/trunk/01-fix-forgotten-log.patch)
===
--- extra-i686/01-fix-forgotten-log.patch   (rev 0)
+++ extra-i686/01-fix-forgotten-log.patch   2014-07-23 22:19:25 UTC (rev 
217754)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s 
+(bad edns):\n, addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+@@ -7369,9 +7371,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s (no 
opt):\n,
+addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+-- 
+1.9.1
+

Copied: bind/repos/extra-i686/127.0.0.zone (from rev 217753, 
bind/trunk/127.0.0.zone)
===
--- extra-i686/127.0.0.zone (rev 0)
+++ extra-i686/127.0.0.zone 2014-07-23 22:19:25 UTC (rev 217754)
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@  1D IN SOA   localhost. root.localhost. (
+   42  ; serial (mmdd##)
+   3H  ; refresh
+   15M ; retry
+   1W  ; expiry
+   1D ); minimum ttl
+
+   1D IN NSlocalhost.
+1  1D IN PTR   localhost.

Copied: bind/repos/extra-i686/PKGBUILD (from rev 217753, bind/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2014-07-23 22:19:25 UTC (rev 217754)
@@ -0,0 +1,87 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+# Contributor: Mario Vazquez mario_v...@hotmail.com
+
+pkgname=bind

[arch-commits] Commit in bind/repos (10 files)

2014-07-23 Thread Sébastien Luttringer
Date: Thursday, July 24, 2014 @ 00:20:06
  Author: seblu
Revision: 217755

archrelease: copy trunk to extra-x86_64

Added:
  bind/repos/extra-x86_64/
  bind/repos/extra-x86_64/01-fix-forgotten-log.patch
(from rev 217754, bind/trunk/01-fix-forgotten-log.patch)
  bind/repos/extra-x86_64/127.0.0.zone
(from rev 217754, bind/trunk/127.0.0.zone)
  bind/repos/extra-x86_64/PKGBUILD
(from rev 217754, bind/trunk/PKGBUILD)
  bind/repos/extra-x86_64/bind.install
(from rev 217754, bind/trunk/bind.install)
  bind/repos/extra-x86_64/localhost.zone
(from rev 217754, bind/trunk/localhost.zone)
  bind/repos/extra-x86_64/named.conf
(from rev 217754, bind/trunk/named.conf)
  bind/repos/extra-x86_64/named.logrotate
(from rev 217754, bind/trunk/named.logrotate)
  bind/repos/extra-x86_64/named.service
(from rev 217754, bind/trunk/named.service)
  bind/repos/extra-x86_64/tmpfiles.d
(from rev 217754, bind/trunk/tmpfiles.d)

+
 01-fix-forgotten-log.patch |   41 
 127.0.0.zone   |   11 +
 PKGBUILD   |   87 +++
 bind.install   |   23 +++
 localhost.zone |   10 
 named.conf |   64 +++
 named.logrotate|6 ++
 named.service  |   11 +
 tmpfiles.d |1 
 9 files changed, 254 insertions(+)

Copied: bind/repos/extra-x86_64/01-fix-forgotten-log.patch (from rev 217754, 
bind/trunk/01-fix-forgotten-log.patch)
===
--- extra-x86_64/01-fix-forgotten-log.patch (rev 0)
+++ extra-x86_64/01-fix-forgotten-log.patch 2014-07-23 22:20:06 UTC (rev 
217755)
@@ -0,0 +1,41 @@
+# https://lists.isc.org/pipermail/bind-users/2014-May/093124.html
+From 73a2c0ec42c0915bde0275c81861f57645daf683 Mon Sep 17 00:00:00 2001
+From: Tony Finch d...@dotat.at
+Date: Thu, 28 Nov 2013 17:23:57 +
+Subject: [PATCH] Disable XXXMPA verbose packet logging in EDNS fallback code.
+
+---
+ lib/dns/resolver.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/lib/dns/resolver.c b/lib/dns/resolver.c
+index 11c805f..e50071e 100644
+--- a/lib/dns/resolver.c
 b/lib/dns/resolver.c
+@@ -7339,9 +7339,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s 
+(bad edns):\n, addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+@@ -7369,9 +7371,11 @@ resquery_response(isc_task_t *task, isc_event_t *event) 
{
+   sizeof(addrbuf));
+   snprintf(buf, sizeof(buf), received packet from %s (no 
opt):\n,
+addrbuf);
++/*
+   dns_message_logpacket(message, buf,
+ DNS_LOGCATEGORY_RESOLVER, DNS_LOGMODULE_RESOLVER,
+ ISC_LOG_NOTICE, fctx-res-mctx);
++*/
+   dns_adb_changeflags(fctx-adb, query-addrinfo,
+   DNS_FETCHOPT_NOEDNS0,
+   DNS_FETCHOPT_NOEDNS0);
+-- 
+1.9.1
+

Copied: bind/repos/extra-x86_64/127.0.0.zone (from rev 217754, 
bind/trunk/127.0.0.zone)
===
--- extra-x86_64/127.0.0.zone   (rev 0)
+++ extra-x86_64/127.0.0.zone   2014-07-23 22:20:06 UTC (rev 217755)
@@ -0,0 +1,11 @@
+$ORIGIN 0.0.127.in-addr.arpa.
+
+@  1D IN SOA   localhost. root.localhost. (
+   42  ; serial (mmdd##)
+   3H  ; refresh
+   15M ; retry
+   1W  ; expiry
+   1D ); minimum ttl
+
+   1D IN NSlocalhost.
+1  1D IN PTR   localhost.

Copied: bind/repos/extra-x86_64/PKGBUILD (from rev 217754, bind/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2014-07-23 22:20:06 UTC (rev 217755)
@@ -0,0 +1,87 @@
+# $Id: PKGBUILD 113060 2014-06-12 10:51:06Z seblu $
+# Maintainer: Sébastien Luttringer
+# Contributor: Gaetan Bisson bis...@archlinux.org
+# Contributor: judd jvi...@zeroflux.org
+# Contributor: Mario Vazquez