forked from ffloresbrito/aaa
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackageInfo.g
152 lines (137 loc) · 5.32 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
149
150
#
# aaa: implements algorithms for asynchronous transducers
#
# This file contains package meta data. For additional information on
# the meaning and correct usage of these fields, please consult the
# manual of the "Example" package as well as the comments in its
# PackageInfo.g file.
#
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "0.1.0">
## <!ENTITY GAPVERS "4.8.0">
## <!ENTITY ARCHIVENAME "aaa-0.1.0">
## <!ENTITY COPYRIGHTYEARS "2017-2022">
## <#/GAPDoc>
SetPackageInfo( rec(
PackageName := "aaa",
Subtitle := "Algorithms for Asynchronous Transducers",
Version := "0.1.0",
Date := "09/02/2022", # dd/mm/yyyy format
License := "GPL-3.0-or-later",
Persons := [
rec(
IsAuthor := true,
IsMaintainer := false,
FirstNames := "Collin",
LastName := "Bleak",
WWWHome := "http://www-groups.mcs.st-andrews.ac.uk/~collin/",
Email := "cb211@st-andrews.ac.uk",
PostalAddress := "Mathematical Institute, North Haugh, St Andrews, Fife, KY16 9SS, Scotland",
Place := "St Andrews",
Institution := "University of St Andrews",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Luke",
LastName := "Elliott",
WWWHome := "https://le27.github.io/Luke-Elliott/",
PostalAddress := "Mathematical Institute, North Haugh, St Andrews, Fife, KY16 9SS, Scotland",
Place := "St Andrews",
Institution := "University of St Andrews",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Fernando",
LastName := "Flores Brito",
Email := "ffb3@st-andrews.ac.uk",
PostalAddress := "Mathematical Institute, North Haugh, St Andrews, Fife, KY16 9SS, Scotland",
Place := "St Andrews",
Institution := "University of St Andrews",
),
rec(
IsAuthor := true,
IsMaintainer := false,
FirstNames := "Feyisayo",
LastName := "Olukoya",
WWWHome := "https://www.abdn.ac.uk/ncs/departments/mathematics/profiles/feyisayo.olukoya/",
Email := "feyisayo.olukoya@abdn.ac.uk",
PostalAddress := "Institute of Mathematics, Aberdeen, AB24 3UE, UK",
Place := "Aberdeen",
Institution := "University of Aberdeen",
),
rec(
LastName := "GAP Team",
FirstNames := "The",
IsAuthor := false,
IsMaintainer := true,
Email := "support@gap-system.org",
),
],
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",
## Status information. Currently the following cases are recognized:
## "accepted" for successfully refereed packages
## "submitted" for packages submitted for the refereeing
## "deposited" for packages for which the GAP developers agreed
## to distribute them with the core GAP system
## "dev" for development versions of packages
## "other" for all other packages
##
Status := "dev",
AbstractHTML :=
"The <span class=\"pkgname\">aaa</span> package, is a package for \
building and using transducers as described in the paper entitled \
'Automata, Dynamical Systems, and Groups' of R. I. Grigorchuk, \
V. V. Nekrashevich, and V. I. Sushchanskii. Previous similar packages \
such as <span class=\"pkgname\">fr</span> and \
<span class=\"pkgname\">AutomGrp</span> have had a focus on synchronous \
transducers. Hence the name <span class=\"pkgname\">aaa</span> which \
stands for \"asynchronous automata algorithms\".",
PackageDoc := rec(
BookName := "aaa",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "implements algorithms for asynchronous transducers",
),
Dependencies := rec(
GAP := ">=4.10",
NeededOtherPackages := [["automata", ">=0.0.0"],
["digraphs", ">=0.15.0"],
["fr", ">=2.4.6"]],
SuggestedOtherPackages := [],
ExternalConditions := []),
##BannerString := Concatenation(
## "----------------------------------------------------------------------",
## "-------\n",
## "Loading aaa ", ~.Version, "\n",
## "by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName,
## " (", ~.Persons[1].WWWHome, ")\n",
## "with contributions by:\n",
## Concatenation(Concatenation(List(~.Persons{[2 .. Length(~.Persons) - 1]},
## p -> [" ", p.FirstNames, " ", p.LastName,
## _RecogsFunnyNameFormatterFunction(
## _RecogsFunnyWWWURLFunction(p)), ",\n"]))),
## " and ", ~.Persons[Length(~.Persons)].FirstNames, " ",
## ~.Persons[Length(~.Persons)].LastName,
## _RecogsFunnyNameFormatterFunction(
## _RecogsFunnyWWWURLFunction(~.Persons[Length(~.Persons)])), ".\n",
## "-----------------------------------------------------------------------",
## "------\n"),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
#Keywords := [ "TODO" ],
));