From a62078e9f4a7675a023ae03e9f5434dce52412dc Mon Sep 17 00:00:00 2001 From: Willy Sudiarto Raharjo Date: Tue, 13 Dec 2016 16:32:26 +0700 Subject: [PATCH] ptyprocess: Add python3 support. Signed-off-by: Willy Sudiarto Raharjo --- ptyprocess/ptyprocess.SlackBuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ptyprocess/ptyprocess.SlackBuild b/ptyprocess/ptyprocess.SlackBuild index 1e1f4a8..97c9a4a 100644 --- a/ptyprocess/ptyprocess.SlackBuild +++ b/ptyprocess/ptyprocess.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=ptyprocess VERSION=${VERSION:-0.5.1} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_csb} if [ -z "$ARCH" ]; then @@ -73,6 +73,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