Compare commits

...
17 Commits
6 changed files with 13 additions and 12 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+1 -1
View File
@@ -7,7 +7,7 @@ REPO="GNOME/glib"
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')
+6 -4
View File
@@ -1,9 +1,11 @@
name: glib
description: Low-level core library
version: 2.86.1
revision: 2
version: 2.90.0
revision: 1
url: https://gitlab.gnome.org/GNOME/glib
license: LGPL2.1-or-later
maintainers:
- [email protected]
architecture: any
type: source
depends:
@@ -20,7 +22,7 @@ make_depends:
- gobject-introspection
- libelf
- meson
- python3
- python3=3.14.*
- python-docutils
- python-packaging
- shared-mime-info
@@ -28,4 +30,4 @@ downloads:
- url: https://download.gnome.org/sources/glib/${BPM_PKG_VERSION%.*}/glib-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: 119d1708ca022556d6d2989ee90ad1b82bd9c0d1667e066944a6d0020e2d5e57
checksum: 17d15cac2af80a33271127408e0abc2748eb297c595c2a26409e81e14e7d1b8f
+1 -1
View File
@@ -1,4 +1,4 @@
# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package
# This is the recipe.sh script. It is executed by BPM in a temporary directory when compiling a source package
# 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
+1 -3
View File
@@ -1,5 +1,3 @@
trigger_operations: ["install", "upgrade", "remove"]
target_type: "path"
trigger_actions: ["install", "upgrade", "remove"]
targets: ["usr/lib/gio/modules/*.so"]
depends: ["glib"]
run: "/usr/bin/gio-querymodules /usr/lib/gio/modules"
+1 -3
View File
@@ -1,5 +1,3 @@
trigger_operations: ["install", "upgrade", "remove"]
target_type: "path"
trigger_actions: ["install", "upgrade", "remove"]
targets: ["usr/share/glib-2.0/schemas/*.xml","usr/share/glib-2.0/schemas/*.override"]
depends: ["glib"]
run: "/usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas"