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 D6D881A9239 for ; Mon, 31 Jan 2022 12:08:42 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3371284F34; Mon, 31 Jan 2022 12:08:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E1F1084E56 for ; Mon, 31 Jan 2022 11:57:54 +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 5Rg4acrcI1FQ for ; Mon, 31 Jan 2022 11:57:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4F92284D59 for ; Mon, 31 Jan 2022 11:57:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4D210FB24; Mon, 31 Jan 2022 11:57:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164363027483380" MIME-Version: 1.0 Date: Mon, 31 Jan 2022 11:57:54 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/py-multidict To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220131115754.4D210FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164363027483380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 31 11:57:54 UTC 2022 Modified Files: pkgsrc/databases/py-multidict: Makefile distinfo Log Message: py310-multidict: update to 6.0.2. 6.0.2 (2022-01-24) ================== Bugfixes -------- - Revert :issue:`644`, restore type annotations to as-of 5.2.0 version. (:issue:`688`) 6.0.1 (2022-01-23) ================== Bugfixes -------- - Restored back ``MultiDict``, ``CIMultiDict``, ``MultiDictProxy``, and ``CIMutiDictProxy`` generic type arguments; they are parameterized by value type, but the key type is fixed by container class. ``MultiDict[int]`` means ``MutableMultiMapping[str, int]``. The key type of ``MultiDict`` is always ``str``, while all str-like keys are accepted by API and converted to ``str`` internally. The same is true for ``CIMultiDict[int]`` which means ``MutableMultiMapping[istr, int]``. str-like keys are accepted but converted to ``istr`` internally. (:issue:`682`) To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/databases/py-multidict/Makefile \ pkgsrc/databases/py-multidict/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164363027483380 Content-Disposition: inline Content-Length: 1638 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-multidict/Makefile diff -u pkgsrc/databases/py-multidict/Makefile:1.27 pkgsrc/databases/py-multidict/Makefile:1.28 --- pkgsrc/databases/py-multidict/Makefile:1.27 Mon Jan 24 10:02:23 2022 +++ pkgsrc/databases/py-multidict/Makefile Mon Jan 31 11:57:54 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.27 2022/01/24 10:02:23 wiz Exp $ +# $NetBSD: Makefile,v 1.28 2022/01/31 11:57:54 wiz Exp $ -DISTNAME= multidict-6.0.0 +DISTNAME= multidict-6.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=m/multidict/} Index: pkgsrc/databases/py-multidict/distinfo diff -u pkgsrc/databases/py-multidict/distinfo:1.27 pkgsrc/databases/py-multidict/distinfo:1.28 --- pkgsrc/databases/py-multidict/distinfo:1.27 Mon Jan 24 10:02:23 2022 +++ pkgsrc/databases/py-multidict/distinfo Mon Jan 31 11:57:54 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.27 2022/01/24 10:02:23 wiz Exp $ +$NetBSD: distinfo,v 1.28 2022/01/31 11:57:54 wiz Exp $ -BLAKE2s (multidict-6.0.0.tar.gz) = c14c567d98ed4277aa2ac3e591d0ca816a0e5ef149a975327fbe459659f83680 -SHA512 (multidict-6.0.0.tar.gz) = 6c1f12b0e0621a24dbdc142b9016354a5235dd171e558d09fce1a107cd76305a9c76675016113f8a7b8456dc4c33f849a543037ede68482e0f927b3e2a0449a7 -Size (multidict-6.0.0.tar.gz) = 49475 bytes +BLAKE2s (multidict-6.0.2.tar.gz) = f58b955b113bf4bd2ccaff66d72e3f332d65d930f48d3f93255cabd7c6465028 +SHA512 (multidict-6.0.2.tar.gz) = 86b0a68984e92ff5eeafa8b0e967fc223b0a79c99c397dc8fe87a182a4c9c912b02947848a2ee6a71bb5a5cecd1893a231941f92bdc94fb7343ada771d49785a +Size (multidict-6.0.2.tar.gz) = 50334 bytes --_----------=_164363027483380--