2005-12-27 23:40:17 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
GVF=GIT-VERSION-FILE
|
2011-09-30 23:20:57 +02:00
|
|
|
DEF_VER=v1.7.7
|
2005-12-27 23:40:17 +01:00
|
|
|
|
2006-08-08 22:11:16 +02:00
|
|
|
LF='
|
|
|
|
'
|
|
|
|
|
2007-02-14 20:33:04 +01:00
|
|
|
# First see if there is a version file (included in release tarballs),
|
|
|
|
# then try git-describe, then default.
|
|
|
|
if test -f version
|
2006-03-02 23:38:44 +01:00
|
|
|
then
|
2006-01-26 17:39:27 +01:00
|
|
|
VN=$(cat version) || VN="$DEF_VER"
|
2008-02-20 23:13:16 +01:00
|
|
|
elif test -d .git -o -f .git &&
|
2010-05-12 05:29:20 +02:00
|
|
|
VN=$(git describe --match "v[0-9]*" --abbrev=4 HEAD 2>/dev/null) &&
|
2007-02-14 20:33:04 +01:00
|
|
|
case "$VN" in
|
|
|
|
*$LF*) (exit 1) ;;
|
2008-02-17 07:44:31 +01:00
|
|
|
v[0-9]*)
|
2008-08-08 22:31:27 +02:00
|
|
|
git update-index -q --refresh
|
2008-06-28 19:13:29 +02:00
|
|
|
test -z "$(git diff-index --name-only HEAD --)" ||
|
2008-02-23 20:31:04 +01:00
|
|
|
VN="$VN-dirty" ;;
|
2007-02-14 20:33:04 +01:00
|
|
|
esac
|
|
|
|
then
|
|
|
|
VN=$(echo "$VN" | sed -e 's/-/./g');
|
2006-03-02 23:38:44 +01:00
|
|
|
else
|
|
|
|
VN="$DEF_VER"
|
2006-01-26 17:39:27 +01:00
|
|
|
fi
|
2006-01-10 03:07:01 +01:00
|
|
|
|
|
|
|
VN=$(expr "$VN" : v*'\(.*\)')
|
2006-01-09 23:25:10 +01:00
|
|
|
|
2005-12-27 23:40:17 +01:00
|
|
|
if test -r $GVF
|
|
|
|
then
|
|
|
|
VC=$(sed -e 's/^GIT_VERSION = //' <$GVF)
|
|
|
|
else
|
|
|
|
VC=unset
|
|
|
|
fi
|
|
|
|
test "$VN" = "$VC" || {
|
|
|
|
echo >&2 "GIT_VERSION = $VN"
|
|
|
|
echo "GIT_VERSION = $VN" >$GVF
|
|
|
|
}
|
|
|
|
|
|
|
|
|