-
Notifications
You must be signed in to change notification settings - Fork 8
/
PackageInfo.g
154 lines (140 loc) · 5.28 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
151
152
153
154
##
## Datastructures: GAP package providing common datastructures.
##
## Copyright (C) 2015-2018 The datastructures team.
## For list of the team members, please refer to the COPYRIGHT file.
##
## This package is licensed under the GPL 2 or later, please refer
## to the COPYRIGHT.md and LICENSE files for details.
##
SetPackageInfo( rec(
PackageName := "datastructures",
Subtitle := "Collection of standard data structures for GAP",
Version := "0.3.1",
Date := "26/08/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Pfeiffer",
FirstNames := "Markus",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.morphism.de/~markusp",
PostalAddress := Concatenation(
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh\n",
"St Andrews, Fife, KY16 9SX\n",
"United Kingdom" ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://www.quendi.de/math",
PostalAddress := Concatenation(
"Fachbereich Mathematik\n",
"RPTU Kaiserslautern-Landau\n",
"Gottlieb-Daimler-Straße 48\n",
"67663 Kaiserslautern\n",
"Germany" ),
Place := "Kaiserslautern, Germany",
Institution := "RPTU Kaiserslautern-Landau"
),
rec(
LastName := "Jefferson",
FirstNames := "Christopher",
IsAuthor := true,
IsMaintainer := true,
WWWHome := "http://caj.host.cs.st-andrews.ac.uk/",
Email := "[email protected]",
PostalAddress := Concatenation(
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh\n",
"St Andrews, Fife, KY16 9SX\n",
"United Kingdom" ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Linton",
FirstNames := "Steve",
IsAuthor := true,
IsMaintainer := true,
WWWHome := "http://sl4.host.cs.st-andrews.ac.uk/",
Email := "[email protected]",
PostalAddress := Concatenation(
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh\n",
"St Andrews, Fife, KY16 9SX\n",
"United Kingdom" ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
],
Status := "deposited",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/datastructures"
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://gap-packages.github.io/datastructures",
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/datastructures-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">datastructures</span> package provides some \
standard data structures.",
PackageDoc := [ rec(
BookName := "datastructures",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "datastructures - GAP Data Structures",
) ],
## Are there restrictions on the operating system for this package? Or does
## the package need other packages to be available?
Dependencies := rec(
GAP := ">= 4.12",
NeededOtherPackages := [["GAPDoc", "1.5"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := function()
if not IsKernelExtensionAvailable("datastructures") then
LogPackageLoadingMessage(PACKAGE_WARNING,
["the kernel module is not compiled, ",
"the package cannot be loaded."]);
return false;
fi;
return true;
end,
TestFile := "tst/testall.g",
Keywords := ["data structures", "algorithms"],
AutoDoc := rec(
TitlePage := rec(
Copyright :=
"""©right; 2015-18 by Chris Jefferson, Steve Linton, Markus Pfeiffer, Max Horn, Reimer Behrends and others<P/>
&datastructures; package is free software;
you can redistribute it and/or modify it under the terms of the
<URL Text="GNU General Public License">https://www.fsf.org/licenses/gpl.html</URL>
as published by the Free Software Foundation; either version 2 of the License,
or (at your option) any later version.""",
Acknowledgements :=
"""We appreciate very much all past and future comments, suggestions and
contributions to this package and its documentation provided by &GAP;
users and developers.""",
),
),
));