]> jfr.im git - solanum.git/blob - ircd/version.c.SH
Avoid show_iline_prefix showing leftovers (#266)
[solanum.git] / ircd / version.c.SH
1 #!/bin/sh
2
3 spitshell=cat
4 package=solanum
5
6 echo "Extracting $package/src/version.c..."
7
8 if test -r version.c.last
9 then
10 generation=`sed -n 's/^const char \*generation = \"\(.*\)\";/\1/p' < version.c.last`
11 if test ! "$generation" ; then generation=0; fi
12 else
13 generation=0
14 fi
15
16 generation=`expr $generation + 1`
17
18 if test -n "$SOURCE_DATE_EPOCH" -a "$EXTERNAL_BUILD_TIMESTAMP" = '' ; then
19 EXTERNAL_BUILD_TIMESTAMP=$SOURCE_DATE_EPOCH
20 fi
21 if test "$EXTERNAL_BUILD_TIMESTAMP" = ''; then
22 creation=`LC_ALL=C date | \
23 awk '{if (NF == 6) \
24 { print $1 " " $2 " " $3 " " $6 " at " $4 " " $5 } \
25 else \
26 { print $1 " " $2 " " $3 " " $7 " at " $4 " " $5 " " $6 }}'`
27 else
28 creation="$EXTERNAL_BUILD_TIMESTAMP"
29 fi
30
31 $spitshell >version.c <<!SUB!THIS!
32 /*
33 * $package - Internet Relay Chat, src/version.c
34 * Copyright (C) 1990 Chelsea Ashley Dyerman
35 *
36 * This program is free software; you can redistribute it and/or modify
37 * it under the terms of the GNU General Public License as published by
38 * the Free Software Foundation; either version 1, or (at your option)
39 * any later version.
40 *
41 * This program is distributed in the hope that it will be useful,
42 * but WITHOUT ANY WARRANTY; without even the implied warranty of
43 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
44 * GNU General Public License for more details.
45 *
46 * You should have received a copy of the GNU General Public License
47 * along with this program; if not, write to the Free Software
48 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
49 */
50
51 /*
52 * This file is generated by version.c.SH. Any changes made will go away.
53 */
54
55 #include "patchlevel.h"
56 #include "serno.h"
57 #include "stdinc.h"
58
59 const char *generation = "$generation";
60 const char *creation = "$creation";
61 const char *ircd_version = PATCHLEVEL;
62 const char *serno = SERNO;
63 const unsigned long int datecode = DATECODE;
64
65 const char *infotext[] =
66 {
67 "$package --",
68 "Based on the original code written by Jarkko Oikarinen",
69 "Copyright (c) 1988-1991 University of Oulu, Computing Center",
70 "Copyright (c) 1996-2001 Hybrid Development Team",
71 "Copyright (c) 2002-2009 ircd-ratbox Development Team",
72 "Copyright (c) 2005-2016 charybdis development team",
73 " ",
74 "This program is free software; you can redistribute it and/or",
75 "modify it under the terms of the GNU General Public License as",
76 "published by the Free Software Foundation; either version 2, or",
77 "(at your option) any later version.",
78 " ",
79 !SUB!THIS!
80
81 sed 's/^$/ /;s/.*/\ "&\",/' ../CREDITS >> version.c
82 $spitshell >>version.c <<!SUB!THISTOO!
83 " ",
84 NULL,
85 };
86 !SUB!THISTOO!