Files
tqma6-yocto-mirror/sources/meta-openembedded/meta-python/recipes-devtools/python/python3-covdefaults_2.3.0.bb
Siggi (OpenClaw Agent) 16accb6b24 Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved)
- Complete sources/ directory with all BitBake recipes
- Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl)
- Full traceability for Softwarefreigabeantrag
- GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4
- License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
2026-03-01 21:14:11 +00:00

31 lines
732 B
BlitzBasic

SUMMARY = "A coverage plugin to provide sensible default settings"
HOMEPAGE = "https://github.com/asottile/covdefaults"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=a3da826da635201a80d2fb40f3034929"
# Use GitHub SRC_URI, as pypi package does not include tests
SRC_URI += " \
git://github.com/asottile/covdefaults.git;branch=main;protocol=https \
file://run-ptest \
"
SRCREV = "007f5aff5d1c817883385a5f61f742dd11776dc6"
S = "${WORKDIR}/git"
inherit setuptools3 ptest
RDEPENDS:${PN} += " \
python3-coverage \
"
RDEPENDS:${PN}-ptest += " \
python3-pytest \
python3-unittest-automake-output \
"
do_install_ptest() {
install -d ${D}${PTEST_PATH}
cp -rf ${S}/tests ${D}${PTEST_PATH}
}