Received: by mail.netbsd.org (Postfix, from userid 605) id 5F7C184D17; Tue, 24 Jan 2023 20:33:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8F59A84CBC for ; Tue, 24 Jan 2023 20:33:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id D7uttGOI3UOi for ; Tue, 24 Jan 2023 20:33:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EACC984C13 for ; Tue, 24 Jan 2023 20:33:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E4697FA90; Tue, 24 Jan 2023 20:33:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1674592387281220" MIME-Version: 1.0 Date: Tue, 24 Jan 2023 20:33:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-cachelib To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230124203307.E4697FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1674592387281220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jan 24 20:33:07 UTC 2023 Modified Files: pkgsrc/devel/py-cachelib: Makefile PLIST distinfo Log Message: py-cachelib: updated to 0.10.1 Version 0.10.1 Fix logging pollution due to DynamoDB logging handler Version 0.10.0 Improve error message when FileSystemCache methods are called with non-str keys. Added DynamoDb as a cache backend To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-cachelib/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-cachelib/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-cachelib/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1674592387281220 Content-Disposition: inline Content-Length: 3034 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-cachelib/Makefile diff -u pkgsrc/devel/py-cachelib/Makefile:1.8 pkgsrc/devel/py-cachelib/Makefile:1.9 --- pkgsrc/devel/py-cachelib/Makefile:1.8 Wed Nov 16 14:01:30 2022 +++ pkgsrc/devel/py-cachelib/Makefile Tue Jan 24 20:33:07 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2022/11/16 14:01:30 adam Exp $ +# $NetBSD: Makefile,v 1.9 2023/01/24 20:33:07 adam Exp $ -DISTNAME= cachelib-0.9.0 +DISTNAME= cachelib-0.10.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cachelib/} @@ -11,9 +11,9 @@ COMMENT= Collection of cache libraries i LICENSE= modified-bsd TEST_DEPENDS+= ${PYPKGPREFIX}-redis>=3.5.3:../../databases/py-redis -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=6.2.4:../../devel/py-test -TEST_DEPENDS+= ${PYPKGPREFIX}-test-xprocess>=0.17.1:../../devel/py-test-xprocess -TEST_DEPENDS+= ${PYPKGPREFIX}-uwsgi>=2.0.19.1:../../www/py-uwsgi +TEST_DEPENDS+= ${PYPKGPREFIX}-test>=7.2.0:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-xprocess>=0.22.2:../../devel/py-test-xprocess +TEST_DEPENDS+= ${PYPKGPREFIX}-uwsgi>=2.0.21:../../www/py-uwsgi USE_LANGUAGES= # none Index: pkgsrc/devel/py-cachelib/PLIST diff -u pkgsrc/devel/py-cachelib/PLIST:1.3 pkgsrc/devel/py-cachelib/PLIST:1.4 --- pkgsrc/devel/py-cachelib/PLIST:1.3 Mon Jan 3 07:43:22 2022 +++ pkgsrc/devel/py-cachelib/PLIST Tue Jan 24 20:33:07 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2022/01/03 07:43:22 adam Exp $ +@comment $NetBSD: PLIST,v 1.4 2023/01/24 20:33:07 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -9,6 +9,9 @@ ${PYSITELIB}/cachelib/__init__.pyo ${PYSITELIB}/cachelib/base.py ${PYSITELIB}/cachelib/base.pyc ${PYSITELIB}/cachelib/base.pyo +${PYSITELIB}/cachelib/dynamodb.py +${PYSITELIB}/cachelib/dynamodb.pyc +${PYSITELIB}/cachelib/dynamodb.pyo ${PYSITELIB}/cachelib/file.py ${PYSITELIB}/cachelib/file.pyc ${PYSITELIB}/cachelib/file.pyo Index: pkgsrc/devel/py-cachelib/distinfo diff -u pkgsrc/devel/py-cachelib/distinfo:1.9 pkgsrc/devel/py-cachelib/distinfo:1.10 --- pkgsrc/devel/py-cachelib/distinfo:1.9 Wed Nov 16 14:01:30 2022 +++ pkgsrc/devel/py-cachelib/distinfo Tue Jan 24 20:33:07 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.9 2022/11/16 14:01:30 adam Exp $ +$NetBSD: distinfo,v 1.10 2023/01/24 20:33:07 adam Exp $ -BLAKE2s (cachelib-0.9.0.tar.gz) = 82572416182b0467bca8cc86664c840b9d17da997b3f0f968b5eff9c1e744b20 -SHA512 (cachelib-0.9.0.tar.gz) = 33f1dc99bcd993107f27b0cbc99a703fa41a7e46cd4ebf851b8e6f6a8d78e973db68b71f0f64a8455ec7e2995bda9f3e6c569c5f1522fe7269a8299b83ecc510 -Size (cachelib-0.9.0.tar.gz) = 21007 bytes +BLAKE2s (cachelib-0.10.1.tar.gz) = cc28565248aeba54917ffacfdaa642bfb8efaaab107dd610b421c6913444f554 +SHA512 (cachelib-0.10.1.tar.gz) = c25f7a40b6bd4243bc6fe7108f4b7b4008657c641bfe75ebe28e7bc5baa120ebf2423b7b46fac3caff2658e4e72aad3c141e293427951b73ab8ddb0ed191df38 +Size (cachelib-0.10.1.tar.gz) = 32179 bytes --_----------=_1674592387281220--