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

Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
760 B
BlitzBasic
32 lines
760 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"
|
|
|
|
|
|
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"
|