This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
g77_bugs, g77_news removal patch 3
- From: "Joseph S. Myers" <jsm28 at cam dot ac dot uk>
- To: <gcc-patches at gcc dot gnu dot org>
- Date: Wed, 28 Aug 2002 22:14:56 +0100 (BST)
- Subject: g77_bugs, g77_news removal patch 3
This patch does the final part of g77_bugs.html and g77_news.html removal:
removing support for generating those links. Applied to mainline.
(update_web_docs_old included only for completeness; that script is only
relevant if there's a 2.95.4 or 3.0.5 release.)
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/maintainer-scripts/ChangeLog,v
retrieving revision 1.48
diff -u -r1.48 ChangeLog
--- ChangeLog 29 Jul 2002 05:31:34 -0000 1.48
+++ ChangeLog 28 Aug 2002 21:10:02 -0000
@@ -1,3 +1,10 @@
+2002-08-28 Joseph S. Myers <jsm@polyomino.org.uk>
+
+ * update_web_docs: Remove support for generating g77_news.html and
+ g77_bugs.html.
+ * update_web_docs_old: Likewise. Remove support for generating
+ thanks.html.
+
2002-07-28 Andreas Jaeger <aj@suse.de>
* gcc_release: Update comment.
Index: update_web_docs
===================================================================
RCS file: /cvs/gcc/gcc/maintainer-scripts/update_web_docs,v
retrieving revision 1.18
diff -u -r1.18 update_web_docs
--- update_web_docs 31 May 2002 16:50:45 -0000 1.18
+++ update_web_docs 28 Aug 2002 21:10:02 -0000
@@ -137,19 +137,7 @@
fi
done
-news_file=g77/News.html
-bugs_file=g77/Trouble.html
-
cd $DOCSDIR
-
-rm -f g77_news.html
-rm -f g77_bugs.html
-rm -f g77_news.html.gz
-rm -f g77_bugs.html.gz
-ln $news_file g77_news.html
-ln $bugs_file g77_bugs.html
-ln ${news_file}.gz g77_news.html.gz
-ln ${bugs_file}.gz g77_bugs.html.gz
# Finally, generate the installation documentation (but only for CVS HEAD).
if [ "$RELEASE" = "HEAD" ]; then
Index: update_web_docs_old
===================================================================
RCS file: /cvs/gcc/gcc/maintainer-scripts/update_web_docs_old,v
retrieving revision 1.1
diff -u -r1.1 update_web_docs_old
--- update_web_docs_old 17 Dec 2001 17:35:01 -0000 1.1
+++ update_web_docs_old 28 Aug 2002 21:10:02 -0000
@@ -74,9 +74,6 @@
if [ -z "$RELEASE" ]; then
RELEASE=HEAD
- DO_THANKS_HTML=y
-else
- DO_THANKS_HTML=n
fi
WORKDIR=/tmp/gcc-doc-update.$$
@@ -137,28 +134,7 @@
fi
done
-news_file=`grep "News About GNU Fortran" $DOCSDIR/g77_toc.html | sed -e '/HREF=.*[^.]/ s#^.*HREF="##g' | sed -e 's%#SEC.*%%g'`
-bugs_file=`grep "Known Causes of Trouble with GNU Fortran" $DOCSDIR/g77_toc.html | sed -e '/HREF=.*[^.]/ s#^.*HREF="##g' | sed -e 's%#SEC.*%%g'`
-contrib_file=`grep "Contributors to GCC" $DOCSDIR/gcc_toc.html | sed -e '/HREF=.*[^.]/ s#^.*HREF="##g' | sed -e 's%#SEC.*%%g'`
-
cd $DOCSDIR
-
-rm -f g77_news.html
-rm -f g77_bugs.html
-rm -f g77_news.html.gz
-rm -f g77_bugs.html.gz
-ln $news_file g77_news.html
-ln $bugs_file g77_bugs.html
-ln ${news_file}.gz g77_news.html.gz
-ln ${bugs_file}.gz g77_bugs.html.gz
-
-if [ "$DO_THANKS_HTML" = y ]; then
- cd $WWWBASE
- rm -f thanks.html
- rm -f thanks.html.gz
- ln onlinedocs/$contrib_file thanks.html
- ln onlinedocs/${contrib_file}.gz thanks.html.gz
-fi
# Finally, generate the installation documentation (but only for CVS HEAD).
if [ "$RELEASE" = "HEAD" ]; then
--
Joseph S. Myers
jsm28@cam.ac.uk