-
Notifications
You must be signed in to change notification settings - Fork 4
/
PackageInfo.g
99 lines (82 loc) · 2.74 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
SetPackageInfo( rec(
PackageName := "ferret",
Subtitle := "Backtrack Search in Permutation Groups",
Version := "1.0.14",
Date := "08/09/2024", # dd/mm/yyyy format
License := "MPL-2.0",
Persons := [
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Christopher",
LastName := "Jefferson",
WWWHome := "https://heather.cafe/",
Email := "caj21@st-andrews.ac.uk",
GitHubUsername := "ChrisJefferson",
PostalAddress := Concatenation(
"St Andrews\n",
"Scotland\n",
"UK" ),
Place := "St Andrews",
Institution := "University of St Andrews",
),
],
PackageWWWHome := "https://gap-packages.github.io/ferret/",
ArchiveURL := Concatenation("https://github.com/gap-packages/ferret/",
"releases/download/v", ~.Version,
"/ferret-", ~.Version),
README_URL := Concatenation( ~.PackageWWWHome, "README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
ArchiveFormats := ".tar.gz",
## Status information. Currently the following cases are recognized:
## "accepted" for successfully refereed packages
## "submitted" for packages submitted for the refereeing
## "deposited" for packages for which the GAP developers agreed
## to distribute them with the core GAP system
## "dev" for development versions of packages
## "other" for all other packages
##
Status := "deposited",
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/ferret"
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
AbstractHTML :=
" The <span class=\"pkgname\">Ferret</span> package\
provides a C++ reimplementation of Jeffery Leon's\
Partition Backtrack framework for solving problems\
in permutation groups",
PackageDoc := rec(
BookName := "Ferret",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Backtrack Search in Permutation Groups",
),
Dependencies := rec(
GAP := ">= 4.12",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
AvailabilityTest := function()
if not IsKernelExtensionAvailable("ferret") then
LogPackageLoadingMessage(PACKAGE_WARNING,
["the kernel module is not compiled, ",
"the package cannot be loaded."]);
return false;
fi;
return true;
end,
TestFile := "tst/testall.g",
Keywords := [ "Permutation Groups", "Partition Backtrack" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
©right; by Christopher Jefferson
"""
)
),
));