-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPackageInfo.g
More file actions
134 lines (119 loc) · 4.7 KB
/
PackageInfo.g
File metadata and controls
134 lines (119 loc) · 4.7 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
#############################################################################
##
## PackageInfo.g for the package `Forms'
## John Bamberg
## Jan De Beule
##
## (created from Frank Luebeck's PackageInfo.g template file)
##
SetPackageInfo( rec(
PackageName := "Forms",
Subtitle := "Sesquilinear and Quadratic",
Version := "1.2.14",
Date := "26/01/2026",
License := "GPL-2.0-or-later",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", LowercaseString(~.PackageName) ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", LowercaseString(~.PackageName) ),
README_URL := Concatenation( ~.PackageWWWHome, "/README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", LowercaseString(~.PackageName), "-", ~.Version ),
ArchiveFormats := ".tar.gz .zip .tar.bz2",
Persons := [
rec(
LastName := "Bamberg",
FirstNames := "John",
IsAuthor := true,
IsMaintainer := true,
Email := "john.bamberg@uwa.edu.au",
WWWHome := "https://johnbamberg.github.io",
GitHubUsername := "johnbamberg",
PostalAddress := Concatenation( [
"School of Mathematics and Statistics\n",
"The University of Western Australia\n",
"35 Stirling Highway\n",
"Crawley WA 6009, Perth\n",
"Australia" ] ),
Place := "Perth",
Institution := "The University of Western Australia",
),
rec(
LastName := "De Beule",
FirstNames := "Jan",
IsAuthor := true,
IsMaintainer := true,
Email := "jan@debeule.eu",
WWWHome := "http://www.debeule.eu",
GitHubUsername := "jdebeule",
PostalAddress := Concatenation( [
"Department of Mathematics and Data Science\n",
"Vrije Universiteit Brussel\n",
"Pleinlaan 2\n",
"B-1050 Brussel\n",
"Belgium" ] ),
Place := "Brussels",
Institution := "Vrije Universiteit Brussel",
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := false,
IsMaintainer := true,
Email := "mhorn@rptu.de",
WWWHome := "https://www.quendi.de/math",
GitHubUsername := "fingolfin",
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",
),
],
Status := "accepted",
CommunicatedBy := "Leonard Soicher (London)",
AcceptDate := "03/2009",
AbstractHTML := "This package can be used for work with sesquilinear and quadratic forms on finite vector spaces; objects that are used to describe polar spaces and classical groups.",
PackageDoc := rec(
# use same as in GAP
BookName := "Forms",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Forms - Sesquilinear and Quadratic",
),
Dependencies := rec(
GAP := ">=4.9",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions := []),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation(
"---------------------------------------------------------------------\n",
"Loading 'Forms' ", ~.Version," (", ~.Date,")", "\n",
"by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName,
" (", ~.Persons[1].WWWHome, ")\n",
" ", ~.Persons[2].FirstNames, " ", ~.Persons[2].LastName,
" (", ~.Persons[2].WWWHome, ")\n",
"For help, type: ?Forms \n",
"---------------------------------------------------------------------\n" ),
TestFile := "tst/testall.g",
Keywords := ["Forms", "Sesquilinear", "Quadratic"],
AutoDoc := rec(
TitlePage := rec(
Copyright := Concatenation(
"©right; 2015-2024 by the authors<P/>\n\n",
"This package may be distributed under the terms and conditions ",
"of the GNU Public License Version 2 or (at your option) any later version.\n"
),
)
),
));