blob: 6efcd2ee4e27a8d1b030bd278030873e510c881a (
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
|
# Maintainer: crl <crl18039102576@126.com>
pkgname=python-scipy-mkl-tbb
pkgver=1.16.0
pkgrel=1
pkgdesc="SciPy is open-source software for mathematics, science, and engineering."
arch=('x86_64')
url="http://www.scipy.org/"
license=('BSD')
depends=('intel-oneapi-mkl' 'python-numpy' 'python-pooch')
provides=("python-scipy")
conflicts=('python-scipy' 'python-scipy-mkl')
makedepends=('cython' 'gcc-fortran' 'meson-python' 'procps-ng' 'pybind11' 'python-build' 'python-installer' 'python-pythran')
checkdepends=('python-pytest' 'python-hypothesis')
optdepends=('python-pillow: for image saving module')
source=("https://pypi.python.org/packages/source/s/scipy/scipy-$pkgver.tar.gz")
sha256sums=('b5ef54021e832869c8cfb03bc3bf20366cbcd426e02a58e8a58d7584dfbb8f62')
build() {
source /opt/intel/oneapi/setvars.sh
cd scipy-${pkgver}
python -m build --wheel --no-isolation --skip-dependency-check \
-C setup-args=-Dblas=mkl-dynamic-lp64-tbb \
-C setup-args=-Dlapack=mkl-dynamic-lp64-tbb
}
check() {
cd scipy-${pkgver}
python -m venv --system-site-packages test-env
test-env/bin/python -m installer dist/*.whl
cd test-env
bin/python -c "from scipy import test; test('full')"
}
package() {
cd scipy-${pkgver}
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|