From be407de9f77d752a9a39aa3c2592d0b026012a22516fc77f98775ee672db0461 Mon Sep 17 00:00:00 2001 From: James Oakley Date: Wed, 23 May 2012 22:28:32 +0000 Subject: [PATCH] - Update to 2.7.3.7 * Fixes Python 2.5 support. - 2.7.3.6 - 2012-05-21 * Pool: Can now be used in an event loop, without starting the supporting threads (TimeoutHandler still not supported) * Pool: Process too frequent restart protection now only counts if the process had a non-successful exitcode. * Pool: New options max_restart + max_restart_freq * Pool: The ``WorkerLostError`` message now includes the exitcode of the process that disappeared. - Build HTML docs OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-billiard?expand=0&rev=6 --- billiard-2.7.3.5.tar.gz | 3 --- billiard-2.7.3.7.tar.gz | 3 +++ python-billiard.changes | 15 +++++++++++++++ python-billiard.spec | 12 ++++++++++-- 4 files changed, 28 insertions(+), 5 deletions(-) delete mode 100644 billiard-2.7.3.5.tar.gz create mode 100644 billiard-2.7.3.7.tar.gz diff --git a/billiard-2.7.3.5.tar.gz b/billiard-2.7.3.5.tar.gz deleted file mode 100644 index 9f4afe0..0000000 --- a/billiard-2.7.3.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:adac561ee2c13017563aa69e26627e4ad5325f4381bd4263f968238c32616141 -size 116718 diff --git a/billiard-2.7.3.7.tar.gz b/billiard-2.7.3.7.tar.gz new file mode 100644 index 0000000..f1f633d --- /dev/null +++ b/billiard-2.7.3.7.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d42374ab611357375269cbd5b5575b6476156eddc10d239eb621171f3120a39e +size 120657 diff --git a/python-billiard.changes b/python-billiard.changes index c877f98..f91491d 100644 --- a/python-billiard.changes +++ b/python-billiard.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Wed May 23 22:17:05 UTC 2012 - jfunk@funktronics.ca + +- Update to 2.7.3.7 + * Fixes Python 2.5 support. +- 2.7.3.6 - 2012-05-21 + * Pool: Can now be used in an event loop, without starting the supporting + threads (TimeoutHandler still not supported) + * Pool: Process too frequent restart protection now only counts if the + process had a non-successful exitcode. + * Pool: New options max_restart + max_restart_freq + * Pool: The ``WorkerLostError`` message now includes the exitcode of the + process that disappeared. +- Build HTML docs + ------------------------------------------------------------------- Thu May 17 23:40:18 UTC 2012 - jfunk@funktronics.ca diff --git a/python-billiard.spec b/python-billiard.spec index 6db66eb..6ff604d 100644 --- a/python-billiard.spec +++ b/python-billiard.spec @@ -16,7 +16,7 @@ # Name: python-billiard -Version: 2.7.3.5 +Version: 2.7.3.7 Release: 0 Url: http://github.com/ask/billiard Summary: Python multiprocessing fork @@ -26,6 +26,8 @@ Source: http://pypi.python.org/packages/source/b/billiard/billiard-%{ver BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: python-devel BuildRequires: python-distribute +BuildRequires: python-nose-cover3 +BuildRequires: python-sphinx %if 0%{?suse_version} %py_requires %endif @@ -43,13 +45,19 @@ Python 2.4 and 2.5, and will draw it's fixes/improvements from python-trunk. %build CFLAGS="%{optflags}" python setup.py build +cd Doc +sphinx-build -b html . html %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} +%check +# Tests segfault for soem reason +#python setup.py test + %files %defattr(-,root,root,-) -%doc CHANGES.txt LICENSE.txt README.rst Doc +%doc CHANGES.txt LICENSE.txt README.rst Doc/html %{python_sitearch}/* %changelog