-
Notifications
You must be signed in to change notification settings - Fork 10
/
PackageInfo.g
88 lines (82 loc) · 3.13 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
#############################################################################
##
## PackageInfo.g for the package `GAPDoc' Frank Lübeck
## With a new release of the package at least the entries .Version, .Date and
## .ArchiveURL must be updated.
SetPackageInfo( rec(
PackageName := "GAPDoc",
Subtitle := "A Meta Package for GAP Documentation",
Version := "1.6.7.dev",
## DD/MM/YYYY format:
Date := "21/02/2024",
License := "GPL-2.0-or-later",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/frankluebeck/GAPDoc"
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL :=
"https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc/GAPDoc-1.6.7",
ArchiveFormats := ".tar.bz2 .tar.gz -win.zip",
Persons := [
rec(
LastName := "Lübeck",
FirstNames := "Frank",
IsAuthor := true,
IsMaintainer := true,
Email := "Frank.Luebeck@Math.RWTH-Aachen.De",
WWWHome := "https://www.math.rwth-aachen.de/~Frank.Luebeck",
Place := "Aachen",
Institution := "Lehrstuhl für Algebra und Zahlentheorie, RWTH Aachen",
PostalAddress := "Dr. Frank Lübeck\nLehrstuhl für Algebra und Zahlentheorie\nRWTH Aachen\nPontdriesch 14/16\n52062 Aachen\nGERMANY\n"
),
rec(
LastName := "Neunhöffer",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := false,
#Email := "neunhoef at mcs.st-and.ac.uk",
#WWWHome := "https://www.math.rwth-aachen.de/~Max.Neunhoeffer/",
#Place := "St Andrews",
#Institution := "School of Mathematics and Statistics, St Andrews",
)
],
Status := "accepted",
CommunicatedBy := "Steve Linton (St Andrews)",
AcceptDate := "10/2006",
README_URL :=
"https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc/README.txt",
PackageInfoURL :=
"https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc/PackageInfo.g",
AbstractHTML := "This package contains a definition of a structure for <span class='pkgname'>GAP</span> (package) documentation, based on XML. It also contains conversion programs for producing text-, PDF- or HTML-versions of such documents, with hyperlinks if possible.",
PackageWWWHome := "https://www.math.rwth-aachen.de/~Frank.Luebeck/GAPDoc",
PackageDoc := [rec(
BookName := "GAPDoc",
ArchiveURLSubset := ["doc", "example"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "a meta package for GAP documentation",
),
rec(
BookName := "GAPDoc Example",
ArchiveURLSubset := ["example", "doc"],
HTMLStart := "example/chap0.html",
PDFFile := "example/manual.pdf",
SixFile := "example/manual.six",
LongTitle := "example help book for GAPDoc",
)],
Dependencies := rec(
GAP := "4.11.0",
NeededOtherPackages := [],
SuggestedOtherPackages := [["IO", ">= 4.7"]],
ExternalConditions :=
["(La)TeX installation for converting documents to PDF",
"BibTeX installation to produce unified labels for refs",
"xmllint for optional XML validation" ]
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/test.tst",
Keywords := ["GAP documentation", "help system", "XML", "pdf", "hyperlink",
"unicode", "BibTeX", "BibXMLext"]
));