summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Grennan <tgrennan@vyatta.com>2007-09-17 13:48:00 -0700
committerTom Grennan <tgrennan@vyatta.com>2007-09-17 13:48:00 -0700
commit42b11e866ee4cfc20059d5a1ad36c8eda3ba1ef9 (patch)
treeda28271d10c3b3853f1f44b15dd9026f74edc5ff
parentfa8e338856c90cd72f08a873b6003c2f568f530e (diff)
downloadvyatta-op-42b11e866ee4cfc20059d5a1ad36c8eda3ba1ef9.tar.gz
vyatta-op-42b11e866ee4cfc20059d5a1ad36c8eda3ba1ef9.zip
add git VERSION reference to docs
-rw-r--r--.gitignore2
-rw-r--r--debian/docs1
-rwxr-xr-xmkversion10
3 files changed, 13 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 7a5889d..8578ae8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,5 @@
/INSTALL
/Makefile.in
/Makefile
+/VERSION
+
diff --git a/debian/docs b/debian/docs
index 50bd824..0e14f42 100644
--- a/debian/docs
+++ b/debian/docs
@@ -1,2 +1,3 @@
NEWS
README
+VERSION
diff --git a/mkversion b/mkversion
new file mode 100755
index 0000000..03c1af1
--- /dev/null
+++ b/mkversion
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+# Make GIT version reference file
+
+url=$( git repo-config --get remote.origin.url )
+test -z "$url" && url=file://$PWD
+branch=$( git-branch --no-color | sed '/^\* /!d; s/^\* //' )
+sha=$( git log --pretty=oneline --no-color -n 1 | cut -c-8 )
+
+echo "${url}#${branch}-${sha}" > VERSION