diff options
author | larryhaja <larryhaja@gmail.com> | 2013-11-13 19:10:35 -0800 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-11-14 00:06:27 -0600 |
commit | f2ddc2d8f62c7039f61e6b5128c0de4f681927eb (patch) | |
tree | db8d0ff4b841a749feb58c76ce547ad018e8f8e6 /python/python-distutils-extra/python-distutils-extra.SlackBuild | |
parent | 029c07682b50a8e0f8a90462d5eb90763fae39a4 (diff) |
python/python-distutils-extra: Upgraded to version 2.38
Removed extra build arguments
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'python/python-distutils-extra/python-distutils-extra.SlackBuild')
-rw-r--r-- | python/python-distutils-extra/python-distutils-extra.SlackBuild | 31 |
1 files changed, 21 insertions, 10 deletions
diff --git a/python/python-distutils-extra/python-distutils-extra.SlackBuild b/python/python-distutils-extra/python-distutils-extra.SlackBuild index b4b59e6dec2cf..ee34df3e0fd2d 100644 --- a/python/python-distutils-extra/python-distutils-extra.SlackBuild +++ b/python/python-distutils-extra/python-distutils-extra.SlackBuild @@ -2,10 +2,28 @@ # Slackware build script for python-distutils-extra -# Written by Larry Hajali <larryhaja[at]gmail[dot]com> +# Copyright 2009-2013 Larry Hajali <larryhaja[at]gmail[dot]com> +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=python-distutils-extra -VERSION=${VERSION:-2.37} +VERSION=${VERSION:-2.38} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -37,20 +55,13 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; -# Build extra options. -cat >> setup.cfg << EOF -[build] -i18n=True -icons=True -EOF - 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 LICENSE PKG-INFO doc/{FAQ,README} $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 |