Received: by mail.netbsd.org (Postfix, from userid 605) id 5BD9784DBD; Mon, 27 May 2019 15:20:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D873584DAE for ; Mon, 27 May 2019 15:20:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id BqsvgjUFZphS for ; Mon, 27 May 2019 15:20:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 466F784CDA for ; Mon, 27 May 2019 15:20:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4025FFA81; Mon, 27 May 2019 15:20:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1558970445122370" MIME-Version: 1.0 Date: Mon, 27 May 2019 15:20:45 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/sysutils/py-kazoo To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190527152045.4025FFA81@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1558970445122370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon May 27 15:20:45 UTC 2019 Modified Files: pkgsrc/sysutils/py-kazoo: Makefile PLIST distinfo Log Message: py-kazoo: updated to 2.6.1 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 To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/py-kazoo/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/py-kazoo/PLIST cvs rdiff -u -r1.5 -r1.6 pkgsrc/sysutils/py-kazoo/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1558970445122370 Content-Disposition: inline Content-Length: 2620 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-kazoo/Makefile diff -u pkgsrc/sysutils/py-kazoo/Makefile:1.6 pkgsrc/sysutils/py-kazoo/Makefile:1.7 --- pkgsrc/sysutils/py-kazoo/Makefile:1.6 Wed Aug 22 12:59:55 2018 +++ pkgsrc/sysutils/py-kazoo/Makefile Mon May 27 15:20:45 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.6 2018/08/22 12:59:55 adam Exp $ +# $NetBSD: Makefile,v 1.7 2019/05/27 15:20:45 adam Exp $ -DISTNAME= kazoo-2.5.0 +DISTNAME= kazoo-2.6.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=k/kazoo/} Index: pkgsrc/sysutils/py-kazoo/PLIST diff -u pkgsrc/sysutils/py-kazoo/PLIST:1.2 pkgsrc/sysutils/py-kazoo/PLIST:1.3 --- pkgsrc/sysutils/py-kazoo/PLIST:1.2 Tue Sep 12 14:55:19 2017 +++ pkgsrc/sysutils/py-kazoo/PLIST Mon May 27 15:20:45 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2017/09/12 14:55:19 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2019/05/27 15:20:45 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -170,6 +170,9 @@ ${PYSITELIB}/kazoo/tests/test_security.p ${PYSITELIB}/kazoo/tests/test_threading_handler.py ${PYSITELIB}/kazoo/tests/test_threading_handler.pyc ${PYSITELIB}/kazoo/tests/test_threading_handler.pyo +${PYSITELIB}/kazoo/tests/test_utils.py +${PYSITELIB}/kazoo/tests/test_utils.pyc +${PYSITELIB}/kazoo/tests/test_utils.pyo ${PYSITELIB}/kazoo/tests/test_watchers.py ${PYSITELIB}/kazoo/tests/test_watchers.pyc ${PYSITELIB}/kazoo/tests/test_watchers.pyo Index: pkgsrc/sysutils/py-kazoo/distinfo diff -u pkgsrc/sysutils/py-kazoo/distinfo:1.5 pkgsrc/sysutils/py-kazoo/distinfo:1.6 --- pkgsrc/sysutils/py-kazoo/distinfo:1.5 Wed Aug 22 12:59:55 2018 +++ pkgsrc/sysutils/py-kazoo/distinfo Mon May 27 15:20:45 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2018/08/22 12:59:55 adam Exp $ +$NetBSD: distinfo,v 1.6 2019/05/27 15:20:45 adam Exp $ -SHA1 (kazoo-2.5.0.tar.gz) = c0f29741838a111b7b4dd5e89d14bd2fcf29ecd3 -RMD160 (kazoo-2.5.0.tar.gz) = a9c2eb3e6a5ae0388610c080073d3be6bedc7cc9 -SHA512 (kazoo-2.5.0.tar.gz) = cb85a33f2d0aa71fc5a82e7046e5d331417df865c1a4bc18266cee65ffd6c36e12cd4058ee591214ec83225a9b3ee193587f3d07b5c1436cc715a403364ec1af -Size (kazoo-2.5.0.tar.gz) = 147189 bytes +SHA1 (kazoo-2.6.1.tar.gz) = 25cb76d5358168f6afed645131a843a343e484c1 +RMD160 (kazoo-2.6.1.tar.gz) = a23fd96c32ad56f41f2a6c7301bf1838a4ff2b3e +SHA512 (kazoo-2.6.1.tar.gz) = 613e8271bfd6c8f5ee976b6ee460478c7faad46b32995125a64312208b38755888690cd46b913ff44ba52aeb36de3ec3dd8e222985af77e99f43963a3eb48d48 +Size (kazoo-2.6.1.tar.gz) = 157425 bytes --_----------=_1558970445122370--