e89f996b4063348f1230d8557b2035c1c1f04f4f
[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 svn_revision=`svn info | grep Revision | grep -o -E '[0-9]+'`
23 if test "x$svn_revision" = "x" ; then
24   svn_revision=`git log -n 1 --pretty="format:%h"`
25   if test "x$svn_revision" = "x" ; then
26     svn_revision="0"
27   else
28     git_commitcount=`git rev-list --all --no-merges | wc -l | sed "s/[ \t]//g"`
29     svn_revision="git-$git_commitcount-$svn_revision"
30   fi
31 else
32   svn_revision="svn-$svn_revision"
33 fi
34
35
36 /bin/cat > version.c <<!SUB!THIS!
37 /* version.c - NeonServ v5.1
38  * Copyright (C) 2011  Philipp Kreil (pk910)
39  * 
40  * This program is free software: you can redistribute it and/or modify
41  * it under the terms of the GNU General Public License as published by
42  * the Free Software Foundation, either version 3 of the License, or
43  * (at your option) any later version.
44  * 
45  * This program is distributed in the hope that it will be useful,
46  * but WITHOUT ANY WARRANTY; without even the implied warranty of
47  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
48  * GNU General Public License for more details.
49  * 
50  * You should have received a copy of the GNU General Public License 
51  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
52  */
53 //Auto generated file!
54
55 #include "version.h"
56
57 const char *compilation = "$compilation";
58 const char *creation = "$creation";
59 const char *revision = "$svn_revision";
60 const char *codelines = "$codelines";
61
62 !SUB!THIS!
63