blob: e24a9a77fb9ee7ff954befa05e8bf4da9610f7d5 (
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: Claudia Pellegrino <aur ät cpellegrino.de>
# Contributor: Felix Yan <felixonmars@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
pkgname=python-numpy1
pkgver=1.26.4
pkgrel=4
pkgdesc="Scientific tools for Python"
arch=('x86_64')
license=('LicenseRef-custom')
url="https://www.numpy.org/"
depends=('cblas' 'lapack' 'python')
optdepends=('blas-openblas: faster linear algebra')
makedepends=('python-build' 'python-installer' 'meson-python' 'cmake' 'gcc-fortran' 'cython')
checkdepends=('python-pytest' 'python-hypothesis' 'python-setuptools')
provides=("python-numpy=$pkgver")
conflicts=('python-numpy')
source=("https://github.com/numpy/numpy/releases/download/v$pkgver/numpy-$pkgver.tar.gz")
sha512sums=('f7121ab4099fa0686f9c095d456baa4a5869d651d7b7a06385f885f329cf08f11024b5df5e7b4ee705970062a8102ec4f709512eabbfd5c9fccce4ef83b9c208')
prepare() {
cd numpy-$pkgver
# Unpin the build system requirement to meson-python, so this package
# can be compatible to extra/meson-python, which is already on 0.16.0.
# The pin was never relevant for Linux anyway, as the reason upstream
# originally added the pin was to shotgun-debug a macOS build issue [1].
# [1]: https://github.com/numpy/numpy/pull/26365/files#r1586347845
sed -i -e 's/\(meson-python\)>[^"]*/\1/' pyproject.toml
}
build() {
cd numpy-$pkgver
CFLAGS+=" -ffat-lto-objects" \
CXXFLAGS+=" -ffat-lto-objects" \
python -m build --wheel --no-isolation \
-Csetup-args="-Dblas=cblas" \
-Csetup-args="-Dlapack=lapack"
}
check() {
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
cd numpy-$pkgver
python -m installer --destdir="$PWD/tmp_install" dist/*.whl
cd "$PWD/tmp_install"
PATH="$PWD/usr/bin:$PATH" PYTHONPATH="$PWD/$site_packages:$PYTHONPATH" \
python -c 'import sys; import numpy; sys.exit(not numpy.test())'
}
package() {
cd numpy-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
install -D -m644 LICENSE.txt -t "$pkgdir"/usr/share/licenses/python-numpy1/
}
|