2011-07-20 20:33:49 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-Jinja2
|
|
|
|
#
|
- update to 2.11.1
* Fix a bug that prevented looking up a key after an attribute
({{ data.items[1:] }}) in an async template
* Drop support for Python 2.6, 3.3, and 3.4. This will be the last version
to support Python 2.7 and 3.5.
* Added a new ChainableUndefined class to support getitem and getattr
on an undefined object.
* Allow {%+ syntax (with NOP behavior) when lstrip_blocks is disabled.
* Added a default parameter for the map filter.
* Exclude environment globals from meta.find_undeclared_variables().
* Float literals can be written with scientific notation, like 2.56e-3.
* Int and float literals can be written with the ‘_’ separator
for legibility, like 12_345.
* Fix a bug causing deadlocks in LRUCache.setdefault
* The trim filter takes an optional string of characters to trim.
* A new jinja2.ext.debug extension adds a {% debug %} tag to quickly dump
the current context and available filters and tests.
* Lexing templates with large amounts of whitespace is much faster.
* Parentheses around comparisons are preserved, so {{ 2 * (3 < 5) }} outputs
“2” instead of “False”.
* Add new boolean, false, true, integer and float tests.
* The environment’s finalize function is only applied to the output of expressions
(constant or not), not static template data.
* When providing multiple paths to FileSystemLoader, a template can have
the same name as a directory.
* Always return Undefined when omitting the else clause in a {{ 'foo' if bar }}
expression, regardless of the environment’s undefined class. Omitting
the else clause is a valid shortcut and should not raise an error when using
StrictUndefined.
* Fix behavior of loop control variables such as length and revindex0 when
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Jinja2?expand=0&rev=76
2020-02-18 17:34:49 +00:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2011-07-20 20:33:49 +00:00
|
|
|
#
|
|
|
|
# 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.
|
2011-07-21 11:18:40 +00:00
|
|
|
|
2018-12-04 13:35:16 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-07-20 20:33:49 +00:00
|
|
|
#
|
|
|
|
|
2011-07-21 11:18:40 +00:00
|
|
|
|
2020-02-21 18:56:40 +00:00
|
|
|
%ifarch %{ix86} armv7l
|
|
|
|
%bcond_with test
|
2020-04-08 12:00:35 +00:00
|
|
|
%else
|
|
|
|
%bcond_without test
|
2020-02-21 18:56:40 +00:00
|
|
|
%endif
|
2017-04-05 05:32:48 +00:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
%define oldpython python
|
2011-07-20 20:33:49 +00:00
|
|
|
Name: python-Jinja2
|
2020-05-04 09:56:10 +00:00
|
|
|
Version: 2.11.2
|
2011-09-22 09:14:51 +00:00
|
|
|
Release: 0
|
2019-04-15 09:38:14 +00:00
|
|
|
Summary: A template engine written in pure Python
|
2011-09-22 09:14:51 +00:00
|
|
|
License: BSD-3-Clause
|
2019-10-07 13:42:06 +00:00
|
|
|
URL: https://github.com/pallets/jinja
|
2017-03-21 16:07:46 +00:00
|
|
|
Source: https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-%{version}.tar.gz
|
2019-02-19 05:56:36 +00:00
|
|
|
BuildRequires: %{python_module MarkupSafe >= 0.23}
|
|
|
|
BuildRequires: %{python_module pytest}
|
2017-04-05 05:32:48 +00:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2019-10-07 13:42:06 +00:00
|
|
|
BuildRequires: dos2unix
|
2012-02-23 13:44:43 +00:00
|
|
|
BuildRequires: fdupes
|
2017-04-05 05:32:48 +00:00
|
|
|
BuildRequires: python-rpm-macros
|
2018-12-04 17:15:42 +00:00
|
|
|
Requires: python-Babel >= 0.8
|
|
|
|
Requires: python-MarkupSafe >= 0.23
|
2020-04-10 10:39:49 +00:00
|
|
|
# Do not declare buildarch as the tests are arch specific
|
|
|
|
#BuildArch: noarch
|
2017-04-05 05:32:48 +00:00
|
|
|
%ifpython2
|
|
|
|
Provides: %{oldpython}-jinja2 = %{version}
|
|
|
|
Obsoletes: %{oldpython}-jinja2 < %{version}
|
|
|
|
%endif
|
|
|
|
%python_subpackages
|
2011-07-20 20:33:49 +00:00
|
|
|
|
|
|
|
%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
|
2019-10-07 13:42:06 +00:00
|
|
|
sandboxed environment.
|
2011-07-20 20:33:49 +00:00
|
|
|
|
2017-04-05 05:32:48 +00:00
|
|
|
%package -n python-Jinja2-vim
|
2011-09-22 12:02:16 +00:00
|
|
|
Summary: Jinja2 syntax files for Vim
|
2019-10-07 13:42:06 +00:00
|
|
|
%if 0%{?suse_version} || 0%{?fedora_version} >= 24
|
2012-04-25 08:26:10 +00:00
|
|
|
Recommends: vim
|
2018-02-27 21:51:01 +00:00
|
|
|
%endif
|
2011-09-22 12:02:16 +00:00
|
|
|
|
2017-04-05 05:32:48 +00:00
|
|
|
%description -n python-Jinja2-vim
|
2011-09-22 12:02:16 +00:00
|
|
|
Vim syntax highlighting scheme for Jinja2 templates.
|
|
|
|
|
|
|
|
|
2011-07-20 20:33:49 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n Jinja2-%{version}
|
2019-10-07 13:42:06 +00:00
|
|
|
dos2unix LICENSE.rst # Fix wrong EOL encoding
|
2011-07-20 20:33:49 +00:00
|
|
|
|
|
|
|
%build
|
2017-04-05 05:32:48 +00:00
|
|
|
%python_build
|
2011-07-20 20:33:49 +00:00
|
|
|
|
|
|
|
%install
|
2017-04-05 05:32:48 +00:00
|
|
|
%python_install
|
2011-09-22 12:02:16 +00:00
|
|
|
install -Dm644 ext/Vim/jinja.vim %{buildroot}%{_datadir}/vim/site/syntax/jinja.vim # Install VIM syntax file
|
2018-12-10 12:43:13 +00:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2011-07-20 20:33:49 +00:00
|
|
|
|
2019-02-19 05:56:36 +00:00
|
|
|
%check
|
2020-04-08 12:02:08 +00:00
|
|
|
%if %{with test}
|
2019-04-13 09:56:36 +00:00
|
|
|
%pytest
|
2020-02-21 18:56:40 +00:00
|
|
|
%endif
|
2019-02-19 05:56:36 +00:00
|
|
|
|
2017-04-05 05:32:48 +00:00
|
|
|
%files %{python_files}
|
2019-10-07 13:42:06 +00:00
|
|
|
%license LICENSE.rst
|
|
|
|
%doc README.rst CHANGES.rst artwork examples
|
2014-05-09 08:03:23 +00:00
|
|
|
%{python_sitelib}/jinja2
|
2015-07-22 14:50:36 +00:00
|
|
|
%{python_sitelib}/Jinja2-%{version}-py%{python_version}.egg-info
|
2011-07-20 20:33:49 +00:00
|
|
|
|
2017-04-05 05:32:48 +00:00
|
|
|
%files -n python-Jinja2-vim
|
2014-04-28 09:04:18 +00:00
|
|
|
%dir %{_datadir}/vim
|
|
|
|
%dir %{_datadir}/vim/site
|
|
|
|
%dir %{_datadir}/vim/site/syntax
|
2012-04-25 08:26:10 +00:00
|
|
|
%{_datadir}/vim/site/syntax/jinja.vim
|
2011-09-22 12:02:16 +00:00
|
|
|
|
2011-07-20 20:33:49 +00:00
|
|
|
%changelog
|