diff options
author | rodent <rodent@pkgsrc.org> | 2014-06-09 00:16:23 +0000 |
---|---|---|
committer | rodent <rodent@pkgsrc.org> | 2014-06-09 00:16:23 +0000 |
commit | 07c97f39bac27c41d74f816ca7e08bdef3a6a623 (patch) | |
tree | 9e6d9ab03c0b44bf7f679c2101e1048976083e73 /net/py-kombu/Makefile | |
parent | a6eef5983a992b15cc3caa5380f0f5f0be47f4c7 (diff) | |
download | pkgsrc-07c97f39bac27c41d74f816ca7e08bdef3a6a623.tar.gz |
CATEGORIES+=python. Use options framework to enable user to select all
options supported by this package, with none enabled by default. Changelog:
3.0.18
======
- A typo introduced in 3.0.17 caused kombu.async.hub to crash (Issue #360).
3.0.17
======
- ``kombu[librabbitmq]`` now depends on librabbitmq 1.5.2.
- Async: Event loop now selectively removes file descriptors for the mode
it failed in, and keeps others (e.g read vs write).
- CouchDB: Now works without userid set.
- SQLAlchemy: Now supports recovery from connection errors.
- Redis: Restore at shutdown now works when ack emulation is disabled.
- :func:`kombu.common.eventloop` accidentally swallowed socket errors.
- Adds :func:`kombu.utils.url.sanitize_url`
Diffstat (limited to 'net/py-kombu/Makefile')
-rw-r--r-- | net/py-kombu/Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/net/py-kombu/Makefile b/net/py-kombu/Makefile index 46221a5cce6..d7bb09f310e 100644 --- a/net/py-kombu/Makefile +++ b/net/py-kombu/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2014/05/18 20:36:10 rodent Exp $ +# $NetBSD: Makefile,v 1.10 2014/06/09 00:16:23 rodent Exp $ -DISTNAME= kombu-3.0.16 +DISTNAME= kombu-3.0.18 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= net +CATEGORIES= net python MASTER_SITES= https://pypi.python.org/packages/source/k/kombu/ MAINTAINER= rodent@NetBSD.org @@ -10,12 +10,15 @@ HOMEPAGE= http://kombu.readthedocs.org/ COMMENT= Messaging framework for Python LICENSE= modified-bsd -DEPENDS+= ${PYPKGPREFIX}-amqp>=1.4.5:../../net/py-amqp +DEPENDS+= ${PYPKGPREFIX}-anyjson>=0.3.3:../../textproc/py-anyjson +DEPENDS+= ${PYPKGPREFIX}-amqp>=1.4.5<2.0:../../net/py-amqp USE_LANGUAGES= # none REPLACE_PYTHON+= kombu/tests/test_serialization.py +.include "options.mk" + .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" |