[yocto] [yocto-autobuilder][PATCH] CreateBBLayersConf: remove meta-qt4 after layer version 10

Stephano Cetola stephano.cetola at linux.intel.com
Fri Jul 28 08:56:15 PDT 2017


Qt4 is EOL and is no longer being supported. This patch removes
meta-qt4 from the build when the layer version is great than 10.

See this commit for removal justifications:
oecore c96aa431f2f56d023b84d28e049065eef2a7490f

And this for the layer bump:
oecore 179b7ae2511974173ae4aa72dfb49384ff69c2e5

Signed-off-by: Stephano Cetola <stephano.cetola at linux.intel.com>
---
 .../site-packages/autobuilder/buildsteps/CreateBBLayersConf.py          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/python2.7/site-packages/autobuilder/buildsteps/CreateBBLayersConf.py b/lib/python2.7/site-packages/autobuilder/buildsteps/CreateBBLayersConf.py
index 74871604c..593b9ee37 100644
--- a/lib/python2.7/site-packages/autobuilder/buildsteps/CreateBBLayersConf.py
+++ b/lib/python2.7/site-packages/autobuilder/buildsteps/CreateBBLayersConf.py
@@ -92,7 +92,7 @@ class CreateBBLayersConf(ShellCommand):
                             if layerversioncore < 9:
                                 fout = fout + workdir + '/build/' + layer.iterkeys().next() + ' \ \n'
                         elif layer.iterkeys().next()=="meta-qt4":
-                            if layerversioncore > 6:
+                            if layerversioncore > 6 and layerversioncore < 11:
                                 fout = fout + workdir + '/build/' + layer.iterkeys().next() + ' \ \n'
                         elif layer.iterkeys().next()=="meta-gplv2":
                             # We only want meta-gplv2 for pyro or newer
-- 
2.13.3




More information about the yocto mailing list