Skip to content

Commit

Permalink
Merge pull request homalg-project#6 from fingolfin/mh/cleanup
Browse files Browse the repository at this point in the history
Cleanup PackageInfo.g
  • Loading branch information
mohamed-barakat authored May 4, 2021
2 parents fed303f + 765bcec commit 9ceef6c
Showing 1 changed file with 1 addition and 47 deletions.
48 changes: 1 addition & 47 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
),


Expand Down Expand Up @@ -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.
Expand All @@ -305,5 +261,3 @@ Autoload := false,
Keywords := [ "D-modules", "injective modules", "injective cogenerators", "Malgrange isomorphism" ]

));


0 comments on commit 9ceef6c

Please sign in to comment.