forked from pool/python-kombu
- Update to 2.1.5:
* The url parser removed more than the first leading slash (Issue #121). * SQLAlchemy: Can now specify url using + separator Example:: BrokerConnection("sqla+mysql://localhost/db") * Better support for anonymous queues (Issue #116). Contributed by Michael Barrett. * Connection.as_uri now quotes url parts (Issue #117). * Beanstalk: Can now set message TTR as a message property. Contributed by Andrii Kostenko OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=36
This commit is contained in:
parent
a30ab228f7
commit
88c90dee03
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8a5577f220757749a2b39da26170edfa32d6f3c3481e73ecc109215e83afb135
|
|
||||||
size 245408
|
|
3
kombu-2.1.5.tar.bz2
Normal file
3
kombu-2.1.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:db51eded72a2853e3d63518ac09c9df56907ebd9dec175f0f803270ea93d8e05
|
||||||
|
size 245785
|
@ -1,3 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Apr 13 17:37:56 UTC 2012 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
- Update to 2.1.5:
|
||||||
|
* The url parser removed more than the first leading slash (Issue #121).
|
||||||
|
* SQLAlchemy: Can now specify url using + separator
|
||||||
|
Example::
|
||||||
|
BrokerConnection("sqla+mysql://localhost/db")
|
||||||
|
* Better support for anonymous queues (Issue #116).
|
||||||
|
Contributed by Michael Barrett.
|
||||||
|
* Connection.as_uri now quotes url parts (Issue #117).
|
||||||
|
* Beanstalk: Can now set message TTR as a message property.
|
||||||
|
Contributed by Andrii Kostenko
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Apr 3 16:49:46 UTC 2012 - alexandre@exatati.com.br
|
Tue Apr 3 16:49:46 UTC 2012 - alexandre@exatati.com.br
|
||||||
|
|
||||||
|
@ -15,8 +15,11 @@
|
|||||||
# 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_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||||
|
|
||||||
Name: python-kombu
|
Name: python-kombu
|
||||||
Version: 2.1.4
|
Version: 2.1.5
|
||||||
Release: 0
|
Release: 0
|
||||||
License: BSD-2-Clause
|
License: BSD-2-Clause
|
||||||
Summary: AMQP Messaging Framework for Python
|
Summary: AMQP Messaging Framework for Python
|
||||||
@ -36,11 +39,12 @@ Suggests: couchdb
|
|||||||
Suggests: mongodb
|
Suggests: mongodb
|
||||||
Suggests: rabbitmq-server
|
Suggests: rabbitmq-server
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
%if 0%{?suse_version}
|
||||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
%py_requires
|
||||||
%else
|
%if 0%{?suse_version} > 1110
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%endif
|
%endif
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
An AMQP messaging framework for Python.
|
An AMQP messaging framework for Python.
|
||||||
|
Loading…
Reference in New Issue
Block a user