summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-12-13 20:09:42 +1300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-14 12:30:50 +0000
commit078ef4361d859030f6f8c5e795f74a4bd5056215 (patch)
tree51e47f8b292213aaef8a8f057a86d898bc1776aa /meta
parent85de43fccda7718876ffefd64457c40a2fdc38fd (diff)
downloadpoky-078ef4361d859030f6f8c5e795f74a4bd5056215.tar.gz
lib/oe/recipeutils: drop parse_recipe_simple()
This was intended to be used with tinfoil, but tinfoil now has its own parse_recipe() method to do this which works properly in the memres case. (From OE-Core rev: cdfc6173cb06ca374b7d927442a0fdde8373ba48) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oe/recipeutils.py22
1 files changed, 0 insertions, 22 deletions
diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py
index 92fa431e0b..26c926f214 100644
--- a/meta/lib/oe/recipeutils.py
+++ b/meta/lib/oe/recipeutils.py
@@ -52,28 +52,6 @@ def parse_recipe(cooker, fn, appendfiles):
52 return envdata 52 return envdata
53 53
54 54
55def parse_recipe_simple(cooker, pn, d, appends=True):
56 """
57 Parse a recipe and optionally all bbappends that apply to it
58 in the current configuration.
59 """
60 import bb.providers
61
62 recipefile = pn_to_recipe(cooker, pn)
63 if not recipefile:
64 skipreasons = get_unavailable_reasons(cooker, pn)
65 # We may as well re-use bb.providers.NoProvider here
66 if skipreasons:
67 raise bb.providers.NoProvider(skipreasons)
68 else:
69 raise bb.providers.NoProvider('Unable to find any recipe file matching %s' % pn)
70 if appends:
71 appendfiles = cooker.collection.get_file_appends(recipefile)
72 else:
73 appendfiles = None
74 return parse_recipe(cooker, recipefile, appendfiles)
75
76
77def get_var_files(fn, varlist, d): 55def get_var_files(fn, varlist, d):
78 """Find the file in which each of a list of variables is set. 56 """Find the file in which each of a list of variables is set.
79 Note: requires variable history to be enabled when parsing. 57 Note: requires variable history to be enabled when parsing.