blob: 209810489ae9e49a4a628023e82c489665cb0161 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-gobject3
pkgver=3.36.0
pkgrel=2
pkgdesc="Python bindings for the GObject library"
url="https://wiki.gnome.org/Projects/PyGObject/"
arch="all"
license="LGPL-2.1-or-later"
makedepends="python3-dev py3-cairo-dev gobject-introspection-dev
libffi-dev glib-dev meson"
checkdepends="py3-pytest gtk+3.0-dev xvfb-run ibus"
subpackages="$pkgname-dev:_dev"
options="!check" # https://gitlab.gnome.org/GNOME/pygobject/issues/391
source="https://download.gnome.org/sources/pygobject/${pkgver%.*}/pygobject-$pkgver.tar.xz"
builddir="$srcdir"/pygobject-$pkgver
replaces="py-gobject3" # Backwards compatibility
provides="py-gobject3=$pkgver-r$pkgrel" # Backwards compatibility
build() {
meson \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--buildtype=plain \
-Dpython=python3 \
. output
ninja -C output
}
check() {
PYGI_TEST_VERBOSE="1" xvfb-run ninja -C output test
}
package() {
DESTDIR="$pkgdir" ninja -C "$builddir"/output install
}
_dev() {
replaces="py-gobject3-dev" # Backwards compatibility
provides="py-gobject3-dev=$pkgver-r$pkgrel" # Backwards compatibility
default_dev
}
sha512sums="e07375e758d1ca0aefa7f12c9af739301371a857154577b62a17f3179adf1d9d37889d4f432cb6ac7804fb4c23f68a05d3ac5446df2800ecbca6fa27ed9b783d pygobject-3.36.0.tar.xz"
|