Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B0DB484E58 for ; Sun, 26 Nov 2023 10:21:38 +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 k_53g6DkYUVy for ; Sun, 26 Nov 2023 10:21:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 279A584CD9 for ; Sun, 26 Nov 2023 10:21:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 20CBAFA3F; Sun, 26 Nov 2023 10:21:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700994098100700" MIME-Version: 1.0 Date: Sun, 26 Nov 2023 10:21:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-coverage To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20231126102138.20CBAFA3F@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700994098100700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Nov 26 10:21:38 UTC 2023 Modified Files: pkgsrc/devel/py-coverage: Makefile PLIST Log Message: py-coverage: fix PLIST To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/devel/py-coverage/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/py-coverage/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700994098100700 Content-Disposition: inline Content-Length: 2163 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-coverage/Makefile diff -u pkgsrc/devel/py-coverage/Makefile:1.43 pkgsrc/devel/py-coverage/Makefile:1.44 --- pkgsrc/devel/py-coverage/Makefile:1.43 Sat Oct 28 19:56:58 2023 +++ pkgsrc/devel/py-coverage/Makefile Sun Nov 26 10:21:37 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2023/10/28 19:56:58 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2023/11/26 10:21:37 adam Exp $ DISTNAME= coverage-7.3.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -16,7 +16,6 @@ TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9 DEPENDS+= ${PYPKGPREFIX}-tomli-[0-9]*:../../textproc/py-tomli TEST_DEPENDS+= ${PYPKGPREFIX}-flaky>=3.7.0:../../devel/py-flaky TEST_DEPENDS+= ${PYPKGPREFIX}-hypothesis>=4.57.1:../../devel/py-hypothesis -TEST_DEPENDS+= ${PYPKGPREFIX}-test>=0:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=1.34.0:../../devel/py-test-xdist PYTHON_VERSIONS_INCOMPATIBLE= 27 @@ -24,10 +23,8 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 post-install: ${RM} -f ${DESTDIR}${PREFIX}/bin/coverage ${DESTDIR}${PREFIX}/bin/coverage3 -# AssertionError: assert None +# Testing: AssertionError: assert None # 'fixed' by running as root, needs to find a writeable directory -do-test: - cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} tests .include "../../lang/python/batteries-included.mk" .include "../../lang/python/wheel.mk" Index: pkgsrc/devel/py-coverage/PLIST diff -u pkgsrc/devel/py-coverage/PLIST:1.16 pkgsrc/devel/py-coverage/PLIST:1.17 --- pkgsrc/devel/py-coverage/PLIST:1.16 Sat Oct 28 19:56:58 2023 +++ pkgsrc/devel/py-coverage/PLIST Sun Nov 26 10:21:37 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.16 2023/10/28 19:56:58 wiz Exp $ +@comment $NetBSD: PLIST,v 1.17 2023/11/26 10:21:37 adam Exp $ bin/coverage-${PYVERSSUFFIX} ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt ${PYSITELIB}/${WHEEL_INFODIR}/METADATA @@ -123,6 +123,7 @@ ${PYSITELIB}/coverage/templite.pyo ${PYSITELIB}/coverage/tomlconfig.py ${PYSITELIB}/coverage/tomlconfig.pyc ${PYSITELIB}/coverage/tomlconfig.pyo +${PYSITELIB}/coverage/tracer.pyi ${PYSITELIB}/coverage/tracer.so ${PYSITELIB}/coverage/types.py ${PYSITELIB}/coverage/types.pyc --_----------=_1700994098100700--