blob: 08e2474dc42df6e4fca5e2f5c13b6533a8d1e603 [file] [log] [blame]
Patrick Williamsd7e96312015-09-22 08:09:05 -05001# Recipe creation tool - newappend plugin
2#
3# This sub-command creates a bbappend for the specified target and prints the
4# path to the bbappend.
5#
6# Example: recipetool newappend meta-mylayer busybox
7#
8# Copyright (C) 2015 Christopher Larson <kergoth@gmail.com>
9#
Brad Bishopc342db32019-05-15 21:57:59 -040010# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsd7e96312015-09-22 08:09:05 -050011#
Patrick Williamsd7e96312015-09-22 08:09:05 -050012
13import argparse
14import errno
15import logging
16import os
17import re
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018import subprocess
Patrick Williamsd7e96312015-09-22 08:09:05 -050019import sys
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050020import scriptutils
Patrick Williamsd7e96312015-09-22 08:09:05 -050021
22
23logger = logging.getLogger('recipetool')
24tinfoil = None
25
26
Patrick Williamsd7e96312015-09-22 08:09:05 -050027def tinfoil_init(instance):
28 global tinfoil
29 tinfoil = instance
30
31
Patrick Williamsd7e96312015-09-22 08:09:05 -050032def layer(layerpath):
33 if not os.path.exists(os.path.join(layerpath, 'conf', 'layer.conf')):
34 raise argparse.ArgumentTypeError('{0!r} must be a path to a valid layer'.format(layerpath))
35 return layerpath
36
37
38def newappend(args):
39 import oe.recipeutils
40
Brad Bishop6e60e8b2018-02-01 10:27:11 -050041 recipe_path = tinfoil.get_recipe_file(args.target)
Patrick Williamsd7e96312015-09-22 08:09:05 -050042
43 rd = tinfoil.config_data.createCopy()
44 rd.setVar('FILE', recipe_path)
45 append_path, path_ok = oe.recipeutils.get_bbappend_path(rd, args.destlayer, args.wildcard_version)
46 if not append_path:
47 logger.error('Unable to determine layer directory containing %s', recipe_path)
48 return 1
49
50 if not path_ok:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080051 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))
Patrick Williamsd7e96312015-09-22 08:09:05 -050052
Brad Bishop6e60e8b2018-02-01 10:27:11 -050053 layerdirs = [os.path.abspath(layerdir) for layerdir in rd.getVar('BBLAYERS').split()]
Patrick Williamsd7e96312015-09-22 08:09:05 -050054 if not os.path.abspath(args.destlayer) in layerdirs:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080055 logger.warning('Specified layer is not currently enabled in bblayers.conf, you will need to add it before this bbappend will be active')
Patrick Williamsd7e96312015-09-22 08:09:05 -050056
57 if not os.path.exists(append_path):
58 bb.utils.mkdirhier(os.path.dirname(append_path))
59
60 try:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050061 open(append_path, 'a').close()
Patrick Williamsd7e96312015-09-22 08:09:05 -050062 except (OSError, IOError) as exc:
63 logger.critical(str(exc))
64 return 1
65
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050066 if args.edit:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050067 return scriptutils.run_editor([append_path, recipe_path], logger)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050068 else:
69 print(append_path)
Patrick Williamsd7e96312015-09-22 08:09:05 -050070
71
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050072def register_commands(subparsers):
Patrick Williamsd7e96312015-09-22 08:09:05 -050073 parser = subparsers.add_parser('newappend',
74 help='Create a bbappend for the specified target in the specified layer')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050075 parser.add_argument('-e', '--edit', help='Edit the new append. This obeys $VISUAL if set, otherwise $EDITOR, otherwise vi.', action='store_true')
Patrick Williamsd7e96312015-09-22 08:09:05 -050076 parser.add_argument('-w', '--wildcard-version', help='Use wildcard to make the bbappend apply to any recipe version', action='store_true')
77 parser.add_argument('destlayer', help='Base directory of the destination layer to write the bbappend to', type=layer)
78 parser.add_argument('target', help='Target recipe/provide to append')
79 parser.set_defaults(func=newappend, parserecipes=True)