-
Notifications
You must be signed in to change notification settings - Fork 3
/
PackageInfo.g
116 lines (101 loc) · 3.57 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
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "1.1.0">
## <!ENTITY COPYRIGHTYEARS "2008-2024">
## <#/GAPDoc>
SetPackageInfo(rec(
PackageName := "SgpDec",
Subtitle := "Hierarchical Decompositions of Finite Groups and Semigroups",
Version := "1.1.0",
Date := "28/06/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Egri-Nagy",
FirstNames := "Attila",
IsAuthor := true,
IsMaintainer := true,
Email := "attila@egri-nagy.hu",
WWWHome := "http://www.egri-nagy.hu",
PostalAddress := Concatenation( [
"Akita Internationl University\n",
"Yuwa, Akita-City\n",
"010-1292\n",
"JAPAN" ] ),
Place := "Akita",
Institution := "AIU"
),
rec(
LastName := "Nehaniv",
FirstNames := "Chrystopher L.",
IsAuthor := true,
IsMaintainer := false,
Email := "C.L.Nehaniv@herts.ac.uk",
WWWHome := "http://homepages.feis.herts.ac.uk/~comqcln/",
PostalAddress := Concatenation( [
"University of Hertfordshire\n",
"STRI\n",
"College Lane\n",
"AL10 9AB\n",
"United Kingdom" ] ),
Place := "Hatfield, Herts",
Institution := "UH"
),
rec(
LastName := "Mitchell",
FirstNames := "J. D.",
IsAuthor := true,
IsMaintainer := true,
Email := "jdm3@st-and.ac.uk",
WWWHome := "http://tinyurl.com/jdmitchell",
PostalAddress := Concatenation( [
"Mathematical Institute,",
" North Haugh,", " St Andrews,", " Fife,", " KY16 9SS,",
" Scotland"] ),
Place := "St Andrews",
Institution := "University of St Andrews"
)
],
Status := "dev",
PackageWWWHome := "https://gap-packages.github.io/sgpdec/",
README_URL := Concatenation(~.PackageWWWHome, "README"),
PackageInfoURL := Concatenation(~.PackageWWWHome, "PackageInfo.g"),
ArchiveURL := Concatenation("https://github.com/gap-packages/sgpdec/",
"releases/download/v", ~.Version,
"/sgpdec-", ~.Version),
ArchiveFormats := ".tar.gz .tar.bz2",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/sgpdec"
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
AbstractHTML := "<span class=\"pkgname\">SgpDec</span> is a <span class=\
\"pkgname\">GAP</span> \
package for hierarchical decompositions of finite \
permutation groups and transformation semigroups.",
PackageDoc := rec(
BookName := "SgpDec",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Hierarchical Decompositions of Finite Groups and Semigroups",
Autoload := true
),
Dependencies := rec(
GAP := ">= 4.12.2",
NeededOtherPackages := [["GAPDoc", ">=1.6.6"], #StringPrint
["orb", ">=4.9.0"],
["semigroups", ">=5.2.0"],
["datastructures", ">=0.3.0"]
],
SuggestedOtherPackages := [],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
Autoload := false,
TestFile := "tst/testall.g",
Keywords := ["Krohn-Rhodes Theory",
"transformation semigroup",
"permutation group",
"hierarchical decomposition"]
));