forked from gap-packages/YangBaxter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
92 lines (80 loc) · 2.98 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
SetPackageInfo( rec(
PackageName := "YangBaxter",
Subtitle := "Combinatorial Solutions for the Yang-Baxter equation",
Version := "0.10.6",
Date := "17/07/2024", # dd/mm/yyyy format
License := "GPL-3.0",
PackageWWWHome :=
Concatenation( "https://gap-packages.github.io/", ~.PackageName ),
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Vendramin",
FirstNames := "Leandro",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://vendramin.github.io/",
PostalAddress := Concatenation( [
"Vrije Universiteit Brussel\n",
"Faculty of Sciences\n",
"Department of Mathematics and Data Science\n",
"Pleinlaan 2, B-1050\n",
"Brussel, Belgium" ] ),
Place := "Brussels",
Institution := "Vrije Universiteit Brussel"
),
rec(
LastName := "Konovalov",
FirstNames := "Olexandr",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://olexandr-konovalov.github.io/",
PostalAddress := Concatenation( [
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh,\n",
"St Andrews, Fife, KY16 9SX, Scotland" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
],
Status := "deposited",
README_URL :=
Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL :=
Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
AbstractHTML :=
"The <span class=\"pkgname\">YangBaxter</span> package provides functionality \
to construct classical and skew braces. It also includes a database of classical \
and skew braces of small orders.",
PackageDoc := rec(
BookName := ~.PackageName,
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
# the path to the .six file used by GAP's help system
SixFile := "doc/manual.six",
# a longer title of the book, this together with the book name should
# fit on a single text line (appears with the '?books' command in GAP)
LongTitle := ~.Subtitle,
),
Dependencies := rec(
GAP := ">=4.9",
NeededOtherPackages := [ [ "cryst", ">=4.0" ] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["QYBE", "cycle sets", "racks", "quandles", "braces", "radical rings"]
));