From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8163 invoked by alias); 20 Oct 2003 23:10:39 -0000 Mailing-List: contact overseers-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: , Sender: overseers-owner@sources.redhat.com Received: (qmail 8156 invoked from network); 20 Oct 2003 23:10:38 -0000 Received: from unknown (HELO vexpert.dbai.tuwien.ac.at) (128.131.111.2) by sources.redhat.com with SMTP; 20 Oct 2003 23:10:38 -0000 Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 40F481378D for ; Tue, 21 Oct 2003 01:10:37 +0200 (CEST) Date: Mon, 20 Oct 2003 23:10:00 -0000 From: Gerald Pfeifer To: overseers@gcc.gnu.org Subject: Re: Forwarding address for jsm28@gcc.gnu.org In-Reply-To: <20031019165130.A46176@molenda.com> Message-ID: References: <20031019165130.A46176@molenda.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2003-q4/txt/msg00100.txt.bz2 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 ) 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 , 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/ ); } }