1#############################################################################
2##
3##  PackageInfo.g for the package `orb'
4##
5
6SetPackageInfo( rec(
7
8PackageName := "orb",
9Subtitle := "Methods to enumerate orbits",
10Version := "4.8.3",
11Date := "03/09/2019", # dd/mm/yyyy format
12License := "GPL-3.0-or-later",
13
14##  Information about authors and maintainers.
15Persons := [
16  rec(
17    LastName      := "Mueller",
18    FirstNames    := "Juergen",
19    IsAuthor      := true,
20    IsMaintainer  := true,
21    Email         := "juergen.mueller@math.rwth-aachen.de",
22    WWWHome       := "http://www.math.rwth-aachen.de/~Juergen.Mueller",
23    PostalAddress := Concatenation( [
24                       "Juergen Mueller\n",
25                       "Lehrstuhl D fuer Mathematik, RWTH Aachen\n",
26                       "Templergraben 64\n",
27                       "52056 Aachen\n",
28                       "Germany" ] ),
29    Place         := "Aachen",
30    Institution   := "RWTH Aachen"
31  ),
32  rec(
33    LastName      := "Neunhöffer",
34    FirstNames    := "Max",
35    IsAuthor      := true,
36    IsMaintainer  := false,
37    Email         := "max@9hoeffer.de",
38    WWWHome       := "http://www-groups.mcs.st-and.ac.uk/~neunhoef",
39    PostalAddress := Concatenation( [
40                       "Gustav-Freytag-Straße 40\n",
41                       "50354 Hürth\n",
42                       "Germany" ] ),
43    #Place         := "St Andrews",
44    #Institution   := "University of St Andrews"
45  ),
46  rec(
47    LastName      := "Noeske",
48    FirstNames    := "Felix",
49    IsAuthor      := true,
50    IsMaintainer  := true,
51    Email         := "felix.noeske@math.rwth-aachen.de",
52    WWWHome       := "http://www.math.rwth-aachen.de/~Felix.Noeske",
53    PostalAddress := Concatenation( [
54                       "Felix Noeske\n",
55                       "Lehrstuhl D fuer Mathematik, RWTH Aachen\n",
56                       "Templergraben 64\n",
57                       "52056 Aachen\n",
58                       "Germany" ] ),
59    Place         := "Aachen",
60    Institution   := "RWTH Aachen"
61  ),
62  rec(
63    LastName      := "Horn",
64    FirstNames    := "Max",
65    IsAuthor      := false,
66    IsMaintainer  := true,
67    Email         := "max.horn@uni-siegen.de",
68    WWWHome       := "https://www.quendi.de/math",
69    PostalAddress := Concatenation(
70                       "Department Mathematik\n",
71                       "Universität Siegen\n",
72                       "Walter-Flex-Straße 3\n",
73                       "57072 Siegen\n",
74                       "Germany" ),
75    Place         := "Siegen",
76    Institution   := "Universität Siegen"
77  ),
78],
79
80##  Status information. Currently the following cases are recognized:
81##    "accepted"      for successfully refereed packages
82##    "deposited"     for packages for which the GAP developers agreed
83##                    to distribute them with the core GAP system
84##    "dev"           for development versions of packages
85##    "other"         for all other packages
86##
87# Status := "accepted",
88Status := "deposited",
89
90##  You must provide the next two entries if and only if the status is
91##  "accepted" because is was successfully refereed:
92# format: 'name (place)'
93# CommunicatedBy := "Mike Atkinson (St. Andrews)",
94#CommunicatedBy := "",
95# format: mm/yyyy
96# AcceptDate := "08/1999",
97#AcceptDate := "",
98
99SourceRepository := rec(
100    Type := "git",
101    URL := "https://github.com/gap-packages/orb",
102),
103IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
104PackageWWWHome  := "https://gap-packages.github.io/orb",
105README_URL      := Concatenation( ~.PackageWWWHome, "/README.md" ),
106PackageInfoURL  := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
107ArchiveURL      := Concatenation( ~.SourceRepository.URL,
108                                 "/releases/download/v", ~.Version,
109                                 "/orb-", ~.Version ),
110ArchiveFormats := ".tar.gz",
111
112##  Here you  must provide a short abstract explaining the package content
113##  in HTML format (used on the package overview Web page) and an URL
114##  for a Webpage with more detailed information about the package
115##  (not more than a few lines, less is ok):
116##  Please, use '<span class="pkgname">GAP</span>' and
117##  '<span class="pkgname">MyPKG</span>' for specifing package names.
118##
119AbstractHTML :=
120  "The <span class=\"pkgname\">orb</span> package is about enumerating \
121orbits in various ways.",
122#
123
124PackageDoc := rec(
125  BookName  := "orb",
126  ArchiveURLSubset := ["doc"],
127  HTMLStart := "doc/chap0.html",
128  PDFFile   := "doc/manual.pdf",
129  SixFile   := "doc/manual.six",
130  LongTitle := "Methods to enumerate orbits",
131),
132
133Dependencies := rec(
134  GAP := ">=4.9",
135  NeededOtherPackages := [],
136  SuggestedOtherPackages := [["IO",">= 3.3"]],
137  ExternalConditions := []
138),
139
140AvailabilityTest := ReturnTrue,
141
142##  *Optional*, but recommended: path relative to package root to a file which
143##  contains as many tests of the package functionality as sensible.
144TestFile := "tst/testall.g",
145
146##  *Optional*: Here you can list some keyword related to the topic
147##  of the package.
148Keywords := ["Orbit huge", "OrbitBySuborbit", "hash tables",
149             "searching in groups"],
150
151AutoDoc := rec(
152    TitlePage := rec(
153        Copyright := Concatenation(
154                    "&copyright; 2005-2014 by Jürgen Müller, Max Neunhöffer and Felix Noeske<P/>\n",
155                    "\n",
156                    "This program is free software: you can redistribute it and/or modify\n",
157                    "it under the terms of the GNU General Public License as published by\n",
158                    "the Free Software Foundation, either version 3 of the License, or\n",
159                    "(at your option) any later version.\n",
160                    "\n",
161                    "This program is distributed in the hope that it will be useful,\n",
162                    "but WITHOUT ANY WARRANTY; without even the implied warranty of\n",
163                    "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n",
164                    "GNU General Public License for more details.\n",
165                    "\n",
166                    "You should have received a copy of the GNU General Public License\n",
167                    "along with this program.  If not, see\n",
168                    "<URL><Link>http://www.gnu.org/licenses/</Link></URL>.\n"
169                ),
170    )
171),
172
173));
174
175
176