-
Notifications
You must be signed in to change notification settings - Fork 86
/
get-version.sh
38 lines (33 loc) · 1.16 KB
/
get-version.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
#!/bin/sh
version=1.3.2-head
# This script outputs a version number for this project to stdout.
# - if $SCRYPT_VERSION is given, it is used.
# - otherwise, it uses ${version}.
# - if there is a ".git/" directory, it will attempt to get a version number
# from `git describe` in the form 1.2.0-238-g0a25a7c, where the middle value
# is the number of commits since the 1.2.0 tag.
# Use $SCRYPT_VERSION if it exists.
if [ -n "${SCRYPT_VERSION}" ]; then
# Do not use \n; that confuses autoconf.
printf "%s" "${SCRYPT_VERSION}"
exit 0
fi
# Get a version number from git, if it exists.
if git rev-parse 2>/dev/null; then
# Get a version string from the latest git tag.
if version_git=$( git describe --tags --match '[[:digit:]].*' ) \
2>/dev/null ; then
version_decapitated=$( echo "${version}" | sed "s/-head//" )
# Check that the beginning of this tag matches the version.
case ${version_git} in
"${version_decapitated}"*)
# If so, use that version string.
version=${version_git};;
*)
printf "git tag does not match version\n" 1>&2
exit 1;;
esac
fi
fi
# Output the version to stdout. Do not use \n; that confuses autoconf.
printf "%s" "${version}"