-
Notifications
You must be signed in to change notification settings - Fork 3
/
PackageInfo.g
76 lines (67 loc) · 2.59 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
#############################################################################
##
## PackageInfo.g for the package `IMG' Laurent Bartholdi
##
SetPackageInfo( rec(
PackageName := "IMG",
Subtitle := "Computations with iterated monodromy groups",
Version := "0.3.3",
Date := "19/09/2022",
License := "GPL-2.0-or-later",
## <#GAPDoc Label="Version">
## <!ENTITY Version "0.3.3">
## <!ENTITY Date "19/09/2022">
## <#/GAPDoc>
Persons := [
rec(
LastName := "Bartholdi",
FirstNames := "Laurent",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.math.uni-sb.de/ag/bartholdi",
PostalAddress := Concatenation( [
"FR Mathematik\n",
"Universität des Saarlandes\n",
"D-66041 Saabrücken\n",
"Germany" ] ),
Place := "Saarbrücken",
Institution := "Universität des Saarlandes"
)
],
Status := "deposited",
CommunicatedBy := "Götz Pfeiffer (NUI Galway)",
AcceptDate := "",
AbstractHTML := "The <span class=\"pkgname\">IMG</span> package allows \
GAP to manipulate iterated monodromy groups",
SourceRepository:= rec(Type := "git", URL := "https://github.com/gap-packages/img"),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL, "/releases/download/v", ~.Version, "/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", ~.PackageName ),
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
PackageDoc := rec(
BookName := "IMG",
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Iterated monodromy groups",
ArchiveURLSubset := ["doc"],
),
Dependencies := rec(
GAP := ">=4.6.0",
NeededOtherPackages := [["FR",">=2.0.0"],
["GAPDoc",">=1.0"],
["IO",">=4.0"]],
SuggestedOtherPackages := [["Float",">=0.4"]],
# for compilation of the external module, one needs:
# gcc, libcblas, javac, appletviewer.
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation("Loading IMG ", String( ~.Version ), #CallFuncList(function() if Filename(DirectoriesPackagePrograms("img"),"img_dll.so")=fail then return ""; else return "with DLL"; fi; end,[]),
" ...\n"),
TestFile := "tst/testall.g",
Keywords := ["iterated monodromy group"]
));