/usr/share/gap/pkg/RadiRoot/PackageInfo.g is in gap-radiroot 2.7-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #############################################################################
##
#W PackageInfo.g RadiRoot package Andreas Distler
##
## The package info file for the RadiRoot package
##
#H $Id$
##
#Y 2006
##
SetPackageInfo( rec(
PackageName := "RadiRoot",
Subtitle := "Roots of a Polynomial as Radicals",
Version := "2.7",
Date := "09/04/2014",
ArchiveURL := Concatenation([
"http://www.icm.tu-bs.de/ag_algebra/software/radiroot/radiroot-",
~.Version]),
ArchiveFormats := ".tar.gz",
BinaryFiles := ["doc/manual.pdf"],
Persons := [
rec(
LastName := "Distler",
FirstNames := "Andreas",
IsAuthor := true,
IsMaintainer := true,
Email := "a.distler@tu-bs.de",
PostalAddress := Concatenation( [
"AG Algebra und Diskrete Mathematik\n",
"TU Braunschweig\n", "Rebenring 31 (A14)\n",
"38106 Braunschweig\n", "Germany"] ),
Place := "Braunschweig",
Institution := "Technische Universität Braunschweig")
],
Status := "accepted",
CommunicatedBy := "Edmund Robertson (St Andrews)",
AcceptDate := "02/2007",
README_URL := "http://www.icm.tu-bs.de/ag_algebra/software/radiroot/README",
PackageInfoURL := "http://www.icm.tu-bs.de/ag_algebra/software/radiroot/PackageInfo.g",
## Here you must provide a short abstract explaining the package content
## in HTML format (used on the package overview Web page) and an URL
## for a Webpage with more detailed information about the package
## (not more than a few lines, less is ok):
## Please, use '<span class="pkgname">GAP</span>' and
## '<span class="pkgname">MyPKG</span>' for specifing package names.
##
AbstractHTML :=
"The <span class=\"pkgname\">RadiRoot</span> package installs a method to \
display the roots of a rational polynomial as radicals if it is solvable.",
PackageWWWHome := "http://www.icm.tu-bs.de/ag_algebra/software/radiroot/",
## On the GAP Website there is an online version of all manuals in the
## GAP distribution. To handle the documentation of a package it is
## necessary to have:
## - an archive containing the package documentation (in at least one
## of HTML or PDF-format, preferably both formats)
## - the start file of the HTML documentation (if provided), *relative to
## package root*
## - the PDF-file (if provided) *relative to the package root*
## For links to other package manuals or the GAP manuals one can assume
## relative paths as in a standard GAP installation.
## Also, provide the information about autoloadability of the documentation.
##
## Please, do not include unnecessary files (.log, .aux, .dvi, .ps, ...) in
## the provided documentation archive.
##
# in case of several help books give a list of such records here:
PackageDoc := rec(
# use same as in GAP
BookName := "RadiRoot",
ArchiveURLSubset := ["doc", "htm"],
HTMLStart := "htm/chapters.htm",
PDFFile := "doc/manual.pdf",
# the path to the .six file used by GAPs help system
SixFile := "doc/manual.six",
# a longer title of the book, this together with the book name should
# fit on a single text line (appears with the '?books' command in GAP)
LongTitle := "Roots of a Polynomial as Radicals",
# Should this help book be autoloaded when GAP starts up? This should
# usually be 'true', otherwise say 'false'.
Autoload := true
),
## Are there restrictions on the operating system for this package? Or does
## the package need other packages to be available?
Dependencies := rec(
GAP := ">=4.4",
NeededOtherPackages := [[ "Alnuth", ">=2.2.3" ]],
SuggestedOtherPackages := [],
ExternalConditions := ["latex and the dvi-viewer xdvi are recommended"]
),
AvailabilityTest := ReturnTrue,
Autoload := false,
BannerString := Concatenation(ListWithIdenticalEntries(SizeScreen()[1]-3, '-'),
"\nLoading ", ~.PackageName, " ", ~.Version, " (", ~.Subtitle, ")\nby ",
~.Persons[1].FirstNames, " ", ~.Persons[1].LastName, " (",
~.Persons[1].Email, ")\n",
ListWithIdenticalEntries(SizeScreen()[1]-3, '-'), "\n" ),
## *Optional*, but recommended: path relative to package root to a file which
## contains as many tests of the package functionality as sensible.
TestFile := "tst/testall.g",
Keywords := ["roots", "radicals"]
));
#############################################################################
##
#E
|