File: version-gen.sh

package info (click to toggle)
groonga 15.2.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 171,500 kB
  • sloc: ansic: 772,536; cpp: 51,530; ruby: 40,538; javascript: 10,250; yacc: 7,045; sh: 5,622; python: 2,821; makefile: 1,677
file content (32 lines) | stat: -rwxr-xr-x 623 bytes parent folder | download | duplicates (2)
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
#!/bin/sh

GRN_VERSION_SH="$(pwd)/version.sh"

case "$0" in
  */*)
    cd `dirname $0`
    ;;
esac

if test -f full_version; then
  GRN_VN=$(cat full_version)
elif test -d .git -o -f .git; then
  GRN_VN=$(git describe --abbrev=7 HEAD 2>/dev/null)
  if [ $? -ne 0 ]; then
    GRN_VN=$(cat base_version)
  fi
else
  GRN_VN=$(cat base_version)
fi

GRN_VN=$(expr "$GRN_VN" : v*'\(.*\)')

if test -r "${GRN_VERSION_SH}"; then
  GRN_VN_OLD=$(sed -E -e 's/^GRN_VERSION(_FULL)?=//' "${GRN_VERSION_SH}")
else
  GRN_VN_OLD=unset
fi

if test "$GRN_VN_OLD" != "$GRN_VN"; then
  echo "GRN_VERSION_FULL=$GRN_VN" > "${GRN_VERSION_SH}"
fi