39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Template file for 'python3-mpi4py'
|
|
pkgname=python3-mpi4py
|
|
version=3.1.6
|
|
revision=1
|
|
# OpenMPI >= 5 is 64-bit only
|
|
archs="x86_64* aarch64* ppc64* riscv64*"
|
|
build_style=python3-module
|
|
hostmakedepends="python3-setuptools python3-Cython0.29 gcc-fortran openmpi"
|
|
makedepends="python3-devel openmpi-devel"
|
|
depends="openmpi python3"
|
|
short_desc="Python bindings for the Message Passing Interface (MPI) standard"
|
|
maintainer="Andrew J. Hesford <ajh@sideband.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://github.com/mpi4py/mpi4py"
|
|
changelog="https://raw.githubusercontent.com/mpi4py/mpi4py/master/CHANGES.rst"
|
|
distfiles="$PYPI_SITE/m/mpi4py/mpi4py-${version}.tar.gz"
|
|
checksum=c8fa625e0f92b082ef955bfb52f19fa6691d29273d7d71135d295aa143dee6cb
|
|
# Tests require a sensible MPI environment
|
|
make_check=no
|
|
|
|
post_extract() {
|
|
# recythonize
|
|
rm src/mpi4py.MPI.c \
|
|
src/mpi4py/include/mpi4py/mpi4py.MPI.h \
|
|
src/mpi4py/include/mpi4py/mpi4py.MPI_api.h
|
|
}
|
|
|
|
pre_build() {
|
|
if [ "${CROSS_BUILD}" ]; then
|
|
# Need to tell OpenMPI wrappers to use cross compilers
|
|
export OMPI_CC="${CC}"
|
|
export OMPI_FC="${FC}"
|
|
fi
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.rst
|
|
}
|