blob: 786f34e15bac9828d47aa30ddb69cd3084268fd0 (
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
|
# Maintainer: Carlos Aznarán <caznaranl@uni.pe>
_base=py-pde
pkgname=python-${_base}
pkgdesc="Python package for solving partial differential equations"
pkgver=0.41.1
pkgrel=1
arch=(any)
url="https://github.com/zwicker-group/${_base}"
license=(MIT)
depends=(python-matplotlib python-numba python-scipy python-sympy python-tqdm)
makedepends=(python-build python-installer python-setuptools-scm python-wheel)
checkdepends=(python-pytest-cov python-h5py-openmpi python-pandas
jupyter-notebook python-numba-mpi) # python-ffmpeg-python
optdepends=('python-h5py: storing data in the hierarchical file format'
'python-ipywidgets: jupyter notebook support'
'python-mpi4py: parallel processing using MPI'
'napari: displaying images interactively'
'python-numba-mpi: parallel processing using MPI+numba'
'python-pandas: handling tabular data'
'python-pyfftw: Faster Fourier transforms'
'python-rocket-fft: Numba-compiled fast Fourier transforms'
'python-ffmpeg-python: creating movies from matplotlib figures')
source=(${_base}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz)
sha512sums=('99f9042969910cd68d533f5f7e615ff4b2af06b50bbb21a609d0828baffbcdcbca9387c1b43443ee2fdea5d521e5842559448cab4306bdd1d86c17cf64b88f12')
build() {
cd ${_base}-${pkgver}
export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver}
python -m build --wheel --skip-dependency-check --no-isolation
}
check() {
cd ${_base}-${pkgver}/scripts
python -m venv --system-site-packages test-env
test-env/bin/python -m installer ../dist/*.whl
MPLBACKEND=Agg NUMBA_WARNINGS=1 test-env/bin/python run_tests.py --unit --use_mpi
}
package() {
cd ${_base}-${pkgver}
PYTHONPYCACHEPREFIX="${PWD}/.cache/cpython/" python -m installer --destdir="${pkgdir}" dist/*.whl
# Symlink license file
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")
install -d ${pkgdir}/usr/share/licenses/${pkgname}
ln -s "${site_packages}/${_base/-/_}-${pkgver}.dist-info/LICENSE" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|