diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2016-08-08 15:07:47 +0300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-08-13 07:22:40 +0700 |
commit | 527ac57679b5a04721fc9b7300c0e257b1215dda (patch) | |
tree | 3b72a9648f3f0f64589d33b185cf3805deb717ed /libraries/GitPython | |
parent | 9c29be87fc4f3e32dbed8313caa760a32d1ab771 (diff) | |
download | slackbuilds-527ac57679b5a04721fc9b7300c0e257b1215dda.tar.gz |
libraries/GitPython: Add python3 support.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Diffstat (limited to 'libraries/GitPython')
-rw-r--r-- | libraries/GitPython/GitPython.SlackBuild | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libraries/GitPython/GitPython.SlackBuild b/libraries/GitPython/GitPython.SlackBuild index f0835702a5..448706fcfa 100644 --- a/libraries/GitPython/GitPython.SlackBuild +++ b/libraries/GitPython/GitPython.SlackBuild @@ -71,6 +71,11 @@ find -L . \ 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 + 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 |