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 132 133 134 135 136 137 138
|
###########################################################################
##
#W PackageInfo.g OpenMath Package Marco Costantini
## Alexander Konovalov
## Max Nicosia
## Andrew Solomon
##
#Y Copyright (C) 1999, 2000, 2001, 2006, 2007-2011
#Y School Math and Comp. Sci., University of St. Andrews, Scotland
#Y Copyright (C) 2004, 2005, 2006 Marco Costantini
##
## PackageInfo.g file
##
SetPackageInfo( rec(
PackageName := "OpenMath",
Subtitle := "OpenMath functionality in GAP",
Version := "11.4.2",
Date := "28/02/2017",
## <#GAPDoc Label="PKGVERSIONDATA">
## <!ENTITY VERSION "11.4.2">
## <!ENTITY RELEASEDATE "28 February 2017">
## <!ENTITY RELEASEYEAR "2017">
## <#/GAPDoc>
SourceRepository := rec(
Type := "git",
URL := Concatenation( "https://github.com/gap-packages/", LowercaseString(~.PackageName) ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
PackageWWWHome := Concatenation( "https://gap-packages.github.io/", LowercaseString(~.PackageName) ),
README_URL := Concatenation( ~.PackageWWWHome, "/README.md" ),
PackageInfoURL := Concatenation( ~.PackageWWWHome, "/PackageInfo.g" ),
ArchiveURL := Concatenation( ~.SourceRepository.URL,
"/releases/download/v", ~.Version,
"/", ~.PackageName, "-", ~.Version ),
ArchiveFormats := ".tar.gz",
Persons := [
rec(
LastName := "Costantini",
FirstNames := "Marco",
IsAuthor := true,
IsMaintainer := false
),
rec(
LastName := "Konovalov",
FirstNames := "Alexander",
IsAuthor := true,
IsMaintainer := true,
Email := "alexander.konovalov@st-andrews.ac.uk",
WWWHome := "http://blogs.cs.st-andrews.ac.uk/alexk/",
PostalAddress := Concatenation( [
"School of Computer Science\n",
"University of St Andrews\n",
"Jack Cole Building, North Haugh,\n",
"St Andrews, Fife, KY16 9SX, Scotland" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Nicosia",
FirstNames := "Max",
IsAuthor := true,
IsMaintainer := true,
Email := "lmn27@cam.ac.uk",
WWWHome := "http://www-edc.eng.cam.ac.uk/~lmn27/",
PostalAddress := Concatenation( [
"University of Cambridge\n",
"Department of Engineering\n",
"Engineering Design Centre\n",
"Intelligent Interactive Systems Group\n",
"Trumpington Street, Cambridge, CB2 1PZ, UK" ] ),
Place := "St Andrews",
Institution := "University of St Andrews"
),
rec(
LastName := "Solomon",
FirstNames := "Andrew",
IsAuthor := true,
IsMaintainer := false,
PostalAddress := Concatenation( [
"Faculty of IT\n",
"University of Technology, Sydney\n",
"Broadway, NSW 2007\n",
"Australia" ] ),
Institution := "Faculty of Information Technology, University of Technology, Sydney."
),
],
Status := "accepted",
CommunicatedBy := "David Joyner (Annapolis)",
AcceptDate := "08/2010",
AbstractHTML :=
"This package provides an <a href=\"http://www.openmath.org/\">OpenMath</a> \
phrasebook for <span class=\"pkgname\">GAP</span>. \
This package allows <span class=\"pkgname\">GAP</span> users to import \
and export mathematical objects encoded in OpenMath, for the purpose of \
exchanging them with other applications that are OpenMath enabled.",
PackageDoc := rec(
BookName := "OpenMath",
ArchiveURLSubset := ["doc"],
HTMLStart := "doc/chap0.html",
PDFFile := "doc/manual.pdf",
SixFile := "doc/manual.six",
LongTitle := "OpenMath functionality in GAP",
Autoload := true
),
Dependencies := rec(
GAP := ">=4.8",
# Needed packages:
# GapDoc provides the function ParseTreeXMLString
# IO is needed to generate random string from really random source
NeededOtherPackages := [ [ "GapDoc", ">= 1.5" ],
[ "IO", ">= 4.4"] ],
ExternalConditions := [ ]
),
AvailabilityTest := ReturnTrue,
Autoload := false,
TestFile := "tst/testall.g",
Keywords := [ "OpenMath", "Phrasebook" ]
));
#############################################################################
#E
|