[testsuite]
[official-gcc.git] / maintainer-scripts / update_web_docs_libstdcxx_svn
blobefceaf9a2c357181e389df783759dea8b303df0d
1 #!/bin/bash
4 # "sh update_web_docs_libstdcxx.sh"
5 # Checks out a copy of the libstdc++-v3 "inner" documentation and puts
6 # it in the onlinedocs area. For an initial description of "inner"
7 # docs, see the thread starting with
8 # http://gcc.gnu.org/ml/libstdc++/2000-11/msg00475.html
10 # Id: update_v3_web_docs.sh,v 1.4 2000/12/25 05:02:14 pedwards Exp
11 #####################################################################
13 SVNROOT=${SVNROOT:-"file:///svn/gcc"}
14 GETTHIS='libstdc++-v3/doc/html'
15 WWWDIR=/www/gcc/htdocs/onlinedocs/libstdc++
16 #WWWDIR=/tmp/fake-onlinedocs-testing
19 ## No more changes should be needed. Ha, right, whatever.
20 #####################################################################
22 FILTER="newer or same age version exists|0 blocks"
24 PATH=/usr/local/bin:$PATH
25 export SVNROOT
27 test -d $WWWDIR || /bin/mkdir $WWWDIR
28 test -d $WWWDIR || { echo something is very wrong ; exit 1; }
30 WORKDIR=/tmp/v3-doc-update.$$
31 /bin/rm -rf $WORKDIR
32 /bin/mkdir $WORKDIR
33 cd $WORKDIR
36 # checkout all the HTML files, get down into an interesting directory
37 svn -q export $SVNROOT/trunk/$GETTHIS doc
38 cd doc
39 rm -f Makefile
41 # copy the tree to the onlinedocs area, preserve directory structure
42 find . -depth -print | cpio -pd $WWWDIR 2>&1 | egrep -v "$FILTER"
44 err=${PIPESTATUS[1]}
45 if [ $err -gt 0 ]; then
46 printf "\nCopying failed with error code %d.\n" $err
49 cd /
50 /bin/rm -rf $WORKDIR