The do_recipe_qa task checks if recipes have a maintainer except for certain types of recipes such as packagegroups or -native recipes. The new packagefeed recipe class is similar to a packagegroup and should be treated the same.
This change adds packagefeed recipes to the recipe types that don't require a maintainer. Signed-off-by: Charlie Johnston <[email protected]> --- meta/classes-global/insane.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass index 960dfc8924a..9ff4870afde 100644 --- a/meta/classes-global/insane.bbclass +++ b/meta/classes-global/insane.bbclass @@ -1488,7 +1488,7 @@ python do_recipe_qa() { def test_missing_maintainer(d): fn = d.getVar("FILE") pn = d.getVar("PN") - if pn.endswith("-native") or pn.startswith("nativesdk-") or "packagegroup-" in pn or "core-image-ptest-" in pn: + if pn.endswith("-native") or pn.startswith("nativesdk-") or "packagegroup-" in pn or "packagefeed-" in pn or "core-image-ptest-" in pn: return if not d.getVar('RECIPE_MAINTAINER'): oe.qa.handle_error("missing-maintainer", "Recipe {} in {} does not have an assigned maintainer. Please add an entry into meta/conf/distro/include/maintainers.inc.".format(pn, fn), d) -- 2.41.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#186390): https://lists.openembedded.org/g/openembedded-core/message/186390 Mute This Topic: https://lists.openembedded.org/mt/100825512/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
