diff options
author | Pablo Santamaria <pablosantamaria@gmail.com> | 2010-05-13 00:59:17 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:59:17 +0200 |
commit | af71608ad963a49345ff2f7be970b64290ff5608 (patch) | |
tree | aabb83b2ef01531df5302dc7a14eb87ee9760d79 /libraries/pyyaml | |
parent | f82ed8e9b8a47e0f75e0945ccffab7d7a53f9af4 (diff) |
libraries/pyyaml: Added to 13.0 repository
Diffstat (limited to 'libraries/pyyaml')
-rw-r--r-- | libraries/pyyaml/README | 5 | ||||
-rw-r--r-- | libraries/pyyaml/pyyaml.SlackBuild | 44 | ||||
-rw-r--r-- | libraries/pyyaml/pyyaml.info | 10 | ||||
-rw-r--r-- | libraries/pyyaml/slack-desc | 19 |
4 files changed, 78 insertions, 0 deletions
diff --git a/libraries/pyyaml/README b/libraries/pyyaml/README new file mode 100644 index 000000000000..2bede18e0f19 --- /dev/null +++ b/libraries/pyyaml/README @@ -0,0 +1,5 @@ +pyyaml (YAML parser and emitter for Python) + +YAML is a data serialization format designed for human readability +and interaction with scripting languages. PyYAML is a YAML parser and +emitter for Python. diff --git a/libraries/pyyaml/pyyaml.SlackBuild b/libraries/pyyaml/pyyaml.SlackBuild new file mode 100644 index 000000000000..3fbc9496f9b9 --- /dev/null +++ b/libraries/pyyaml/pyyaml.SlackBuild @@ -0,0 +1,44 @@ +#!/bin/sh + +# Slackware build script for PyYAML + +# Written by Pablo Santamaria (pablosantamaria@gmail.com) + +PRGNAM=pyyaml +VERSION=${VERSION:-3.09} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} # For consistency's sake, use this +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf PyYAML-$VERSION +tar xvf $CWD/PyYAML-$VERSION.tar.gz +cd PyYAML-$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 build +python setup.py install --prefix=$PKG/usr + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGES LICENSE README $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/pyyaml/pyyaml.info b/libraries/pyyaml/pyyaml.info new file mode 100644 index 000000000000..01e769033026 --- /dev/null +++ b/libraries/pyyaml/pyyaml.info @@ -0,0 +1,10 @@ +PRGNAM="pyyaml" +VERSION="3.09" +HOMEPAGE="http://pyyaml.org/" +DOWNLOAD="http://pyyaml.org/download/pyyaml/PyYAML-3.09.tar.gz" +MD5SUM="f219af2361e87fdc5e85e95b84c11d87" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Pablo Santamaria" +EMAIL="pablosantamaria@gmail.com" +APPROVED="dsomero" diff --git a/libraries/pyyaml/slack-desc b/libraries/pyyaml/slack-desc new file mode 100644 index 000000000000..8b1bf2fa5368 --- /dev/null +++ b/libraries/pyyaml/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----------------------------------------------------| +pyyaml: pyyaml (YAML parser and emitter for Python) +pyyaml: +pyyaml: YAML is a data serialization format designed for human readability +pyyaml: and interaction with scripting languages. PyYAML is a YAML parser +pyyaml: and emitter for Python. +pyyaml: +pyyaml: +pyyaml: +pyyaml: +pyyaml: +pyyaml: |