Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 8022C1A9239 for ; Mon, 3 Jan 2022 07:43:25 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 922C784CE9; Mon, 3 Jan 2022 07:43:24 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CBB0584CE7 for ; Mon, 3 Jan 2022 07:43:23 +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 cP1AE0jxtrj2 for ; Mon, 3 Jan 2022 07:43:23 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3287B84CDC for ; Mon, 3 Jan 2022 07:43:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2BC33FAEC; Mon, 3 Jan 2022 07:43:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164119580340740" MIME-Version: 1.0 Date: Mon, 3 Jan 2022 07:43:23 +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: <20220103074323.2BC33FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164119580340740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jan 3 07:43:23 UTC 2022 Modified Files: pkgsrc/devel/py-cachelib: Makefile PLIST distinfo Log Message: py-cachelib: updated to 0.5.0 Version 0.5.0 ------------- - Cache types now have configurable serializers. Version 0.4.1 ------------- - Fix break in ``RedisCache`` when a host object was passed in ``RedisCache.host`` instead of a string. Version 0.4.0 ------------- - All cache types now implement ``BaseCache`` interface both in behavior and method return types. Thus, code written for one cache type should work with any other cache type. - Add type information for static typing tools. - ``FileNotFound`` exceptions will not be logged anymore in ``FileSystemCache`` methods in order to avoid polluting application log files. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-cachelib/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-cachelib/PLIST cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-cachelib/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164119580340740 Content-Disposition: inline Content-Length: 2586 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.4 pkgsrc/devel/py-cachelib/Makefile:1.5 --- pkgsrc/devel/py-cachelib/Makefile:1.4 Wed Sep 29 09:38:52 2021 +++ pkgsrc/devel/py-cachelib/Makefile Mon Jan 3 07:43:22 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2021/09/29 09:38:52 adam Exp $ +# $NetBSD: Makefile,v 1.5 2022/01/03 07:43:22 adam Exp $ -DISTNAME= cachelib-0.3.0 +DISTNAME= cachelib-0.5.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cachelib/} Index: pkgsrc/devel/py-cachelib/PLIST diff -u pkgsrc/devel/py-cachelib/PLIST:1.2 pkgsrc/devel/py-cachelib/PLIST:1.3 --- pkgsrc/devel/py-cachelib/PLIST:1.2 Thu Aug 5 13:23:15 2021 +++ pkgsrc/devel/py-cachelib/PLIST Mon Jan 3 07:43:22 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2021/08/05 13:23:15 adam Exp $ +@comment $NetBSD: PLIST,v 1.3 2022/01/03 07:43:22 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt @@ -15,9 +15,13 @@ ${PYSITELIB}/cachelib/file.pyo ${PYSITELIB}/cachelib/memcached.py ${PYSITELIB}/cachelib/memcached.pyc ${PYSITELIB}/cachelib/memcached.pyo +${PYSITELIB}/cachelib/py.typed ${PYSITELIB}/cachelib/redis.py ${PYSITELIB}/cachelib/redis.pyc ${PYSITELIB}/cachelib/redis.pyo +${PYSITELIB}/cachelib/serializers.py +${PYSITELIB}/cachelib/serializers.pyc +${PYSITELIB}/cachelib/serializers.pyo ${PYSITELIB}/cachelib/simple.py ${PYSITELIB}/cachelib/simple.pyc ${PYSITELIB}/cachelib/simple.pyo Index: pkgsrc/devel/py-cachelib/distinfo diff -u pkgsrc/devel/py-cachelib/distinfo:1.6 pkgsrc/devel/py-cachelib/distinfo:1.7 --- pkgsrc/devel/py-cachelib/distinfo:1.6 Tue Oct 26 10:18:16 2021 +++ pkgsrc/devel/py-cachelib/distinfo Mon Jan 3 07:43:22 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2021/10/26 10:18:16 nia Exp $ +$NetBSD: distinfo,v 1.7 2022/01/03 07:43:22 adam Exp $ -BLAKE2s (cachelib-0.3.0.tar.gz) = 85d6d0e87f6e0bad3aea89f185a56308dbff20443a7c01ccb16cf5839dac3f4a -SHA512 (cachelib-0.3.0.tar.gz) = f9184cf9702c2df77e09d28d6feb8e6f0bc22f17c110a2371e76c4b78163950803e4f013c3746e21b9ac5771f72238ecd8bb041c5a7f44eab6bcb4de6e2ea377 -Size (cachelib-0.3.0.tar.gz) = 18340 bytes +BLAKE2s (cachelib-0.5.0.tar.gz) = 5c184eeabc40d3e5912af0120d183343652fe57866d496f153e60dca9dfaa2c5 +SHA512 (cachelib-0.5.0.tar.gz) = 1b942e654cf334755fe130a913504d6b46dbb1e6aef3df33cb295ded7e47b1ed461b68653d8bc8ffe85cff6fc82a382df82b97302ff191e184e953d837a02cdd +Size (cachelib-0.5.0.tar.gz) = 21173 bytes --_----------=_164119580340740--