mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
python/simplejson: Updated for version 3.1.0.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
4d55ce925e
commit
6a3c5091a4
4 changed files with 48 additions and 25 deletions
|
@ -1,5 +1,6 @@
|
||||||
Simple, fast, extensible JSON encoder/decoder for Python.
|
Simplejson is a simple, fast, complete, correct and extensible JSON
|
||||||
simplejson is a simple, fast, complete, correct and extensible
|
<http://json.org> encoder and decoder for Python 2.5+ and Python 3.3+. It is
|
||||||
JSON <http://json.org> encoder and decoder for Python 2.4+.
|
pure Python code with no dependencies, but includes an optional C extension for
|
||||||
It is pure Python code, but includes an optional C extension
|
a serious speed boost.
|
||||||
for a serious speed boost.
|
|
||||||
|
Optional documentation can be built if Sphinx and Pygments are installed.
|
||||||
|
|
|
@ -1,18 +1,37 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# Slackware build script for simplejson
|
# Slackware build script for simplejson
|
||||||
|
|
||||||
# Written by Larry Hajali <larryhaja[at]gail[dot]com>
|
# Written by Larry Hajali <larryhaja[at]gail[dot]com>
|
||||||
|
# Copyright 2009-2013 Larry Hajali <larryhaja[at]gmail[dot]com>
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use of this script, with or without modification, is
|
||||||
|
# permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# 1. Redistributions of this script must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
|
||||||
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||||
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
||||||
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
||||||
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
||||||
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
||||||
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||||
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
PRGNAM=simplejson
|
PRGNAM=simplejson
|
||||||
VERSION=${VERSION:-2.1.6}
|
VERSION=${VERSION:-3.1.0}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
|
|
||||||
# Automatically determine the architecture we're building on:
|
|
||||||
if [ -z "$ARCH" ]; then
|
if [ -z "$ARCH" ]; then
|
||||||
case "$( uname -m )" in
|
case "$( uname -m )" in
|
||||||
i?86) ARCH=i486 ;;
|
i?86) ARCH=i486 ;;
|
||||||
arm*) ARCH=arm ;;
|
arm*) ARCH=arm ;;
|
||||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
|
||||||
*) ARCH=$( uname -m ) ;;
|
*) ARCH=$( uname -m ) ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
@ -37,17 +56,20 @@ find . \
|
||||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||||
-exec chmod 644 {} \;
|
-exec chmod 644 {} \;
|
||||||
|
|
||||||
# Lets use the system setuptools rather then ez_setup.
|
# Make documents if Sphinx and Pygments are installed.
|
||||||
rm -f ez_setup.py
|
if $(python -c 'import sphinx.pygments_styles' 2>/dev/null); then
|
||||||
|
python scripts/make_docs.py
|
||||||
|
fi
|
||||||
|
|
||||||
python setup.py install --root=$PKG
|
python setup.py install --root=$PKG
|
||||||
|
|
||||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||||
|
|
||||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
cp -a {CHANGES,LICENSE}.txt README.rst PKG-INFO $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
|
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)
|
||||||
|
|
||||||
mkdir -p $PKG/install
|
mkdir -p $PKG/install
|
||||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="simplejson"
|
PRGNAM="simplejson"
|
||||||
VERSION="2.1.6"
|
VERSION="3.1.0"
|
||||||
HOMEPAGE="http://undefined.org/python/#simplejson"
|
HOMEPAGE="https://github.com/simplejson/simplejson"
|
||||||
DOWNLOAD="http://pypi.python.org/packages/source/s/simplejson/simplejson-2.1.6.tar.gz"
|
DOWNLOAD="http://pypi.python.org/packages/source/s/simplejson/simplejson-3.1.0.tar.gz"
|
||||||
MD5SUM="2f8351f6e6fe7ef25744805dfa56c0d5"
|
MD5SUM="71df0076d4a35d29bfea530cb8226c26"
|
||||||
DOWNLOAD_x86_64=""
|
DOWNLOAD_x86_64=""
|
||||||
MD5SUM_x86_64=""
|
MD5SUM_x86_64=""
|
||||||
REQUIRES="pysetuptools"
|
REQUIRES=""
|
||||||
MAINTAINER="Larry Hajali"
|
MAINTAINER="Larry Hajali"
|
||||||
EMAIL="larryhaja[at]gmail[dot]com"
|
EMAIL="larryhaja[at]gmail[dot]com"
|
||||||
|
|
|
@ -1,19 +1,19 @@
|
||||||
# HOW TO EDIT THIS FILE:
|
# HOW TO EDIT THIS FILE:
|
||||||
# The "handy ruler" below makes it easier to edit a package description. Line
|
# The "handy ruler" below makes it easier to edit a package description.
|
||||||
# up the first '|' above the ':' following the base package name, and the '|' on
|
# Line up the first '|' above the ':' following the base package name, and
|
||||||
# the right side marks the last column you can put a character in. You must make
|
# the '|' on the right side marks the last column you can put a character in.
|
||||||
# exactly 11 lines for the formatting to be correct. It's also customary to
|
# You must make exactly 11 lines for the formatting to be correct. It's also
|
||||||
# leave one space after the ':'.
|
# customary to leave one space after the ':' except on otherwise blank lines.
|
||||||
|
|
||||||
|-----handy-ruler------------------------------------------------------|
|
|-----handy-ruler------------------------------------------------------|
|
||||||
simplejson: simplejson (extensible JSON encoder and decoder for Python)
|
simplejson: simplejson (extensible JSON encoder and decoder for Python)
|
||||||
simplejson:
|
simplejson:
|
||||||
simplejson: Simplejson is a simple, fast, complete, correct and extensible JSON
|
simplejson: Simplejson is a simple, fast, complete, correct and extensible JSON
|
||||||
simplejson: encoder and decoder for Python 2.3+. It is pure Python code, but
|
simplejson: <http://json.org> encoder and decoder for Python 2.5+ and Python 3.3+.
|
||||||
simplejson: includes an optional C extension for a serious speed boost.
|
simplejson: It is pure Python code with no dependencies, but includes an optional
|
||||||
simplejson:
|
simplejson: C extension for a serious speed boost.
|
||||||
simplejson: Homepage: http://undefined.org/python/#simplejson
|
|
||||||
simplejson:
|
simplejson:
|
||||||
|
simplejson: Homepage: https://github.com/simplejson/simplejson
|
||||||
simplejson:
|
simplejson:
|
||||||
simplejson:
|
simplejson:
|
||||||
simplejson:
|
simplejson:
|
||||||
|
|
Loading…
Reference in a new issue