From: Ferry Toth Date: Wed, 13 Apr 2022 20:37:42 +0000 (+0200) Subject: package_manager: fix missing dependency on gnupg when signing deb package feeds X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~4393 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c063b658e30a24be9214abc23cd2a16c0260e93e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git package_manager: fix missing dependency on gnupg when signing deb package feeds When signing the deb package feed gpg tools are a soft requirement. If gnupg-native is not declared a dependancy the version from hosttools is used. Unfortunately the gpg-agent version from Ubuntu 16.04 on the autobuilders is incompatible with the package_index task and fails during oe-selftest. Fix by making gnupg-native a dependency. Fixes: 0b4231b5 "package_manager: sign DEB package feeds" Reported-by: Alexandre Belloni Suggested-by: Richard Purdie Signed-off-by: Ferry Toth Signed-off-by: Alexandre Belloni Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sign_package_feed.bbclass b/meta/classes/sign_package_feed.bbclass index 16bcd147aa7..f1504c2225b 100644 --- a/meta/classes/sign_package_feed.bbclass +++ b/meta/classes/sign_package_feed.bbclass @@ -27,6 +27,7 @@ inherit sanity PACKAGE_FEED_SIGN = '1' PACKAGE_FEED_GPG_BACKEND ?= 'local' PACKAGE_FEED_GPG_SIGNATURE_TYPE ?= 'ASC' +PACKAGEINDEXDEPS += "gnupg-native:do_populate_sysroot" # Make feed signing key to be present in rootfs FEATURE_PACKAGES_package-management:append = " signing-keys-packagefeed"