Skip to content
Snippets Groups Projects
Commit 0e5dc94d authored by Iztok Fister Jr.'s avatar Iztok Fister Jr. Committed by Kevin Daudt
Browse files

community/py3-pyswarms: use gpep517 build style

parent 9ec65ae8
No related branches found
No related tags found
1 merge request!53489community/py3-pyswarms: use gpep517 build style
Pipeline #187394 skipped
......@@ -3,7 +3,7 @@
pkgname=py3-pyswarms
_pkgorig=pyswarms
pkgver=1.3.0
pkgrel=4
pkgrel=5
pkgdesc="A research toolkit for particle swarm optimization in Python"
url="https://github.com/ljvmiranda921/pyswarms"
arch="noarch !riscv64" #py3-matplotlib
......@@ -22,8 +22,8 @@ depends="
py3-tqdm
py3-yaml
"
checkdepends="python3-dev py3-pytest"
makedepends="py3-setuptools"
checkdepends="py3-pytest-xdist"
makedepends="py3-gpep517 py3-setuptools py3-wheel"
subpackages="$pkgname-pyc"
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/p/pyswarms/pyswarms-$pkgver.tar.gz"
builddir="$srcdir/$_pkgorig-$pkgver"
......@@ -31,16 +31,21 @@ builddir="$srcdir/$_pkgorig-$pkgver"
options="!check"
build() {
python3 setup.py build
gpep517 build-wheel \
--wheel-dir .dist \
--output-fd 3 3>&1 >&2
}
check() {
python3 -m 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() {
rm -rf tests/
python3 setup.py install --skip-build --root="$pkgdir"
python3 -m installer -d "$pkgdir" \
.dist/*.whl
}
sha512sums="
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment