diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2015-12-31 13:52:59 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-12-31 13:52:59 +0700 |
commit | 709eb6fecc5a4e99b503dc497bf435d6352e385a (patch) | |
tree | 1dd8305fde55906dae308b315201e218dd48ea7e /python | |
parent | 5e19fbeb8d8172bab8f98ce48dfb7a2cbcd8000f (diff) | |
download | slackbuilds-709eb6fecc5a4e99b503dc497bf435d6352e385a.tar.gz |
python/simplejson: Updated for version 3.8.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/simplejson/README | 8 | ||||
-rw-r--r-- | python/simplejson/simplejson.SlackBuild | 8 | ||||
-rw-r--r-- | python/simplejson/simplejson.info | 6 |
3 files changed, 14 insertions, 8 deletions
diff --git a/python/simplejson/README b/python/simplejson/README index fd00d47fff..dc5c972c0b 100644 --- a/python/simplejson/README +++ b/python/simplejson/README @@ -3,5 +3,9 @@ Simplejson is a simple, fast, complete, correct and extensible JSON pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. -Optional documentation can be built if Sphinx Pygments are installed. Python3 -bindings can be built if python3 is installed. +Optional dependencies: Sphinx, python3 and pysetuptools + +Note: To install python3 bindings install python3 and pass PYTHON3=yes to the +slackbuild. + + # PYTHON3 ./simplejson.SlackBuild diff --git a/python/simplejson/simplejson.SlackBuild b/python/simplejson/simplejson.SlackBuild index 588fabb55b..58b75434da 100644 --- a/python/simplejson/simplejson.SlackBuild +++ b/python/simplejson/simplejson.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for simplejson -# Copyright 2009-2014 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2009-2015 Larry Hajali <larryhaja[at]gmail[dot]com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=simplejson -VERSION=${VERSION:-3.5.3} +VERSION=${VERSION:-3.8.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -58,11 +58,13 @@ find -L . \ # Make documents if Sphinx and Pygments are installed. if $(python -c 'import sphinx.pygments_styles' 2>/dev/null); then python scripts/make_docs.py + rm -f docs/.buildinfo + rm -f docs/.nojekyll fi python setup.py install --root=$PKG -if $(python3 -c 'import os' 2>/dev/null); then +if [ "${PYTHON3:-no}" == "yes" ]; then python3 setup.py install --root=$PKG fi diff --git a/python/simplejson/simplejson.info b/python/simplejson/simplejson.info index 4f6874d49e..dad1f06c4b 100644 --- a/python/simplejson/simplejson.info +++ b/python/simplejson/simplejson.info @@ -1,8 +1,8 @@ PRGNAM="simplejson" -VERSION="3.5.3" +VERSION="3.8.1" HOMEPAGE="https://github.com/simplejson/simplejson" -DOWNLOAD="http://pypi.python.org/packages/source/s/simplejson/simplejson-3.5.3.tar.gz" -MD5SUM="d5f62dfa6b6dea31735d56c858361d48" +DOWNLOAD="http://pypi.python.org/packages/source/s/simplejson/simplejson-3.8.1.tar.gz" +MD5SUM="b8441f1053edd9dc335ded8c7f98a974" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |