repo/extra/python/build

47 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-06-25 15:24:27 +00:00
#!/bin/sh -e
2020-03-24 13:44:52 +00:00
# Remove util-linux dependency among other things.
2020-02-07 23:55:12 +00:00
cat >> Modules/Setup <<EOF
*disabled*
2020-03-24 13:44:52 +00:00
_uuid nis ossaudiodev
2020-02-07 23:55:12 +00:00
EOF
# Reported 20-27% performance improvements.
# See: "PythonNoSemanticInterpositionSpeedup"
export CFLAGS="$CFLAGS -fno-semantic-interposition"
export LDFLAGS="$LDFLAGS -fno-semantic-interposition"
2020-03-24 13:44:52 +00:00
patch -p1 < python3-always-pip.patch
2019-06-25 15:24:27 +00:00
./configure \
2019-06-27 09:10:08 +00:00
--prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
2020-03-24 13:44:52 +00:00
--with-ensurepip=yes \
--without-doc-strings
2019-06-25 15:24:27 +00:00
make
2021-07-18 03:09:11 +00:00
make install
2019-06-25 17:08:58 +00:00
ln -s python3 "$1/usr/bin/python"
2019-08-28 18:55:53 +00:00
ln -s pip3 "$1/usr/bin/pip"
2019-08-30 00:31:47 +00:00
# Make static library writable.
2020-02-25 22:32:57 +00:00
chmod u+w "$1/usr/lib/libpython"*
2020-03-24 13:44:52 +00:00
# Let's make some kind of effort to reduce the overall
# size of Python by removing a bunch of rarely used and
# otherwise useless components.
#
# This can't be done via ./configure as the build system
# doesn't give you this much control over the process.
{
cd "$1/usr/lib/python"*
rm -rf test ./*/test ./*/tests
2021-07-20 11:43:49 +00:00
rm -rf pydoc* idlelib turtle* config-*
2020-03-24 13:44:52 +00:00
cd "$1/usr/bin"
2020-05-25 05:33:30 +00:00
rm -f pydoc* idle*
2020-03-24 13:44:52 +00:00
}