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