2024-05-07 11:38:16 +00:00
|
|
|
%global srcname jinja2
|
2019-04-11 05:54:06 +00:00
|
|
|
|
2017-11-16 00:49:34 +00:00
|
|
|
Name: python-jinja2
|
2024-05-07 11:38:16 +00:00
|
|
|
Version: 3.1.4
|
2024-10-29 16:06:39 +00:00
|
|
|
Release: 3%{?dist}
|
2017-11-16 00:49:34 +00:00
|
|
|
Summary: General purpose template engine
|
2023-08-08 13:07:41 +00:00
|
|
|
License: BSD-3-Clause
|
2020-02-08 17:27:48 +00:00
|
|
|
URL: https://palletsprojects.com/p/jinja/
|
2023-05-01 22:21:00 +00:00
|
|
|
Source0: %{pypi_source %srcname}
|
2021-11-04 17:18:44 +00:00
|
|
|
|
2010-07-22 04:37:25 +00:00
|
|
|
# Enable building without docs to avoid a circular dependency between this
|
|
|
|
# and python-sphinx:
|
2023-08-01 06:55:56 +00:00
|
|
|
%if 0%{?rhel} || 0%{?flatpak}
|
2023-05-16 21:04:21 +00:00
|
|
|
%bcond_with docs
|
|
|
|
%else
|
2017-11-16 00:49:34 +00:00
|
|
|
%bcond_without docs
|
2023-05-16 21:04:21 +00:00
|
|
|
%endif
|
2010-07-22 04:37:25 +00:00
|
|
|
|
2015-07-26 22:15:37 +00:00
|
|
|
BuildArch: noarch
|
2010-02-23 22:48:10 +00:00
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
%global _description %{expand:
|
|
|
|
Jinja2 is a template engine written in pure Python. It provides a
|
2016-09-22 16:19:11 +00:00
|
|
|
Django inspired non-XML syntax but supports inline expressions and an
|
|
|
|
optional sandboxed environment.
|
|
|
|
|
|
|
|
If you have any exposure to other text-based template languages, such
|
|
|
|
as Smarty or Django, you should feel right at home with Jinja2. It's
|
|
|
|
both designer and developer friendly by sticking to Python's
|
|
|
|
principles and adding functionality useful for templating
|
2021-11-15 20:11:41 +00:00
|
|
|
environments.}
|
2016-09-22 16:19:11 +00:00
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
%description %_description
|
2017-11-16 00:49:34 +00:00
|
|
|
|
2010-07-13 22:21:52 +00:00
|
|
|
%package -n python3-jinja2
|
2021-11-15 20:11:41 +00:00
|
|
|
Summary: %{summary}
|
2017-11-16 00:49:34 +00:00
|
|
|
BuildRequires: python3-devel
|
2021-11-15 20:46:48 +00:00
|
|
|
BuildRequires: python3-pytest
|
2017-11-16 00:49:34 +00:00
|
|
|
%if %{with docs}
|
|
|
|
BuildRequires: %{_bindir}/sphinx-build-3
|
2019-11-20 07:22:32 +00:00
|
|
|
BuildRequires: make
|
2021-11-15 20:25:57 +00:00
|
|
|
BuildRequires: python3-Pallets-Sphinx-Themes >= 2
|
2019-11-11 08:05:32 +00:00
|
|
|
BuildRequires: python3-sphinxcontrib-log-cabinet
|
|
|
|
BuildRequires: python3-sphinx-issues
|
2017-11-16 00:49:34 +00:00
|
|
|
%endif
|
2010-07-13 22:21:52 +00:00
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
%description -n python3-jinja2 %_description
|
2021-11-10 08:38:20 +00:00
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
%pyproject_extras_subpkg -n python3-jinja2 i18n
|
2010-07-13 22:21:52 +00:00
|
|
|
|
|
|
|
|
2008-07-24 07:56:09 +00:00
|
|
|
%prep
|
2021-02-06 13:00:59 +00:00
|
|
|
%autosetup -p1 -n %{srcname}-%{version}
|
2019-04-11 05:54:06 +00:00
|
|
|
|
2022-11-11 17:15:31 +00:00
|
|
|
# Fix for https://github.com/pallets/jinja/issues/1758
|
|
|
|
sed -i "s/def teardown/def teardown_method/" tests/test_loader.py
|
2010-08-19 00:32:12 +00:00
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
%generate_buildrequires
|
|
|
|
%pyproject_buildrequires -x i18n
|
2008-07-24 07:56:09 +00:00
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%pyproject_wheel
|
2017-11-16 00:49:34 +00:00
|
|
|
%if %{with docs}
|
2020-02-08 17:27:48 +00:00
|
|
|
make -C docs html PYTHONPATH=$(pwd)/src SPHINXBUILD=sphinx-build-3
|
2019-04-11 05:54:06 +00:00
|
|
|
# remove hidden file
|
2021-11-15 20:11:41 +00:00
|
|
|
rm -rvf docs/_build/html/.buildinfo
|
|
|
|
%endif
|
2010-07-13 22:21:52 +00:00
|
|
|
|
2008-07-24 07:56:09 +00:00
|
|
|
|
|
|
|
%install
|
2021-11-15 20:11:41 +00:00
|
|
|
%pyproject_install
|
|
|
|
%pyproject_save_files jinja2
|
2010-07-13 22:21:52 +00:00
|
|
|
|
2008-07-24 07:56:09 +00:00
|
|
|
|
2010-02-23 22:48:10 +00:00
|
|
|
%check
|
2021-11-15 20:11:41 +00:00
|
|
|
%pytest tests
|
2010-07-13 22:21:52 +00:00
|
|
|
|
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
%files -n python3-jinja2 -f %{pyproject_files}
|
2024-05-07 11:38:16 +00:00
|
|
|
%doc README.md
|
|
|
|
%doc docs/examples
|
|
|
|
%license LICENSE.txt
|
2017-11-16 00:49:34 +00:00
|
|
|
%if %{with docs}
|
2019-04-11 05:54:06 +00:00
|
|
|
%doc docs/_build/html
|
2017-11-16 00:49:34 +00:00
|
|
|
%endif
|
2010-07-13 22:21:52 +00:00
|
|
|
|
|
|
|
|
2008-07-24 07:56:09 +00:00
|
|
|
%changelog
|
2024-10-29 16:06:39 +00:00
|
|
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 3.1.4-3
|
|
|
|
- Bump release for October 2024 mass rebuild:
|
|
|
|
Resolves: RHEL-64018
|
|
|
|
|
2024-06-24 16:17:50 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 3.1.4-2
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-05-07 11:38:16 +00:00
|
|
|
* Tue May 07 2024 Lumír Balhar <lbalhar@redhat.com> - 3.1.4-1
|
|
|
|
- Update to 3.1.4
|
|
|
|
Resolves: RHEL-36213
|
|
|
|
|
2024-01-26 05:41:08 +00:00
|
|
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-22 02:45:08 +00:00
|
|
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-11 16:57:45 +00:00
|
|
|
* Thu Jan 11 2024 Michel Lind <salimma@fedoraproject.org> - 3.1.3-1
|
|
|
|
- Update to 3.1.3 to fix CVE-2024-22195
|
|
|
|
|
2023-08-08 13:07:41 +00:00
|
|
|
* Tue Aug 08 2023 Karolina Surma <ksurma@redhat.com> - 3.1.2-6
|
|
|
|
- Declare the license as an SPDX expression
|
|
|
|
|
2023-07-21 10:44:21 +00:00
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-06-16 06:18:06 +00:00
|
|
|
* Fri Jun 16 2023 Python Maint <python-maint@redhat.com> - 3.1.2-4
|
|
|
|
- Rebuilt for Python 3.12
|
|
|
|
|
2023-06-13 22:03:28 +00:00
|
|
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 3.1.2-3
|
|
|
|
- Bootstrap for Python 3.12
|
|
|
|
|
2023-05-16 21:04:21 +00:00
|
|
|
* Fri May 19 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 3.1.2-2
|
|
|
|
- Disable docs by default in RHEL builds
|
|
|
|
|
2023-05-01 22:21:00 +00:00
|
|
|
* Mon May 01 2023 Sandro Mani <manisandro@gmail.com> - 3.1.2-1
|
|
|
|
- Update to 3.1.2
|
|
|
|
|
2023-01-20 14:08:29 +00:00
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.3-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-11-11 17:15:31 +00:00
|
|
|
* Mon Nov 14 2022 Lumír Balhar <lbalhar@redhat.com> - 3.0.3-6
|
|
|
|
- Fix compatibility with pytest 7.2
|
|
|
|
|
2022-07-22 19:29:03 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.3-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-06-13 16:40:52 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 3.0.3-4
|
|
|
|
- Rebuilt for Python 3.11
|
|
|
|
|
2022-06-13 15:36:16 +00:00
|
|
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 3.0.3-3
|
|
|
|
- Bootstrap for Python 3.11
|
|
|
|
|
2022-01-21 12:57:26 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-11-15 20:25:57 +00:00
|
|
|
* Mon Nov 15 2021 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.3-1
|
|
|
|
- Update to 3.0.3.
|
|
|
|
|
2021-11-15 20:11:41 +00:00
|
|
|
* Mon Nov 15 2021 Thomas Moschny <thomas.moschny@gmx.de> - 3.0.1-4
|
|
|
|
- Use new Python packaging guidelines.
|
|
|
|
- Jinja2 version 3 does not support Python 2 anymore.
|
|
|
|
|
2021-11-10 08:38:20 +00:00
|
|
|
* Wed Nov 10 2021 Karolina Surma <ksurma@redhat.com> - 3.0.1-3
|
|
|
|
- Don't explicitly declare runtime dependencies when building for Python 3
|
|
|
|
- Declare jinja2+i18n extra to map the upstream package structure
|
|
|
|
|
2021-07-23 07:01:44 +00:00
|
|
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-06-22 21:03:10 +00:00
|
|
|
* Tue Jun 22 2021 Lumír Balhar <lbalhar@redhat.com> - 3.0.1-1
|
|
|
|
- Update to 3.0.1
|
|
|
|
- Resolves: rhbz#1961862
|
|
|
|
|
2021-06-04 08:16:10 +00:00
|
|
|
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.11.3-3
|
|
|
|
- Rebuilt for Python 3.10
|
|
|
|
|
2021-06-02 15:31:07 +00:00
|
|
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 2.11.3-2
|
|
|
|
- Bootstrap for Python 3.10
|
|
|
|
|
2021-02-06 13:00:59 +00:00
|
|
|
* Sat Feb 6 2021 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.3-1
|
|
|
|
- Update to 2.11.3.
|
|
|
|
- Add patches to build with Python 3.10 (#1907442).
|
|
|
|
|
2021-01-27 11:17:33 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-12-21 15:09:04 +00:00
|
|
|
* Mon Dec 21 2020 Miro Hrončok <mhroncok@redhat.com> - 2.11.2-7
|
|
|
|
- Drop python2-jinja2 on Fedora 34+
|
|
|
|
|
2020-07-29 01:42:23 +00:00
|
|
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-05-24 08:05:24 +00:00
|
|
|
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 2.11.2-5
|
|
|
|
- Rebuilt for Python 3.9
|
|
|
|
|
2020-05-22 15:04:46 +00:00
|
|
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 2.11.2-4
|
|
|
|
- Bootstrap for Python 3.9
|
|
|
|
|
2020-05-22 08:20:35 +00:00
|
|
|
* Fri May 22 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-3
|
|
|
|
- Re-add python2 subpackage (#1832057).
|
|
|
|
|
|
|
|
* Wed May 6 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-2
|
|
|
|
- Drop python2 subpackage from F33 on (#1832057).
|
|
|
|
|
2020-04-15 20:55:27 +00:00
|
|
|
* Wed Apr 15 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.2-1
|
|
|
|
- Re-add dependency on python-setuptools.
|
|
|
|
|
2020-04-15 07:56:06 +00:00
|
|
|
* Wed Apr 15 2020 Dan Horák <dan[at]danny.cz> - 2.11.2-1
|
|
|
|
- Update to 2.11.2
|
|
|
|
|
2020-04-06 07:06:21 +00:00
|
|
|
* Mon Apr 06 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 2.11.1-2
|
|
|
|
- Drop unneeded R: pythonX-setuptools
|
|
|
|
|
2020-02-08 17:27:48 +00:00
|
|
|
* Sat Feb 8 2020 Thomas Moschny <thomas.moschny@gmx.de> - 2.11.1-1
|
|
|
|
- Update to 2.11.1.
|
|
|
|
|
2020-01-30 12:53:44 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-11-20 07:22:32 +00:00
|
|
|
* Wed Nov 20 2019 Thomas Moschny <thomas.moschny@gmx.de> - 2.10.3-2
|
|
|
|
- Add missing BR on make.
|
|
|
|
|
2019-11-11 08:05:32 +00:00
|
|
|
* Mon Nov 11 2019 Lumír Balhar <lbalhar@redhat.com> - 2.10.3-1
|
|
|
|
- New upstream version (2.10.3)
|
|
|
|
|
2019-10-03 12:16:08 +00:00
|
|
|
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-5
|
|
|
|
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
|
|
|
|
2019-08-17 16:47:11 +00:00
|
|
|
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-4
|
|
|
|
- Rebuilt for Python 3.8
|
|
|
|
|
2019-08-15 14:24:24 +00:00
|
|
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 2.10.1-3
|
|
|
|
- Bootstrap for Python 3.8
|
|
|
|
|
2019-07-26 14:08:29 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-10 08:22:56 +00:00
|
|
|
* Wed Apr 10 2019 Thomas Moschny <thomas.moschny@gmx.de> - 2.10.1-1
|
|
|
|
- Update to 2.10.1.
|
2019-04-11 05:54:06 +00:00
|
|
|
- Update specfile.
|
2019-04-10 08:22:56 +00:00
|
|
|
|
2019-02-27 14:07:51 +00:00
|
|
|
* Wed Feb 27 2019 Phil Wyett <philwyett@kathenas.org> - 2.10-8
|
|
|
|
- Fix FTBS due to bad conditional
|
2019-02-28 09:10:03 +00:00
|
|
|
- Add version requirement for markupsafe
|
2019-02-27 14:07:51 +00:00
|
|
|
|
2019-02-02 07:23:26 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-14 00:40:44 +00:00
|
|
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-18 18:14:40 +00:00
|
|
|
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 2.10-5
|
|
|
|
- Rebuilt for Python 3.7
|
|
|
|
|
2018-06-14 11:40:03 +00:00
|
|
|
* Thu Jun 14 2018 Miro Hrončok <mhroncok@redhat.com> - 2.10-4
|
|
|
|
- Bootstrap for Python 3.7
|
|
|
|
|
2018-04-16 10:32:01 +00:00
|
|
|
* Mon Apr 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 2.10-3
|
|
|
|
- Don't build the Python 2 subpackage on EL > 7
|
|
|
|
|
2018-02-09 08:29:33 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.10-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-11-16 00:49:34 +00:00
|
|
|
* Thu Nov 16 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.10-1
|
|
|
|
- Update to 2.10.
|
|
|
|
- Use %%bcond.
|
|
|
|
- Move BRs to their respective subpackages.
|
|
|
|
|
2017-10-20 14:09:06 +00:00
|
|
|
* Fri Oct 20 2017 Troy Dawson <tdawson@redhat.com> - 2.9.6-4
|
|
|
|
- Really cleanup spec file conditionals
|
|
|
|
|
2017-09-29 15:41:13 +00:00
|
|
|
* Fri Sep 29 2017 Troy Dawson <tdawson@redhat.com> - 2.9.6-3
|
|
|
|
- Cleanup spec file conditionals
|
|
|
|
|
2017-07-27 10:40:53 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-04-05 18:32:27 +00:00
|
|
|
* Wed Apr 5 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.6-1
|
|
|
|
- Update to 2.9.6.
|
|
|
|
|
2017-02-11 09:21:33 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2017-01-29 11:41:30 +00:00
|
|
|
* Sun Jan 29 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.5-1
|
|
|
|
- Update to 2.9.5.
|
|
|
|
|
2017-01-13 23:12:13 +00:00
|
|
|
* Fri Jan 13 2017 Thomas Moschny <thomas.moschny@gmx.de> - 2.9.4-1
|
|
|
|
- Update to 2.9.4.
|
|
|
|
|
2016-12-31 08:41:55 +00:00
|
|
|
* Sat Dec 31 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8.1-1
|
|
|
|
- Update to 2.8.1.
|
|
|
|
|
2016-12-11 20:42:59 +00:00
|
|
|
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 2.8-8
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-09-22 16:19:11 +00:00
|
|
|
* Thu Sep 22 2016 Orion Poplawski <orion@cora.nwra.com> - 2.8-7
|
|
|
|
- Ship python2-jinja2 (bug #1378519)
|
|
|
|
- Modernize spec
|
|
|
|
|
2016-07-19 10:08:57 +00:00
|
|
|
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.8-6
|
|
|
|
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
|
|
|
2016-02-05 11:44:20 +00:00
|
|
|
* Fri Feb 5 2016 Thomas Moschny <thomas.moschny@gmx.de> - 2.8-5
|
|
|
|
- Do not call py.test, there are currently no tests in the tarball.
|
|
|
|
|
2016-02-04 19:57:36 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.8-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-10-12 12:08:49 +00:00
|
|
|
* Mon Oct 12 2015 Robert Kuska <rkuska@redhat.com> - 2.8-3
|
|
|
|
- Rebuilt for Python3.5 rebuild
|
|
|
|
|
2015-07-27 06:05:27 +00:00
|
|
|
* Mon Jul 27 2015 Thomas Moschny <thomas.moschny@gmx.de> - 2.8-2
|
|
|
|
- Apply updates Python packaging guidelines.
|
|
|
|
- Mark LICENSE with %%license.
|
|
|
|
|
2015-07-26 22:15:37 +00:00
|
|
|
* Sun Jul 26 2015 Haïkel Guémar <hguemar@fedoraproject.org> - 2.8-1
|
|
|
|
- Upstream 2.8
|
|
|
|
|
2015-06-18 19:41:59 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.7.3-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-12-02 17:09:31 +00:00
|
|
|
* Tue Dec 2 2014 Orion Poplawski <orion@cora.nwra.com> - 2.7.3-2
|
|
|
|
- Add Requires python(3)-setuptools (bug #1168774)
|
|
|
|
|
2014-06-07 07:03:03 +00:00
|
|
|
* Sat Jun 7 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.3-1
|
|
|
|
- Update to 2.7.3.
|
|
|
|
- Reenable docs.
|
|
|
|
|
2014-05-10 15:39:30 +00:00
|
|
|
* Sat May 10 2014 Orion Poplawski <orion@cora.nwra.com> - 2.7.2-2
|
|
|
|
- Bootstrap (without docs) build for Python 3.4
|
|
|
|
|
2014-01-10 19:15:15 +00:00
|
|
|
* Fri Jan 10 2014 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.2-1
|
|
|
|
- Update to 2.7.2.
|
|
|
|
- Update python3 conditional.
|
|
|
|
|
2013-08-16 16:57:11 +00:00
|
|
|
* Fri Aug 16 2013 Thomas Moschny <thomas.moschny@gmx.de> - 2.7.1-1
|
|
|
|
- Update to 2.7.1.
|
|
|
|
|
2013-07-25 21:16:36 +00:00
|
|
|
* Thu Jul 25 2013 Orion Poplawski <orion@cora.nwra.com> - 2.7-1
|
|
|
|
- Update to 2.7
|
|
|
|
- spec cleanup
|
|
|
|
|
2013-02-14 19:42:09 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-08-04 10:52:22 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.6-5
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 16:26:42 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 2.6-4
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-21 06:46:10 +00:00
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-14 01:49:10 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-07-26 00:22:14 +00:00
|
|
|
* Mon Jul 25 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.6-1
|
|
|
|
- Update to 2.6.
|
|
|
|
|
2011-02-09 04:26:34 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-18 00:51:11 +00:00
|
|
|
* Tue Jan 18 2011 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.5-3
|
|
|
|
- Re-enable html doc generation.
|
|
|
|
- Remove conditional for F-12 and below.
|
|
|
|
- Do not silently fail the testsuite for with py3k.
|
|
|
|
|
2010-11-01 16:17:07 +00:00
|
|
|
* Mon Nov 1 2010 Michel Salim <salimma@fedoraproject.org> - 2.5.5-2
|
|
|
|
- Move python3 runtime requirements to python3 subpackage
|
|
|
|
|
2010-10-27 08:16:01 +00:00
|
|
|
* Wed Oct 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.5-1
|
|
|
|
- Update to 2.5.5.
|
|
|
|
|
2010-08-25 20:02:12 +00:00
|
|
|
* Wed Aug 25 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-4
|
|
|
|
- Revert to previous behavior: fail the build on failed test.
|
|
|
|
- Rebuild for Python 3.2.
|
|
|
|
|
2010-08-25 15:00:04 +00:00
|
|
|
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 2.5.2-3
|
|
|
|
- %%ifnarch doesn't work on noarch package so don't fail the build on failed tests
|
|
|
|
|
2010-08-25 13:52:38 +00:00
|
|
|
* Wed Aug 25 2010 Dan Horák <dan[at]danny.cz> - 2.5.2-2
|
|
|
|
- disable the testsuite on s390(x)
|
|
|
|
|
2010-08-19 00:32:12 +00:00
|
|
|
* Thu Aug 19 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5.2-1
|
|
|
|
- Update to upstream version 2.5.2.
|
|
|
|
- Package depends on python-markupsafe and is noarch now.
|
|
|
|
|
2010-07-22 04:46:18 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-4
|
|
|
|
- add explicit build-requirement on python-setuptools
|
2010-07-22 04:47:51 +00:00
|
|
|
- fix doc disablement for python3 subpackage
|
2010-07-22 04:46:18 +00:00
|
|
|
|
2010-07-22 04:37:25 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-3
|
|
|
|
- support disabling documentation in the build to break a circular build-time
|
|
|
|
dependency with python-sphinx; disable docs for now
|
|
|
|
|
2010-07-22 04:30:26 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-07-13 22:21:52 +00:00
|
|
|
* Tue Jul 13 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.5-1
|
|
|
|
- Update to upstream version 2.5.
|
2015-07-26 22:15:37 +00:00
|
|
|
- Create python3 subpackage.
|
2010-07-13 22:21:52 +00:00
|
|
|
- Minor specfile fixes.
|
|
|
|
- Add examples directory.
|
|
|
|
- Thanks to Gareth Armstrong for additional hints.
|
|
|
|
|
2010-04-21 11:13:48 +00:00
|
|
|
* Wed Apr 21 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.4.1-1
|
|
|
|
- Update to 2.4.1.
|
|
|
|
|
2010-04-13 17:10:05 +00:00
|
|
|
* Tue Apr 13 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.4-1
|
|
|
|
- Update to 2.4.
|
|
|
|
|
2010-02-23 22:48:10 +00:00
|
|
|
* Tue Feb 23 2010 Thomas Moschny <thomas.moschny@gmx.de> - 2.3.1-1
|
|
|
|
- Update to 2.3.1.
|
|
|
|
- Docs are built using Sphinx now.
|
|
|
|
- Run the testsuite.
|
|
|
|
|
2009-09-20 16:10:00 +00:00
|
|
|
* Sat Sep 19 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.2.1-1
|
|
|
|
- Update to 2.2.1, mainly a bugfix release.
|
|
|
|
- Remove patch no longer needed.
|
|
|
|
- Remove conditional for FC-8.
|
|
|
|
- Compilation of speedup module has to be explicitly requested now.
|
|
|
|
|
2009-07-26 20:29:42 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-26 21:53:35 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-10 15:27:07 +00:00
|
|
|
* Sat Jan 10 2009 Thomas Moschny <thomas.moschny@gmx.de> - 2.1.1-1
|
|
|
|
- Update to 2.1.1 (bugfix release).
|
|
|
|
|
2008-12-18 14:34:13 +00:00
|
|
|
* Thu Dec 18 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.1-1
|
|
|
|
- Update to 2.1, which fixes a number of bugs.
|
|
|
|
See http://jinja.pocoo.org/2/documentation/changelog#version-2-1.
|
|
|
|
|
2008-11-29 15:36:04 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0-3
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-07-24 07:56:09 +00:00
|
|
|
* Tue Jul 22 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-2
|
|
|
|
- Use rpm buildroot macro instead of RPM_BUILD_ROOT.
|
|
|
|
|
|
|
|
* Sun Jul 20 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-1
|
|
|
|
- Upstream released 2.0.
|
|
|
|
|
|
|
|
* Sun Jun 29 2008 Thomas Moschny <thomas.moschny@gmx.de> - 2.0-0.1.rc1
|
|
|
|
- Modified specfile from the existing python-jinja package.
|