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