blob: d4d59ae43131059301c8d87923d3bf9f81d5236e (
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
|
# Maintainer: Frederik “Freso” S. Olesen <archlinux@freso.dk>
pkgname=python-libeconf
_pkgname=${pkgname#python-}
pkgver=0.7.4
pkgrel=1
pkgdesc='Python bindings for libeconf'
url="https://github.com/openSUSE/$_pkgname"
arch=('any')
license=('MIT')
depends=('python')
makedepends=(
# Python build system
'python-build' 'python-installer' 'python-wheel'
# Upstream build system
'python-setuptools'
)
checkdepends=('python-pytest' "$_pkgname")
source=("$_pkgname-$pkgver.tar.gz::${url}/archive/refs/tags/v$pkgver.tar.gz")
b2sums=('2b63f18421a0f67721c01d0f14e37c71da953efcae3b2b4a7324e22b4333532c3b8a22a9f15a2db1a15f1341db61bf446f85f2fc5e060e04855ad30f6839b318')
_srcdir=$_pkgname-$pkgver/bindings/python3
build() {
cd $_srcdir
python -m build --wheel --no-isolation
}
check() {
cd $_srcdir
PYTHONPATH="$_srcdir:$PYTHONPATH" pytest
}
package() {
# libeconf is not needed for building, but is needed to run/use it
depends+=("$_pkgname")
pushd $_srcdir
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 docs/python-libeconf.3 "$pkgdir"/usr/share/man/man3/python-libeconf.3
popd
cd $_pkgname-$pkgver
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
install -d "$pkgdir/usr/share/doc/$pkgname"
install -m644 -t "$pkgdir/usr/share/doc/$pkgname" README.md TODO.md NEWS
}
|