support/scripts/pkg-stats: properly handle host packages with -c option
authorThomas Petazzoni <thomas.petazzoni@bootlin.com>
Sun, 31 Jan 2021 13:38:14 +0000 (14:38 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Sun, 31 Jan 2021 22:01:21 +0000 (23:01 +0100)
commitc9a1a1eb91420e8718185e8e1d076639e552472b
tree451e0fa018f26e8b413176068dbd45726081b977
parent9ce5314f5ba12f0386960540a42da729a3643ede
support/scripts/pkg-stats: properly handle host packages with -c option

In commit 7a607dab336e7f78ab069cff1b503d0688950583
("support/scripts/pkg-stats: support generating stats based on
configured packages"), we added a -c option to pkg-stats to generate a
report based on the list of packages enabled in the configuration,
rather than for all packages.

This is done based on the list of packages returned in JSON format by
"make show-info". However, we use the keys of the JSON dict returned
by "make show-info", which include the host- prefix of host
packages. Due to this, none of the host packages are currently
matching and therefore they are not reported in the pkg-stats -c
output.

This commit fixes that by using the recently introduced "name"
property in the "make show-info" JSON dict.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
[yann.morin.1998@free.fr: use anonymous '_' for unused variable]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
support/scripts/pkg-stats