python/pyparsing: Updated for version 2.0.3 + new maintainer.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Barry J. Grundy 2015-01-15 07:00:00 +07:00 committed by Willy Sudiarto Raharjo
parent 4fb13aa9c6
commit b121b9a549
2 changed files with 14 additions and 13 deletions

View File

@ -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

View File

@ -1,10 +1,10 @@
PRGNAM="pyparsing"
VERSION="2.0.1"
VERSION="2.0.3"
HOMEPAGE="http://pyparsing.wikispaces.com/"
DOWNLOAD="http://downloads.sourceforge.net/pyparsing/pyparsing-2.0.1.tar.gz"
MD5SUM="37adec94104b98591507218bc82e7c31"
DOWNLOAD="http://downloads.sourceforge.net/pyparsing/pyparsing-2.0.3.tar.gz"
MD5SUM="0fe479be09fc2cf005f753d3acc35939"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Bogdan Radulescu"
EMAIL="bogdan@nimblex.net"
MAINTAINER="Barry J. Grundy"
EMAIL="bgrundy<at>linuxleo.com"