From db4b0fd2fa4eefcccc587a61e5c7112e8101ff1d Mon Sep 17 00:00:00 2001 From: EnumDev Date: Wed, 6 May 2026 14:46:55 +0300 Subject: [PATCH] Update package version to 1.29.0 --- check-version.sh | 12 ++++++++++++ pkg.info | 21 ++++++++++++++++++--- source.sh | 22 ++++------------------ 3 files changed, 34 insertions(+), 21 deletions(-) create mode 100644 check-version.sh diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..d7d7f99 --- /dev/null +++ b/check-version.sh @@ -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" diff --git a/pkg.info b/pkg.info index 18986d5..6962d46 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,24 @@ name: python-pycairo 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 license: LGPL2.1,MPL +maintainers: + - enumdev@enumerated.dev architecture: any -depends: ["cairo","python3"] -make_depends: ["meson"] 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 diff --git a/source.sh b/source.sh index 9b016c9..68ed5d3 100644 --- a/source.sh +++ b/source.sh @@ -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 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 # This function is used to compile the source code build() { - mkdir build - cd build - - meson setup --prefix=/usr --buildtype=release .. - meson compile + meson setup build --prefix=/usr --buildtype=release + 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-{LGPL-2.1,MPL-1.1} -t "$BPM_OUTPUT"/usr/share/licenses/python-pycairo/LICENSE }