forked from gap-packages/polycyclic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackageInfo.g
149 lines (132 loc) · 4.83 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
#############################################################################
##
#W PackageInfo.g GAP 4 Package `polycyclic' Bettina Eick
#W Werner Nickel
#W Max Horn
##
SetPackageInfo( rec(
PackageName := "Polycyclic",
Subtitle := "Computation with polycyclic groups",
Version := "2.17dev",
Date := "25/07/2020", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec( LastName := "Eick",
FirstNames := "Bettina",
IsAuthor := true,
IsMaintainer := true,
Email := "beick@tu-bs.de",
WWWHome := "http://www.iaa.tu-bs.de/beick",
PostalAddress := Concatenation(
"Institut Analysis und Algebra\n",
"TU Braunschweig\n",
"Universitätsplatz 2\n",
"D-38106 Braunschweig\n",
"Germany" ),
Place := "Braunschweig",
Institution := "TU Braunschweig"
),
rec( LastName := "Nickel",
FirstNames := "Werner",
IsAuthor := true,
IsMaintainer := false,
# MH: Werner rarely (if at all) replies to emails sent to this
# old email address. To discourage users from sending bug reports
# there, I have disabled it here.
#Email := "nickel@mathematik.tu-darmstadt.de",
WWWHome := "http://www.mathematik.tu-darmstadt.de/~nickel/",
),
rec( LastName := "Horn",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := true,
Email := "mhorn@rptu.de",
WWWHome := "https://www.quendi.de/math",
PostalAddress := Concatenation(
"Fachbereich Mathematik\n",
"RPTU Kaiserslautern-Landau\n",
"Gottlieb-Daimler-Straße 48\n",
"67663 Kaiserslautern\n",
"Germany" ),
Place := "Kaiserslautern, Germany",
Institution := "RPTU Kaiserslautern-Landau"
)
],
Status := "accepted",
CommunicatedBy := "Charles Wright (Eugene)",
AcceptDate := "01/2004",
PackageWWWHome := "https://gap-packages.github.io/polycyclic/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/polycyclic",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/polycyclic-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML := Concatenation(
"This package provides various algorithms for computations ",
"with polycyclic groups defined by polycyclic presentations."
),
PackageDoc := rec(
BookName := "polycyclic",
ArchiveURLSubset := [ "doc" ],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computation with polycyclic groups",
),
Dependencies := rec(
GAP := ">= 4.10",
NeededOtherPackages := [["alnuth", "3.0"],
["autpgrp","1.6"]],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := [
"finitely generated nilpotent groups",
"metacyclic groups",
"collection",
"consistency check",
"solvable word problem",
"normalizers","centralizers", "intersection",
"conjugacy problem",
"subgroups of finite index",
"torsion subgroup", "finite subgroups",
"extensions",
"complements",
"cohomology groups",
"orbit-stabilizer algorithms",
"fitting subgroup",
"center",
"infinite groups",
"polycyclic generating sequence",
"polycyclic presentation",
"polycyclic group",
"polycyclically presented group",
"polycyclic presentation",
"maximal subgroups",
"Schur cover",
"Schur multiplicator",
],
AutoDoc := rec(
TitlePage := rec(
Copyright := """<Index>License</Index>
©right; 2003-2018 by Bettina Eick, Max Horn and Werner Nickel<P/>
The &Polycyclic; package is free software;
you can redistribute it and/or modify it under the terms of the
<URL Text="GNU General Public License">http://www.fsf.org/licenses/gpl.html</URL>
as published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.""",
Acknowledgements := """
We appreciate very much all past and future comments, suggestions and
contributions to this package and its documentation provided by &GAP;
users and developers.""",
)
),
));