Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9E51485094 for ; Fri, 26 May 2023 19:51:11 +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 ZWLa8GJCOcxU for ; Fri, 26 May 2023 19:51:11 +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 16B5D85093 for ; Fri, 26 May 2023 19:51:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0A650FA87; Fri, 26 May 2023 19:51:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168513067165840" MIME-Version: 1.0 Date: Fri, 26 May 2023 19:51:11 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-test-cov To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230526195111.0A650FA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168513067165840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri May 26 19:51:10 UTC 2023 Modified Files: pkgsrc/devel/py-test-cov: Makefile distinfo Log Message: py-test-cov: updated to 4.1.0 4.1.0 (2023-05-24) ------------------ * Updated CI with new Pythons and dependencies. * Removed rsyncdir support. This makes pytest-cov compatible with xdist 3.0. * Optimized summary generation to not be performed if no reporting is active (for example, when ``--cov-report=''`` is used without ``--cov-fail-under``). * Added support for JSON reporting. * Refactored code to use f-strings. * Fixed a skip in the test suite for some old xdist. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/devel/py-test-cov/Makefile cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-test-cov/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168513067165840 Content-Disposition: inline Content-Length: 1605 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-test-cov/Makefile diff -u pkgsrc/devel/py-test-cov/Makefile:1.21 pkgsrc/devel/py-test-cov/Makefile:1.22 --- pkgsrc/devel/py-test-cov/Makefile:1.21 Tue Nov 8 13:50:05 2022 +++ pkgsrc/devel/py-test-cov/Makefile Fri May 26 19:51:10 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2022/11/08 13:50:05 adam Exp $ +# $NetBSD: Makefile,v 1.22 2023/05/26 19:51:10 adam Exp $ -DISTNAME= pytest-cov-4.0.0 +DISTNAME= pytest-cov-4.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/py//} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pytest-cov/} Index: pkgsrc/devel/py-test-cov/distinfo diff -u pkgsrc/devel/py-test-cov/distinfo:1.19 pkgsrc/devel/py-test-cov/distinfo:1.20 --- pkgsrc/devel/py-test-cov/distinfo:1.19 Tue Nov 8 13:50:05 2022 +++ pkgsrc/devel/py-test-cov/distinfo Fri May 26 19:51:10 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.19 2022/11/08 13:50:05 adam Exp $ +$NetBSD: distinfo,v 1.20 2023/05/26 19:51:10 adam Exp $ -BLAKE2s (pytest-cov-4.0.0.tar.gz) = 3435207604ac6c361db8a58afd38567a9a8ef9e0dcf62eeefe0ce325e19cfb8e -SHA512 (pytest-cov-4.0.0.tar.gz) = fb993be4d86b29a44e4f2ccd2309d99ab9fe8e6b291abbc2a8a3fc8b36479491165a242a20bfa9886dfd296fcc827da9984b556fdbe9a3ac496ac5b6ba379012 -Size (pytest-cov-4.0.0.tar.gz) = 62013 bytes +BLAKE2s (pytest-cov-4.1.0.tar.gz) = 86a350425f7b7fcf6dfd701cb1c0951bdbcec618dcfe2084dd5523917b09d9c5 +SHA512 (pytest-cov-4.1.0.tar.gz) = 1280e338ad236ae6757e4538a641fef740bee6c85c5af1f649ba4f28fd99f84ff1048ae40b8633d1751ea248788c1efd401aa078b3aa5929a9249514e5722fc1 +Size (pytest-cov-4.1.0.tar.gz) = 63245 bytes --_----------=_168513067165840--