[oe-commits] [openembedded-core] 01/02: insane.bbclass: in file-rdeps do not look into RDEPENDS recursively

git at git.openembedded.org git at git.openembedded.org
Thu Aug 8 09:23:30 UTC 2019


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

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

commit c54e3a4df655ffaef4f9cdde101f9bdab2217530
Author: Alexander Kanavin <alex.kanavin at gmail.com>
AuthorDate: Wed Aug 7 12:29:33 2019 +0200

    insane.bbclass: in file-rdeps do not look into RDEPENDS recursively
    
    Recursive RDEPENDS resolution requires that all of the dependent
    recipes' packaging has completed. There is no mechanism to ensure that
    and therefore races were observed.
    
    This change effectively requires recipes to list their runtime file
    dependencies explicitly rather than have them pulled indirectly.
    This may require a bit of fixing in layers, but should result
    in a better definition of runtime file dependencies.
    
    Signed-off-by: Alexander Kanavin <alex.kanavin at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/insane.bbclass | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index 35c4fdb..9b886d1 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -722,25 +722,7 @@ def package_qa_check_rdepends(pkg, pkgdest, skip, taskdeps, packages, d):
                             filerdepends[subkey] = key[13:]
 
             if filerdepends:
-                next = rdepends
                 done = rdepends[:]
-                # Find all the rdepends on the dependency chain
-                while next:
-                    new = []
-                    for rdep in next:
-                        rdep_data = oe.packagedata.read_subpkgdata(rdep, d)
-                        sub_rdeps = rdep_data.get("RDEPENDS_" + rdep)
-                        if not sub_rdeps:
-                            continue
-                        for sub_rdep in bb.utils.explode_deps(sub_rdeps):
-                            if sub_rdep in done:
-                                continue
-                            if oe.packagedata.has_subpkgdata(sub_rdep, d):
-                                # It's a new rdep
-                                done.append(sub_rdep)
-                                new.append(sub_rdep)
-                    next = new
-
                 # Add the rprovides of itself
                 if pkg not in done:
                     done.insert(0, pkg)

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


More information about the Openembedded-commits mailing list