Accepting request 114451 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/114451
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-kombu?expand=0&rev=12
This commit is contained in:
Stephan Kulow 2012-04-20 13:19:41 +00:00 committed by Git OBS Bridge
commit 20f9b4e1ac
4 changed files with 74 additions and 9 deletions

View File

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

3
kombu-2.1.5.tar.bz2 Normal file
View File

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

View File

@ -1,3 +1,64 @@
-------------------------------------------------------------------
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
- Update to 2.1.4:
* MongoDB: URL parsing are now delegated to the pymongo library
(Fixes Issue #103 and Issue #87).
Fix contributed by Flavio Percoco Premoli and James Sullivan
* SQS: A bug caused SimpleDB to be used even if sdb persistence
was not enabled (Issue #108).
Fix contributed by Anand Kumria.
* Django: Transaction was committed in the wrong place, causing
data cleanup to fail (Issue #115).
Fix contributed by Daisuke Fujiwara.
* MongoDB: Now supports replica set URLs.
Contributed by Flavio Percoco Premoli.
* Redis: Now raises a channel error if a queue key that is currently
being consumed from disappears.
Fix contributed by Stephan Jaekel.
* All transport 'channel_errors' lists now includes
kombu.exception.StdChannelError.
* All kombu exceptions now inherit from a common
kombu.exceptions.KombuError.
-------------------------------------------------------------------
Tue Mar 27 08:35:53 UTC 2012 - saschpe@suse.de
- Change rabbitmq-server recommends to suggests, OpenStack doesn't like that
- Simplified macro usage
- Use upstream tarball
-------------------------------------------------------------------
Tue Mar 20 17:42:53 UTC 2012 - alexandre@exatati.com.br
- Update to 2.1.3:
* Fixes Jython compatibility issues.
* Fixes Python 2.5 compatibility issues.
-------------------------------------------------------------------
Wed Mar 14 13:45:07 UTC 2012 - alexandre@exatati.com.br
- Add BuildRequires python-unittest2 to fix SLE builds.
-------------------------------------------------------------------
Wed Mar 14 13:26:04 UTC 2012 - alexandre@exatati.com.br
- Do not touch files without a submitrequest.
-------------------------------------------------------------------
Sat Mar 10 17:49:39 UTC 2012 - saschpe@gmx.de

View File

@ -15,32 +15,36 @@
# 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
Version: 2.1.1
Version: 2.1.5
Release: 0
License: BSD-2-Clause
Summary: AMQP Messaging Framework for Python
Url: http://github.com/ask/kombu/
Group: Development/Languages/Python
Source: kombu-%{version}.tar.gz
Source: kombu-%{version}.tar.bz2
BuildRequires: python-amqplib
BuildRequires: python-anyjson
BuildRequires: python-devel
BuildRequires: python-distribute
BuildRequires: python-mock
BuildRequires: python-nose-cover3
BuildRequires: python-unittest2
Requires: python-amqplib
Requires: python-anyjson
Requires: rabbitmq-server
Suggests: couchdb
Suggests: mongodb
Suggests: rabbitmq-server
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
%if 0%{?suse_version}
%py_requires
%if 0%{?suse_version} > 1110
BuildArch: noarch
%endif
%endif
%description
An AMQP messaging framework for Python.