diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2018-10-08 18:58:16 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-10-13 08:03:06 +0700 |
commit | ab118cea2f0b99122fd980a2421ad77f7558ef28 (patch) | |
tree | 956cb05f2db84901ac4c52c5c3f4932ca9b44465 /python/py | |
parent | 13d295eb04db7d5d693aa989ae49b364f9d244dc (diff) | |
download | slackbuilds-ab118cea2f0b99122fd980a2421ad77f7558ef28.tar.gz |
python/py: Added support python3.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Diffstat (limited to 'python/py')
-rw-r--r-- | python/py/README | 2 | ||||
-rw-r--r-- | python/py/py.SlackBuild | 5 |
2 files changed, 7 insertions, 0 deletions
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 |