6145eda
%global srcname Jinja2
6145eda
1ad67ab
Name:           python-jinja2
83e53b6
Version:        2.11.2
1535c3b
Release:        2%{?dist}
1ad67ab
Summary:        General purpose template engine
1ad67ab
License:        BSD
d267117
URL:            https://palletsprojects.com/p/jinja/
6145eda
Source0:        %{pypi_source}
1ad67ab
6b13162
%if 0%{?fedora} || 0%{?rhel} > 7
4320e1d
# Enable python3 build by default
1ad67ab
%bcond_without python3
1ad67ab
%else
1ad67ab
%bcond_with python3
bb45b9d
%endif
5eeab15
1535c3b
%if 0%{?fedora} > 32 || 0%{?rhel} > 7
4320e1d
# Disable python2 build by default
4320e1d
%bcond_with python2
4320e1d
%else
4320e1d
%bcond_without python2
4320e1d
%endif
4320e1d
eb93b31
# Enable building without docs to avoid a circular dependency between this
eb93b31
# and python-sphinx:
1ad67ab
%bcond_without docs
eb93b31
13da8e6
%if 0%{?fedora} || 0%{?rhel} > 7
1ad67ab
%bcond_without async
1ad67ab
%else
1ad67ab
%bcond_with async
8e45c9e
%endif
8e45c9e
56175d1
BuildArch:      noarch
74dd073
5eeab15
%description
5eeab15
Jinja2 is a template engine written in pure Python.  It provides a
5eeab15
Django inspired non-XML syntax but supports inline expressions and an
5eeab15
optional sandboxed environment.
5eeab15
5eeab15
If you have any exposure to other text-based template languages, such
5eeab15
as Smarty or Django, you should feel right at home with Jinja2. It's
5eeab15
both designer and developer friendly by sticking to Python's
5eeab15
principles and adding functionality useful for templating
5eeab15
environments.
5eeab15
5eeab15
1ad67ab
%if %{with python2}
Orion Poplawski 62d3143
%package -n python2-jinja2
Orion Poplawski 62d3143
Summary:        General purpose template engine for python2
1ad67ab
BuildRequires:  python2-devel
1ad67ab
BuildRequires:  python2-setuptools
1ad67ab
BuildRequires:  python2-babel >= 0.8
Phil Wyett 8c81a7d
BuildRequires:  python2-markupsafe >= 0.23
Orion Poplawski 62d3143
Requires:       python2-babel >= 0.8
Phil Wyett 8c81a7d
Requires:       python2-markupsafe >= 0.23
b887c5b
Requires:       python2-setuptools
Orion Poplawski 62d3143
%{?python_provide:%python_provide python2-jinja2}
Orion Poplawski 62d3143
Orion Poplawski 62d3143
%description -n python2-jinja2
Orion Poplawski 62d3143
Jinja2 is a template engine written in pure Python.  It provides a
Orion Poplawski 62d3143
Django inspired non-XML syntax but supports inline expressions and an
Orion Poplawski 62d3143
optional sandboxed environment.
Orion Poplawski 62d3143
Orion Poplawski 62d3143
If you have any exposure to other text-based template languages, such
Orion Poplawski 62d3143
as Smarty or Django, you should feel right at home with Jinja2. It's
Orion Poplawski 62d3143
both designer and developer friendly by sticking to Python's
Orion Poplawski 62d3143
principles and adding functionality useful for templating
Orion Poplawski 62d3143
environments.
1ad67ab
%endif # with python2
Orion Poplawski 62d3143
1ad67ab
1ad67ab
%if %{with python3}
bb45b9d
%package -n python3-jinja2
Orion Poplawski 62d3143
Summary:        General purpose template engine for python3
1ad67ab
BuildRequires:  python3-devel
1ad67ab
BuildRequires:  python3-setuptools
1ad67ab
BuildRequires:  python3-babel >= 0.8
Phil Wyett 8c81a7d
BuildRequires:  python3-markupsafe >= 0.23
1ad67ab
BuildRequires:  python3-pytest
1ad67ab
%if %{with docs}
1ad67ab
BuildRequires:  %{_bindir}/sphinx-build-3
4ca346b
BuildRequires:  make
acdee87
BuildRequires:  python3-Pallets-Sphinx-Themes
acdee87
BuildRequires:  python3-sphinxcontrib-log-cabinet
acdee87
BuildRequires:  python3-sphinx-issues
1ad67ab
%endif
1ad67ab
Requires:       python3-babel >= 0.8
Phil Wyett 8c81a7d
Requires:       python3-markupsafe >= 0.23
b887c5b
Requires:       python3-setuptools
Orion Poplawski 62d3143
%{?python_provide:%python_provide python3-jinja2}
bb45b9d
bb45b9d
%description -n python3-jinja2
bb45b9d
Jinja2 is a template engine written in pure Python.  It provides a
bb45b9d
Django inspired non-XML syntax but supports inline expressions and an
bb45b9d
optional sandboxed environment.
bb45b9d
bb45b9d
If you have any exposure to other text-based template languages, such
bb45b9d
as Smarty or Django, you should feel right at home with Jinja2. It's
bb45b9d
both designer and developer friendly by sticking to Python's
bb45b9d
principles and adding functionality useful for templating
bb45b9d
environments.
1ad67ab
%endif # with python3
bb45b9d
bb45b9d
5eeab15
%prep
6145eda
%autosetup -n %{srcname}-%{version}
6145eda
fee00bb
# cleanup
6145eda
find . -name '*.pyo' -o -name '*.pyc' -delete
fee00bb
5eeab15
%build
1ad67ab
%if %{with python2}
Orion Poplawski 62d3143
%py2_build
1ad67ab
%endif # with python2
5eeab15
Phil Wyett 9a2954f
%if %{with python3}
Orion Poplawski 62d3143
%py3_build
1ad67ab
%if %{with docs}
d267117
make -C docs html PYTHONPATH=$(pwd)/src SPHINXBUILD=sphinx-build-3
6145eda
# remove hidden file
6145eda
rm -rf docs/_build/html/.buildinfo
1ad67ab
%endif # with docs
1ad67ab
%endif # with python3
bb45b9d
5eeab15
5eeab15
%install
1ad67ab
%if %{with python2}
Orion Poplawski 62d3143
%py2_install
5eeab15
8e45c9e
# these files are valid only on Python 3.6+
8e45c9e
rm %{buildroot}%{python2_sitelib}/jinja2/asyncsupport.py
8e45c9e
rm %{buildroot}%{python2_sitelib}/jinja2/asyncfilters.py
1ad67ab
%endif # with python2
8e45c9e
1ad67ab
%if %{with python3}
Orion Poplawski 62d3143
%py3_install
8e45c9e
1ad67ab
%if ! %{with async}
1ad67ab
# these files are valid only on Python 3.6+
8e45c9e
rm %{buildroot}%{python3_sitelib}/jinja2/asyncsupport.py
8e45c9e
rm %{buildroot}%{python3_sitelib}/jinja2/asyncfilters.py
1ad67ab
%endif # ! with async
1ad67ab
%endif # with python3
bb45b9d
5eeab15
74dd073
%check
1ad67ab
%if %{with python3}
d267117
PYTHONPATH=$(pwd)/src %{__python3} -m pytest tests
1ad67ab
%endif # with python3
bb45b9d
bb45b9d
1ad67ab
%if %{with python2}
Orion Poplawski 62d3143
%files -n python2-jinja2
6145eda
%doc CHANGES.rst
6145eda
%doc ext
6145eda
%doc examples
acdee87
%license LICENSE.rst
1ad67ab
%if %{with docs}
6145eda
%doc docs/_build/html
1ad67ab
%endif
2d369f8
%{python2_sitelib}/jinja2/
2d369f8
%{python2_sitelib}/Jinja2-*.egg-info/
1ad67ab
%endif # with python2
5eeab15
5eeab15
1ad67ab
%if %{with python3}
bb45b9d
%files -n python3-jinja2
6145eda
%doc CHANGES.rst
6145eda
%doc ext
6145eda
%doc examples
acdee87
%license LICENSE.rst
1ad67ab
%if %{with docs}
6145eda
%doc docs/_build/html
1ad67ab
%endif
2d369f8
%{python3_sitelib}/jinja2/
2d369f8
%{python3_sitelib}/Jinja2-*.egg-info/
1ad67ab
%endif # with python3
bb45b9d
bb45b9d
5eeab15
%changelog
1535c3b
* Wed May  6 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-2
1535c3b
- Drop python2 subpackage from F33 on (#1832057).
1535c3b
b887c5b
* Wed Apr 15 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-1
b887c5b
- Re-add dependency on python-setuptools.
b887c5b
83e53b6
* Wed Apr 15 2020 Dan Horák <dan[at]danny.cz> - 2.11.2-1
83e53b6
- Update to 2.11.2
83e53b6
2d369f8
* Mon Apr 06 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.11.1-2
2d369f8
- Drop unneeded R: pythonX-setuptools
2d369f8
d267117
* Sat Feb  8 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.1-1
d267117
- Update to 2.11.1.
d267117
f251b7f
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.3-3
f251b7f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
f251b7f
4ca346b
* Wed Nov 20 2019 Thomas Moschny <thomas.moschny@gmx.de> - 2.10.3-2
4ca346b
- Add missing BR on make.
4ca346b
acdee87
* Mon Nov 11 2019 Lumír Balhar <lbalhar@redhat.com> - 2.10.3-1
acdee87
- New upstream version (2.10.3)
acdee87
c215abd
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-5
c215abd
- Rebuilt for Python 3.8.0rc1 (#1748018)
c215abd
10cc679
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-4
10cc679
- Rebuilt for Python 3.8
10cc679
ea3a4f0
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-3
ea3a4f0
- Bootstrap for Python 3.8
ea3a4f0
ca6d0f0
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.1-2
ca6d0f0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
ca6d0f0
13da8e6
* Wed Apr 10 2019 Thomas Moschny <thomas.moschny@gmx.de> - 2.10.1-1
13da8e6
- Update to 2.10.1.
6145eda
- Update specfile.
13da8e6
Phil Wyett 9a2954f
* Wed Feb 27 2019 Phil Wyett <philwyett@kathenas.org> - 2.10-8
Phil Wyett 9a2954f
- Fix FTBS due to bad conditional
Phil Wyett 8c81a7d
- Add version requirement for markupsafe
Phil Wyett 9a2954f
894b499
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-7
894b499
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
894b499
7dff961
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-6
7dff961
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
7dff961
a4e9638
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 2.10-5
a4e9638
- Rebuilt for Python 3.7
a4e9638
791d281
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 2.10-4
791d281
- Bootstrap for Python 3.7
791d281
4320e1d
* Mon Apr 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.10-3
4320e1d
- Don't build the Python 2 subpackage on EL > 7
4320e1d
e1414d0
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-2
e1414d0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e1414d0
1ad67ab
* Thu Nov 16 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.10-1
1ad67ab
- Update to 2.10.
1ad67ab
- Use %%bcond.
1ad67ab
- Move BRs to their respective subpackages.
1ad67ab
aca2e17
* Fri Oct 20 2017 Troy Dawson <tdawson@redhat.com> - 2.9.6-4
aca2e17
- Really cleanup spec file conditionals
aca2e17
6b13162
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 2.9.6-3
6b13162
- Cleanup spec file conditionals
6b13162
b33ff75
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-2
b33ff75
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b33ff75
dd39a13
* Wed Apr  5 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.6-1
dd39a13
- Update to 2.9.6.
dd39a13
5130bca
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.5-2
5130bca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
5130bca
27ce420
* Sun Jan 29 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.5-1
27ce420
- Update to 2.9.5.
27ce420
8e45c9e
* Fri Jan 13 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.4-1
8e45c9e
- Update to 2.9.4.
8e45c9e
28bd251
* Sat Dec 31 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.1-1
28bd251
- Update to 2.8.1.
28bd251
91ed03f
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.8-8
91ed03f
- Rebuild for Python 3.6
91ed03f
Orion Poplawski 62d3143
* Thu Sep 22 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8-7
Orion Poplawski 62d3143
- Ship python2-jinja2 (bug #1378519)
Orion Poplawski 62d3143
- Modernize spec
Orion Poplawski 62d3143
f06b630
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-6
f06b630
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
f06b630
ba9ab38
* Fri Feb  5 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8-5
ba9ab38
- Do not call py.test, there are currently no tests in the tarball.
ba9ab38
b7571cb
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-4
b7571cb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b7571cb
Robert Kuska 7be0b85
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.8-3
Robert Kuska 7be0b85
- Rebuilt for Python3.5 rebuild
Robert Kuska 7be0b85
3a17bd4
* Mon Jul 27 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.8-2
3a17bd4
- Apply updates Python packaging guidelines.
3a17bd4
- Mark LICENSE with %%license.
3a17bd4
56175d1
* Sun Jul 26 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 2.8-1
56175d1
- Upstream 2.8
56175d1
49a7d7b
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-3
49a7d7b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
49a7d7b
Orion Poplawski 14bf553
* Tue Dec 2 2014 Orion Poplawski <orion@cora.nwra.com> - 2.7.3-2
Orion Poplawski 14bf553
- Add Requires python(3)-setuptools (bug #1168774)
Orion Poplawski 14bf553
2af52b3
* Sat Jun  7 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.3-1
2af52b3
- Update to 2.7.3.
2af52b3
- Reenable docs.
2af52b3
Orion Poplawski d8336e9
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
Orion Poplawski d8336e9
- Bootstrap (without docs) build for Python 3.4
Orion Poplawski d8336e9
f66679d
* Fri Jan 10 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.2-1
f66679d
- Update to 2.7.2.
f66679d
- Update python3 conditional.
f66679d
f17e963
* Fri Aug 16 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.1-1
f17e963
- Update to 2.7.1.
f17e963
5a51c16
* Thu Jul 25 2013 Orion Poplawski <orion@cora.nwra.com> - 2.7-1
5a51c16
- Update to 2.7
5a51c16
- spec cleanup
5a51c16
44de157
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-6
44de157
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
44de157
e049fb0
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.6-5
e049fb0
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
e049fb0
2c27157
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.6-4
2c27157
- remove rhel logic from with_python3 conditional
2c27157
df2cc5f
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-3
df2cc5f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
df2cc5f
acd8ee0
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-2
acd8ee0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
acd8ee0
b40d982
* Mon Jul 25 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.6-1
b40d982
- Update to 2.6.
b40d982
f022341
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.5-4
f022341
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f022341
aed144a
* Tue Jan 18 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.5-3
aed144a
- Re-enable html doc generation.
aed144a
- Remove conditional for F-12 and below.
aed144a
- Do not silently fail the testsuite for with py3k.
aed144a
e995790
* Mon Nov  1 2010 Michel Salim <salimma@fedoraproject.org> - 2.5.5-2
e995790
- Move python3 runtime requirements to python3 subpackage
e995790
92fc8ce
* Wed Oct 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.5-1
92fc8ce
- Update to 2.5.5.
92fc8ce
1985ab7
* Wed Aug 25 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-4
1985ab7
- Revert to previous behavior: fail the build on failed test.
1985ab7
- Rebuild for Python 3.2.
1985ab7
fcd70f5
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 2.5.2-3
fcd70f5
- %%ifnarch doesn't work on noarch package so don't fail the build on failed tests
fcd70f5
ce8fb02
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 2.5.2-2
ce8fb02
- disable the testsuite on s390(x)
ce8fb02
fee00bb
* Thu Aug 19 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-1
fee00bb
- Update to upstream version 2.5.2.
fee00bb
- Package depends on python-markupsafe and is noarch now.
fee00bb
90e527b
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-4
90e527b
- add explicit build-requirement on python-setuptools
155e9a9
- fix doc disablement for python3 subpackage
90e527b
eb93b31
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-3
eb93b31
- support disabling documentation in the build to break a circular build-time
eb93b31
dependency with python-sphinx; disable docs for now
eb93b31
55440cb
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-2
55440cb
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
55440cb
bb45b9d
* Tue Jul 13 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5-1
bb45b9d
- Update to upstream version 2.5.
56175d1
- Create python3 subpackage.
bb45b9d
- Minor specfile fixes.
bb45b9d
- Add examples directory.
bb45b9d
- Thanks to Gareth Armstrong for additional hints.
bb45b9d
d3e47db
* Wed Apr 21 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.1-1
d3e47db
- Update to 2.4.1.
d3e47db
02ea4e7
* Tue Apr 13 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.4-1
02ea4e7
- Update to 2.4.
02ea4e7
74dd073
* Tue Feb 23 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
74dd073
- Update to 2.3.1.
74dd073
- Docs are built using Sphinx now.
74dd073
- Run the testsuite.
74dd073
80fe387
* Sat Sep 19 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
80fe387
- Update to 2.2.1, mainly a bugfix release.
80fe387
- Remove patch no longer needed.
80fe387
- Remove conditional for FC-8.
80fe387
- Compilation of speedup module has to be explicitly requested now.
80fe387
aee38bb
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-3
aee38bb
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
aee38bb
14cebbf
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
14cebbf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
14cebbf
77bcd28
* Sat Jan 10 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
77bcd28
- Update to 2.1.1 (bugfix release).
77bcd28
c65d540
* Thu Dec 18 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.1-1
c65d540
- Update to 2.1, which fixes a number of bugs.
c65d540
  See http://jinja.pocoo.org/2/documentation/changelog#version-2-1.
c65d540
56f37aa
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0-3
56f37aa
- Rebuild for Python 2.6
56f37aa
5eeab15
* Tue Jul 22 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-2
5eeab15
- Use rpm buildroot macro instead of RPM_BUILD_ROOT.
5eeab15
5eeab15
* Sun Jul 20 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-1
5eeab15
- Upstream released 2.0.
5eeab15
5eeab15
* Sun Jun 29 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-0.1.rc1
5eeab15
- Modified specfile from the existing python-jinja package.