diff --git a/community/py3-msgpack/APKBUILD b/community/py3-msgpack/APKBUILD index be20a0f7fec..33c2fa3e01e 100644 --- a/community/py3-msgpack/APKBUILD +++ b/community/py3-msgpack/APKBUILD @@ -2,15 +2,15 @@ # Maintainer: Fabian Affolter pkgname=py3-msgpack _pkgname=msgpack-python -pkgver=1.0.4 -pkgrel=1 +pkgver=1.0.5 +pkgrel=0 pkgdesc="Python3 module for MessagePack serialization/deserialization" url="https://msgpack.org/" arch="all" license="Apache-2.0" depends="python3" -makedepends="python3-dev py3-setuptools cython" -checkdepends="py3-pytest py3-pluggy" +makedepends="python3-dev py3-gpep517 py3-setuptools cython py3-wheel" +checkdepends="py3-pytest-xdist py3-pluggy" source="$_pkgname-$pkgver.tar.gz::https://github.com/msgpack/msgpack-python/archive/v$pkgver.tar.gz" builddir="$srcdir/msgpack-python-$pkgver" @@ -18,17 +18,22 @@ replaces="py-msgpack" # Backwards compatibility provides="py-msgpack=$pkgver-r$pkgrel" # Backwards compatibility build() { - python3 setup.py build + gpep517 build-wheel \ + --wheel-dir dist \ + --output-fd 3 3>&1 >&2 } check() { - PYTHONPATH="$(echo "$PWD"/build/lib.linux-*)" pytest + python3 -m venv --clear --without-pip --system-site-packages testenv + testenv/bin/python3 -m installer dist/*.whl + testenv/bin/python3 -m pytest -n auto } package() { - python3 setup.py install --skip-build --root="$pkgdir" + python3 -m installer -d "$pkgdir" \ + dist/*.whl } sha512sums=" -206351b8b1f8070c601849b728ea63ced4fec91732856f69f88e3c05c769bcd0d868fe94d7549c8c100b82e9d732379c133bf8f438632647ff2e7812f936783d msgpack-python-1.0.4.tar.gz +0d0b479044cda16519cf85d45acb8900b6e6585bf95816396fc96d6d1eb260036fb9c75bf8f88d99e212937a40d314a200d2b847d1da8a9ebc5694ab52e22896 msgpack-python-1.0.5.tar.gz "