summaryrefslogtreecommitdiff
path: root/contrib/oeaudit/oe.py
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-22 04:21:17 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-22 04:21:17 +0100
commit654f95c32918456f928f117871b15f09c0b6ae25 (patch)
treeab6569ee9ec2220dac2ce435cdb111dfbb9770e3 /contrib/oeaudit/oe.py
parent888edecd1b34a4f23e000e08f88a81e43f95732e (diff)
oeaudit: Move the oeaudit into a new subdirectory and split it up
* OE should contain OE related handling * FreeBSD should contain the handling of FreeBSD specific things like the auditfile format, mapping BSD names to OE..
Diffstat (limited to 'contrib/oeaudit/oe.py')
-rw-r--r--contrib/oeaudit/oe.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/contrib/oeaudit/oe.py b/contrib/oeaudit/oe.py
new file mode 100644
index 0000000000..f3326a5338
--- /dev/null
+++ b/contrib/oeaudit/oe.py
@@ -0,0 +1,28 @@
+def read_available(filename):
+ """
+ Parses the output of bitbake -s
+ minus the first few lines
+ """
+ f = open(filename)
+ packages = {}
+
+ for line in f:
+ if line.startswith("NOTE: ") or line.startswith("Parsing .bb") or line.startswith("done."):
+ continue
+
+ # str.split can not be used as we have multiple whitespace
+ split = line.split(" ", 1)
+ package = split[0]
+ rest = split[1].strip()
+
+ # we might have a latest package...
+ split = rest.split(" ", 1)
+ if len(split) == 2:
+ version = split[1].strip()
+ else:
+ version = split[0]
+
+ packages[package] = version
+ return packages
+
+