Date: Friday, February 3, 2023 @ 22:52:22
Author: heftig
Revision: 468168
archrelease: copy trunk to testing-x86_64
Added:
python-cairo/repos/testing-x86_64/
python-cairo/repos/testing-x86_64/PKGBUILD
(from rev 468167, python-cairo/trunk/PKGBUILD)
python-cairo/repos/testing-x86_64/keys/
----------+
PKGBUILD | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
Copied: python-cairo/repos/testing-x86_64/PKGBUILD (from rev 468167,
python-cairo/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-02-03 22:52:22 UTC (rev 468168)
@@ -0,0 +1,40 @@
+# Contributor: Angel Velasquez <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+
+pkgname=python-cairo
+pkgver=1.23.0
+pkgrel=3
+pkgdesc="Python bindings for the cairo graphics library"
+url="https://pycairo.readthedocs.io/en/latest/"
+arch=(x86_64)
+license=(LGPL2.1 MPL)
+depends=(cairo python)
+makedepends=(meson)
+checkdepends=(python-pytest)
+source=(https://github.com/pygobject/pycairo/releases/download/v$pkgver/pycairo-$pkgver.tar.gz{,.sig})
+sha256sums=('9b61ac818723adc04367301317eb2e814a83522f07bbd1f409af0dada463c44c'
+ 'SKIP')
+validpgpkeys=(0EBF782C5D53F7E5FB02A66746BD761F7A49B0EC) # Christoph Reiter
<[email protected]>
+
+prepare() {
+ cd pycairo-$pkgver
+}
+
+build() {
+ arch-meson pycairo-$pkgver build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir="$pkgdir"
+
+ # compile Python bytecode
+ python -m compileall -d /usr/lib "$pkgdir/usr/lib"
+ python -O -m compileall -d /usr/lib "$pkgdir/usr/lib"
+}
+
+# vim:set sw=2 sts=-1 et: