forked from gap-packages/recog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
316 lines (299 loc) · 11 KB
/
PackageInfo.g
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
#############################################################################
##
## PackageInfo.g for the package `recog'
##
RecogsFunnyNameFormatterFunction := function(st)
if Length(st) = 0 then
return st;
else
return Concatenation(" (",st,")");
fi;
end;
RecogsFunnyWWWURLFunction := function(re)
if IsBound(re.WWWHome) then
return re.WWWHome;
else
return "";
fi;
end;
SetPackageInfo( rec(
PackageName := "recog",
Subtitle := "A collection of group recognition methods",
Version := "1.2.5",
Date := "08/03/2016", # dd/mm/yyyy format
## Information about authors and maintainers.
Persons := [
rec(
LastName := "Neunhöffer",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www-groups.mcs.st-and.ac.uk/~neunhoef",
PostalAddress := Concatenation( [
"Gustav-Freytag-Straße 40\n",
"50354 Hürth\n",
"Germany" ] ),
#Place := "St Andrews",
#Institution := "University of St Andrews"
),
rec(
LastName := "Seress",
FirstNames := "Ákos",
IsAuthor := true,
IsMaintainer := false,
),
rec(
LastName := "Ankaralioglu",
FirstNames := "Nurullah",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
),
rec(
LastName := "Brooksbank",
FirstNames := "Peter",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www.facstaff.bucknell.edu/pbrooksb/",
PostalAddress := Concatenation( [
"Peter A. Brooksbank\n",
"Mathematics Department\n",
"Bucknell University\n",
"Lewisburg, PA 17837\n",
"USA" ] ),
Place := "Lewisburg",
Institution := "Bucknell University"
),
rec(
LastName := "Celler",
FirstNames := "Frank",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www.celler.de/",
Place := "Aachen",
Institution := "Lehrstuhl D fuer Mathematik, RWTH Aachen",
),
rec(
LastName := "Howe",
FirstNames := "Stephen",
IsAuthor := true,
IsMaintainer := false,
PostalAddress := "Unknown",
),
rec(
LastName := "Law",
FirstNames := "Maska",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
#WWWHome := "http://www.maths.uwa.edu.au/~maska/",
PostalAddress := Concatenation( [
"Maska Law\n",
"University of Western Australia\n",
"School of Mathematics and Statistics\n",
"35 Stirling Highway\n",
"Crawley 6009\n",
"Western Australia" ] ),
Place := "Perth",
Institution := "University of Western Australia"
),
rec(
LastName := "Linton",
FirstNames := "Steve",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www-circa.mcs.st-and.ac.uk/~sal/",
PostalAddress := Concatenation( [
"School of Computer Science\n",
"Jack Cole Building\n",
"North Haugh\n",
"St Andrews, Fife KY16 9SX\n",
"Scotland, UK" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Malle",
FirstNames := "Gunter",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www.mathematik.uni-kl.de/~malle/",
Place := "Kaiserslautern",
Institution := "Universitaet Kaiserslautern",
),
rec(
LastName := "Niemeyer",
FirstNames := "Alice",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www.maths.uwa.edu.au/~alice/",
PostalAddress := Concatenation( [
"Alice C. Niemeyer\n",
"University of Western Australia\n",
"School of Mathematics and Statistics\n",
"35 Stirling Highway\n",
"Crawley 6009\n",
"Western Australia" ] ),
Place := "Perth",
Institution := "University of Western Australia"
),
rec(
LastName := "O'Brien",
FirstNames := "Eamonn",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www.math.auckland.ac.nz/~obrien/",
Place := "Auckland",
Institution := "University of Auckland",
),
rec(
LastName := "Roney-Dougal",
FirstNames := "Colva M.",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www-groups.mcs.st-and.ac.uk/~colva",
PostalAddress := Concatenation( [
"School of Mathematics and Statistics\n",
"Mathematical Institute\n",
"North Haugh\n",
"St Andrews, Fife KY16 9SS\n",
"Scotland, UK" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.quendi.de/math",
PostalAddress := Concatenation(
"AG Algebra\n",
"Mathematisches Institut\n",
"Justus-Liebig-Universität Gießen\n",
"Arndtstraße 2\n",
"35392 Gießen\n",
"Germany" ),
Place := "Gießen",
Institution := "Justus-Liebig-Universität Gießen"
),
],
## Status information. Currently the following cases are recognized:
## "accepted" for successfully refereed packages
## "deposited" for packages for which the GAP developers agreed
## to distribute them with the core GAP system
## "dev" for development versions of packages
## "other" for all other packages
##
# Status := "accepted",
Status := "deposited",
## You must provide the next two entries if and only if the status is
## "accepted" because is was successfully refereed:
# format: 'name (place)'
# CommunicatedBy := "Mike Atkinson (St. Andrews)",
#CommunicatedBy := "",
# format: mm/yyyy
# AcceptDate := "08/1999",
#AcceptDate := "",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", ~.PackageName ),
README_URL := Concatenation( ~.PackageWWWHome, "/README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz .tar.bz2",
## Here you must provide a short abstract explaining the package content
## in HTML format (used on the package overview Web page) and an URL
## for a Webpage with more detailed information about the package
## (not more than a few lines, less is ok):
## Please, use '<span class="pkgname">GAP</span>' and
## '<span class="pkgname">MyPKG</span>' for specifing package names.
##
AbstractHTML :=
"<b>Warning:</b> This package is still under development and \
this version is to be considered a working, but preliminary one. <p/> \
This packages contains a collection of methods for the \
constructive recognition of groups. It is mostly intended for \
permutation groups, matrix groups and projective groups.",
PackageDoc := rec(
BookName := "recog",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "A collection of group recognition methods",
),
Dependencies := rec(
GAP := ">=4.6.3",
NeededOtherPackages := [
["GAPDoc", ">= 1.2"],
["Forms", ">= 1.2"],
["genss", ">= 1.3"],
["Orb", ">= 3.4"],
["FactInt", ">= 1.5.2"],
["AtlasRep", ">= 1.4.0"],
["recogbase", ">= 1.2.3.1"],
],
SuggestedOtherPackages := [],
ExternalConditions := []
),
## The LoadPackage mechanism can produce a default banner from the info
## in this file. If you are not happy with it, you can provide a string
## here that is used as a banner. GAP decides when the banner is shown and
## when it is not shown. *optional* (note the ~-syntax in this example)
BannerString := Concatenation(
"----------------------------------------------------------------------",
"-------\n",
"Loading recog ", ~.Version, " - methods for constructive recognition\n\n",
"by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName,
" (", ~.Persons[1].WWWHome, ") and\n",
" ", ~.Persons[2].FirstNames, " ", ~.Persons[2].LastName,
"\n",
"with contributed code by:\n",
Concatenation(Concatenation(List(~.Persons{[3..Length(~.Persons)-1]},
p->[" ",p.FirstNames," ",p.LastName,
RecogsFunnyNameFormatterFunction(
RecogsFunnyWWWURLFunction(p)),",\n"]))),
" and ",~.Persons[Length(~.Persons)].FirstNames," ",
~.Persons[Length(~.Persons)].LastName,
RecogsFunnyNameFormatterFunction(
RecogsFunnyWWWURLFunction(~.Persons[Length(~.Persons)])),".\n",
"-----------------------------------------------------------------------",
"------\n"
),
AvailabilityTest := ReturnTrue,
## *Optional*, but recommended: path relative to package root to a file which
## contains as many tests of the package functionality as sensible.
#TestFile := "tst/TestAll.g",
## Currently, due to the Monte-Carlo nature of our algorithms and other
## technical details, this is not a proper GAP test file.
## *Optional*: Here you can list some keyword related to the topic
## of the package.
Keywords := ["matrix group recognition", "group recognition", "methods"],
AutoDoc := rec(
TitlePage := rec(
Copyright := Concatenation(
"©right; 2005-2014 by Max Neunhöffer and Ákos Seress<P/>\n",
"\n",
"This package may be distributed under the terms and conditions of the\n",
"GNU Public License Version 3 or (at your option) any later version.\n"
),
)
),
));
Unbind(RecogsFunnyNameFormatterFunction);
Unbind(RecogsFunnyWWWURLFunction);