2006-01-04 20:42:03 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# Print additional version information for non-release trees.
|
2005-07-31 10:57:49 +02:00
|
|
|
|
2006-01-04 20:42:03 +01:00
|
|
|
usage() {
|
|
|
|
echo "Usage: $0 [srctree]" >&2
|
|
|
|
exit 1
|
2005-07-31 10:57:49 +02:00
|
|
|
}
|
|
|
|
|
2006-01-04 20:42:03 +01:00
|
|
|
cd "${1:-.}" || usage
|
2005-07-31 10:57:49 +02:00
|
|
|
|
2006-01-04 20:42:03 +01:00
|
|
|
# Check for git and a git repo.
|
2008-09-12 21:26:24 +02:00
|
|
|
if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
|
2006-01-04 20:42:03 +01:00
|
|
|
# Do we have an untagged version?
|
2006-06-16 08:47:57 +02:00
|
|
|
if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
|
2008-07-02 00:18:08 +02:00
|
|
|
if tag=`git describe 2>/dev/null`; then
|
|
|
|
echo $tag | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
|
2008-09-12 21:26:24 +02:00
|
|
|
else
|
|
|
|
printf '%s%s' -g $head
|
2008-07-02 00:18:08 +02:00
|
|
|
fi
|
2006-01-04 20:42:03 +01:00
|
|
|
fi
|
2005-07-31 10:57:49 +02:00
|
|
|
|
2008-12-02 21:58:06 +01:00
|
|
|
# Is this git on svn?
|
|
|
|
if git config --get svn-remote.svn.url >/dev/null; then
|
|
|
|
printf -- '-svn%s' "`git-svn find-rev $head`"
|
|
|
|
fi
|
|
|
|
|
2006-01-04 20:42:03 +01:00
|
|
|
# Are there uncommitted changes?
|
2007-11-03 02:53:00 +01:00
|
|
|
git update-index --refresh --unmerged > /dev/null
|
2007-11-03 02:53:01 +01:00
|
|
|
if git diff-index --name-only HEAD | grep -v "^scripts/package" \
|
|
|
|
| read dummy; then
|
2006-01-08 10:35:36 +01:00
|
|
|
printf '%s' -dirty
|
2006-01-04 20:42:03 +01:00
|
|
|
fi
|
2007-11-28 22:55:44 +01:00
|
|
|
|
|
|
|
# All done with git
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check for mercurial and a mercurial repo.
|
|
|
|
if hgid=`hg id 2>/dev/null`; then
|
|
|
|
tag=`printf '%s' "$hgid" | cut -d' ' -f2`
|
|
|
|
|
|
|
|
# Do we have an untagged version?
|
|
|
|
if [ -z "$tag" -o "$tag" = tip ]; then
|
|
|
|
id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
|
|
|
|
printf '%s%s' -hg "$id"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Are there uncommitted changes?
|
|
|
|
# These are represented by + after the changeset id.
|
|
|
|
case "$hgid" in
|
|
|
|
*+|*+\ *) printf '%s' -dirty ;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# All done with mercurial
|
|
|
|
exit
|
2006-01-04 20:42:03 +01:00
|
|
|
fi
|
2008-02-03 07:13:26 +01:00
|
|
|
|
|
|
|
# Check for svn and a svn repo.
|
2008-12-02 21:58:05 +01:00
|
|
|
if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
|
2008-02-03 07:13:26 +01:00
|
|
|
rev=`echo $rev | awk '{print $NF}'`
|
|
|
|
changes=`svn status 2>/dev/null | grep '^[AMD]' | wc -l`
|
|
|
|
|
|
|
|
# Are there uncommitted changes?
|
|
|
|
if [ $changes != 0 ]; then
|
2008-10-25 23:43:50 +02:00
|
|
|
printf -- '-svn%s%s' "$rev" -dirty
|
2008-02-03 07:13:26 +01:00
|
|
|
else
|
|
|
|
printf -- '-svn%s' "$rev"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# All done with svn
|
|
|
|
exit
|
|
|
|
fi
|