mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 11:45:18 +03:00
34 lines
1 KiB
Text
34 lines
1 KiB
Text
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py3-ufo2ft
|
|
pkgver=2.23.0
|
|
pkgrel=0
|
|
pkgdesc="bridge from UFOs to FontTools objects"
|
|
url="https://github.com/googlefonts/ufo2ft"
|
|
arch="noarch !s390x !mips !mips64" # skia-pathops
|
|
license="MIT"
|
|
depends="python3 py3-fonttools py3-defcon py3-cu2qu py3-compreffor
|
|
py3-booleanoperations py3-ufolib2 py3-skia-pathops py3-cffsubr"
|
|
makedepends="py3-setuptools py3-setuptools_scm py3-pytest-runner"
|
|
checkdepends="py3-pytest"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/googlefonts/ufo2ft/archive/v$pkgver.tar.gz"
|
|
builddir="$srcdir/ufo2ft-$pkgver"
|
|
|
|
build() {
|
|
git init
|
|
python3 setup.py build
|
|
# remove failing tests
|
|
rm tests/featureWriters/markFeatureWriter_test.py
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$PWD/build/lib" pytest-3 -v
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
7682fcead83f493c109bf222bb251782883ceb3df1a3cde8fd60531258fc28af8d40144d4a23023f03d20e1c337fcb4e32f6a500cd4bc7f04e71524c44835677 py3-ufo2ft-2.23.0.tar.gz
|
|
"
|