Hello community,
here is the log from the commit of package python-Jinja2.5670 for
openSUSE:13.2:Update checked in at 2016-10-06 11:48:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:13.2:Update/python-Jinja2.5670 (Old)
and /work/SRC/openSUSE:13.2:Update/.python-Jinja2.5670.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-Jinja2.5670"
Changes:
--------
New Changes file:
--- /dev/null 2016-09-15 12:42:18.240042505 +0200
+++
/work/SRC/openSUSE:13.2:Update/.python-Jinja2.5670.new/python-Jinja2.changes
2016-10-06 11:48:45.000000000 +0200
@@ -0,0 +1,241 @@
+-------------------------------------------------------------------
+Thu Nov 19 13:18:12 UTC 2015 - [email protected]
+
+- Update to 2.8
+ - Added `target` parameter to urlize function.
+ - Added support for `followsymlinks` to the file system loader.
+ - The truncate filter now counts the length.
+ - Added equalto filter that helps with select filters.
+ - Changed cache keys to use absolute file names if available
+ instead of load names.
+ - Fixed loop length calculation for some iterators.
+ - Changed how Jinja2 enforces strings to be native strings in
+ Python 2 to work when people break their default encoding.
+ - Added :func:`make_logging_undefined` which returns an undefined
+ object that logs failures into a logger.
+ - If unmarshalling of cached data fails the template will be
+ reloaded now.
+ - Implemented a block ``set`` tag.
+ - Default cache size was incrased to 400 from a low 50.
+ - Fixed ``is number`` test to accept long integers in all Python versions.
+ - Changed ``is number`` to accept Decimal as a number.
+ - Added a check for default arguments followed by non-default arguments. This
+ change makes ``{% macro m(x, y=1, z) %}...{% endmacro %}`` a syntax error.
The
+ previous behavior for this code was broken anyway (resulting in the default
+ value being applied to `y`).
+ - Add ability to use custom subclasses of ``jinja2.compiler.CodeGenerator``
and
+ ``jinja2.runtime.Context`` by adding two new attributes to the environment
+ (`code_generator_class` and `context_class`) (pull request ``#404``).
+ - added support for context/environment/evalctx decorator functions on
+ the finalize callback of the environment.
+ - escape query strings for urlencode properly. Previously slashes were not
+ escaped in that place.
+ - Add 'base' parameter to 'int' filter.
+- Tests are removed from the package (not distributed in the tar.gz)
+
+-------------------------------------------------------------------
+Wed Jul 22 14:20:45 UTC 2015 - [email protected]
+
+- Use %python_version over %py_ver: better portability to RHEL
+
+-------------------------------------------------------------------
+Fri Aug 15 12:30:58 UTC 2014 - [email protected]
+
+- run testsuite during build
+
+-------------------------------------------------------------------
+Fri Aug 15 12:29:35 UTC 2014 - [email protected]
+
+- adjust dependency to use up to date package name for python-MarkupSafe
+
+-------------------------------------------------------------------
+Tue Jul 15 10:41:00 UTC 2014 - [email protected]
+
+- Update to 2.7.3 (bnc#858239, CVE-2014-0012)
+ - Security issue: Corrected the security fix for the cache folder.
+ This fix was provided by RedHat.
+
+-------------------------------------------------------------------
+Thu May 8 21:21:45 UTC 2014 - [email protected]
+
+- fix package build (file selection missing)
+
+-------------------------------------------------------------------
+Sat Apr 26 19:38:39 UTC 2014 - [email protected]
+
+- avoid rebuildcycle with vim
+
+-------------------------------------------------------------------
+Mon Jan 13 13:18:53 UTC 2014 - [email protected]
+
+- update to 2.7.2:
+ - Prefix loader was not forwarding the locals properly to
+ inner loaders. This is now fixed.
+ - Security issue: Changed the default folder for the filesystem cache to be
+ user specific and read and write protected on UNIX systems. See `Debian
bug
+ 734747`_ for more information.
+
+-------------------------------------------------------------------
+Thu Oct 24 11:07:20 UTC 2013 - [email protected]
+
+- Require python-setuptools instead of distribute (upstreams merged)
+
+-------------------------------------------------------------------
+Mon Sep 2 15:03:25 UTC 2013 - [email protected]
+
+- Avoid "Recommends:" on old rpm distros
+
+-------------------------------------------------------------------
+Tue Aug 13 09:56:18 UTC 2013 - [email protected]
+
+- update to 2.7.1:
+ - Fixed a bug with ``call_filter`` not working properly on environment
+ and context filters.
+ - Fixed lack of Python 3 support for bytecode caches.
+ - Reverted support for defining blocks in included templates as this
+ broke existing templates for users.
+ - Fixed some warnings with hashing of undefineds and nodes if Python
+ is run with warnings for Python 3.
+ - Added support for properly hashing undefined objects.
+ - Fixed a bug with the title filter not working on already uppercase
+ strings.
+
+-------------------------------------------------------------------
+Thu Jul 11 14:37:06 UTC 2013 - [email protected]
+
+- update to 2.7:
+ - Choice and prefix loaders now dispatch source and template lookup
+ separately in order to work in combination with module loaders as
+ advertised.
+ - Fixed filesizeformat.
+ - Added a non-silent option for babel extraction.
+ - Added `urlencode` filter that automatically quotes values for
+ URL safe usage with utf-8 as only supported encoding. If applications
+ want to change this encoding they can override the filter.
+ - Added `keep-trailing-newline` configuration to environments and
+ templates to optionally preserve the final trailing newline.
+ - Accessing `last` on the loop context no longer causes the iterator
+ to be consumed into a list.
+ - Python requirement changed: 2.6, 2.7 or >= 3.3 are required now,
+ supported by same source code, using the "six" compatibility library.
+ - Allow `contextfunction` and other decorators to be applied to `__call__`.
+ - Added support for changing from newline to different signs in the
`wordwrap`
+ filter.
+ - Added support for ignoring memcache errors silently.
+ - Added support for keeping the trailing newline in templates.
+ - Added finer grained support for stripping whitespace on the left side
+ of blocks.
+ - Added `map`, `select`, `reject`, `selectattr` and `rejectattr`
+ filters.
+ - Added support for `loop.depth` to figure out how deep inside a recursive
+ loop the code is.
+ - Disabled py_compile for pypy and python 3.
+
+-------------------------------------------------------------------
+Mon Apr 30 13:06:58 UTC 2012 - [email protected]
+
+- Fix building python 3 package on openSUSE 11.4 x86_64
+
+-------------------------------------------------------------------
+Thu Apr 26 14:08:18 UTC 2012 - [email protected]
+
+- Add 2to3 buildrequires to allow for proper conversion of python 3
+ version
+
+-------------------------------------------------------------------
+Mon Apr 23 12:00:49 UTC 2012 - [email protected]
+
+- Add python 3 package
+- Simplify vim plugin packaging
+- Add suggests for vim and emacs in their respective
+ packages
+- Removed test for obsolete openSUSE version
+
+-------------------------------------------------------------------
+Thu Feb 23 13:44:50 UTC 2012 - [email protected]
+
+- Simplified macro usage
+
+-------------------------------------------------------------------
+Thu Sep 22 12:00:51 UTC 2011 - [email protected]
+
+- Split of 'vim' and 'emacs' sub-packages that contain syntax highlighting
+ support for both editors
+
+-------------------------------------------------------------------
+Thu Sep 22 09:13:19 UTC 2011 - [email protected]
+
+- Set license to BSD-3-Clause (SPDX style)
+- Require python-distribute instead of python-setuptools
+
+-------------------------------------------------------------------
+Tue Sep 20 12:57:24 UTC 2011 - [email protected]
+
+- Update to version 2.6:
+ * internal attributes now raise an internal attribute error now instead
+ of returning an undefined. This fixes problems when passing undefined
+ objects to Python semantics expecting APIs.
+ * traceback support now works properly for PyPy. (Tested with 1.4)
+ * implemented operator intercepting for sandboxed environments. This
+ allows application developers to disable builtin operators for better
+ security. (For instance limit the mathematical operators to actual
+ integers instead of longs)
+ * groupby filter now supports dotted notation for grouping by attributes
+ of attributes.
+ * scoped blocks not properly treat toplevel assignments and imports.
+ Previously an import suddenly "disappeared" in a scoped block.
+ * automatically detect newer Python interpreter versions before loading code
+ from bytecode caches to prevent segfaults on invalid opcodes. The segfault
+ in earlier Jinja2 versions here was not a Jinja2 bug but a limitation in
+ the underlying Python interpreter. If you notice Jinja2 segfaulting in
+ earlier versions after an upgrade of the Python interpreter you don't have
+ to upgrade, it's enough to flush the bytecode cache. This just no longer
+ makes this necessary, Jinja2 will automatically detect these cases now.
+ * the sum filter can now sum up values by attribute. This is a backwards
+ incompatible change. The argument to the filter previously was the
+ optional starting index which defaultes to zero. This now became the
+ second argument to the function because it's rarely used.
++++ 44 more lines (skipped)
++++ between /dev/null
++++ and
/work/SRC/openSUSE:13.2:Update/.python-Jinja2.5670.new/python-Jinja2.changes
New:
----
Jinja2-2.8.tar.gz
python-Jinja2.changes
python-Jinja2.spec
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-Jinja2.spec ++++++
#
# spec file for package python-Jinja2
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: python-Jinja2
Version: 2.8
Release: 0
Summary: A fast and easy to use template engine written in pure Python
License: BSD-3-Clause
Group: Development/Languages/Python
Url: http://jinja.pocoo.org/
Source:
http://pypi.python.org/packages/source/J/Jinja2/Jinja2-%{version}.tar.gz
BuildRequires: fdupes
BuildRequires: python-MarkupSafe
BuildRequires: python-devel
BuildRequires: python-setuptools
Provides: python-jinja2 = %{version}
Obsoletes: python-jinja2 < %{version}
Requires: python-MarkupSafe
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from
distutils.sysconfig import get_python_lib; print get_python_lib()")}
%else
BuildArch: noarch
%endif
%description
Jinja2 is a template engine written in pure Python. It provides a Django
inspired non-XML syntax but supports inline expressions and an optional
sandboxed environment. Here a small example of a Jinja template:
{% extends 'base.html' %}
{% block title %}Memberlist{% endblock %}
{% block content %}
<ul>
{% for user in users %}
<li><a href="{{ user.url }}">{{ user.username }}</a></li>
{% endfor %}
</ul>
{% endblock %}
%package vim
Summary: Jinja2 syntax files for Vim
License: BSD-3-Clause
Group: Productivity/Text/Editors
Requires: %{name} = %{version}
%if 0%{?suse_version} >= 1010
Recommends: vim
%endif
%description vim
Vim syntax highlighting scheme for Jinja2 templates.
%package emacs
Summary: Jinja2 syntax files for Emacs
License: GPL-2.0+
Group: Productivity/Text/Editors
Requires: %{name} = %{version}
%if 0%{?suse_version} >= 1010
Recommends: emacs
%endif
%description emacs
Emacs syntax highlighting scheme for Jinja2 templates.
%prep
%setup -q -n Jinja2-%{version}
%build
python setup.py build
sed -i 's/\r$//' LICENSE # Fix wrong EOL encoding
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
install -Dm644 ext/Vim/jinja.vim
%{buildroot}%{_datadir}/vim/site/syntax/jinja.vim # Install VIM syntax file
install -Dm644 ext/jinja.el %{buildroot}%{_datadir}/emacs/site-lisp/jinja.el #
Install Emacs syntax file
%if 0%{?suse_version}
%fdupes %{buildroot}%{_prefix}
%endif
%files
%defattr(-,root,root,-)
%doc AUTHORS CHANGES LICENSE artwork examples
%{python_sitelib}/jinja2
%{python_sitelib}/Jinja2-%{version}-py%{python_version}.egg-info
%files vim
%defattr(-,root,root,-)
%dir %{_datadir}/vim
%dir %{_datadir}/vim/site
%dir %{_datadir}/vim/site/syntax
%{_datadir}/vim/site/syntax/jinja.vim
%files emacs
%defattr(-,root,root,-)
%{_datadir}/emacs/site-lisp/jinja.el
%changelog