On Sun, 26 Apr 2020 23:33:02 -0700 Joe Perches joe@perches.com wrote:
On Mon, 2020-04-27 at 07:57 +0200, Sam Ravnborg wrote:
Hi Joe.
Hi Sam.
On Sun, Apr 26, 2020 at 10:40:52PM -0700, Joe Perches wrote:
.yaml files can contain maintainer/author addresses and it seems unlikely or unnecessary that individual MAINTAINER file section entries for each .yaml file will be created.
So dd the email addresses found in .yaml files to the default
^ add
Andrew, can you add the a to this please?
Signed-off-by: Joe Perches joe@perches.com Acked-by: Sam Ravnborg sam@ravnborg.org Tested-by: Sam Ravnborg sam@ravnborg.org
The patch did not apply on top of -rc3, but it was trivial to fix. Tested and works like a charm. Thanks for doing this!
As most of my patches, it was done using -next
The patch assumes that we have
- if ($file_emails) { - my @poss_addr = $text =~ m$[A-Za-z_-_"' ,.+-]*\s*[,]*\s*[(<{]{0,1}[A-Za-z0-9_.+-]+@[A-Za-z0-9.-]+.[A-Za-z0-9]+[)>}]{0,1}$g; - push(@file_emails, clean_file_emails(@poss_addr)); - }
but today's next has
if ($file_emails) { my @poss_addr = $text =~ m$[A-Za-zÀ-ÿ"' ,.+-]*\s*[,]*\s*[(<{]{0,1}[A-Za-z0-9_.+-]+@[A-Za-z0-9.-]+.[A-Za-z0-9]+[)>}]{0,1}$g; push(@file_emails, clean_file_emails(@poss_addr)); }
so what do do here?