diff mbox series

[meta-python,4/4] python3-gcovr: Upgrade 8.3 -> 8.5

Message ID 20260109155927.3850975-4-leon.anavi@konsulko.com
State Under Review
Headers show
Series [meta-python,1/4] python3-typer: Upgrade 0.21.0 -> 0.21.1 | expand

Commit Message

Leon Anavi Jan. 9, 2026, 3:59 p.m. UTC
Upgrade to release 8.5:

Breaking changes:

- The option --lcov-test-name doesn't accept values with spaces
  anymore.
- The option --lcov-format-1.x is deprecated and mapped to
  --lcov-format-version=1.x.
- Changes to HTML templates.

New features and notable changes:

- Due to added support for LLVM source based code coverage format
  some configuration file keys got changed. The old gcov named
  options are still supported but they also affect the LLVM
  toolchain.

Bug fixes and small improvements:

- Fix coveralls report if there are several coverage elements per
  line.
- Fix not excluded conditions if branches are excluded by comments.
- Fix reported excluded branches in LCOV report.
- Fix exclusion filter --gcov-exclude.
- Add --json-trace-data-source to include the trace data source in
  the JSON report independent from --verbose.
- Remove generated gcov files on error and catch additional gcov
  error message.
- Change default HTML theme excluded line color.
- Move theme colors to a separate CSS file so they can be overridden
  with a simple --html-template-dir directory with only the
  style.colors.css file.
- Fix regular expression for detecting a version mismatch between
  gcc and gcov.
- Improve logging messages for GCOV execution errors to not print
  information twice and add trace messages for gcov execution.
- Fix handling of lines after function specialization.
- Improve performance by changing logging messages (level and lazy
  interpolation).
- Fix text report for covered decisions.
- Fix runtime problem introduced with 8.4.
- Fix wrong entries in data source attribute of JSON report.
- Fix nested HTML report without coverage data.
- Add warning if coverage data is empty.
- Add warning if function lines are missing in external generated
  GCOV files.
- Extend support for zipped reports. If last suffix is .xz then
  LZMA is used to compress the report.
- Fix function exclusion in report generation.
- Do not ignore lines without functions, e.g. from inlined code.
- Ignore all whitespaces instead of only spaces for detection of
  noncode lines.
- Add support for temporary merging line coverage objects without
  modifying the data model.
- Change internal behavior of --exclude-function-lines to exclude
  the line of function definition instead of removing it completely.
- Ensure that all functions have a line coverage element in LCOV
  report.

License-Update: Update years

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../0001-pyproject.toml-Support-newer-versions.patch | 12 ++++++------
 .../{python3-gcovr_8.3.bb => python3-gcovr_8.5.bb}   |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-gcovr_8.3.bb => python3-gcovr_8.5.bb} (83%)
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch b/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch
index b06acdf333..2e422cd8fc 100644
--- a/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch
+++ b/meta-python/recipes-devtools/python/python3-gcovr/0001-pyproject.toml-Support-newer-versions.patch
@@ -20,12 +20,12 @@  index f8e54eb03..e6242f042 100644
  
  [build-system]
  requires = [
--    "hatchling==1.26.1",
--    "hatch-vcs==0.4.0",
--    "hatch-fancy-pypi-readme==24.1.0"
-+    "hatchling>=1.26.1",
-+    "hatch-vcs>=0.4.0",
-+    "hatch-fancy-pypi-readme>=24.1.0"
+-    "hatchling==1.27.0",
+-    "hatch-vcs==0.5.0",
+-    "hatch-fancy-pypi-readme==25.1.0",
++    "hatchling>=1.27.0",
++    "hatch-vcs>=0.5.0",
++    "hatch-fancy-pypi-readme>=25.1.0"
  ]
  build-backend = "hatchling.build"
  
diff --git a/meta-python/recipes-devtools/python/python3-gcovr_8.3.bb b/meta-python/recipes-devtools/python/python3-gcovr_8.5.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-gcovr_8.3.bb
rename to meta-python/recipes-devtools/python/python3-gcovr_8.5.bb
index 4f0b6bb150..68cc9bc274 100644
--- a/meta-python/recipes-devtools/python/python3-gcovr_8.3.bb
+++ b/meta-python/recipes-devtools/python/python3-gcovr_8.5.bb
@@ -2,13 +2,13 @@  DESCRIPTION = "generate GCC code coverage reports"
 HOMEPAGE = "https://gcovr.com"
 SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ae27363fce24765bc79a095313a3b002"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=ba06c93410cc51bafc66fa06456879bf"
 
 SRC_URI = " \
     git://github.com/gcovr/gcovr.git;branch=main;protocol=https \
     file://0001-pyproject.toml-Support-newer-versions.patch \
 "
-SRCREV = "fe536afac4da31e86909191ef31708755ab8cf83"
+SRCREV = "71eedb8f300612d4095f2ffa4ac60e3fdd58c192"
 
 
 inherit python_hatchling