[oe-commits] [openembedded-core] 07/17: rootfs-postcommands: add test for unsatisfied RRECOMMENDS

git at git.openembedded.org git at git.openembedded.org
Thu Sep 21 15:56:24 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch pyro
in repository openembedded-core.

commit 514cadd28d05f5060b2538ef9b2920370c22bf73
Author: Jose Alarcon <jose.alarcon at ge.com>
AuthorDate: Mon Sep 4 08:12:24 2017 +0300

    rootfs-postcommands: add test for unsatisfied RRECOMMENDS
    
    The do_rootfs log contains a number of unsatisfied package
    recommendations. At the moment those are only visible when
    reviewing the rootfs log.
    
    This patch adds an extra check to surface any unsatisfied
    recommendation  as WARNINGS to the build output.
    
    Enable this check with:
    ROOTFS_POSTPROCESS_COMMAND += "rootfs_log_check_recommends;"
    
    (From OE-Core rev: 9d049bf7941f30e35c51775684559e95185fba96)
    
    Signed-off-by: Jose Alarcon <jose.alarcon at ge.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta/classes/rootfs-postcommands.bbclass | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/meta/classes/rootfs-postcommands.bbclass b/meta/classes/rootfs-postcommands.bbclass
index a107d0e..2503d89 100644
--- a/meta/classes/rootfs-postcommands.bbclass
+++ b/meta/classes/rootfs-postcommands.bbclass
@@ -305,3 +305,15 @@ python write_image_test_data() {
            os.remove(testdata_link)
         os.symlink(os.path.basename(testdata), testdata_link)
 }
+
+# Check for unsatisfied recommendations (RRECOMMENDS)
+python rootfs_log_check_recommends() {
+    log_path = d.expand("${T}/log.do_rootfs")
+    with open(log_path, 'r') as log:
+        for line in log:
+            if 'log_check' in line:
+                continue
+
+            if 'unsatisfied recommendation for' in line:
+                bb.warn('[log_check] %s: %s' % (d.getVar('PN', True), line))
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list