aboutsummaryrefslogtreecommitdiff
path: root/maintainer-scripts/update_version
blob: cd3c5e6ea1879d89d60d6ae68a1a3e36175b0589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh 

# Run this from /tmp.
CVSROOT=/cvs/gcc
export CVSROOT
/bin/rm -rf /tmp/$$
/bin/mkdir /tmp/$$
cd /tmp/$$

# ARGS is passed to 'cvs co'
ARGS="$*"
CURR_DATE=`/bin/date +"%Y%m%d"`

# version is contained within a char*
textstring_FILES="gcc/gcc/version.c gcc/gcc/f/version.c gcc/libf2c/libF77/Version.c gcc/libf2c/libI77/Version.c gcc/libf2c/libU77/Version.c"

# version is contained within a #define
cppdefine_FILES="gcc/libstdc++-v3/include/bits/c++config"

/usr/local/bin/cvs co $ARGS $textstring_FILES $cppdefine_FILES

for file in $textstring_FILES; do
  OLD_VERSION=`/bin/cat $file`
  /bin/sed -e "s/\(.*\"[^ ]*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/" >${file} <<HERE
$OLD_VERSION
HERE
done

for file in $cppdefine_FILES; do
  OLD_VERSION=`/bin/cat $file`
  /bin/sed -e "s/\(#.*\) [0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]/\1 ${CURR_DATE}/" >${file} <<HERE
$OLD_VERSION
HERE
done

/usr/local/bin/cvs commit -m "Daily bump." $textstring_FILES $cppdefine_FILES
commit_results=$?

/bin/rm -rf /tmp/$$
exit $commit_results