From: Holger Hans Peter Freyther Date: Thu, 18 Mar 2010 12:56:59 +0000 (+0100) Subject: oe_audit.py: Parse the full output of bitbake -s X-Git-Tag: Release-2010-05/1~340^2~28 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd415877ea420a848481f72a3227fdc577c5242c;p=openembedded.git oe_audit.py: Parse the full output of bitbake -s Instead of being forced to manually edit we can now parse the full output of bitbake -s. --- diff --git a/contrib/qa/oe_audit.py b/contrib/qa/oe_audit.py index 7e04480626..905f1108d3 100755 --- a/contrib/qa/oe_audit.py +++ b/contrib/qa/oe_audit.py @@ -11,6 +11,9 @@ def read_available(filename): packages = {} for line in f: + if line.startswith("NOTE: ") or line.startswith("Parsing .bb"): + continue + # str.split can not be used as we have multiple whitespace first_space = line.find(" ") package = line[0:first_space]