X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/343a9157bb8a20354f9fcbe45d7ba4962e223689..488acbe2bb8bf69d66f41dba3acc5b40f951b206:/packages/python/build.sh diff --git a/packages/python/build.sh b/packages/python/build.sh index 70d780a2..389ab891 100644 --- a/packages/python/build.sh +++ b/packages/python/build.sh @@ -2,12 +2,12 @@ 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, libutil" +TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil, libbz2, liblzma, libsqlite, gdbm" TERMUX_PKG_HOSTBUILD=true _MAJOR_VERSION=3.5 TERMUX_PKG_VERSION=${_MAJOR_VERSION}.0 -TERMUX_PKG_BUILD_REVISION=1 +TERMUX_PKG_BUILD_REVISION=5 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. @@ -21,6 +21,8 @@ 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" +# Hard links does not work on Android 6: +TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_linkat=no" 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*" # Python does not use CPPFLAGS when building modules, so add this to CFLAGS as well (needed when building _cursesmodule):