forked from gap-packages/AutoDoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackageInfo.g
132 lines (111 loc) · 3.94 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
#############################################################################
##
## AutoDoc package
##
## Copyright 2012-2016
## Sebastian Gutsche, University of Kaiserslautern
## Max Horn, Justus-Liebig-Universität Gießen
##
## Licensed under the GPL 2 or later.
##
#############################################################################
SetPackageInfo( rec(
PackageName := "AutoDoc",
Subtitle := "Generate documentation from GAP source code",
Version := Maximum( [
"2018.07.03", ## Sebas' version
## This line prevents merge conflicts
"2016.12.04", ## Max' version
## This line prevents merge conflicts
"2013.11.01", ## Mohamed's version
] ),
Date := ~.Version{[ 1 .. 10 ]},
Date := Concatenation( ~.Date{[ 9, 10 ]}, "/", ~.Date{[ 6, 7 ]}, "/", ~.Date{[ 1 .. 4 ]} ),
Persons := [
rec(
LastName := "Gutsche",
FirstNames := "Sebastian",
IsAuthor := true,
IsMaintainer := true,
Email := "gutsche@mathematik.uni-kl.de",
WWWHome := "http://wwwb.math.rwth-aachen.de/~gutsche/",
PostalAddress := Concatenation( [
"Department of Mathematics\n",
"University of Kaiserslautern\n",
"67653 Kaiserslautern\n",
"Germany" ] ),
Place := "Kaiserslautern",
Institution := "University of Kaiserslautern"
),
rec( LastName := "Horn",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := true,
Email := "max.horn@math.uni-giessen.de",
WWWHome := "http://www.quendi.de/math",
PostalAddress := Concatenation(
"AG Algebra\n",
"Mathematisches Institut\n",
"Justus-Liebig-Universität Gießen\n",
"Arndtstraße 2\n",
"35392 Gießen\n",
"Germany" ),
Place := "Gießen",
Institution := "Justus-Liebig-Universität Gießen"
),
],
Status := "deposited",
PackageWWWHome := "https://gap-packages.github.io/AutoDoc/",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", ~.PackageName ),
README_URL := Concatenation( ~.PackageWWWHome, "/README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
AbstractHTML :=
"",
PackageDoc := rec(
BookName := "AutoDoc",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Generate documentation from GAP source code",
),
Dependencies := rec(
GAP := ">= 4.5",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ] ],
SuggestedOtherPackages := [ ],
ExternalConditions := []
),
AvailabilityTest := function()
return true;
end,
Autoload := false,
Keywords := [ "Automatic documentation, GAP, GAPDoc" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := Concatenation(
"©right; 2012-2017 by Sebastian Gutsche and Max Horn<P/>\n\n",
"This package may be distributed under the terms and conditions ",
"of the GNU Public License Version 2.\n"
),
Abstract := Concatenation(
"&AutoDoc; is a &GAP; package whose purpose is to aid ",
"&GAP; package authors in creating and maintaining the ",
"documentation of their packages.\n"
),
Acknowledgements := Concatenation(
"This documentation was prepared using the ",
"&GAPDoc; package <Cite Key='GAPDoc'/>.\n",
"<P/>\n"
)
)
),
));