-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
79 lines (77 loc) · 3.05 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
################################################################################
##
#W PackageInfo.g for the package `Unipot' Sergei Haller
##
#Y Copyright (C) 2000-2004, Sergei Haller
#Y Arbeitsgruppe Algebra, Justus-Liebig-Universitaet Giessen
##
SetPackageInfo(
rec(
PackageName := "Unipot",
Subtitle := "Computing with elements of unipotent subgroups of Chevalley groups",
Version := "1.6",
Date := "04/07/2024", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
PackageWWWHome := "https://gap-packages.github.io/unipot/",
README_URL := Concatenation( ~.PackageWWWHome, "README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
SourceRepository := rec(
Type := "git",
URL := "https://github.com/gap-packages/unipot",
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/unipot-", ~.Version ),
ArchiveFormats := ".tar.gz",
Status := "deposited",
Persons := [
rec(
LastName := "Haller",
FirstNames := "Sergei",
IsAuthor := true,
IsMaintainer := false,
Email := "[email protected]",
WWWHome := "https://www.sergei-haller.de",
),
rec(
LastName := "Horn",
FirstNames := "Max",
IsAuthor := false,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://www.quendi.de/math",
PostalAddress := Concatenation(
"Fachbereich Mathematik\n",
"RPTU Kaiserslautern-Landau\n",
"Gottlieb-Daimler-Straße 48\n",
"67663 Kaiserslautern\n",
"Germany" ),
Place := "Kaiserslautern, Germany",
Institution := "RPTU Kaiserslautern-Landau"
),
],
PackageDoc := rec(
BookName := "unipot",
LongTitle := "Computing with elements of unipotent subgroups of Chevalley groups",
ArchiveURLSubset := ["doc","htm"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
),
Dependencies := rec(
GAP := ">=4.7",
NeededOtherPackages := [],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
AbstractHTML := "Tools for computing with elements of unipotent subgroups of Chevalley groups.",
Keywords := [ "Chevalley", "unipotent elements", "unipot" ],
TestFile := "tst/testall.g",
)
);
################################################################################
##
#E PackageInfo.g . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
##