blob: 1569d20017bf64b17fb6f7ceccacc66b8e773ac9 (
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
|
# Maintainer: taotieren <admin@taotieren.com>
pkgname=python-skia-pathops-git
pkgver=0.7.4.r4.g2e7c322
pkgrel=1
pkgdesc='Python bindings for the Skia librarys Path Ops'
url='https://github.com/fonttools/skia-pathops'
license=('BSD')
arch=(any)
depends=(cython
python)
checkdepends=(python-pytest
python-coverage
python-pytest-xdist
python-pytest-randomly)
makedepends=(python-{build,installer}
python-setuptools-scm
python-wheel
git)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("$pkgname::git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/^v//g;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$pkgname"
python -m build -wn
}
check() {
cd "$pkgname"
PYTHONPATH=Lib pytest tests
}
package() {
cd "$pkgname"
python -m installer -d "$pkgdir" dist/*.whl
}
|