Update package version to 9.21.14

This commit is contained in:
2025-10-23 18:24:04 +03:00
parent 1956a2ce91
commit 545e7ab9db
2 changed files with 29 additions and 14 deletions
+29 -4
View File
@@ -1,10 +1,35 @@
name: bind
description: A complete, highly portable implementation of the Domain Name System (DNS) protocol
version: 9.21.12
revision: 2
version: 9.21.14
revision: 1
url: https://www.isc.org/bind/
license: MPL2
architecture: any
depends: ["bash","e2fsprogs","glibc","icu","json-c","krb5","libcap","libedit","libidn2","libnghttp2","libnsl","liburcu","libuv","libxml2","openssl","readline","xz-utils","zlib"]
make_depends: ["meson"]
type: source
depends:
- bash
- e2fsprogs
- glibc
- icu
- jemalloc
- json-c
- krb5
- libcap
- libedit
- libidn2
- libnghttp2
- libnsl
- liburcu
- libuv
- libxml2
- openssl
- readline
- xz-utils
- zlib
make_depends:
- meson
downloads:
- url: https://ftp.isc.org/isc/bind9/${BPM_PKG_VERSION}/bind-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 003b94d1404ec33174f28951de4ba261742de333cb869e6b909f1ada3261fe9f
-10
View File
@@ -2,16 +2,6 @@
# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE
# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://ftp.isc.org/isc/bind9/${BPM_PKG_VERSION}/bind-${BPM_PKG_VERSION}.tar.xz"
FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory
# This function is used for downloading files and putting them into the correct location
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
}
# The build function is executed in the source directory
# This function is used to compile the source code
build() {