-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPackageInfo.g
More file actions
120 lines (108 loc) · 4.35 KB
/
PackageInfo.g
File metadata and controls
120 lines (108 loc) · 4.35 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#
# UGALY: Universal Groups Acting LocallY
#
# 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.
#
SetPackageInfo( rec(
PackageName := "UGALY",
Subtitle := "Universal Groups Acting LocallY",
Version := "4.1.3",
Date := "07/07/2023", # dd/mm/yyyy format
License := "GPL-3.0-or-later",
Persons := [ rec(
FirstNames := "Khalil",
LastName := "Hannouch",
WWWHome := "https://www.newcastle.edu.au/profile/khalil-hannouch",
Email := "khalil.hannouch@newcastle.edu.au",
IsAuthor := true,
IsMaintainer := false,
PostalAddress := Concatenation( [
"Khalil Hannouch\n",
"The University of Newcastle\n",
"School of Information and Physical Sciences\n",
"University Drive\n",
"2308 Callaghan NSW\n",
"Australia" ] ),
Place := "Newcastle",
Institution := "The University of Newcastle",
),
rec(
FirstNames := "Stephan",
LastName := "Tornier",
WWWHome := "https://www.newcastle.edu.au/profile/stephan-tornier",
Email := "stephan.tornier@newcastle.edu.au",
IsAuthor := true,
IsMaintainer := true,
PostalAddress := Concatenation( [
"Stephan Tornier\n",
"The University of Newcastle\n",
"School of Information and Physical Sciences\n",
"University Drive\n",
"2308 Callaghan NSW\n",
"Australia" ] ),
Place := "Newcastle",
Institution := "The University of Newcastle",
),
# Contributors:
rec(
FirstNames := "Tasman",
LastName := "Fell",
IsAuthor := false,
IsMaintainer := false,
)
],
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 := "accepted",
CommunicatedBy := "Laurent Bartholdi (Göttingen)",
AcceptDate := "07/2021", # 21/07/2021
AbstractHTML := "<span class=\"pkgname\">UGALY</span> (Universal Groups Acting LocallY) is a <span class=\"pkgname\">GAP</span> package that provides methods to create, analyse and find local actions of generalised universal groups acting on locally finite regular trees, following Burger-Mozes and Tornier.",
PackageDoc := rec(
BookName := "UGALY",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Universal Groups Acting LocallY. Methods to create, analyse and find local actions of universal groups acting on locally finite regular trees",
),
Dependencies := rec(
GAP := ">= 4.10.2",
NeededOtherPackages := [ ["fga", ">= 1.0"] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation(
"\nVersion ", ~.Version,
"\n __ __ ______ ______ __ __ __",
"\n/\\ \\/\\ \\ /\\ ___\\ /\\ __ \\ /\\ \\ /\\ \\_\\ \\ by Khalil Hannouch",
"\n\\ \\ \\_\\ \\ \\ \\ \\__ \\ \\ \\ __ \\ \\ \\ \\____ \\ \\____ \\ and Stephan Tornier",
"\n \\ \\_____\\ \\ \\_____\\ \\ \\_\\ \\_\\ \\ \\_____\\ \\/\\_____\\ with contributions by",
"\n \\/_____/ \\/_____/ \\/_/\\/_/ \\/_____/ \\/_____/ Tasman Fell",
"\n ",
"\n Universal Groups Acting LocallY \n"
),
TestFile := "tst/testall.g",
Keywords := [ "universal group", "local action", "regular tree", "groups acting on trees", "locally compact group", "totally disconnected" ],
));