Merge branch 'master' into IOMultiplexer
[NeonServV5.git] / src / version.sh
1 #! /bin/sh
2 echo "Extracting version.c ..."
3
4 if test -r version.c
5 then
6    compilation=`sed -n 's/^const char \*compilation = \"\(.*\)\";/\1/p' < version.c`
7    if test ! "$compilation" ; then compilation=0; fi
8 else
9    compilation=0
10 fi
11
12 compilation=`expr $compilation + 1`
13
14 creation=`date | \
15 awk '{if (NF == 6) \
16          { print $1 " " $2 " " $3 " " $6 " at " $4 " " $5 } \
17 else \
18          { print $1 " " $2 " " $3 " " $7 " at " $4 " " $5 " " $6 }}'`
19
20 codelines=`find . -type f -regex '\./.*\.h' -or -regex '\./.*\.c' |xargs cat|wc -l`
21
22
23 git_revision=`git rev-list -n 1 --pretty="format:%h" --header master | grep '^[0-9a-f]*$'`
24 if test "x$git_revision" = "x" ; then
25   git_revision="0"
26   git_commitcount="0"
27 else
28   git_commitcount=`git rev-list --oneline --header master | wc -l | sed "s/[ \t]//g"`
29   git_revision="git-$git_commitcount-$git_revision"
30 fi
31
32
33 /bin/cat > version.c <<!SUB!THIS!
34 /* version.c - NeonServ v5.5
35  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
36  * 
37  * This program is free software: you can redistribute it and/or modify
38  * it under the terms of the GNU General Public License as published by
39  * the Free Software Foundation, either version 3 of the License, or
40  * (at your option) any later version.
41  * 
42  * This program is distributed in the hope that it will be useful,
43  * but WITHOUT ANY WARRANTY; without even the implied warranty of
44  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
45  * GNU General Public License for more details.
46  * 
47  * You should have received a copy of the GNU General Public License 
48  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
49  */
50 //Auto generated file!
51
52 #include "version.h"
53
54 const char *compilation = "$compilation";
55 const char *creation = "$creation";
56 const char *revision = "$git_revision";
57 const char *codelines = "$codelines";
58
59 const int patchlevel = ($git_commitcount ? ($git_commitcount - VERSION_PATCHLEVEL) : 0);
60
61 const char *get_compilation() {
62     return compilation;
63 }
64
65 const char *get_creation() {
66     return creation;
67 }
68
69 const char *get_revision() {
70     return revision;
71 }
72
73 const char *get_codelines() {
74     return codelines;
75 }
76
77 const int get_patchlevel() {
78     return patchlevel;
79 }
80
81 !SUB!THIS!
82