blob: a7b30a5cc0088a78ae51b3d14f240552eb2134f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Blair Bonnett <blair dot bonnett at gmail dot com>
pkgname=python-pykdtree
pkgdesc='Fast kd-tree implementation with OpenMP-enabled queries'
url='https://github.com/storpipfugl/pykdtree'
pkgver=1.3.13
pkgrel=1
arch=('x86_64')
license=('LGPL-3.0-only')
depends=(
'gcc-libs'
'glibc'
'python-numpy'
)
makedepends=(
'cython'
'python-build'
'python-installer'
'python-setuptools'
'python-wheel'
)
checkdepends=(
'python-nose'
)
_pypi=pykdtree
source=(
"https://files.pythonhosted.org/packages/source/${_pypi::1}/$_pypi/$_pypi-$pkgver.tar.gz"
)
sha256sums=(
'3accf852e946653e399c3d4dbbe119dbc6d3f72cfd2d5a95cabf0bf0c7f924fe'
)
prepare() {
cd "$_pypi-$pkgver"
sed -i -e 's/numpy>=2.0.0rc1,<3/numpy/' pyproject.toml
}
build() {
cd "$_pypi-$pkgver"
python -m build --wheel --no-isolation
}
check() {
cd "$_pypi-$pkgver"
python -m venv --system-site-packages test-env
test-env/bin/python -m installer dist/*.whl
cp pykdtree/test_tree.py test-env
cd test-env
bin/python -m nose
}
package() {
cd "$_pypi-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|