mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 8.3: - Replace setup.py with hatchling. To install from source at least version 21.3 of pip is needed. - Drop support for Python 3.8. - Add condition coverage to text summary report. - Add --include to search files in search paths which should be added to report. - Add option to generate LCOV format produced by version 1.x of LCOV tool. - Extend logging for data merge errors with info about the data sources. - Add condition coverage merge mode option --merge-mode-conditions - Add --gcov-suspicious-hits-threshold to configure the value for detecting suspicious hits in GCOV files. - Renamed JSON element destination_blockno to destination_block_id. - Add --html-block-ids to show the block ids of the lines and branches in HTML report. - Fixed an error handling bug throwing a TypeError exception on a gcov merge assertion failure instead of reporting the error and (if requested by the user) continuing execution - Check format version of external generated gcov JSON files. - Fix crash on Windows when trying to fix the case of the files. - Fix LCOV report. Excluded lines where added with a count of 0. - Fix line exclusion not clearing all child coverage data. - Fix summary stats in JaCoCo report. - Fix path issue when reading/writing Coveralls report. - Fix issue with negative counters in GCOV JSON export. License-Update: Update year Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
781 B
BlitzBasic
33 lines
781 B
BlitzBasic
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"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/gcovr/gcovr.git;branch=main;protocol=https \
|
|
file://0001-pyproject.toml-Support-newer-versions.patch \
|
|
"
|
|
SRCREV = "fe536afac4da31e86909191ef31708755ab8cf83"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit python_hatchling
|
|
|
|
DEPENDS += " \
|
|
python3-hatchling-native \
|
|
python3-hatch-vcs-native \
|
|
python3-hatch-fancy-pypi-readme-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-colorlog \
|
|
python3-jinja2 \
|
|
python3-lxml \
|
|
python3-multiprocessing \
|
|
python3-pygments \
|
|
python3-setuptools \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|