diff options
author | Brenton Earl <brent@exitstatusone.com> | 2017-03-29 22:17:11 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-04-01 06:57:03 +0700 |
commit | ec73d882d67d0c69ec5c814b02a733fa52d779bd (patch) | |
tree | 52d0bc355b9bd63439055cbe70e7035a2ccbadde /python/phply/phply.SlackBuild | |
parent | efe247a89a6553f6a9ced84bc904fe68d3a7cef8 (diff) |
python/phply: Updated for version 1.0.0.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/phply/phply.SlackBuild')
-rw-r--r-- | python/phply/phply.SlackBuild | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/python/phply/phply.SlackBuild b/python/phply/phply.SlackBuild index a1b897e3e33c2..69533a26469f0 100644 --- a/python/phply/phply.SlackBuild +++ b/python/phply/phply.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for phply -# Copyright 2015-2016 Brenton Earl <brent@exitstatusone.com> +# Copyright 2015-2017 Brenton Earl <brent@exitstatusone.com> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=phply -VERSION=${VERSION:-0.9.1} +VERSION=${VERSION:-1.0.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -69,17 +69,15 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -# make setup.py include scripts in $PRGNAM-$VERSION/tools/ -patch -p1 --verbose < $CWD/phply-setup.py.diff - python setup.py install --root=$PKG find $PKG -print0 | xargs -0 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 AUTHORS LICENSE PKG-INFO README.md $PKG/usr/doc/$PRGNAM-$VERSION +cp -a PKG-INFO $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild +cat $CWD/README.Slackware > $PKG/usr/doc/$PRGNAM-$VERSION/README.Slackware mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |