python/docopt: Added Python3 support and update README.

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2016-03-13 09:34:37 +02:00 committed by Willy Sudiarto Raharjo
parent 58eabffc28
commit 0aede26dd2
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,5 @@
docopt helps you
* define interface for your command-line app
* automatically generate parser for it.
Python3 is an optional dependency.

View File

@ -2,7 +2,7 @@
# Slackware build script for docopt
# Copyright 2014 Dimitris Zlatanidis Greece-Orestiada
# Copyright 2014-2016 Dimitris Zlatanidis Orestiada, Greece
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -24,7 +24,7 @@
PRGNAM=docopt
VERSION=${VERSION:-0.6.2}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -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