From ff24b0ba7a7ab750ac096c0b29ff775e661787fa Mon Sep 17 00:00:00 2001 From: "Edinaldo P. Silva" Date: Wed, 20 Dec 2017 22:43:17 +0000 Subject: libraries/pyPEG2: Add python3 support. Signed-off-by: David Spencer --- libraries/pyPEG2/README | 13 +++++++++---- libraries/pyPEG2/pyPEG2.SlackBuild | 9 ++++++++- libraries/pyPEG2/slack-desc | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) (limited to 'libraries/pyPEG2') diff --git a/libraries/pyPEG2/README b/libraries/pyPEG2/README index 47811fd207..baf2045383 100644 --- a/libraries/pyPEG2/README +++ b/libraries/pyPEG2/README @@ -1,6 +1,11 @@ pyPEG2 (plain and simple intrinsic parser interpreter for Python) -pyPEG2 is a plain and simple intrinsic parser interpreter framework -for Python version 2.7 and 3.x. It is based on Parsing Expression -Grammar (PEG). With pyPEG you can parse many formal languages -in a very easy way. +pyPEG2 is a plain and simple intrinsic parser interpreter framework +for Python version 2.7 and 3.x. It is based on Parsing Expression +Grammar (PEG). With pyPEG you can parse many formal languages in a +very easy way. + +NOTE: to build mutagen with python3 run the slackbuild with option +PYTHON3=yes. + + # PYTHON3=yes ./pyPEG2.SlackBuild diff --git a/libraries/pyPEG2/pyPEG2.SlackBuild b/libraries/pyPEG2/pyPEG2.SlackBuild index 1b9ed36ae6..669bcfbf82 100644 --- a/libraries/pyPEG2/pyPEG2.SlackBuild +++ b/libraries/pyPEG2/pyPEG2.SlackBuild @@ -24,7 +24,7 @@ PRGNAM=pyPEG2 VERSION=${VERSION:-2.15.2} -BUILD=${BUILD:-2} +BUILD=${BUILD:-3} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -69,8 +69,15 @@ 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 build python setup.py install --root=$PKG +# Build mutagen with python3. Default is no. +if [ "${PYTHON3:-no}" == "yes" ]; then + python3 setup.py build + 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 diff --git a/libraries/pyPEG2/slack-desc b/libraries/pyPEG2/slack-desc index 3215957b83..654be9ac72 100644 --- a/libraries/pyPEG2/slack-desc +++ b/libraries/pyPEG2/slack-desc @@ -8,7 +8,7 @@ |-----handy-ruler------------------------------------------------------| pyPEG2: pyPEG2 (plain and simple intrinsic parser interpreter for Python) pyPEG2: -pyPEG2: pyPEG2 is a plain and simple intrinsic parser interpreter framework +pyPEG2: pyPEG2 is a plain and simple intrinsic parser interpreter framework pyPEG2: for Python version 2.7 and 3.x. pyPEG2: pyPEG2: Home page: https://fdik.org/pyPEG/ -- cgit v1.2.3-79-gdb01