-
Notifications
You must be signed in to change notification settings - Fork 3
/
version.sh
executable file
·57 lines (52 loc) · 1.84 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env bash
#
# version.sh: Create a version string for use by configure.ac
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
version=
datefmt='%Y.%m.%d'
GIT_DIR=$(dirname "${0}")/.git/
export GIT_DIR
if head="$(git rev-parse --short=8 --verify HEAD 2>/dev/null)"; then
suffix=''
# Add a '-dirty' suffix for uncommitted changes.
if git diff-index HEAD | read -r dummy; then
suffix='-dirty'
fi
if tag="$(git describe --tags --exact-match 2>/dev/null)"; then
# use a tag; remove any 'v' prefix from v<VERSION> tags
tag="${tag#v}"
version="$(printf "%s%s" "${tag}" "${suffix}")"
else
# Use the git commit revision for the package version, and add
# a date prefix for easy comparisons.
date="$(git log --pretty=format:"%ct" -1 HEAD)"
version="$(printf "%($datefmt)T.g%s%s" "${date}" "${head}" "${suffix}")"
fi
else
# Check if a specific version is set, eg: by buildroot
if [ -n "${PACKAGE_VERSION}" ]; then
# Full git hash
len="$(echo -n "${PACKAGE_VERSION}" | wc -c)"
if [[ ${len} == 40 ]]; then
version="$(echo -n "${PACKAGE_VERSION}" | sed 's/^\([0-9a-f]\{7\}\).*/\1/;')"
else
version="${PACKAGE_VERSION}"
fi
else
# Default to current date and time.
version="$(date +dev.${datefmt})"
fi
fi
echo "${version}"