GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it
SetPackageInfo( rec(
PackageName := "CAP",
Subtitle := "Categories, Algorithms, Programming",
Version := Maximum( [
"2017.06.02", ## Mohamed's version
## this line prevents merge conflicts
"2015.04.01", ## Oystein's version
## this line prevents merge conflicts
"2017.09.25", ## Sebas' version
## this line prevents merge conflicts
"2017.02.15", ## Sepp's version
] ),
Date := ~.Version{[ 1 .. 10 ]},
Date := Concatenation( ~.Date{[ 9, 10 ]}, "/", ~.Date{[ 6, 7 ]}, "/", ~.Date{[ 1 .. 4 ]} ),
Persons := [
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Sebastian",
LastName := "Gutsche",
WWWHome := "http://www.uni-siegen.de/fb6/rmi/",
Email := "[email protected]",
PostalAddress := Concatenation(
"Department Mathematik\n",
"Universität Siegen\n",
"Walter-Flex-Straße 3\n",
"57068 Siegen\n",
"Germany" ),
Place := "Siegen",
Institution := "University of Siegen",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Sebastian",
LastName := "Posur",
WWWHome := "http://www.uni-siegen.de/fb6/rmi/",
Email := "[email protected]",
PostalAddress := Concatenation(
"Department Mathematik\n",
"Universität Siegen\n",
"Walter-Flex-Straße 3\n",
"57068 Siegen\n",
"Germany" ),
Place := "Siegen",
Institution := "University of Siegen",
),
rec(
IsAuthor := true,
IsMaintainer := true,
FirstNames := "Øystein",
LastName := "Skartsæterhagen",
WWWHome := "http://www.math.ntnu.no/~oysteini/",
Email := "[email protected]",
PostalAddress := Concatenation( [
"NTNU\n",
"Institutt for matematiske fag\n",
"7491 Trondheim\n",
"Norway" ] ),
Place := "Trondheim",
Institution := "Norges teknisk-naturvitenskapelige universitet",
),
],
Status := "deposited",
PackageWWWHome := "http://homalg-project.github.io/CAP_project/CAP/",
ArchiveFormats := ".tar.gz .zip",
ArchiveURL := Concatenation( "https://github.com/homalg-project/CAP_project/releases/download/CAP-", ~.Version, "/CAP-", ~.Version ),
README_URL := Concatenation( ~.PackageWWWHome, "README" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
AbstractHTML := "",
PackageDoc := rec(
BookName := "CAP",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "Categories, Algorithms, Programming",
),
Dependencies := rec(
GAP := ">= 4.6",
NeededOtherPackages := [ [ "AutoDoc", ">= 2016.02.16" ],
[ "ToolsForHomalg", ">= 2016.01.17" ],
[ "io", ">=0" ],
],
SuggestedOtherPackages := [ ],
ExternalConditions := []
),
AvailabilityTest := function()
return true;
end,
Autoload := false,
));