From ab118cea2f0b99122fd980a2421ad77f7558ef28 Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Mon, 8 Oct 2018 18:58:16 +0200 Subject: [PATCH] python/py: Added support python3. Signed-off-by: Dimitris Zlatanidis --- python/py/README | 2 ++ python/py/py.SlackBuild | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/python/py/README b/python/py/README index 1667c95551..d83ca7b975 100644 --- a/python/py/README +++ b/python/py/README @@ -5,3 +5,5 @@ py.path: uniform local and svn path objects py.apipkg: explicit API control and lazy-importing py.iniconfig: easy parsing of .ini files py.code: dynamic code generation and introspection (deprecated, moved to pytest). + +Optional dependency: python3 diff --git a/python/py/py.SlackBuild b/python/py/py.SlackBuild index b42d900592..38cd006126 100644 --- a/python/py/py.SlackBuild +++ b/python/py/py.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