libraries/Nevow: Updated for version 0.14.2.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Markus Reichelt 2016-09-11 08:14:58 +07:00 committed by Willy Sudiarto Raharjo
parent 7713bf9071
commit 1e9e0f901d
2 changed files with 10 additions and 10 deletions

View file

@ -1,9 +1,9 @@
#!/bin/sh
# Slackware build script for Nevow.
# Slackware build script for Nevow
# Copyright 2010-2011 Marco Bonetti <sid77@slackware.it>
# Copyright 2014 Markus Reichelt, Stolberg (Rhld.), DE
# Copyright 2014-2016 Markus Reichelt, Aachen, DE
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -27,13 +27,13 @@
# Now maintained by Markus Reichelt <slackbuilds@mareichelt.de>, 0xCCEEF115
PRGNAM=Nevow
VERSION=${VERSION:-0.11.1}
VERSION=${VERSION:-0.14.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
i?86) ARCH=i586 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
@ -44,8 +44,8 @@ TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
if [ "$ARCH" = "i586" ]; then
SLKCFLAGS="-O2 -march=i586 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
@ -75,7 +75,7 @@ find -L . \
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/man/man1

View file

@ -1,8 +1,8 @@
PRGNAM="Nevow"
VERSION="0.11.1"
VERSION="0.14.2"
HOMEPAGE="http://pypi.python.org/pypi/Nevow"
DOWNLOAD="http://pypi.python.org/packages/source/N/Nevow/Nevow-0.11.1.tar.gz"
MD5SUM="acc5d23bd94a5399752065baae6117f6"
DOWNLOAD="https://pypi.python.org/packages/d1/7b/fb5906c29c2397177e7df12febcd8049610258c97add082131779d0bf49a/Nevow-0.14.2.tar.gz"
MD5SUM="d35d9aaac3f0004c5df2233ec8dfa080"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="python-twisted"