Skip to content

Commit

Permalink
python3-scikit-image: use new meson helper
Browse files Browse the repository at this point in the history
  • Loading branch information
ahesford committed Sep 20, 2023
1 parent a640b68 commit bedace4
Showing 1 changed file with 14 additions and 20 deletions.
34 changes: 14 additions & 20 deletions srcpkgs/python3-scikit-image/template
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
pkgname=python3-scikit-image
version=0.21.0
revision=1
build_style=meson
build_helper="python3"
build_style=python3-pep517
build_helper="meson"
hostmakedepends="python3-build python3-installer python3-meson-python
python3-wheel python3-setuptools python3-packaging python3-Cython pythran
python3-lazy_loader python3-numpy pkg-config"
Expand All @@ -21,37 +21,31 @@ checksum=53a82a9dbd3ed608d2ad3876269a271a7e922b12e228388eac996b508aadd652
make_check=no

if [ "${CROSS_BUILD}" ]; then
configure_args="--cross-file=python.cross"
make_build_args+=" --no-isolation --wheel
-Csetup-args=--cross-file=${XBPS_WRAPPERDIR}/meson/xbps_meson.cross
-Csetup-args=--cross-file=${XBPS_WRAPPERDIR}/meson/python.cross"
fi

pre_patch() {
if [ "${CROSS_BUILD}" ]; then
# Meson can't tolerate $CC with arguments as set by build helper
CC="${XBPS_CROSS_TRIPLET}-gcc"
# CXX needs to know where to find Python headers
CXXFLAGS+=" -I${XBPS_CROSS_BASE}/${py3_inc}"
fi
}

post_patch() {
if [ "${CROSS_BUILD}" ]; then
local _xpy="${XBPS_CROSS_BASE}/${py3_sitelib}"
cat > python.cross <<-EOF
cat > "${XBPS_WRAPPERDIR}/meson/python.cross" <<-EOF
[properties]
numpy-include-dir = '${_xpy}/numpy/core/include'
pythran-include-dir = '${_xpy}/pythran'
EOF
fi
}

do_build() {
# Use the build directory already configured by xbps-src for meson
python3 -m build --no-isolation --wheel \
-Cbuilddir="./build" -Ccompile-args="${makejobs}" .
pre_build() {
if [ "${CROSS_BUILD}" ]; then
# Meson can't tolerate $CC with arguments as set by build helper
CC="${XBPS_CROSS_TRIPLET}-gcc"
# CXX needs to know where to find Python headers
CXXFLAGS+=" -I${XBPS_CROSS_BASE}/${py3_inc}"
fi
}

do_install() {
python3 -m installer --destdir "${DESTDIR}" \
--no-compile-bytecode dist/*.whl
post_install() {
vlicense LICENSE.txt
}

0 comments on commit bedace4

Please sign in to comment.