diff mbox series

[meta-arago,scarthgap,1/3] check_yocto_rules: Add new rules

Message ID 20250717144849.471-1-reatmon@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [meta-arago,scarthgap,1/3] check_yocto_rules: Add new rules | expand

Commit Message

Ryan Eatmon July 17, 2025, 2:48 p.m. UTC
- RPROVIDES does not need the space check for APPEND-1.
- emptty recipe does not need a space for GO_TAGS in APPEND-2.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 check_yocto_rules.json | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/check_yocto_rules.json b/check_yocto_rules.json
index 9cf776df..f6ce22a3 100644
--- a/check_yocto_rules.json
+++ b/check_yocto_rules.json
@@ -1,12 +1,15 @@ 
 {
     "APPEND-1" : {
-        "skip_vars" : [ "FILES", "RDEPENDS" ]
+        "skip_vars" : [ "FILES", "RDEPENDS", "RPROVIDES" ]
     },
     "APPEND-2" : {
         "skip_vars" : [ "PR", "PV" ],
         "files" : {
             "meta-arago-distro/conf/distro/include/arago-prefs.inc" : {
                 "skip_vars": [ "PREFERRED_PROVIDER_virtual/kernel" ]
+            },
+            "meta-arago-distro/recipes-graphics/emptty/emptty_0.13.0.bb" : {
+                "skip_vars" : [ "GO_TAGS" ]
             }
         }
     },