-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackageInfo.g
132 lines (118 loc) · 5.06 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
#############################################################################
##
## PackageInfo.g Smallsemi - a GAP library of semigroups
## Copyright (C) 2008-2024 Andreas Distler & James D. Mitchell
##
## Licensing information can be found in the README file of this package.
##
#############################################################################
##
SetPackageInfo(rec(
PackageName := "Smallsemi",
Subtitle := "A library of small semigroups",
Version := "0.7.1",
Date := "27/08/2024", # this is in dd/mm/yyyy format
License := "GPL-3.0-or-later",
Persons := [
rec(LastName := "Distler",
FirstNames := "Andreas",
IsAuthor := true,
IsMaintainer := false,
Email := "a.distler@tu-bs.de",
),
rec(
LastName := "Mitchell",
FirstNames := "James",
IsAuthor := true,
IsMaintainer := true,
Email := "jdm3@st-andrews.ac.uk",
WWWHome := "https://jdbm.me",
PostalAddress := Concatenation([
"Mathematical Institute\n", "North Haugh\n",
"St Andrews\n", "Fife\n", "KY16 9SS\n", "Scotland"]),
Place := "St Andrews",
Institution := "University of St Andrews"
)
],
Status := "deposited",
PackageWWWHome := "https://gap-packages.github.io/smallsemi/",
README_URL := Concatenation(~.PackageWWWHome, "README"),
PackageInfoURL := Concatenation(~.PackageWWWHome, "PackageInfo.g"),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/smallsemi",
),
IssueTrackerURL := Concatenation(~.SourceRepository.URL, "/issues"),
ArchiveURL := Concatenation(~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/smallsemi-", ~.Version),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <Package>Smallsemi</Package> package is a data library of semigroups \
of small size. It provides all semigroups with at most 8 elements as well \
as various information about these objects.",
PackageDoc := rec(
BookName := "Smallsemi",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "a library of small semigroups",
),
Dependencies := rec(
GAP := ">=4.10",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions :=
["gzip is needed in standard location if data files are used uncompressed"]),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation(
ListWithIdenticalEntries(SizeScreen()[1] - 3, '-'), "\n", ~.PackageName,
" - ", ~.Subtitle, "\n",
"by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName,
" & ", ~.Persons[2].FirstNames, " ", ~.Persons[2].LastName, "\n",
"For contents, type: ?Smallsemi:\n",
"Loading ", ~.PackageName, " ", ~.Version, " ...\n",
ListWithIdenticalEntries(SizeScreen()[1] - 3, '-'), "\n"),
TestFile := "tst/testall.g",
Keywords := ["small semigroups", "data library", "multiplication tables"],
AutoDoc := rec(
entities := rec(
VERSION := ~.Version,
ARCHIVENAME := Remove(SplitString(~.ArchiveURL, "/"))),
TitlePage := rec(
Version := Concatenation("Version ", ~.Version),
Copyright := """
©right; 2008-24 A. Distler & J. D. Mitchell.<P/>
<Package>Smallsemi</Package> is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License as published by the Free Software
Foundation, either version 3 of the license, or (at your option)
any later version.<P/>
<Package>Smallsemi</Package> is distributed in the hope that it
will be useful, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more details.<P/>
A copy of the GNU General Public License is available in the file
'LICENSE'; for the latest version
see <URL>https://www.gnu.org/licenses/#GPL</URL>.<P/>
This file is part of <Package>Smallsemi</Package>, though as
documentation it is released under the GNU Free Documentation
License (see <URL>https://www.gnu.org/licenses/#FDL</URL>).
""",
Colophon := """
If you find any bugs or have any suggestions or comments, we would
very much appreciate it if you would let us know via our
issue tracker (see
<URL>https://github.com/gap-packages/smallsemi/issues</URL>).
""",
Acknowledgements := """
We would like to thank Tom Kelsey for making this library
possible by running all the initial computations in Minion <Cite
Key="minion"/>. <Br/>
The first author acknowledges financial support of the University
of St Andrews. The second author acknowledges support of EPSRC
grant number GR/S/56085/01.
"""),
),
));