Compare commits
No commits in common. "c8s" and "c10s" have entirely different histories.
10
.gitignore
vendored
10
.gitignore
vendored
@ -10,3 +10,13 @@ Mako-0.4.0.tar.gz
|
|||||||
/Mako-1.0.1.tar.gz
|
/Mako-1.0.1.tar.gz
|
||||||
/Mako-1.0.3.tar.gz
|
/Mako-1.0.3.tar.gz
|
||||||
/rel_1_0_6.tar.bz2
|
/rel_1_0_6.tar.bz2
|
||||||
|
/rel_1_0_7.tar.bz2
|
||||||
|
/rel_1_0_8.tar.gz
|
||||||
|
/rel_1_0_9.tar.gz
|
||||||
|
/rel_1_0_11.tar.gz
|
||||||
|
/rel_1_0_12.tar.gz
|
||||||
|
/rel_1_1_0.tar.gz
|
||||||
|
/rel_1_1_1.tar.gz
|
||||||
|
/rel_1_1_3.tar.gz
|
||||||
|
/rel_1_1_4.tar.gz
|
||||||
|
/rel_1_2_3.tar.gz
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
--- !Policy
|
--- !Policy
|
||||||
product_versions:
|
product_versions:
|
||||||
- rhel-8
|
- rhel-10
|
||||||
decision_context: osci_compose_gate
|
decision_context: osci_compose_gate
|
||||||
rules:
|
rules:
|
||||||
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}
|
||||||
|
|
||||||
|
|
||||||
|
8
plan.fmf
8
plan.fmf
@ -1,8 +0,0 @@
|
|||||||
summary: Simple gating test
|
|
||||||
execute:
|
|
||||||
how: tmt
|
|
||||||
discover:
|
|
||||||
how: shell
|
|
||||||
tests:
|
|
||||||
- name: /import
|
|
||||||
test: python3 -c "import mako"
|
|
11
plans/python-mako.fmf
Normal file
11
plans/python-mako.fmf
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
discover:
|
||||||
|
- name: smoke-tests
|
||||||
|
how: shell
|
||||||
|
tests:
|
||||||
|
- name: python-import-test
|
||||||
|
test: python3 -c 'import mako'
|
||||||
|
require:
|
||||||
|
- python3-mako
|
||||||
|
duration: 1m
|
||||||
|
execute:
|
||||||
|
how: tmt
|
@ -1,89 +0,0 @@
|
|||||||
From fae3baa78626f420a963abcd7426092423a2b71b Mon Sep 17 00:00:00 2001
|
|
||||||
From: Mike Bayer <mike_mp@zzzcomputing.com>
|
|
||||||
Date: Mon, 29 Aug 2022 12:28:52 -0400
|
|
||||||
Subject: [PATCH] fix tag regexp to match quoted groups correctly
|
|
||||||
|
|
||||||
Fixed issue in lexer where the regexp used to match tags would not
|
|
||||||
correctly interpret quoted sections individually. While this parsing issue
|
|
||||||
still produced the same expected tag structure later on, the mis-handling
|
|
||||||
of quoted sections was also subject to a regexp crash if a tag had a large
|
|
||||||
number of quotes within its quoted sections.
|
|
||||||
|
|
||||||
Fixes: #366
|
|
||||||
Change-Id: I74e0d71ff7f419970711a7cd51adcf1bb90a44c0
|
|
||||||
---
|
|
||||||
doc/build/unreleased/366.rst | 9 +++++++++
|
|
||||||
mako/lexer.py | 13 +++++++++----
|
|
||||||
test/test_lexer.py | 4 ++++
|
|
||||||
3 files changed, 22 insertions(+), 4 deletions(-)
|
|
||||||
create mode 100644 doc/build/unreleased/366.rst
|
|
||||||
|
|
||||||
diff --git a/doc/build/unreleased/366.rst b/doc/build/unreleased/366.rst
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000..27b0278
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/doc/build/unreleased/366.rst
|
|
||||||
@@ -0,0 +1,9 @@
|
|
||||||
+.. change::
|
|
||||||
+ :tags: bug, lexer
|
|
||||||
+ :tickets: 366
|
|
||||||
+
|
|
||||||
+ Fixed issue in lexer where the regexp used to match tags would not
|
|
||||||
+ correctly interpret quoted sections individually. While this parsing issue
|
|
||||||
+ still produced the same expected tag structure later on, the mis-handling
|
|
||||||
+ of quoted sections was also subject to a regexp crash if a tag had a large
|
|
||||||
+ number of quotes within its quoted sections.
|
|
||||||
\ No newline at end of file
|
|
||||||
diff --git a/mako/lexer.py b/mako/lexer.py
|
|
||||||
index cf4187f..2224e77 100644
|
|
||||||
--- a/mako/lexer.py
|
|
||||||
+++ b/mako/lexer.py
|
|
||||||
@@ -271,21 +271,26 @@ class Lexer(object):
|
|
||||||
return self.template
|
|
||||||
|
|
||||||
def match_tag_start(self):
|
|
||||||
- match = self.match(r'''
|
|
||||||
+ reg = r"""
|
|
||||||
\<% # opening tag
|
|
||||||
|
|
||||||
([\w\.\:]+) # keyword
|
|
||||||
|
|
||||||
- ((?:\s+\w+|\s*=\s*|".*?"|'.*?')*) # attrname, = \
|
|
||||||
+ ((?:\s+\w+|\s*=\s*|"[^"]*?"|'[^']*?'|\s*,\s*)*) # attrname, = \
|
|
||||||
# sign, string expression
|
|
||||||
+ # comma is for backwards compat
|
|
||||||
+ # identified in #366
|
|
||||||
|
|
||||||
\s* # more whitespace
|
|
||||||
|
|
||||||
(/)?> # closing
|
|
||||||
|
|
||||||
- ''',
|
|
||||||
+ """
|
|
||||||
|
|
||||||
- re.I | re.S | re.X)
|
|
||||||
+ match = self.match(
|
|
||||||
+ reg,
|
|
||||||
+ re.I | re.S | re.X
|
|
||||||
+ )
|
|
||||||
|
|
||||||
if match:
|
|
||||||
keyword, attr, isend = match.groups()
|
|
||||||
diff --git a/test/test_lexer.py b/test/test_lexer.py
|
|
||||||
index 06ebb05..bcf787e 100644
|
|
||||||
--- a/test/test_lexer.py
|
|
||||||
+++ b/test/test_lexer.py
|
|
||||||
@@ -105,6 +105,10 @@ class LexerTest(TemplateTest):
|
|
||||||
self.assertRaises(exceptions.CompileException,
|
|
||||||
Lexer(template).parse)
|
|
||||||
|
|
||||||
+ def test_tag_many_quotes(self):
|
|
||||||
+ template = "<%0" + '"' * 3000
|
|
||||||
+ self.assertRaises(exceptions.SyntaxException, Lexer(template).parse)
|
|
||||||
+
|
|
||||||
def test_unmatched_tag(self):
|
|
||||||
template = \
|
|
||||||
"""
|
|
||||||
--
|
|
||||||
2.39.0
|
|
||||||
|
|
441
python-mako.spec
441
python-mako.spec
@ -1,60 +1,19 @@
|
|||||||
%if 0%{?fedora} || 0%{?rhel} >= 8
|
Name: python-mako
|
||||||
%bcond_without python3
|
Version: 1.2.3
|
||||||
%else
|
Release: 9%{?dist}
|
||||||
%bcond_with python3
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if 0%{?rhel} > 7
|
|
||||||
%bcond_with beaker_tests
|
|
||||||
%bcond_with python2
|
|
||||||
%else
|
|
||||||
%bcond_without beaker_tests
|
|
||||||
%bcond_without python2
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%global upname Mako
|
|
||||||
|
|
||||||
Name: python-mako
|
|
||||||
Version: 1.0.6
|
|
||||||
Release: 14%{?dist}
|
|
||||||
BuildArch: noarch
|
|
||||||
|
|
||||||
# Mostly MIT, but _ast_util.py is Python licensed.
|
|
||||||
# The documentation contains javascript for search licensed BSD or GPLv2
|
|
||||||
License: (MIT and Python) and (BSD or GPLv2)
|
|
||||||
Group: Development/Languages
|
|
||||||
Summary: Mako template library for Python
|
Summary: Mako template library for Python
|
||||||
URL: http://www.makotemplates.org/
|
|
||||||
Source0: https://bitbucket.org/zzzeek/mako/get/rel_%(echo %{version} | sed "s/\./_/g").tar.bz2
|
|
||||||
|
|
||||||
# https://bugzilla.redhat.com/show_bug.cgi?id=2133606
|
# Mostly MIT, but _ast_util.py is Python-2.0.1 licensed
|
||||||
Patch0: python-mako-1.0.6-CVE-2022-40023.patch
|
# examples/bench/basic.py is BSD-3-Clause
|
||||||
|
License: MIT AND Python-2.0.1 AND BSD-3-Clause
|
||||||
|
URL: https://www.makotemplates.org/
|
||||||
|
Source0: https://github.com/sqlalchemy/mako/archive/rel_%(echo %{version} | sed "s/\./_/g").tar.gz
|
||||||
|
|
||||||
%if %{with python2}
|
BuildArch: noarch
|
||||||
BuildRequires: python2-devel
|
|
||||||
BuildRequires: python2-pytest
|
|
||||||
BuildRequires: python2-setuptools
|
|
||||||
BuildRequires: python2-markupsafe
|
|
||||||
BuildRequires: python2-nose
|
|
||||||
BuildRequires: python2-mock
|
|
||||||
|
|
||||||
%if %{with beaker_tests}
|
|
||||||
BuildRequires: python2-beaker
|
|
||||||
%endif
|
|
||||||
%endif #{with python2}
|
|
||||||
|
|
||||||
%if %{with python3}
|
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-pytest
|
BuildRequires: python3-pytest
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-markupsafe
|
BuildRequires: python3-markupsafe
|
||||||
BuildRequires: python3-mock
|
|
||||||
BuildRequires: python3-nose
|
|
||||||
|
|
||||||
%if %{with beaker_tests}
|
|
||||||
BuildRequires: python3-beaker
|
|
||||||
%endif
|
|
||||||
%endif #{with python3}
|
|
||||||
|
|
||||||
%global _description\
|
%global _description\
|
||||||
Mako is a template library written in Python. It provides a familiar, non-XML\
|
Mako is a template library written in Python. It provides a familiar, non-XML\
|
||||||
@ -68,145 +27,173 @@ calling and scoping semantics.
|
|||||||
|
|
||||||
%description %_description
|
%description %_description
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%package -n python2-mako
|
|
||||||
Summary: %summary
|
|
||||||
Requires: python2-markupsafe
|
|
||||||
|
|
||||||
# Beaker is the preferred caching backend, but is not strictly necessary
|
|
||||||
Recommends: python2-beaker
|
|
||||||
|
|
||||||
%{?python_provide:%python_provide python2-mako}
|
|
||||||
|
|
||||||
%description -n python2-mako %_description
|
|
||||||
%endif #{with python2}
|
|
||||||
|
|
||||||
%package doc
|
|
||||||
Summary: Documentation for the Mako template library for Python
|
|
||||||
Group: Documentation
|
|
||||||
License: (MIT and Python) and (BSD or GPLv2)
|
|
||||||
%if %{with python3}
|
|
||||||
Requires: python3-mako = %{version}-%{release}
|
|
||||||
%else
|
|
||||||
Requires: python2-mako = %{version}-%{release}
|
|
||||||
%endif #{with python3}
|
|
||||||
|
|
||||||
%description doc
|
|
||||||
Mako is a template library written in Python. It provides a familiar, non-XML
|
|
||||||
syntax which compiles into Python modules for maximum performance. Mako's
|
|
||||||
syntax and API borrows from the best ideas of many others, including Django
|
|
||||||
templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
|
|
||||||
Python (i.e. Python Server Page) language, which refines the familiar ideas of
|
|
||||||
componentized layout and inheritance to produce one of the most straightforward
|
|
||||||
and flexible models available, while also maintaining close ties to Python
|
|
||||||
calling and scoping semantics.
|
|
||||||
|
|
||||||
This package contains documentation in text and HTML formats.
|
|
||||||
|
|
||||||
|
|
||||||
%if %{with python3}
|
|
||||||
%package -n python3-mako
|
%package -n python3-mako
|
||||||
Summary: Mako template library for Python 3
|
Summary: %{summary}
|
||||||
Group: Development/Languages
|
|
||||||
Requires: python3-markupsafe
|
|
||||||
|
|
||||||
# Beaker is the preferred caching backend, but is not strictly necessary
|
# Beaker is the preferred caching backend, but is not strictly necessary
|
||||||
Recommends: python3-beaker
|
Recommends: python3-beaker
|
||||||
|
|
||||||
|
Obsoletes: python2-mako < 1.1.0-3
|
||||||
|
Obsoletes: python-mako-doc < 1.1.4-6
|
||||||
|
|
||||||
%{?python_provide:%python_provide python3-mako}
|
%{?python_provide:%python_provide python3-mako}
|
||||||
|
|
||||||
%if %{without python2}
|
%description -n python3-mako %_description
|
||||||
Obsoletes: python2-mako < %{version}-%{release}
|
|
||||||
%endif #{without python2}
|
|
||||||
|
|
||||||
%description -n python3-mako
|
|
||||||
Mako is a template library written in Python. It provides a familiar, non-XML
|
|
||||||
syntax which compiles into Python modules for maximum performance. Mako's
|
|
||||||
syntax and API borrows from the best ideas of many others, including Django
|
|
||||||
templates, Cheetah, Myghty, and Genshi. Conceptually, Mako is an embedded
|
|
||||||
Python (i.e. Python Server Page) language, which refines the familiar ideas of
|
|
||||||
componentized layout and inheritance to produce one of the most straightforward
|
|
||||||
and flexible models available, while also maintaining close ties to Python
|
|
||||||
calling and scoping semantics.
|
|
||||||
|
|
||||||
This package contains the mako module built for use with python3.
|
This package contains the mako module built for use with python3.
|
||||||
%endif #{with python3}
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1 -n zzzeek-mako-8e83c7561e3c
|
%autosetup -p1 -n mako-rel_%(echo %{version} | sed "s/\./_/g")
|
||||||
|
|
||||||
|
# the package ends up installed as %%{version}.dev0 otherwise:
|
||||||
|
sed -i '/tag_build = dev/d' setup.cfg
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
|
%py3_build
|
||||||
%{?with_python2:%py2_build}
|
|
||||||
%{?with_python3:%py3_build}
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{?with_python3:%py3_install}
|
%py3_install
|
||||||
|
|
||||||
%if %{with python2}
|
mv %{buildroot}/%{_bindir}/mako-render %{buildroot}/%{_bindir}/mako-render-%{python3_version}
|
||||||
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
|
ln -s ./mako-render-%{python3_version} %{buildroot}/%{_bindir}/mako-render-3
|
||||||
mv %{buildroot}/%{_bindir}/mako-render %{buildroot}/%{_bindir}/python3-mako-render
|
ln -s ./mako-render-%{python3_version} %{buildroot}/%{_bindir}/mako-render
|
||||||
%endif
|
|
||||||
|
|
||||||
%{?with_python2:%py2_install}
|
|
||||||
|
|
||||||
# These are supporting files for building the docs. No need to ship
|
|
||||||
rm -rf doc/build
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{with python2}
|
pytest-3
|
||||||
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
|
|
||||||
%{__python2} setup.py test
|
|
||||||
%endif #{with python2}
|
|
||||||
|
|
||||||
%if %{with python3}
|
|
||||||
%{__python3} setup.py test
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%if %{with python2}
|
|
||||||
%files -n python2-mako
|
|
||||||
%license LICENSE
|
|
||||||
%doc CHANGES README.rst examples
|
|
||||||
%{_bindir}/mako-render
|
|
||||||
%{python2_sitelib}/*
|
|
||||||
%endif %{with python2}
|
|
||||||
|
|
||||||
%if %{with python3}
|
|
||||||
%files -n python3-mako
|
%files -n python3-mako
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc CHANGES README.rst examples
|
%doc CHANGES README.rst examples
|
||||||
%if %{with python2}
|
|
||||||
%{_bindir}/python3-mako-render
|
|
||||||
%else
|
|
||||||
%{_bindir}/mako-render
|
%{_bindir}/mako-render
|
||||||
%endif
|
%{_bindir}/mako-render-3
|
||||||
%{python3_sitelib}/*
|
%{_bindir}/mako-render-%{python3_version}
|
||||||
%endif
|
%{python3_sitelib}/mako/
|
||||||
|
%{python3_sitelib}/Mako-*.egg-info/
|
||||||
%files doc
|
|
||||||
%doc doc
|
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Thu Nov 17 2022 David King <amigadave@amigadave.com> - 1.0.6-14
|
* Tue Oct 29 2024 Troy Dawson <tdawson@redhat.com> - 1.2.3-9
|
||||||
- Fix CVE-2022-40023 (#2128977)
|
- Bump release for October 2024 mass rebuild:
|
||||||
|
Resolves: RHEL-64018
|
||||||
|
|
||||||
* Wed Jul 11 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-13
|
* Mon Aug 19 2024 Tomas Popela <tpopela@redhat.com> - 1.2.3-8
|
||||||
- Disable the Python 2 subpackage again
|
- Fix SDPX license
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1590397
|
|
||||||
- Fix the Python2 workaround
|
|
||||||
|
|
||||||
* Mon Jun 25 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-12
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.2.3-7
|
||||||
- Allow Python 2 for build
|
- Bump release for June 2024 mass rebuild
|
||||||
see https://hurl.corp.redhat.com/rhel8-py2
|
|
||||||
|
|
||||||
* Mon Jun 18 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-11
|
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-6
|
||||||
- Add back the Python 2 subpackage (temporarily, for mesa build)
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1569193
|
|
||||||
|
|
||||||
* Mon Apr 16 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-10
|
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-5
|
||||||
- Remove python-beaker as a build dependency
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 1.2.3-3
|
||||||
|
- Rebuilt for Python 3.12
|
||||||
|
|
||||||
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 27 2022 David King <amigadave@amigadave.com> - 1.2.3-1
|
||||||
|
- Update to 1.2.3 (#1996163)
|
||||||
|
|
||||||
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 1.1.4-8
|
||||||
|
- Rebuilt for Python 3.11
|
||||||
|
|
||||||
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Oct 29 2021 Miro Hrončok <mhroncok@redhat.com> - 1.1.4-6
|
||||||
|
- Don't build the package as 1.1.4.dev0
|
||||||
|
- Remove the empty python-mako-doc package
|
||||||
|
|
||||||
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 1.1.4-4
|
||||||
|
- Rebuilt for Python 3.10
|
||||||
|
|
||||||
|
* Mon Mar 29 2021 David King <amigadave@amigadave.com> - 1.1.4-3
|
||||||
|
- Remove unnecessary python3-mock BuildRequires
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jan 14 19:55:31 CET 2021 Petr Viktorin <pviktori@redhat.com> - 1.1.4-1
|
||||||
|
- Update to version 1.1.4
|
||||||
|
- Avoids test warnings on Python 3.10
|
||||||
|
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1907474
|
||||||
|
|
||||||
|
* Fri Jun 26 2020 Charalampos Stratakis <cstratak@redhat.com> - 1.1.3-1
|
||||||
|
- Update to 1.1.3 (#1808872)
|
||||||
|
|
||||||
|
* Fri May 22 2020 Miro Hrončok <mhroncok@redhat.com> - 1.1.1-2
|
||||||
|
- Rebuilt for Python 3.9
|
||||||
|
|
||||||
|
* Mon Feb 10 2020 Miro Hrončok <mhroncok@redhat.com> - 1.1.1-1
|
||||||
|
- Update to 1.1.1 (#1787962) (#1793184)
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1.0-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 07 2020 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.1.0-4
|
||||||
|
- Fix FTBFS with pytest-5 by dropping a BR on python-nose (mako does not use nose).
|
||||||
|
|
||||||
|
* Fri Nov 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-3
|
||||||
|
- Subpackage python2-mako has been removed
|
||||||
|
See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
|
||||||
|
|
||||||
|
* Fri Oct 11 2019 Miro Hrončok <mhroncok@redhat.com> - 1.1.0-2
|
||||||
|
- Rename the Python-versioned executables not to start with "python"
|
||||||
|
- Make mako-render Python 3 on Fedora 32+
|
||||||
|
|
||||||
|
* Tue Sep 03 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.1.0-1
|
||||||
|
- Update to 1.1.0 (#1725969).
|
||||||
|
- https://docs.makotemplates.org/en/latest/changelog.html#change-1.1.0
|
||||||
|
|
||||||
|
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.12-4
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Thu Aug 15 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.12-3
|
||||||
|
- Rebuilt for Python 3.8
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.12-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 05 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.0.12-1
|
||||||
|
- Update to 1.0.12 (#1708706).
|
||||||
|
- https://docs.makotemplates.org/en/latest/changelog.html#change-1.0.12
|
||||||
|
|
||||||
|
* Wed Apr 17 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.9-1
|
||||||
|
- Update to 1.0.9 (#1698191, #1700055)
|
||||||
|
|
||||||
|
* Wed Mar 20 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.8-1
|
||||||
|
- Update to 1.0.8 (#1470902, #1690902)
|
||||||
|
|
||||||
|
* Wed Mar 20 2019 Miro Hrončok <mhroncok@redhat.com> - 1.0.7-1
|
||||||
|
- Update to 1.0.7 (#1470902)
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-12
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-11
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 15 2018 Miro Hrončok <mhroncok@redhat.com> - 1.0.6-10
|
||||||
|
- Rebuilt for Python 3.7
|
||||||
|
|
||||||
* Wed Mar 28 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-9
|
* Wed Mar 28 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-9
|
||||||
- Make python-beaker an optional dependency
|
- Make python-beaker an optional dependency
|
||||||
@ -220,147 +207,3 @@ export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
|
|||||||
|
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-7
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-7
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 1.0.6-6
|
|
||||||
- Cleanup spec file conditionals
|
|
||||||
|
|
||||||
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.0.6-5
|
|
||||||
- Python 2 binary package renamed to python2-mako
|
|
||||||
See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
||||||
|
|
||||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.0.6-2
|
|
||||||
- Rebuild for Python 3.6
|
|
||||||
|
|
||||||
* Sat Dec 17 2016 Randy Barlow <bowlofeggs@fedoraproject.org> - 1.0.6-1
|
|
||||||
- Update to 1.0.6 (#1257376).
|
|
||||||
- Mark LICENSE as the license.
|
|
||||||
- Drop declaration of BuildRoot.
|
|
||||||
- Drop use of 2to3 since upstream supports Python 3 now.
|
|
||||||
|
|
||||||
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.3-3
|
|
||||||
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
|
|
||||||
|
|
||||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Nov 12 2015 Kevin Fenzi <kevin@scrye.com> - 1.0.3-1
|
|
||||||
- Update to 1.0.3
|
|
||||||
|
|
||||||
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
|
|
||||||
|
|
||||||
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Jan 28 2015 Matej Cepl <mcepl@redhat.com> - 1.0.1-1
|
|
||||||
- Update to 1.0.1 (#1185339)
|
|
||||||
|
|
||||||
* Wed Jun 18 2014 Luke Macken <lmacken@redhat.com> - 1.0.0-1
|
|
||||||
- Update to 1.0.0 (#1106453)
|
|
||||||
- Add a BR on python-mock
|
|
||||||
|
|
||||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.1-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 0.9.1-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
||||||
|
|
||||||
* Mon May 19 2014 Luke Macken <lmacken@redhat.com> - 0.9.1-2
|
|
||||||
- Create a subpackage for the documentation (#1006259)
|
|
||||||
|
|
||||||
* Mon May 19 2014 Luke Macken <lmacken@redhat.com> - 0.9.1-1
|
|
||||||
- Update to 0.9.1 (#967837)
|
|
||||||
|
|
||||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Apr 9 2013 Luke Macken <lmacken@redhat.com> - 0.7.3-1
|
|
||||||
- Update to 0.7.3 (#784257)
|
|
||||||
|
|
||||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.0-5
|
|
||||||
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
||||||
|
|
||||||
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.0-4
|
|
||||||
- remove rhel logic from with_python3 conditional
|
|
||||||
|
|
||||||
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Dec 13 2011 Luke Macken <lmacken@redhat.com> - 0.5.0-1
|
|
||||||
- Update to 0.5.0
|
|
||||||
|
|
||||||
* Mon Sep 5 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.4.2-2
|
|
||||||
- Require beaker to run unittests since its required at runtime
|
|
||||||
- Fix license tag
|
|
||||||
|
|
||||||
* Mon Sep 5 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.4.2-1
|
|
||||||
- Update to 0.4.2
|
|
||||||
- Run unit tests on python3
|
|
||||||
|
|
||||||
* Thu Feb 24 2011 Luke Macken <lmacken@redhat.com> - 0.4.0-1
|
|
||||||
- Update to 0.4.0 (#654779)
|
|
||||||
|
|
||||||
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.6-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
||||||
|
|
||||||
* Wed Feb 02 2011 Luke Macken <lmacken@redhat.com> - 0.3.6-1
|
|
||||||
- Update to 0.3.6
|
|
||||||
- Remove 2to3 patch
|
|
||||||
|
|
||||||
* Wed Oct 27 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.3.5-2
|
|
||||||
- Use a patch from Debian submitted upstream to convert to python3 syntax
|
|
||||||
|
|
||||||
* Thu Oct 21 2010 Luke Macken <lmacken@redhat.com> - 0.3.5-1
|
|
||||||
- Update to 0.3.5 (#645063)
|
|
||||||
|
|
||||||
* Wed Aug 25 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.3.4-3
|
|
||||||
- rebuild with python3.2
|
|
||||||
http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
|
|
||||||
|
|
||||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.4-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
||||||
|
|
||||||
* Sun Jun 27 2010 Kyle VanderBeek <kylev@kylev.com> - 0.3.4-1
|
|
||||||
- Update to 0.3.4 security fix release
|
|
||||||
- Fix missing python3-beaker dependency
|
|
||||||
|
|
||||||
* Sat Jun 5 2010 Kyle VanderBeek <kylev@kylev.com> - 0.3.3-1
|
|
||||||
- Update to upstream 0.3.3
|
|
||||||
|
|
||||||
* Tue May 4 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.2-2
|
|
||||||
- add python3 subpackage
|
|
||||||
|
|
||||||
* Tue May 04 2010 Luke Macken <lmacken@redhat.com> - 0.3.2-1
|
|
||||||
- Update to 0.3.2
|
|
||||||
- Run the test suite in %%check
|
|
||||||
|
|
||||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
||||||
|
|
||||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.4-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jan 06 2009 Luke Macken <lmacken@redhat.com> - 0.2.4-1
|
|
||||||
- Update to 0.2.4
|
|
||||||
|
|
||||||
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.10-3
|
|
||||||
- Rebuild for Python 2.6
|
|
||||||
|
|
||||||
* Sun May 11 2008 Kyle VanderBeek <kylev@kylev.com> - 0.1.10-2
|
|
||||||
- Fix rpmlint warnings.
|
|
||||||
- Add docs and examples.
|
|
||||||
|
|
||||||
* Wed Apr 9 2008 Kyle VanderBeek <kylev@kylev.com> - 0.1.10-1
|
|
||||||
- Initial version.
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (rel_1_0_6.tar.bz2) = 01db60f51485abec6dfbc81627be61b5cc44dee2a4dd21f0844c7b7e7ed48c05983adeb6b155c935b50768c1946ab19d355aa3761985ec1aa4c078578d377dee
|
SHA512 (rel_1_2_3.tar.gz) = 400bf78afcc72c93a956805fbfb062caa1645f37034b0c261a5e0c203b324a3b553fabdd0e889dbefa6ca0955bb6f16aeaee88851fdc830303473019621342f0
|
||||||
|
Loading…
Reference in New Issue
Block a user