Received: by mail.netbsd.org (Postfix, from userid 605) id DF1E684F24; Mon, 8 Jan 2024 11:57:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 19C3684E73 for ; Mon, 8 Jan 2024 11:57:07 +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 Wm5_1x6sy8RO for ; Mon, 8 Jan 2024 11:57:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0A0C684D2E for ; Mon, 8 Jan 2024 11:57:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0148DFA42; Mon, 8 Jan 2024 11:57:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704715025128670" MIME-Version: 1.0 Date: Mon, 8 Jan 2024 11:57:05 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-immutabledict To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240108115706.0148DFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1704715025128670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jan 8 11:57:05 UTC 2024 Modified Files: pkgsrc/devel/py-immutabledict: Makefile distinfo Log Message: py-immutabledict: updated to 4.1.0 Version 4.1.0 Do not store cached hash value when pickling. Version 4.0.0 Replace __init__ by __new__. Add explicit items()/keys()/values() methods to speedup these methods. Add set/delete/update functions. Add documentation at immutabledict.corenting.fr Version 3.0.0 copy() (breaking change): remove the option to pass keyword arguments (which were present as key/value pairs in the copy). Now the method doesn't take any arguments (it behaves the same as a normal dict). Python versions: drop Python 3.7 support Typing: fixes Make the key covariant. Fix key/value typing missing for ImmutableOrderedDict To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-immutabledict/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-immutabledict/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1704715025128670 Content-Disposition: inline Content-Length: 2114 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-immutabledict/Makefile diff -u pkgsrc/devel/py-immutabledict/Makefile:1.9 pkgsrc/devel/py-immutabledict/Makefile:1.10 --- pkgsrc/devel/py-immutabledict/Makefile:1.9 Sat Oct 28 19:57:01 2023 +++ pkgsrc/devel/py-immutabledict/Makefile Mon Jan 8 11:57:05 2024 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2023/10/28 19:57:01 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2024/01/08 11:57:05 adam Exp $ -DISTNAME= immutabledict-2.2.5 +DISTNAME= immutabledict-4.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=i/immutabledict/} @@ -12,14 +11,10 @@ COMMENT= Immutable wrapper around dictio LICENSE= mit TOOL_DEPENDS+= ${PYPKGPREFIX}-poetry-core-[0-9]*:../../devel/py-poetry-core -TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test USE_LANGUAGES= # none PYTHON_VERSIONS_INCOMPATIBLE= 27 -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests - .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-immutabledict/distinfo diff -u pkgsrc/devel/py-immutabledict/distinfo:1.8 pkgsrc/devel/py-immutabledict/distinfo:1.9 --- pkgsrc/devel/py-immutabledict/distinfo:1.8 Wed Jul 5 15:48:20 2023 +++ pkgsrc/devel/py-immutabledict/distinfo Mon Jan 8 11:57:05 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2023/07/05 15:48:20 adam Exp $ +$NetBSD: distinfo,v 1.9 2024/01/08 11:57:05 adam Exp $ -BLAKE2s (immutabledict-2.2.5.tar.gz) = e5fadb7498ed947cc3687cd43cfa35137810c602c31efbb0768f5033b96c5e11 -SHA512 (immutabledict-2.2.5.tar.gz) = 3bd94d077f599b6e96a4e17a0d9ecf6365975afe73048f9d9de4df35a8272af1baed264ad84ae6826dd6359ad0d371cd90082b4a064cc6350a0e61bc1cf8c713 -Size (immutabledict-2.2.5.tar.gz) = 4316 bytes +BLAKE2s (immutabledict-4.1.0.tar.gz) = a35085f1a47d41653151f0d97d0464dfcf6a7536b4ed89562002c5ec0df89e83 +SHA512 (immutabledict-4.1.0.tar.gz) = 28d5a918da19919f550dea457646aca09462ad27a13b22dd4320288c93d33226be0022c1a96e5870760f3a2f1c909ae43f4ec2e21b0b2609462408281aa240b5 +Size (immutabledict-4.1.0.tar.gz) = 5941 bytes --_----------=_1704715025128670--