1#############################################################################
2##
3#W  PackageInfo.g              The LAGUNA package                Viktor Bovdi
4#W                                                        Alexander Konovalov
5#W                                                         Richard Rossmanith
6#W                                                            Csaba Schneider
7##
8#############################################################################
9
10SetPackageInfo( rec(
11
12PackageName := "LAGUNA",
13Subtitle := "Lie AlGebras and UNits of group Algebras",
14Version := "3.9.3",
15Date := "19/05/2019", # dd/mm/yyyy format
16License := "GPL-2.0-or-later",
17##  <#GAPDoc Label="PKGVERSIONDATA">
18##  <!ENTITY VERSION "3.9.3">
19##  <!ENTITY RELEASEDATE "19 May 2019">
20##  <!ENTITY RELEASEYEAR "2019">
21##  <#/GAPDoc>
22
23SourceRepository := rec(
24    Type := "git",
25    URL := Concatenation( "https://github.com/gap-packages/", LowercaseString(~.PackageName) ),
26),
27IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
28PackageWWWHome  := Concatenation( "https://gap-packages.github.io/", LowercaseString(~.PackageName) ),
29README_URL      := Concatenation( ~.PackageWWWHome, "/README.md" ),
30PackageInfoURL  := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
31ArchiveURL      := Concatenation( ~.SourceRepository.URL,
32                                 "/releases/download/v", ~.Version,
33                                 "/", LowercaseString(~.PackageName), "-", ~.Version ),
34
35ArchiveFormats := ".tar.gz",
36
37Persons := [
38  rec(
39    LastName      := "Bovdi",
40    FirstNames    := "Victor",
41    IsAuthor      := true,
42    IsMaintainer  := true,
43    Email         := "vbovdi@science.unideb.hu",
44    PostalAddress := Concatenation( [
45                     "Institute of Mathematics and Informatics\n",
46                     "University of Debrecen\n",
47                     "P.O.Box 12, Debrecen\n",
48                     "H-4010 Hungary" ] ),
49    Place         := "Debrecen",
50    Institution   := "University of Debrecen"
51     ),
52  rec(
53    LastName      := "Konovalov",
54    FirstNames    := "Alexander",
55    IsAuthor      := true,
56    IsMaintainer  := true,
57    Email         := "alexander.konovalov@st-andrews.ac.uk",
58    WWWHome       := "https://alexk.host.cs.st-andrews.ac.uk",
59    PostalAddress := Concatenation( [
60                     "School of Computer Science\n",
61                     "University of St Andrews\n",
62                     "Jack Cole Building, North Haugh,\n",
63                     "St Andrews, Fife, KY16 9SX, Scotland" ] ),
64    Place         := "St Andrews",
65    Institution   := "University of St Andrews"
66     ),
67  rec(
68    LastName := "Rossmanith",
69    FirstNames := "Richard",
70    IsAuthor := true,
71    IsMaintainer := false
72     ),
73  rec(
74    LastName      := "Schneider",
75    FirstNames    := "Csaba",
76    IsAuthor      := true,
77    IsMaintainer  := true,
78    Email         := "csaba.schneider@sztaki.hu",
79    WWWHome       := "http://www.sztaki.hu/~schneider",
80    PostalAddress := Concatenation( [
81                     "Csaba Schneider\n",
82                     "Informatics Laboratory\n",
83                     "Computer and Automation Research Institute\n",
84                     "The Hungarian Academy of Sciences\n",
85	                 "1111 Budapest, Lagymanyosi u. 11, Hungary" ]),
86    Place         := "Budapest",
87    Institution   := "Computer and Automation Research Institute"
88     )
89],
90
91Status := "accepted",
92CommunicatedBy := "Herbert Pahlings (Aachen)",
93AcceptDate := "06/2003",
94
95AbstractHTML := "The <span class=\"pkgname\">LAGUNA</span> package replaces the <span class=\"pkgname\">LAG</span> package and provides functionality for calculation of the normalized unit group of the modular group algebra of the finite p-group and for investigation of Lie algebra associated with group algebras and other associative algebras.",
96
97PackageDoc := rec(
98  BookName := "LAGUNA",
99  ArchiveURLSubset := ["doc"],
100  HTMLStart := "doc/chap0.html",
101  PDFFile := "doc/manual.pdf",
102  SixFile := "doc/manual.six",
103  LongTitle := "Lie AlGebras and UNits of group Algebras",
104  Autoload := true
105),
106
107Dependencies := rec(
108  GAP := ">=4.9",
109  NeededOtherPackages := [ ["GAPDoc", ">= 1.6.1"] ],
110  SuggestedOtherPackages := [ ["Sophus", ">= 1.24"] ],
111  ExternalConditions := []
112),
113
114AvailabilityTest := ReturnTrue,
115TestFile := "tst/testall.g",
116
117Keywords := ["group ring", "modular group algebra", "Lie algebra", "unit group"]
118
119));
120