blob: a80d6ea8a5bfbce21a8b08b664784886345f6d5f [file] [log] [blame]
Rene Scharfe117a93d2006-01-04 20:42:03 +01001#!/bin/sh
2# Print additional version information for non-release trees.
Ryan Andersonaaebf432005-07-31 04:57:49 -04003
Rene Scharfe117a93d2006-01-04 20:42:03 +01004usage() {
5 echo "Usage: $0 [srctree]" >&2
6 exit 1
Ryan Andersonaaebf432005-07-31 04:57:49 -04007}
8
Rene Scharfe117a93d2006-01-04 20:42:03 +01009cd "${1:-.}" || usage
Ryan Andersonaaebf432005-07-31 04:57:49 -040010
Rene Scharfe117a93d2006-01-04 20:42:03 +010011# Check for git and a git repo.
12if head=`git rev-parse --verify HEAD 2>/dev/null`; then
13 # Do we have an untagged version?
Uwe Zeisberger29b0c892006-06-16 08:47:57 +020014 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
Rene Scharfe117a93d2006-01-04 20:42:03 +010015 printf '%s%s' -g `echo "$head" | cut -c1-8`
16 fi
Ryan Andersonaaebf432005-07-31 04:57:49 -040017
Rene Scharfe117a93d2006-01-04 20:42:03 +010018 # Are there uncommitted changes?
Uwe Zeisberger216b2f12006-06-16 08:48:48 +020019 if git diff-index HEAD | read dummy; then
Ryan Anderson24d49752006-01-08 04:35:36 -050020 printf '%s' -dirty
Rene Scharfe117a93d2006-01-04 20:42:03 +010021 fi
Aron Griffis3dce1742007-11-28 16:55:44 -050022
23 # All done with git
24 exit
25fi
26
27# Check for mercurial and a mercurial repo.
28if hgid=`hg id 2>/dev/null`; then
29 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
30
31 # Do we have an untagged version?
32 if [ -z "$tag" -o "$tag" = tip ]; then
33 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
34 printf '%s%s' -hg "$id"
35 fi
36
37 # Are there uncommitted changes?
38 # These are represented by + after the changeset id.
39 case "$hgid" in
40 *+|*+\ *) printf '%s' -dirty ;;
41 esac
42
43 # All done with mercurial
44 exit
Rene Scharfe117a93d2006-01-04 20:42:03 +010045fi