[RFC] scripts/get_maintainer: add emails based on keywords in the patch
Joe Perches
joe at perches.com
Fri Oct 9 22:23:26 EST 2009
On Fri, 2009-10-09 at 12:32 +0200, Wolfram Sang wrote:
> +my %keywords_to_mail = (
> + 'of_get_property' => 'L: devicetree-discuss at lists.ozlabs.org',
maybe: '\bof_get_property\b'
> + # Check the lines which a patch modifies for keywords; add mail if found.
> + } elsif (m/^[+-].*($keywords_to_mail_match)/o) {
> + (my $keyword_mail = $keywords_to_mail{$1}) =~ s/^([LM]): //;
> + push( @{ ($1 eq 'L') ? \@list_to : \@email_to }, $keyword_mail );
> + }
If this facility is desired by many others, it might be
better to have a separate file of 'regex generates email'
read at initialization.
More information about the Linuxppc-dev
mailing list