-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackageInfo.g
98 lines (83 loc) · 2.76 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
#############################################################################
##
## PackageInfo.g for the GAP package xgap
##
SetPackageInfo( rec(
PackageName := "XGAP",
Subtitle := "a graphical user interface for GAP",
Version := "4.32",
Date := "08/02/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
LastName := "Celler",
FirstNames := "Frank",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://celler.de/"
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://www.quendi.de/math",
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"
),
rec(
LastName := "Neunhöffer",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "http://www-groups.mcs.st-and.ac.uk/~neunhoef",
PostalAddress := Concatenation( [
"Gustav-Freytag-Straße 40\n",
"50354 Hürth\n",
"Germany" ] ),
)
],
Status := "accepted",
CommunicatedBy := "Gerhard Hiß (Aachen)",
AcceptDate := "07/1999",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/xgap",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "https://gap-packages.github.io/xgap",
README_URL := Concatenation( ~.PackageWWWHome, "/README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/xgap-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"The <span class=\"pkgname\">XGAP</span> package allows to use graphics in GAP.",
PackageDoc := rec(
BookName := "XGAP",
ArchiveURLSubset := ["htm","doc"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "XGAP - a graphical user interface for GAP",
),
Dependencies := rec(
GAP := ">=4.7",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := function() return GAPInfo.CommandLineOptions.p; end,
TestFile := "tst/testall.g",
#Keywords := []
));