I like to use display names for email addresses, e.g., "Bjorn Helgaas <bjorn.helgaas@hp.com>" instead of just "bjorn.helgaas@hp.com". The current MAINTAINERS file format makes it a nuisance to copy both the display name and the actual address. So I propose that we fold together the current "P:" and "M:" lines using something similar to the filter below. If we do this, we should fix a few inconsistencies in the current file first so the script will work better. I'll post a patch to do that as a response to this message. Bjorn #!/usr/bin/perl # Combine name and email address for easier copy and paste. # For example, this: # # P: Bjorn Helgaas # M: bjorn.helgaas@hp.com # # becomes this: # # P: Bjorn Helgaas <bjorn.helgaas@hp.com> while (<>) { if (/^P:(\t|\s{2,})(\S.+)/) { if (defined($line)) { print $line; undef $line; } $name = $2; $line = $_; } elsif (/^M:(\t|\s{2,}).*?(\S+@\S+)/) { if (defined($line)) { $mail = $2; $mail =~ s/^<//; $mail =~ s/>$//; print "P:\t$name <$mail>\n"; undef $line; } else { print; } } else { if (defined($line)) { print $line; undef $line; } print; } } --
| Linus Torvalds | Linux 2.6.25-rc2 |
| Robin Lee Powell | NFS hang + umount -f: better behaviour requested. |
| David Woodhouse | Re: [GIT *] Allow request_firmware() to be satisfied from in-kernel, use it in mor... |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
git: | |
| Miles Bader | way to automatically add untracked files? |
| Jan-Benedict Glaw | Errors GITtifying GCC and Binutils |
| Andreas Hildebrandt | CVS-$Id:$ replacement in git? |
| Alexander Gladysh | [Q] Encrypted GIT? |
| Alex Thurlow | Router performance on OpenBSD and OpenBGPD |
| Karel Kulhavy | lookup option in /etc/resolv.conf ignored |
| Richard Stallman | Real men don't attack straw men |
| Sunnz | Can OpenBSD do what BusyBox does? |
| Julius Volz | [PATCH RFC 02/24] IPVS: Add genetlink interface implementation |
| Lennart Sorensen | Re: [PATCH 1/2] IPV4: remove addresses and routes when carrier is lost |
| Jussi Kivilinna | [PATCH 04/14] [rndis_host] Halt device if rndis_bind fails. |
| Lennert Buytenhek | Re: using software TSO on non-TSO capable netdevices |
