summaryrefslogtreecommitdiffstats
path: root/git-version-gen
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2022-04-13 00:23:49 +0200
committerGravatar Nikias Bassen2022-04-13 00:23:49 +0200
commit86c53b45c26e68b49b8cc7fc2ba26019f5e00f29 (patch)
treefe573bd26abf8f5c4ec8dcb7726e0586fd639f64 /git-version-gen
parent8f7afa0c45bc9b70b8f5dd186962f3905903f683 (diff)
downloadidevicerestore-86c53b45c26e68b49b8cc7fc2ba26019f5e00f29.tar.gz
idevicerestore-86c53b45c26e68b49b8cc7fc2ba26019f5e00f29.tar.bz2
autoconf: Automatically derive version number from latest git tag
with a fallback to get the version string from a .tarball-version file
Diffstat (limited to 'git-version-gen')
-rwxr-xr-xgit-version-gen19
1 files changed, 19 insertions, 0 deletions
diff --git a/git-version-gen b/git-version-gen
new file mode 100755
index 0000000..3eb6a42
--- /dev/null
+++ b/git-version-gen
@@ -0,0 +1,19 @@
+#!/bin/sh
+SRCDIR=`dirname $0`
+if test -n "$1"; then
+ VER=$1
+else
+ if test -d "${SRCDIR}/.git" && test -x "`which git`" ; then
+ git update-index -q --refresh
+ if ! VER=`git describe --tags --dirty 2>/dev/null`; then
+ COMMIT=`git rev-parse --short HEAD`
+ DIRTY=`git diff --quiet HEAD || echo "-dirty"`
+ VER=`sed -n '1,/RE/s/Version \(.*\)/\1/p' ${SRCDIR}/NEWS`-git-${COMMIT}${DIRTY}
+ fi
+ else
+ if test -f "${SRCDIR}/.tarball-version"; then
+ VER=`cat "${SRCDIR}/.tarball-version"`
+ fi
+ fi
+fi
+printf %s "$VER"