64 lines
1.7 KiB
Bash
64 lines
1.7 KiB
Bash
# Template file for 'python3-scipy'
|
|
pkgname=python3-scipy
|
|
version=1.9.3
|
|
revision=1
|
|
build_style=python3-module
|
|
build_helper="numpy"
|
|
make_check_args="--force"
|
|
hostmakedepends="gcc-fortran python3-setuptools
|
|
pythran python3-Cython python3-pybind11"
|
|
makedepends="python3-devel python3-pybind11
|
|
$(vopt_if openblas openblas-devel lapack-devel)"
|
|
depends="python3-numpy"
|
|
checkdepends="python3-pytest-xdist"
|
|
short_desc="Scientific library for Python3"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://scipy.org/scipylib/"
|
|
distfiles="https://github.com/scipy/scipy/releases/download/v${version}/scipy-${version}.tar.gz"
|
|
checksum=fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027
|
|
|
|
build_options="openblas"
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
x86_64*|i686*|aarch64*|armv[67]*|ppc64*)
|
|
# Prefer accelerated routines where available
|
|
build_options_default="openblas"
|
|
;;
|
|
*) ;;
|
|
esac
|
|
|
|
if [ "$build_option_openblas" ]; then
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
ppc64*) ;;
|
|
ppc*) broken="numpy can't be built with openblas";;
|
|
esac
|
|
fi
|
|
|
|
# Tell numpy to build in parallel
|
|
export NPY_NUM_BUILD_JOBS="${XBPS_MAKEJOBS}"
|
|
|
|
pre_build() {
|
|
# Find the right linear algebra subroutines on the target arch
|
|
: > site.cfg
|
|
for _blaslib in $(vopt_if openblas openblas "lapack blas"); do
|
|
cat >> site.cfg <<-EOF
|
|
[$_blaslib]
|
|
libraries = ${_blaslib}
|
|
include_dirs = ${XBPS_CROSS_BASE}/usr/include
|
|
library_dirs = ${XBPS_CROSS_BASE}/usr/lib
|
|
runtime_library_dirs = ${XBPS_CROSS_BASE}/usr/lib
|
|
EOF
|
|
done
|
|
}
|
|
|
|
do_check() {
|
|
touch .coveragerc
|
|
python3 ./runtests.py --verbose ${makejobs}
|
|
}
|
|
|
|
post_install() {
|
|
rm ${DESTDIR}/${py3_sitelib}/scipy/*.txt
|
|
vlicense LICENSE.txt
|
|
}
|