diff options
author | Dave Woodfall <dave@slackbuilds.org> | 2021-05-21 21:32:18 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-06-02 01:02:26 +0700 |
commit | 3b2c9f927538fa8c0656c5a5ed202c01da6da020 (patch) | |
tree | 73b89131c46b211bab7878119cdc2f8311dcd3d1 /python/pluggy | |
parent | a07fd77433901bc959b090b64ed9f621d02165c4 (diff) | |
download | slackbuilds-3b2c9f927538fa8c0656c5a5ed202c01da6da020.tar.gz |
python/pluggy: Convert python to python2.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/pluggy')
-rw-r--r-- | python/pluggy/pluggy.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/python/pluggy/pluggy.SlackBuild b/python/pluggy/pluggy.SlackBuild index b8a4bc012d..508a2d8960 100644 --- a/python/pluggy/pluggy.SlackBuild +++ b/python/pluggy/pluggy.SlackBuild @@ -69,12 +69,8 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -python setup.py install --root=$PKG - -# Python 3 support. -if $(python3 -c 'import sys' 2>/dev/null); then - python3 setup.py install --root=$PKG -fi +python2 setup.py install --root=$PKG +python3 setup.py install --root=$PKG find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |