mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
testing/py3-intervals: build with gpep517
This commit is contained in:
parent
2e3a660aa8
commit
021cf888e4
@ -3,13 +3,13 @@
|
||||
pkgname=py3-intervals
|
||||
_pkgname=intervals
|
||||
pkgver=0.9.2
|
||||
pkgrel=4
|
||||
pkgrel=5
|
||||
pkgdesc="Python module for handling intervals (ranges of comparable objects)"
|
||||
url="https://github.com/kvesteri/intervals"
|
||||
arch="noarch"
|
||||
license="BSD-3-Clause"
|
||||
depends="py3-infinity"
|
||||
makedepends="py3-setuptools"
|
||||
makedepends="py3-setuptools py3-gpep517"
|
||||
checkdepends="py3-pytest"
|
||||
subpackages="$pkgname-pyc"
|
||||
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz
|
||||
@ -20,15 +20,20 @@ replaces="py-intervals" # Backwards compatibility
|
||||
provides="py-intervals=$pkgver-r$pkgrel" # Backwards compatibility
|
||||
|
||||
build() {
|
||||
python3 setup.py build
|
||||
gpep517 build-wheel \
|
||||
--wheel-dir .dist \
|
||||
--output-fd 3 3>&1 >&2
|
||||
}
|
||||
|
||||
check() {
|
||||
py.test-3
|
||||
python3 -m venv --clear --without-pip --system-site-packages .testenv
|
||||
gpep517 install-wheel --destdir .testenv --prefix '' .dist/*.whl
|
||||
.testenv/bin/python3 -m pytest
|
||||
}
|
||||
|
||||
package() {
|
||||
python3 setup.py install --skip-build --root="$pkgdir"
|
||||
gpep517 install-wheel --destdir "$pkgdir" \
|
||||
.dist/*.whl
|
||||
}
|
||||
|
||||
sha512sums="
|
||||
|
Loading…
Reference in New Issue
Block a user