devel/py-coverage: update to 6.3.2 release

Changelog:	https://coverage.readthedocs.io/en/latest/changes.html#version-6-3-2-2022-02-20
Approved by:	maintainer (lwhsu)
Sponsored by:	Netzkommune GmbH
This commit is contained in:
Dima Panov
2022-02-22 12:46:58 +03:00
parent a8a6243eda
commit 26c7cd1408
3 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
PORTNAME= coverage
PORTVERSION= 4.5.4
PORTVERSION= 6.3.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@@ -9,7 +9,7 @@ COMMENT= Code coverage measurement for Python
LICENSE= BSD2CLAUSE
USES= python:3.6+
USES= python
USE_PYTHON= autoplist concurrent distutils
post-install:

View File

@@ -1,3 +1,3 @@
TIMESTAMP = 1568761933
SHA256 (coverage-4.5.4.tar.gz) = e07d9f1a23e9e93ab5c62902833bf3e4b1f65502927379148b6622686223125c
SIZE (coverage-4.5.4.tar.gz) = 385185
TIMESTAMP = 1645520446
SHA256 (coverage-6.3.2.tar.gz) = 03e2a7826086b91ef345ff18742ee9fc47a6839ccd517061ef8fa1976e652ce9
SIZE (coverage-6.3.2.tar.gz) = 709294

View File

@@ -1,15 +1,15 @@
Allow USE_PYTHON=concurrent to handle script renaming/linking for multiple
Python versions.
--- setup.py.orig 2018-01-29 11:46:04 UTC
--- setup.py.orig 2022-02-20 22:41:35 UTC
+++ setup.py
@@ -86,12 +86,9 @@ setup_args = dict(
@@ -97,12 +97,9 @@ setup_args = dict(
},
entry_points={
- # Install a script as "coverage", and as "coverage[23]", and as
- # "coverage-2.7" (or whatever).
+ # Install a script as "coverage"
- # Install a script as "coverage", and as "coverage3", and as
- # "coverage-3.7" (or whatever).
+ # Install a script as "coverage".
'console_scripts': [
'coverage = coverage.cmdline:main',
- 'coverage%d = coverage.cmdline:main' % sys.version_info[:1],