Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
29d274e9
Commit
29d274e9
authored
Nov 02, 2003
by
Gerald Pfeifer
Committed by
Gerald Pfeifer
Nov 02, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* maintainer-addresses: New script.
From-SVN: r73185
parent
d234bf61
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
maintainer-scripts/ChangeLog
+4
-0
maintainer-scripts/maintainer-addresses
+25
-0
No files found.
maintainer-scripts/ChangeLog
View file @
29d274e9
2003-11-02 Gerald Pfeifer <gerald@pfeifer.com>
* maintainer-addresses: New script.
2003-10-24 Kelley Cook <kcook@gcc.gnu.org>
* gcc_release (build_sources): Use --enable-generated-files-in-srcdir.
...
...
maintainer-scripts/maintainer-addresses
0 → 100755
View file @
29d274e9
#! /usr/bin/perl -w -T
#
# Extract all maintainers' addresses from the GCC MAINTAINERS file, only
# skipping those addresses specified in $OMIT.
#
# Copyright (c) 2003 Free Software Foundation.
#
# Written by Gerald Pfeifer <gerald@pfeifer.com>, June 2003/October 2003
#
# This script is Free Software, and it can be copied, distributed and
# modified as defined in the GNU General Public License. A copy of
# its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
my
$OMIT
=
'rms@gnu.org|config-patches@gnu.org'
;
(
@ARGV
==
1
&&
-
e
$ARGV
[
0
]
)
||
die
"usage: $0 MAINTAINERS"
;
while
(
<>
)
{
chomp
;
if
(
/([\w\d.+-]+@[\w\d.-]+)/
)
{
my
$addr
=
$1
;
printf
$addr
.
"\n"
if
(
not
$addr
=~
/$OMIT/
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment