File: get_version.sh

package info (click to toggle)
lcov 2.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,464 kB
  • sloc: perl: 27,911; sh: 7,320; xml: 6,982; python: 1,152; makefile: 597; cpp: 520; ansic: 176
file content (34 lines) | stat: -rwxr-xr-x 1,003 bytes parent folder | download | duplicates (2)
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
28
29
30
31
32
33
34
#!/usr/bin/env bash
#
# Usage: get_version.sh --version|--release|--full
#
# Print lcov version or release information as provided by Git, .version
# or a fallback.
DIRPATH=$(dirname "$0")
TOOLDIR=$(cd "$DIRPATH" >/dev/null ; pwd)
GITVER=$(cd "$TOOLDIR" ; git describe --tags 2>/dev/null)

if [ -z "$GITVER" ] ; then
        # Get version information from file
        if [ -e "$TOOLDIR/../.version" ] ; then
                source "$TOOLDIR/../.version"
        fi
else
        # Get version information from git
        FULL=${GITVER#v}
        VERSION=${GITVER%%-*}
        VERSION=${VERSION#v}
        if [ "${GITVER#*-}" != "$GITVER" ] ; then
                RELEASE=${GITVER#*-}
                RELEASE=${RELEASE/-/.}
        fi
fi

# Fallback
[ -z "$VERSION" ] && VERSION="2.4"
[ -z "$RELEASE" ] && RELEASE="beta"
[ -z "$FULL" ]    && FULL="$VERSION-$RELEASE"

[ "$1" == "--version" ] && echo -n "$VERSION"
[ "$1" == "--release" ] && echo -n "$RELEASE"
[ "$1" == "--full"    ] && echo -n "$FULL"