From 2ec363ff0e553882431373d9e7d4bfde48b0c47a Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 28 Sep 2025 12:24:04 +0300 Subject: [PATCH] Update package version to 9.8 --- pkg.info | 28 ++++++++++++++++++++++------ source.sh | 10 ---------- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/pkg.info b/pkg.info index 412793f..05885bb 100644 --- a/pkg.info +++ b/pkg.info @@ -1,12 +1,28 @@ name: gnu-coreutils description: The GNU core utilities -version: 9.7 +version: "9.8" +revision: 1 url: https://www.gnu.org/software/coreutils/ license: GPL3-or-later architecture: any -depends: ["acl","attr","glibc","gmp","libcap","openssl"] -make_depends: ["gperf"] -provides: ["coreutils"] -replaces: ["coreutils"] -conflicts: ["uutils-coreutils"] type: source +depends: + - acl + - attr + - glibc + - gmp + - libcap + - openssl +make_depends: + - gperf +conflicts: + - uutils-coreutils +replaces: + - coreutils +provides: + - coreutils +downloads: + - url: https://ftpmirror.gnu.org/gnu/coreutils/coreutils-${BPM_PKG_VERSION}.tar.xz + extract_to_bpm_source: true + extract_strip_components: 1 + checksum: e6d4fd2d852c9141a1c2a18a13d146a0cd7e45195f72293a4e4c044ec6ccca15 diff --git a/source.sh b/source.sh index a910d72..d47055f 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://ftpmirror.gnu.org/gnu/coreutils/coreutils-${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() {