diff options
author | Dave Cobbley <david.j.cobbley@linux.intel.com> | 2018-08-14 10:05:37 -0700 |
---|---|---|
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | 2018-08-22 21:26:31 -0400 |
commit | eb8dc40360f0cfef56fb6947cc817a547d6d9bc6 (patch) | |
tree | de291a73dc37168da6370e2cf16c347d1eba9df8 /import-layers/yocto-poky/scripts/lib/recipetool/setvar.py | |
parent | 9c3cf826d853102535ead04cebc2d6023eff3032 (diff) | |
download | blackbird-openbmc-eb8dc40360f0cfef56fb6947cc817a547d6d9bc6.tar.gz blackbird-openbmc-eb8dc40360f0cfef56fb6947cc817a547d6d9bc6.zip |
[Subtree] Removing import-layers directory
As part of the move to subtrees, need to bring all the import layers
content to the top level.
Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f
Signed-off-by: Dave Cobbley <david.j.cobbley@linux.intel.com>
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Diffstat (limited to 'import-layers/yocto-poky/scripts/lib/recipetool/setvar.py')
-rw-r--r-- | import-layers/yocto-poky/scripts/lib/recipetool/setvar.py | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/import-layers/yocto-poky/scripts/lib/recipetool/setvar.py b/import-layers/yocto-poky/scripts/lib/recipetool/setvar.py deleted file mode 100644 index 9de315a0e..000000000 --- a/import-layers/yocto-poky/scripts/lib/recipetool/setvar.py +++ /dev/null @@ -1,75 +0,0 @@ -# Recipe creation tool - set variable plugin -# -# Copyright (C) 2015 Intel Corporation -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License version 2 as -# published by the Free Software Foundation. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License along -# with this program; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - -import sys -import os -import argparse -import glob -import fnmatch -import re -import logging -import scriptutils - -logger = logging.getLogger('recipetool') - -tinfoil = None -plugins = None - -def tinfoil_init(instance): - global tinfoil - tinfoil = instance - -def setvar(args): - import oe.recipeutils - - if args.delete: - if args.value: - logger.error('-D/--delete and specifying a value are mutually exclusive') - return 1 - value = None - else: - if args.value is None: - logger.error('You must specify a value if not using -D/--delete') - return 1 - value = args.value - varvalues = {args.varname: value} - - if args.recipe_only: - patches = [oe.recipeutils.patch_recipe_file(args.recipefile, varvalues, patch=args.patch)] - else: - rd = tinfoil.parse_recipe_file(args.recipefile, False) - if not rd: - return 1 - patches = oe.recipeutils.patch_recipe(rd, args.recipefile, varvalues, patch=args.patch) - if args.patch: - for patch in patches: - for line in patch: - sys.stdout.write(line) - return 0 - - -def register_commands(subparsers): - parser_setvar = subparsers.add_parser('setvar', - help='Set a variable within a recipe', - description='Adds/updates the value a variable is set to in a recipe') - parser_setvar.add_argument('recipefile', help='Recipe file to update') - parser_setvar.add_argument('varname', help='Variable name to set') - parser_setvar.add_argument('value', nargs='?', help='New value to set the variable to') - parser_setvar.add_argument('--recipe-only', '-r', help='Do not set variable in any include file if present', action='store_true') - parser_setvar.add_argument('--patch', '-p', help='Create a patch to make the change instead of modifying the recipe', action='store_true') - parser_setvar.add_argument('--delete', '-D', help='Delete the specified value instead of setting it', action='store_true') - parser_setvar.set_defaults(func=setvar) |