public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
From: Gerald Pfeifer <gerald@pfeifer.com>
To: overseers@gcc.gnu.org
Subject: Re: Forwarding address for jsm28@gcc.gnu.org
Date: Mon, 20 Oct 2003 23:10:00 -0000	[thread overview]
Message-ID: <Pine.BSF.4.58.0310210106450.53725@acrux.dbai.tuwien.ac.at> (raw)
In-Reply-To: <20031019165130.A46176@molenda.com>

On Sun, 19 Oct 2003, Jason Molenda wrote:
>> Does the subscriber list of gcc-maintainers get (semi-)automatically
>> updated from MAINTAINERS using the script Gerald sent in gcc-maintainers
>> message 260?
> This I know nothing about.

The idea is that the list of subscribers to gcc-maintainers is generated
automatically from gcc/MAINTAINERS.

Back in June, I even hacked a bit of Perl to do that (though I'm sure you
could do it in just 1.5 lines <g>) and Jeff used this to regenerate the
subscriber list.  Perhaps this could be executed regularily/automatically?

(If so, I could add it to gcc/maintainer-scripts, for example.)

Gerald


#! /usr/bin/perl -w -T
#
# Extract all maintainers' addresses from the GCC MAINTAINERS file, only
# skipping those specified in $OMIT.
#
# Gerald Pfeifer <gerald@pfeifer.com>, June 2003.

my $OMIT='rms@gnu.org|config-patches@gnu.org';

while( <> ) {
  chomp;

  if( /([\w\d.+-]+@[\w\d.-]+)/ ) {
    my $addr=$1;
    printf $addr."\n" if( not $addr =~ /$OMIT/ );
  }
}

  reply	other threads:[~2003-10-20 23:10 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-10-19 23:49 Joseph S. Myers
2003-10-19 23:51 ` Jason Molenda
2003-10-20 23:10   ` Gerald Pfeifer [this message]
2003-10-21 17:17     ` law
2003-11-02  0:06       ` Gerald Pfeifer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.BSF.4.58.0310210106450.53725@acrux.dbai.tuwien.ac.at \
    --to=gerald@pfeifer.com \
    --cc=overseers@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).