blob: 1b446b42f31910f35b35e6e121a165a9149ef2a0 (
plain) (
blame)
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
|
#!/bin/sh
#
# Author: Mike Beattie <mike@ethernal.org>
#
# Script to parse result from git describe, and push values into
# BuildInfo.java for use within altosdroid (to display the current
# version and build information, primarily).
#
srcdir=app/src/main/java/org/altusmetrum/AltosDroid
infile=${srcdir}/BuildInfo.java.in
outfile=${srcdir}/BuildInfo.java
. ../src/Makedefs
version=$VERSION
branch=''
commitnum=''
commithash=''
builddate=$(date "+%Y-%m-%d")
buildtime=$(date "+%H:%M")
buildtz=$(date "+%z")
describe=$(git describe --match "$version" --long --always 2>/dev/null || echo '')
if [ -n "$describe" ]; then
branch=$(git branch | sed -ne 's/^\* //p')
commitdetails=$(echo $describe | sed -e "s/^$version-//")
commitnum=$(echo $commitdetails | cut -s -d- -f1)
commithash=$(echo $commitdetails | cut -d- -f2)
fi
echo "Version $describe, built on $builddate $buildtime $buildtz"
sed -e "s/@VERSION@/$version/" \
-e "s/@DESCRIBE@/$describe/" \
-e "s/@BRANCH@/$branch/" \
-e "s/@COMMITNUM@/$commitnum/" \
-e "s/@COMMITHASH@/$commithash/" \
-e "s/@BUILDDATE@/$builddate/" \
-e "s/@BUILDTIME@/$buildtime/" \
-e "s/@BUILDTZ@/$buildtz/" \
$infile > $outfile
|