@@ -8,12 +8,12 @@ Subtitle := "Transitive Groups Library",
8
8
9
9
# # See '?Extending: Version Numbers' in GAP help for an explanation
10
10
# # of valid version numbers.
11
- Version := " 3.6.3 " ,
11
+ Version := " 3.6.4 " ,
12
12
13
13
# # Release date of the current version in dd/mm/yyyy format.
14
14
# # Note that the oh-so-clever package tools cannot deal with single digits,
15
15
# # but will whine.
16
- Date := " 19/07/2022 " ,
16
+ Date := " 03/02/2023 " ,
17
17
18
18
# # Licensing terms as a machine readable SPDX identifier
19
19
License := " Artistic-2.0 AND (GPL-2.0-only OR GPL-3.0-only)" ,
@@ -29,14 +29,14 @@ ArchiveURL := Concatenation(
29
29
# # All provided formats as list of file extensions, separated by white
30
30
# # space or commas.
31
31
# # .tar.gz the UNIX standard
32
- # #
32
+ # #
33
33
ArchiveFormats := " .tar.gz" , # the others are generated automatically
34
34
35
35
36
- # # Information about authors and maintainers. Specify for each person a
36
+ # # Information about authors and maintainers. Specify for each person a
37
37
# # record with the following information:
38
- # #
39
- # #
38
+ # #
39
+ # #
40
40
Persons := [
41
41
rec (
42
42
LastName := " Hulpke" ,
@@ -51,12 +51,12 @@ Persons := [
51
51
" Colorado State University" ,
52
52
] )
53
53
)
54
-
54
+
55
55
] ,
56
56
57
57
# # Status information. Currently the following cases are recognized:
58
58
# # "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
60
60
# # to distribute them with the core GAP system
61
61
# # "other" for all other packages
62
62
# #
@@ -68,51 +68,51 @@ Status := "deposited",
68
68
# # - A README file, containing a short abstract about the package
69
69
# # content and installation instructions.
70
70
# # - 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
72
72
# # the updating of package information on the GAP Website, and inclusion
73
73
# # and updating of the package in the GAP distribution.
74
- # #
74
+ # #
75
75
README_URL := " https://www.math.colostate.edu/~hulpke/transgrp/README.txt" ,
76
76
PackageInfoURL := " https://www.math.colostate.edu/~hulpke/transgrp/PackageInfo.g" ,
77
77
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
80
80
# # for a Webpage with more detailed information about the package
81
81
# # (not more than a few lines, less is ok):
82
82
# # Please, use '<span class="pkgname">GAP</span>' and
83
83
# # '<span class="pkgname">MyPKG</span>' for specifing package names.
84
- # #
84
+ # #
85
85
AbstractHTML := " The <span class=\" transgrp\" >TransGrp</span> package provides \
86
86
the library of transitive groups." ,
87
87
88
88
SourceRepository := rec (
89
89
Type := " git" ,
90
- URL := Concatenation(" https://github.com/hulpke/" ,
90
+ URL := Concatenation(" https://github.com/hulpke/" ,
91
91
LowercaseString(~ .PackageName)),
92
92
),
93
93
IssueTrackerURL := Concatenation(~ .SourceRepository.URL," /issues" ),
94
94
PackageWWWHome := " https://www.math.colostate.edu/~hulpke/transgrp" ,
95
-
95
+
96
96
# # On the GAP Website there is an online version of all manuals in the
97
97
# # GAP distribution. To handle the documentation of a package it is
98
98
# # 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
100
100
# # of HTML or PDF-format, preferably both formats)
101
101
# # - the start file of the HTML documentation (if provided), *relative to
102
102
# # package root*
103
103
# # - 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
107
107
# # init.g file in the command DeclarePackage(Auto)Documentation
108
108
# # (for future simplification of the package loading mechanism).
109
- # #
109
+ # #
110
110
# # Please, don't include unnecessary files (.log, .aux, .dvi, .ps, ...) in
111
111
# # the provided documentation archive.
112
- # #
112
+ # #
113
113
# in case of several help books give a list of such records here:
114
114
PackageDoc := rec (
115
- # use same as in GAP
115
+ # use same as in GAP
116
116
BookName := " transgrp" ,
117
117
ArchiveURLSubset := [ " doc/manual.pdf" ," htm" ] ,
118
118
PDFFile := " doc/manual.pdf" ,
@@ -123,7 +123,7 @@ PackageDoc := rec(
123
123
# fit on a single text line (appears with the '?books' command in GAP)
124
124
LongTitle := " Transitive Groups Library" ,
125
125
# 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'.
127
127
Autoload := true
128
128
),
129
129
@@ -158,7 +158,7 @@ TestFile := "tst/testall.g",
158
158
# # printed when the package is loaded (not when it is autoloaded or if
159
159
# # command line options `-b' or `-q' are given).
160
160
161
- # # *Optional*: Here you can list some keyword related to the topic
161
+ # # *Optional*: Here you can list some keyword related to the topic
162
162
# # of the package.
163
163
Keywords := [ " Transitive Groups Library" ]
164
164
0 commit comments