diff options
author | rodent <rodent@pkgsrc.org> | 2014-04-17 01:55:21 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2014-04-17 01:55:21 +0000 |
commit | 8e664bdc7bc96886850e537b637c41a5970001f3 (patch) | |
tree | c345894ad8300b99e6cf3aef0cc077fe7c35a1a5 /net | |
parent | 1d1400c08b1941d899c4d9c2e8f9bfa151fe5765 (diff) | |
download | pkgsrc-8e664bdc7bc96886850e537b637c41a5970001f3.tar.gz |
Update to 3.0.15. From Changelog:
- Now depends on :mod:`amqp` 1.4.5.
- RabbitMQ 3.3 changes QoS semantics (Issue #339).
See the RabbitMQ release notes here:
http://www.rabbitmq.com/blog/2014/04/02/breaking-things-with-rabbitmq-3-3/
A new connection property has been added that can be used to detect
whether the remote server is using this new QoS behavior::
>>> Connection('amqp://').qos_behavior_matches_spec
False
so if your application depends on the old semantics you can
use this to set the ``apply_global`` flag appropriately::
def update_prefetch_count(channel, new_value):
channel.basic_qos(
0, new_value,
not channel.connection.client.qos_behavior_matches_spec,
)
- Users of :mod:`librabbitmq` is encouraged to upgrade to librabbitmq 1.5.0.
The ``kombu[librabbitmq]`` extra has been updated to depend on this
version.
- Pools: Now takes transport options into account when comparing connections
(Issue #333).
- MongoDB: Fixes Python 3 compatibility.
- Async: select: Ignore socket errors when attempting to unregister handles
from the loop.
- Pidbox: Can now be configured to use a serializer other than json,
but specifying a serializer argument to :class:`~kombu.pidbox.Mailbox`.
- Message decompression now works with Python 3.
Diffstat (limited to 'net')
-rw-r--r-- | net/py-kombu/Makefile | 6 | ||||
-rw-r--r-- | net/py-kombu/distinfo | 8 |
2 files changed, 7 insertions, 7 deletions
diff --git a/net/py-kombu/Makefile b/net/py-kombu/Makefile index 6e26a3a2109..fbc66cad9e2 100644 --- a/net/py-kombu/Makefile +++ b/net/py-kombu/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.7 2014/04/07 03:46:37 rodent Exp $ +# $NetBSD: Makefile,v 1.8 2014/04/17 01:55:21 rodent Exp $ -DISTNAME= kombu-3.0.14 +DISTNAME= kombu-3.0.15 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= net MASTER_SITES= https://pypi.python.org/packages/source/k/kombu/ @@ -10,7 +10,7 @@ HOMEPAGE= http://kombu.readthedocs.org/ COMMENT= Messaging framework for Python LICENSE= modified-bsd -DEPENDS+= ${PYPKGPREFIX}-amqp>=1.4.4:../../net/py-amqp +DEPENDS+= ${PYPKGPREFIX}-amqp>=1.4.5:../../net/py-amqp USE_LANGUAGES= # none diff --git a/net/py-kombu/distinfo b/net/py-kombu/distinfo index e3ef99b6af4..78d8b76df4d 100644 --- a/net/py-kombu/distinfo +++ b/net/py-kombu/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.5 2014/04/07 03:46:37 rodent Exp $ +$NetBSD: distinfo,v 1.6 2014/04/17 01:55:21 rodent Exp $ -SHA1 (kombu-3.0.14.tar.gz) = c86413793bd295228cc3bdc1af0fb8f616a34285 -RMD160 (kombu-3.0.14.tar.gz) = 35c710d861b9097a9e4bb507223d33d543108c39 -Size (kombu-3.0.14.tar.gz) = 340310 bytes +SHA1 (kombu-3.0.15.tar.gz) = f7e2a9dd1c599160f8cf3bc25c62c48a526fddc1 +RMD160 (kombu-3.0.15.tar.gz) = 0677d309296a3888d435b50e96d6f61db76ea90f +Size (kombu-3.0.15.tar.gz) = 342092 bytes |