bind: update to 9.16.12.

Fixes CVE-2020-8625 and whatever else was fixed in previous releases.

Add --disable-backtrace so it can build correctly on armv[67]l-musl,
otherwise I got errors about undefined references to _Unwind_GetIP,
which could have been provided by libunwind, but just makes the build
more complicated.
This commit is contained in:
Érico Rolim 2021-02-18 03:35:50 -03:00 committed by Érico Nogueira Rolim
parent a27bec9438
commit 6a71b53ef6
2 changed files with 17 additions and 17 deletions

View File

@ -1009,13 +1009,13 @@ libobrender.so.32 libopenbox-3.6.1_1
libgssglue.so.1 libgssglue-0.3_1
libtirpc.so.3 libtirpc-1.0.2_1
libnfsidmap.so.1 libnfsidmap-2.4.3_2
libbind9.so.1600 bind-libs-9.16.2_1
libdns.so.1607 bind-libs-9.16.7_1
libirs.so.1601 bind-libs-9.16.3_1
libisc.so.1606 bind-libs-9.16.6_1
libisccc.so.1600 bind-libs-9.16.2_1
libisccfg.so.1601 bind-libs-9.16.7_1
libns.so.1604 bind-libs-9.16.5_1
libbind9-9.16.12.so bind-libs-9.16.12_1
libdns-9.16.12.so bind-libs-9.16.12_1
libirs-9.16.12.so bind-libs-9.16.12_1
libisc-9.16.12.so bind-libs-9.16.12_1
libisccc-9.16.12.so bind-libs-9.16.12_1
libisccfg-9.16.12.so bind-libs-9.16.12_1
libns-9.16.12.so bind-libs-9.16.12_1
libplist-2.0.so.3 libplist-2.2.0_1
libplist++-2.0.so.3 libplist++-2.2.0_1
libnsbmp.so.0 libnsbmp-0.0.3_1

View File

@ -1,7 +1,7 @@
# Template file for 'bind'
pkgname=bind
version=9.16.7
revision=3
version=9.16.12
revision=1
_fullver="${version}${_patchver:+-${_patchver}}"
wrksrc="${pkgname}-${_fullver}"
build_style=gnu-configure
@ -11,18 +11,23 @@ configure_args="--disable-static --enable-threads --enable-largefile
--with-libtool --with-openssl=${XBPS_CROSS_BASE}/usr --with-gssapi=/usr/bin
--without-gost --enable-openssl-hash --with-readline --with-tuning=default
--without-python --enable-fetchlimit --enable-sit
--with-libidn2
--with-libidn2 --disable-backtrace
$(vopt_if geoip "--with-geoip=${XBPS_CROSS_BASE}/usr" "--without-geoip")"
hostmakedepends="automake libtool perl pkg-config"
makedepends="libressl-devel libxml2-devel libcap-devel readline-devel mit-krb5-devel
libatomic-devel libidn2-devel libuv-devel $(vopt_if geoip geoip-devel)"
checkdepends="python3-pytest"
short_desc="Berkeley Internet Name Domain server"
maintainer="Randy McCaskill <randy@mccaskill.us>"
license="MPL-2.0"
homepage="https://www.isc.org/downloads/bind/"
changelog="https://gitlab.isc.org/isc-projects/bind9/-/blob/v9_16/CHANGES"
distfiles="https://ftp.isc.org/isc/bind9/${_fullver}/bind-${_fullver}.tar.xz"
checksum=9f7d1812ebbd26a699f62b6fa8522d5dec57e4bf43af0042a0d60d39ed8314d1
checksum=9914af9311fd349cab441097898d94fb28d0bfd9bf6ed04fe1f97f042644da7f
# guarantee subpackage ordering
subpackages="bind-libs bind-utils bind-devel"
# requires special network setup
make_check=extended
conf_files="/etc/named/named.conf"
system_accounts="named"
@ -33,11 +38,6 @@ make_dirs="/var/named 0770 root named"
build_options="geoip"
build_options_default="geoip"
do_check() {
# requires special network setup
:
}
post_install() {
vsv named
vinstall ${FILESDIR}/named.logrotate 600 etc/logrotate.d named
@ -52,7 +52,7 @@ post_install() {
bind-libs_package() {
short_desc+=" - Runtime libraries"
pkg_install() {
vmove "usr/lib/*.so.*"
vmove "usr/lib/*-*.so"
}
}