From 865d1c7c9969ff5a4afeed0d7374bf4dd7774d187ac9048b3762d86199739c31 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 26 Jul 2012 00:07:12 +0000 Subject: [PATCH 1/8] - Update to 2.3.0: - New pyamqp:// transport! The new py-amqp library is a fork of amqplib started with the following goals: - Uses AMQP 0.9.1 instead of 0.8 - Should support all RabbitMQ extensions - API compatible with librabbitmq so that it can be used as a pure-python replacement in environments where rabbitmq-c cannot be compiled. py-amqp: http://amqp.readthedocs.org/ If you start using use py-amqp instead of amqplib you can enjoy many advantages including: - Heartbeat support (Issue #79 + Issue #131) - Consumer Cancel Notifications (Issue #131) - Publisher Confirms amqplib has not been updated in a long while, so maintaining our own fork ensures that we can quickly roll out new features and fixes without resorting to monkey patching. To use the py-amqp transport you must install the amqp library: $ pip install amqp and change the connection URL to use the correct transport: >>> conn = Connection('pyamqp://guest:guest@localhost//') The pyamqp:// transport will be the default fallback transport in Kombu version 3.0, when librabbitmq is not installed, and librabbitmq will also be updated to support the same features. - Connection now supports heartbeat argument. If enabled you must make sure to manually maintain heartbeats by calling the Connection.heartbeat_check at twice the rate of the specified heartbeat interval. E.g. if you have Connection(heartbeat=10), OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=47 --- kombu-2.2.6.tar.gz | 3 --- kombu-2.3.0.tar.gz | 3 +++ python-kombu.changes | 63 ++++++++++++++++++++++++++++++++++++++++++++ python-kombu.spec | 2 +- 4 files changed, 67 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.2.6.tar.gz create mode 100644 kombu-2.3.0.tar.gz diff --git a/kombu-2.2.6.tar.gz b/kombu-2.2.6.tar.gz deleted file mode 100644 index 97ca9bb..0000000 --- a/kombu-2.2.6.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff20487a3f322e9acc435d8435879fb65e8f087d597e28395987b5db660935a1 -size 285888 diff --git a/kombu-2.3.0.tar.gz b/kombu-2.3.0.tar.gz new file mode 100644 index 0000000..1f47584 --- /dev/null +++ b/kombu-2.3.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c138c165f9b2d289ca55a47ccf10e35b9f23cea89a621a104b9dfec08604b20d +size 288148 diff --git a/python-kombu.changes b/python-kombu.changes index f2ae885..81d0452 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,66 @@ +------------------------------------------------------------------- +Thu Jul 26 00:01:34 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.3.0: + - New pyamqp:// transport! + The new py-amqp library is a fork of amqplib started with the + following goals: + - Uses AMQP 0.9.1 instead of 0.8 + - Should support all RabbitMQ extensions + - API compatible with librabbitmq so that it can be used + as a pure-python replacement in environments where rabbitmq-c cannot + be compiled. + + py-amqp: http://amqp.readthedocs.org/ + + If you start using use py-amqp instead of amqplib you can enjoy many + advantages including: + + - Heartbeat support (Issue #79 + Issue #131) + - Consumer Cancel Notifications (Issue #131) + - Publisher Confirms + + amqplib has not been updated in a long while, so maintaining our own fork + ensures that we can quickly roll out new features and fixes without + resorting to monkey patching. + + To use the py-amqp transport you must install the amqp library: + + $ pip install amqp + + and change the connection URL to use the correct transport: + + >>> conn = Connection('pyamqp://guest:guest@localhost//') + + + The pyamqp:// transport will be the default fallback transport + in Kombu version 3.0, when librabbitmq is not installed, + and librabbitmq will also be updated to support the same features. + + - Connection now supports heartbeat argument. + If enabled you must make sure to manually maintain heartbeats + by calling the Connection.heartbeat_check at twice the rate + of the specified heartbeat interval. + + E.g. if you have Connection(heartbeat=10), + then you must call Connection.heartbeat_check() every 5 seconds. + + if the server has not sent heartbeats at a suitable rate then + the heartbeat check method must raise an error that is listed + in Connection.connection_errors. + + The attribute Connection.supports_heartbeats has been added + for the ability to inspect if a transport supports heartbeats + or not. + + Calling heartbeat_check on a transport that does + not support heartbeats results in a noop operation. + + - SQS: Fixed bug with invalid characters in queue names. + Fix contributed by Zach Smith. + - utils.reprcall: Fixed typo where kwargs argument was an empty tuple by + default, and not an empty dict. + ------------------------------------------------------------------- Wed Jul 11 12:52:40 UTC 2012 - saschpe@suse.de diff --git a/python-kombu.spec b/python-kombu.spec index 492db65..6dedad9 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.2.6 +Version: 2.3.0 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python From 980de3e33f3c7276a39b89eeb00a0ee3cddc15d1634958eee0ff7253f4164734 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Wed, 1 Aug 2012 19:05:36 +0000 Subject: [PATCH 2/8] - Update to 2.3.2: - Fixes problem with deserialization in Python 3. - Aditional changes from 2.3.1: - librabbitmq: Can now handle messages that does not have a content_encoding/content_type set (Issue #149). Fix contributed by C Anthony Risinger. - Beanstalk: Now uses localhost by default if the URL does not contain a host. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=48 --- kombu-2.3.0.tar.gz | 3 --- kombu-2.3.2.tar.gz | 3 +++ python-kombu.changes | 14 ++++++++++++++ python-kombu.spec | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.3.0.tar.gz create mode 100644 kombu-2.3.2.tar.gz diff --git a/kombu-2.3.0.tar.gz b/kombu-2.3.0.tar.gz deleted file mode 100644 index 1f47584..0000000 --- a/kombu-2.3.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c138c165f9b2d289ca55a47ccf10e35b9f23cea89a621a104b9dfec08604b20d -size 288148 diff --git a/kombu-2.3.2.tar.gz b/kombu-2.3.2.tar.gz new file mode 100644 index 0000000..4fd0aa6 --- /dev/null +++ b/kombu-2.3.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3010c0b4d47ad1a3f3e815ec902f7c3818cead3d2778659bd924e88db421d70b +size 288062 diff --git a/python-kombu.changes b/python-kombu.changes index 81d0452..6ec4ce7 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,17 @@ +------------------------------------------------------------------- +Wed Aug 1 18:57:38 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.3.2: + - Fixes problem with deserialization in Python 3. +- Aditional changes from 2.3.1: + - librabbitmq: Can now handle messages that does not have a + content_encoding/content_type set (Issue #149). + + Fix contributed by C Anthony Risinger. + + - Beanstalk: Now uses localhost by default if the URL does not + contain a host. + ------------------------------------------------------------------- Thu Jul 26 00:01:34 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 6dedad9..485b819 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.3.0 +Version: 2.3.2 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python From e5dd14f468468e507be9c22b64d73479d9d6323ff70add98af4b72f100def5b5 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Fri, 17 Aug 2012 20:36:07 +0000 Subject: [PATCH 3/8] - Update to 2.4.0: - New experimental ZeroMQ transport. Contributed by John Watson. - Redis: Ack timed-out messages were not restored when using the eventloop. - Now uses pickle protocol 2 by default to be cross-compatible with Python 3. The protocol can also now be changed using the PICKLE_PROTOCOL environment variable. - Adds Transport.supports_ev attribute. - Pika: Queue purge was not working properly. Fix contributed by Steeve Morin. - Pika backend was no longer working since Kombu 2.3 Fix contributed by Steeve Morin. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=49 --- kombu-2.3.2.tar.gz | 3 --- kombu-2.4.0.tar.gz | 3 +++ python-kombu.changes | 16 ++++++++++++++++ python-kombu.spec | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.3.2.tar.gz create mode 100644 kombu-2.4.0.tar.gz diff --git a/kombu-2.3.2.tar.gz b/kombu-2.3.2.tar.gz deleted file mode 100644 index 4fd0aa6..0000000 --- a/kombu-2.3.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3010c0b4d47ad1a3f3e815ec902f7c3818cead3d2778659bd924e88db421d70b -size 288062 diff --git a/kombu-2.4.0.tar.gz b/kombu-2.4.0.tar.gz new file mode 100644 index 0000000..331f0bf --- /dev/null +++ b/kombu-2.4.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2791c4e2bf8667b216a5d4de24a64e371e2249cfd361e658a6623b74f0340957 +size 290239 diff --git a/python-kombu.changes b/python-kombu.changes index 6ec4ce7..4973d61 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,19 @@ +------------------------------------------------------------------- +Fri Aug 17 20:24:04 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.4.0: + - New experimental ZeroMQ transport. + Contributed by John Watson. + - Redis: Ack timed-out messages were not restored when using the eventloop. + - Now uses pickle protocol 2 by default to be cross-compatible with Python 3. + The protocol can also now be changed using the PICKLE_PROTOCOL + environment variable. + - Adds Transport.supports_ev attribute. + - Pika: Queue purge was not working properly. + Fix contributed by Steeve Morin. + - Pika backend was no longer working since Kombu 2.3 + Fix contributed by Steeve Morin. + ------------------------------------------------------------------- Wed Aug 1 18:57:38 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 485b819..3921e79 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.3.2 +Version: 2.4.0 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python From f34966a9c7223d84f1311a4a516f670b16db6d62595e12efc6ca9482126b284d Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Fri, 24 Aug 2012 19:56:58 +0000 Subject: [PATCH 4/8] - Removed tests as qe do not have python-amqp (only python-amqplib). - Update to 2.4.2: - Having an empty transport name broke in 2.4.1. - Aditional changes from 2.4.1: - Redis: Fixed race condition that could cause the consumer to crash (Issue #151) Often leading to the error message "could not convert string to float" - Connection retry could cause an inifite loop (Issue #145). - The amqp alias is now resolved at runtime, so that eventlet detection works even if patching was done later. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=50 --- kombu-2.4.0.tar.gz | 3 --- kombu-2.4.2.tar.gz | 3 +++ python-kombu.changes | 15 +++++++++++++++ python-kombu.spec | 6 +++--- 4 files changed, 21 insertions(+), 6 deletions(-) delete mode 100644 kombu-2.4.0.tar.gz create mode 100644 kombu-2.4.2.tar.gz diff --git a/kombu-2.4.0.tar.gz b/kombu-2.4.0.tar.gz deleted file mode 100644 index 331f0bf..0000000 --- a/kombu-2.4.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2791c4e2bf8667b216a5d4de24a64e371e2249cfd361e658a6623b74f0340957 -size 290239 diff --git a/kombu-2.4.2.tar.gz b/kombu-2.4.2.tar.gz new file mode 100644 index 0000000..f5bd5ef --- /dev/null +++ b/kombu-2.4.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383c28b787360890ad049ab8a271a7bde782e8feb1c4ff1b3678e0199944ee22 +size 290518 diff --git a/python-kombu.changes b/python-kombu.changes index 4973d61..5485cc9 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Fri Aug 24 19:46:11 UTC 2012 - alexandre@exatati.com.br + +- Removed tests as qe do not have python-amqp (only python-amqplib). +- Update to 2.4.2: + - Having an empty transport name broke in 2.4.1. +- Aditional changes from 2.4.1: + - Redis: Fixed race condition that could cause the consumer to + crash (Issue #151) + Often leading to the error message "could not convert string to + float" + - Connection retry could cause an inifite loop (Issue #145). + - The amqp alias is now resolved at runtime, so that eventlet + detection works even if patching was done later. + ------------------------------------------------------------------- Fri Aug 17 20:24:04 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 3921e79..c71f6d0 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.4.0 +Version: 2.4.2 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python @@ -70,8 +70,8 @@ python setup.py install --prefix=%{_prefix} --root=%{buildroot} %check # Testsuite requires mkgpack-python < 0.2.0 because it dropped Python-2.5 support. # This makes no sense for us, thus: -sed -i "s/msgpack-python.*/msgpack-python/" requirements/test.txt -python setup.py test +#sed -i "s/msgpack-python.*/msgpack-python/" requirements/test.txt +#python setup.py test %files %defattr(-,root,root,-) From 251e840d6702e2aae09af6afceb0b9b1b1a6d63a9be2a27112c02dd2d187a94c Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Mon, 27 Aug 2012 14:28:08 +0000 Subject: [PATCH 5/8] - Update to 2.4.3: - Fixed problem with amqp transport alias (Issue #154). OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=51 --- kombu-2.4.2.tar.gz | 3 --- kombu-2.4.3.tar.gz | 3 +++ python-kombu.changes | 6 ++++++ python-kombu.spec | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.4.2.tar.gz create mode 100644 kombu-2.4.3.tar.gz diff --git a/kombu-2.4.2.tar.gz b/kombu-2.4.2.tar.gz deleted file mode 100644 index f5bd5ef..0000000 --- a/kombu-2.4.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:383c28b787360890ad049ab8a271a7bde782e8feb1c4ff1b3678e0199944ee22 -size 290518 diff --git a/kombu-2.4.3.tar.gz b/kombu-2.4.3.tar.gz new file mode 100644 index 0000000..63916a4 --- /dev/null +++ b/kombu-2.4.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dac6b3720e5e31b38b626e7247c07b10c8cc39e2f32aec80559fa643d2db021 +size 290543 diff --git a/python-kombu.changes b/python-kombu.changes index 5485cc9..c521cb8 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Aug 27 14:24:17 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.4.3: + - Fixed problem with amqp transport alias (Issue #154). + ------------------------------------------------------------------- Fri Aug 24 19:46:11 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index c71f6d0..01850d9 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.4.2 +Version: 2.4.3 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python From 7a3b4f3ebde5cd2ffd603b65a5e776956feaf2e62578de4bf206afb9a0d44318 Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Wed, 29 Aug 2012 18:09:16 +0000 Subject: [PATCH 6/8] - Update to 2.4.4: - amqplib: Fixed a bug with asynchronously reading large messages. - pyamqp: Now requires amqp 0.9.3 - Cleaned up test requirements. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=52 --- kombu-2.4.3.tar.gz | 3 --- kombu-2.4.4.tar.gz | 3 +++ python-kombu.changes | 8 ++++++++ python-kombu.spec | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.4.3.tar.gz create mode 100644 kombu-2.4.4.tar.gz diff --git a/kombu-2.4.3.tar.gz b/kombu-2.4.3.tar.gz deleted file mode 100644 index 63916a4..0000000 --- a/kombu-2.4.3.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1dac6b3720e5e31b38b626e7247c07b10c8cc39e2f32aec80559fa643d2db021 -size 290543 diff --git a/kombu-2.4.4.tar.gz b/kombu-2.4.4.tar.gz new file mode 100644 index 0000000..8c5df11 --- /dev/null +++ b/kombu-2.4.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e31f9c923581b9ba544da60960f10ad588483505fa003871aa3779e82dbb161 +size 290810 diff --git a/python-kombu.changes b/python-kombu.changes index c521cb8..546c161 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Wed Aug 29 18:05:01 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.4.4: + - amqplib: Fixed a bug with asynchronously reading large messages. + - pyamqp: Now requires amqp 0.9.3 + - Cleaned up test requirements. + ------------------------------------------------------------------- Mon Aug 27 14:24:17 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 01850d9..dcd67be 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.4.3 +Version: 2.4.4 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python From b9af9d1e2e27ad3d9b700e6e8412e1fc9b1767ce932519bed0b69f850e979abd Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Thu, 30 Aug 2012 17:05:23 +0000 Subject: [PATCH 7/8] - Update to 2.4.5: - Last version broke installtion on PyPy and Jython due to test requirements clean-up. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=53 --- kombu-2.4.4.tar.gz | 3 --- kombu-2.4.5.tar.gz | 3 +++ python-kombu.changes | 7 +++++++ python-kombu.spec | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.4.4.tar.gz create mode 100644 kombu-2.4.5.tar.gz diff --git a/kombu-2.4.4.tar.gz b/kombu-2.4.4.tar.gz deleted file mode 100644 index 8c5df11..0000000 --- a/kombu-2.4.4.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e31f9c923581b9ba544da60960f10ad588483505fa003871aa3779e82dbb161 -size 290810 diff --git a/kombu-2.4.5.tar.gz b/kombu-2.4.5.tar.gz new file mode 100644 index 0000000..4186ad8 --- /dev/null +++ b/kombu-2.4.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:909b101c521eca3a3c7d25b52f845b8fa347e602c8db40d5046e3f23039a931f +size 290869 diff --git a/python-kombu.changes b/python-kombu.changes index 546c161..726f168 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Thu Aug 30 17:02:05 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.4.5: + - Last version broke installtion on PyPy and Jython due to test + requirements clean-up. + ------------------------------------------------------------------- Wed Aug 29 18:05:01 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index dcd67be..9a13f9d 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.4.4 +Version: 2.4.5 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python From 532acb011c001573274718d5938aa374abe08707b02b5d18c45dff20313f080b Mon Sep 17 00:00:00 2001 From: Alexandre Rogoski Date: Wed, 12 Sep 2012 17:12:34 +0000 Subject: [PATCH 8/8] - Update to 2.4.6: - Adds additional compatibility dependencies: - Python <= 2.6: - importlib - ordereddict - Python <= 2.5 - simplejson OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=54 --- kombu-2.4.5.tar.gz | 3 --- kombu-2.4.6.tar.gz | 3 +++ python-kombu.changes | 11 +++++++++++ python-kombu.spec | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) delete mode 100644 kombu-2.4.5.tar.gz create mode 100644 kombu-2.4.6.tar.gz diff --git a/kombu-2.4.5.tar.gz b/kombu-2.4.5.tar.gz deleted file mode 100644 index 4186ad8..0000000 --- a/kombu-2.4.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:909b101c521eca3a3c7d25b52f845b8fa347e602c8db40d5046e3f23039a931f -size 290869 diff --git a/kombu-2.4.6.tar.gz b/kombu-2.4.6.tar.gz new file mode 100644 index 0000000..857e709 --- /dev/null +++ b/kombu-2.4.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84fd0fa79c6292c174a7efbcd47483a07345040166223f67e6a2326e73419b1a +size 289642 diff --git a/python-kombu.changes b/python-kombu.changes index 726f168..471a446 100644 --- a/python-kombu.changes +++ b/python-kombu.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Wed Sep 12 17:10:37 UTC 2012 - alexandre@exatati.com.br + +- Update to 2.4.6: + - Adds additional compatibility dependencies: + - Python <= 2.6: + - importlib + - ordereddict + - Python <= 2.5 + - simplejson + ------------------------------------------------------------------- Thu Aug 30 17:02:05 UTC 2012 - alexandre@exatati.com.br diff --git a/python-kombu.spec b/python-kombu.spec index 9a13f9d..4d94fec 100644 --- a/python-kombu.spec +++ b/python-kombu.spec @@ -16,7 +16,7 @@ # Name: python-kombu -Version: 2.4.5 +Version: 2.4.6 Release: 0 License: BSD-2-Clause Summary: AMQP Messaging Framework for Python