Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/coverage/
Date: Fri, 03 Jun 2022 05:37:49
Message-Id: 1654234658.e4458cdf3f722ea79001d6f1fedfd7ad401cdcdb.mgorny@gentoo
1 commit: e4458cdf3f722ea79001d6f1fedfd7ad401cdcdb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 04:49:48 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 05:37:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4458cdf
7
8 dev-python/coverage: Bump to 6.4.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/coverage/Manifest | 1 +
13 dev-python/coverage/coverage-6.4.1.ebuild | 68 +++++++++++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/dev-python/coverage/Manifest b/dev-python/coverage/Manifest
17 index 9c9afc730d18..ec5b6d7c18e5 100644
18 --- a/dev-python/coverage/Manifest
19 +++ b/dev-python/coverage/Manifest
20 @@ -1,3 +1,4 @@
21 DIST coverage-6.3.2.tar.gz 709294 BLAKE2B 2da96731ee0065fb6139af7db073284a83efa135e7379d2a6d6e571cdf58c888cf72719fbddadb1bd8f62b0b155b8420a84377068c40e4c813533b3ad6b190a8 SHA512 d9ea3a93eefe2dbb723ed1eadb09dc1165c4f46e7186889ce3615411283baac1d80f04a3831208a164f99accea5d246d4613a7c2e909d2e63d3c714620432a16
22 DIST coverage-6.3.3.tar.gz 710958 BLAKE2B 8bc1e9504e8f59bc2afea40c63958e463d2f6bfc5fa09c890c1c1f8e2ab502e6ad657edda5616f6a866f460b9f73cdda5ab081f8de281d23314f205d61c7621b SHA512 4b3f42602c50bf00a627ff40f3a04b1e8e457ad57759fb93dddb55eedd5ffe775fa81983f5f53502576b89c793c69a52a269148e7b028d5c87f0d4bf3a4d11b1
23 +DIST coverage-6.4.1.tar.gz 719971 BLAKE2B 047c57ffae092a9e04470a64d090ee7c3274c5ab60dd69d67c8151e85954b5cf2c34748f2e2641ac8229ed66a238e994d93b17f7ac4c92bce3eb919a5b7f1795 SHA512 d7b40bae4fee36c71befb490ee3341b023c0bff38ed2c97cf57a65e47be44b71685b130879640b1c8560359dbc31b0da523f5c363f3544ff666b804c7af122f0
24 DIST coverage-6.4.tar.gz 715897 BLAKE2B 69fd1979da2c652d5cf8b83adcde4755824faf832867c0181e610ef1369bae217c487b230aa649f03692440efc78628474d72303635568f8e7e5b41f83afc1ed SHA512 e834ff2329eb930ea40a28e8be7f665322558a1f00b5297a2daaaefc986ae451f333ea76bf6e345cad1560d721ebd990cdd5b79b30bddd9e17223acc85508089
25
26 diff --git a/dev-python/coverage/coverage-6.4.1.ebuild b/dev-python/coverage/coverage-6.4.1.ebuild
27 new file mode 100644
28 index 000000000000..8a27c2c95f30
29 --- /dev/null
30 +++ b/dev-python/coverage/coverage-6.4.1.ebuild
31 @@ -0,0 +1,68 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
39 +PYTHON_REQ_USE="threads(+),sqlite(+)"
40 +
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="Code coverage measurement for Python"
44 +HOMEPAGE="
45 + https://coverage.readthedocs.io/en/latest/
46 + https://github.com/nedbat/coveragepy/
47 + https://pypi.org/project/coverage/
48 +"
49 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
50 +
51 +LICENSE="BSD"
52 +SLOT="0"
53 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
54 +
55 +BDEPEND="
56 + test? (
57 + dev-python/flaky[${PYTHON_USEDEP}]
58 + dev-python/hypothesis[${PYTHON_USEDEP}]
59 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
60 + >=dev-python/unittest-mixins-1.4[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +
66 +src_prepare() {
67 + sed -i -e '/^addopts/s:-q -n auto::' setup.cfg || die
68 + distutils-r1_src_prepare
69 +}
70 +
71 +test_tracer() {
72 + local -x COVERAGE_TEST_TRACER=${1}
73 + einfo " Testing with the ${COVERAGE_TEST_TRACER} tracer ..."
74 + epytest tests
75 +}
76 +
77 +python_test() {
78 + "${EPYTHON}" igor.py zip_mods || die
79 +
80 + local -x COVERAGE_TESTING=True
81 + # TODO: figure out why they can't be imported inside test env
82 + local -x COVERAGE_NO_CONTRACTS=1
83 + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
84 + local -x PYTEST_PLUGINS=_hypothesis_pytestplugin,flaky.flaky_pytest_plugin,xdist.plugin
85 +
86 + local prev_opt=$(shopt -p nullglob)
87 + shopt -s nullglob
88 + local c_ext=( "${BUILD_DIR}/install$(python_get_sitedir)"/coverage/*.so )
89 + ${prev_opt}
90 +
91 + if [[ -n ${c_ext} ]]; then
92 + cp "${c_ext}" \
93 + coverage/ || die
94 + test_tracer c
95 + rm coverage/*.so || die
96 + else
97 + test_tracer py
98 + fi
99 +}