]> git.ipfire.org Git - thirdparty/pdns.git/blob - build-aux/gen-version
Merge pull request #3095 from pieterlexis/alpha-test
[thirdparty/pdns.git] / build-aux / gen-version
1 #!/bin/sh
2 VERSION="unknown"
3
4 DIRTY=""
5 git status | grep -q clean || DIRTY='.dirty'
6
7 # Special environment variable to signal that we are building a release, as this
8 # has condequenses for the version number.
9 if [ "${IS_RELEASE}" = "YES" ]; then
10 TAG="$(git describe --tags --exact-match 2> /dev/null | cut -d- -f 2-)"
11 if [ -n "${TAG}" ]; then
12 # We're on a tag
13 echo "${TAG}${DIRTY}" | tee .version
14 exit 0
15 fi
16 echo 'This is not a tag, either tag this commit or do not set $IS_RELEASE' >&2
17 exit 1
18 fi
19
20 #
21 # Generate the version number based on the branch
22 #
23 if [ ! -z "$(git rev-parse --abbrev-ref HEAD 2> /dev/null)" ]; then
24 if $(git rev-parse --abbrev-ref HEAD | grep -q 'rel/'); then
25 REL_TYPE="$(git rev-parse --abbrev-ref HEAD | cut -d/ -f 2 | cut -d- -f 1)"
26 VERSION="$(git describe --match=${REL_TYPE}-* --dirty=.dirty | cut -d- -f 2-)"
27 else
28 GIT_VERSION=$(git show --no-patch --format=format:%h HEAD)
29 BRANCH=".$(git rev-parse --abbrev-ref HEAD | perl -p -e 's/-//g;')"
30 [ "${BRANCH}" = ".master" ] && BRANCH=''
31 VERSION="0.0${BRANCH}.${PDNS_BUILD_NUMBER}g${GIT_VERSION}${DIRTY}"
32 fi
33 echo "$VERSION" > .version
34 elif [ -f .version ]; then
35 VERSION="$(cat .version)"
36 fi
37
38 echo $VERSION