diff --git a/PackageInfo.g b/PackageInfo.g index a1610ae..e7649be 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -5,15 +5,6 @@ ## (created from Frank Lübeck's PackageInfo.g template file) ## -## For the LoadPackage mechanism in GAP >= 4.4 only the entries -## .PackageName, .Version, .PackageDoc, .Dependencies, .AvailabilityTest -## .Autoload are needed. The other entries are relevant if the -## package shall be distributed for other GAP users, in particular if it -## shall be redistributed via the GAP Website. - -## With a new release of the package at least the entries .Version, .Date and -## .ArchiveURL must be updated. - SetPackageInfo( rec( ## This is case sensitive, use your preferred spelling. @@ -195,8 +186,6 @@ PackageWWWHome := "http://homalg.math.rwth-aachen.de/index.php/unreleased/d-modu ## - the name of the book (.BookName) ## - a long title, shown by ?books (.LongTitle, optional) ## - the path to the manual.six file for this book (.SixFile) -## - a decision if the book should be (auto)loaded, probably 'true' -## (.Autoload) ## ## For an online version on a Web page further entries are needed, ## if possible, provide an HTML- and a PDF-version: @@ -226,9 +215,6 @@ PackageDoc := rec( # fit on a single text line (appears with the '?books' command in GAP) # LongTitle := "Elementary Divisors of Integer Matrices", LongTitle := "A homalg based package for D-modules", - # Should this help book be autoloaded when GAP starts up? This should - # usually be 'true', otherwise say 'false'. - Autoload := false ), @@ -263,37 +249,7 @@ Dependencies := rec( ), -## Provide a test function for the availability of this package. -## For packages which will not fully work, use 'Info(InfoWarning, 1, -## ".....")' statements. For packages containing nothing but GAP code, -## just say 'ReturnTrue' here. -## With the new package loading mechanism (GAP >=4.4) the availability -## tests of other packages, as given under .Dependencies above, will be -## done automatically and need not be included in this function. -#AvailabilityTest := ReturnTrue, -AvailabilityTest := function() - return true; - end, - -## The LoadPackage mechanism can produce a default banner from the info -## in this file. If you are not happy with it, you can provide a string -## here that is used as a banner. GAP decides when the banner is shown and -## when it is not shown. *optional* (note the ~-syntax in this example) -#BannerString := Concatenation( -# "----------------------------------------------------------------\n", -# "Loading D-Modules ", ~.Version, "\n", -# "by ", ~.Persons[1].FirstNames, " ", ~.Persons[1].LastName, -# " (", ~.Persons[1].WWWHome, ")\n", -# "Type:\n", -# " ?D-Modules: ## for the contents of the manual\n", -# " ?D-Modules:x ## for chapter/section/topic x\n", -# "----------------------------------------------------------------\n" ), -# -## Suggest here if the package should be *automatically loaded* when GAP is -## started. This should usually be 'false'. Say 'true' only if your package -## provides some improvements of the GAP library which are likely to enhance -## the overall system performance for many users. -Autoload := false, +AvailabilityTest := ReturnTrue, ## *Optional*, but recommended: path relative to package root to a file which ## contains as many tests of the package functionality as sensible. @@ -305,5 +261,3 @@ Autoload := false, Keywords := [ "D-modules", "injective modules", "injective cogenerators", "Malgrange isomorphism" ] )); - -