From db851a1b569dd76410bdb903a52ecfe0e05a3922 Mon Sep 17 00:00:00 2001 From: Luke Macken Date: Fri, 5 Jun 2009 13:58:43 +0000 Subject: [PATCH] - Only run the test suite on Fedora 11+, which has Py2.6 and the multiprocessing module. We can disable this once the compat module is packaged for F10 and below. --- python-decorator.spec | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/python-decorator.spec b/python-decorator.spec index 331ad12..d0c7355 100644 --- a/python-decorator.spec +++ b/python-decorator.spec @@ -3,7 +3,7 @@ Name: python-decorator Version: 3.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Module to simplify usage of decorators Group: Development/Languages @@ -41,7 +41,10 @@ rm -rf $RPM_BUILD_ROOT rm -rf $RPM_BUILD_ROOT %check +# Until we get the python-multiprocessing backport packaged +%if 0%{?fedora} >= 11 nosetests --with-doctest +%endif %files %defattr(-,root,root,-) @@ -49,6 +52,11 @@ nosetests --with-doctest %{python_sitelib}/* %changelog +* Sun May 31 2009 Luke Macken - 3.0.1-2 +- Only run the test suite on Fedora 11, which has Py2.6 and the multiprocessing + module. We can disable this once the compat module is packaged for F10 and + below. + * Thu May 21 2009 Toshio Kuratomi - 3.0.1-1 - Update to upstream release 3.0.1.