pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/py-jinja2 py-jinja2: updated to 2.10



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3fc1577ddaf5
branches:  trunk
changeset: 371371:3fc1577ddaf5
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu Nov 09 07:52:17 2017 +0000

description:
py-jinja2: updated to 2.10

Version 2.10:
- Added a new extension node called OverlayScope which can be used to
  create an unoptimized scope that will look up all variables from a
  derived context.
- Added an in test that works like the in operator.  This can be used
  in combination with reject and select.
- Added previtem and nextitem to loop contexts, providing access to the
  previous/next item in the loop. If such an item does not exist, the value is
  undefined.
- Added changed(*values) to loop contexts, providing an easy way of
  checking whether a value has changed since the last iteration (or rather
  since the last call of the method)
- Added a namespace function that creates a special object which allows
  attribute assignment using the set tag.  This can be used to carry data
  across scopes, e.g. from a loop body to code that comes after the loop.
- Added a trimmed modifier to {% trans %} to strip linebreaks and
  surrounding whitespace. Also added a new policy to enable this for all
  trans blocks.
- The random filter is no longer incorrectly constant folded and will
  produce a new random choice each time the template is rendered.
- Added a unique filter.
- Added min and max filters.
- Added tests for all comparison operators: eq, ne, lt, le,
  gt, ge.
- import statement cannot end with a trailing comma.
- indent filter will not indent blank lines by default.
- Add reverse argument for dictsort filter.
- Add a NativeEnvironment that renders templates to native Python types
  instead of strings.
- Added filter support to the block set tag.
- tojson filter marks output as safe to match documented behavior.
- Resolved a bug where getting debug locals for tracebacks could
  modify template context.
- Fixed a bug where having many {% elif ... %} blocks resulted in a
  "too many levels of indentation" error.  These blocks now compile to
  native elif ..: instead of else: if ..:

diffstat:

 textproc/py-jinja2/Makefile |   9 +++++----
 textproc/py-jinja2/PLIST    |  11 +++++++----
 textproc/py-jinja2/distinfo |  10 +++++-----
 3 files changed, 17 insertions(+), 13 deletions(-)

diffs (72 lines):

diff -r eb651123bf13 -r 3fc1577ddaf5 textproc/py-jinja2/Makefile
--- a/textproc/py-jinja2/Makefile       Thu Nov 09 07:41:44 2017 +0000
+++ b/textproc/py-jinja2/Makefile       Thu Nov 09 07:52:17 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.22 2017/05/04 20:23:31 adam Exp $
+# $NetBSD: Makefile,v 1.23 2017/11/09 07:52:17 adam Exp $
 
-DISTNAME=      Jinja2-2.9.6
+DISTNAME=      Jinja2-2.10
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=J/Jinja2/}
@@ -10,9 +10,10 @@
 COMMENT=       Small but fast and easy to use stand-alone template engine
 LICENSE=       modified-bsd
 
-USE_LANGUAGES=         # none
+DEPENDS+=      ${PYPKGPREFIX}-babel>=0.8:../../devel/py-babel
+DEPENDS+=      ${PYPKGPREFIX}-markupsafe>=0.23:../../textproc/py-markupsafe
 
-DEPENDS+=      ${PYPKGPREFIX}-markupsafe-[0-9]*:../../textproc/py-markupsafe
+USE_LANGUAGES=         # none
 
 SUBST_CLASSES+=                unicode
 SUBST_FILES.unicode=   jinja2/*.py
diff -r eb651123bf13 -r 3fc1577ddaf5 textproc/py-jinja2/PLIST
--- a/textproc/py-jinja2/PLIST  Thu Nov 09 07:41:44 2017 +0000
+++ b/textproc/py-jinja2/PLIST  Thu Nov 09 07:52:17 2017 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.9 2017/05/04 20:23:31 adam Exp $
+@comment $NetBSD: PLIST,v 1.10 2017/11/09 07:52:17 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -12,9 +12,9 @@
 ${PYSITELIB}/jinja2/_compat.py
 ${PYSITELIB}/jinja2/_compat.pyc
 ${PYSITELIB}/jinja2/_compat.pyo
-${PYSITELIB}/jinja2/_stringdefs.py
-${PYSITELIB}/jinja2/_stringdefs.pyc
-${PYSITELIB}/jinja2/_stringdefs.pyo
+${PYSITELIB}/jinja2/_identifier.py
+${PYSITELIB}/jinja2/_identifier.pyc
+${PYSITELIB}/jinja2/_identifier.pyo
 ${PYSITELIB}/jinja2/asyncfilters.py
 ${PLIST.async}${PYSITELIB}/jinja2/asyncfilters.pyc
 ${PLIST.async}${PYSITELIB}/jinja2/asyncfilters.pyo
@@ -60,6 +60,9 @@
 ${PYSITELIB}/jinja2/meta.py
 ${PYSITELIB}/jinja2/meta.pyc
 ${PYSITELIB}/jinja2/meta.pyo
+${PYSITELIB}/jinja2/nativetypes.py
+${PYSITELIB}/jinja2/nativetypes.pyc
+${PYSITELIB}/jinja2/nativetypes.pyo
 ${PYSITELIB}/jinja2/nodes.py
 ${PYSITELIB}/jinja2/nodes.pyc
 ${PYSITELIB}/jinja2/nodes.pyo
diff -r eb651123bf13 -r 3fc1577ddaf5 textproc/py-jinja2/distinfo
--- a/textproc/py-jinja2/distinfo       Thu Nov 09 07:41:44 2017 +0000
+++ b/textproc/py-jinja2/distinfo       Thu Nov 09 07:52:17 2017 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.12 2017/05/04 18:11:09 adam Exp $
+$NetBSD: distinfo,v 1.13 2017/11/09 07:52:17 adam Exp $
 
-SHA1 (Jinja2-2.9.6.tar.gz) = 61b17399d098c0c110618fd4da7d33bd7031dd5e
-RMD160 (Jinja2-2.9.6.tar.gz) = 395f1804017144ac858cda98bd7f3a9f7dc83d14
-SHA512 (Jinja2-2.9.6.tar.gz) = b41b4e83bfe1ed2c5170e78bc6fb1ac3abb73df1b360c28e8011d430c3369efb49b923ede1f32c84c47c4bfa8a030ed24fc86700f2a8f777d54ee09c0fdee3c2
-Size (Jinja2-2.9.6.tar.gz) = 437659 bytes
+SHA1 (Jinja2-2.10.tar.gz) = 34b69e5caab12ee37b9df69df9018776c008b7b8
+RMD160 (Jinja2-2.10.tar.gz) = 552a79aaea2fa3e5b5211f89260fc8416cc28ce4
+SHA512 (Jinja2-2.10.tar.gz) = 0ea7371be67ffcf19e46dfd06523a45a0806e678a407d54f5f2f3e573982f0959cf82ec5d07b203670309928a62ef71109701ab16547a9bba2ebcdc178cb67f2
+Size (Jinja2-2.10.tar.gz) = 261631 bytes



Home | Main Index | Thread Index | Old Index