3 # mkversion.sh - extract version string from git branch
5 # Copyright (C) Amitay Isaacs 2012
7 # This program is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by the Free
9 # Software Foundation; either version 3 of the License, or (at your option)
12 # This program is distributed in the hope that it will be useful, but WITHOUT
13 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 # You should have received a copy of the GNU General Public License along with
18 # this program; if not, see <http://www.gnu.org/licenses/>.
22 # Common code to generate CTDB version string
27 if [ -z "$OUTPUT" ]; then
28 OUTPUT
="include/ctdb_version.h"
34 # We use tags and determine the version, as follows:
35 # ctdb-0.9.1 (First release of 0.9).
36 # ctdb-0.9.23 (23rd minor release of the 112 version)
38 # If we're not directly on a tag, this is a devel release; we append
39 # .0.<patchnum>.<checksum>.devel to the release.
40 if [ -z "$VERSION" ]; then
42 TAG
=`git describe --match "samba-*"`
47 *-*-g*) # 0.9-168-ge6cf0e8
48 # Not exactly on tag: devel version.
49 VERSION
=`echo "$TAG" | sed 's/\([^-]\+\)-\([0-9]\+\)-\(g[0-9a-f]\+\)/\1.0.\2.\3.devel/'`
53 # An actual release version
60 echo Invalid tag
"$TAG" >&2
67 /* This file is auto-genrated by packaging/mkversion.sh */
69 #define CTDB_VERSION_STRING "$VERSION"
73 echo "$VERSION $RELEASE"