From 9444e5a3ec1d2a86686becdabfbc14255420c498 Mon Sep 17 00:00:00 2001 From: Robby Workman Date: Tue, 3 May 2011 15:30:16 -0500 Subject: python/distribute: Moved from Development category Signed-off-by: Robby Workman --- python/distribute/README | 14 ++++++++++ python/distribute/distribute.SlackBuild | 48 +++++++++++++++++++++++++++++++++ python/distribute/distribute.info | 10 +++++++ python/distribute/slack-desc | 19 +++++++++++++ 4 files changed, 91 insertions(+) create mode 100644 python/distribute/README create mode 100644 python/distribute/distribute.SlackBuild create mode 100644 python/distribute/distribute.info create mode 100644 python/distribute/slack-desc (limited to 'python') diff --git a/python/distribute/README b/python/distribute/README new file mode 100644 index 0000000000..3ba0c42347 --- /dev/null +++ b/python/distribute/README @@ -0,0 +1,14 @@ +distribute is a fork of the setuptools project. + +Distribute is intended to replace Setuptools as the standard method for working +with Python module distributions. + +For those who may wonder why they should switch to Distribute over Setuptools, +it's quite simple: + +- Distribute is a drop-in replacement for Setuptools. +- The code is actively maintained, and has over 10 commiters. +- Distribute offers Python 3 support! + +If you have pysetuptools installed, you need to remove it before installing +this package. diff --git a/python/distribute/distribute.SlackBuild b/python/distribute/distribute.SlackBuild new file mode 100644 index 0000000000..a2b54f7767 --- /dev/null +++ b/python/distribute/distribute.SlackBuild @@ -0,0 +1,48 @@ +#!/bin/sh + +# Slackware build script for distribute +# Written by Audrius Kažukauskas + +PRGNAM=distribute +VERSION=${VERSION:-0.6.14} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -eu + +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 . +chmod -R u+w,go+r-w,a-s . + +# Don't need this. +rm -f setuptools/*.exe + +python setup.py install --root=$PKG + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +install -m 0644 *.txt $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/distribute/distribute.info b/python/distribute/distribute.info new file mode 100644 index 0000000000..246324c8ff --- /dev/null +++ b/python/distribute/distribute.info @@ -0,0 +1,10 @@ +PRGNAM="distribute" +VERSION="0.6.14" +HOMEPAGE="http://packages.python.org/distribute/" +DOWNLOAD="http://pypi.python.org/packages/source/d/distribute/distribute-0.6.14.tar.gz" +MD5SUM="ac607e05682116c06383b27a15e2db90" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Audrius Kažukauskas" +EMAIL="audrius@neutrino.lt" +APPROVED="dsomero" diff --git a/python/distribute/slack-desc b/python/distribute/slack-desc new file mode 100644 index 0000000000..fa712f2e70 --- /dev/null +++ b/python/distribute/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------------------------------------------------------| +distribute: Distribute (a fork of the Setuptools project) +distribute: +distribute: Distribute is intended to replace Setuptools as the standard method +distribute: for working with Python module distributions. +distribute: +distribute: Homepage: http://packages.python.org/distribute/ +distribute: +distribute: +distribute: +distribute: +distribute: -- cgit v1.2.3