forked from gap-packages/datastructures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackageInfo.g
122 lines (108 loc) · 4.07 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
#############################################################################
##
## PackageInfo.g for the package `datastructures' Markus Pfeiffer
##
SetPackageInfo( rec(
PackageName := "datastructures",
Subtitle := "Collection of standard data structures for GAP",
Version := "0.1",
Date := "31/8/2017",
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 := "http://www.quendi.de/math.php",
PostalAddress := Concatenation( "AG Algebra\n",
"Mathematisches Institut\n",
"Justus-Liebig-Universität Gießen\n",
"Arndtstraße 2\n",
"35392 Gießen\n",
"Germany" ),
Place := "Gießen, Germany",
Institution := "Justus-Liebig-Universität Gießen"
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Christopher",
LastName := "Jefferson",
WWWHome := "http://caj.host.cs.st-andrews.ac.uk/",
Email := "[email protected]",
PostalAddress := Concatenation(
"St Andrews\n",
"Scotland\n",
"UK" ),
Place := "St Andrews",
Institution := "University of St Andrews",
),
],
Status := "dev",
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.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.8.7",
NeededOtherPackages := [["GAPDoc", "1.5"]],
SuggestedOtherPackages := [],
# OtherPackagesLoadedInAdvance := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["data structures", "algorithms"],
AutoDoc := rec(
TitlePage := rec(
Copyright :=
"""©right; 2015 by Markus Pfeiffer and the GAP group<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">http://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.""",
),
),
));