15
0
forked from pool/python-celery

- Update to 2.4.1:

* celeryctl inspect commands was missing output.
  * processes pool: Decrease polling interval for less idle CPU usage.
  * processes pool: MaybeEncodingError was not wrapped in ExceptionInfo
    (Issue #524).
  * celeryd: would silence errors occuring after task consumer started.
  * logging: Fixed a bug where unicode in stdout redirected log messages
    couldn't be written (Issue #522).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=40
This commit is contained in:
Alexandre Rogoski
2011-11-07 23:30:03 +00:00
committed by Git OBS Bridge
parent 3cf729051d
commit e5fd84a88b
4 changed files with 21 additions and 13 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd80cee8c9472a0177aaff983067ab1682b89d42e37d440ed4a4554fe96501cd
size 810215

3
celery-2.4.1.tar.bz2 Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d8d56feed7090a0c6cc32abd0fc0b6d33d9fb1c76e3afa903e53da0698e869c9
size 810135

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon Nov 7 23:26:56 UTC 2011 - alexandre@exatati.com.br
- Update to 2.4.1:
* celeryctl inspect commands was missing output.
* processes pool: Decrease polling interval for less idle CPU usage.
* processes pool: MaybeEncodingError was not wrapped in ExceptionInfo
(Issue #524).
* celeryd: would silence errors occuring after task consumer started.
* logging: Fixed a bug where unicode in stdout redirected log messages
couldn't be written (Issue #522).
-------------------------------------------------------------------
Fri Nov 4 17:20:46 UTC 2011 - alexandre@exatati.com.br

View File

@@ -15,20 +15,17 @@
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
# norootforbuild
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
%define mod_name celery
Name: python-%{mod_name}
Version: 2.4.0
Name: python-celery
Version: 2.4.1
Release: 0
Url: http://celeryproject.org
Summary: Distributed Task Queue
License: BSD
Group: Development/Languages/Python
Source: %{mod_name}-%{version}.tar.bz2
Source: celery-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: python-devel
BuildRequires: python-distribute
@@ -51,11 +48,10 @@ distributed message passing. It is focused on real-time operation,
but supports scheduling as well.
%prep
%setup -q -n %{mod_name}-%{version}
%setup -q -n celery-%{version}
%build
export CFLAGS="%{optflags}"
python setup.py build
CFLAGS="%{optflags}" python setup.py build
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
@@ -65,7 +61,7 @@ rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%python_sitelib/*
%{python_sitelib}/*
%doc Changelog README TODO
%{_bindir}/camqadm
%{_bindir}/celery*