From: Fredrik Fornwall Date: Wed, 2 Dec 2015 18:29:44 +0000 (-0500) Subject: python: Add module dependencies X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/488acbe2bb8bf69d66f41dba3acc5b40f951b206?ds=inline python: Add module dependencies --- diff --git a/packages/python/build.sh b/packages/python/build.sh index f1ff9750..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=4 +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. diff --git a/packages/python2/build.sh b/packages/python2/build.sh index f31fe88f..d7484fc8 100644 --- a/packages/python2/build.sh +++ b/packages/python2/build.sh @@ -3,12 +3,12 @@ TERMUX_PKG_DESCRIPTION="Programming language intended to enable clear programs o # lib/python3.4/lib-dynload/_ctypes.cpython-34m.so links to ffi # openssl for ensurepip # libbz2 for the bz2 python module -TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil, libbz2" +TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil, libbz2, libsqlite, gdbm" TERMUX_PKG_HOSTBUILD=true _MAJOR_VERSION=2.7 TERMUX_PKG_VERSION=${_MAJOR_VERSION}.10 -TERMUX_PKG_BUILD_REVISION=5 +TERMUX_PKG_BUILD_REVISION=6 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.