From 1b46307d5727f794126817329fdfc2c644813286 Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Fri, 16 Aug 2019 11:28:57 +0200 Subject: Fix error during package_qa with aktualizr-ptest Oddly, this started happening: ERROR: aktualizr-1.0+gitAUTOINC+03778511cc-7 do_package_qa: QA Issue: /usr/lib/aktualizr/ptest/src/tests/sota_tools/headers_response_server.py contained in package aktualizr-ptest requires /usr/bin/python3, but no providers found in RDEPENDS_aktualizr-ptest? [file-rdeps] However, the python3 binary is already provided by python3-modules but for some reason the qa check tool trips on it. We need to add an explicit `python3-core` in the list. Signed-off-by: Laurent Bonnans --- recipes-sota/aktualizr/aktualizr_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index f14f52c..69fc1e9 100644 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb @@ -10,7 +10,7 @@ DEPENDS_append = "${@bb.utils.contains('PTEST_ENABLED', '1', ' coreutils-native RDEPENDS_${PN}_class-target = "aktualizr-configs lshw" RDEPENDS_${PN}-host-tools = "aktualizr aktualizr-repo aktualizr-cert-provider ${@bb.utils.contains('PACKAGECONFIG', 'sota-tools', 'garage-deploy garage-push', '', d)}" -RDEPENDS_${PN}-ptest += "bash cmake curl net-tools python3-misc python3-modules openssl-bin sqlite3 valgrind" +RDEPENDS_${PN}-ptest += "bash cmake curl net-tools python3-core python3-misc python3-modules openssl-bin sqlite3 valgrind" PV = "1.0+git${SRCPV}" PR = "7" -- cgit v1.2.3-54-g00ecf