python3-gcovr: Upgrade 8.3 -> 8.5

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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Leon Anavi
2026-01-09 17:59:27 +02:00
committed by Khem Raj
parent d3e1c8f907
commit b80496df71
2 changed files with 8 additions and 8 deletions

View File

@@ -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"

View File

@@ -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