-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPackageInfo.g
More file actions
105 lines (91 loc) · 3.54 KB
/
PackageInfo.g
File metadata and controls
105 lines (91 loc) · 3.54 KB
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
#############################################################################
##
## PackageInfo.g LPRES René Hartung
##
## Based on Frank Luebeck's template for PackageInfo.g.
##
SetPackageInfo( rec(
PackageName := "lpres",
Subtitle := "Nilpotent Quotients of L-Presented Groups",
Version := "1.1.1",
Date := "12/07/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Hartung",
FirstNames := "René",
IsAuthor := true,
IsMaintainer := false,
),
rec(
LastName := "Bartholdi",
FirstNames := "Laurent",
IsAuthor := false,
IsMaintainer := true,
Email := "laurent.bartholdi@gmail.com",
WWWHome := "https://www.math.uni-sb.de/ag/bartholdi",
PostalAddress := Concatenation( [
"FR Mathematik+Informatik\n",
"Universität des Saarlandes\n",
"D-66041 Saarbrücken\n",
"Germany" ] ),
Place := "Saarbrücken",
Institution := "Universität des Saarlandes"
)
],
Status := "accepted",
CommunicatedBy := "Olexandr Konovalov (St Andrews)",
AcceptDate := "09/2018",
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.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML := "The LPRES Package defines new GAP objects to work with \
L-presented groups, namely groups given by a finite generating set and a \
possibly-infinite set of relations given as iterates of finitely many \
seed relations by a finite set of endomorphisms. The package implements \
nilpotent quotient, Todd-Coxeter and Reidemeister-Schreier algorithms \
for L-presented groups.",
PackageDoc := rec(
BookName := ~.PackageName,
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := ~.Subtitle,
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation("Loading ", ~.PackageName, " ", String( ~.Version ), " ...\n"),
Dependencies := rec(
GAP := ">= 4.9",
NeededOtherPackages := [ ["polycyclic", ">= 2.5"],
["FGA", ">= 1.1.0.1"] ],
SuggestedOtherPackages := [ ["ParGAP", ">= 1.1.2" ],
["AutPGrp", ">= 1.4"],
["ACE", ">= 5.0" ] ],
ExternalConditions := [ ]
),
TestFile := "tst/testall.g",
Keywords := [ "nilpotent quotient algorithm",
"nilpotent presentations",
"finitely generated groups",
"Grigorchuk group",
"Gupta-Sidki group",
"L-presented groups",
"finite index subgroup of L-presented groups",
"coset enumeration",
"recursively presented groups",
"infinite presentations",
"commutators",
"lower central series",
"Free Engel groups", "Free Burnside groups",
"computational", "parallel computing" ]
));