Skip to content

Commit 7db0e11

Browse files
committed
New version
1 parent b4c4965 commit 7db0e11

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Diff for: PackageInfo.g

+24-24
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Subtitle := "Transitive Groups Library",
88

99
## See '?Extending: Version Numbers' in GAP help for an explanation
1010
## of valid version numbers.
11-
Version := "3.6.3",
11+
Version := "3.6.4",
1212

1313
## Release date of the current version in dd/mm/yyyy format.
1414
## Note that the oh-so-clever package tools cannot deal with single digits,
1515
## but will whine.
16-
Date := "19/07/2022",
16+
Date := "03/02/2023",
1717

1818
## Licensing terms as a machine readable SPDX identifier
1919
License := "Artistic-2.0 AND (GPL-2.0-only OR GPL-3.0-only)",
@@ -29,14 +29,14 @@ ArchiveURL := Concatenation(
2929
## All provided formats as list of file extensions, separated by white
3030
## space or commas.
3131
## .tar.gz the UNIX standard
32-
##
32+
##
3333
ArchiveFormats := ".tar.gz", # the others are generated automatically
3434

3535

36-
## Information about authors and maintainers. Specify for each person a
36+
## Information about authors and maintainers. Specify for each person a
3737
## record with the following information:
38-
##
39-
##
38+
##
39+
##
4040
Persons := [
4141
rec(
4242
LastName := "Hulpke",
@@ -51,12 +51,12 @@ Persons := [
5151
"Colorado State University",
5252
] )
5353
)
54-
54+
5555
],
5656

5757
## Status information. Currently the following cases are recognized:
5858
## "accepted" for successfully refereed packages
59-
## "deposited" for packages for which the GAP developers agreed
59+
## "deposited" for packages for which the GAP developers agreed
6060
## to distribute them with the core GAP system
6161
## "other" for all other packages
6262
##
@@ -68,51 +68,51 @@ Status := "deposited",
6868
## - A README file, containing a short abstract about the package
6969
## content and installation instructions.
7070
## - The file you are currently reading or editing!
71-
## You must specify URLs for these two files, these allow to automate
71+
## You must specify URLs for these two files, these allow to automate
7272
## the updating of package information on the GAP Website, and inclusion
7373
## and updating of the package in the GAP distribution.
74-
##
74+
##
7575
README_URL := "https://www.math.colostate.edu/~hulpke/transgrp/README.txt",
7676
PackageInfoURL := "https://www.math.colostate.edu/~hulpke/transgrp/PackageInfo.g",
7777

78-
## Here you must provide a short abstract explaining the package content
79-
## in HTML format (used on the package overview Web page) and an URL
78+
## Here you must provide a short abstract explaining the package content
79+
## in HTML format (used on the package overview Web page) and an URL
8080
## for a Webpage with more detailed information about the package
8181
## (not more than a few lines, less is ok):
8282
## Please, use '<span class="pkgname">GAP</span>' and
8383
## '<span class="pkgname">MyPKG</span>' for specifing package names.
84-
##
84+
##
8585
AbstractHTML := "The <span class=\"transgrp\">TransGrp</span> package provides \
8686
the library of transitive groups.",
8787

8888
SourceRepository := rec(
8989
Type := "git",
90-
URL := Concatenation("https://github.com/hulpke/",
90+
URL := Concatenation("https://github.com/hulpke/",
9191
LowercaseString(~.PackageName)),
9292
),
9393
IssueTrackerURL := Concatenation(~.SourceRepository.URL,"/issues"),
9494
PackageWWWHome := "https://www.math.colostate.edu/~hulpke/transgrp",
95-
95+
9696
## On the GAP Website there is an online version of all manuals in the
9797
## GAP distribution. To handle the documentation of a package it is
9898
## necessary to have:
99-
## - an archive containing the package documentation (in at least one
99+
## - an archive containing the package documentation (in at least one
100100
## of HTML or PDF-format, preferably both formats)
101101
## - the start file of the HTML documentation (if provided), *relative to
102102
## package root*
103103
## - the PDF-file (if provided) *relative to the package root*
104-
## For links to other package manuals or the GAP manuals one can assume
105-
## relative paths as in a standard GAP installation.
106-
## Also, provide the information which is currently given in your packages
104+
## For links to other package manuals or the GAP manuals one can assume
105+
## relative paths as in a standard GAP installation.
106+
## Also, provide the information which is currently given in your packages
107107
## init.g file in the command DeclarePackage(Auto)Documentation
108108
## (for future simplification of the package loading mechanism).
109-
##
109+
##
110110
## Please, don't include unnecessary files (.log, .aux, .dvi, .ps, ...) in
111111
## the provided documentation archive.
112-
##
112+
##
113113
# in case of several help books give a list of such records here:
114114
PackageDoc := rec(
115-
# use same as in GAP
115+
# use same as in GAP
116116
BookName := "transgrp",
117117
ArchiveURLSubset := [ "doc/manual.pdf","htm" ],
118118
PDFFile := "doc/manual.pdf",
@@ -123,7 +123,7 @@ PackageDoc := rec(
123123
# fit on a single text line (appears with the '?books' command in GAP)
124124
LongTitle := "Transitive Groups Library",
125125
# Should this help book be autoloaded when GAP starts up? This should
126-
# usually be 'true', otherwise say 'false'.
126+
# usually be 'true', otherwise say 'false'.
127127
Autoload := true
128128
),
129129

@@ -158,7 +158,7 @@ TestFile := "tst/testall.g",
158158
## printed when the package is loaded (not when it is autoloaded or if
159159
## command line options `-b' or `-q' are given).
160160

161-
## *Optional*: Here you can list some keyword related to the topic
161+
## *Optional*: Here you can list some keyword related to the topic
162162
## of the package.
163163
Keywords := ["Transitive Groups Library"]
164164

0 commit comments

Comments
 (0)