diff options
author | Benjamin Trigona-Harany <bosth@alumni.sfu.ca> | 2019-06-07 09:50:18 -0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-06-09 05:33:16 +0700 |
commit | 34f1bddcafd42cd8cdfe8e481a059abcfa44b37f (patch) | |
tree | e0537ff03f3e78bd70e2e5541fdf0d0723227635 /python/parso/parso.SlackBuild | |
parent | 8e021d137303e896dec6115821e4a7114f9694d2 (diff) |
python/parso: Add Python 3 support.
Signed-off-by: Benjamin Trigona-Harany <bosth@alumni.sfu.ca>
Diffstat (limited to 'python/parso/parso.SlackBuild')
-rw-r--r-- | python/parso/parso.SlackBuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/parso/parso.SlackBuild b/python/parso/parso.SlackBuild index ab03dafc1bb57..7a61b900c988b 100644 --- a/python/parso/parso.SlackBuild +++ b/python/parso/parso.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=parso VERSION=${VERSION:-0.4.0} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,7 +69,8 @@ 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 +python2 setup.py install --root=$PKG +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 |