chiark / gitweb /
libgpg-error: workaround no stdout atexit with constructor prior to N (#1017)
[termux-packages] / packages / python2 / build.sh
1 TERMUX_PKG_HOMEPAGE=http://python.org/
2 TERMUX_PKG_DESCRIPTION="Python 2 programming language intended to enable clear programs"
3 # lib/python3.4/lib-dynload/_ctypes.cpython-34m.so links to ffi.
4 # openssl for ensurepip.
5 # libbz2 for the bz2 module.
6 # ncurses-ui-libs for the curses.panel module.
7 TERMUX_PKG_DEPENDS="libandroid-support, ncurses, readline, libffi, openssl, libutil, libbz2, libsqlite, gdbm, ncurses-ui-libs, libcrypt"
8 TERMUX_PKG_HOSTBUILD=true
9
10 _MAJOR_VERSION=2.7
11 TERMUX_PKG_VERSION=${_MAJOR_VERSION}.13
12 TERMUX_PKG_SRCURL=https://www.python.org/ftp/python/${TERMUX_PKG_VERSION}/Python-${TERMUX_PKG_VERSION}.tar.xz
13 TERMUX_PKG_SHA256=35d543986882f78261f97787fd3e06274bfa6df29fac9b4a94f73930ff98f731
14
15 # The flag --with(out)-pymalloc (disable/enable specialized mallocs) is enabled by default and causes m suffix versions of python.
16 # Set ac_cv_func_wcsftime=no to avoid errors such as "character U+ca0025 is not in range [U+0000; U+10ffff]"
17 # when executing e.g. "from time import time, strftime, localtime; print(strftime(str('%Y-%m-%d %H:%M'), localtime()))"
18 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_file__dev_ptmx=yes ac_cv_file__dev_ptc=no ac_cv_func_wcsftime=no"
19 # Avoid trying to include <sys/timeb.h> which does not exist on android-21:
20 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_ftime=no"
21 # Avoid trying to use AT_EACCESS which is not defined:
22 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_faccessat=no"
23 # The gethostbyname_r function does not exist on device libc:
24 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_gethostbyname_r=no"
25 # Do not assume getaddrinfo is buggy when cross compiling:
26 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_buggy_getaddrinfo=no"
27 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --build=$TERMUX_BUILD_TUPLE --with-system-ffi --without-ensurepip"
28 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --enable-unicode=ucs4"
29
30 # Let 2to3 be in the python3 package:
31 TERMUX_PKG_RM_AFTER_INSTALL="bin/2to3"
32
33 termux_step_host_build () {
34         # We need a host-built Parser/pgen binary, copied into cross-compile build in termux_step_post_configure() below
35         $TERMUX_PKG_SRCDIR/configure
36         make Parser/pgen
37         # We need a python$_MAJOR_VERSION binary to be picked up by configure check:
38         make
39         rm -f python$_MAJOR_VERSION # Remove symlink if already exists to get a newer timestamp
40         ln -s python python$_MAJOR_VERSION
41 }
42
43 termux_step_post_configure () {
44         cp $TERMUX_PKG_HOSTBUILD_DIR/Parser/pgen $TERMUX_PKG_BUILDDIR/Parser/pgen
45         touch -d "next hour" $TERMUX_PKG_BUILDDIR/Parser/pgen
46 }
47
48 termux_step_pre_configure() {
49         # Put the host-built python in path:
50         export TERMUX_ORIG_PATH=$PATH
51         export PATH=$TERMUX_PKG_HOSTBUILD_DIR:$PATH
52
53         # Needed when building with clang, as setup.py only probes
54         # gcc for include paths when finding headers for determining
55         # if extension modules should be built (specifically, the
56         # zlib extension module is not built without this):
57         CPPFLAGS+=" -I$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr/include"
58         LDFLAGS+=" -L$TERMUX_STANDALONE_TOOLCHAIN/sysroot/usr/lib"
59 }
60
61 termux_step_post_make_install () {
62         # Avoid file clashes with the python (3) package:
63         mv $TERMUX_PREFIX/share/man/man1/{python.1,python2.1}
64         rm $TERMUX_PREFIX/bin/python
65         # Restore path which termux_step_host_build messed with
66         export PATH=$TERMUX_ORIG_PATH
67 }
68
69 termux_step_post_massage () {
70         # Verify that desired modules have been included:
71         for module in _ssl bz2 zlib _curses _sqlite3; do
72                 if [ ! -f lib/python${_MAJOR_VERSION}/lib-dynload/${module}.so ]; then
73                         termux_error_exit "Python module library $module not built"
74                 fi
75         done
76 }
77
78 termux_step_create_debscripts () {
79         ## POST INSTALL:
80         echo "echo 'Setting up pip2...'" > postinst
81         # Fix historical mistake which removed bin/pip2 but left site-packages/pip-*.dist-info,
82         # which causes ensurepip to avoid installing pip due to already existing pip install:
83         echo "if [ ! -f $TERMUX_PREFIX/bin/pip2 -a -d $TERMUX_PREFIX/lib/python${_MAJOR_VERSION}/site-packages/pip-*.dist-info ]; then rm -Rf $TERMUX_PREFIX/lib/python${_MAJOR_VERSION}/site-packages/pip-*.dist-info ; fi" >> postinst
84         # Setup bin/pip2:
85         echo "$TERMUX_PREFIX/bin/python2 -m ensurepip --upgrade --no-default-pip" >> postinst
86
87         ## PRE RM:
88         # Avoid running on update:
89         echo 'if [ $1 != "remove" ]; then exit 0; fi' > prerm
90         # Uninstall everything installed through pip:
91         echo "pip2 freeze 2> /dev/null | xargs pip2 uninstall -y > /dev/null 2> /dev/null" >> prerm
92         # Cleanup __pycache__ folders
93         echo "find $TERMUX_PREFIX/lib/python${_MAJOR_VERSION} -depth -name __pycache__ -exec rm -rf {} \;" >> prerm
94         # Remove contents of site-packages/ folder:
95         echo "rm -Rf $TERMUX_PREFIX/lib/python${_MAJOR_VERSION}/site-packages/*" >> prerm
96         # Remove bin/pip2* installed by ensurepip in postinst:
97         echo "rm -f $TERMUX_PREFIX/bin/pip2*" >> prerm
98
99         echo "exit 0" >> postinst
100         echo "exit 0" >> prerm
101         chmod 0755 postinst prerm
102 }