diff options
Diffstat (limited to 'libraries/GitPython/GitPython.SlackBuild')
-rw-r--r-- | libraries/GitPython/GitPython.SlackBuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/libraries/GitPython/GitPython.SlackBuild b/libraries/GitPython/GitPython.SlackBuild index c7c2ac9052e5..9d448b4b4ae1 100644 --- a/libraries/GitPython/GitPython.SlackBuild +++ b/libraries/GitPython/GitPython.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for GitPython -# Copyright 2014-2019 Dimitris Zlatanidis Orestiada, Greece +# Copyright 2014-2024 Dimitris Zlatanidis Orestiada, Greece # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=GitPython -VERSION=${VERSION:-3.0.2} +VERSION=${VERSION:-3.1.41} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -79,12 +79,7 @@ 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 +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 |