Update package version to 2.17.0

This commit is contained in:
2025-11-01 10:06:23 +02:00
parent 1bcaff0ca8
commit 50c7524a2a
2 changed files with 6 additions and 11 deletions
+6 -1
View File
@@ -1,6 +1,6 @@
name: bash-completion name: bash-completion
description: Programmable completion functions for bash description: Programmable completion functions for bash
version: 2.16.0 version: 2.17.0
revision: 1 revision: 1
url: https://github.com/scop/bash-completion/ url: https://github.com/scop/bash-completion/
license: GPL2-or-later license: GPL2-or-later
@@ -9,3 +9,8 @@ output_architecture: any
type: source type: source
depends: depends:
- bash - bash
downloads:
- url: https://github.com/scop/bash-completion/releases/download/${BPM_PKG_VERSION}/bash-completion-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: dd9d825e496435fb3beba3ae7bea9f77e821e894667d07431d1d4c8c570b9e58
-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 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 # BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT
DOWNLOAD="https://github.com/scop/bash-completion/releases/download/${BPM_PKG_VERSION}/bash-completion-${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 # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {