X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/4413a3b8e26ad729fb91ad63554a1efd60b88a39..3cea6702d571ae7ef187e916b2ef061158847c40:/packages/python/build.sh diff --git a/packages/python/build.sh b/packages/python/build.sh index 06ac4abb..1ba15e96 100644 --- a/packages/python/build.sh +++ b/packages/python/build.sh @@ -2,23 +2,23 @@ TERMUX_PKG_HOMEPAGE=http://python.org/ TERMUX_PKG_DESCRIPTION="Programming language intended to enable clear programs on both a small and large scale" # lib/python3.4/lib-dynload/_ctypes.cpython-34m.so links to ffi # openssl for ensurepip -TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl" +TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil" TERMUX_PKG_HOSTBUILD=true -_MAJOR_VERSION=3.4 -TERMUX_PKG_VERSION=${_MAJOR_VERSION}.3 -TERMUX_PKG_BUILD_REVISION=2 +_MAJOR_VERSION=3.5 +TERMUX_PKG_VERSION=${_MAJOR_VERSION}.0 TERMUX_PKG_SRCURL=http://www.python.org/ftp/python/${TERMUX_PKG_VERSION}/Python-${TERMUX_PKG_VERSION}.tar.xz # The flag --with(out)-pymalloc (disable/enable specialized mallocs) is enabled by default and causes m suffix versions of python. -# Set ac_cv_func_gethostbyname_r=no since code otherwise assumes that gethostbyaddr_r is available, which is not the case on bionic # Set ac_cv_func_wcsftime=no to avoid errors such as "character U+ca0025 is not in range [U+0000; U+10ffff]" # when executing e.g. "from time import time, strftime, localtime; print(strftime(str('%Y-%m-%d %H:%M'), localtime()))" -TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_file__dev_ptmx=yes ac_cv_file__dev_ptc=no ac_cv_func_gethostbyname_r=no ac_cv_func_fstatvfs=yes ac_cv_func_statvfs=yes ac_cv_header_sys_statvfs_h=yes ac_cv_func_wcsftime=no" +TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_file__dev_ptmx=yes ac_cv_file__dev_ptc=no ac_cv_func_wcsftime=no" # Avoid trying to include which does not exist on android-21: TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_ftime=no" # Avoid trying to use AT_EACCESS which is not defined: TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_faccessat=no" +# The gethostbyname_r function does not exist on device libc: +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_gethostbyname_r=no" TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --build=$TERMUX_HOST_TUPLE --disable-ipv6 --with-system-ffi --without-ensurepip" TERMUX_PKG_RM_AFTER_INSTALL="lib/python${_MAJOR_VERSION}/test lib/python${_MAJOR_VERSION}/tkinter lib/python${_MAJOR_VERSION}/turtledemo lib/python${_MAJOR_VERSION}/idlelib bin/python${_MAJOR_VERSION}m bin/python*-config bin/idle* bin/pyvenv*" @@ -40,6 +40,9 @@ termux_step_host_build () { termux_step_post_configure () { cp $TERMUX_PKG_HOSTBUILD_DIR/Parser/pgen $TERMUX_PKG_BUILDDIR/Parser/pgen + cp $TERMUX_PKG_HOSTBUILD_DIR/Programs/_freeze_importlib $TERMUX_PKG_BUILDDIR/Programs/_freeze_importlib + $TERMUX_TOUCH -d "next hour" $TERMUX_PKG_BUILDDIR/Parser/pgen + $TERMUX_TOUCH -d "next hour" $TERMUX_PKG_BUILDDIR/Programs/_freeze_importlib } termux_step_post_make_install () { @@ -52,12 +55,21 @@ termux_step_post_make_install () { # It is required by ensurepip so bundled with the main python package. # Copied back in termux_step_post_massage() after the python-dev package has been built. mv $TERMUX_PREFIX/include/python${_MAJOR_VERSION}m/pyconfig.h $TERMUX_PKG_TMPDIR/pyconfig.h + + # This makefile is used by pip to compile C code, and thinks that ${TERMUX_HOST_PLATFORM}-gcc + # and other prefixed tools should be used, but we want unprefixed ones. + # Also Remove the specs flag since that is default in the gcc Termux package: + perl -p -i -e "s|${TERMUX_HOST_PLATFORM}-||g,s|${_SPECSFLAG}||g" $TERMUX_PREFIX/lib/python${_MAJOR_VERSION}/config-${_MAJOR_VERSION}m/Makefile } termux_step_post_massage () { # Restore pyconfig.h saved away in termux_step_post_make_install() above: mkdir -p $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/python${_MAJOR_VERSION}m/ + cp $TERMUX_PKG_TMPDIR/pyconfig.h $TERMUX_PREFIX/include/python${_MAJOR_VERSION}m/ mv $TERMUX_PKG_TMPDIR/pyconfig.h $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/include/python${_MAJOR_VERSION}m/ + + cd $TERMUX_PKG_MASSAGEDIR + find . -path '*/__pycache__*' -delete } termux_step_create_debscripts () { @@ -70,7 +82,7 @@ termux_step_create_debscripts () { ## PRE RM: echo "pip freeze 2> /dev/null | xargs pip uninstall -y > /dev/null 2> /dev/null" > prerm # Cleanup __pycache__ folders - echo "rm -rf $TERMUX_PREFIX/lib/python3.4/" >> prerm + echo "rm -rf $TERMUX_PREFIX/lib/python${_MAJOR_VERSION}/" >> prerm echo "rm -f $TERMUX_PREFIX/bin/pip $TERMUX_PREFIX/bin/pip3*" >> prerm echo "exit 0" >> prerm