-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPackageInfo.g
91 lines (79 loc) · 3.24 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
#############################################################################
##
#W PackageInfo.g The UnitLib package Olexandr Konovalov
#W Olena Yakimenko
##
#############################################################################
SetPackageInfo( rec(
PackageName := "UnitLib",
Subtitle := "Library of normalized unit groups of modular group algebras",
Version := "4.2.0",
Date := "25/02/2023", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "4.2.0">
## <!ENTITY RELEASEDATE "25 February 2023">
## <!ENTITY RELEASEYEAR "2023">
## <#/GAPDoc>
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", LowercaseString(~.PackageName) ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", LowercaseString(~.PackageName) ),
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", LowercaseString(~.PackageName), "-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Konovalov",
FirstNames := "Olexandr",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://olexandr-konovalov.github.io/",
PostalAddress := Concatenation( [
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh,\n",
"St Andrews, Fife, KY16 9SX, Scotland" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Yakimenko",
FirstNames := "Olena",
IsAuthor := true,
IsMaintainer := false,
Place := "Zaporizhzhia",
Institution := "Zaporizhzhia National University"
)
],
Status := "accepted",
CommunicatedBy := "Bettina Eick (Braunschweig)",
AcceptDate := "03/2007",
AbstractHTML := "The <span class=\"pkgname\">UnitLib</span> package extends the <span class=\"pkgname\">LAGUNA</span> package and provides the library of normalized unit groups of modular group algebras of all finite p-groups of order less than 243 over the field of p elements.",
PackageDoc := rec(
BookName := "UnitLib",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "The library of normalized unit groups of modular group algebras",
Autoload := true
),
Dependencies := rec(
GAP := ">=4.11",
NeededOtherPackages := [ ["GAPDoc", ">= 1.6"],
["IO", "4.5"],
["LAGUNA", ">= 3.9.4"] ],
SuggestedOtherPackages := [ ["SCSCP", ">=2.2"] ],
ExternalConditions := [],
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["group ring", "modular group algebra", "normalized unit group"]
));