Update package version to 2.15.0

This commit is contained in:
2025-09-18 12:15:25 +03:00
parent 81a036740e
commit 80660eb1e0
3 changed files with 31 additions and 11 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Gitlab repository
REPO="GNOME/libxml2"
# Replace slash with URL encoded representation
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
# Get tag name using Gitlab Rest API
TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/releases/permalink/latest | jq -r '.tag_name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+3 -3
View File
@@ -1,10 +1,10 @@
name: libxml2 name: libxml2
description: XML C parser and toolkit description: XML C parser and toolkit
version: 2.12.5 version: 2.15.0
revision: 2
url: https://gitlab.gnome.org/GNOME/libxml2 url: https://gitlab.gnome.org/GNOME/libxml2
license: MIT license: MIT
architecture: any architecture: any
depends: ["bash","glibc","icu","ncurses","readline","xz-utils","zlib"] depends: ["bash","glibc","icu","ncurses","readline","xz-utils","zlib"]
make_depends: ["python3"] optional_depends: ["python3"]
make_depends: ["doxygen","meson","python3"]
type: source type: source
+13 -8
View File
@@ -2,7 +2,7 @@
# 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://download.gnome.org/sources/libxml2/${BPM_PKG_VERSION%.*}/libxml2-${BPM_PKG_VERSION}.tar.xz" DOWNLOAD="https://gitlab.gnome.org/GNOME/libxml2/-/archive/v${BPM_PKG_VERSION}/libxml2-v${BPM_PKG_VERSION}.tar.gz"
FILENAME="${DOWNLOAD##*/}" FILENAME="${DOWNLOAD##*/}"
# The prepare function is executed in the root of the temp directory # The prepare function is executed in the root of the temp directory
@@ -15,20 +15,25 @@ prepare() {
# 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() {
./configure --prefix=/usr \ PYTHON=/usr/bin/python3 meson setup --prefix=/usr -Dreadline=enabled -Dpython=enabled -Dicu=enabled -Dlegacy=enabled -Ddocs=enabled build
--sysconfdir=/etc \ meson compile -C build
--disable-static \ }
--with-history \
--with-icu # The check function is executed in the source directory
make # This function is used to run tests to verify the package has been compiled correctly
check() {
meson test -C build --print-errorlogs
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
make DESTDIR="$BPM_OUTPUT" install meson install -C build --destdir="$BPM_OUTPUT"
# Prevent packages from unnecessarily linking to ICU
rm -vf "$BPM_OUTPUT"/usr/lib/libxml2.la rm -vf "$BPM_OUTPUT"/usr/lib/libxml2.la
sed '/libs=/s/xml2.*/xml2"/' -i "$BPM_OUTPUT"/usr/bin/xml2-config sed '/libs=/s/xml2.*/xml2"/' -i "$BPM_OUTPUT"/usr/bin/xml2-config
# Install package license
install -Dm644 Copyright "$BPM_OUTPUT"/usr/share/licenses/libxml2/Copyright install -Dm644 Copyright "$BPM_OUTPUT"/usr/share/licenses/libxml2/Copyright
} }