File: get_version.sh

package info (click to toggle)
lcov 2.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,412 kB
  • sloc: perl: 27,615; xml: 6,982; sh: 6,977; python: 1,147; makefile: 593; cpp: 455; ansic: 167
file content (34 lines) | stat: -rwxr-xr-x 1,003 bytes parent folder | download
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"