blob: 83b75126c9f7b5c57a92c8f996dc94e6c61d6680 [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
Sebastian Siewior56b2f072008-07-02 00:18:08 +020015 if tag=`git describe 2>/dev/null`; then
16 echo $tag | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
17 fi
Rene Scharfe117a93d2006-01-04 20:42:03 +010018 fi
Ryan Andersonaaebf432005-07-31 04:57:49 -040019
Rene Scharfe117a93d2006-01-04 20:42:03 +010020 # Are there uncommitted changes?
Theodore Ts'o4e7434f2007-11-02 21:53:00 -040021 git update-index --refresh --unmerged > /dev/null
Theodore Ts'ob052ce42007-11-02 21:53:01 -040022 if git diff-index --name-only HEAD | grep -v "^scripts/package" \
23 | read dummy; then
Ryan Anderson24d49752006-01-08 04:35:36 -050024 printf '%s' -dirty
Rene Scharfe117a93d2006-01-04 20:42:03 +010025 fi
Aron Griffis3dce1742007-11-28 16:55:44 -050026
27 # All done with git
28 exit
29fi
30
31# Check for mercurial and a mercurial repo.
32if hgid=`hg id 2>/dev/null`; then
33 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
34
35 # Do we have an untagged version?
36 if [ -z "$tag" -o "$tag" = tip ]; then
37 id=`printf '%s' "$hgid" | sed 's/[+ ].*//'`
38 printf '%s%s' -hg "$id"
39 fi
40
41 # Are there uncommitted changes?
42 # These are represented by + after the changeset id.
43 case "$hgid" in
44 *+|*+\ *) printf '%s' -dirty ;;
45 esac
46
47 # All done with mercurial
48 exit
Rene Scharfe117a93d2006-01-04 20:42:03 +010049fi
Bryan Wuba3d05f2008-02-03 14:13:26 +080050
51# Check for svn and a svn repo.
52if rev=`svn info 2>/dev/null | grep '^Revision'`; then
53 rev=`echo $rev | awk '{print $NF}'`
54 changes=`svn status 2>/dev/null | grep '^[AMD]' | wc -l`
55
56 # Are there uncommitted changes?
57 if [ $changes != 0 ]; then
58 printf -- '-svn%s%s%s' "$rev" -dirty "$changes"
59 else
60 printf -- '-svn%s' "$rev"
61 fi
62
63 # All done with svn
64 exit
65fi