Received: by mail.netbsd.org (Postfix, from userid 605) id B169A84E88; Mon, 6 Jul 2020 15:42:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 396C484E86 for ; Mon, 6 Jul 2020 15:42:01 +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 mg8DD8rdl6lE for ; Mon, 6 Jul 2020 15:42:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AA68984E84 for ; Mon, 6 Jul 2020 15:42:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A474BFB28; Mon, 6 Jul 2020 15:42:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1594050120132220" MIME-Version: 1.0 Date: Mon, 6 Jul 2020 15:42:00 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-coverage To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20200706154200.A474BFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1594050120132220 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Jul 6 15:42:00 UTC 2020 Modified Files: pkgsrc/devel/py-coverage: Makefile distinfo Log Message: py-coverage: updated to 5.2 Version 5.2 - The HTML report has been redesigned by Victor Salvino. There is now a dark mode, the code text is larger, and system sans serif fonts are used, in addition to other small changes (`issue 858`_ and `pull request 931`_). - The ``coverage report`` and ``coverage html`` commands now accept a ``--precision`` option to control the number of decimal points displayed. - The ``coverage report`` and ``coverage html`` commands now accept a ``--no-skip-covered`` option to negate ``--skip-covered``. - The ``--skip-empty`` option is now available for the XML report, closing `issue 976`_. - The ``coverage report`` command now accepts a ``--sort`` option to specify how to sort the results. - If coverage fails due to the coverage total not reaching the ``--fail-under`` value, it will now print a message making the condition clear. - TOML configuration files with non-ASCII characters would cause errors on Windows (`issue 990`_). This is now fixed. - The output of ``--debug=trace`` now includes information about how the ``--source`` option is being interpreted, and the module names being considered. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/py-coverage/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/py-coverage/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1594050120132220 Content-Disposition: inline Content-Length: 1658 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.25 pkgsrc/devel/py-coverage/Makefile:1.26 --- pkgsrc/devel/py-coverage/Makefile:1.25 Sat May 16 09:09:04 2020 +++ pkgsrc/devel/py-coverage/Makefile Mon Jul 6 15:42:00 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2020/05/16 09:09:04 adam Exp $ +# $NetBSD: Makefile,v 1.26 2020/07/06 15:42:00 adam Exp $ -DISTNAME= coverage-5.1 +DISTNAME= coverage-5.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/coverage/} Index: pkgsrc/devel/py-coverage/distinfo diff -u pkgsrc/devel/py-coverage/distinfo:1.18 pkgsrc/devel/py-coverage/distinfo:1.19 --- pkgsrc/devel/py-coverage/distinfo:1.18 Wed Apr 29 10:45:09 2020 +++ pkgsrc/devel/py-coverage/distinfo Mon Jul 6 15:42:00 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.18 2020/04/29 10:45:09 adam Exp $ +$NetBSD: distinfo,v 1.19 2020/07/06 15:42:00 adam Exp $ -SHA1 (coverage-5.1.tar.gz) = 6fd65690a49074f1f0efae2b4063ffc778e44f63 -RMD160 (coverage-5.1.tar.gz) = 57177411db2e8163f51cdfa7c8b1d8941a606cb7 -SHA512 (coverage-5.1.tar.gz) = 7bd3ca158fe2eab1946c52161fb877623d4ed0382de193aa6eb267443fdda86089ec7aaae518115d6a3b5487fd1400320eb503b9afe83182fb3c3621ccbfb6d7 -Size (coverage-5.1.tar.gz) = 687427 bytes +SHA1 (coverage-5.2.tar.gz) = d6ad7a64f58ae0cd95ae5c19def7bc31595b2f8a +RMD160 (coverage-5.2.tar.gz) = 9b239db61dbda3af40885958d5c3e8e581265c81 +SHA512 (coverage-5.2.tar.gz) = 54645e66ab3e7632889a91703c479a885195d24b414d1559093059f0b648d40d7de22ca25816e43c30f955f0725eda6131ea7d43276d25ee25522ce0bd58683a +Size (coverage-5.2.tar.gz) = 693669 bytes --_----------=_1594050120132220--