diff options
author | Barry J. Grundy <bgrundy@linuxleo.com> | 2015-01-15 07:00:00 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-15 07:00:52 +0700 |
commit | b121b9a549ad556735ab3b7273e890d449761310 (patch) | |
tree | ee7c6a41a2b4e7c55fb710eb13b527d38722c415 /python/pyparsing/pyparsing.SlackBuild | |
parent | 4fb13aa9c6fafc5666b3ae5ce2b014a35b03f8e4 (diff) | |
download | slackbuilds-b121b9a549ad556735ab3b7273e890d449761310.tar.gz |
python/pyparsing: Updated for version 2.0.3 + new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/pyparsing/pyparsing.SlackBuild')
-rw-r--r-- | python/pyparsing/pyparsing.SlackBuild | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/python/pyparsing/pyparsing.SlackBuild b/python/pyparsing/pyparsing.SlackBuild index 09ebe5b0e8..970a6c615d 100644 --- a/python/pyparsing/pyparsing.SlackBuild +++ b/python/pyparsing/pyparsing.SlackBuild @@ -21,9 +21,11 @@ # 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. +# +# Updated for v2.0.3 December 2014, Barry Grundy (bgrundy<at>linuxleo.com) PRGNAM=pyparsing -VERSION=${VERSION:-2.0.1} +VERSION=${VERSION:-2.0.3} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -64,19 +66,18 @@ tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -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 {} \; + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -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 \ +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 CHANGES LICENSE PKG-INFO README HowToUsePyparsing.html \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a CHANGES LICENSE PKG-INFO README HowToUsePyparsing.html docs/ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |