forked from NagiosEnterprises/ndoutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-version
executable file
·69 lines (56 loc) · 2.78 KB
/
update-version
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
60
61
62
63
64
65
66
67
68
#!/bin/sh
# Get date (two formats)
if [ -n "$2" ]; then
LONGDATE=`date -d "$2" "+%B %d, %Y"`
SHORTDATE=`date -d "$2" "+%m-%d-%Y"`
else
LONGDATE=`date "+%B %d, %Y"`
SHORTDATE=`date "+%m-%d-%Y"`
fi
# Current version number
CURRENTVERSION=2.1.2
# Last date
LASTDATE=11-14-2016
if [ "x$1" = "x" ]
then
echo "Usage: $0 <version number | \"newdate\"> [revision date]"
echo ""
echo "Run this script with the name of the new version (i.e \"1.4\") to"
echo "update version number and modification date in files."
echo "Use the \"newdate\" argument if you want to keep the current version"
echo "number and just update the modification date."
echo ""
echo "Current version=$CURRENTVERSION"
echo "Current Modification date=$LASTDATE"
echo ""
exit 1
fi
newversion=$1
if [ "x$newversion" = "xnewdate" ]
then
newversion=$CURRENTVERSION
fi
# Update version number and release date in source code
perl -i -p -e "s/NDOMOD_VERSION \"[0-9].*\"/NDOMOD_VERSION \"$newversion\"/;" src/ndomod.c
perl -i -p -e "s/NDOMOD_DATE \"[0-9].*\"/NDOMOD_DATE \"$SHORTDATE\"/;" src/ndomod.c
perl -i -p -e "s/Last Modified: [0-9].*/Last Modified: $SHORTDATE/;" src/ndomod.c
perl -i -p -e "s/NDO2DB_VERSION \"[0-9].*\"/NDO2DB_VERSION \"$newversion\"/;" src/ndo2db.c
perl -i -p -e "s/NDO2DB_DATE \"[0-9].*\"/NDO2DB_DATE \"$SHORTDATE\"/;" src/ndo2db.c
perl -i -p -e "s/Last Modified: [0-9].*/Last Modified: $SHORTDATE/;" src/ndo2db.c
perl -i -p -e "s/LOG2NDO_VERSION \"[0-9].*\"/LOG2NDO_VERSION \"$newversion\"/;" src/log2ndo.c
perl -i -p -e "s/LOG2NDO_DATE \"[0-9].*\"/LOG2NDO_DATE \"$SHORTDATE\"/;" src/log2ndo.c
perl -i -p -e "s/Last Modified: [0-9].*/Last Modified: $SHORTDATE/;" src/log2ndo.c
perl -i -p -e "s/FILE2SOCK_VERSION \"[0-9].*\"/FILE2SOCK_VERSION \"$newversion\"/;" src/file2sock.c
perl -i -p -e "s/FILE2SOCK_DATE \"[0-9].*\"/FILE2SOCK_DATE \"$SHORTDATE\"/;" src/file2sock.c
perl -i -p -e "s/Last Modified: [0-9].*/Last Modified: $SHORTDATE/;" src/file2sock.c
perl -i -p -e "s/SOCKDEBUG_VERSION \"[0-9].*\"/SOCKDEBUG_VERSION \"$newversion\"/;" src/sockdebug.c
perl -i -p -e "s/SOCKDEBUG_DATE \"[0-9].*\"/SOCKDEBUG_DATE \"$SHORTDATE\"/;" src/sockdebug.c
perl -i -p -e "s/Last Modified: [0-9].*/Last Modified: $SHORTDATE/;" src/sockdebug.c
# Update version number and release date in configure script and configure.ac
perl -i -p -e "s/PKG_VERSION=.*/PKG_VERSION=\"$newversion\"/;" configure
perl -i -p -e "s/PKG_REL_DATE=.*\"/PKG_REL_DATE=\"$SHORTDATE\"/;" configure
perl -i -p -e "s/PKG_VERSION=.*/PKG_VERSION=\"$newversion\"/;" configure.ac
perl -i -p -e "s/PKG_REL_DATE=.*\"/PKG_REL_DATE=\"$SHORTDATE\"/;" configure.ac
# Update this file with version number and last date
perl -i -p -e "s/^CURRENTVERSION=.*/CURRENTVERSION=$newversion/;" update-version
perl -i -p -e "s/^LASTDATE=.*/LASTDATE=$SHORTDATE/;" update-version