summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/utils.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py
index cee087fdfa..9a86410b15 100644
--- a/meta/lib/oe/utils.py
+++ b/meta/lib/oe/utils.py
@@ -208,6 +208,28 @@ def squashspaces(string):
208 import re 208 import re
209 return re.sub("\s+", " ", string).strip() 209 return re.sub("\s+", " ", string).strip()
210 210
211def format_pkg_list(pkg_dict, ret_format=None):
212 output = []
213
214 if ret_format == "arch":
215 for pkg in sorted(pkg_dict):
216 output.append("%s %s" % (pkg, pkg_dict[pkg]["arch"]))
217 elif ret_format == "file":
218 for pkg in sorted(pkg_dict):
219 output.append("%s %s %s" % (pkg, pkg_dict[pkg]["filename"], pkg_dict[pkg]["arch"]))
220 elif ret_format == "ver":
221 for pkg in sorted(pkg_dict):
222 output.append("%s %s %s" % (pkg, pkg_dict[pkg]["arch"], pkg_dict[pkg]["ver"]))
223 elif ret_format == "deps":
224 for pkg in sorted(pkg_dict):
225 for dep in pkg_dict[pkg]["deps"]:
226 output.append("%s|%s" % (pkg, dep))
227 else:
228 for pkg in sorted(pkg_dict):
229 output.append(pkg)
230
231 return '\n'.join(output)
232
211# 233#
212# Python 2.7 doesn't have threaded pools (just multiprocessing) 234# Python 2.7 doesn't have threaded pools (just multiprocessing)
213# so implement a version here 235# so implement a version here