-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathversion.c.SH
executable file
·128 lines (118 loc) · 4.9 KB
/
version.c.SH
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/bin/sh
spitshell=cat
package=IRC
echo "Extracting $package/src/version.c..."
if test -r version.c.last
then
generation=`sed -n 's/^char \*generation = \"\(.*\)\";/\1/p' < version.c.last`
if test ! "$generation" ; then generation=0; fi
else
generation=0
fi
generation=`expr $generation + 1`
uname=`uname -a`
creation=`date | \
awk '{if (NF == 6) \
{ print $1 " " $2 " " $3 " " $6 " at " $4 " " $5 } \
else \
{ print $1 " " $2 " " $3 " " $7 " at " $4 " " $5 " " $6 }}'`
$spitshell >version.c <<!SUB!THIS!
/*
* IRC - Internet Relay Chat, src/version.c
* Copyright (C) 1990 Chelsea Ashley Dyerman
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* This file is generated by version.c.SH. Any changes made will go away.
*/
#include "struct.h"
#include "patchlevel.h"
char *generation = "$generation";
char *creation = "$creation";
char version[128];
char *infotext[] =
{
"$package --",
"Based on the original code written by Jarkko Oikarinen",
"Copyright 1988, 1989, 1990, 1991 University of Oulu, Computing Center",
"",
"This program is free software; you can redistribute it and/or",
"modify it under the terms of the GNU General Public License as",
"published by the Free Software Foundation; either version 1, or",
"(at your option) any later version.",
"",
"Regular expression support is provided by the PCRE library package,",
"which is open source software, written by Philip Hazel, and copyright",
"by the University of Cambridge, England.",
"",
"If you encouter a serious security related bug, please mail [email protected]",
"Send all other bug reports and inquiries to [email protected]",
"",
"The following people currently compose the bahamut team and",
"actively maintain the bahamut codebase:",
"Holbrook Holbrook Bunting [email protected]",
"Kobi_S Kobi Shmueli [email protected]",
"Quension Trevor Talbot [email protected]",
"RuneB Ned T. Crigler [email protected]",
"skill Emilio A. Escobar [email protected]",
"xPsycho Ryan Smith [email protected]",
"",
"The following people have contributed code or support",
"to the bahamut team:",
"aClient Diane Bruce [email protected]",
"Dakal David Knepper [email protected]",
"Dalvenjah Sven Nielsen [email protected]",
"epiphani Aaron Wiebe [email protected]",
"lucas Lucas Madar [email protected]",
"MSofty Mark Salerno [email protected]",
"Raistlin_Majere Jason Slagle [email protected]",
"Rakarra Ian Westcott [email protected]",
"sedition David Parton [email protected]",
"White_Dragon Chip Norkus [email protected]",
"",
"The following people have contributed ideas or testing to the",
"bahamut project:",
"driz David Friedman [email protected]",
"drone Mike Wilson [email protected]",
"habit Melinda Thompson [email protected]",
"Kevin Kevin Turner [email protected]",
"",
"",
"Developers and Contributors for previous versions:",
"Chris A. Bongaarts Chris Behrens Diane Bruce",
"Johannes Erdfelt Roger Espel Llima Jon Lusky",
"Michael Pearce Brian Kraemer Joan Touzet",
"Chris Portman Keith Fralick Sam Noble",
"Taner Halicioglu Chris Behrens Darren Reed",
"Markku Savela Greg Lindahl Jarkko Oikarinen",
"Armin Gruner Matthew Green Chuck Kane",
"Matt Lyle Vesa Ruokonen Nicolas PIOCH",
"Stellan Klebom Dan Goodwin Mike Bolotski",
"Ian Frechette Markku Jarvinen Kimmo Suominen",
"Jeff Trim Vijay Subramaniam Karl Kleinpaste",
"Bill Wisner Tom Davis Hugo Calendar",
"Tom Hopkins Stephen van den Berg",
"Bo Adler Michael Sandrof Jon Solomon",
"Jan Peterson Helen Rose Paul Graham",
"",
"Thanks also goes to those persons not mentioned here who have added",
"their advice, opinions, and code to IRC.",
"Thanks also to those who provide the kind sys admins who let me and",
"others continue to develop IRC.",
"",
0,
};
!SUB!THIS!