mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
oe-pkgdata-util: package-info: Re-add support for the --extra option
Commit 64d3ce83 broke the --extra option. (From OE-Core rev: cd195bdf5dd2c8ff03c58a63dcabe88b142d2a9c) (From OE-Core rev: ab9e9e8cde1ab5fba3e1c291ccb6f163140c3386) Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
c30e400e53
commit
6d9ba591e3
@@ -287,8 +287,11 @@ def lookup_recipe(args):
|
||||
def package_info(args):
|
||||
def parse_pkgdatafile(pkgdatafile):
|
||||
vars = ['PKGV', 'PKGE', 'PKGR', 'PN', 'PV', 'PE', 'PR', 'PKGSIZE']
|
||||
if args.extra:
|
||||
vars += args.extra
|
||||
with open(pkgdatafile, 'r') as f:
|
||||
vals = dict()
|
||||
extra = ''
|
||||
for line in f:
|
||||
for var in vars:
|
||||
m = re.match(var + '(?:_\S+)?:\s*(.+?)\s*$', line)
|
||||
@@ -306,7 +309,12 @@ def package_info(args):
|
||||
recipe_version = vals['PE'] + ":" + recipe_version
|
||||
if 'PR' in vals:
|
||||
recipe_version = recipe_version + "-" + vals['PR']
|
||||
print("%s %s %s %s %s" % (pkg, pkg_version, recipe, recipe_version, pkg_size))
|
||||
if args.extra:
|
||||
for var in args.extra:
|
||||
if var in vals:
|
||||
val = re.sub(r'\s+', ' ', vals[var])
|
||||
extra += ' "%s"' % val
|
||||
print("%s %s %s %s %s%s" % (pkg, pkg_version, recipe, recipe_version, pkg_size, extra))
|
||||
|
||||
# Handle both multiple arguments and multiple values within an arg (old syntax)
|
||||
packages = []
|
||||
|
||||
Reference in New Issue
Block a user