Lines Matching refs:recipe
33 def add_recipe(tar, recipe, data): argument
41 arcname = 'sources/%s' % recipe
56 for recipe in recipes:
57 if recipe not in workspace:
58 … logger.error('Recipe (%s) on %s argument not in the current workspace' % (recipe, param))
83 for recipe in args.include:
84 add_recipe(tar, recipe, workspace[recipe])
85 exported.append(recipe)
87 for recipe, data in workspace.items():
88 if recipe not in args.exclude:
89 add_recipe(tar, recipe, data)
90 exported.append(recipe)