a02132b2ae
in order to make gufw installation process work, it includes itself while installing. this raise the need that the build directory needs to be a valid python identifier too. this commit solves this issue.
62 lines
2.0 KiB
Bash
62 lines
2.0 KiB
Bash
#
|
|
# This helper is for templates installing python modules.
|
|
#
|
|
|
|
do_build() {
|
|
: ${python_versions:="2.7 $py3_ver"}
|
|
local pyver= pysufx=
|
|
|
|
for pyver in $python_versions; do
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
PYPREFIX="$XBPS_CROSS_BASE"
|
|
if [ "$pyver" != "2.7" ]; then
|
|
pysufx=m
|
|
fi
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
|
|
LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
|
|
CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
|
|
LDSHARED="${CC} -shared $LDFLAGS"
|
|
env CC="$CC" LDSHARED="$LDSHARED" \
|
|
PYPREFIX="$PYPREFIX" CFLAGS="$CFLAGS" \
|
|
LDFLAGS="$LDFLAGS" python${pyver} setup.py \
|
|
build --build-base=build${pyver//./_} ${make_build_args}
|
|
else
|
|
python${pyver} setup.py build --build-base=build${pyver//./_} ${make_build_args}
|
|
fi
|
|
done
|
|
}
|
|
|
|
do_install() {
|
|
: ${python_versions:="2.7 $py3_ver"}
|
|
local pyver= pysufx=
|
|
|
|
for pyver in $python_versions; do
|
|
if [ -n "$CROSS_BUILD" ]; then
|
|
PYPREFIX="$XBPS_CROSS_BASE"
|
|
if [ "$pyver" != "2.7" ]; then
|
|
pysufx=m
|
|
fi
|
|
CFLAGS+=" -I${XBPS_CROSS_BASE}/include/python${pyver}${pysufx} -I${XBPS_CROSS_BASE}/usr/include"
|
|
LDFLAGS+=" -L${XBPS_CROSS_BASE}/lib/python${pyver} -L${XBPS_CROSS_BASE}/usr/lib"
|
|
CC="${XBPS_CROSS_TRIPLET}-gcc -pthread $CFLAGS $LDFLAGS"
|
|
LDSHARED="${CC} -shared $LDFLAGS"
|
|
env CC="$CC" LDSHARED="$LDSHARED" \
|
|
PYPREFIX="$PYPREFIX" CFLAGS="$CFLAGS" \
|
|
LDFLAGS="$LDFLAGS" python${pyver} setup.py \
|
|
build --build-base=build${pyver//./_} \
|
|
install --prefix=/usr --root=${DESTDIR} ${make_install_args}
|
|
else
|
|
python${pyver} setup.py build --build-base=build${pyver//./_} \
|
|
install --prefix=/usr --root=${DESTDIR} ${make_install_args}
|
|
fi
|
|
|
|
# Rename unversioned scripts to avoid name conflicts.
|
|
if [ -d ${DESTDIR}/usr/bin ]; then
|
|
find ${DESTDIR}/usr/bin -type f ! -name "*[[:digit:]]" | while IFS= read -r f _; do
|
|
mv "${f}" "${f}${pyver%.*}"
|
|
echo "[python-module] Unversioned script renamed to '${f#$DESTDIR}${pyver%.*}'"
|
|
done
|
|
fi
|
|
done
|
|
}
|