diff options
author | Larry Hajali <larryhaja@gmail.com> | 2016-07-30 22:01:48 -0700 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-08-05 18:10:51 +0100 |
commit | 8de88398bd7f1b5feea10e5b00d653bdd1f2f40f (patch) | |
tree | 2e2dcf35a091c266d1de5bb59c05287f2fa9b18b /python/simplejson/simplejson.SlackBuild | |
parent | 24fa8ba40532bde59f670112ef5430caabe4063c (diff) | |
download | slackbuilds-8de88398bd7f1b5feea10e5b00d653bdd1f2f40f.tar.gz |
python/simplejson: Updated for version 3.8.2
Signed-off-by: Larry Hajali <larryhaja[at]gmail[dot]com>
Diffstat (limited to 'python/simplejson/simplejson.SlackBuild')
-rw-r--r-- | python/simplejson/simplejson.SlackBuild | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/python/simplejson/simplejson.SlackBuild b/python/simplejson/simplejson.SlackBuild index 58b75434da..fc80541387 100644 --- a/python/simplejson/simplejson.SlackBuild +++ b/python/simplejson/simplejson.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for simplejson -# Copyright 2009-2015 Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2009-2016 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.8.1} +VERSION=${VERSION:-3.8.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -58,8 +58,7 @@ 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 + rm -f docs/.buildinfo docs/.nojekyll docs/objects.inv fi python setup.py install --root=$PKG @@ -74,7 +73,7 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a {CHANGES,LICENSE}.txt README.rst PKG-INFO $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -[ -d docs ] && (rm -f docs/objects.inv; cp -ar docs $PKG/usr/doc/$PRGNAM-$VERSION) +[ -d docs ] && cp -ar docs $PKG/usr/doc/$PRGNAM-$VERSION mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |