aboutsummaryrefslogtreecommitdiffstats
path: root/main/py3-gobject3/APKBUILD
blob: d355438a6508a26611ada8fa2b24370ee1c88be1 (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
# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-gobject3
pkgver=3.40.1
pkgrel=0
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 ttf-dejavu"
depends="python3"
subpackages="$pkgname-dev:_dev"
options="!check" # Need ibus which is in community/
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() {
	abuild-meson \
		-Dpython=python3 \
		. output

	meson compile ${JOBS:+-j ${JOBS}} -C output
}

check() {
	PYGI_TEST_VERBOSE="1" xvfb-run meson test --no-rebuild -v -C output
}

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="a8350f43ea99c93aa66a23102d4ee2ca3c7f8ec2c8bcf5cd142dd097b4fb38167f1713efff3584aa323c34656c911fb940e462c83c02b107e4aad93d005022f7  pygobject-3.40.1.tar.xz"