X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/27ce01e83bf0264b9aed9595226ef84f07ca0f52..3afa4f345a3002ba16326b8e22264b64bcfaee0d:/packages/python/build.sh diff --git a/packages/python/build.sh b/packages/python/build.sh index 8276d9f4..8f0cc7d6 100644 --- a/packages/python/build.sh +++ b/packages/python/build.sh @@ -4,12 +4,12 @@ TERMUX_PKG_DESCRIPTION="Python 3 programming language intended to enable clear p # openssl for ensurepip. # libbz2 for the bz2 module. # ncurses-ui-libs for the curses.panel module. -TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil, libbz2, liblzma, libsqlite, gdbm, ncurses-ui-libs" +TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil, libbz2, liblzma, libsqlite, gdbm, ncurses-ui-libs, libcrypt" TERMUX_PKG_HOSTBUILD=true _MAJOR_VERSION=3.5 TERMUX_PKG_VERSION=${_MAJOR_VERSION}.1 -TERMUX_PKG_BUILD_REVISION=3 +TERMUX_PKG_BUILD_REVISION=7 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. @@ -68,6 +68,14 @@ termux_step_post_make_install () { } termux_step_post_massage () { + # Verify that desired modules have been included: + for module in _ssl _bz2 zlib _curses _sqlite3 _lzma; do + if [ ! -f lib/python${_MAJOR_VERSION}/lib-dynload/${module}.*.so ]; then + echo "ERROR: Python module library $module not built" + exit 1 + fi + done + # 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/