forked from gap-packages/cryst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackageInfo.g
131 lines (110 loc) · 3.91 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
119
120
121
122
123
124
125
126
127
128
129
130
131
#############################################################################
##
## PackageInfo.g for Cryst
##
SetPackageInfo( rec(
PackageName := "Cryst",
Subtitle := "Computing with crystallographic groups",
Version := "4.1.23",
Date := "10/12/2019", # dd/mm/yyyy format
License := "GPL-2.0-or-later",
ArchiveURL := Concatenation(
"https://www.math.uni-bielefeld.de/~gaehler/gap/Cryst/cryst-", ~.Version ),
ArchiveFormats := ".tar.gz",
BinaryFiles := [ "doc/manual.pdf", "doc/manual.dvi" ],
Persons := [
rec(
LastName := "Eick",
FirstNames := "Bettina",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.iaa.tu-bs.de/beick",
PostalAddress := Concatenation(
"Institut Analysis und Algebra\n",
"TU Braunschweig\n",
"Universitätsplatz 2\n",
"D-38106 Braunschweig\n",
"Germany" ),
Place := "Braunschweig",
Institution := "TU Braunschweig"
),
rec(
LastName := "Gähler",
FirstNames := "Franz",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "https://www.math.uni-bielefeld.de/~gaehler/",
#PostalAddress := "",
Place := "Bielefeld",
Institution := "Mathematik, Universität Bielefeld"
),
rec(
LastName := "Nickel",
FirstNames := "Werner",
IsAuthor := true,
IsMaintainer := true,
Email := "[email protected]",
WWWHome := "http://www.mathematik.tu-darmstadt.de/~nickel/",
#PostalAddress := "",
Place := "Darmstadt",
Institution := "Fachbereich 4, AG 2, TU Darmstadt"
)
],
Status := "accepted",
CommunicatedBy := "Herbert Pahlings (Aachen)",
AcceptDate := "02/2000",
README_URL :=
"https://www.math.uni-bielefeld.de/~gaehler/gap/Cryst/README.cryst",
PackageInfoURL :=
"https://www.math.uni-bielefeld.de/~gaehler/gap/Cryst/PackageInfo.g",
AbstractHTML :=
"This package, previously known as <span class=\"pkgname\">CrystGAP</span>, \
provides a rich set of methods for the computation with affine \
crystallographic groups, in particular space groups. Affine \
crystallographic groups are fully supported both in representations \
acting from the right or from the left, the latter one being preferred \
by crystallographers. Functions to determine representatives of all \
space group types of a given dimension are also provided. Where necessary, \
<span class=\"pkgname\">Cryst</span> can also make use of functionality \
provided by the package <span class=\"pkgname\">CaratInterface</span>.",
PackageWWWHome :=
"https://www.math.uni-bielefeld.de/~gaehler/gap/packages.php",
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/",
LowercaseString( ~.PackageName ) ) ),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
SupportEmail := "[email protected]",
PackageDoc := rec(
BookName := "Cryst",
ArchiveURLSubset := ["doc", "htm"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Computing with crystallographic groups",
Autoload := true
),
Dependencies := rec(
GAP := ">=4.9",
NeededOtherPackages := [ [ "polycyclic", ">=2.9" ] ],
SuggestedOtherPackages := [ [ "CrystCat", ">=1.1.4" ],
[ "CaratInterface", ">=2.3.1" ],
[ "XGAP", ">=4.22" ]
],
ExternalConditions := []
),
AvailabilityTest := ReturnTrue,
#BannerString := "",
TestFile := "tst/testall.g",
Keywords := [ "crystallographic groups",
"affine crystallographic groups",
"space groups",
"color groups",
"point group",
"Wyckoff positions",
"International Tables for Crystallography",
"maximal subgroups",
"normalizer" ]
));