python/Mako: Updated for version 1.0.13.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Hunter Sezen 2019-07-20 08:05:14 +07:00 committed by Willy Sudiarto Raharjo
parent e3e5a94850
commit 45fd625951
No known key found for this signature in database
GPG key ID: 887B8374D7333381
3 changed files with 11 additions and 4 deletions

View file

@ -24,7 +24,7 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=Mako
VERSION=${VERSION:-1.0.10}
VERSION=${VERSION:-1.0.13}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -58,6 +58,11 @@ find -L . \
python setup.py install --root=$PKG
# Python 3 support.
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 AUTHORS CHANGES LICENSE README.rst doc/*.html \
$PKG/usr/doc/$PRGNAM-$VERSION

View file

@ -1,8 +1,8 @@
PRGNAM="Mako"
VERSION="1.0.10"
VERSION="1.0.13"
HOMEPAGE="https://www.makotemplates.org/"
DOWNLOAD="https://files.pythonhosted.org/packages/f9/93/63f78c552e4397549499169198698de23b559b52e57f27d967690811d16d/Mako-1.0.10.tar.gz"
MD5SUM="a94d376078dda65f834ea5049a81ebb5"
DOWNLOAD="https://files.pythonhosted.org/packages/fa/29/8016763284d8fab844224f7cc5675cb4a388ebda0eb5a403260187e48435/Mako-1.0.13.tar.gz"
MD5SUM="ad6c7dcb5d39c99f4fdf4fec892c5dee"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="MarkupSafe"

View file

@ -7,3 +7,5 @@ language, which refines the familiar ideas of componentized layout and
inheritance to produce one of the most straightforward and flexible
models available, while also maintaining close ties to Python calling
and scoping semantics.
Python3 is an optional dependency.