aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-gitlab/APKBUILD
blob: 28fac140ffc449debc0787f1f6135c58b44e8a37 (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
# Maintainer: Hoang Nguyen <folliekazetani@protonmail.com>
pkgname=py3-gitlab
_pyname=${pkgname/py3/python}
pkgver=4.4.0
pkgrel=1
pkgdesc="Python wrapper for Gitlab's API"
url="https://github.com/python-gitlab/python-gitlab"
arch="noarch"
license="LGPL-3.0-or-later"
depends="python3 py3-requests py3-requests-toolbelt"
makedepends="
	py3-setuptools
	py3-gpep517
	py3-installer
	py3-wheel
	py3-sphinx
	py3-sphinxcontrib-autoprogram
	py3-myst-parser
	"
checkdepends="py3-pytest py3-responses py3-build"
subpackages="$pkgname-doc $pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://github.com/python-gitlab/python-gitlab/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/$_pyname-$pkgver"

build() {
	gpep517 build-wheel \
		--wheel-dir .dist \
		--output-fd 3 3>&1 >&2
	sphinx-build -W -b man docs/ man/
}

check() {
	python3 -m venv --clear --without-pip --system-site-packages .testenv
	.testenv/bin/python3 -m installer .dist/*.whl
	.testenv/bin/python3 -m pytest --ignore=tests/functional/ \
		--deselect tests/smoke/test_dists.py::test_sdist_includes_correct_files
# FAILED tests/smoke/test_dists.py::test_sdist_includes_correct_files - FileNot...
}

package() {
	python3 -m installer -d "$pkgdir" \
		.dist/*.whl
	install -Dm644 man/$_pyname.1 \
		"$pkgdir"/usr/share/man/man1/$_pyname.1
}

sha512sums="
cb572d169d948dcd74b1d85fb4e8fc2b2593ad167dd708f38bcaf5cccacc8a8b32231b2231d9cb69909e63ba0ce2c6f1cf522f21df56659343314ea2c0d39645  py3-gitlab-4.4.0.tar.gz
"