-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPackageInfo.g
118 lines (107 loc) · 5.29 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
####################################################################################################
##
## PackageInfo.g GAP4 Package `FactInt' Stefan Kohl
##
####################################################################################################
SetPackageInfo( rec(
PackageName := "FactInt",
Subtitle := "Advanced Methods for Factoring Integers",
Version := "1.6.3",
Date := "15/11/2019", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", ~.PackageName ),
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec( LastName := "Kohl",
FirstNames := "Stefan",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://stefan-kohl.github.io/"
),
rec( LastName := "Konovalov",
FirstNames := "Olexandr",
IsAuthor := false,
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"
),
],
Status := "accepted",
CommunicatedBy := "Mike Atkinson (St. Andrews)",
AcceptDate := "07/1999",
AbstractHTML := """
This package provides routines for factoring integers, in particular:
<ul>
<li>Pollard's <em>p</em>-1</li>
<li>Williams' <em>p</em>+1</li>
<li>Elliptic Curves Method (ECM)</li>
<li>Continued Fraction Algorithm (CFRAC)</li>
<li>Multiple Polynomial Quadratic Sieve (MPQS)</li>
</ul>
It also provides access to Richard P. Brent's tables of factors of integers of the form <em>b</em>^<em>k</em> +/- 1.
""",
PackageDoc := rec(
BookName := "FactInt",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "A GAP4 Package for FACToring INTegers",
),
Dependencies := rec(
GAP := ">=4.9",
NeededOtherPackages := [ ["GAPDoc",">=1.6"] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := [ "Integer factorization", "ECM", "Elliptic Curves Method",
"MPQS", "Multiple Polynomial Quadratic Sieve", "CFRAC",
"Continued Fraction Algorithm", "Pollard's p-1", "Williams' p+1",
"Cunningham Tables", "Richard P. Brent's Factor Tables" ],
AutoDoc := rec(
TitlePage := rec(
Copyright := """
©right; 1999 - 2017 by Stefan Kohl. <P/>
&FactInt; is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version. <P/>
&FactInt; is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. <P/>
For a copy of the GNU General Public License, see
the file <F>GPL</F> in the <F>etc</F> directory of the &GAP;
distribution or see <URL>https://www.gnu.org/licenses/gpl.html</URL>.
""",
Abstract := """<#Include SYSTEM "abstract.xml">""",
Acknowledgements := """
I would like to thank Bettina Eick and Steve Linton for their support
and many interesting discussions.
""",
),
),
) );
####################################################################################################
##
#E PackageInfo.g . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here