-
Notifications
You must be signed in to change notification settings - Fork 0
/
PackageInfo.g
96 lines (76 loc) · 2.46 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
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "0.54">
## <!ENTITY COPYRIGHTYEARS "2013-2015">
## <#/GAPDoc>
SetPackageInfo( rec(
PackageName := "SubSemi",
Subtitle := "Enumeration of subsemigroups",
Version := "0.54",
Date := "20/12/2015", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
ArchiveURL := "https://bitbucket.org/dersu/subsemi",
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Egri-Nagy",
FirstNames := "Attila",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.egri-nagy.hu",
PostalAddress := Concatenation( [
"University of Hertfordshire\n",
"STRI\n",
"College Lane\n",
"AL10 9AB\n",
"United Kingdom" ] ),
Place := "Hatfield, Herts",
Institution := "UH"
),
rec(
LastName := "Mitchell",
FirstNames := "J. D.",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://tinyurl.com/jdmitchell",
PostalAddress := Concatenation( [
"Mathematical Institute,",
" North Haugh,", " St Andrews,", " Fife,", " KY16 9SS,",
" Scotland"] ),
Place := "St Andrews",
Institution := "University of St Andrews"
)
],
Status := "dev",
README_URL := "https://bitbucket.org/dersu/subsemi",
PackageInfoURL := "https://bitbucket.org/dersu/subsemi",
AbstractHTML := "<span class=\"pkgname\">SubSemi</span> is a <span class=\
\"pkgname\">GAP</span> \
for enumerating subsemigroups.",
PackageWWWHome := "https://bitbucket.org/dersu/subsemi",
PackageDoc := rec(
BookName := "SubSemi",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Subsemigroup Enumeration",
Autoload := true
),
Dependencies := rec(
GAP := ">= 4.8",
NeededOtherPackages := [["GAPDoc", ">=1.5"],
["semigroups", ">=2.7"],
["sgpdec", ">=0.7"],
["dust", ">=0.1.23"]
],
SuggestedOtherPackages := [],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
Autoload := false,
TestFile := "tst/testinstall.tst",
Keywords := ["subsemigroup",
"multiplication table"]
));