public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 0/3] Maintainers.txt: restore lexicographical order between package / subsystem headers
@ 2020-06-03 16:06 Laszlo Ersek
  2020-06-03 16:06 ` [PATCH 1/3] Maintainers.txt: retitle "MdeModulePkg: ACPI S3 modules" Laszlo Ersek
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Laszlo Ersek @ 2020-06-03 16:06 UTC (permalink / raw)
  To: edk2-devel-groups-io
  Cc: Andrew Fish, Anthony Perard, Ard Biesheuvel, David Woodhouse,
	Eric Dong, Hao A Wu, Jiewen Yao, Jordan Justen, Julien Grall,
	Leif Lindholm, Liran Alon, Marc-André Lureau, Michael Kinney,
	Nikita Leshenko, Philippe Mathieu-Daudé, Sami Mujawar,
	Stefan Berger, Supreeth Venkatesh

Ref:    https://bugzilla.tianocore.org/show_bug.cgi?id=2778
Repo:   https://pagure.io/lersek/edk2.git
Branch: sort_maintainers

We originally meant to keep the subsystem (package) titles sorted, in
"Maintainers.txt".

However, as of 7191dd3c5990 ("ArmPkg/PlatformBootManagerLib: reject
'default' parity and stop bit count", 2020-06-03), we have some disorder
introduced.

This patch series restores lexicographical order between the subsystem
(package) headers.

The package / subsystem headers can be collected with the following
small script:

$ dos2unix < Maintainers.txt \
  | sed -n -e '/^EDK II Packages:$/,$p' \
  | tail -n +3 \
  | grep -E -v '^($|[LMRWTSFX]:)'

Where

- "dos2unix" strips CRs,

- "sed" removes the first part of the file that precedes the "EDK II
  Packages:" heading,

- "tail" removes that heading plus the underline on the next line,

- and "grep" removes the empty lines and the section entries.

What remains is the section headers.

Here's a comparison between the outputs of this script, before (that is,
at commit 7191dd3c5990) and after the series is applied:

> @@ -1,42 +1,42 @@
>  ArmPkg
>  ArmPlatformPkg
>  ArmVirtPkg
>  ArmVirtPkg: modules used on Xen
>  BaseTools
>  CryptoPkg
>  DynamicTablesPkg
>  EmbeddedPkg
>  EmulatorPkg
>  FatPkg
>  FmpDevicePkg
>  IntelFsp2Pkg
>  IntelFsp2WrapperPkg
>  MdeModulePkg
>  MdeModulePkg: ACPI modules
> -MdeModulePkg: ACPI S3 modules
> +MdeModulePkg: ACPI modules related to S3
>  MdeModulePkg: BDS modules
>  MdeModulePkg: Console and Graphics modules
>  MdeModulePkg: Core services (PEI, DXE and Runtime) modules
>  MdeModulePkg: Device and Peripheral modules
>  MdeModulePkg: Firmware Update modules
>  MdeModulePkg: HII and UI modules
>  MdeModulePkg: Management Mode (MM, SMM) modules
>  MdeModulePkg: Reset modules
>  MdeModulePkg: SMBIOS modules
>  MdeModulePkg: UEFI Variable modules
>  MdePkg
>  NetworkPkg
>  OvmfPkg
> -OvmfPkg: Xen-related modules
> -OvmfPkg: TCG- and TPM2-related modules
>  OvmfPkg: CSM modules
>  OvmfPkg: MptScsi and PVSCSI driver
> +OvmfPkg: TCG- and TPM2-related modules
> +OvmfPkg: Xen-related modules
>  PcAtChipsetPkg
>  SecurityPkg
>  ShellPkg
>  SignedCapsulePkg
>  SourceLevelDebugPkg
> +StandaloneMmPkg
>  UefiCpuPkg
>  UefiPayloadPkg
>  UnitTestFrameworkPkg
> -StandaloneMmPkg

Cc: Andrew Fish <afish@apple.com>
Cc: Anthony Perard <anthony.perard@citrix.com>
Cc: Ard Biesheuvel <ard.biesheuvel@arm.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Eric Dong <eric.dong@intel.com>
Cc: Hao A Wu <hao.a.wu@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Julien Grall <julien@xen.org>
Cc: Leif Lindholm <leif@nuviainc.com>
Cc: Liran Alon <liran.alon@oracle.com>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Cc: Michael Kinney <michael.d.kinney@intel.com>
Cc: Nikita Leshenko <nikita.leshchenko@oracle.com>
Cc: Philippe Mathieu-Daudé <philmd@redhat.com>
Cc: Sami Mujawar <sami.mujawar@arm.com>
Cc: Stefan Berger <stefanb@linux.ibm.com>
Cc: Supreeth Venkatesh <supreeth.venkatesh@arm.com>

Thanks,
Laszlo

Laszlo Ersek (3):
  Maintainers.txt: retitle "MdeModulePkg: ACPI S3 modules"
  Maintainers.txt: restore order of OvmfPkg sections
  Maintainers.txt: move StandaloneMmPkg to the right spot

 Maintainers.txt | 54 ++++++++++----------
 1 file changed, 27 insertions(+), 27 deletions(-)

-- 
2.19.1.3.g30247aa5d201


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2020-06-09 18:17 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-03 16:06 [PATCH 0/3] Maintainers.txt: restore lexicographical order between package / subsystem headers Laszlo Ersek
2020-06-03 16:06 ` [PATCH 1/3] Maintainers.txt: retitle "MdeModulePkg: ACPI S3 modules" Laszlo Ersek
2020-06-05  0:12   ` Dong, Eric
2020-06-03 16:06 ` [PATCH 2/3] Maintainers.txt: restore order of OvmfPkg sections Laszlo Ersek
2020-06-03 16:08   ` Ard Biesheuvel
2020-06-03 16:06 ` [PATCH 3/3] Maintainers.txt: move StandaloneMmPkg to the right spot Laszlo Ersek
2020-06-03 16:07   ` Ard Biesheuvel
2020-06-03 23:24   ` Yao, Jiewen
2020-06-03 16:09 ` [PATCH 0/3] Maintainers.txt: restore lexicographical order between package / subsystem headers Philippe Mathieu-Daudé
2020-06-03 16:16 ` Leif Lindholm
2020-06-09 18:17 ` [edk2-devel] " Laszlo Ersek

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox