1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-22 18:55:29 +03:00
aports/community/py3-statmake/APKBUILD
psykose b71032c356 */*: invoke -m venv with --without-pip
we never use pip in the venv manually made for tests-
this might break 1-2 things unexpectedly, but

- those should be looked at anyway
- this has a severe speedup- even on a desktop machine with nvme, this
  makes an arbitrary venv go from 2.6s to <100ms(!) to make. a nice small
  optimisation.
2023-02-09 22:55:20 +01:00

40 lines
1.1 KiB
Text

# Contributor: Rasmus Thomsen <oss@cogitri.dev>
# Maintainer: Rasmus Thomsen <oss@cogitri.dev>
pkgname=py3-statmake
pkgver=0.6.0
pkgrel=0
pkgdesc="Applies STAT information from a Stylespace to a variable font"
url="https://github.com/daltonmaag/statmake"
arch="noarch"
license="MIT"
depends="python3 py3-attrs py3-cattrs py3-fonttools py3-fs"
makedepends="
py3-gpep517
py3-installer
py3-poetry-core
py3-wheel
"
checkdepends="py3-ufo2ft py3-pytest"
source="$pkgname-$pkgver.tar.gz::https://github.com/daltonmaag/statmake/archive/refs/tags/v$pkgver.tar.gz"
builddir="$srcdir/statmake-$pkgver"
build() {
gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
}
check() {
python3 -m venv --clear --without-pip --system-site-packages testenv
testenv/bin/python3 -m installer dist/*.whl
testenv/bin/python3 -m pytest
}
package() {
python3 -m installer -d "$pkgdir" \
dist/statmake-*.whl
}
sha512sums="
92c86a1896446c12db6f3bcf53406b1c2a36698022e62e710774701e84919295d3b99695a621b020f819286dd6a6cf1a0ee30b2a2bb7f75f390fdb8e3152b291 py3-statmake-0.6.0.tar.gz
"