-
Notifications
You must be signed in to change notification settings - Fork 1
/
PackageInfo.g
executable file
·91 lines (79 loc) · 2.87 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
#############################################################################
##
## PackageInfo.g for the package `ffcsa'
#
SetPackageInfo( rec(
PackageName := "FFCSA",
Subtitle := "FFCSA - Finite Field Constructions, Search and Algorithms",
Version := "0.9.4",
Date := "20/04/2023",
##<#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "0.9.4">
## <!ENTITY RELEASEDATE "12 October 2023">
## <!ENTITY RELEASEYEAR "2023">
##<#/GAPDoc>
Persons := [
# rec(
# LastName := "Zidaric",
# FirstNames := "Nusa",
# IsAuthor := true,
# IsMaintainer := true,
# Email := "nzidaric@uwaterloo.ca",
# WWWHome := "http://comsec.uwaterloo.ca/",
# PostalAddress := Concatenation( [
# "200 University Ave W",
# "Waterloo",
# "Canada",
# "ON N2L 3G1" ] ),
# Place := "Waterloo",
# Institution := "UW-ComSec Lab"
# ),
rec(
LastName := "Zidaric",
FirstNames := "Nusa",
IsAuthor := true,
IsMaintainer := true,
Email := "n.zidaric@liacs.leidenuniv.nl",
WWWHome := "http://comsec.uwaterloo.ca/",
PostalAddress := Concatenation( [
"Niels Bohrweg 1",
"Leiden",
"The Netherlands",
"2333 CA" ] ),
Place := "Waterloo",
Institution := "University of Waterloo - ComSec Lab, Leiden University - LIACS"
),
],
Status := "dev",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/nzidaric/", LowercaseString(~.PackageName) ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://nzidaric.github.io/", LowercaseString(~.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",
AbstractHTML := "This package was designed for implementations of (cryptographic) hardware based on finite field arithmetic.",
PackageDoc := rec(
BookName := "FFCSA",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0_mj.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "FFCSA - Finite Field Constructions, Search and Algorithms",
Autoload := true
),
Dependencies := rec(
GAP := "4.8",
NeededOtherPackages := [["GAPDoc", "1.6"], ["FSR", "1.0.0"]],
SuggestedOtherPackages := [],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
TestFile := "tst/testall.g",
Keywords := ["package FFCSA", "finite fields", "constructions", "representations", "search", "algorithms"]
));