devel/py-coverage: Update to 7.6.0

PR:		280520
This commit is contained in:
Nicholas Kirby 2024-08-15 01:14:36 +08:00 committed by Li-Wen Hsu
parent 118b15ba66
commit cea4b6fdc5
No known key found for this signature in database
GPG key ID: 7377A4A02A2954DD
3 changed files with 12 additions and 15 deletions

View file

@ -1,5 +1,5 @@
PORTNAME= coverage
PORTVERSION= 7.3.2
PORTVERSION= 7.6.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1698733342
SHA256 (coverage-7.3.2.tar.gz) = be32ad29341b0170e795ca590e1c07e81fc061cb5b10c74ce7203491484404ef
SIZE (coverage-7.3.2.tar.gz) = 764541
TIMESTAMP = 1722391464
SHA256 (coverage-7.6.0.tar.gz) = 289cc803fa1dc901f84701ac10c9ee873619320f2f9aff38794db4a4a0268d51
SIZE (coverage-7.6.0.tar.gz) = 797590

View file

@ -1,19 +1,16 @@
Allow USE_PYTHON=concurrent to handle script renaming/linking for multiple
Python versions.
--- setup.py.orig 2022-02-20 22:41:35 UTC
--- setup.py.orig 2024-07-31 02:05:53 UTC
+++ setup.py
@@ -97,12 +97,9 @@ setup_args = dict(
@@ -89,12 +89,9 @@ setup_args = dict(
],
},
entry_points={
- # 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],
- 'coverage-%d.%d = coverage.cmdline:main' % sys.version_info[:2],
"console_scripts": [
"coverage = coverage.cmdline:main",
- "coverage%d = coverage.cmdline:main" % sys.version_info[:1],
- "coverage-%d.%d = coverage.cmdline:main" % sys.version_info[:2],
],
},
extras_require={