Compare commits

...
9 Commits
Author SHA1 Message Date
EnumDev dabd47db28 Update package version to 0.84.1 2026-09-04 15:58:19 +03:00
EnumDev 3572af6b99 Rebuild package 2026-07-10 19:15:58 +03:00
EnumDev 85964ecee1 Switch to new package format 2026-06-13 20:01:39 +03:00
EnumDev 8ef4f8d006 Update package version to 0.84.0 2026-04-04 20:28:06 +03:00
EnumDev ffe8def352 Update .gitignore 2026-02-24 12:46:48 +02:00
EnumDev bd0cc1d27b Update check-version.sh script 2026-02-08 19:58:02 +02:00
EnumDev d83e35036f Update package version to 0.82.3 2026-01-10 16:20:03 +02:00
EnumDev 01a0afcbae Update package version to 0.82.2 2025-11-28 15:20:39 +02:00
EnumDev e81eb4876a Rebuild with icu 78.1 2025-11-01 20:42:01 +02:00
4 changed files with 11 additions and 6 deletions
+3
View File
@@ -0,0 +1,3 @@
# Ignore BPM archives and signatures
*.bpm
*.bpm.sig
+1 -1
View File
@@ -7,6 +7,6 @@ REPO="GNOME/vte"
REPO=$(echo "$REPO" | sed 's|/|%2F|g') REPO=$(echo "$REPO" | sed 's|/|%2F|g')
# Get tag name using Gitlab Rest API # Get tag name using Gitlab Rest API
TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/releases | jq -r '.[].tag_name' | sort -V | tail -n1) TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/releases | jq -r '.[].tag_name' | sort -V | grep -v -E '9[0-9]$' | tail -n1)
echo "$TAG_NAME" echo "$TAG_NAME"
+6 -4
View File
@@ -1,9 +1,11 @@
name: vte name: vte
description: Virtual Terminal Emulator widget library description: Virtual Terminal Emulator widget library
version: 0.82.1 version: 0.84.1
revision: 2 revision: 1
url: https://wiki.gnome.org/Apps/Terminal/VTE url: https://wiki.gnome.org/Apps/Terminal/VTE
license: GPL3-or-later,LGPL3-or-later license: GPL3-or-later,LGPL3-or-later
maintainers:
- [email protected]
architecture: any architecture: any
type: source type: source
make_depends: make_depends:
@@ -27,10 +29,10 @@ make_depends:
- pcre2 - pcre2
- vala - vala
downloads: downloads:
- url: https://gitlab.gnome.org/GNOME/vte/-/archive/${BPM_PKG_VERSION}/vte-${BPM_PKG_VERSION}.tar.gz - url: https://download.gnome.org/sources/vte/${BPM_PKG_VERSION%.*}/vte-${BPM_PKG_VERSION}.tar.xz
extract_to: ${BPM_SOURCE} extract_to: ${BPM_SOURCE}
extract_strip_components: 1 extract_strip_components: 1
checksum: 24b1f938b19a46d0f88c0bb31687ba45fc300f04ddb8c4e65508762e493ef075 checksum: aca1caa8478aebcdbb1d67897fb3511eb7601debae6810e16a15b6fa25f31ac8
split_packages: split_packages:
- name: vte-common - name: vte-common
description: Common files among for VTE description: Common files among for VTE
+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 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