[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200427130448.74b75c3a6c91e5ede31542e4@linux-foundation.org>
Date: Mon, 27 Apr 2020 13:04:48 -0700
From: Andrew Morton <akpm@...ux-foundation.org>
To: Joe Perches <joe@...ches.com>
Cc: Sam Ravnborg <sam@...nborg.org>, Rob Herring <robh+dt@...nel.org>,
Adrian Ratiu <adrian.ratiu@...labora.com>,
devicetree@...r.kernel.org,
dri-devel <dri-devel@...ts.freedesktop.org>,
Laurent Pinchart <laurent.pinchart+renesas@...asonboard.com>,
Neil Armstrong <narmstrong@...libre.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
Andrzej Hajda <a.hajda@...sung.com>,
Collabora Kernel ML <kernel@...labora.com>
Subject: Re: [PATCH] get_maintainer: Add email addresses from .yaml files
On Sun, 26 Apr 2020 23:33:02 -0700 Joe Perches <joe@...ches.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@...ches.com>
> > Acked-by: Sam Ravnborg <sam@...nborg.org>
> > Tested-by: Sam Ravnborg <sam@...nborg.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?
Powered by blists - more mailing lists