summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetr Špaček2021-09-16 13:15:37 +0200
committerPetr Špaček2021-09-16 13:25:54 +0200
commiteef546092b39642c000694c9d77fee9bb9344933 (patch)
tree156617a1a5749ae151902e2e890f07ec01b31dad
downloadaur-eef546092b39642c000694c9d77fee9bb9344933.tar.gz
fork for bind-git
forked from svntogit-packages/packages/bind commit 73be3db67c7f6405864ee391917bed15f3f4bad6
-rw-r--r--.SRCINFO82
-rw-r--r--127.0.0.zone10
-rw-r--r--PKGBUILD94
-rw-r--r--bind.install10
-rw-r--r--localhost.ip6.zone10
-rw-r--r--localhost.zone11
-rw-r--r--named.conf57
-rw-r--r--named.service10
-rw-r--r--sysusers.conf1
-rw-r--r--tmpfiles.conf1
10 files changed, 286 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..2e46187cb461
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,82 @@
+pkgbase = bind-git
+ pkgdesc = A complete, highly portable implementation of the DNS protocol: development version
+ pkgver = 9.main.r34613.ba181fe83d
+ pkgrel = 1
+ url = https://www.isc.org/software/bind/
+ install = bind.install
+ arch = x86_64
+ license = MPL2
+ makedepends = dnssec-anchors
+ makedepends = icu
+ makedepends = jemalloc
+ makedepends = json-c
+ makedepends = krb5
+ makedepends = libcap
+ makedepends = libidn2
+ makedepends = libmaxminddb
+ makedepends = libnsl
+ makedepends = libuv
+ makedepends = libxml2
+ makedepends = lmdb
+ makedepends = openssl
+ makedepends = python
+ makedepends = python-ply
+ makedepends = python-sphinx
+ makedepends = readline
+ makedepends = xz
+ makedepends = zlib
+ depends = bash
+ depends = dnssec-anchors
+ depends = glibc
+ depends = icu
+ depends = jemalloc
+ depends = json-c
+ depends = krb5
+ depends = libcap
+ depends = libedit
+ depends = libidn2
+ depends = libmaxminddb
+ depends = libnsl
+ depends = libuv
+ depends = libxml2
+ depends = lmdb
+ depends = openssl
+ depends = python
+ depends = python-ply
+ depends = readline
+ depends = xz
+ depends = zlib
+ provides = bind
+ provides = bind-tools
+ provides = dnsutils
+ provides = dns-server
+ conflicts = bind-tools
+ conflicts = dnsutils
+ replaces = bind-tools
+ replaces = dnsutils
+ replaces = host
+ options = !emptydirs
+ options = debug
+ options = !strip
+ backup = etc/named.conf
+ backup = var/named/127.0.0.zone
+ backup = var/named/localhost.zone
+ backup = var/named/localhost.ip6.zone
+ source = git+https://gitlab.isc.org/isc-projects/bind9.git#branch=main
+ source = tmpfiles.conf
+ source = sysusers.conf
+ source = named.conf
+ source = named.service
+ source = localhost.zone
+ source = localhost.ip6.zone
+ source = 127.0.0.zone
+ sha256sums = SKIP
+ sha256sums = f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98
+ sha256sums = 7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c
+ sha256sums = e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb
+ sha256sums = 3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34
+ sha256sums = 0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f
+ sha256sums = c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17
+ sha256sums = b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8
+
+pkgname = bind-git
diff --git a/127.0.0.zone b/127.0.0.zone
new file mode 100644
index 000000000000..3c5c96493182
--- /dev/null
+++ b/127.0.0.zone
@@ -0,0 +1,10 @@
+@ 1D IN SOA localhost. root.localhost. (
+ 42 ; serial (yyyymmdd##)
+ 3H ; refresh
+ 15M ; retry
+ 1W ; expiry
+ 1D ) ; minimum ttl
+
+ 1D IN NS localhost.
+
+1.0.0.127.in-addr.arpa. 1D IN PTR localhost.
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..8140a47a2022
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,94 @@
+# Maintainer: Petr Špaček <pspacek@isc.org>
+
+pkgname=bind-git
+reponame=bind9
+pkgver=9.main.r34613.ba181fe83d
+pkgrel=1
+pkgdesc='A complete, highly portable implementation of the DNS protocol: development version'
+url='https://www.isc.org/software/bind/'
+license=('MPL2')
+arch=('x86_64')
+options=('!emptydirs' 'debug' '!strip')
+makedepends=('dnssec-anchors' 'icu' 'jemalloc' 'json-c' 'krb5' 'libcap'
+ 'libidn2' 'libmaxminddb' 'libnsl' 'libuv' 'libxml2' 'lmdb' 'openssl'
+ 'python' 'python-ply' 'python-sphinx' 'readline' 'xz' 'zlib')
+depends=('bash' 'dnssec-anchors' 'glibc' 'icu' 'jemalloc' 'json-c' 'krb5'
+ 'libcap' 'libedit' 'libidn2' 'libmaxminddb' 'libnsl' 'libuv' 'libxml2'
+ 'lmdb' 'openssl' 'python' 'python-ply' 'readline' 'xz' 'zlib')
+conflicts=('bind-tools' 'dnsutils')
+replaces=('bind-tools' 'dnsutils' 'host')
+provides=('bind' '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
+source=("git+https://gitlab.isc.org/isc-projects/bind9.git#branch=main"
+ 'tmpfiles.conf'
+ 'sysusers.conf'
+ 'named.conf'
+ 'named.service'
+ 'localhost.zone'
+ 'localhost.ip6.zone'
+ '127.0.0.zone')
+sha256sums=('SKIP'
+ 'f0423c4ee8495da487e07e9144bec1d25f46a0cd2dfa7cfd7a761ef15bfefc98'
+ '7c0acefcfcc3ae093550caed7ec90fe84bec8f7477459ffa7e71dda76bcbdb2c'
+ 'e08a01d41b18bdb771d534daca99642314939aafdb088e5cfcf0ef2d33f8e7eb'
+ '3f0f8db0a1deae270dd166b4750be7c1041b4b44891176f35a8df7dd55d24d34'
+ '0011708e516128647dd25b59b6ebc465f36e85bbe0a8fbdc3eb04b7f28c2197f'
+ 'c06fc270e32a843c8b6d86335a2ec607d405dfba6875de8d8a9abde39a9e2c17'
+ 'b88fd2b99e7d42d414b329b814b9ff3304fa0ef9c67df81bde235bbfa0f3a3b8')
+
+pkgver() {
+ cd "${srcdir}/${reponame}"
+ # git describe does not produce meaningful results
+ # (because of the way how upstream tags releases)
+ echo -n "9.main.r$(git log --oneline | wc -l).$(git log -1 --format="%h")"
+}
+
+build() {
+ cd "${srcdir}/${reponame}"
+ export CFLAGS
+ # support to chase DNSSEC signature chains
+ CFLAGS+=' -DDIG_SIGCHASE'
+ # compile with gcc10, https://gcc.gnu.org/gcc-10/porting_to.html
+ CFLAGS+=' -fcommon'
+ autoreconf -fiv
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --sbindir=/usr/bin \
+ --localstatedir=/var \
+ --disable-static \
+ --enable-fixed-rrset \
+ --enable-full-report \
+ --with-maxminddb \
+ --with-openssl \
+ --with-libidn2 \
+ --with-json-c \
+ --with-libxml2 \
+ --with-lmdb
+ make
+}
+
+package() {
+ cd "${srcdir}/${reponame}"
+ install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
+ install -Dm644 LICENSE COPYRIGHT "$pkgdir/usr/share/licenses/$pkgname/"
+ make DESTDIR="$pkgdir" install
+
+ cd "$srcdir"
+ install -D -m644 tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+ install -D -m644 sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
+
+ install -D -m644 named.service "$pkgdir/usr/lib/systemd/system/named.service"
+ install -D -m640 -o 0 -g 40 named.conf "$pkgdir/etc/named.conf"
+
+ install -d -m770 -o 0 -g 40 "$pkgdir/var/named"
+ install -m640 -o 0 -g 40 localhost.zone "$pkgdir/var/named"
+ install -m640 -o 0 -g 40 localhost.ip6.zone "$pkgdir/var/named"
+ install -m640 -o 0 -g 40 127.0.0.zone "$pkgdir/var/named"
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/bind.install b/bind.install
new file mode 100644
index 000000000000..8cf5b161e71b
--- /dev/null
+++ b/bind.install
@@ -0,0 +1,10 @@
+## arg 1: the new package version
+## arg 2: the old package version
+post_upgrade() {
+ (( $(vercmp "$2" '9.14.8-2') > 0 )) || cat <<EOF
+==> Switched to geoip2 databases.
+==> Remember to update your configuration if you use geoip features.
+EOF
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/localhost.ip6.zone b/localhost.ip6.zone
new file mode 100644
index 000000000000..c021a28ce2f2
--- /dev/null
+++ b/localhost.ip6.zone
@@ -0,0 +1,10 @@
+@ 1D IN SOA localhost. root.localhost. (
+ 42 ; serial (yyyymmdd##)
+ 3H ; refresh
+ 15M ; retry
+ 1W ; expiry
+ 1D ) ; minimum ttl
+
+ 1D IN NS localhost.
+
+1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa. 1D IN PTR localhost.
diff --git a/localhost.zone b/localhost.zone
new file mode 100644
index 000000000000..e87274dabea9
--- /dev/null
+++ b/localhost.zone
@@ -0,0 +1,11 @@
+@ 1D IN SOA localhost. root.localhost. (
+ 42 ; serial (yyyymmdd##)
+ 3H ; refresh
+ 15M ; retry
+ 1W ; expiry
+ 1D ) ; minimum ttl
+
+ 1D IN NS localhost.
+
+localhost. 1D IN A 127.0.0.1
+localhost. 1D IN AAAA ::1
diff --git a/named.conf b/named.conf
new file mode 100644
index 000000000000..2ac668d4c38f
--- /dev/null
+++ b/named.conf
@@ -0,0 +1,57 @@
+// vim:set ts=4 sw=4 et:
+
+options {
+ directory "/var/named";
+ pid-file "/run/named/named.pid";
+
+ // Uncomment these to enable IPv6 connections support
+ // IPv4 will still work:
+ // listen-on-v6 { any; };
+ // Add this for no IPv4:
+ // listen-on { none; };
+
+ allow-recursion { 127.0.0.1; };
+ allow-transfer { none; };
+ allow-update { none; };
+
+ version none;
+ hostname none;
+ server-id none;
+};
+
+zone "localhost" IN {
+ type master;
+ file "localhost.zone";
+};
+
+zone "0.0.127.in-addr.arpa" IN {
+ type master;
+ file "127.0.0.zone";
+};
+
+zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" {
+ type master;
+ file "localhost.ip6.zone";
+};
+
+//zone "example.org" IN {
+// type slave;
+// file "example.zone";
+// masters {
+// 192.168.1.100;
+// };
+// allow-query { any; };
+// allow-transfer { any; };
+//};
+
+//logging {
+// channel xfer-log {
+// file "/var/log/named.log";
+// print-category yes;
+// print-severity yes;
+// severity info;
+// };
+// category xfer-in { xfer-log; };
+// category xfer-out { xfer-log; };
+// category notify { xfer-log; };
+//};
diff --git a/named.service b/named.service
new file mode 100644
index 000000000000..e8625b14f958
--- /dev/null
+++ b/named.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=Internet domain name server
+After=network.target
+
+[Service]
+ExecStart=/usr/bin/named -f -u named
+ExecReload=/usr/bin/kill -HUP $MAINPID
+
+[Install]
+WantedBy=multi-user.target
diff --git a/sysusers.conf b/sysusers.conf
new file mode 100644
index 000000000000..b02acb172e1b
--- /dev/null
+++ b/sysusers.conf
@@ -0,0 +1 @@
+u named 40 "BIND DNS Server" -
diff --git a/tmpfiles.conf b/tmpfiles.conf
new file mode 100644
index 000000000000..1cfc82d08e79
--- /dev/null
+++ b/tmpfiles.conf
@@ -0,0 +1 @@
+d /run/named 0750 named named -