2017-09-27 17:57:51 +00:00
|
|
|
%if 0%{?fedora} || 0%{?rhel} >= 8
|
2018-03-28 14:20:43 +00:00
|
|
|
%bcond_without python3
|
|
|
|
%else
|
|
|
|
%bcond_with python3
|
2011-09-08 08:19:22 +00:00
|
|
|
%endif
|
|
|
|
|
2018-03-28 14:10:07 +00:00
|
|
|
%if 0%{?rhel} > 7
|
|
|
|
%bcond_with python2
|
|
|
|
%else
|
|
|
|
%bcond_without python2
|
|
|
|
%endif
|
|
|
|
|
2015-01-28 17:28:05 +00:00
|
|
|
%global upname Mako
|
|
|
|
|
2008-05-31 20:47:02 +00:00
|
|
|
Name: python-mako
|
2016-12-18 00:52:59 +00:00
|
|
|
Version: 1.0.6
|
2018-03-28 13:50:47 +00:00
|
|
|
Release: 9%{?dist}
|
2016-12-18 00:52:59 +00:00
|
|
|
BuildArch: noarch
|
2008-05-31 20:47:02 +00:00
|
|
|
|
2010-06-28 02:13:18 +00:00
|
|
|
# Mostly MIT, but _ast_util.py is Python licensed.
|
2011-09-08 08:19:22 +00:00
|
|
|
# The documentation contains javascript for search licensed BSD or GPLv2
|
|
|
|
License: (MIT and Python) and (BSD or GPLv2)
|
2016-12-18 00:52:59 +00:00
|
|
|
Group: Development/Languages
|
|
|
|
Summary: Mako template library for Python
|
2008-05-31 20:47:02 +00:00
|
|
|
URL: http://www.makotemplates.org/
|
2016-12-18 00:52:59 +00:00
|
|
|
Source0: https://bitbucket.org/zzzeek/mako/get/rel_%(echo %{version} | sed "s/\./_/g").tar.bz2
|
|
|
|
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{with python2}
|
2011-09-08 08:19:22 +00:00
|
|
|
BuildRequires: python2-devel
|
2016-12-18 00:52:59 +00:00
|
|
|
BuildRequires: python2-pytest
|
2018-02-12 03:30:57 +00:00
|
|
|
BuildRequires: python2-setuptools
|
|
|
|
BuildRequires: python2-markupsafe
|
2018-06-08 13:05:19 +00:00
|
|
|
#BuildRequires: python2-beaker
|
2018-02-12 03:30:57 +00:00
|
|
|
BuildRequires: python2-nose
|
|
|
|
BuildRequires: python2-mock
|
2018-03-28 14:10:07 +00:00
|
|
|
%endif #{with python2}
|
2008-05-31 20:47:02 +00:00
|
|
|
|
2018-03-28 14:20:43 +00:00
|
|
|
%if %{with python3}
|
2010-05-06 17:26:04 +00:00
|
|
|
BuildRequires: python3-devel
|
2016-12-18 00:52:59 +00:00
|
|
|
BuildRequires: python3-pytest
|
2010-05-06 17:26:04 +00:00
|
|
|
BuildRequires: python3-setuptools
|
2010-06-28 02:13:18 +00:00
|
|
|
BuildRequires: python3-markupsafe
|
2018-06-08 13:05:19 +00:00
|
|
|
#BuildRequires: python3-beaker
|
2014-06-18 16:09:16 +00:00
|
|
|
BuildRequires: python3-mock
|
2011-09-06 03:38:26 +00:00
|
|
|
BuildRequires: python3-nose
|
2018-03-28 14:20:43 +00:00
|
|
|
%endif #{with python3}
|
2010-05-06 17:26:04 +00:00
|
|
|
|
2017-08-19 13:41:29 +00:00
|
|
|
%global _description\
|
|
|
|
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\
|
2008-05-31 20:47:02 +00:00
|
|
|
calling and scoping semantics.
|
|
|
|
|
2017-08-19 13:41:29 +00:00
|
|
|
%description %_description
|
|
|
|
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{with python2}
|
2017-08-19 13:41:29 +00:00
|
|
|
%package -n python2-mako
|
|
|
|
Summary: %summary
|
2018-02-12 03:30:57 +00:00
|
|
|
Requires: python2-markupsafe
|
2018-03-28 13:50:47 +00:00
|
|
|
|
|
|
|
# Beaker is the preferred caching backend, but is not strictly necessary
|
|
|
|
Recommends: python2-beaker
|
|
|
|
|
2017-08-19 13:41:29 +00:00
|
|
|
%{?python_provide:%python_provide python2-mako}
|
|
|
|
|
|
|
|
%description -n python2-mako %_description
|
2018-03-28 14:10:07 +00:00
|
|
|
%endif #{with python2}
|
2017-08-19 13:41:29 +00:00
|
|
|
|
2014-05-19 16:31:31 +00:00
|
|
|
%package doc
|
|
|
|
Summary: Documentation for the Mako template library for Python
|
|
|
|
Group: Documentation
|
|
|
|
License: (MIT and Python) and (BSD or GPLv2)
|
2018-04-12 13:45:39 +00:00
|
|
|
%if %{with python3}
|
|
|
|
Requires: python3-mako = %{version}-%{release}
|
|
|
|
%else
|
2018-02-12 03:30:57 +00:00
|
|
|
Requires: python2-mako = %{version}-%{release}
|
2018-04-12 13:45:39 +00:00
|
|
|
%endif #{with python3}
|
2014-05-19 16:31:31 +00:00
|
|
|
|
|
|
|
%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.
|
|
|
|
|
|
|
|
|
2018-03-28 14:20:43 +00:00
|
|
|
%if %{with python3}
|
2010-05-06 17:26:04 +00:00
|
|
|
%package -n python3-mako
|
|
|
|
Summary: Mako template library for Python 3
|
|
|
|
Group: Development/Languages
|
2011-09-08 08:19:22 +00:00
|
|
|
Requires: python3-markupsafe
|
2010-05-06 17:26:04 +00:00
|
|
|
|
2018-03-28 13:50:47 +00:00
|
|
|
# Beaker is the preferred caching backend, but is not strictly necessary
|
|
|
|
Recommends: python3-beaker
|
|
|
|
|
2018-03-28 13:55:25 +00:00
|
|
|
%{?python_provide:%python_provide python3-mako}
|
|
|
|
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{without python2}
|
|
|
|
Obsoletes: python2-mako < %{version}-%{release}
|
2018-04-12 13:45:39 +00:00
|
|
|
%endif #{without python2}
|
2018-03-28 14:10:07 +00:00
|
|
|
|
2010-05-06 17:26:04 +00:00
|
|
|
%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.
|
2011-09-08 08:19:22 +00:00
|
|
|
|
|
|
|
This package contains the mako module built for use with python3.
|
2018-03-28 14:20:43 +00:00
|
|
|
%endif #{with python3}
|
2008-05-31 20:47:02 +00:00
|
|
|
|
|
|
|
%prep
|
2016-12-18 00:52:59 +00:00
|
|
|
%autosetup -n zzzeek-mako-8e83c7561e3c
|
2008-05-31 20:47:02 +00:00
|
|
|
|
|
|
|
%build
|
2018-03-28 14:20:43 +00:00
|
|
|
%{?with_python2:%py2_build}
|
|
|
|
%{?with_python3:%py3_build}
|
2010-05-06 17:26:04 +00:00
|
|
|
|
2008-05-31 20:47:02 +00:00
|
|
|
|
|
|
|
%install
|
2018-03-28 14:20:43 +00:00
|
|
|
%{?with_python3:%py3_install}
|
2010-05-06 17:26:04 +00:00
|
|
|
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{with python2}
|
2011-09-08 08:19:22 +00:00
|
|
|
mv %{buildroot}/%{_bindir}/mako-render %{buildroot}/%{_bindir}/python3-mako-render
|
2018-03-28 14:10:07 +00:00
|
|
|
%endif
|
2010-05-06 17:26:04 +00:00
|
|
|
|
2018-03-28 14:20:43 +00:00
|
|
|
%{?with_python2:%py2_install}
|
2008-05-31 20:47:02 +00:00
|
|
|
|
2011-09-08 08:19:22 +00:00
|
|
|
# These are supporting files for building the docs. No need to ship
|
2010-06-28 02:13:18 +00:00
|
|
|
rm -rf doc/build
|
2010-05-04 20:56:45 +00:00
|
|
|
|
|
|
|
%check
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{with python2}
|
2018-03-28 14:20:43 +00:00
|
|
|
%{__python2} setup.py test
|
2018-03-28 14:10:07 +00:00
|
|
|
%endif #{with python2}
|
2010-05-04 20:56:45 +00:00
|
|
|
|
2018-03-28 14:20:43 +00:00
|
|
|
%if %{with python3}
|
|
|
|
%{__python3} setup.py test
|
2011-09-06 03:38:26 +00:00
|
|
|
%endif
|
2010-05-04 20:56:45 +00:00
|
|
|
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{with python2}
|
2017-08-19 13:41:29 +00:00
|
|
|
%files -n python2-mako
|
2016-12-18 00:52:59 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc CHANGES README.rst examples
|
2009-01-07 05:03:13 +00:00
|
|
|
%{_bindir}/mako-render
|
2018-03-28 14:20:43 +00:00
|
|
|
%{python2_sitelib}/*
|
2018-03-28 14:10:07 +00:00
|
|
|
%endif %{with python2}
|
2008-05-31 20:47:02 +00:00
|
|
|
|
2018-04-12 13:45:39 +00:00
|
|
|
%if %{with python3}
|
2010-05-06 17:26:04 +00:00
|
|
|
%files -n python3-mako
|
2016-12-18 00:52:59 +00:00
|
|
|
%license LICENSE
|
|
|
|
%doc CHANGES README.rst examples
|
2018-03-28 14:10:07 +00:00
|
|
|
%if %{with python2}
|
2010-05-06 17:26:04 +00:00
|
|
|
%{_bindir}/python3-mako-render
|
2018-03-28 14:10:07 +00:00
|
|
|
%else
|
|
|
|
%{_bindir}/mako-render
|
|
|
|
%endif
|
2010-05-06 17:26:04 +00:00
|
|
|
%{python3_sitelib}/*
|
|
|
|
%endif
|
2008-05-31 20:47:02 +00:00
|
|
|
|
2014-05-19 16:31:31 +00:00
|
|
|
%files doc
|
|
|
|
%doc doc
|
|
|
|
|
|
|
|
|
2008-05-31 20:47:02 +00:00
|
|
|
%changelog
|
2018-03-28 13:50:47 +00:00
|
|
|
* Wed Mar 28 2018 Petr Viktorin <pviktori@redhat.com> - 1.0.6-9
|
|
|
|
- Make python-beaker an optional dependency
|
2018-03-28 13:55:25 +00:00
|
|
|
- Add missing python_provide for python3-mako
|
2018-03-28 14:10:07 +00:00
|
|
|
- Conditionalize the Python 2 subpackage
|
2018-03-28 14:20:43 +00:00
|
|
|
- Modernize the specfile
|
2018-03-28 13:50:47 +00:00
|
|
|
|
2018-02-12 03:30:57 +00:00
|
|
|
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.0.6-8
|
|
|
|
- Update Python 2 dependency declarations to new packaging standards
|
|
|
|
(See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
|
|
|
|
|
2018-02-09 08:48:45 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-09-27 17:57:51 +00:00
|
|
|
* Wed Sep 27 2017 Troy Dawson <tdawson@redhat.com> - 1.0.6-6
|
|
|
|
- Cleanup spec file conditionals
|
|
|
|
|
2017-08-19 13:41:29 +00:00
|
|
|
* 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
|
|
|
|
|
2017-07-27 10:51:05 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-11 09:32:06 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-12-19 17:20:37 +00:00
|
|
|
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.0.6-2
|
|
|
|
- Rebuild for Python 3.6
|
|
|
|
|
2016-12-18 00:52:59 +00:00
|
|
|
* 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.
|
|
|
|
|
2016-07-19 10:23:45 +00:00
|
|
|
* 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
|
|
|
|
|
2016-02-04 20:07:02 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-12 21:58:37 +00:00
|
|
|
* Thu Nov 12 2015 Kevin Fenzi <kevin@scrye.com> - 1.0.3-1
|
|
|
|
- Update to 1.0.3
|
|
|
|
|
2015-11-10 16:20:15 +00:00
|
|
|
* 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
|
|
|
|
|
2015-06-18 19:52:22 +00:00
|
|
|
* 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
|
|
|
|
|
2015-01-28 17:28:05 +00:00
|
|
|
* Wed Jan 28 2015 Matej Cepl <mcepl@redhat.com> - 1.0.1-1
|
|
|
|
- Update to 1.0.1 (#1185339)
|
|
|
|
|
2014-06-18 15:55:11 +00:00
|
|
|
* Wed Jun 18 2014 Luke Macken <lmacken@redhat.com> - 1.0.0-1
|
|
|
|
- Update to 1.0.0 (#1106453)
|
2014-06-18 16:09:16 +00:00
|
|
|
- Add a BR on python-mock
|
2014-06-18 15:55:11 +00:00
|
|
|
|
2014-06-07 21:18:38 +00:00
|
|
|
* 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
|
|
|
|
|
2014-05-27 13:58:07 +00:00
|
|
|
* Tue May 27 2014 Kalev Lember <kalevlember@gmail.com> - 0.9.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
|
|
|
|
|
2014-05-19 16:31:31 +00:00
|
|
|
* Mon May 19 2014 Luke Macken <lmacken@redhat.com> - 0.9.1-2
|
|
|
|
- Create a subpackage for the documentation (#1006259)
|
|
|
|
|
2014-05-19 16:18:47 +00:00
|
|
|
* Mon May 19 2014 Luke Macken <lmacken@redhat.com> - 0.9.1-1
|
|
|
|
- Update to 0.9.1 (#967837)
|
|
|
|
|
2013-08-04 08:21:33 +00:00
|
|
|
* 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
|
|
|
|
|
2013-04-09 21:23:40 +00:00
|
|
|
* Tue Apr 9 2013 Luke Macken <lmacken@redhat.com> - 0.7.3-1
|
|
|
|
- Update to 0.7.3 (#784257)
|
|
|
|
|
2013-02-14 19:49:23 +00:00
|
|
|
* 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
|
|
|
|
|
2012-08-05 00:34:50 +00:00
|
|
|
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.0-5
|
|
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
|
2012-08-03 17:37:43 +00:00
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 0.5.0-4
|
|
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
|
2012-07-21 07:05:32 +00:00
|
|
|
* 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
|
|
|
|
|
2012-01-14 01:52:05 +00:00
|
|
|
* 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
|
|
|
|
|
2011-12-14 03:15:43 +00:00
|
|
|
* Tue Dec 13 2011 Luke Macken <lmacken@redhat.com> - 0.5.0-1
|
|
|
|
- Update to 0.5.0
|
|
|
|
|
2011-09-08 08:19:22 +00:00
|
|
|
* 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
|
2011-09-06 03:38:26 +00:00
|
|
|
- Update to 0.4.2
|
|
|
|
- Run unit tests on python3
|
|
|
|
|
2011-02-24 20:26:26 +00:00
|
|
|
* Thu Feb 24 2011 Luke Macken <lmacken@redhat.com> - 0.4.0-1
|
|
|
|
- Update to 0.4.0 (#654779)
|
|
|
|
|
2011-02-09 18:07:46 +00:00
|
|
|
* 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
|
|
|
|
|
2011-02-02 22:16:17 +00:00
|
|
|
* Wed Feb 02 2011 Luke Macken <lmacken@redhat.com> - 0.3.6-1
|
|
|
|
- Update to 0.3.6
|
|
|
|
- Remove 2to3 patch
|
|
|
|
|
2010-10-28 05:55:37 +00:00
|
|
|
* 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
|
|
|
|
|
2010-10-21 16:54:27 +00:00
|
|
|
* Thu Oct 21 2010 Luke Macken <lmacken@redhat.com> - 0.3.5-1
|
|
|
|
- Update to 0.3.5 (#645063)
|
|
|
|
|
2010-08-25 16:12:15 +00:00
|
|
|
* 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
|
|
|
|
|
2010-07-22 04:40:24 +00:00
|
|
|
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-06-28 02:13:18 +00:00
|
|
|
* 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
|
|
|
|
|
2010-06-05 21:26:07 +00:00
|
|
|
* Sat Jun 5 2010 Kyle VanderBeek <kylev@kylev.com> - 0.3.3-1
|
|
|
|
- Update to upstream 0.3.3
|
|
|
|
|
2010-05-06 17:26:04 +00:00
|
|
|
* Tue May 4 2010 David Malcolm <dmalcolm@redhat.com> - 0.3.2-2
|
|
|
|
- add python3 subpackage
|
|
|
|
|
2010-05-04 20:56:45 +00:00
|
|
|
* Tue May 04 2010 Luke Macken <lmacken@redhat.com> - 0.3.2-1
|
|
|
|
- Update to 0.3.2
|
|
|
|
- Run the test suite in %%check
|
|
|
|
|
2009-07-26 20:36:59 +00:00
|
|
|
* 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
|
|
|
|
|
2009-02-26 22:14:10 +00:00
|
|
|
* 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
|
|
|
|
|
2009-01-07 05:03:13 +00:00
|
|
|
* Tue Jan 06 2009 Luke Macken <lmacken@redhat.com> - 0.2.4-1
|
|
|
|
- Update to 0.2.4
|
|
|
|
|
2008-11-29 15:36:08 +00:00
|
|
|
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.1.10-3
|
|
|
|
- Rebuild for Python 2.6
|
|
|
|
|
2008-05-31 20:47:02 +00:00
|
|
|
* 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.
|