Use the contents of RELEASE as version fallback instead of 'UNKNOWN'
authorReinhard Tartler <siretart@tauware.de>
Sun, 19 Jun 2011 17:51:20 +0000 (19:51 +0200)
committerReinhard Tartler <siretart@tauware.de>
Sun, 19 Jun 2011 17:54:07 +0000 (19:54 +0200)
This makes binaries produced by source tarballs identify themselves with
the version number of the corresponding release series, unless overriden
by a 'VERSION' file.

RELEASE [new file with mode: 0644]
version.sh

diff --git a/RELEASE b/RELEASE
new file mode 100644 (file)
index 0000000..eb49d7c
--- /dev/null
+++ b/RELEASE
@@ -0,0 +1 @@
+0.7
index 6ec2b25..7911e46 100755 (executable)
@@ -5,7 +5,7 @@ revision=$(cd "$1" && git describe --always 2> /dev/null)
 test "$revision" && revision=git-$revision
 
 # no revision number found
-test "$revision" || revision=UNKNOWN
+test "$revision" || revision=$(cd "$1" && cat RELEASE 2> /dev/null)
 
 # releases extract the version number from the VERSION file
 version=$(cd "$1" && cat VERSION 2> /dev/null)