-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackageInfo.g
107 lines (97 loc) · 3.86 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
#############################################################################
##
## PackageInfo.g for the package `Nilmat' Bettina Eick
##
## This is a GAP readable file. Of course you can change and remove all
## comments as you like.
##
## This file contains meta-information on the package. It is used by
## the package loading mechanism and the upgrade mechanism for the
## redistribution of the package via the GAP website.
SetPackageInfo( rec(
PackageName := "Nilmat",
Subtitle := "Computing with nilpotent matrix groups",
Version := "1.4.2",
Date := "05/08/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Detinko",
FirstNames := "Alla",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://ad271.host.cs.st-andrews.ac.uk/",
PostalAddress := Concatenation( [
"School of Computer Science\n",
"University of St Andrews\n",
#"University Road, Galway\n",
"UK" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"),
rec(
LastName := "Eick",
FirstNames := "Bettina",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
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 := "Flannery",
FirstNames := "Dane",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.maths.nuigalway.ie/~dane",
PostalAddress := Concatenation( [
"Department of Mathematics\n",
"National University of Ireland, Galway\n",
"University Road, Galway\n",
"Ireland" ] ),
Place := "Galway",
Institution := "NUI Galway")
],
Status := "accepted",
CommunicatedBy := "Derek Holt (Warwick)",
AcceptDate := "08/2007",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/nilmat",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://gap-packages.github.io/nilmat",
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/nilmat-", ~.Version ),
ArchiveFormats := ".tar.gz .tar.bz2",
AbstractHTML :=
"The <span class=\"pkgname\">Nilmat</span> package contains methods for checking whether a finitely generated matrix group over a finite field or the field of rational numbers is nilpotent, methods for computing with such nilpotent matrix groups and methods for constructing important classes of such nilpotent matrix groups.",
PackageDoc := rec(
BookName := "Nilmat",
ArchiveURLSubset := ["doc", "htm"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computation with nilpotent matrix groups",
),
Dependencies := rec(
GAP := ">=4.8",
NeededOtherPackages := [["Polenta", ">=1.0"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation("Loading Nilmat ", String( ~.Version ), "...\n"),
TestFile := "tst/testall.g",
Keywords := ["nilpotent groups", "matrix groups"],
));