From 545e7ab9dbefbde76e49c043a7237aac0570597a Mon Sep 17 00:00:00 2001 From: EnumDev Date: Thu, 23 Oct 2025 18:24:04 +0300 Subject: [PATCH] Update package version to 9.21.14 --- pkg.info | 33 +++++++++++++++++++++++++++++---- source.sh | 10 ---------- 2 files changed, 29 insertions(+), 14 deletions(-) diff --git a/pkg.info b/pkg.info index 2f7098f..8c4a0df 100644 --- a/pkg.info +++ b/pkg.info @@ -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 diff --git a/source.sh b/source.sh index 0619f88..f794c4a 100644 --- a/source.sh +++ b/source.sh @@ -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() {