diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2010-05-12 23:31:16 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 23:31:16 +0200 |
commit | d2ca5058516f93e865f8321326be7cd8ceccd964 (patch) | |
tree | 82342234d9d9d5381631af5082e3f1afb0415963 | |
parent | eb6abf423dbdf30248de3bec0c3f0bf57b0b45ca (diff) | |
download | slackbuilds-d2ca5058516f93e865f8321326be7cd8ceccd964.tar.gz |
libraries/python-distutils-extra: Added to 12.2 repository
4 files changed, 85 insertions, 0 deletions
diff --git a/libraries/python-distutils-extra/README b/libraries/python-distutils-extra/README new file mode 100644 index 0000000000..f634860550 --- /dev/null +++ b/libraries/python-distutils-extra/README @@ -0,0 +1,6 @@ +Python-distutils-extra allows to easily integrate themable +icons, scrollkeeper based documentation and gettext based +translations in your python install and build tools. It can +be used with python's distutils or the enhanced setuptools. + +This requires pysetuptools. diff --git a/libraries/python-distutils-extra/python-distutils-extra.SlackBuild b/libraries/python-distutils-extra/python-distutils-extra.SlackBuild new file mode 100644 index 0000000000..b633483c74 --- /dev/null +++ b/libraries/python-distutils-extra/python-distutils-extra.SlackBuild @@ -0,0 +1,52 @@ +#!/bin/sh + +# Slackware build script for python-distutils-extra + +# Written by Larry Hajali <larryhaja[at]gmail[dot]com> + +PRGNAM=python-distutils-extra +VERSION=${VERSION:-1.92} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +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 debian +tar xvf $CWD/${PRGNAM}_${VERSION}.tar.gz +cd debian +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 + +( cd $PKG + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + LICENSE doc/{FAQ,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.tgz diff --git a/libraries/python-distutils-extra/python-distutils-extra.info b/libraries/python-distutils-extra/python-distutils-extra.info new file mode 100644 index 0000000000..c2abcb0a46 --- /dev/null +++ b/libraries/python-distutils-extra/python-distutils-extra.info @@ -0,0 +1,8 @@ +PRGNAM="python-distutils-extra" +VERSION="1.92" +HOMEPAGE="https://launchpad.net/python-distutils-extra" +DOWNLOAD="http://ftp.de.debian.org/debian/pool/main/p/python-distutils-extra/python-distutils-extra_1.92.tar.gz" +MD5SUM="d94d6b3f6a642a1f6323f209e6ccc866" +MAINTAINER="Larry Hajali" +EMAIL="larryhaja[at]gmail[dot]com" +APPROVED="rworkman" diff --git a/libraries/python-distutils-extra/slack-desc b/libraries/python-distutils-extra/slack-desc new file mode 100644 index 0000000000..2c1adaf626 --- /dev/null +++ b/libraries/python-distutils-extra/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------------------------------------------------------| +python-distutils-extra: python-distutils-extra (Extra stuff for python distutils) +python-distutils-extra: +python-distutils-extra: Python-distutils-extra allows to easily integrate themable icons, +python-distutils-extra: scrollkeeper based documentation and gettext based translations in +python-distutils-extra: your python install and build tools. It can be used with python's +python-distutils-extra: distutils or the enhanced setuptools. +python-distutils-extra: +python-distutils-extra: Homepage: https://launchpad.net/python-distutils-extra +python-distutils-extra: +python-distutils-extra: +python-distutils-extra: |