]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
knotty: drop the ETA from the progressbar for now
authorChris Larson <chris_larson@mentor.com>
Tue, 23 Nov 2010 19:02:40 +0000 (14:02 -0500)
committerChris Larson <chris_larson@mentor.com>
Tue, 23 Nov 2010 19:02:41 +0000 (14:02 -0500)
Currently, the progress bar is an indication of the processing of our recipes,
which includes loading the cache file, then for each recipe, either adding the
existing cached information to the CacheData or parsing the recipe from disk.
These tasks clearly take different amounts of time, so the ETA is unreliable
today.  We'll resurrect this functionality after we revamp the progress
handling, fully incorporating the load of the cache file.

Signed-off-by: Chris Larson <chris_larson@mentor.com>
lib/bb/ui/knotty.py

index 7412b39e869901459ee2937363b528d9c6d7d670..fb76dc8282554a26faa61370483210c07d223c8a 100644 (file)
@@ -31,7 +31,7 @@ from bb.ui import uihelper
 
 logger = logging.getLogger("BitBake")
 widgets = ['Parsing recipes: ', progressbar.Percentage(), ' ',
-           progressbar.Bar(), ' ', progressbar.ETA()]
+           progressbar.Bar()]
 
 class BBLogFormatter(logging.Formatter):
     """Formatter which ensures that our 'plain' messages (logging.INFO + 1) are used as is"""