7c12ae
%global srcname Jinja2
7c12ae
7c12ae
Name:           python-jinja2
7c12ae
Version:        2.11.3
7c12ae
Release:        4%{?dist}
7c12ae
Summary:        General purpose template engine
7c12ae
License:        BSD
7c12ae
URL:            https://palletsprojects.com/p/jinja/
7c12ae
Source0:        %{pypi_source}
7c12ae
# cherry-picked patches to build with Python 3.10 (#1907442)
7c12ae
Patch1:         0001-add-linetable-to-the-preserved-CodeType-attributes-1.patch
7c12ae
Patch2:         0002-native_concat-pass-only-strings-to-literal_eval.patch
7c12ae
7c12ae
%if 0%{?fedora} || 0%{?rhel} > 7
7c12ae
# Enable python3 build by default
7c12ae
%bcond_without python3
7c12ae
%else
7c12ae
%bcond_with python3
7c12ae
%endif
7c12ae
7c12ae
%if 0%{?fedora} > 33 || 0%{?rhel} > 7
7c12ae
# Disable python2 build by default
7c12ae
%bcond_with python2
7c12ae
%else
7c12ae
%bcond_without python2
7c12ae
%endif
7c12ae
7c12ae
# No docs in RHEL 9: https://bugzilla.redhat.com/show_bug.cgi?id=1944567
7c12ae
%bcond_with docs
7c12ae
7c12ae
%if 0%{?fedora} || 0%{?rhel} > 7
7c12ae
%bcond_without async
7c12ae
%else
7c12ae
%bcond_with async
7c12ae
%endif
7c12ae
7c12ae
BuildArch:      noarch
7c12ae
7c12ae
%description
7c12ae
Jinja2 is a template engine written in pure Python.  It provides a
7c12ae
Django inspired non-XML syntax but supports inline expressions and an
7c12ae
optional sandboxed environment.
7c12ae
7c12ae
If you have any exposure to other text-based template languages, such
7c12ae
as Smarty or Django, you should feel right at home with Jinja2. It's
7c12ae
both designer and developer friendly by sticking to Python's
7c12ae
principles and adding functionality useful for templating
7c12ae
environments.
7c12ae
7c12ae
7c12ae
%if %{with python2}
7c12ae
%package -n python2-jinja2
7c12ae
Summary:        General purpose template engine for python2
7c12ae
BuildRequires:  python2-devel
7c12ae
BuildRequires:  python2-setuptools
7c12ae
BuildRequires:  python2-babel >= 0.8
7c12ae
BuildRequires:  python2-markupsafe >= 0.23
7c12ae
Requires:       python2-babel >= 0.8
7c12ae
Requires:       python2-markupsafe >= 0.23
7c12ae
Requires:       python2-setuptools
7c12ae
%{?python_provide:%python_provide python2-jinja2}
7c12ae
7c12ae
%description -n python2-jinja2
7c12ae
Jinja2 is a template engine written in pure Python.  It provides a
7c12ae
Django inspired non-XML syntax but supports inline expressions and an
7c12ae
optional sandboxed environment.
7c12ae
7c12ae
If you have any exposure to other text-based template languages, such
7c12ae
as Smarty or Django, you should feel right at home with Jinja2. It's
7c12ae
both designer and developer friendly by sticking to Python's
7c12ae
principles and adding functionality useful for templating
7c12ae
environments.
7c12ae
%endif # with python2
7c12ae
7c12ae
7c12ae
%if %{with python3}
7c12ae
%package -n python3-jinja2
7c12ae
Summary:        General purpose template engine for python3
7c12ae
BuildRequires:  python3-devel
7c12ae
BuildRequires:  python3-setuptools
7c12ae
BuildRequires:  python3-babel >= 0.8
7c12ae
BuildRequires:  python3-markupsafe >= 0.23
7c12ae
BuildRequires:  python3-pytest
7c12ae
%if %{with docs}
7c12ae
BuildRequires:  %{_bindir}/sphinx-build-3
7c12ae
BuildRequires:  make
7c12ae
BuildRequires:  python3-Pallets-Sphinx-Themes
7c12ae
BuildRequires:  python3-sphinxcontrib-log-cabinet
7c12ae
BuildRequires:  python3-sphinx-issues
7c12ae
%endif
7c12ae
Requires:       python3-babel >= 0.8
7c12ae
Requires:       python3-markupsafe >= 0.23
7c12ae
Requires:       python3-setuptools
7c12ae
%{?python_provide:%python_provide python3-jinja2}
7c12ae
7c12ae
%description -n python3-jinja2
7c12ae
Jinja2 is a template engine written in pure Python.  It provides a
7c12ae
Django inspired non-XML syntax but supports inline expressions and an
7c12ae
optional sandboxed environment.
7c12ae
7c12ae
If you have any exposure to other text-based template languages, such
7c12ae
as Smarty or Django, you should feel right at home with Jinja2. It's
7c12ae
both designer and developer friendly by sticking to Python's
7c12ae
principles and adding functionality useful for templating
7c12ae
environments.
7c12ae
%endif # with python3
7c12ae
7c12ae
7c12ae
%prep
7c12ae
%autosetup -p1 -n %{srcname}-%{version}
7c12ae
7c12ae
# cleanup
7c12ae
find . -name '*.pyo' -o -name '*.pyc' -delete
7c12ae
7c12ae
%build
7c12ae
%if %{with python2}
7c12ae
%py2_build
7c12ae
%endif # with python2
7c12ae
7c12ae
%if %{with python3}
7c12ae
%py3_build
7c12ae
%if %{with docs}
7c12ae
make -C docs html PYTHONPATH=$(pwd)/src SPHINXBUILD=sphinx-build-3
7c12ae
# remove hidden file
7c12ae
rm -rf docs/_build/html/.buildinfo
7c12ae
%endif # with docs
7c12ae
%endif # with python3
7c12ae
7c12ae
7c12ae
%install
7c12ae
%if %{with python2}
7c12ae
%py2_install
7c12ae
7c12ae
# these files are valid only on Python 3.6+
7c12ae
rm %{buildroot}%{python2_sitelib}/jinja2/asyncsupport.py
7c12ae
rm %{buildroot}%{python2_sitelib}/jinja2/asyncfilters.py
7c12ae
%endif # with python2
7c12ae
7c12ae
%if %{with python3}
7c12ae
%py3_install
7c12ae
7c12ae
%if ! %{with async}
7c12ae
# these files are valid only on Python 3.6+
7c12ae
rm %{buildroot}%{python3_sitelib}/jinja2/asyncsupport.py
7c12ae
rm %{buildroot}%{python3_sitelib}/jinja2/asyncfilters.py
7c12ae
%endif # ! with async
7c12ae
%endif # with python3
7c12ae
7c12ae
7c12ae
%check
7c12ae
%if %{with python3}
7c12ae
PYTHONPATH=$(pwd)/src %{__python3} -m pytest tests
7c12ae
%endif # with python3
7c12ae
7c12ae
7c12ae
%if %{with python2}
7c12ae
%files -n python2-jinja2
7c12ae
%doc CHANGES.rst
7c12ae
%doc ext
7c12ae
%doc examples
7c12ae
%license LICENSE.rst
7c12ae
%if %{with docs}
7c12ae
%doc docs/_build/html
7c12ae
%endif
7c12ae
%{python2_sitelib}/jinja2/
7c12ae
%{python2_sitelib}/Jinja2-*.egg-info/
7c12ae
%endif # with python2
7c12ae
7c12ae
7c12ae
%if %{with python3}
7c12ae
%files -n python3-jinja2
7c12ae
%doc CHANGES.rst
7c12ae
%doc ext
7c12ae
%doc examples
7c12ae
%license LICENSE.rst
7c12ae
%if %{with docs}
7c12ae
%doc docs/_build/html
7c12ae
%endif
7c12ae
%{python3_sitelib}/jinja2/
7c12ae
%{python3_sitelib}/Jinja2-*.egg-info/
7c12ae
%endif # with python3
7c12ae
7c12ae
7c12ae
%changelog
7c12ae
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.11.3-4
7c12ae
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
7c12ae
  Related: rhbz#1991688
7c12ae
7c12ae
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.11.3-3
7c12ae
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
7c12ae
7c12ae
* Tue Apr 13 2021 Miro Hrončok <mhroncok@redhat.com> - 2.11.3-2
7c12ae
- Disable documentation
7c12ae
- Resolves: rhbz#1944567
7c12ae
7c12ae
* Sat Feb  6 2021 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.3-1
7c12ae
- Update to 2.11.3.
7c12ae
- Add patches to build with Python 3.10 (#1907442).
7c12ae
7c12ae
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.2-8
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
7c12ae
7c12ae
* Mon Dec 21 2020 Miro Hrončok <mhroncok@redhat.com> - 2.11.2-7
7c12ae
- Drop python2-jinja2 on Fedora 34+
7c12ae
7c12ae
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.2-6
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
7c12ae
7c12ae
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 2.11.2-5
7c12ae
- Rebuilt for Python 3.9
7c12ae
7c12ae
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 2.11.2-4
7c12ae
- Bootstrap for Python 3.9
7c12ae
7c12ae
* Fri May 22 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-3
7c12ae
- Re-add python2 subpackage (#1832057).
7c12ae
7c12ae
* Wed May  6 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-2
7c12ae
- Drop python2 subpackage from F33 on (#1832057).
7c12ae
7c12ae
* Wed Apr 15 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-1
7c12ae
- Re-add dependency on python-setuptools.
7c12ae
7c12ae
* Wed Apr 15 2020 Dan Horák <dan[at]danny.cz> - 2.11.2-1
7c12ae
- Update to 2.11.2
7c12ae
7c12ae
* Mon Apr 06 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.11.1-2
7c12ae
- Drop unneeded R: pythonX-setuptools
7c12ae
7c12ae
* Sat Feb  8 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.1-1
7c12ae
- Update to 2.11.1.
7c12ae
7c12ae
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.3-3
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
7c12ae
7c12ae
* Wed Nov 20 2019 Thomas Moschny <thomas.moschny@gmx.de> - 2.10.3-2
7c12ae
- Add missing BR on make.
7c12ae
7c12ae
* Mon Nov 11 2019 Lumír Balhar <lbalhar@redhat.com> - 2.10.3-1
7c12ae
- New upstream version (2.10.3)
7c12ae
7c12ae
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-5
7c12ae
- Rebuilt for Python 3.8.0rc1 (#1748018)
7c12ae
7c12ae
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-4
7c12ae
- Rebuilt for Python 3.8
7c12ae
7c12ae
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-3
7c12ae
- Bootstrap for Python 3.8
7c12ae
7c12ae
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.1-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
7c12ae
7c12ae
* Wed Apr 10 2019 Thomas Moschny <thomas.moschny@gmx.de> - 2.10.1-1
7c12ae
- Update to 2.10.1.
7c12ae
- Update specfile.
7c12ae
7c12ae
* Wed Feb 27 2019 Phil Wyett <philwyett@kathenas.org> - 2.10-8
7c12ae
- Fix FTBS due to bad conditional
7c12ae
- Add version requirement for markupsafe
7c12ae
7c12ae
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-7
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
7c12ae
7c12ae
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-6
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
7c12ae
7c12ae
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 2.10-5
7c12ae
- Rebuilt for Python 3.7
7c12ae
7c12ae
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 2.10-4
7c12ae
- Bootstrap for Python 3.7
7c12ae
7c12ae
* Mon Apr 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.10-3
7c12ae
- Don't build the Python 2 subpackage on EL > 7
7c12ae
7c12ae
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
7c12ae
7c12ae
* Thu Nov 16 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.10-1
7c12ae
- Update to 2.10.
7c12ae
- Use %%bcond.
7c12ae
- Move BRs to their respective subpackages.
7c12ae
7c12ae
* Fri Oct 20 2017 Troy Dawson <tdawson@redhat.com> - 2.9.6-4
7c12ae
- Really cleanup spec file conditionals
7c12ae
7c12ae
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 2.9.6-3
7c12ae
- Cleanup spec file conditionals
7c12ae
7c12ae
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
7c12ae
7c12ae
* Wed Apr  5 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.6-1
7c12ae
- Update to 2.9.6.
7c12ae
7c12ae
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.5-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
7c12ae
7c12ae
* Sun Jan 29 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.5-1
7c12ae
- Update to 2.9.5.
7c12ae
7c12ae
* Fri Jan 13 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.4-1
7c12ae
- Update to 2.9.4.
7c12ae
7c12ae
* Sat Dec 31 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.1-1
7c12ae
- Update to 2.8.1.
7c12ae
7c12ae
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.8-8
7c12ae
- Rebuild for Python 3.6
7c12ae
7c12ae
* Thu Sep 22 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8-7
7c12ae
- Ship python2-jinja2 (bug #1378519)
7c12ae
- Modernize spec
7c12ae
7c12ae
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-6
7c12ae
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
7c12ae
7c12ae
* Fri Feb  5 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8-5
7c12ae
- Do not call py.test, there are currently no tests in the tarball.
7c12ae
7c12ae
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-4
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
7c12ae
7c12ae
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.8-3
7c12ae
- Rebuilt for Python3.5 rebuild
7c12ae
7c12ae
* Mon Jul 27 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.8-2
7c12ae
- Apply updates Python packaging guidelines.
7c12ae
- Mark LICENSE with %%license.
7c12ae
7c12ae
* Sun Jul 26 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 2.8-1
7c12ae
- Upstream 2.8
7c12ae
7c12ae
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-3
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
7c12ae
7c12ae
* Tue Dec 2 2014 Orion Poplawski <orion@cora.nwra.com> - 2.7.3-2
7c12ae
- Add Requires python(3)-setuptools (bug #1168774)
7c12ae
7c12ae
* Sat Jun  7 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.3-1
7c12ae
- Update to 2.7.3.
7c12ae
- Reenable docs.
7c12ae
7c12ae
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
7c12ae
- Bootstrap (without docs) build for Python 3.4
7c12ae
7c12ae
* Fri Jan 10 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.2-1
7c12ae
- Update to 2.7.2.
7c12ae
- Update python3 conditional.
7c12ae
7c12ae
* Fri Aug 16 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.1-1
7c12ae
- Update to 2.7.1.
7c12ae
7c12ae
* Thu Jul 25 2013 Orion Poplawski <orion@cora.nwra.com> - 2.7-1
7c12ae
- Update to 2.7
7c12ae
- spec cleanup
7c12ae
7c12ae
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-6
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
7c12ae
7c12ae
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.6-5
7c12ae
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
7c12ae
7c12ae
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.6-4
7c12ae
- remove rhel logic from with_python3 conditional
7c12ae
7c12ae
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-3
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
7c12ae
7c12ae
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
7c12ae
7c12ae
* Mon Jul 25 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.6-1
7c12ae
- Update to 2.6.
7c12ae
7c12ae
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.5-4
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
7c12ae
7c12ae
* Tue Jan 18 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.5-3
7c12ae
- Re-enable html doc generation.
7c12ae
- Remove conditional for F-12 and below.
7c12ae
- Do not silently fail the testsuite for with py3k.
7c12ae
7c12ae
* Mon Nov  1 2010 Michel Salim <salimma@fedoraproject.org> - 2.5.5-2
7c12ae
- Move python3 runtime requirements to python3 subpackage
7c12ae
7c12ae
* Wed Oct 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.5-1
7c12ae
- Update to 2.5.5.
7c12ae
7c12ae
* Wed Aug 25 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-4
7c12ae
- Revert to previous behavior: fail the build on failed test.
7c12ae
- Rebuild for Python 3.2.
7c12ae
7c12ae
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 2.5.2-3
7c12ae
- %%ifnarch doesn't work on noarch package so don't fail the build on failed tests
7c12ae
7c12ae
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 2.5.2-2
7c12ae
- disable the testsuite on s390(x)
7c12ae
7c12ae
* Thu Aug 19 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-1
7c12ae
- Update to upstream version 2.5.2.
7c12ae
- Package depends on python-markupsafe and is noarch now.
7c12ae
7c12ae
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-4
7c12ae
- add explicit build-requirement on python-setuptools
7c12ae
- fix doc disablement for python3 subpackage
7c12ae
7c12ae
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-3
7c12ae
- support disabling documentation in the build to break a circular build-time
7c12ae
dependency with python-sphinx; disable docs for now
7c12ae
7c12ae
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
7c12ae
7c12ae
* Tue Jul 13 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5-1
7c12ae
- Update to upstream version 2.5.
7c12ae
- Create python3 subpackage.
7c12ae
- Minor specfile fixes.
7c12ae
- Add examples directory.
7c12ae
- Thanks to Gareth Armstrong for additional hints.
7c12ae
7c12ae
* Wed Apr 21 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.1-1
7c12ae
- Update to 2.4.1.
7c12ae
7c12ae
* Tue Apr 13 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.4-1
7c12ae
- Update to 2.4.
7c12ae
7c12ae
* Tue Feb 23 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
7c12ae
- Update to 2.3.1.
7c12ae
- Docs are built using Sphinx now.
7c12ae
- Run the testsuite.
7c12ae
7c12ae
* Sat Sep 19 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
7c12ae
- Update to 2.2.1, mainly a bugfix release.
7c12ae
- Remove patch no longer needed.
7c12ae
- Remove conditional for FC-8.
7c12ae
- Compilation of speedup module has to be explicitly requested now.
7c12ae
7c12ae
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-3
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
7c12ae
7c12ae
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
7c12ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
7c12ae
7c12ae
* Sat Jan 10 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
7c12ae
- Update to 2.1.1 (bugfix release).
7c12ae
7c12ae
* Thu Dec 18 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.1-1
7c12ae
- Update to 2.1, which fixes a number of bugs.
7c12ae
  See http://jinja.pocoo.org/2/documentation/changelog#version-2-1.
7c12ae
7c12ae
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0-3
7c12ae
- Rebuild for Python 2.6
7c12ae
7c12ae
* Tue Jul 22 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-2
7c12ae
- Use rpm buildroot macro instead of RPM_BUILD_ROOT.
7c12ae
7c12ae
* Sun Jul 20 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-1
7c12ae
- Upstream released 2.0.
7c12ae
7c12ae
* Sun Jun 29 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-0.1.rc1
7c12ae
- Modified specfile from the existing python-jinja package.