aboutsummaryrefslogtreecommitdiffstats
path: root/nsh-plugin/packaging/scripts/version
diff options
context:
space:
mode:
authorEd Warnicke <eaw@cisco.com>2016-09-13 20:04:28 +0000
committerEd Warnicke <eaw@cisco.com>2016-10-04 11:26:31 -0700
commit24bb3c191a66d20624d550f9ea392f2873199e88 (patch)
tree7a5798ca9aaa8eb938ba4156c780ad711deb72d8 /nsh-plugin/packaging/scripts/version
parentde3e03905b12cffd3f4b9824c4175581b313158e (diff)
nsh-plugin rpm packaging
Change-Id: I5ccacfa9e09c88f84ac5b5cb303ba4d170f3743d Signed-off-by: Ed Warnicke <eaw@cisco.com> Signed-off-by: Ed Warnicke <hagbard@gmail.com>
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