| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 1 | #!/bin/sh | 
|  | 2 | # Print additional version information for non-release trees. | 
| Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 3 |  | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 4 | usage() { | 
|  | 5 | echo "Usage: $0 [srctree]" >&2 | 
|  | 6 | exit 1 | 
| Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 7 | } | 
|  | 8 |  | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 9 | cd "${1:-.}" || usage | 
| Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 10 |  | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 11 | # Check for git and a git repo. | 
|  | 12 | if head=`git rev-parse --verify HEAD 2>/dev/null`; then | 
|  | 13 | # Do we have an untagged version? | 
| Uwe Zeisberger | 29b0c89 | 2006-06-16 08:47:57 +0200 | [diff] [blame] | 14 | if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then | 
| Theodore Ts'o | d882421 | 2007-11-02 21:52:59 -0400 | [diff] [blame] | 15 | git describe | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}' | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 16 | fi | 
| Ryan Anderson | aaebf43 | 2005-07-31 04:57:49 -0400 | [diff] [blame] | 17 |  | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 18 | # Are there uncommitted changes? | 
| Theodore Ts'o | 4e7434f | 2007-11-02 21:53:00 -0400 | [diff] [blame^] | 19 | git update-index --refresh --unmerged > /dev/null | 
| Uwe Zeisberger | 216b2f1 | 2006-06-16 08:48:48 +0200 | [diff] [blame] | 20 | if git diff-index HEAD | read dummy; then | 
| Ryan Anderson | 24d4975 | 2006-01-08 04:35:36 -0500 | [diff] [blame] | 21 | printf '%s' -dirty | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 22 | fi | 
| Aron Griffis | 3dce174 | 2007-11-28 16:55:44 -0500 | [diff] [blame] | 23 |  | 
|  | 24 | # All done with git | 
|  | 25 | exit | 
|  | 26 | fi | 
|  | 27 |  | 
|  | 28 | # Check for mercurial and a mercurial repo. | 
|  | 29 | if hgid=`hg id 2>/dev/null`; then | 
|  | 30 | tag=`printf '%s' "$hgid" | cut -d' ' -f2` | 
|  | 31 |  | 
|  | 32 | # Do we have an untagged version? | 
|  | 33 | if [ -z "$tag" -o "$tag" = tip ]; then | 
|  | 34 | id=`printf '%s' "$hgid" | sed 's/[+ ].*//'` | 
|  | 35 | printf '%s%s' -hg "$id" | 
|  | 36 | fi | 
|  | 37 |  | 
|  | 38 | # Are there uncommitted changes? | 
|  | 39 | # These are represented by + after the changeset id. | 
|  | 40 | case "$hgid" in | 
|  | 41 | *+|*+\ *) printf '%s' -dirty ;; | 
|  | 42 | esac | 
|  | 43 |  | 
|  | 44 | # All done with mercurial | 
|  | 45 | exit | 
| Rene Scharfe | 117a93d | 2006-01-04 20:42:03 +0100 | [diff] [blame] | 46 | fi |