- Update to 2.0.0:
Important Notes - No longer supports Python 2.4. New Transports - django-kombu is now part of Kombu core. - kombu-sqlalchemy is now part of Kombu core. News - kombu.mixins.ConsumerMixin is a mixin class that lets you easily write consumer programs and threads. - SQS Transport: Added support for SQS queue prefixes (Issue #84). - Producer.publish now supports automatic retry. - Producer.publish now supports a declare keyword argument. Fixes - Redis transport: Timeout was multiplied by 1000 seconds when using select for event I/O (Issue #86). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=26
This commit is contained in:
parent
ccec8e0c0a
commit
d54965ec0f
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:33f625f45f4cc0efa501c8f0fc5181685f02d388d9b7d7460e7e9f47c4ae1ebb
|
||||
size 224967
|
3
kombu-2.0.0.tar.bz2
Normal file
3
kombu-2.0.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fc6ae96f686957eef92200c5e5f52f36221fdb7e94b0bebb2360da235dd67e35
|
||||
size 241157
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 17 01:15:23 UTC 2012 - alexandre@exatati.com.br
|
||||
|
||||
- Update to 2.0.0:
|
||||
Important Notes
|
||||
- No longer supports Python 2.4.
|
||||
New Transports
|
||||
- django-kombu is now part of Kombu core.
|
||||
- kombu-sqlalchemy is now part of Kombu core.
|
||||
News
|
||||
- kombu.mixins.ConsumerMixin is a mixin class that lets you
|
||||
easily write consumer programs and threads.
|
||||
- SQS Transport: Added support for SQS queue prefixes (Issue #84).
|
||||
- Producer.publish now supports automatic retry.
|
||||
- Producer.publish now supports a declare keyword argument.
|
||||
Fixes
|
||||
- Redis transport: Timeout was multiplied by 1000 seconds when
|
||||
using select for event I/O (Issue #86).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 30 14:55:08 UTC 2011 - alexandre@exatati.com.br
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-kombu
|
||||
#
|
||||
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -19,7 +19,7 @@
|
||||
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
|
||||
Name: python-kombu
|
||||
Version: 1.5.1
|
||||
Version: 2.0.0
|
||||
Release: 0
|
||||
License: BSD-2-Clause
|
||||
Summary: AMQP Messaging Framework for Python
|
||||
@ -54,7 +54,7 @@ provide proven and tested solutions to common messaging problems.
|
||||
%setup -q -n kombu-%{version}
|
||||
|
||||
%build
|
||||
CFLAGS="%{optflags}" python setup.py build
|
||||
python setup.py build
|
||||
|
||||
%install
|
||||
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
|
||||
|
Loading…
Reference in New Issue
Block a user