OSDN Git Service

2004-07-15 Toon Moene <toon@moene.indiv.nluug.nl>
[pf3gnuchains/gcc-fork.git] / maintainer-scripts / gcc_release
1 #! /bin/sh
2
3 ########################################################################
4 #
5 # File:   gcc_release
6 # Author: Jeffrey Law, Bernd Schmidt, Mark Mitchell
7 # Date:   2001-05-25
8 #
9 # Contents:
10 #   Script to create a GCC release.
11 #
12 # Copyright (c) 2001, 2002 Free Software Foundation.
13 #
14 # This file is part of GCC.
15 #
16 # GCC is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2, or (at your option)
19 # any later version.
20 #
21 # GCC is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 #
26 # You should have received a copy of the GNU General Public License
27 # along with GCC; see the file COPYING.  If not, write to
28 # the Free Software Foundation, 59 Temple Place - Suite 330,
29 # Boston, MA 02111-1307, USA.
30 #
31 ########################################################################
32
33 ########################################################################
34 # Notes
35 ########################################################################
36
37 # Here is an example usage of this script, to create a GCC 3.0.2
38 # prerelease:
39 #
40 #   gcc_release -r 3.0.2
41 #
42 # This script will automatically use the head of the release branch
43 # to generate the release.
44
45 ########################################################################
46 # Functions
47 ########################################################################
48
49 # Issue the error message given by $1 and exit with a non-zero
50 # exit code.
51
52 error() {
53     echo "gcc_release: error: $1"
54     exit 1
55 }
56
57 # Issue the informational message given by $1.
58
59 inform() {
60     echo "gcc_release: $1"
61 }
62
63 # Issue a usage message explaining how to use this script.
64
65 usage() {
66 cat <<EOF
67 gcc_release -r release [-f] [further options]
68 gcc_release -s name:cvsbranch [further options]
69
70 Options:
71
72   -r release           Version of the form X.Y or X.Y.Z.
73   -s name:cvsbranch    Create a snapshot, not a real release.
74
75   -d destination       Local working directory where we will build the release
76                        (default=${HOME}).
77   -f                   Create a final release (and update ChangeLogs,...).
78   -l                   Indicate that we are running on gcc.gnu.org.
79   -p previous-tarball  Location of a previous tarball (to generate diff files).
80   -t tag               Tag to mark the release in CVS.
81   -u username          Username for upload operations.
82 EOF
83     exit 1
84 }
85
86 # Change to the directory given by $1.
87
88 changedir() {
89   cd $1 || \
90     error "Could not change directory to $1"
91 }
92
93 # Each of the arguments is a directory name, relative to the top
94 # of the source tree.  Return another name for that directory, relative
95 # to the working directory.
96
97 adjust_dirs() {
98   for x in $@; do
99     echo `basename ${SOURCE_DIRECTORY}`/$x
100   done
101 }
102
103 # Build the source tree that will be the basis for the release
104 # in ${WORKING_DIRECTORY}/gcc-${RELEASE}.
105
106 build_sources() {
107   # If the WORKING_DIRECTORY already exists, do not risk destroying it.
108   if [ -r ${WORKING_DIRECTORY} ]; then
109     error "\`${WORKING_DIRECTORY}' already exists"
110   fi
111   # Create the WORKING_DIRECTORY.
112   mkdir "${WORKING_DIRECTORY}" \
113     || error "Could not create \`${WORKING_DIRECTORY}'"
114   changedir "${WORKING_DIRECTORY}"
115
116   # If this is a final release, make sure that the ChangeLogs
117   # and version strings are updated.
118   if [ ${FINAL} -ne 0 ]; then
119     inform "Updating ChangeLogs and version files"
120
121     ${CVS} co -d "`basename ${SOURCE_DIRECTORY}`" \
122            -r ${CVSBRANCH} gcc || \
123            error "Could not check out release sources"
124     for x in `find ${SOURCE_DIRECTORY} -name ChangeLog`; do
125       # Update this ChangeLog file only if it does not yet contain the
126       # entry we are going to add.  (This is a safety net for repeated
127       # runs of this script for the same release.)
128       if ! grep "GCC ${RELEASE} released." ${x} > /dev/null ; then       
129         cat - ${x} > ${x}.new <<EOF
130 ${LONG_DATE}  Release Manager
131
132         * GCC ${RELEASE} released.
133
134 EOF
135         mv ${x}.new ${x} || \
136             error "Could not update ${x}"
137         (changedir `dirname ${x}` && \
138             ${CVS} ci -m 'Mark ChangeLog' `basename ${x}`) || \
139             error "Could not commit ${x}"
140       fi
141     done
142
143     # Update `gcc/version.c'.
144     for x in gcc/version.c; do 
145       y=`basename ${x}`
146       (changedir `dirname ${SOURCE_DIRECTORY}/${x}` && \
147           sed -e 's|version_string\[\] = \".*\"|version_string\[\] = \"'${RELEASE}'\"|g' < ${y} > ${y}.new && \
148           mv ${y}.new ${y} && \
149           ${CVS} ci -m 'Update version' ${y}) || \
150           error "Could not update ${x}"
151     done
152
153     # Make sure we tag the sources for a final release.
154     TAG="gcc_`echo ${RELEASE} | tr . _`_release"
155
156     rm -rf ${SOURCE_DIRECTORY}
157   fi
158
159   # Tag the sources.
160   EXPORTDATE=""
161   if [ -n "${TAG}" ]; then
162     inform "Tagging sources as ${TAG}"
163     # The -F option to CVS is intentionally not used below.  If you
164     # need to retry a release, you will have to manually remove any
165     # existing tag.
166     ${CVS} rtag -r ${CVSBRANCH} ${TAG} gcc || \
167       error "Could not tag sources"
168     EXPORTTAG="-r${TAG}"
169   else
170     if [ ${CVSBRANCH} != "HEAD" ]; then
171       EXPORTTAG="-r${CVSBRANCH}"
172       # It does not work to use both "-r" and "-D" with
173       # "cvs export" so EXPORTDATE is not set here.
174     else
175       # HEAD is the default branch, no need to specify it.
176       EXPORTTAG=""
177       EXPORTDATE="-D`date -u +"%Y-%m-%d %H:%M"` UTC"
178     fi
179   fi
180
181   # Export the current sources.
182   inform "Retrieving sources (cvs export ${EXPORTTAG} ${EXPORTDATE} gcc)"
183
184   if [ -z "${EXPORTTAG}" ]; then
185     ${CVS} export -d "`basename ${SOURCE_DIRECTORY}`" \
186        "${EXPORTDATE}" gcc || \
187       error "Could not retrieve sources"
188   elif [ -z "${EXPORTDATE}" ]; then
189     ${CVS} export -d "`basename ${SOURCE_DIRECTORY}`" \
190        "${EXPORTTAG}" gcc || \
191       error "Could not retrieve sources"
192   else
193     error "Cannot specify -r and -D at the same time"
194   fi
195
196   # Run gcc_update on them to set up the timestamps nicely, and (re)write
197   # the LAST_UPDATED file containing the CVS tag/date used.
198   changedir "gcc-${RELEASE}"
199   contrib/gcc_update --touch
200   echo "Obtained from CVS: ${EXPORTTAG} ${EXPORTDATE}" > LAST_UPDATED
201
202   # Obtain some documentation files from the wwwdocs module.
203   inform "Retrieving HTML documentation"
204   changedir "${WORKING_DIRECTORY}"
205   for x in bugs faq; do
206     (${CVS} export -r HEAD wwwdocs/htdocs/${x}.html && \
207      cp ${WORKING_DIRECTORY}/wwwdocs/htdocs/${x}.html \
208         ${SOURCE_DIRECTORY}) || \
209       error "Could not retrieve ${x}.html"
210   done
211
212   inform "Generating plain-text documentation from HTML"
213   changedir "${SOURCE_DIRECTORY}"
214   for file in *.html; do
215     newfile=`echo $file | sed -e 's/.html//' | tr "[:lower:]" "[:upper:]"`
216     (${ENV} TERM=vt100 lynx -dump $file \
217        | sed -e "s#file://localhost`/bin/pwd`\(.*\)#http://gcc.gnu.org\1#g" \
218        > $newfile) || \
219      error "Could not generate text-only version of ${file}"
220   done
221
222   # For a prerelease or real release, we need to generate additional
223   # files not present in CVS.
224   changedir "${SOURCE_DIRECTORY}"
225   if [ $SNAPSHOT -ne 1 ]; then
226     # Generate the documentation.
227     inform "Building install docs"
228     SOURCEDIR=${SOURCE_DIRECTORY}/gcc/doc
229     DESTDIR=${SOURCE_DIRECTORY}/INSTALL
230     export SOURCEDIR
231     export DESTDIR
232     ${SOURCE_DIRECTORY}/gcc/doc/install.texi2html
233
234     # Regenerate the NEWS file.
235     contrib/gennews > NEWS || \
236       error "Could not regenerate NEWS files"
237
238     # Now, we must build the compiler in order to create any generated
239     # files that are supposed to go in the source directory.  This is
240     # also a good sanity check to make sure that the release builds
241     # on at least one platform.
242     inform "Building compiler"
243     OBJECT_DIRECTORY=../objdir
244     contrib/gcc_build -d ${SOURCE_DIRECTORY} -o ${OBJECT_DIRECTORY} \
245       -c "--enable-generated-files-in-srcdir" build || \
246       error "Could not rebuild GCC"
247   fi
248
249   # Move message catalogs to source directory.
250   mv ../objdir/gcc/po/*.gmo gcc/po/
251   [ -f libcpp/po/cpplib.pot ] && mv ../objdir/libcpp/po/*.gmo libcpp/po/
252
253   # Create a "MD5SUMS" file to use for checking the validity of the release.
254   find . -type f |sed -e 's:^\./::' -e '/MD5SUMS/d' |sort |xargs md5sum >MD5SUMS
255 }
256
257 # Buid a single tarfile.  The first argument is the name of the name
258 # of the tarfile to build, without any suffixes.  They will be added
259 # automatically.  The rest of the arguments are the files or
260 # directories to include, and possibly other arguments to tar.
261
262 build_tarfile() {
263   # Get the name of the destination tar file.
264   TARFILE="$1.tar.bz2"
265   shift
266
267   # Build the tar file itself.
268   (${TAR} cf - "$@" | ${BZIP2} > ${TARFILE}) || \
269     error "Could not build tarfile"
270   FILE_LIST="${FILE_LIST} ${TARFILE}"
271 }
272
273 # Build a single tarfile if any of the directories listed exist,
274 # but not if none of them do (because that component doesn't exist
275 # on this branch).
276 maybe_build_tarfile() {
277   dest=$1
278   shift
279   dir_exists=0
280   for maybe_dir in "$@"; do
281     if [ -d "$maybe_dir" ]; then
282       dir_exists=1
283     fi
284   done
285   if [ $dir_exists = 1 ]; then
286     build_tarfile "$dest" "$@"
287   else
288     echo "Not building $dest tarfile"
289   fi
290 }
291
292 # Build the various tar files for the release.
293
294 build_tarfiles() {
295   inform "Building tarfiles"
296
297   changedir "${WORKING_DIRECTORY}"
298
299   # The GNU Coding Standards specify that all files should
300   # world readable.
301   chmod -R a+r ${SOURCE_DIRECTORY}
302   # And that all directories have mode 777.
303   find ${SOURCE_DIRECTORY} -type d -exec chmod 777 {} \;
304  
305   # Build one huge tarfile for the entire distribution.
306   build_tarfile gcc-${RELEASE} `basename ${SOURCE_DIRECTORY}`
307
308   # Now, build one for each of the languages.
309   maybe_build_tarfile gcc-ada-${RELEASE} ${ADA_DIRS}
310   maybe_build_tarfile gcc-g++-${RELEASE} ${CPLUSPLUS_DIRS}
311   maybe_build_tarfile gcc-fortran-${RELEASE} ${FORTRAN95_DIRS}
312   maybe_build_tarfile gcc-java-${RELEASE} ${JAVA_DIRS}
313   maybe_build_tarfile gcc-objc-${RELEASE} ${OBJECTIVEC_DIRS}
314   maybe_build_tarfile gcc-testsuite-${RELEASE} ${TESTSUITE_DIRS}
315    
316   # The core is everything else.
317   EXCLUDES=""
318   for x in ${ADA_DIRS} ${CPLUSPLUS_DIRS} ${FORTRAN95_DIRS}\
319            ${JAVA_DIRS} ${OBJECTIVEC_DIRS} ${TESTSUITE_DIRS}; do
320     EXCLUDES="${EXCLUDES} --exclude $x"
321   done
322   build_tarfile gcc-core-${RELEASE} ${EXCLUDES} \
323     `basename ${SOURCE_DIRECTORY}`
324 }
325
326 # Build .gz files.
327 build_gzip() {
328   for f in ${FILE_LIST}; do
329     target=${f%.bz2}.gz
330     (${BZIP2} -d -c $f | ${GZIP} > ${target}) || error "Could not create ${target}"
331   done
332 }
333
334 # Build diffs against an old release.
335 build_diffs() {
336   old_dir=${1%/*}
337   old_file=${1##*/}
338   old_vers=${old_file%.tar.bz2}
339   old_vers=${old_vers#gcc-}
340   inform "Building diffs against version $old_vers"
341   for f in gcc gcc-ada gcc-g++ gcc-g77 gcc-fortran gcc-java gcc-objc gcc-testsuite gcc-core; do
342     old_tar=${old_dir}/${f}-${old_vers}.tar.bz2
343     new_tar=${WORKING_DIRECTORY}/${f}-${RELEASE}.tar.bz2
344     if [ ! -e $old_tar ]; then
345       inform "$old_tar not found; not generating diff file"
346     elif [ ! -e $new_tar ]; then
347       inform "$new_tar not found; not generating diff file"
348     else
349       build_diff $old_tar gcc-${old_vers} $new_tar gcc-${RELEASE} \
350         ${f}-${old_vers}-${RELEASE}.diff.bz2
351     fi
352   done
353 }
354
355 # Build an individual diff.
356 build_diff() {
357   changedir "${WORKING_DIRECTORY}"
358   tmpdir=gccdiff.$$
359   mkdir $tmpdir || error "Could not create directory $tmpdir"
360   changedir $tmpdir
361   (${BZIP2} -d -c $1 | ${TAR} xf - ) || error "Could not unpack $1 for diffs"
362   (${BZIP2} -d -c $3 | ${TAR} xf - ) || error "Could not unpack $3 for diffs"
363   ${DIFF} $2 $4 > ../${5%.bz2}
364   if [ $? -eq 2 ]; then
365     error "Trouble making diffs from $1 to $3"
366   fi
367   ${BZIP2} ../${5%.bz2} || error "Could not generate ../$5"
368   changedir ..
369   rm -rf $tmpdir
370   FILE_LIST="${FILE_LIST} $5"
371 }
372
373 # Upload the files to the FTP server.
374 upload_files() {
375   inform "Uploading files"
376
377   changedir "${WORKING_DIRECTORY}"
378
379   # Make sure the directory exists on the server.
380   if [ $LOCAL -eq 0 ]; then
381     ${SSH} -l ${GCC_USERNAME} ${GCC_HOSTNAME} \
382       mkdir -p "${FTP_PATH}/diffs"
383     UPLOAD_PATH="${GCC_USERNAME}@${GCC_HOSTNAME}:${FTP_PATH}"
384   else
385     mkdir -p "${FTP_PATH}/diffs" \
386       || error "Could not create \`${FTP_PATH}'"
387     UPLOAD_PATH=${FTP_PATH}
388   fi
389
390   # Then copy files to their respective (sub)directories.
391   for x in gcc*.gz gcc*.bz2; do
392     if [ -e ${x} ]; then
393       # Make sure the file will be readable on the server.
394       chmod a+r ${x}
395       # Copy it.
396       case ${x} in
397         *.diff.*)
398           SUBDIR="diffs/";
399           ;;
400         *)
401           SUBDIR="";
402       esac
403       ${SCP} ${x} ${UPLOAD_PATH}/${SUBDIR} \
404         || error "Could not upload ${x}"
405     fi
406   done
407 }
408
409 # Announce a snapshot, both on the web and via mail.
410 announce_snapshot() {
411   inform "Updating links and READMEs on the FTP server"
412   
413   TEXT_DATE=`date --date=$DATE +%B\ %d,\ %Y`
414   changedir "${SNAPSHOTS_DIR}"
415   sed -e "s%@DATE@%$DATE%g" \
416     -e "s%@TEXT_DATE@%$TEXT_DATE%g" \
417     -e "s%@LAST_DATE@%$LAST_DATE%g" \
418     -e "s%@BRANCH@%${BRANCH}%g" \
419     -e "s%@RELEASE@%${RELEASE}%g" \
420     -e "s%@EXPORT@%${EXPORTTAG} ${EXPORTDATE}%g" \
421     ~/scripts/snapshot-README > $$
422   mv $$ ${RELEASE}/README
423   sed -e "s%@DATE@%$DATE%g" \
424     -e "s%@TEXT_DATE@%$TEXT_DATE%g" \
425     -e "s%@LAST_DATE@%$LAST_DATE%g" \
426     -e "s%@BRANCH@%${BRANCH}%g" \
427     -e "s%@RELEASE@%${RELEASE}%g" \
428     -e "s%@EXPORT@%${EXPORTTAG} ${EXPORTDATE}%g" \
429     ~/scripts/snapshot-index.html > $$
430   mv $$ ${RELEASE}/index.html
431
432   touch LATEST-IS-${BRANCH}-${DATE}
433   rm -f LATEST-IS-${BRANCH}-${LAST_DATE}
434
435   inform "Sending mail"
436
437   export QMAILHOST=gcc.gnu.org
438   mail -s "gcc-ss-${RELEASE} is now available" gcc@gcc.gnu.org < ${SNAPSHOTS_DIR}/${RELEASE}/README
439 }
440
441 ########################################################################
442 # Initialization
443 ########################################################################
444
445 # Today's date.
446 DATE=`date "+%Y%m%d"`
447 LONG_DATE=`date "+%Y-%m-%d"`
448
449 # The CVS server containing the GCC repository.
450 CVS_SERVER="gcc.gnu.org"
451 # The path to the repository on that server.
452 CVS_REPOSITORY="/cvs/gcc"
453 # The CVS protocol to use.
454 CVS_PROTOCOL="ext"
455 # The username to use when connecting to the server.
456 CVS_USERNAME="${USER}"
457
458 # The machine to which files will be uploaded.
459 GCC_HOSTNAME="gcc.gnu.org"
460 # The name of the account on the machine to which files are uploaded.
461 GCC_USERNAME="gccadmin"
462 # The directory in which the files will be placed (do not use ~user syntax).
463 FTP_PATH=/var/ftp/pub/gcc
464 # The directory in which snapshots will be placed.
465 SNAPSHOTS_DIR=${FTP_PATH}/snapshots
466
467 # The major number for the release.  For release `3.0.2' this would be 
468 # `3'
469 RELEASE_MAJOR=""
470 # The minor number for the release.  For release `3.0.2' this would be
471 # `0'.
472 RELEASE_MINOR=""
473 # The revision number for the release.  For release `3.0.2' this would
474 # be `2'.
475 RELEASE_REVISION=""
476 # The complete name of the release.
477 RELEASE=""
478
479 # The name of the branch from which the release should be made, in a 
480 # user-friendly form.
481 BRANCH=""
482
483 # The name of the branch from which the release should be made, as used
484 # for our version control system.
485 CVSBRANCH=""
486
487 # The tag to apply to the sources used for the release.
488 TAG=""
489
490 # The old tarballs from which to generate diffs.
491 OLD_TARS=""
492
493 # The directory that will be used to construct the release.  The
494 # release itself will be placed in a subdirectory of this diretory.
495 DESTINATION=${HOME}
496 # The subdirectory.
497 WORKING_DIRECTORY=""
498 # The directory that will contain the GCC sources.
499 SOURCE_DIRECTORY=""
500
501 # The directories that should be part of the various language-specific
502 # tar files.  These are all relative to the top of the source tree.
503 ADA_DIRS="gcc/ada libada"
504 CPLUSPLUS_DIRS="gcc/cp libstdc++-v3"
505 FORTRAN95_DIRS="gcc/fortran libgfortran"
506 JAVA_DIRS="gcc/java libjava libffi fastjar zlib boehm-gc"
507 OBJECTIVEC_DIRS="gcc/objc libobjc"
508 TESTSUITE_DIRS="gcc/testsuite"
509
510 # Non-zero if this is the final release, rather than a prerelease.
511 FINAL=0
512
513 # Non-zero if we are building a snapshot, and don't build gcc or
514 # include generated files.
515 SNAPSHOT=0
516
517 # Non-zero if we are running locally on gcc.gnu.org, and use local CVS
518 # and copy directly to the FTP directory.
519 LOCAL=0
520
521 # Major operation modes.
522 MODE_GZIP=0
523 MODE_DIFFS=0
524 MODE_SOURCES=0
525 MODE_TARFILES=0
526 MODE_UPLOAD=0
527
528 # List of archive files generated; used to create .gz files from .bz2.
529 FILE_LIST=""
530
531 # Programs we use.
532
533 BZIP2="${BZIP2:-bzip2}"
534 CVS="${CVS:-cvs -f -Q -z9}"
535 DIFF="${DIFF:-diff -Nrcpad}"
536 ENV="${ENV:-env}"
537 GZIP="${GZIP:-gzip --best}"
538 SCP="${SCP:-scp -p}"
539 SSH="${SSH:-ssh}"
540 TAR="${TAR:-tar}"
541
542 ########################################################################
543 # Command Line Processing
544 ########################################################################
545
546 # Parse the options.
547 while getopts "d:fr:u:t:p:s:l" ARG; do
548     case $ARG in
549     d)    DESTINATION="${OPTARG}";;
550     r)    RELEASE="${OPTARG}";;
551     t)    TAG="${OPTARG}";;
552     u)    CVS_USERNAME="${OPTARG}";;
553     f)    FINAL=1;;
554     s)    SNAPSHOT=1
555           BRANCH=${OPTARG%:*}
556           CVSBRANCH=${OPTARG#*:}
557           ;;
558     l)    LOCAL=1
559           SCP=cp
560           PATH=~:/usr/local/bin:$PATH;;
561     p)    OLD_TARS="${OLD_TARS} ${OPTARG}"
562           if [ ! -f ${OPTARG} ]; then
563             error "-p argument must name a tarball"
564           fi;;
565     \?)   usage;;
566     esac
567 done
568 shift `expr ${OPTIND} - 1`
569
570 # Handle the major modes.
571 while [ $# -ne 0 ]; do
572     case $1 in
573     diffs)    MODE_DIFFS=1;;
574     gzip)     MODE_GZIP=1;;
575     sources)  MODE_SOURCES=1;;
576     tarfiles) MODE_TARFILES=1;;
577     upload)   MODE_UPLOAD=1;;
578     all)      MODE_SOURCES=1; MODE_TARFILES=1; MODE_DIFFS=1; MODE_UPLOAD=1;
579               if [ $SNAPSHOT -ne 1 ]; then
580                 # Only for releases and pre-releases.
581                 MODE_GZIP=1;
582               fi
583               ;;
584     *)        error "Unknown mode $1";;
585     esac
586     shift
587 done
588
589 # Perform consistency checking.
590 if [ ${LOCAL} -eq 0 ] && [ -z ${CVS_USERNAME} ]; then
591   error "No username specified"
592 fi
593
594 if [ ! -d ${DESTINATION} ]; then
595   error "\`${DESTINATION}' is not a directory"
596 fi
597
598 if [ $SNAPSHOT -eq 0 ]; then
599   if [ -z ${RELEASE} ]; then
600     error "No release number specified"
601   fi
602
603   # Compute the major and minor release numbers.
604   RELEASE_MAJOR=`echo $RELEASE | awk --assign FS=. '{ print $1; }'`
605   RELEASE_MINOR=`echo $RELEASE | awk --assign FS=. '{ print $2; }'`
606   RELEASE_REVISION=`echo $RELEASE | awk --assign FS=. '{ print $3; }'`
607
608   if [ -z "${RELEASE_MAJOR}" ] || [ -z "${RELEASE_MINOR}" ]; then
609     error "Release number \`${RELEASE}' is invalid"
610   fi
611
612   # Compute the full name of the release.
613   if [ -z "${RELEASE_REVISION}" ]; then
614     RELEASE="${RELEASE_MAJOR}.${RELEASE_MINOR}"
615   else
616     RELEASE="${RELEASE_MAJOR}.${RELEASE_MINOR}.${RELEASE_REVISION}"
617   fi
618
619   # Compute the name of the branch, which is based solely on the major
620   # and minor release numbers.
621   CVSBRANCH="gcc-${RELEASE_MAJOR}_${RELEASE_MINOR}-branch"
622
623   # If this is not a final release, set various parameters acordingly.
624   if [ ${FINAL} -ne 1 ]; then
625     RELEASE="${RELEASE}-${DATE}"
626     FTP_PATH="${FTP_PATH}/prerelease-${RELEASE}/"
627   else
628     FTP_PATH="${FTP_PATH}/releases/gcc-${RELEASE}/"
629   fi
630 else
631   RELEASE=${BRANCH}-${DATE}
632   FTP_PATH="${FTP_PATH}/snapshots/${RELEASE}"
633   if [ ${CVSBRANCH} != "HEAD" ]; then
634     TAG=gcc-ss-`echo ${RELEASE} | tr '.' '_'`
635   fi
636
637   # If diffs are requested when building locally on gcc.gnu.org, we (usually)
638   # know what the last snapshot date was and take the corresponding tarballs,
639   # unless the user specified tarballs explictly.
640   if [ $MODE_DIFFS -ne 0 ] && [ $LOCAL -ne 0 ] && [ -z "${OLD_TARS}" ]; then
641     LAST_DATE=`cat ~/.snapshot_date-${BRANCH}`
642     OLD_TARS=${SNAPSHOTS_DIR}/${BRANCH}-${LAST_DATE}/gcc-${BRANCH}-${LAST_DATE}.tar.bz2
643   fi
644 fi
645
646 # Compute the name of the WORKING_DIRECTORY and the SOURCE_DIRECTORY.
647 WORKING_DIRECTORY="${DESTINATION}/gcc-${RELEASE}"
648 SOURCE_DIRECTORY="${WORKING_DIRECTORY}/gcc-${RELEASE}"
649
650 # Recompute the names of all the language-specific directories,
651 # relative to the WORKING_DIRECTORY.
652 ADA_DIRS=`adjust_dirs ${ADA_DIRS}`
653 CPLUSPLUS_DIRS=`adjust_dirs ${CPLUSPLUS_DIRS}`
654 FORTRAN95_DIRS=`adjust_dirs ${FORTRAN95_DIRS}`
655 JAVA_DIRS=`adjust_dirs ${JAVA_DIRS}`
656 OBJECTIVEC_DIRS=`adjust_dirs ${OBJECTIVEC_DIRS}`
657 TESTSUITE_DIRS=`adjust_dirs ${TESTSUITE_DIRS}`
658
659 # Set up CVSROOT.
660 if [ $LOCAL -eq 0 ]; then
661     CVSROOT=":${CVS_PROTOCOL}:${CVS_USERNAME}@"
662     CVSROOT="${CVSROOT}${CVS_SERVER}:${CVS_REPOSITORY}"
663 else
664     CVSROOT="${CVS_REPOSITORY}"
665 fi
666 export CVSROOT
667
668 ########################################################################
669 # Main Program
670 ########################################################################
671
672 # Set the timezone to UTC
673 TZ="UTC0"
674 export TZ
675
676 # Build the source directory.
677
678 if [ $MODE_SOURCES -ne 0 ]; then
679   build_sources
680 fi
681
682 # Build the tar files.
683
684 if [ $MODE_TARFILES -ne 0 ]; then
685   build_tarfiles
686 fi
687
688 # Build diffs
689
690 if [ $MODE_DIFFS -ne 0 ]; then
691   # Possibly build diffs.
692   if [ -n "$OLD_TARS" ]; then
693     for old_tar in $OLD_TARS; do
694       build_diffs $old_tar
695     done
696   fi
697 fi
698
699 # Build gzip files
700 if [ $MODE_GZIP -ne 0 ]; then
701   build_gzip
702 fi
703
704 # Upload them to the FTP server.
705
706 if [ $MODE_UPLOAD -ne 0 ]; then
707   upload_files
708
709   # For snapshots, make some further updates.
710   if [ $SNAPSHOT -ne 0 ] && [ $LOCAL -ne 0 ]; then
711     announce_snapshot
712
713     # Update snapshot date file.
714     changedir ~
715     echo $DATE > .snapshot_date-${BRANCH}
716
717     # Remove working directory
718     rm -rf ${WORKING_DIRECTORY}
719   fi
720 fi