587a7d7039
2.6.1: Bug Fixes * **client:** add missing paren * **core:** * support deprecated KazooRetry argument * reduce timeout for the first Connect() request * **handlers:** make AsyncResult call all registered callbacks instantly if the handler has stopped running * **recipe:** * No more memory leak when ChildrenWatch was stopped * No more memory leak once TreeCache was closed 2.6.0: Features * **core:** * add SASL DIGEST-MD5 support * Added SSL support * **tests:** * update Zookeeper 3.5.2-alpha to 3.5.4-beta * update Zookeeper version from 3.4.10 to 3.4.13 Bug Fixes * **core:** * ensure timeout argument is positive * get_children with include_data=True uses GetChildren2 types * allow authentification in RO and RW modes * Use a copy of auth data when reconnecting * change KazooRetry to uniformly jitter over the whole backoff interval * **recipe:** Delete lock node in queue recipe if entry already consumed Doc * make badges link to travis and pypi * specify description type for pypi to render correctly * remove broken downloads badge * **core:** fix broken zookeeper programmers guide link
22 lines
731 B
Makefile
22 lines
731 B
Makefile
# $NetBSD: Makefile,v 1.7 2019/05/27 15:20:45 adam Exp $
|
|
|
|
DISTNAME= kazoo-2.6.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=k/kazoo/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://kazoo.readthedocs.org/
|
|
COMMENT= Higher level Zookeeper client
|
|
LICENSE= apache-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-flake8-[0-9]*:../../devel/py-flake8
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
TEST_DEPENDS+= ${PYPKGPREFIX}-nose-[0-9]*:../../devel/py-nose
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|