Accepting request 80622 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/80622 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kombu?expand=0&rev=5
This commit is contained in:
commit
80c6fda001
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:09885c2818bc4409518ed9c0b7b33bd9cb3f97d0aee156a697a1a2cf09d961a0
|
|
||||||
size 207710
|
|
3
kombu-1.2.1.tar.bz2
Normal file
3
kombu-1.2.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:1f7ad3559c44b9d6bff0dc2fee66e01e764433ecda612b0dd2bcdeaf67d064e5
|
||||||
|
size 210136
|
@ -1,3 +1,38 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 29 12:44:33 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.2.1:
|
||||||
|
* Now depends on amqplib >= 1.0.0.
|
||||||
|
* Redis: Now automatically deletes auto_delete queues at basic_cancel.
|
||||||
|
* serialization.unregister added so it is possible to remove unwanted
|
||||||
|
seralizers.
|
||||||
|
* Fixes MemoryError while importing ctypes on SELinux (Issue #52).
|
||||||
|
* BrokerConnection.autoretry is a version of ensure that works
|
||||||
|
with arbitrary functions (i.e. it does not need an associated object
|
||||||
|
that implements the revive method.
|
||||||
|
* ConnectionPool.acquire no longer force establishes the connection.
|
||||||
|
The connection will be established as needed.
|
||||||
|
* BrokerConnection.ensure now supports an on_revive callback
|
||||||
|
that is applied whenever the connection is re-established.
|
||||||
|
* Consumer.consuming_from(queue) returns True if the Consumer is
|
||||||
|
consuming from queue.
|
||||||
|
* Consumer.cancel_by_queue did not remove the queue from queues.
|
||||||
|
* compat.ConsumerSet.add_queue_from_dict now automatically declared
|
||||||
|
the queue if auto_declare set.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Jul 15 12:52:07 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 1.2.0:
|
||||||
|
* Virtual: Fixes cyclic reference in Channel.close (Issue #49).
|
||||||
|
* Producer.publish: Can now set additional properties using keyword
|
||||||
|
arguments (Issue #48).
|
||||||
|
* Adds Queue.no_ack option to control the no_ack option for individual queues.
|
||||||
|
* Recent versions broke pylibrabbitmq support.
|
||||||
|
* SimpleQueue and SimpleBuffer can now be used as contexts.
|
||||||
|
* Test requirements specifies PyYAML==3.09 as 3.10 dropped Python 2.4 support
|
||||||
|
* Now properly reports default values in Connection.info/.as_uri
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Jun 13 22:42:00 UTC 2011 - alexandre@exatati.com.br
|
Mon Jun 13 22:42:00 UTC 2011 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@ -11,26 +11,25 @@
|
|||||||
# case the license is the MIT License). An "Open Source License" is a
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
#
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# 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_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)")}
|
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
|
|
||||||
%define mod_name kombu
|
%define mod_name kombu
|
||||||
|
|
||||||
Name: python-%{mod_name}
|
Name: python-%{mod_name}
|
||||||
Version: 1.1.6
|
Version: 1.2.1
|
||||||
Release: 1
|
Release: 0
|
||||||
License: BSD License
|
License: BSD License
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
Url: http://github.com/ask/kombu/
|
Url: http://github.com/ask/kombu/
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Source: %{mod_name}-%{version}.tar.bz2
|
Source: %{mod_name}-%{version}.tar.bz2
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: python-setuptools
|
BuildRequires: python-distribute
|
||||||
Requires: python-amqplib
|
Requires: python-amqplib
|
||||||
Requires: python-anyjson
|
Requires: python-anyjson
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user