-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
93 lines (83 loc) · 4.34 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
####################################################################################################
##
## PackageInfo.g GAP4 Package `ResClasses' Stefan Kohl
##
####################################################################################################
SetPackageInfo( rec(
PackageName := "ResClasses",
Subtitle := "Set-Theoretic Computations with Residue Classes",
Version := "4.7.3",
Date := "29/07/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec( LastName := "Kohl",
FirstNames := "Stefan",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://stefan-kohl.github.io/"
)
],
Status := "deposited",
PackageWWWHome := "https://gap-packages.github.io/resclasses/",
README_URL := Concatenation( ~.PackageWWWHome, "README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/resclasses",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/resclasses-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML := Concatenation("This package permits to compute with set-theoretic ",
"unions of residue classes of Z and a few other rings. ",
"In particular it provides methods for computing unions, ",
"intersections and differences of these sets."),
PackageDoc := rec(
BookName := "ResClasses",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := Concatenation("Computations with Residue Classes ",
"and their Set-Theoretic Unions"),
Autoload := true
),
Dependencies := rec(
GAP := ">=4.8.7",
NeededOtherPackages := [ ["GAPDoc",">=1.5.1"], ["Polycyclic",">=2.11"],
["utils", ">=0.40"] ],
SuggestedOtherPackages := [ ["IO",">=4.4.5"] ],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation( "\nLoading ResClasses ", ~.Version,
" (Computations with Residue Classes)",
"\nby Stefan Kohl, [email protected]\n\n" ),
TestFile := "tst/testall.g",
Keywords := [ "residue classes", "integers", "number theory" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
©right; 2003 - 2017 by Stefan Kohl. <P/>
&ResClasses; 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. <P/>
&ResClasses; 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/>
For a copy of the GNU General Public License, see
the file <F>GPL</F> in the <F>etc</F> directory of the &GAP;
distribution or see <URL>https://www.gnu.org/licenses/gpl.html</URL>.
""",
Abstract := """<#Include SYSTEM "abstract.xml">""",
),
),
) );
####################################################################################################
##
#E PackageInfo.g . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here