1eb8dc403SDave Cobbley# Recipe creation tool - newappend plugin 2eb8dc403SDave Cobbley# 3eb8dc403SDave Cobbley# This sub-command creates a bbappend for the specified target and prints the 4eb8dc403SDave Cobbley# path to the bbappend. 5eb8dc403SDave Cobbley# 6eb8dc403SDave Cobbley# Example: recipetool newappend meta-mylayer busybox 7eb8dc403SDave Cobbley# 8eb8dc403SDave Cobbley# Copyright (C) 2015 Christopher Larson <kergoth@gmail.com> 9eb8dc403SDave Cobbley# 10*c342db35SBrad Bishop# SPDX-License-Identifier: GPL-2.0-only 11eb8dc403SDave Cobbley# 12eb8dc403SDave Cobbley 13eb8dc403SDave Cobbleyimport argparse 14eb8dc403SDave Cobbleyimport errno 15eb8dc403SDave Cobbleyimport logging 16eb8dc403SDave Cobbleyimport os 17eb8dc403SDave Cobbleyimport re 18eb8dc403SDave Cobbleyimport subprocess 19eb8dc403SDave Cobbleyimport sys 20eb8dc403SDave Cobbleyimport scriptutils 21eb8dc403SDave Cobbley 22eb8dc403SDave Cobbley 23eb8dc403SDave Cobbleylogger = logging.getLogger('recipetool') 24eb8dc403SDave Cobbleytinfoil = None 25eb8dc403SDave Cobbley 26eb8dc403SDave Cobbley 27eb8dc403SDave Cobbleydef tinfoil_init(instance): 28eb8dc403SDave Cobbley global tinfoil 29eb8dc403SDave Cobbley tinfoil = instance 30eb8dc403SDave Cobbley 31eb8dc403SDave Cobbley 32eb8dc403SDave Cobbleydef layer(layerpath): 33eb8dc403SDave Cobbley if not os.path.exists(os.path.join(layerpath, 'conf', 'layer.conf')): 34eb8dc403SDave Cobbley raise argparse.ArgumentTypeError('{0!r} must be a path to a valid layer'.format(layerpath)) 35eb8dc403SDave Cobbley return layerpath 36eb8dc403SDave Cobbley 37eb8dc403SDave Cobbley 38eb8dc403SDave Cobbleydef newappend(args): 39eb8dc403SDave Cobbley import oe.recipeutils 40eb8dc403SDave Cobbley 41eb8dc403SDave Cobbley recipe_path = tinfoil.get_recipe_file(args.target) 42eb8dc403SDave Cobbley 43eb8dc403SDave Cobbley rd = tinfoil.config_data.createCopy() 44eb8dc403SDave Cobbley rd.setVar('FILE', recipe_path) 45eb8dc403SDave Cobbley append_path, path_ok = oe.recipeutils.get_bbappend_path(rd, args.destlayer, args.wildcard_version) 46eb8dc403SDave Cobbley if not append_path: 47eb8dc403SDave Cobbley logger.error('Unable to determine layer directory containing %s', recipe_path) 48eb8dc403SDave Cobbley return 1 49eb8dc403SDave Cobbley 50eb8dc403SDave Cobbley if not path_ok: 511a4b7ee2SBrad Bishop logger.warning('Unable to determine correct subdirectory path for bbappend file - check that what %s adds to BBFILES also matches .bbappend files. Using %s for now, but until you fix this the bbappend will not be applied.', os.path.join(args.destlayer, 'conf', 'layer.conf'), os.path.dirname(append_path)) 52eb8dc403SDave Cobbley 53eb8dc403SDave Cobbley layerdirs = [os.path.abspath(layerdir) for layerdir in rd.getVar('BBLAYERS').split()] 54eb8dc403SDave Cobbley if not os.path.abspath(args.destlayer) in layerdirs: 551a4b7ee2SBrad Bishop logger.warning('Specified layer is not currently enabled in bblayers.conf, you will need to add it before this bbappend will be active') 56eb8dc403SDave Cobbley 57eb8dc403SDave Cobbley if not os.path.exists(append_path): 58eb8dc403SDave Cobbley bb.utils.mkdirhier(os.path.dirname(append_path)) 59eb8dc403SDave Cobbley 60eb8dc403SDave Cobbley try: 61eb8dc403SDave Cobbley open(append_path, 'a').close() 62eb8dc403SDave Cobbley except (OSError, IOError) as exc: 63eb8dc403SDave Cobbley logger.critical(str(exc)) 64eb8dc403SDave Cobbley return 1 65eb8dc403SDave Cobbley 66eb8dc403SDave Cobbley if args.edit: 67eb8dc403SDave Cobbley return scriptutils.run_editor([append_path, recipe_path], logger) 68eb8dc403SDave Cobbley else: 69eb8dc403SDave Cobbley print(append_path) 70eb8dc403SDave Cobbley 71eb8dc403SDave Cobbley 72eb8dc403SDave Cobbleydef register_commands(subparsers): 73eb8dc403SDave Cobbley parser = subparsers.add_parser('newappend', 74eb8dc403SDave Cobbley help='Create a bbappend for the specified target in the specified layer') 75eb8dc403SDave Cobbley parser.add_argument('-e', '--edit', help='Edit the new append. This obeys $VISUAL if set, otherwise $EDITOR, otherwise vi.', action='store_true') 76eb8dc403SDave Cobbley parser.add_argument('-w', '--wildcard-version', help='Use wildcard to make the bbappend apply to any recipe version', action='store_true') 77eb8dc403SDave Cobbley parser.add_argument('destlayer', help='Base directory of the destination layer to write the bbappend to', type=layer) 78eb8dc403SDave Cobbley parser.add_argument('target', help='Target recipe/provide to append') 79eb8dc403SDave Cobbley parser.set_defaults(func=newappend, parserecipes=True) 80