# HG changeset patch # User Hans-G?nter Theisgen # Date 1586093695 -3600 # Node ID 6d80c16e55a15724ca10dd29bea8262ff68ee0ad # Parent ce1d8474468331684dd731dccaab73eff4a26595 updated python-cheetah (2.4.3 -> 2.4.4) diff -r ce1d84744683 -r 6d80c16e55a1 python-cheetah/receipt --- a/python-cheetah/receipt Sun Apr 05 14:25:27 2020 +0100 +++ b/python-cheetah/receipt Sun Apr 05 14:34:55 2020 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="python-cheetah" -VERSION="2.4.3" +VERSION="2.4.4" CATEGORY="development" -SHORT_DESC="Cheetah is a template engine and code generation tool written in Python." +TAGS="python" +SHORT_DESC="A template engine and code generation tool written in Python." MAINTAINER="pankso@slitaz.org" LICENSE="MIT" +WEB_SITE="https://www.cheetahtemplate.org/" + SOURCE="Cheetah" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="http://www.cheetahtemplate.org/" -WGET_URL="http://pypi.python.org/packages/source/C/$SOURCE/$TARBALL" -TAGS="python" +WGET_URL="https://files.pythonhosted.org/packages/source/C/$SOURCE/$TARBALL" DEPENDS="python" BUILD_DEPENDS="python python-dev" @@ -18,13 +19,16 @@ # Rules to configure and make the package. compile_rules() { - sed -i 's/sys.version_info/&[:]/' cheetah/Template.py - sed -i 's/\(naoeu.*\\n"\))/\1, convertEOLs=False)/' cheetah/Tests/SyntaxAndOutput.py + sed -i 's/sys.version_info/&[:]/' \ + cheetah/Template.py + sed -i 's/\(naoeu.*\\n"\))/\1, convertEOLs=False)/' \ + cheetah/Tests/SyntaxAndOutput.py + python setup.py install --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cp -a $install/usr $fs }