Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D439F84F45 for ; Tue, 18 Jul 2023 08:49:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id VljPAzWQffF4 for ; Tue, 18 Jul 2023 08:49:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4359B84E90 for ; Tue, 18 Jul 2023 08:49:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3C4E3FBDB; Tue, 18 Jul 2023 08:49:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168967014156860" MIME-Version: 1.0 Date: Tue, 18 Jul 2023 08:49:01 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-frozenlist To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230718084901.3C4E3FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168967014156860 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jul 18 08:49:01 UTC 2023 Modified Files: pkgsrc/devel/py-frozenlist: Makefile distinfo Log Message: py-frozenlist: updated to 1.4.0 1.4.0 (2023-07-12) The published source distribution package became buildable under Python 3.12. Bugfixes - Removed an unused :py:data:`typing.Tuple` import Deprecations and Removals - Dropped Python 3.7 support. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-frozenlist/Makefile \ pkgsrc/devel/py-frozenlist/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168967014156860 Content-Disposition: inline Content-Length: 2079 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-frozenlist/Makefile diff -u pkgsrc/devel/py-frozenlist/Makefile:1.4 pkgsrc/devel/py-frozenlist/Makefile:1.5 --- pkgsrc/devel/py-frozenlist/Makefile:1.4 Wed Nov 9 07:58:30 2022 +++ pkgsrc/devel/py-frozenlist/Makefile Tue Jul 18 08:49:01 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2022/11/09 07:58:30 adam Exp $ +# $NetBSD: Makefile,v 1.5 2023/07/18 08:49:01 adam Exp $ -DISTNAME= frozenlist-1.3.3 +DISTNAME= frozenlist-1.4.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=f/frozenlist/} @@ -10,9 +10,12 @@ HOMEPAGE= https://github.com/aio-libs/fr COMMENT= List-like structure which implements collections.abc.MutableSequence LICENSE= apache-2.0 -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=0:../../devel/py-test +TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test PYTHON_VERSIONS_INCOMPATIBLE= 27 +do-test: + cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-frozenlist/distinfo diff -u pkgsrc/devel/py-frozenlist/distinfo:1.4 pkgsrc/devel/py-frozenlist/distinfo:1.5 --- pkgsrc/devel/py-frozenlist/distinfo:1.4 Wed Nov 9 07:58:30 2022 +++ pkgsrc/devel/py-frozenlist/distinfo Tue Jul 18 08:49:01 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2022/11/09 07:58:30 adam Exp $ +$NetBSD: distinfo,v 1.5 2023/07/18 08:49:01 adam Exp $ -BLAKE2s (frozenlist-1.3.3.tar.gz) = 48587012bce2fbe40586dd9582e5becec166357e9d607af4feffa0e5c1b6725d -SHA512 (frozenlist-1.3.3.tar.gz) = a92c6c0b60eaa66db6f26cef9b3991ab207bb38c5686b66194f61e168f1a1d98d1966d7fe7c800191bb3d2eae8c2dc014819091c78f2bb24e53dc257bba0ed51 -Size (frozenlist-1.3.3.tar.gz) = 66571 bytes +BLAKE2s (frozenlist-1.4.0.tar.gz) = cf8730906ce08ff1e92b397afcc3d2fa757df798f650c386629dbf041f6d241f +SHA512 (frozenlist-1.4.0.tar.gz) = 2b5ff165250d1d2e95f987f95084f46a0adb85e09d4f413435ef4bd50d2717f74096afc678b2c23528d8f1af68638145d5414f36a735299a57bae7ff8e87c18d +Size (frozenlist-1.4.0.tar.gz) = 90722 bytes --_----------=_168967014156860--