Received: by mail.netbsd.org (Postfix, from userid 605) id BDB1384E2E; Fri, 3 Jan 2020 13:17:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 46F9A84D61 for ; Fri, 3 Jan 2020 13:17:53 +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 uC9qGk5wJcmm for ; Fri, 3 Jan 2020 13:17:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AB65084D58 for ; Fri, 3 Jan 2020 13:17:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A533CFA97; Fri, 3 Jan 2020 13:17:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578057472277650" MIME-Version: 1.0 Date: Fri, 3 Jan 2020 13:17:52 +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: <20200103131752.A533CFA97@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. --_----------=_1578057472277650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Jan 3 13:17:52 UTC 2020 Modified Files: pkgsrc/devel/py-coverage: Makefile distinfo Log Message: py-coverage: updated to 5.0.1 Version 5.0.1: - If a 4.x data file is the cause of a "file is not a database" error, then use a more specific error message, "Looks like a coverage 4.x data file, are you mixing versions of coverage?" Helps diagnose the problems described in `issue 886`_. - Measurement contexts and relative file names didn't work together, as reported in `issue 899`_ and `issue 900`_. This is now fixed, thanks to David Szotten. - When using ``coverage run --concurrency=multiprocessing``, all data files should be named with parallel-ready suffixes. 5.0 mistakenly named the main process' file with no suffix when using ``--append``. This is now fixed, closing `issue 880`_. - Fixed a problem on Windows when the current directory is changed to a different drive (`issue 895`_). Thanks, Olivier Grisel. - Updated Python 3.9 support to 3.9a2. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-coverage/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-coverage/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578057472277650 Content-Disposition: inline Content-Length: 1668 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.19 pkgsrc/devel/py-coverage/Makefile:1.20 --- pkgsrc/devel/py-coverage/Makefile:1.19 Sun Dec 15 11:48:31 2019 +++ pkgsrc/devel/py-coverage/Makefile Fri Jan 3 13:17:52 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.19 2019/12/15 11:48:31 adam Exp $ +# $NetBSD: Makefile,v 1.20 2020/01/03 13:17:52 adam Exp $ -DISTNAME= coverage-5.0 +DISTNAME= coverage-5.0.1 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.14 pkgsrc/devel/py-coverage/distinfo:1.15 --- pkgsrc/devel/py-coverage/distinfo:1.14 Sun Dec 15 11:48:31 2019 +++ pkgsrc/devel/py-coverage/distinfo Fri Jan 3 13:17:52 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2019/12/15 11:48:31 adam Exp $ +$NetBSD: distinfo,v 1.15 2020/01/03 13:17:52 adam Exp $ -SHA1 (coverage-5.0.tar.gz) = 361f7245df046c7fc77cd76701e94f617e5eed09 -RMD160 (coverage-5.0.tar.gz) = 8077f85b4f0269ced22e29214e693cafa9925eea -SHA512 (coverage-5.0.tar.gz) = 3f6affee574ce34637a7a6ed8d8fd692d4dd502797577b8491e0211c62d49b1c1d82efc53e704f350c71fcc9407d988ecbd71d065b58cbc655ae1ff7448ebfb2 -Size (coverage-5.0.tar.gz) = 673837 bytes +SHA1 (coverage-5.0.1.tar.gz) = 642d5102243ebaf3e20afd24d2a14cf5813b53eb +RMD160 (coverage-5.0.1.tar.gz) = 16dfd2b60d0e2cf65fd9c254cad6a5f843f16070 +SHA512 (coverage-5.0.1.tar.gz) = e8c50a49e69b02e08cb05ca776ef2f6cf8dad4d22811ee00d266203d4372d499818e5a3f61946487258d6efd8f916c0c150cfba41dbad746f57f08bd0b35dd84 +Size (coverage-5.0.1.tar.gz) = 675172 bytes --_----------=_1578057472277650--