diff options
author | Prof. HORSTMANN <wmh@eipg.fr> | 2021-01-28 22:04:00 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-01-30 10:29:11 +0700 |
commit | daf5e21679b3f228c4947618dbbfc284a4b0323c (patch) | |
tree | 4eede56889e124a02cab88a6e4582925be6b110f /python | |
parent | c0ff3f2ef2ac4a26599c9a965875649a702927a7 (diff) | |
download | slackbuilds-daf5e21679b3f228c4947618dbbfc284a4b0323c.tar.gz |
python/typing-extensions: python3 build fixed.
Signed-off-by: Dave Woodfall <dave@slackbuilds.org>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/typing-extensions/typing-extensions.SlackBuild | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/python/typing-extensions/typing-extensions.SlackBuild b/python/typing-extensions/typing-extensions.SlackBuild index 88335bc5be..fa2e76020f 100644 --- a/python/typing-extensions/typing-extensions.SlackBuild +++ b/python/typing-extensions/typing-extensions.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=typing-extensions PKGNAM=typing_extensions VERSION=${VERSION:-3.7.4.3} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} SRCNAM="$(printf $PKGNAM | cut -d- -f2-)" @@ -39,7 +39,7 @@ if [ -z "$ARCH" ]; then fi CWD=$(pwd) -TMP=${TMP:-/tmp} +TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -58,14 +58,27 @@ 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 2.7 will be droped in the future. -if $(python2 -c 'import sys' 2>/dev/null); then - python2 setup.py install --root=$PKG -fi -# Replacement of python-2.x Python3.x check presence and build if found. -if $(python3 -c 'import sys' 2>/dev/null); then - python3 setup.py install --root=$PKG -fi +set -- ./* + +mkdir -p build-py2 build-py3 +cp -r -- "$@" build-py2 +cp -r -- "$@" build-py3 + +( + cd build-py2 + # Python 2.7 will be dropped in the future. + if python2 -c 'import sys' 2>/dev/null; then + python2 setup.py install --root=$PKG + fi +) + +( + cd build-py3 + # Replacement of python-2.x Python3.x check presence and build if found. + if python3 -c 'import sys' 2>/dev/null; then + python3 setup.py install --root=$PKG + fi +) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a LICENSE README.rst $PKG/usr/doc/$PRGNAM-$VERSION |