-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackageInfo.g
154 lines (139 loc) · 5.65 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
#############################################################################
##
## PackageInfo.g file for the package XModAlg
## Zekeriya Arvasi and Alper Odabas
##
SetPackageInfo( rec(
PackageName := "XModAlg",
Subtitle := "Crossed Modules and Cat1-Algebras",
Version := "1.28",
Date := "31/01/2025", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Arvasi",
FirstNames := "Zekeriya",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
PostalAddress := Concatenation( [
"Prof. Dr. Z. Arvasi \n",
"Osmangazi University \n",
"Arts and Sciences Faculty \n",
"Department of Mathematics and Computer Science \n",
"Eskisehir \n",
"Turkey"] ),
Place := "Eskisehir",
Institution := "Osmangazi University"
),
rec(
LastName := "Odabas",
FirstNames := "Alper",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
PostalAddress := Concatenation( [
"Dr. A. Odabas \n",
"Osmangazi University \n",
"Arts and Sciences Faculty \n",
"Department of Mathematics and Computer Science \n",
"Eskisehir \n",
"Turkey"] ),
Place := "Eskisehir",
Institution := "Osmangazi University"
),
rec(
LastName := "Wensley",
FirstNames := "Chris",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://github.com/cdwensley",
Place := "Llanfairfechan",
Institution := ""
)
],
Status := "deposited",
CommunicatedBy := "",
AcceptDate := "",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/xmodalg" ),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://gap-packages.github.io/xmodalg/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
SupportEmail := "[email protected]",
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">XModAlg</span> package provides a collection \
of functions for computing with crossed modules and cat1-algebras \
and morphisms of these structures.",
PackageDoc := rec(
BookName := "XModAlg",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Crossed Modules and Cat1-Algebras in GAP"
),
Dependencies := rec(
GAP := ">=4.12.0",
NeededOtherPackages := [ ["XMod", ">=2.87"],
["LAGUNA", ">=3.9.3"] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation(
"-----------------------------------------------------------------------------\n",
"Loading XModAlg ", String( ~.Version ), " (", String( ~.Date ), ") for GAP 4.14 \n",
"Methods for crossed modules of commutative algebras and cat1-algebras\n",
"by Zekeriya Arvasi ([email protected]) and Alper Odabas ([email protected]).\n",
"-----------------------------------------------------------------------------\n"
),
TestFile := "tst/testall.g",
Keywords := ["crossed module of algebras", "cat1-algebra"],
AutoDoc := rec(
TitlePage := rec(
Copyright := Concatenation(
"© 2014-2025, Zekeriya Arvasi and Alper Odabas. <P/>\n",
"The &XModAlg; 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 2 of the License, or (at your option) ",
"any later version.\n"
),
Abstract := Concatenation(
"The &XModAlg; package provides functions for computation ",
"with crossed modules of commutative algebras ",
"and cat<M>^{1}</M>-algebras.",
"<P/>\n",
"Bug reports, suggestions and comments are, of course, welcome. ",
"Please submit an issue on GitHub at ",
"<URL>https://github.com/gap-packages/xmodalg/issues/</URL> ",
"or contact the second author at ",
"<Email>[email protected]</Email>. \n",
"<P/>\n"
),
Acknowledgements := Concatenation(
"This documentation was prepared with the ",
"&GAPDoc; <Cite Key='GAPDoc'/> and ",
"&AutoDoc; <Cite Key='AutoDoc'/> packages.<P/>\n",
"The procedure used to produce new releases uses the package ",
"<Package>GitHubPagesForGAP</Package> ",
"<Cite Key='GitHubPagesForGAP' /> ",
"and the package <Package>ReleaseTools</Package>.<P/>\n",
"Both authors are very grateful to Chris Wensley ",
"(<URL>https://github.com/cdwensley</URL>) ",
"for helpful suggestions.<P/>\n",
"This work was partially supported by TÜBİTAK ",
"(The Scientific and Technical Research Council of Turkey), ",
"project number 107T542.<P/>"
),
)
),
));