# Template file for 'python3-scipy'
pkgname=python3-scipy
version=1.10.1
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 python3-pooch"
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=2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5
make_check="ci-skip" # Tests require downloaded data and take a long time

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
}
