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