1 | #! /bin/sh
|
---|
2 | #
|
---|
3 | # Script to generate the NEWS file from online release notes.
|
---|
4 | # Contributed by Joseph Myers <jsm28@cam.ac.uk>.
|
---|
5 | #
|
---|
6 | # Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc.
|
---|
7 | # This file is part of GNU CC.
|
---|
8 | #
|
---|
9 | # GNU CC is free software; you can redistribute it and/or modify
|
---|
10 | # it under the terms of the GNU General Public License as published by
|
---|
11 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
12 | # any later version.
|
---|
13 | #
|
---|
14 | # GNU CC is distributed in the hope that it will be useful,
|
---|
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | # GNU General Public License for more details.
|
---|
18 | #
|
---|
19 | # You should have received a copy of the GNU General Public License
|
---|
20 | # along with GNU CC; see the file COPYING. If not, write to
|
---|
21 | # the Free Software Foundation, 59 Temple Place - Suite 330,
|
---|
22 | # Boston, MA 02111-1307, USA.
|
---|
23 |
|
---|
24 | website=http://gcc.gnu.org/
|
---|
25 | files="gcc-3.3/index.html gcc-3.3/changes.html
|
---|
26 | gcc-3.2/index.html gcc-3.2/changes.html
|
---|
27 | gcc-3.1/index.html gcc-3.1/changes.html
|
---|
28 | gcc-3.0/gcc-3.0.html gcc-3.0/features.html gcc-3.0/caveats.html
|
---|
29 | gcc-2.95/index.html gcc-2.95/features.html gcc-2.95/caveats.html
|
---|
30 | egcs-1.1/index.html egcs-1.1/features.html egcs-1.1/caveats.html
|
---|
31 | egcs-1.0/egcs-1.0.3.html egcs-1.0/egcs-1.0.2.html egcs-1.0/egcs-1.0.1.html
|
---|
32 | egcs-1.0/egcs-1.0.html egcs-1.0/features.html egcs-1.0/caveats.html"
|
---|
33 |
|
---|
34 | set -e
|
---|
35 |
|
---|
36 | cat <<EOF
|
---|
37 | This file contains information about GCC releases which has been generated
|
---|
38 | automatically from the online release notes. It covers releases of GCC
|
---|
39 | (and the former EGCS project) since EGCS 1.0, on the line of development
|
---|
40 | that led to GCC 3. For information on GCC 2.8.1 and older releases of GCC 2,
|
---|
41 | see ONEWS.
|
---|
42 |
|
---|
43 | EOF
|
---|
44 |
|
---|
45 | header="======================================================================"
|
---|
46 |
|
---|
47 | echo $header
|
---|
48 |
|
---|
49 | for file in $files; do
|
---|
50 | wfile=$website$file
|
---|
51 | echo $wfile
|
---|
52 | # We lie to Lynx about the kind of terminal in use because we
|
---|
53 | # want to get consistent output everywhere, and we want this
|
---|
54 | # script to work even when it is not run interactively.
|
---|
55 | env TERM=vt100 lynx -dump $wfile
|
---|
56 | echo $header
|
---|
57 | done
|
---|