aboutsummaryrefslogtreecommitdiffstats
path: root/build-root/scripts/version
blob: bf7e31551b929bb399726e65b6c388c75d2765a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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}${BLD}
  exit
fi

if [ -n "${ADD}" ]; then
  echo ${TAG}-${ADD}~${CMT}${BLD}
else
  echo ${TAG}
fi