3 # Update the current version date in all files in the tree containing
4 # it. Consider all release branches except those matching the regular
5 # expression in $IGNORE_BRANCHES, and also consider those branches listed
8 CVSROOT
=${CVSROOT:-/cvs/gcc}
9 IGNORE_BRANCHES
='gcc-(2_95|3_0|3_1|3_2)-branch'
10 ADD_BRANCHES
='HEAD autovect-branch'
19 CVS
=${CVS:-/usr/local/bin/cvs}
21 # Compute the branches which we should update.
23 BRANCHES
=`$CVS status -v gcc/ChangeLog \
25 | egrep 'gcc-[0-9]+_[0-9]+-branch$' \
26 | egrep -v $IGNORE_BRANCHES`
27 # Always update the mainline.
28 BRANCHES
="${BRANCHES} ${ADD_BRANCHES}"
30 # ARGS is passed to 'cvs co'
31 CURR_DATE
=`/bin/date +"%Y%m%d"`
33 # version is contained within a char*
34 textstring_FILES
="gcc/gcc/version.c"
36 # version is contained within a #define
37 cppdefine_FILES
="gcc/libstdc++-v3/include/bits/c++config"
39 # Assume all will go well.
42 for BRANCH
in $BRANCHES; do
43 echo "Working on \"$BRANCH\"."
44 # Check out the files on the branch. HEAD is a special case; if
45 # you check out files with -r HEAD, CVS will not let you check
47 if test "$BRANCH" = HEAD
; then
48 ${CVS} co
$textstring_FILES $cppdefine_FILES
50 ${CVS} co
-r $BRANCH $textstring_FILES $cppdefine_FILES
53 # There are no files to commit yet.
56 for file in $textstring_FILES; do
57 if test -f $file; then
58 /bin
/sed <$file >$file.new
-e \
59 "s/\(.*\"[^ ]*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/"
61 if /usr
/bin
/cmp -s $file $file.new
; then
65 COMMIT_FILES
="$COMMIT_FILES $file"
70 for file in $cppdefine_FILES; do
71 if test -f $file; then
72 /bin
/sed <$file >$file.new
-e \
73 "s/\(#.*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/"
75 if /usr
/bin
/cmp -s $file $file.new
; then
79 COMMIT_FILES
="$COMMIT_FILES $file"
84 if test -n "$COMMIT_FILES" \
85 && ! ${CVS} commit
-m "Daily bump." $COMMIT_FILES; then
86 # If we could not commit the files, indicate failure.