# HG changeset patch # User Hans-G?nter Theisgen # Date 1657716706 -3600 # Node ID 3ce9abc153e7eaac99de7dabbb282540847a9844 # Parent d1edb6891f97e6a28a01603a337a9b84c9c88faa updated python-jinja2 (2.11.1 -> 2.11.3) diff -r d1edb6891f97 -r 3ce9abc153e7 python-jinja2/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-jinja2/description.txt Wed Jul 13 13:51:46 2022 +0100 @@ -0,0 +1,20 @@ +Jinja is a fast, expressive, extensible templating engine. +Special placeholders in the template allow writing code similar to Python syntax. +Then the template is passed data to render the final document. + +It includes: + +- Template inheritance and inclusion. +- Define and import macros within templates. +- HTML templates can use autoescaping to prevent XSS from untrusted user input. +- A sandboxed environment can safely render untrusted templates. +- AsyncIO support for generating templates and calling async functions. +- I18N support with Babel. +- Templates are compiled to optimized Python code just-in-time and cached, + or can be compiled ahead-of-time. +- Exceptions point to the correct line in templates to make debugging easier. +- Extensible filters, tests, functions, and even syntax. + +Jinja's philosophy is that while application logic belongs in Python if possible, +it shouldn't make the template designer's job difficult by restricting +functionality too much. diff -r d1edb6891f97 -r 3ce9abc153e7 python-jinja2/receipt --- a/python-jinja2/receipt Wed Jul 13 13:40:45 2022 +0100 +++ b/python-jinja2/receipt Wed Jul 13 13:51:46 2022 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="python-jinja2" -VERSION="2.11.1" +VERSION="2.11.3" CATEGORY="development" SHORT_DESC="Stand-alone template engine." MAINTAINER="claudinei@slitaz.org" LICENSE="BSD" WEB_SITE="https://pypi.org/project/Jinja2" +REPOLOGY="python:jinja2" SOURCE="Jinja2" TARBALL="$SOURCE-$VERSION.tar.gz" -WGET_URL="https://files.pythonhosted.org/packages/source/J/$SOURCE/$TARBALL" +WGET_URL="https://files.pythonhosted.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python python-markupsafe" BUILD_DEPENDS="python python-setuptools"