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 2B6241A921F for ; Thu, 7 Apr 2022 06:46:31 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0E85A84EED; Thu, 7 Apr 2022 06:46:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 496A984D5E for ; Thu, 7 Apr 2022 06:46:30 +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 30iLBJtcYeuZ for ; Thu, 7 Apr 2022 06:46:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5ED0284D47 for ; Thu, 7 Apr 2022 06:46:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 579FCFB24; Thu, 7 Apr 2022 06:46:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164931398999360" MIME-Version: 1.0 Date: Thu, 7 Apr 2022 06:46:29 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-pyrsistent To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20220407064629.579FCFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164931398999360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Apr 7 06:46:29 UTC 2022 Modified Files: pkgsrc/devel/py-pyrsistent: Makefile PLIST distinfo Log Message: py-pyrsistent: updated to 0.18.1 0.18.1, 2022-01-14 * Add universal wheels for MacOS, thanks @ntamas for this! * Add support for Python 3.10, thanks @hugovk for this! * Fix 236 compilation errors under Python 3.10. * Drop official support for Python 3.6 since it's EOL since 2021-12-23. * Fix 238, failing doc tests on Python 3.11, thanks @musicinmybrain for this! 0.18.0, 2021-06-28 * Fix 209 Update freeze recurse into pyrsistent data structures and thaw to recurse into lists and dicts, NB! This is a backwards incompatible change! To keep the old behaviour pass `strict=False` to freeze and thaw. * Fix 226, stop using deprecated exception.message. * Fix 211, add union operator to persistent maps. * Fix 194, declare build dependencies through pyproject.toml. * Officially drop Python 3.5 support. * Fix 223, release wheels for all major platforms. * Fix 221, KeyError obscured by TypeError if key is a tuple. * Fix LICENSE file name spelling. * Fix 216, add abstractmethod decorator for CheckedType and ABCMeta for _CheckedTypeMeta. * Fix 228, rename example classes in tests to avoid name clashes with pytest. 0.17.3, 2020-09-13 * Fix 208, release v0.17.3 with proper meta data requiring Python >= 3.5. 0.17.2 (yanked awaiting proper fix for Python 3 req), 2020-09-09 * Same as 0.17.1 released with more recent version of setuptools to get proper meta data for in place. 0.17.1 (yanked for proper meta data), 2020-09-09 * Restrict package to Python >= 3.5 to not break unpinned Python 2 dependencies. 0.17.0 (yanked for Python 2 compatibility), 2020-09-08 * Remove Python 2 support code. This includes dropping some compatibility code and the dependency on six. * Fix 200, python 3 exception chaining. This is a minor backwards incompatibility, hence stepping to 0.17.0. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-pyrsistent/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-pyrsistent/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-pyrsistent/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164931398999360 Content-Disposition: inline Content-Length: 3376 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-pyrsistent/Makefile diff -u pkgsrc/devel/py-pyrsistent/Makefile:1.9 pkgsrc/devel/py-pyrsistent/Makefile:1.10 --- pkgsrc/devel/py-pyrsistent/Makefile:1.9 Tue Jan 4 20:53:34 2022 +++ pkgsrc/devel/py-pyrsistent/Makefile Thu Apr 7 06:46:29 2022 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2022/01/04 20:53:34 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2022/04/07 06:46:29 adam Exp $ -DISTNAME= pyrsistent-0.16.0 +DISTNAME= pyrsistent-0.18.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pyrsistent/} @@ -11,11 +10,12 @@ HOMEPAGE= https://github.com/tobgu/pyrsi COMMENT= Persistent/Functional/Immutable data structures LICENSE= mit -DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six -BUILD_DEPENDS+= ${PYPKGPREFIX}-test-runner-[0-9]*:../../devel/py-test-runner +TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis-[0-9]*:../../devel/py-hypothesis -PYTHON_VERSIONED_DEPENDENCIES+= hypothesis:test +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-pyrsistent/PLIST diff -u pkgsrc/devel/py-pyrsistent/PLIST:1.1 pkgsrc/devel/py-pyrsistent/PLIST:1.2 --- pkgsrc/devel/py-pyrsistent/PLIST:1.1 Sat Mar 2 14:27:15 2019 +++ pkgsrc/devel/py-pyrsistent/PLIST Thu Apr 7 06:46:29 2022 @@ -1,8 +1,7 @@ -@comment $NetBSD: PLIST,v 1.1 2019/03/02 14:27:15 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/04/07 06:46:29 adam Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/_pyrsistent_version.py ${PYSITELIB}/_pyrsistent_version.pyc @@ -15,9 +14,6 @@ ${PYSITELIB}/pyrsistent/__init__.pyo ${PYSITELIB}/pyrsistent/_checked_types.py ${PYSITELIB}/pyrsistent/_checked_types.pyc ${PYSITELIB}/pyrsistent/_checked_types.pyo -${PYSITELIB}/pyrsistent/_compat.py -${PYSITELIB}/pyrsistent/_compat.pyc -${PYSITELIB}/pyrsistent/_compat.pyo ${PYSITELIB}/pyrsistent/_field_common.py ${PYSITELIB}/pyrsistent/_field_common.pyc ${PYSITELIB}/pyrsistent/_field_common.pyo Index: pkgsrc/devel/py-pyrsistent/distinfo diff -u pkgsrc/devel/py-pyrsistent/distinfo:1.8 pkgsrc/devel/py-pyrsistent/distinfo:1.9 --- pkgsrc/devel/py-pyrsistent/distinfo:1.8 Tue Oct 26 10:18:59 2021 +++ pkgsrc/devel/py-pyrsistent/distinfo Thu Apr 7 06:46:29 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2021/10/26 10:18:59 nia Exp $ +$NetBSD: distinfo,v 1.9 2022/04/07 06:46:29 adam Exp $ -BLAKE2s (pyrsistent-0.16.0.tar.gz) = 8beebb0248190a470f96bfef57a874f5f444664188f386c8cb340540cfbe9098 -SHA512 (pyrsistent-0.16.0.tar.gz) = d5764b1a185d4578bf308f338037e0546b06e79a3e7189b904e24e95e0e907bc98d7c1c68becc5549a541a5864df75aba6088cafa3558ecb0a63dafb22f5674a -Size (pyrsistent-0.16.0.tar.gz) = 108012 bytes +BLAKE2s (pyrsistent-0.18.1.tar.gz) = 11cf57c166e75e844ebc299ebd970ec1449dac1c1af128b162c762ba0bf0060d +SHA512 (pyrsistent-0.18.1.tar.gz) = 353ad6e9165e1afdde37730a9289cf8dde28491abb688d702a8c8f5279e24f5ce387a5d00ac4a077322299f9c1a535781bcacdcd1cb914ddb317b3ca9641778b +Size (pyrsistent-0.18.1.tar.gz) = 100522 bytes --_----------=_164931398999360--