diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2026-02-27 18:12:47 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-03-02 19:25:52 -0800 |
| commit | 4eda10a4eda5bdb31fd1db00b0d29bb60ec45730 (patch) | |
| tree | 4c1a9c432985b0580938d450e063e7e7f58ab37a /meta-python/recipes-devtools/python/python3-gcovr_8.6.bb | |
| parent | 5e59d1806e9efcc8cff15868fee10829f5e4c941 (diff) | |
| download | meta-openembedded-4eda10a4eda5bdb31fd1db00b0d29bb60ec45730.tar.gz | |
python3-gcovr: upgrade 8.5 -> 8.6
Changelog:
============
- Drop support for Python 3.9.Add support for Python 3.14.
- To avoid merge errors, add the line number to the name of the unknown function.
- If intermediate files are kept, rename the gcov files before processing them to log the final filename.
- Use the first line after a function definition and not the first line which is hit.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-gcovr_8.6.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-gcovr_8.6.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-gcovr_8.6.bb b/meta-python/recipes-devtools/python/python3-gcovr_8.6.bb new file mode 100644 index 0000000000..3098681bef --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-gcovr_8.6.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | DESCRIPTION = "generate GCC code coverage reports" | ||
| 2 | HOMEPAGE = "https://gcovr.com" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD-3-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ba06c93410cc51bafc66fa06456879bf" | ||
| 6 | |||
| 7 | SRC_URI = " \ | ||
| 8 | git://github.com/gcovr/gcovr.git;branch=main;protocol=https \ | ||
| 9 | file://0001-pyproject.toml-Support-newer-versions.patch \ | ||
| 10 | " | ||
| 11 | SRCREV = "e01ad73582821b5f90e079482164f8e885121e57" | ||
| 12 | |||
| 13 | |||
| 14 | inherit python_hatchling | ||
| 15 | |||
| 16 | DEPENDS += " \ | ||
| 17 | python3-hatchling-native \ | ||
| 18 | python3-hatch-vcs-native \ | ||
| 19 | python3-hatch-fancy-pypi-readme-native \ | ||
| 20 | " | ||
| 21 | |||
| 22 | RDEPENDS:${PN} += " \ | ||
| 23 | python3-colorlog \ | ||
| 24 | python3-jinja2 \ | ||
| 25 | python3-lxml \ | ||
| 26 | python3-multiprocessing \ | ||
| 27 | python3-pygments \ | ||
| 28 | python3-setuptools \ | ||
| 29 | " | ||
| 30 | |||
| 31 | BBCLASSEXTEND = "native nativesdk" | ||
