-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackageInfo.g
More file actions
78 lines (66 loc) · 2.84 KB
/
PackageInfo.g
File metadata and controls
78 lines (66 loc) · 2.84 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
#############################################################################
##
#W PackageInfo.g GAP 4 package 'Cubefree' Heiko Dietrich
##
##
## Based on Frank Luebeck's template for PackageInfo.g.
##
SetPackageInfo( rec(
PackageName := "Cubefree",
Subtitle := "Constructing the Groups of a Given Cubefree Order",
Version := "1.21",
Date := "29/08/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Dietrich",
FirstNames := "Heiko",
IsAuthor := true,
IsMaintainer := true,
Email := "heiko.dietrich@monash.edu",
WWWHome := "http://users.monash.edu.au/~heikod/",
PostalAddress := Concatenation( [
"School of Mathematical Sciences",
"Monash University\n",
"VIC 3800\n Melbourne, Australia" ] ),
Place := "Melbourne",
Institution := "Monash University"),
],
Status := "accepted",
CommunicatedBy := "David Joyner (Annapolis)",
AcceptDate := "10/2007",
PackageWWWHome := "https://gap-packages.github.io/cubefree/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/cubefree",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/cubefree-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">Cubefree</span> package contains methods to construct up to isomorphism the groups of a given (reasonable) cubefree order. The main function ConstructAllCFGroups(n) constructs all groups of a given cubefree order n. The function NumberCFGroups(n) counts all groups of a cubefree order n. Furthermore, IrreducibleSubgroupsOfGL(2,q) constructs the irreducible subgroups of GL(2,q), q=p^r, p>=5 prime, up to conjugacy and RewriteAbsolutelyIrreducibleMatrixGroup(G) rewrites the absolutely irreducible matrix group G (over a finite field) over a minimal subfield.",
PackageDoc := rec(
BookName := "Cubefree",
ArchiveURLSubset := ["doc", "htm"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Constructing the groups of a given cubefree order",
),
Dependencies := rec(
GAP := ">=4.9",
NeededOtherPackages := [
["GrpConst","2.5"],
["Polycyclic","2.11"],
["smallgrp","1.3"],
],
SuggestedOtherPackages := [],
ExternalConditions := [] ),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["cubefree","construction of groups","irreducible matrix subgroups of degree 2"]
));