blob: 0f57f24404d95fffeecfcc80beae6eb57cf95242 [file] [log] [blame]
Chris Masonb3c3da72008-07-23 12:12:13 -04001#!/bin/bash
2#
3# determine-version -- report a useful version for releases
4#
5# Copyright 2008, Aron Griffis <agriffis@n01se.net>
6# Copyright 2008, Oracle
7# Released under the GNU GPLv2
8
Chris Mason5707e3b2008-08-04 15:45:30 -04009v="v0.16"
Chris Masonb3c3da72008-07-23 12:12:13 -040010
11which hg > /dev/null
Chris Mason1a3f5d02008-07-29 16:11:35 -040012if [ -d .hg ] && [ $? == 0 ]; then
Chris Masonb3c3da72008-07-23 12:12:13 -040013 last=$(hg tags | grep -m1 -o '^v[0-9.]\+')
14
15 # now check if the repo has commits since then...
16 if [[ $(hg id -t) == $last || \
17 $(hg di -r "$last:." | awk '/^diff/{print $NF}' | sort -u) == .hgtags ]]
18 then
19 # check if it's dirty
20 if [[ $(hg id | cut -d' ' -f1) == *+ ]]; then
21 v=$last+
22 else
23 v=$last
24 fi
25 else
26 # includes dirty flag
27 v=$last+$(hg id -i)
28 fi
29fi
30
31echo "#ifndef __BUILD_VERSION" > .build-version.h
32echo "#define __BUILD_VERSION" >> .build-version.h
33echo "#define BTRFS_BUILD_VERSION \"Btrfs $v\"" >> .build-version.h
34echo "#endif" >> .build-version.h
35
36diff -q version.h .build-version.h >& /dev/null
37
38if [ $? == 0 ]; then
39 rm .build-version.h
40 exit 0
41fi
42
43mv .build-version.h version.h