mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
testing/py3-us: build with gpep517
This commit is contained in:
parent
7137b85782
commit
1f479887d2
@ -3,31 +3,37 @@
|
|||||||
pkgname=py3-us
|
pkgname=py3-us
|
||||||
_pkgname=us
|
_pkgname=us
|
||||||
pkgver=3.1.1
|
pkgver=3.1.1
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgdesc="US state meta information and other fun stuff"
|
pkgdesc="US state meta information and other fun stuff"
|
||||||
url="https://github.com/unitedstates/python-us"
|
url="https://github.com/unitedstates/python-us"
|
||||||
arch="noarch"
|
arch="noarch"
|
||||||
license="BSD-3-Clause"
|
license="BSD-3-Clause"
|
||||||
replaces="py-us" # for backwards compatibility
|
|
||||||
provides="py-us=$pkgver-r$pkgrel" # for backwards compatibility
|
|
||||||
depends="py3-jellyfish python3"
|
depends="py3-jellyfish python3"
|
||||||
makedepends="py3-setuptools"
|
makedepends="py3-setuptools py3-gpep517"
|
||||||
checkdepends="py3-pytest py3-tz"
|
checkdepends="py3-pytest py3-tz"
|
||||||
subpackages="$pkgname-pyc"
|
subpackages="$pkgname-pyc"
|
||||||
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz
|
||||||
fix-requires.patch"
|
fix-requires.patch"
|
||||||
builddir="$srcdir"/$_pkgname-$pkgver
|
builddir="$srcdir"/$_pkgname-$pkgver
|
||||||
|
|
||||||
|
replaces="py-us" # for backwards compatibility
|
||||||
|
provides="py-us=$pkgver-r$pkgrel" # for backwards compatibility
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
python3 setup.py build
|
gpep517 build-wheel \
|
||||||
|
--wheel-dir .dist \
|
||||||
|
--output-fd 3 3>&1 >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
check() {
|
check() {
|
||||||
pytest-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() {
|
package() {
|
||||||
python3 setup.py install --skip-build --root="$pkgdir"
|
gpep517 install-wheel --destdir "$pkgdir" \
|
||||||
|
.dist/*.whl
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="
|
sha512sums="
|
||||||
|
Loading…
Reference in New Issue
Block a user