[gnome-continuous-yocto/gnomeostree-3.28-rocko: 6820/8267] bitbake: tinfoil: set a flag when recipes have been parsed



commit eb7401d47087ba2347dcf780a0d07969bed4c072
Author: Paul Eggleton <paul eggleton linux intel com>
Date:   Wed Jul 19 11:56:02 2017 +0200

    bitbake: tinfoil: set a flag when recipes have been parsed
    
    Make it easy to determine if recipes are parsed (and thus information
    about available recipes is in memory).
    
    (Bitbake rev: 7efde2df2ff25063d36ac015146f1975284a69ff)
    
    Signed-off-by: Paul Eggleton <paul eggleton linux intel com>
    Signed-off-by: Richard Purdie <richard purdie linuxfoundation org>

 bitbake/lib/bb/tinfoil.py |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index ddc7b06..f31d7b2 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/lib/bb/tinfoil.py
@@ -217,6 +217,7 @@ class Tinfoil:
         self.tracking = tracking
         self.ui_module = None
         self.server_connection = None
+        self.recipes_parsed = False
         if setup_logging:
             # This is the *client-side* logger, nothing to do with
             # logging messages from the server
@@ -270,6 +271,7 @@ class Tinfoil:
                 self.run_command('parseConfiguration')
             else:
                 self.run_actions(config_params)
+                self.recipes_parsed = True
 
             self.config_data = bb.data.init()
             connector = TinfoilDataStoreConnector(self, None)
@@ -303,6 +305,7 @@ class Tinfoil:
         """
         config_params = TinfoilConfigParameters(config_only=False)
         self.run_actions(config_params)
+        self.recipes_parsed = True
 
     def run_command(self, command, *params):
         """


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]