From ad43ea6e208b66f236399246c1036c7d81eb91603fe2ae108fd34a5151a45e17 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 22 Sep 2011 17:05:09 +0000 Subject: [PATCH 1/5] - Update to 1.4.0: - Adds module kombu.mixins. - New example: Task Queue Example - MongoDB transport did not work with MongoDB >= 2.0 (Issue #66) - Redis-py version check did not account for beta identifiers in version string. - Producer and Consumer now accepts a connection instance as the first argument. - BrokerConnection has aquired a connected attribute that can be used to check if the connection instance has established a connection. - ConnectionPool.acquire_channel now returns the connections default channel rather than establising a new channel that must be manually handled. - Added kombu.common.maybe_declare - kombu.compat.entry_to_queue() has been moved to kombu.common - New module kombu.clocks now contains an implementation of Lamports logical clock. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=19 --- kombu-1.3.5.tar.bz2 | 3 --- kombu-1.4.0.tar.bz2 | 3 +++ python-kombu.changes | 21 +++++++++++++++++++++ python-kombu.spec | 2 +- 4 files changed, 25 insertions(+), 4 deletions(-) delete mode 100644 kombu-1.3.5.tar.bz2 create mode 100644 kombu-1.4.0.tar.bz2 diff --git a/kombu-1.3.5.tar.bz2 b/kombu-1.3.5.tar.bz2 deleted file mode 100644 index de898e1..0000000 --- a/kombu-1.3.5.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0dc63365b10c2f060e161b7e0b1ed23dc6e4c2d7333ae2edc924e447b9543336 -size 213058 diff --git a/kombu-1.4.0.tar.bz2 b/kombu-1.4.0.tar.bz2 new file mode 100644 index 0000000..c6eb1ad --- /dev/null +++ b/kombu-1.4.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08d9389f10c4b136c77fbeaff17a30c80c98ee0167b1fd87d6b1adc0d70433a2 +size 220344 diff --git a/python-kombu.changes b/python-kombu.changes index 4aeb459..d0f10db 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,24 @@ +------------------------------------------------------------------- +Thu Sep 22 16:59:42 UTC 2011 - alexandre@exatati.com.br + +- Update to 1.4.0: + - Adds module kombu.mixins. + - New example: Task Queue Example + - MongoDB transport did not work with MongoDB >= 2.0 (Issue #66) + - Redis-py version check did not account for beta identifiers in + version string. + - Producer and Consumer now accepts a connection instance as the + first argument. + - BrokerConnection has aquired a connected attribute that can be + used to check if the connection instance has established a + connection. + - ConnectionPool.acquire_channel now returns the connections + default channel rather than establising a new channel that must be manually handled. + - Added kombu.common.maybe_declare + - kombu.compat.entry_to_queue() has been moved to kombu.common + - New module kombu.clocks now contains an implementation of + Lamports logical clock. + ------------------------------------------------------------------- Mon Sep 19 18:45:36 UTC 2011 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 232138a..f53ebf9 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -21,7 +21,7 @@ %define mod_name kombu Name: python-%{mod_name} -Version: 1.3.5 +Version: 1.4.0 Release: 0 License: BSD License Summary: AMQP Messaging Framework for Python From e16065ad07ce4a92e71e225d7058bd7075fb73964ad7b3baac49a8dfd7b03c6e Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Mon, 26 Sep 2011 18:48:26 +0000 Subject: [PATCH 2/5] - Update to 1.4.1: - 1.4.0 broke the producer pool, resulting in new connections being established for every acquire. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=20 --- kombu-1.4.0.tar.bz2 | 3 --- kombu-1.4.1.tar.bz2 | 3 +++ python-kombu.changes | 8 ++++++++ python-kombu.spec | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) delete mode 100644 kombu-1.4.0.tar.bz2 create mode 100644 kombu-1.4.1.tar.bz2 diff --git a/kombu-1.4.0.tar.bz2 b/kombu-1.4.0.tar.bz2 deleted file mode 100644 index c6eb1ad..0000000 --- a/kombu-1.4.0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:08d9389f10c4b136c77fbeaff17a30c80c98ee0167b1fd87d6b1adc0d70433a2 -size 220344 diff --git a/kombu-1.4.1.tar.bz2 b/kombu-1.4.1.tar.bz2 new file mode 100644 index 0000000..e96a4b7 --- /dev/null +++ b/kombu-1.4.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6db667f8e043e216fd4bb18f42e3e737e9140c1c74942b583e155e253a43d35e +size 221983 diff --git a/python-kombu.changes b/python-kombu.changes index d0f10db..eb92196 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Mon Sep 26 18:46:36 UTC 2011 - alexandre@exatati.com.br + +- Update to 1.4.1: + - 1.4.0 broke the producer pool, resulting in new connections being + established for every acquire. + + ------------------------------------------------------------------- Thu Sep 22 16:59:42 UTC 2011 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index f53ebf9..4711b37 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -21,7 +21,7 @@ %define mod_name kombu Name: python-%{mod_name} -Version: 1.4.0 +Version: 1.4.1 Release: 0 License: BSD License Summary: AMQP Messaging Framework for Python From f89e389f98e74a0a933337d60ae27a63c257461f9df0cb26784d2c84acab35aa Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Wed, 26 Oct 2011 18:18:43 +0000 Subject: [PATCH 3/5] =?UTF-8?q?-=20Update=20to=201.4.2:=20=20=20-=20Eventi?= =?UTF-8?q?o:=20Polling=20should=20ignore=20errno.EINTR=20=20=20-=20SQS:?= =?UTF-8?q?=20str.encode=20did=20only=20start=20accepting=20kwargs=20after?= =?UTF-8?q?=20Py2.7.=20=20=20-=20simple=5Ftask=5Fqueue=20example=20didn?= =?UTF-8?q?=E2=80=99t=20run=20correctly=20(Issue=20#72).=20=20=20-=20Empty?= =?UTF-8?q?=20messages=20would=20not=20raise=20an=20exception=20not=20able?= =?UTF-8?q?=20to=20be=20=20=20=20=20handled=20by=20on=5Fdecode=5Ferror=20(?= =?UTF-8?q?Issue=20#72)=20=20=20-=20CouchDB:=20Properly=20authenticate=20i?= =?UTF-8?q?f=20user/password=20set=20(Issue=20#70)=20=20=20-=20BrokerConne?= =?UTF-8?q?ction.Consumer=20had=20the=20wrong=20signature.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=21 --- kombu-1.4.1.tar.bz2 | 3 --- kombu-1.4.2.tar.bz2 | 3 +++ python-kombu.changes | 12 ++++++++++++ python-kombu.spec | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) delete mode 100644 kombu-1.4.1.tar.bz2 create mode 100644 kombu-1.4.2.tar.bz2 diff --git a/kombu-1.4.1.tar.bz2 b/kombu-1.4.1.tar.bz2 deleted file mode 100644 index e96a4b7..0000000 --- a/kombu-1.4.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6db667f8e043e216fd4bb18f42e3e737e9140c1c74942b583e155e253a43d35e -size 221983 diff --git a/kombu-1.4.2.tar.bz2 b/kombu-1.4.2.tar.bz2 new file mode 100644 index 0000000..3ddfc55 --- /dev/null +++ b/kombu-1.4.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:893e765f9984e922f73787aeab0c07cb8eab6a30b856044a9b02c870190b4df5 +size 222668 diff --git a/python-kombu.changes b/python-kombu.changes index eb92196..8a19a78 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Wed Oct 26 18:12:33 UTC 2011 - alexandre@exatati.com.br + +- Update to 1.4.2: + - Eventio: Polling should ignore errno.EINTR + - SQS: str.encode did only start accepting kwargs after Py2.7. + - simple_task_queue example didn’t run correctly (Issue #72). + - Empty messages would not raise an exception not able to be + handled by on_decode_error (Issue #72) + - CouchDB: Properly authenticate if user/password set (Issue #70) + - BrokerConnection.Consumer had the wrong signature. + ------------------------------------------------------------------- Mon Sep 26 18:46:36 UTC 2011 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 4711b37..ba5f768 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -21,7 +21,7 @@ %define mod_name kombu Name: python-%{mod_name} -Version: 1.4.1 +Version: 1.4.2 Release: 0 License: BSD License Summary: AMQP Messaging Framework for Python From f985f88490b90dbf92832aa15272cff0834bef6b66498ec0cb92e11c65e493a7 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 27 Oct 2011 22:33:54 +0000 Subject: [PATCH 4/5] - Update to 1.4.3: - Fixes bug in ProducerPool where too many resources would be acquired. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=22 --- kombu-1.4.2.tar.bz2 | 3 --- kombu-1.4.3.tar.bz2 | 3 +++ python-kombu.changes | 6 ++++++ python-kombu.spec | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 kombu-1.4.2.tar.bz2 create mode 100644 kombu-1.4.3.tar.bz2 diff --git a/kombu-1.4.2.tar.bz2 b/kombu-1.4.2.tar.bz2 deleted file mode 100644 index 3ddfc55..0000000 --- a/kombu-1.4.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:893e765f9984e922f73787aeab0c07cb8eab6a30b856044a9b02c870190b4df5 -size 222668 diff --git a/kombu-1.4.3.tar.bz2 b/kombu-1.4.3.tar.bz2 new file mode 100644 index 0000000..d525cc2 --- /dev/null +++ b/kombu-1.4.3.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541813f23655dcd5c48bc55b5997f641eec9d3686844fd768c03bba28b76a743 +size 222679 diff --git a/python-kombu.changes b/python-kombu.changes index 8a19a78..16a8d43 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Oct 27 22:33:03 UTC 2011 - alexandre@exatati.com.br + +- Update to 1.4.3: + - Fixes bug in ProducerPool where too many resources would be acquired. + ------------------------------------------------------------------- Wed Oct 26 18:12:33 UTC 2011 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index ba5f768..0283ff0 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -21,7 +21,7 @@ %define mod_name kombu Name: python-%{mod_name} -Version: 1.4.2 +Version: 1.4.3 Release: 0 License: BSD License Summary: AMQP Messaging Framework for Python From c99e61b73cfec9519bc9a54853fa5fed6b1334dec64d5f5a68e5c5743b8c6c0e Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Thu, 24 Nov 2011 11:39:42 +0000 Subject: [PATCH 5/5] - Set license to SPDX style (BSD-2-Clause) - Removed outdated %clean section OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=23 --- python-kombu.changes | 6 ++++++ python-kombu.spec | 21 +++++++-------------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/python-kombu.changes b/python-kombu.changes index 16a8d43..d267ab0 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Nov 24 10:39:23 UTC 2011 - saschpe@suse.de + +- Set license to SPDX style (BSD-2-Clause) +- Removed outdated %clean section + ------------------------------------------------------------------- Thu Oct 27 22:33:03 UTC 2011 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 0283ff0..3b4e1b8 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -15,19 +15,15 @@ # 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)")} -%define mod_name kombu - -Name: python-%{mod_name} +Name: python-kombu Version: 1.4.3 Release: 0 -License: BSD License +License: BSD-2-Clause Summary: AMQP Messaging Framework for Python Url: http://github.com/ask/kombu/ Group: Development/Languages/Python -Source: %{mod_name}-%{version}.tar.bz2 +Source: kombu-%{version}.tar.bz2 BuildRequires: python-devel BuildRequires: python-distribute Requires: python-amqplib @@ -39,6 +35,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildArch: noarch %endif %endif +%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} %description An AMQP messaging framework for Python. @@ -53,17 +50,13 @@ providing an idiomatic high-level interface for the AMQP protocol, and also provide proven and tested solutions to common messaging problems. %prep -%setup -q -n %{mod_name}-%{version} +%setup -q -n kombu-%{version} %build -export CFLAGS="%{optflags}" -%{__python} setup.py build +python setup.py build %install -%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} - -%clean -%{__rm} -rf %{buildroot} +python setup.py install --prefix=%{_prefix} --root=%{buildroot} %files %defattr(-,root,root,-)