Update package version to 1.29.0

This commit is contained in:
2026-05-06 14:46:55 +03:00
parent c2738df390
commit db4b0fd2fa
3 changed files with 34 additions and 21 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="pygobject/pycairo"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+18 -3
View File
@@ -1,9 +1,24 @@
name: python-pycairo name: python-pycairo
description: Python module providing bindings for the cairo graphics library. description: Python module providing bindings for the cairo graphics library.
version: 1.27.0 version: 1.29.0
revision: 1
url: https://github.com/pygobject/pycairo url: https://github.com/pygobject/pycairo
license: LGPL2.1,MPL license: LGPL2.1,MPL
maintainers:
- [email protected]
architecture: any architecture: any
depends: ["cairo","python3"]
make_depends: ["meson"]
type: source type: source
depends:
- cairo
- python3=3.14.*
make_depends:
- meson
- python-sphinx
- python-sphinx_rtd_theme
check_depends:
- python-pytest
downloads:
- url: https://github.com/pygobject/pycairo/releases/download/v${BPM_PKG_VERSION}/pycairo-${BPM_PKG_VERSION}.tar.gz
extract_to: ${BPM_SOURCE}
extract_strip_components: 1
checksum: f3f7fde97325cae80224c09f12564ef58d0d0f655da0e3b040f5807bd5bd3142
+4 -18
View File
@@ -2,32 +2,18 @@
# 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://github.com/pygobject/pycairo/releases/download/v${BPM_PKG_VERSION}/pycairo-${BPM_PKG_VERSION}.tar.gz"
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 # 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() {
mkdir build meson setup build --prefix=/usr --buildtype=release
cd build meson compile -C build
meson setup --prefix=/usr --buildtype=release ..
meson compile
} }
# 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() {
cd build meson install -C build --destdir="$BPM_OUTPUT"
meson install --destdir="$BPM_OUTPUT"
# Install package license
install -Dm644 "$BPM_SOURCE"/COPYING-{LGPL-2.1,MPL-1.1} -t "$BPM_OUTPUT"/usr/share/licenses/python-pycairo/LICENSE install -Dm644 "$BPM_SOURCE"/COPYING-{LGPL-2.1,MPL-1.1} -t "$BPM_OUTPUT"/usr/share/licenses/python-pycairo/LICENSE
} }