Update package version to 9.8

This commit is contained in:
2025-09-28 12:24:04 +03:00
parent f1b693dfe4
commit 2ec363ff0e
2 changed files with 22 additions and 16 deletions
+22 -6
View File
@@ -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
-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://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() {