summaryrefslogtreecommitdiffstats
path: root/scripts/oe-pkgdata-util
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2017-07-03 12:14:59 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-07-06 14:38:14 +0100
commit2d8e3e91203af165f89c30fdf13b5bd28cd822ed (patch)
treef27faac9f7a8c79f0b1940f67ad2a4473ed9eeb4 /scripts/oe-pkgdata-util
parent47ac0e35d017d4ada8470c25c10f572f364384e0 (diff)
downloadpoky-2d8e3e91203af165f89c30fdf13b5bd28cd822ed.tar.gz
oe-pkgdata-util: package-info: Allow extra variables to be displayed
By specifying the -e <var> option one or multiple times, extra variables available in the pkgdata can be displayed, e.,g, `oe-pkgdata-util package-info -e SUMMARY -e LICENSE ...`. The extra variables displayed are quoted since some of them may contain whitespace. (From OE-Core rev: 6f054fcf08f6d5aeb6b5ade74ac5cc61a99fb8fe) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-pkgdata-util')
-rwxr-xr-xscripts/oe-pkgdata-util12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/oe-pkgdata-util b/scripts/oe-pkgdata-util
index 6255662a4b..677effeef6 100755
--- a/scripts/oe-pkgdata-util
+++ b/scripts/oe-pkgdata-util
@@ -325,8 +325,15 @@ def package_info(args):
325 recipe_version = recipe_version + "-" + mappings[pkg]['PR'] 325 recipe_version = recipe_version + "-" + mappings[pkg]['PR']
326 pkg_size = mappings[pkg]['PKGSIZE'] 326 pkg_size = mappings[pkg]['PKGSIZE']
327 327
328 items.append("%s %s %s %s %s" % 328 line = "%s %s %s %s %s" % (pkg, pkg_version, recipe, recipe_version, pkg_size)
329 (pkg, pkg_version, recipe, recipe_version, pkg_size)) 329
330 if args.extra:
331 for var in args.extra:
332 val = mappings[pkg][var].strip()
333 val = re.sub(r'\s+', ' ', val)
334 line += ' "%s"' % val
335
336 items.append(line)
330 print('\n'.join(items)) 337 print('\n'.join(items))
331 338
332def get_recipe_pkgs(pkgdata_dir, recipe, unpackaged): 339def get_recipe_pkgs(pkgdata_dir, recipe, unpackaged):
@@ -530,6 +537,7 @@ def main():
530 description='Looks up the specified runtime package(s) and display information') 537 description='Looks up the specified runtime package(s) and display information')
531 parser_package_info.add_argument('pkg', nargs='*', help='Runtime package name to look up') 538 parser_package_info.add_argument('pkg', nargs='*', help='Runtime package name to look up')
532 parser_package_info.add_argument('-f', '--file', help='Read package names from the specified file (one per line, first field only)') 539 parser_package_info.add_argument('-f', '--file', help='Read package names from the specified file (one per line, first field only)')
540 parser_package_info.add_argument('-e', '--extra', help='Extra variables to display, e.g., LICENSE (can be specified multiple times)', action='append')
533 parser_package_info.set_defaults(func=package_info) 541 parser_package_info.set_defaults(func=package_info)
534 542
535 parser_find_path = subparsers.add_parser('find-path', 543 parser_find_path = subparsers.add_parser('find-path',