diff options
author | Juergen Daubert <jue@jue.li> | 2021-02-16 13:28:48 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2021-02-16 13:28:48 +0100 |
commit | dfab805ee9e24dd747b01d2b55701fbf3e976543 (patch) | |
tree | 1a30c5bb83b6890187fcbbddd34a9323933b50af /unbound | |
parent | a1dc5c6bcaf7ec271e936b4835feb85c1d3f72c4 (diff) | |
download | opt-dfab805ee9e24dd747b01d2b55701fbf3e976543.tar.gz opt-dfab805ee9e24dd747b01d2b55701fbf3e976543.tar.xz |
unbound: update to 1.13.1
Diffstat (limited to 'unbound')
-rw-r--r-- | unbound/.signature | 6 | ||||
-rw-r--r-- | unbound/Pkgfile | 43 |
2 files changed, 25 insertions, 24 deletions
diff --git a/unbound/.signature b/unbound/.signature index 6fe9c2ad8..52a99644b 100644 --- a/unbound/.signature +++ b/unbound/.signature @@ -1,8 +1,8 @@ untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/fbvt61PE0gek7PcFiUePK5K8YzYTMXCYumBHF501bWcODqLfwtu4oxhPFBGkMGYrtlG4H2oVZGtJwNhLlCA9gQ= -SHA256 (Pkgfile) = d93ea20a989b4ed5043ec92b741f69752493ca47e233d48fc756c5ed952cb625 +RWSE3ohX2g5d/ZlVaJJ30HiiCS69KoZFHLawT6TO49Xpcg9koEnJo85efTo/lAShUN6ruUjd4BJtoUYOBeODvjJSAuDam4Hk+wU= +SHA256 (Pkgfile) = 1c904ffe6d56226d764ce0ade411bf46a22707f0be22537a4cc6d386a42d1aee SHA256 (.footprint) = 55dae6262dda05e002b80b843c0e57553a93a9e770d86630d104c04e3efaced7 -SHA256 (unbound-1.13.0.tar.gz) = a954043a95b0326ca4037e50dace1f3a207a0a19e9a4a22f4c6718fc623db2a1 +SHA256 (unbound-1.13.1.tar.gz) = 8504d97b8fc5bd897345c95d116e0ee0ddf8c8ff99590ab2b4bd13278c9f50b8 SHA256 (unbound) = 54c94f1813c00c7faac51bde904b879b73d043e87c49cf8aff63de565368a095 SHA256 (README) = df6c339bdb1dcb173ec13cfdb37c28ea2d47a2700334aea3c503ef96f955f043 SHA256 (pre-install) = ec1d006e0ec4dca5b83fb0364ae2a591a9ffad7c41bac0c45f22f32a9d55f2c5 diff --git a/unbound/Pkgfile b/unbound/Pkgfile index b15a8b46c..e0201fe50 100644 --- a/unbound/Pkgfile +++ b/unbound/Pkgfile @@ -1,32 +1,33 @@ # Description: Validating, recursive, and caching DNS resolver -# URL: http://unbound.net/index.html -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: openssl expat +# URL: http://unbound.net/index.html +# Maintainer: Juergen Daubert, jue at crux dot nu +# Depends on: openssl expat name=unbound -version=1.13.0 +version=1.13.1 release=1 source=(https://unbound.net/downloads/$name-$version.tar.gz - unbound - README pre-install) + unbound + README pre-install) build () { - cd $name-$version - - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --with-pidfile=/var/run/unbound.pid \ - --with-chroot-dir=/etc/unbound \ - --with-rootkey-file=/etc/unbound/anchor/root.key \ - --disable-shared \ - --disable-flto \ - --with-username=unbound + cd $name-$version - make - make DESTDIR=$PKG install + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --with-pidfile=/var/run/unbound.pid \ + --with-chroot-dir=/etc/unbound \ + --with-rootkey-file=/etc/unbound/anchor/root.key \ + --disable-shared \ + --disable-flto \ + --with-username=unbound - rm -r $PKG/usr/{lib,include,share/man/man3} + make + make DESTDIR=$PKG install - install -d -o unbound -g unbound $PKG/etc/unbound/anchor - install -D -m 755 $SRC/unbound $PKG/etc/rc.d/unbound + rm -r $PKG/usr/{lib,include,share/man/man3} + + install -d -o unbound -g unbound $PKG/etc/unbound/anchor + install -D -m 755 $SRC/unbound $PKG/etc/rc.d/unbound } |