From 8700ecce4a641ccbf1fa9c951adb2defb1ecf003afa0a63bc86b264eebf903ca Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Sat, 10 Mar 2012 17:07:06 +0000 Subject: [PATCH] - Update to version 2.1.1: * Connection URLs now supports encoded characters. * Fixed a case where connection pool could not recover from connection loss. * We now patch amqplib's ``__del__`` method to skip trying to close the socket if it is not connected, as this resulted in an annoying warning. * Compression can now be used with binary message payloads. - Don't install INSTALL - Run testsuite OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=28 --- kombu-2.1.0.tar.bz2 | 3 --- kombu-2.1.1.tar.gz | 3 +++ python-kombu.changes | 13 ++++++++++++- python-kombu.spec | 22 +++++++++++++--------- 4 files changed, 28 insertions(+), 13 deletions(-) delete mode 100644 kombu-2.1.0.tar.bz2 create mode 100644 kombu-2.1.1.tar.gz diff --git a/kombu-2.1.0.tar.bz2 b/kombu-2.1.0.tar.bz2 deleted file mode 100644 index 7351f9b..0000000 --- a/kombu-2.1.0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cdc2aab356fbc80f68783dc617d614800607a06a34f826132c1fc70946cb4843 -size 243045 diff --git a/kombu-2.1.1.tar.gz b/kombu-2.1.1.tar.gz new file mode 100644 index 0000000..1eb0e5d --- /dev/null +++ b/kombu-2.1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06adac6f2b330b8abe92fa04a44190c0e23b2c3635545afa2b33d7a31d51383c +size 268274 diff --git a/python-kombu.changes b/python-kombu.changes index c48d0c0..6d7200d 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Sat Mar 10 17:00:40 UTC 2012 - saschpe@gmx.de + +- Update to version 2.1.1: + * Connection URLs now supports encoded characters. + * Fixed a case where connection pool could not recover from connection loss. + * We now patch amqplib's ``__del__`` method to skip trying to close the socket + if it is not connected, as this resulted in an annoying warning. + * Compression can now be used with binary message payloads. +- Don't install INSTALL +- Run testsuite + ------------------------------------------------------------------- Sat Feb 4 18:00:49 UTC 2012 - alexandre@exatati.com.br @@ -10,7 +22,6 @@ Sat Feb 4 18:00:49 UTC 2012 - alexandre@exatati.com.br (Note terribly latency has been experienced with the new pika versions, so this is still an experimental transport). - ------------------------------------------------------------------- Tue Jan 17 01:15:23 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 3f979d2..4b08f58 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -15,28 +15,29 @@ # 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.0 +Version: 2.1.1 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.bz2 +Source: kombu-%{version}.tar.gz +BuildRequires: python-amqplib +BuildRequires: python-anyjson BuildRequires: python-devel BuildRequires: python-distribute +BuildRequires: python-mock +BuildRequires: python-nose-cover3 Requires: python-amqplib Requires: python-anyjson BuildRoot: %{_tmppath}/%{name}-%{version}-build -%if 0%{?suse_version} -%py_requires -%if %{?suse_version: %{suse_version} > 1110} +%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 An AMQP messaging framework for Python. @@ -59,9 +60,12 @@ python setup.py build %install python setup.py install --prefix=%{_prefix} --root=%{buildroot} +%check +python setup.py test + %files %defattr(-,root,root,-) -%doc AUTHORS Changelog FAQ INSTALL README THANKS TODO +%doc AUTHORS Changelog FAQ README THANKS TODO %{python_sitelib}/* %changelog