meta-openembedded/meta-python/recipes-extended/tuna/tuna_0.20.bb
Khem Raj 4109ea0d89
tuna: Switch to PEP-517 build backend
The project has a proper pyproject.toml which declares the
setuptools.build.meta PEP-517 backend.

Fixes
WARNING: tuna-0.20-r0 do_check_backend: QA Issue: inherits setuptools3 but has pyproject.toml with setuptools.build_meta, use the correct class [pep517-backend]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
2025-11-08 06:25:09 -08:00

24 lines
634 B
BlitzBasic

SUMMARY = "cui/gui tool for tuning of running processes"
HOMEPAGE = "https://rt.wiki.kernel.org/index.php/Tuna"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
SRC_URI = "git://git.kernel.org/pub/scm/utils/tuna/tuna.git;branch=main"
SRCREV = "596d92cac33e64ec9b0176401395e6a4abc2266a"
RDEPENDS:${PN} += " \
python3-io \
python3-linux-procfs \
python3-logging \
python3-six \
"
inherit python_setuptools_build_meta
do_install:append() {
install -m 0755 -d ${D}${bindir}
install -m 0755 ${S}/tuna-cmd.py ${D}${bindir}/tuna
}