Pushed: https://github.com/tianocore/edk2-staging/commit/efcd4c9
> -----Original Message----- > From: Ashley E Desimone <ashley.e.desim...@intel.com> > Sent: Friday, January 8, 2021 11:16 AM > To: devel@edk2.groups.io > Cc: Desimone, Nathaniel L <nathaniel.l.desim...@intel.com>; Pandya, Puja > <puja.pan...@intel.com>; Bret Barkelew <bret.barke...@microsoft.com>; > Agyeman, Prince <prince.agye...@intel.com>; Bjorge, Erik C > <erik.c.bjo...@intel.com> > Subject: [Edk2-Staging/EdkRepo] [PATCH] EdkRepo: Show dev lead > information in verbose manifest command output. > > When displaying verbose output the manifest command now shows the dev > lead list for each project. > > Cc: Ashley E Desimone <ashley.e.desim...@intel.com> > Cc: Nate DeSimone <nathaniel.l.desim...@intel.com> > Cc: Puja Pandya <puja.pan...@intel.com> > Cc: Bret Barkelew <bret.barke...@microsoft.com> > Cc: Prince Agyeman <prince.agye...@intel.com> > Cc: Erik Bjorge <erik.c.bjo...@intel.com> > Signed-off-by: Ashley E Desimone <ashley.e.desim...@intel.com> > --- > edkrepo/commands/manifest_command.py | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/edkrepo/commands/manifest_command.py > b/edkrepo/commands/manifest_command.py > index 5c6184f..eb192db 100644 > --- a/edkrepo/commands/manifest_command.py > +++ b/edkrepo/commands/manifest_command.py > @@ -9,6 +9,7 @@ > > import copy > import os > +import csv > > from colorama import Fore > > @@ -21,8 +22,9 @@ from edkrepo.common.ui_functions import > init_color_console from > edkrepo.common.workspace_maintenance.manifest_repos_maintenance > import list_available_manifest_repos from > edkrepo.common.workspace_maintenance.manifest_repos_maintenance > import pull_all_manifest_repos from > edkrepo.common.workspace_maintenance.manifest_repos_maintenance > import find_source_manifest_repo > +from > edkrepo.common.workspace_maintenance.manifest_repos_maintenance > +import find_project_in_single_index > from edkrepo.config.config_factory import get_workspace_manifest -from > edkrepo_manifest_parser.edk_manifest import CiIndexXml > +from edkrepo_manifest_parser.edk_manifest import CiIndexXml, > +ManifestXml > > > class ManifestCommand(EdkrepoCommand): > @@ -100,6 +102,8 @@ class ManifestCommand(EdkrepoCommand): > print(" {}".format(project)) > if args.verbose: > print(" -> > {}".format(ci_index_xml.get_project_xml(project))) > + proj_manifest = > ManifestXml(find_project_in_single_index(project, ci_index_xml, > man_repos[repo][0])[1]) > + print(" -> DevLead: {}".format(' '.join(x for x in > proj_manifest.project_info.dev_leads))) > > if args.archived: > print() > @@ -111,3 +115,5 @@ class ManifestCommand(EdkrepoCommand): > print(" {}".format(project)) > if args.verbose: > print(" -> > {}".format(ci_index_xml.get_project_xml(project))) > + proj_manifest = > ManifestXml(find_project_in_single_index(project, ci_index_xml, > man_repos[repo][0])[1]) > + print(" -> DevLead: {}".format(' '.join(x for x in > proj_manifest.project_info.dev_leads))) > -- > 2.27.0.windows.1 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#70563): https://edk2.groups.io/g/devel/message/70563 Mute This Topic: https://groups.io/mt/79532061/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-