public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* RFC: make MAINTAINERS email addresses easier to copy/paste
@ 2008-04-29 20:59 Bjorn Helgaas
  2008-04-29 21:00 ` Bjorn Helgaas
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Bjorn Helgaas @ 2008-04-29 20:59 UTC (permalink / raw)
  To: linux-kernel

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;
    }
}

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

end of thread, other threads:[~2008-05-04 13:24 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-29 20:59 RFC: make MAINTAINERS email addresses easier to copy/paste Bjorn Helgaas
2008-04-29 21:00 ` Bjorn Helgaas
2008-04-30  8:03   ` Paul Jackson
2008-04-30 15:06     ` Bjorn Helgaas
2008-04-30  8:08 ` Sam Ravnborg
2008-04-30  8:49 ` Christoph Hellwig
2008-04-30  9:27   ` Sam Ravnborg
2008-04-30 15:51   ` Bjorn Helgaas
2008-04-30 16:04     ` Christoph Hellwig
2008-05-02 20:44 ` Pavel Machek
2008-05-04 13:25 ` Rene Herman

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