forked from gap-packages/hap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackageInfo.g
110 lines (94 loc) · 3.77 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
#############################################################################
##
## PackageInfo.g HAP Package Graham Ellis
##
#############################################################################
SetPackageInfo( rec(
PackageName := "HAP",
Subtitle := "Homological Algebra Programming",
Version := "1.23",
Date := "14/11/2019",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", LowercaseString(~.PackageName) ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := "http://hamilton.nuigalway.ie/Hap",
README_URL := Concatenation( ~.PackageWWWHome, "/README.HAP" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", LowercaseString(~.PackageName), "-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Ellis",
FirstNames := "Graham",
IsAuthor := true,
IsMaintainer := true,
Email := "graham.ellis@nuigalway.ie",
WWWHome := "http://hamilton.nuigalway.ie",
PostalAddress := Concatenation( [
"Graham Ellis\n",
"Mathematics Department\n",
"NUI Galway\n",
"Galway\n",
"Ireland" ] ),
Place := "Galway",
Institution := "National University of Ireland, Galway"
)
],
Status := "accepted",
CommunicatedBy
:= "Derek Holt (Warwick)",
AcceptDate
:= "03/2006",
AbstractHTML :=
"This package provides some functions for group cohomology. ",
PackageDoc := rec(
BookName := "HAP",
ArchiveURLSubset := ["doc", "www"],
HTMLStart := "www/index.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Homological Algebra Programming Package",
Autoload := true
),
Dependencies := rec(
GAP := ">= 4.5.6",
NeededOtherPackages := [
[ "polycyclic", ">=1.1" ],
[ "crystcat", ">=1.1" ],
[ "fga", ">=1.1" ],
[ "aclib", ">=1.1" ],
[ "nq", ">=1.1" ],
#[ "gapdoc", ">=0.0" ]
],
SuggestedOtherPackages := [
#[ "polycyclic", ">=1.1" ],
#[ "aclib", ">=1.1" ],
[ "gapdoc", ">=0.0" ],
#[ "nq", ">=1.1" ],
[ "nql", ">=0.0" ],
[ "homology", ">=0.0" ],
[ "edim", ">=1.2.2" ],
[ "singular", ">=06.07.23" ],
[ "congruence", ">=0,0" ],
[ "HAPcryst", ">0.0" ],
[ "xmod", ">0.0" ],
],
ExternalConditions := [["Some optional functions require Polymake software",
"http://polymake.org/doku.php"],
["Some optional functions require Graphviz software",
"http://www.graphviz.org/"],
["One optional function requires the Simplicial Homology GAP package",
"http://www.cis.udel.edu/~dumas"]
]
),
AvailabilityTest := ReturnTrue,
BannerString := Concatenation( "Loading HAP ",
String( ~.Version ), " ...\n" ),
TestFile := "tst/testall.g",
Keywords := [ "homology", "cohomology", "resolution", "homotopy group",
"module of identities" ]
));