-
Notifications
You must be signed in to change notification settings - Fork 7
/
PackageInfo.g
92 lines (78 loc) · 2.75 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
#
# profiling: Line by line profiling and code coverage for GAP
#
# This file contains package meta data. For additional information on
# the meaning and correct usage of these fields, please consult the
# manual of the "Example" package as well as the comments in its
# PackageInfo.g file.
#
SetPackageInfo( rec(
PackageName := "profiling",
Subtitle := "Line by line profiling and code coverage for GAP",
Version := "2.6.0",
Date := "27/08/2024", # dd/mm/yyyy format
License := "MIT AND CDDL-1.0",
Persons := [
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Christopher",
LastName := "Jefferson",
WWWHome := "https://caj.host.cs.st-andrews.ac.uk/",
Email := "[email protected]",
PostalAddress := Concatenation(
"St Andrews\n",
"Scotland\n",
"UK" ),
Place := "St Andrews",
Institution := "University of St Andrews",
),
],
PackageWWWHome := "https://gap-packages.github.io/profiling/",
ArchiveURL := Concatenation("https://github.com/gap-packages/profiling/",
"releases/download/v", ~.Version,
"/profiling-", ~.Version),
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
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/profiling"
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
AbstractHTML := "",
PackageDoc := rec(
BookName := "profiling",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Line by line profiling and code coverage for GAP",
),
Dependencies := rec(
GAP := ">= 4.12",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ], ["IO", ">= 4.4.4" ] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
AvailabilityTest := function()
if not IsKernelExtensionAvailable("profiling") 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 := [ "TODO" ],
));