Files
horizon-packages/common/build-style/python3-module.sh
T

35 lines
931 B
Bash
Raw Normal View History

2016-10-16 16:46:46 +02:00
#
# This helper is for templates installing python3-only modules.
#
do_build() {
python3 setup.py build ${make_build_args}
2016-10-16 16:46:46 +02:00
}
2019-02-20 13:51:47 +01:00
do_check() {
local testjobs
if python3 -c 'import pytest' >/dev/null 2>&1; then
if python3 -c 'import xdist' >/dev/null 2>&1; then
testjobs="-n $XBPS_MAKEJOBS"
fi
PYTHONPATH="$(cd build/lib* && pwd)" PY_IGNORE_IMPORTMISMATCH=1 \
${make_check_pre} \
python3 -m pytest ${testjobs} ${make_check_args} ${make_check_target}
else
# Fall back to deprecated setup.py test orchestration without pytest
if [ -z "$make_check_target" ]; then
if ! python3 setup.py --help test >/dev/null 2>&1; then
msg_warn "No command 'test' defined by setup.py.\n"
return 0
fi
2019-02-20 13:51:47 +01:00
fi
: ${make_check_target:=test}
2022-02-28 14:40:07 +01:00
${make_check_pre} python3 setup.py ${make_check_target} ${make_check_args}
fi
2019-02-20 13:51:47 +01:00
}
2016-10-16 16:46:46 +02:00
do_install() {
python3 setup.py install --prefix=/usr --root=${DESTDIR} ${make_install_args}
2016-10-16 16:46:46 +02:00
}