aboutsummaryrefslogtreecommitdiffstats
path: root/nsh-plugin/packaging/scripts/version
diff options
context:
space:
mode:
Diffstat (limited to 'nsh-plugin/packaging/scripts/version')
-rwxr-xr-xnsh-plugin/packaging/scripts/version27
1 files changed, 27 insertions, 0 deletions
diff --git a/nsh-plugin/packaging/scripts/version b/nsh-plugin/packaging/scripts/version
new file mode 100755
index 0000000..84ee5db
--- /dev/null
+++ b/nsh-plugin/packaging/scripts/version
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+TAG=$(git describe | cut -d- -f1 | sed -e 's/^v//')
+ADD=$(git describe | cut -s -d- -f2)
+CMT=$(git describe --dirty --match 'v*'| cut -s -d- -f3,4)
+
+if [ -n "${BUILD_NUMBER}" ]; then
+ BLD="~b${BUILD_NUMBER}"
+fi
+
+if [ "$1" = "rpm-version" ]; then
+ echo ${TAG}
+ exit
+fi
+
+if [ "$1" = "rpm-release" ]; then
+ [ -z "${ADD}" ] && echo release && exit
+ CMT=$(git describe --dirty --match 'v*'| cut -s -d- -f3,4 | sed 's/-/_/')
+ echo ${ADD}${CMT:+~${CMT}}${BLD}
+ exit
+fi
+
+if [ -n "${ADD}" ]; then
+ echo ${TAG}-${ADD}${CMT:+~${CMT}}${BLD}
+else
+ echo ${TAG}
+fi