mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-26 22:06:35 +01:00
python/Mako: Updated for version 1.0.13.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
e3e5a94850
commit
45fd625951
3 changed files with 11 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue