From 8f1a53e3e5c10068d24de87c3b825199182b5932 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Sun, 19 Jun 2011 10:43:02 -0400 Subject: libraries/simplejson: Moved to python. Signed-off-by: dsomero --- libraries/simplejson/README | 7 ---- libraries/simplejson/simplejson.SlackBuild | 56 ------------------------------ libraries/simplejson/simplejson.info | 10 ------ libraries/simplejson/slack-desc | 19 ---------- python/simplejson/README | 7 ++++ python/simplejson/simplejson.SlackBuild | 56 ++++++++++++++++++++++++++++++ python/simplejson/simplejson.info | 10 ++++++ python/simplejson/slack-desc | 19 ++++++++++ 8 files changed, 92 insertions(+), 92 deletions(-) delete mode 100644 libraries/simplejson/README delete mode 100644 libraries/simplejson/simplejson.SlackBuild delete mode 100644 libraries/simplejson/simplejson.info delete mode 100644 libraries/simplejson/slack-desc create mode 100644 python/simplejson/README create mode 100644 python/simplejson/simplejson.SlackBuild create mode 100644 python/simplejson/simplejson.info create mode 100644 python/simplejson/slack-desc diff --git a/libraries/simplejson/README b/libraries/simplejson/README deleted file mode 100644 index 76e0696fda065..0000000000000 --- a/libraries/simplejson/README +++ /dev/null @@ -1,7 +0,0 @@ -Simple, fast, extensible JSON encoder/decoder for Python. -simplejson is a simple, fast, complete, correct and extensible -JSON encoder and decoder for Python 2.4+. -It is pure Python code, but includes an optional C extension -for a serious speed boost. - -Requires pysetuptools. diff --git a/libraries/simplejson/simplejson.SlackBuild b/libraries/simplejson/simplejson.SlackBuild deleted file mode 100644 index 0f645b0f22b79..0000000000000 --- a/libraries/simplejson/simplejson.SlackBuild +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh -# Slackware build script for simplejson -# Written by Larry Hajali - -PRGNAM=simplejson -VERSION=${VERSION:-2.1.6} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -# Automatically determine the architecture we're building on: -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - # Unless $ARCH is already set, use uname -m for all other archs: - *) ARCH=$( uname -m ) ;; - esac -fi - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -# Lets use the system setuptools rather then ez_setup. -rm -f ez_setup.py - -python setup.py install --root=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html -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 - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/libraries/simplejson/simplejson.info b/libraries/simplejson/simplejson.info deleted file mode 100644 index 7beb45c1ab0a7..0000000000000 --- a/libraries/simplejson/simplejson.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="simplejson" -VERSION="2.1.6" -HOMEPAGE="http://undefined.org/python/#simplejson" -DOWNLOAD="http://pypi.python.org/packages/source/s/simplejson/simplejson-2.1.6.tar.gz" -MD5SUM="2f8351f6e6fe7ef25744805dfa56c0d5" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="dsomero" diff --git a/libraries/simplejson/slack-desc b/libraries/simplejson/slack-desc deleted file mode 100644 index f31e3137ca172..0000000000000 --- a/libraries/simplejson/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' on -# the right side marks the last column you can put a character in. You must make -# exactly 11 lines for the formatting to be correct. It's also customary to -# leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -simplejson: simplejson (extensible JSON encoder and decoder for Python) -simplejson: -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: includes an optional C extension for a serious speed boost. -simplejson: -simplejson: Homepage: http://undefined.org/python/#simplejson -simplejson: -simplejson: -simplejson: -simplejson: diff --git a/python/simplejson/README b/python/simplejson/README new file mode 100644 index 0000000000000..76e0696fda065 --- /dev/null +++ b/python/simplejson/README @@ -0,0 +1,7 @@ +Simple, fast, extensible JSON encoder/decoder for Python. +simplejson is a simple, fast, complete, correct and extensible +JSON encoder and decoder for Python 2.4+. +It is pure Python code, but includes an optional C extension +for a serious speed boost. + +Requires pysetuptools. diff --git a/python/simplejson/simplejson.SlackBuild b/python/simplejson/simplejson.SlackBuild new file mode 100644 index 0000000000000..0f645b0f22b79 --- /dev/null +++ b/python/simplejson/simplejson.SlackBuild @@ -0,0 +1,56 @@ +#!/bin/sh +# Slackware build script for simplejson +# Written by Larry Hajali + +PRGNAM=simplejson +VERSION=${VERSION:-2.1.6} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +# Automatically determine the architecture we're building on: +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + # Unless $ARCH is already set, use uname -m for all other archs: + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Lets use the system setuptools rather then ez_setup. +rm -f ez_setup.py + +python setup.py install --root=$PKG + +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html +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 + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/python/simplejson/simplejson.info b/python/simplejson/simplejson.info new file mode 100644 index 0000000000000..7beb45c1ab0a7 --- /dev/null +++ b/python/simplejson/simplejson.info @@ -0,0 +1,10 @@ +PRGNAM="simplejson" +VERSION="2.1.6" +HOMEPAGE="http://undefined.org/python/#simplejson" +DOWNLOAD="http://pypi.python.org/packages/source/s/simplejson/simplejson-2.1.6.tar.gz" +MD5SUM="2f8351f6e6fe7ef25744805dfa56c0d5" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="dsomero" diff --git a/python/simplejson/slack-desc b/python/simplejson/slack-desc new file mode 100644 index 0000000000000..f31e3137ca172 --- /dev/null +++ b/python/simplejson/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +simplejson: simplejson (extensible JSON encoder and decoder for Python) +simplejson: +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: includes an optional C extension for a serious speed boost. +simplejson: +simplejson: Homepage: http://undefined.org/python/#simplejson +simplejson: +simplejson: +simplejson: +simplejson: -- cgit v1.2.3