forked from pool/python-celery
- Update to version 2.5.1:
* Eventlet/Gevent: A small typo caused celeryd to hang when eventlet/gevent
was used, this was because the environment was not monkey patched
early enough.
* Eventlet/Gevent: Another small typo caused the mediator to be started
with eventlet/gevent, which would make celeryd sometimes hang at shutdown.
* Mulitprocessing: Fixed an error occurring if the pool was stopped
before it was properly started.
* Proxy objects now redirects __doc__ and __name__ so help(obj) works.
* Internal timer (timer2) now logs exceptions instead of swallowing them
* celeryctl shell: can now be started with --eventlet or
--gevent options to apply their monkey patches.
- Suggest python-eventlet, python-gevent, python-pymongo, python-pytyrant
- Recommend python-curses, python-pyOpenSSL
- Run testsuite
- Changes file cleanup
- Processes pool: Fixed rare deadlock at shutdown
- Webhook tasks issued the wrong HTTP POST headers
Django and virtualenv together
file directories
* Fixes module import typo in celeryctl
couldn't be written
* Fixed deadlock in worker process handling
* Eventlet: Fixed problem with shutdown
more flexible approach
* CELERY_IMPORTS can now be a scalar value
* Fixed a memory leak when using the thread pool
* Adds EMAIL_USE_TLS to enable secure SMTP connections
where task info would be removed while iterating over it
the CELERY_RESULT_SERIALIZER setting
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-celery?expand=0&rev=48
This commit is contained in:
committed by
Git OBS Bridge
parent
1c131ff188
commit
5338e0d4d4
@@ -15,32 +15,43 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
%{!?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)")}
|
||||
|
||||
Name: python-celery
|
||||
Version: 2.5.1
|
||||
Release: 0
|
||||
Url: http://celeryproject.org
|
||||
Summary: Distributed Task Queue
|
||||
License: BSD-2-Clause
|
||||
Summary: Distributed Task Queue
|
||||
Url: http://celeryproject.org
|
||||
Group: Development/Languages/Python
|
||||
Source: celery-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Source: http://pypi.python.org/packages/source/c/celery/celery-%{version}.tar.gz
|
||||
BuildRequires: python-SQLAlchemy
|
||||
BuildRequires: python-cl
|
||||
BuildRequires: python-curses
|
||||
BuildRequires: python-dateutil
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-distribute
|
||||
BuildRequires: python-eventlet
|
||||
BuildRequires: python-gevent
|
||||
BuildRequires: python-kombu >= 2.1.1
|
||||
BuildRequires: python-mock
|
||||
BuildRequires: python-nose-cover3
|
||||
BuildRequires: python-pyOpenSSL
|
||||
BuildRequires: python-pymongo
|
||||
Requires: python-anyjson
|
||||
Requires: python-python-daemon
|
||||
Requires: python-dateutil
|
||||
Requires: python-django-unittest-depth
|
||||
Requires: python-kombu >= 1.4.3
|
||||
Requires: python-pytyrant
|
||||
%if 0%{?suse_version}
|
||||
%py_requires
|
||||
%if 0%{?suse_version} > 1110
|
||||
Requires: python-kombu >= 2.1.1
|
||||
Recommends: python-curses
|
||||
Recommends: python-pyOpenSSL
|
||||
Suggests: python-eventlet
|
||||
Suggests: python-gevent
|
||||
Suggests: python-pymongo
|
||||
Suggests: python-pytyrant
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%else
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%description
|
||||
Celery is an open source asynchronous task queue/job queue based on
|
||||
@@ -56,11 +67,14 @@ python setup.py build
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
||||
%check
|
||||
python setup.py test
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{python_sitelib}/*
|
||||
%doc Changelog README TODO
|
||||
%{_bindir}/camqadm
|
||||
%{_bindir}/celery*
|
||||
%{python_sitelib}/*
|
||||
|
||||
%changelog
|
||||
|
||||
Reference in New Issue
Block a user