Update package version to 2.51.1

This commit is contained in:
2025-10-16 12:56:39 +03:00
parent 882786a7bf
commit 26f1f93895
2 changed files with 24 additions and 15 deletions
+24 -4
View File
@@ -1,10 +1,30 @@
name: git
description: A free and open source distributed version control system
version: 2.51.0
version: 2.51.1
revision: 1
url: https://git-scm.com/
license: GPL2-only
architecture: any
depends: ["expat","pcre2","zlib"]
optional_depends: ["curl","libsecret","openssh","python3"]
make_depends: ["asciidoc","gettext","perl","pkgconf","openssh","python3","xmlto"]
type: source
depends:
- expat
- pcre2
- zlib
optional_depends:
- curl
- libsecret
- openssh
- python3
make_depends:
- asciidoc
- gettext
- perl
- pkgconf
- openssh
- python3
- xmlto
downloads:
- url: https://www.kernel.org/pub/software/scm/git/git-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: a83fd9ffaed7eee679ed92ceb06f75b4615ebf66d3ac4fbdbfbc9567dc533f4a
-11
View File
@@ -2,17 +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://www.kernel.org/pub/software/scm/git/git-${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() {