From 94505a7b57598e55fd1ae88b0f0d6629d5b869a3 Mon Sep 17 00:00:00 2001 From: Luis Henrique Date: Mon, 19 Apr 2010 23:01:53 -0500 Subject: libraries/configobj: Added (python configobj module). --- libraries/configobj/README | 2 ++ libraries/configobj/configobj.SlackBuild | 39 ++++++++++++++++++++++++++++++++ libraries/configobj/configobj.info | 10 ++++++++ libraries/configobj/slack-desc | 19 ++++++++++++++++ 4 files changed, 70 insertions(+) create mode 100644 libraries/configobj/README create mode 100755 libraries/configobj/configobj.SlackBuild create mode 100644 libraries/configobj/configobj.info create mode 100644 libraries/configobj/slack-desc (limited to 'libraries/configobj') diff --git a/libraries/configobj/README b/libraries/configobj/README new file mode 100644 index 0000000000..218d6240a1 --- /dev/null +++ b/libraries/configobj/README @@ -0,0 +1,2 @@ +A python module for ultra simple handling of configuration files. +Also useful for human readable data persistence. Flexible and simple. diff --git a/libraries/configobj/configobj.SlackBuild b/libraries/configobj/configobj.SlackBuild new file mode 100755 index 0000000000..7a1011ed6d --- /dev/null +++ b/libraries/configobj/configobj.SlackBuild @@ -0,0 +1,39 @@ +#!/bin/sh + +# Slackware build script for configobj + +# Written by Luis Henrique + +PRGNAM=configobj +VERSION=${VERSION:-4.7.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +unzip $CWD/$PRGNAM-$VERSION.zip +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 {} \; + +python setup.py install --root=$PKG + +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/configobj/configobj.info b/libraries/configobj/configobj.info new file mode 100644 index 0000000000..956c50c366 --- /dev/null +++ b/libraries/configobj/configobj.info @@ -0,0 +1,10 @@ +PRGNAM="configobj" +VERSION="4.7.0" +HOMEPAGE="http://www.voidspace.org.uk/python/modules.shtml#configobj" +DOWNLOAD="http://www.voidspace.org.uk/downloads/configobj-4.7.0.zip" +MD5SUM="237bb4ffd4eaa6208805138499806421" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Luis Henrique" +EMAIL="lmello.009@gmail.com" +APPROVED="rworkman" diff --git a/libraries/configobj/slack-desc b/libraries/configobj/slack-desc new file mode 100644 index 0000000000..ca4a08c15a --- /dev/null +++ b/libraries/configobj/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------------------------------------------------------| +configobj: configobj (configuration file python module) +configobj: +configobj: A python module for ultra simple handling of configuration files. +configobj: Also useful for human readable data persistence. Flexible and simple. +configobj: +configobj: Homepage: http://www.voidspace.org.uk/python/modules.shtml#configobj +configobj: +configobj: +configobj: +configobj: +configobj: -- cgit v1.2.3