diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/standard.py | 9 | ||||
-rw-r--r-- | scripts/lib/recipetool/create.py | 14 |
2 files changed, 23 insertions, 0 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index c254132423..96b271c2d6 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -94,6 +94,8 @@ def add(args, config, basepath, workspace): | |||
94 | source = srctree | 94 | source = srctree |
95 | if args.version: | 95 | if args.version: |
96 | extracmdopts += ' -V %s' % args.version | 96 | extracmdopts += ' -V %s' % args.version |
97 | if args.binary: | ||
98 | extracmdopts += ' -b' | ||
97 | try: | 99 | try: |
98 | stdout, _ = exec_build_env_command(config.init_path, basepath, 'recipetool --color=%s create -o %s "%s" %s' % (color, recipefile, source, extracmdopts)) | 100 | stdout, _ = exec_build_env_command(config.init_path, basepath, 'recipetool --color=%s create -o %s "%s" %s' % (color, recipefile, source, extracmdopts)) |
99 | except bb.process.ExecutionError as e: | 101 | except bb.process.ExecutionError as e: |
@@ -125,6 +127,12 @@ def add(args, config, basepath, workspace): | |||
125 | if initial_rev: | 127 | if initial_rev: |
126 | f.write('\n# initial_rev: %s\n' % initial_rev) | 128 | f.write('\n# initial_rev: %s\n' % initial_rev) |
127 | 129 | ||
130 | if args.binary: | ||
131 | f.write('do_install_append() {\n') | ||
132 | f.write(' rm -rf ${D}/.git\n') | ||
133 | f.write(' rm -f ${D}/singletask.lock\n') | ||
134 | f.write('}\n') | ||
135 | |||
128 | _add_md5(config, args.recipename, appendfile) | 136 | _add_md5(config, args.recipename, appendfile) |
129 | 137 | ||
130 | logger.info('Recipe %s has been automatically created; further editing may be required to make it fully functional' % recipefile) | 138 | logger.info('Recipe %s has been automatically created; further editing may be required to make it fully functional' % recipefile) |
@@ -885,6 +893,7 @@ def register_commands(subparsers, context): | |||
885 | parser_add.add_argument('--fetch', '-f', help='Fetch the specified URI and extract it to create the source tree', metavar='URI') | 893 | parser_add.add_argument('--fetch', '-f', help='Fetch the specified URI and extract it to create the source tree', metavar='URI') |
886 | parser_add.add_argument('--version', '-V', help='Version to use within recipe (PV)') | 894 | parser_add.add_argument('--version', '-V', help='Version to use within recipe (PV)') |
887 | parser_add.add_argument('--no-git', '-g', help='If -f/--fetch is specified, do not set up source tree as a git repository', action="store_true") | 895 | parser_add.add_argument('--no-git', '-g', help='If -f/--fetch is specified, do not set up source tree as a git repository', action="store_true") |
896 | parser_add.add_argument('--binary', '-b', help='Treat the source tree as something that should be installed verbatim (no compilation, same directory structure)', action='store_true') | ||
888 | parser_add.set_defaults(func=add) | 897 | parser_add.set_defaults(func=add) |
889 | 898 | ||
890 | parser_modify = subparsers.add_parser('modify', help='Modify the source for an existing recipe', | 899 | parser_modify = subparsers.add_parser('modify', help='Modify the source for an existing recipe', |
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py index 409b255f5f..844073bf59 100644 --- a/scripts/lib/recipetool/create.py +++ b/scripts/lib/recipetool/create.py | |||
@@ -104,6 +104,10 @@ def create_recipe(args): | |||
104 | if '://' in args.source: | 104 | if '://' in args.source: |
105 | # Fetch a URL | 105 | # Fetch a URL |
106 | fetchuri = urlparse.urldefrag(args.source)[0] | 106 | fetchuri = urlparse.urldefrag(args.source)[0] |
107 | if args.binary: | ||
108 | # Assume the archive contains the directory structure verbatim | ||
109 | # so we need to extract to a subdirectory | ||
110 | fetchuri += ';subdir=%s' % os.path.splitext(os.path.basename(urlparse.urlsplit(fetchuri).path))[0] | ||
107 | srcuri = fetchuri | 111 | srcuri = fetchuri |
108 | rev_re = re.compile(';rev=([^;]+)') | 112 | rev_re = re.compile(';rev=([^;]+)') |
109 | res = rev_re.search(srcuri) | 113 | res = rev_re.search(srcuri) |
@@ -226,6 +230,10 @@ def create_recipe(args): | |||
226 | lines_after.append('PACKAGE_ARCH = "%s"' % pkgarch) | 230 | lines_after.append('PACKAGE_ARCH = "%s"' % pkgarch) |
227 | lines_after.append('') | 231 | lines_after.append('') |
228 | 232 | ||
233 | if args.binary: | ||
234 | lines_after.append('INSANE_SKIP_${PN} += "already-stripped"') | ||
235 | lines_after.append('') | ||
236 | |||
229 | # Find all plugins that want to register handlers | 237 | # Find all plugins that want to register handlers |
230 | handlers = [] | 238 | handlers = [] |
231 | for plugin in plugins: | 239 | for plugin in plugins: |
@@ -235,6 +243,11 @@ def create_recipe(args): | |||
235 | # Apply the handlers | 243 | # Apply the handlers |
236 | classes = [] | 244 | classes = [] |
237 | handled = [] | 245 | handled = [] |
246 | |||
247 | if args.binary: | ||
248 | classes.append('bin_package') | ||
249 | handled.append('buildsystem') | ||
250 | |||
238 | for handler in handlers: | 251 | for handler in handlers: |
239 | handler.process(srctree, classes, lines_before, lines_after, handled) | 252 | handler.process(srctree, classes, lines_before, lines_after, handled) |
240 | 253 | ||
@@ -426,5 +439,6 @@ def register_command(subparsers): | |||
426 | parser_create.add_argument('-m', '--machine', help='Make recipe machine-specific as opposed to architecture-specific', action='store_true') | 439 | parser_create.add_argument('-m', '--machine', help='Make recipe machine-specific as opposed to architecture-specific', action='store_true') |
427 | parser_create.add_argument('-x', '--extract-to', metavar='EXTRACTPATH', help='Assuming source is a URL, fetch it and extract it to the directory specified as %(metavar)s') | 440 | parser_create.add_argument('-x', '--extract-to', metavar='EXTRACTPATH', help='Assuming source is a URL, fetch it and extract it to the directory specified as %(metavar)s') |
428 | parser_create.add_argument('-V', '--version', help='Version to use within recipe (PV)') | 441 | parser_create.add_argument('-V', '--version', help='Version to use within recipe (PV)') |
442 | parser_create.add_argument('-b', '--binary', help='Treat the source tree as something that should be installed verbatim (no compilation, same directory structure)', action='store_true') | ||
429 | parser_create.set_defaults(func=create_recipe) | 443 | parser_create.set_defaults(func=create_recipe) |
430 | 444 | ||