-
Notifications
You must be signed in to change notification settings - Fork 74
/
HOOT_VERSION_GEN
executable file
·71 lines (60 loc) · 1.89 KB
/
HOOT_VERSION_GEN
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
69
70
#!/bin/sh
set -e
HVF=HOOT_VERSION_FILE
DEF_VER=UNKNOWN-VERSION
DEF_DATE=UNKNOWN-DATE
LF='
'
# Is this a git repo? Do we have git?
if test -d .git -o -f .git && command -v git >/dev/null 2>/dev/null; then
HAS_GIT=true
fi
# First see if there is a version file (included in release tarballs),
# then try git-describe, then default.
if test -f version
then
VN=$(cat version) || VN="$DEF_VER"
VD=$(cat version_date) || VD="$DEF_DATE"
elif test "$HAS_GIT" = "true" &&
VD=$(git show -s --format=%ci | awk '{print $1;}') &&
VN=$(git describe --match "v[0-9]*" --abbrev=7 --tags HEAD 2>/dev/null | sed -e s/-/_/g) &&
case "$VN" in
*$LF*) (exit 1) ;;
v[0-9]*)
git update-index -q --refresh
test -z "$(git diff-index --name-only HEAD --)" ||
VN=$VN"_dirty" ;;
esac
then
#VN=$(echo "$VN" | sed -e 's/-/./g');
PASS=1
else
VN="$DEF_VER"
VD="$DEF_DATE"
fi
# VN is the full version number. E.g. 0.1.0 if it is a tag. 0.1.0-2-deadbeef
# if it is not a tagged version
VN=$(expr "$VN" : v*'\(.*\)')
# Parse out the old hoot version as "VC"
if test -r $HVF
then
VC=$(sed -e 's/^HOOT_VERSION = //' <$HVF)
else
VC=unset
fi
# If this is a git checkout then get the revision number
if test "$HAS_GIT" = "true"; then
HOOT_REVISION=$(git rev-parse --short HEAD)
fi
# If the version has changed, then rewrite the version header file.
test "$VN" = "$VC" || {
echo "HOOT_VERSION = $VN" >$HVF
echo "HOOT_DATE = $VD" >>$HVF
echo "HOOT_BUILT_BY = $(whoami)" >>$HVF
cat hoot-core/src/main/cpp/hoot/core/info/VersionDefines.h.in | \
sed -e "s/@HOOT_VERSION@/$VN/g" | \
sed -e "s/@HOOT_REVISION@/$HOOT_REVISION/g" | \
sed -e "s/@HOOT_DATE@/$VD/g" | \
sed -e "s/@HOOT_BUILT_BY@/$(whoami)/g" > \
hoot-core/src/main/cpp/hoot/core/info/VersionDefines.h
}