diff options
author | Larry Hajali <larryhaja[at]gmail[dot]com> | 2011-08-06 22:18:35 -0500 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-08-11 20:28:36 -0300 |
commit | 604cf960b52ab0a27c55fc2543c0dd3ec4126ecf (patch) | |
tree | 5edac97994cc8869a3d960d7eaecc6675d0d0d79 /libraries | |
parent | 39fef1cc030653328d3748e6ec86f39677e212d7 (diff) | |
download | slackbuilds-604cf960b52ab0a27c55fc2543c0dd3ec4126ecf.tar.gz |
python/virtualenv: Moved from Libraries (and bumped to 1.6.4)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/virtualenv/README | 3 | ||||
-rw-r--r-- | libraries/virtualenv/slack-desc | 19 | ||||
-rw-r--r-- | libraries/virtualenv/virtualenv.SlackBuild | 53 | ||||
-rw-r--r-- | libraries/virtualenv/virtualenv.info | 10 |
4 files changed, 0 insertions, 85 deletions
diff --git a/libraries/virtualenv/README b/libraries/virtualenv/README deleted file mode 100644 index 7342676198..0000000000 --- a/libraries/virtualenv/README +++ /dev/null @@ -1,3 +0,0 @@ -Virtualenv is a tool to create isolated Python environments. - -Virtualenv can optionally use pysetuptools during install. diff --git a/libraries/virtualenv/slack-desc b/libraries/virtualenv/slack-desc deleted file mode 100644 index 4b8f3810df..0000000000 --- a/libraries/virtualenv/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# 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------------------------------------------------------| -virtualenv: virtualenv -virtualenv: -virtualenv: virtualenv is a tool to create isolated Python environments. -virtualenv: -virtualenv: Homepage: http://pypi.python.org/pypi/virtualenv/ -virtualenv: -virtualenv: -virtualenv: -virtualenv: -virtualenv: -virtualenv: diff --git a/libraries/virtualenv/virtualenv.SlackBuild b/libraries/virtualenv/virtualenv.SlackBuild deleted file mode 100644 index 9a52e25a54..0000000000 --- a/libraries/virtualenv/virtualenv.SlackBuild +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/sh - -# Slackware build script for virtualenv - -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> - -PRGNAM=virtualenv -VERSION=1.6.1 -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 -e - -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 . -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 - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a docs/*.txt *.txt PKG-INFO $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/virtualenv/virtualenv.info b/libraries/virtualenv/virtualenv.info deleted file mode 100644 index 028354dccb..0000000000 --- a/libraries/virtualenv/virtualenv.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="virtualenv" -VERSION="1.6.1" -HOMEPAGE="http://pypi.python.org/pypi/virtualenv/" -DOWNLOAD="http://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.6.1.tar.gz" -MD5SUM="1a475df2219457b6b4febb9fe595d915" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Larry Hajali" -EMAIL="larryhaja[at]gmail[dot]com" -APPROVED="rworkman" |