python/munch: Updated for version 2.3.1.

This commit is contained in:
Benjamin Trigona-Harany 2018-04-09 11:11:45 -07:00 committed by Willy Sudiarto Raharjo
parent 8c210e4b07
commit a10527fb92
3 changed files with 17 additions and 10 deletions

View file

@ -1,2 +1,4 @@
Munch implements a Python dictionary that provides attribute-style access (a la
JavaScript objects). Munch is a fork of David Schoonover's Bunch package.
Munch will make use PyYAML and python3-PyYAML if they are installed.

View file

@ -2,7 +2,7 @@
# Slackware build script for munch
# Copyright 2016 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# Copyright 2016-2018 Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
# 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=munch
VERSION=${VERSION:-2.2.0}
VERSION=${VERSION:-2.3.1}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -64,15 +64,20 @@ 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
if $(python3 -c 'import sys' 2>/dev/null); then
python3 setup.py install --root=$PKG
fi
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a LICENSE.txt README.md $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
LICENSE.txt README.md \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,8 +1,8 @@
PRGNAM="munch"
VERSION="2.2.0"
VERSION="2.3.1"
HOMEPAGE="https://github.com/Infinidat/munch"
DOWNLOAD="https://github.com/Infinidat/munch/archive/2.2.0/munch-2.2.0.tar.gz"
MD5SUM="a50f0e4d770b5106f0c440a6cff3617f"
DOWNLOAD="https://github.com/Infinidat/munch/archive/2.3.1/munch-2.3.1.tar.gz"
MD5SUM="9768b766fb7aa653fda73da08f58c371"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""