summaryrefslogtreecommitdiff
path: root/dist/bumprel
blob: 459dd3f1e6d00fe9956170913e3029ee20849d23 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/bin/sh
#
# $Id: $
#
# Bump the Berkeley DB version

P=`pwd`
R=`dirname $P`
progname="$0"
VERSION="$1"
assembly="../lang/csharp/src/Properties/AssemblyInfo.cs"
t=/tmp/__assembly

# Sanity check
if [ ! -f $R/dist/RELEASE ] ; then
	echo "$progname must be run in the dist directory of a Berkeley DB tree"
	exit 1
fi

OIFS="$IFS"
IFS=.
set -- $VERSION

if [ $# != 5 ] ; then
	echo "Usage: $progname X.X.X.X.X -- sets the Berkeley DB version to X.X.X.X.X"
	exit 1
fi
FAMILY="$1" RELEASE="$2" MAJOR="$3" MINOR="$4" PATCH="$5"
DATE=`date "+%B %e, %Y"`

IFS="$OFS"

# Update the change log patch number -- there's 1 location to update in
# the change log "table of contents", and 2 in the Change Log itself.
#cd $R/docs_src/ref/changelog && vi toc.so ${MAJOR}.${MINOR}.html

# Update the release number.
cd $R/dist &&\
    (echo "/^DB_VERSION_FAMILY/s/=.*/=$FAMILY/" &&\
     echo "/^DB_VERSION_RELEASE/s/=.*/=$RELEASE/" &&\
     echo "/^DB_VERSION_MAJOR/s/=.*/=$MAJOR/" &&\
     echo "/^DB_VERSION_MINOR/s/=.*/=$MINOR/" &&\
     echo "/^DB_VERSION_PATCH/s/=.*/=$PATCH/" &&\
     echo "/^DB_RELEASE_DATE/s/=.*/=\"$DATE\"/" &&\
     echo w &&\
     echo q) | ed RELEASE > /dev/null
VERSION=`sh -c '. ./RELEASE; echo $DB_VERSION'`
echo "Berkeley DB release $VERSION."

# Build auto-generated files.
cd $R/dist && sh s_all

# Update the CSharp assembly information
sed -e "s:AssemblyVersion(\"[0-9]*\.[0-9]*\.[0-9]*\"):AssemblyVersion(\"$MAJOR\.$MINOR\.$PATCH\"):" < $assembly > $t
cmp $t $assembly > /dev/null 2>&1 ||
    (rm -f $assembly && cp $t $assembly && rm -f $t && chmod 444 $assembly)

# Commit all of the changes.
echo "Now run 'hg commit && hg tag db-$MAJOR.$MINOR.$PATCH && hg push'"