Update package version to 2.58.0

This commit is contained in:
2025-09-16 12:10:27 +03:00
parent 821c041ce8
commit ecee23376f
3 changed files with 5 additions and 10 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ REPO="GNOME/at-spi2-core"
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')
TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/releases/ | jq -r '.[].tag_name' | sort -V | tail -n1)
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
+1 -1
View File
@@ -1,6 +1,6 @@
name: at-spi2-core
description: Base DBus XML interfaces for accessibility, the accessibility registry daemon, and atspi library
version: 2.57.2
version: 2.58.0
url: https://gitlab.gnome.org/GNOME/at-spi2-core
license: LGPL2.1-or-later
architecture: any
+3 -8
View File
@@ -15,19 +15,14 @@ prepare() {
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
mkdir build
cd build
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -Duse_systemd=false ..
meson compile
meson setup --prefix=/usr --libdir=/usr/lib --buildtype=release -Duse_systemd=false build
meson compile -C build
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
cd build
meson install --destdir="$BPM_OUTPUT"
meson install -C build --destdir="$BPM_OUTPUT"
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/at-spi2-core/COPYING