From d2ca5058516f93e865f8321326be7cd8ceccd964 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Wed, 12 May 2010 23:31:16 +0200 Subject: libraries/python-distutils-extra: Added to 12.2 repository --- .../python-distutils-extra.SlackBuild | 52 ++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 libraries/python-distutils-extra/python-distutils-extra.SlackBuild (limited to 'libraries/python-distutils-extra/python-distutils-extra.SlackBuild') 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 0000000000000..b633483c7415a --- /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 + +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 -- cgit v1.2.3