-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPackageInfo.g
78 lines (68 loc) · 2.48 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
#############################################################################
##
## PackageInfo.g
## Copyright (C) 2024 Matthew Pancer
##
## Licensing information can be found in the README file of this package.
##
#############################################################################
##
SetPackageInfo(rec(
PackageName := "graphviz",
Subtitle := "GAP representations of graphviz objects",
Version := "0.0.0",
Date := "09/04/2022", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
Persons := [
rec(
FirstNames := "James D.",
LastName := "Mitchell",
WWWHome := "https://jdbm.me",
Email := "[email protected]",
IsAuthor := true,
IsMaintainer := true,
PostalAddress := Concatenation("Mathematical Institute, North Haugh,",
" St Andrews, Fife, KY16 9SS, Scotland"),
Place := "St Andrews",
Institution := "University of St Andrews"),
rec(
FirstNames := "Matthew",
LastName := "Pancer",
Email := "[email protected]",
IsAuthor := true,
IsMaintainer := true,
PostalAddress := Concatenation("Mathematical Institute, North Haugh,",
" St Andrews, Fife, KY16 9SS, Scotland"),
# TODO correct? Or should be cs?
Place := "St Andrews",
Institution := "University of St Andrews")],
SourceRepository := rec(Type := "git",
URL := "https://github.com/digraphs/graphviz"),
IssueTrackerURL := "https://github.com/digraphs/graphviz/issues",
PackageWWWHome := Concatenation("https://digraphs.github.io/",
~.PackageName),
PackageInfoURL := Concatenation(~.PackageWWWHome, "PackageInfo.g"),
README_URL := Concatenation(~.PackageWWWHome, "README.md"),
ArchiveURL := Concatenation(~.PackageWWWHome,
"/",
~.PackageName,
"-",
~.Version),
ArchiveFormats := ".tar.gz",
AbstractHTML := "TODO",
PackageDoc := rec(
BookName := "graphviz",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "TODO",
),
Dependencies := rec(
GAP := ">= 4.11.0",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions := [],
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g"));