summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2019-08-16 11:28:57 +0200
committerLaurent Bonnans <laurent.bonnans@here.com>2019-08-16 11:31:53 +0200
commit1b46307d5727f794126817329fdfc2c644813286 (patch)
tree0132547b99dc636478bffdfc6a6dd1d1c14bdff7
parent8b4f0cf7d080b01fdcf2c91caad57fb5704c5515 (diff)
downloadmeta-updater-1b46307d5727f794126817329fdfc2c644813286.tar.gz
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 <laurent.bonnans@here.com>
-rw-r--r--recipes-sota/aktualizr/aktualizr_git.bb2
1 files changed, 1 insertions, 1 deletions
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
10RDEPENDS_${PN}_class-target = "aktualizr-configs lshw" 10RDEPENDS_${PN}_class-target = "aktualizr-configs lshw"
11RDEPENDS_${PN}-host-tools = "aktualizr aktualizr-repo aktualizr-cert-provider ${@bb.utils.contains('PACKAGECONFIG', 'sota-tools', 'garage-deploy garage-push', '', d)}" 11RDEPENDS_${PN}-host-tools = "aktualizr aktualizr-repo aktualizr-cert-provider ${@bb.utils.contains('PACKAGECONFIG', 'sota-tools', 'garage-deploy garage-push', '', d)}"
12 12
13RDEPENDS_${PN}-ptest += "bash cmake curl net-tools python3-misc python3-modules openssl-bin sqlite3 valgrind" 13RDEPENDS_${PN}-ptest += "bash cmake curl net-tools python3-core python3-misc python3-modules openssl-bin sqlite3 valgrind"
14 14
15PV = "1.0+git${SRCPV}" 15PV = "1.0+git${SRCPV}"
16PR = "7" 16PR = "7"