Re: [RFC] scripts/get_maintainer: add emails based on keywords inthe patch

From: Joe Perches
Date: Fri Oct 09 2009 - 07:24:52 EST


On Fri, 2009-10-09 at 12:32 +0200, Wolfram Sang wrote:

> +my %keywords_to_mail = (
> + 'of_get_property' => 'L: devicetree-discuss@xxxxxxxxxxxxxxxx',

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.


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/