2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

python: Drop 90-100MB of STUFF

This commit is contained in:
Dylan Araps 2020-03-24 15:44:52 +02:00
parent 2d28e77c12
commit f03ebb1080
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

View File

@ -1,19 +1,25 @@
#!/bin/sh -e
patch -p1 < python3-always-pip.patch
# Remove util-linux dependency.
# Remove util-linux dependency among other things.
cat >> Modules/Setup <<EOF
*disabled*
_uuid
_uuid nis ossaudiodev
EOF
# Reported 20-27% performance improvements.
# See: "PythonNoSemanticInterpositionSpeedup"
export CFLAGS="$CFLAGS -fno-semantic-interposition"
export LDFLAGS="$LDFLAGS -fno-semantic-interposition"
patch -p1 < python3-always-pip.patch
./configure \
--prefix=/usr \
--enable-shared \
--with-system-expat \
--with-system-ffi \
--with-ensurepip=yes
--with-ensurepip=yes \
--without-doc-strings
make
make DESTDIR="$1" install
@ -23,3 +29,18 @@ ln -s pip3 "$1/usr/bin/pip"
# Make static library writable.
chmod u+w "$1/usr/lib/libpython"*
# 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
rm -rf lib2to3 pydoc* idlelib turtle* config-* ensurepip
cd "$1/usr/bin"
rm -rf 2to3* pydoc* idle*
}