forked from Nogesma/xrootd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
genversion.sh
executable file
·63 lines (53 loc) · 1.32 KB
/
genversion.sh
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env bash
# This script no longer generates XrdVersion.hh, but just
# prints the version using the same strategy as in the module
# XRootDVersion.cmake. The script will first try to use a custom
# version set with the option --version or via the environment
# variable XRDVERSION, then read the VERSION file and if that is
# not expanded by git, git describe is used. If a bad version is
# set for any reason, a fallback version is used based on a date.
function usage()
{
cat 1>&2 <<-EOF
Usage:
$(basename $0) [--help|--version]
--help prints this message
--print-only ignored, used for backward compatibility
--version VERSION sets a custom version
EOF
}
SRC=$(dirname $0)
VF=${SRC}/VERSION
if [[ -n "${XRDVERSION}" ]]; then
VERSION=${XRDVERSION};
elif [[ -r "${VF}" ]] && grep -vq "Format:" "${VF}"; then
VERSION=$(sed -e 's/-g/+g/' "${VF}")
elif git -C ${SRC} describe >/dev/null 2>&1; then
VERSION=$(git -C ${SRC} describe | sed -e 's/-g/+g/')
else
VERSION="v5.7-rc$(date +%Y%m%d)"
fi
while [[ $# -gt 0 ]]; do
case $1 in
--help)
usage
exit 0
;;
--print-only)
shift
;;
--version)
shift
if [[ $# == 0 ]]; then
echo "error: --version parameter needs an argument" 1>&2
fi
VERSION=$1
shift
;;
*)
echo "warning: unknown option: $1" 1>&2
shift
;;
esac
done
printf "${VERSION}"