From 527ac57679b5a04721fc9b7300c0e257b1215dda Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 8 Aug 2016 15:07:47 +0300 Subject: libraries/GitPython: Add python3 support. Signed-off-by: Dimitris Zlatanidis --- libraries/GitPython/GitPython.SlackBuild | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'libraries/GitPython') 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 -- cgit v1.2.3-65-gdbad