Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/GAP/pkg/packagemanager/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 14.4.2025 mit Größe 3 kB image not shown  

Quelle  PackageInfo.g   Sprache: unbekannt

 
#
# PackageManager: Easily download and install GAP packages
#
# This file contains package meta data. For additional information on
# the meaning and correct usage of these fields, please consult the
# manual of the "Example" package as well as the comments in its
# PackageInfo.g file.
#
SetPackageInfo( rec(

PackageName := "PackageManager",
Subtitle := "Easily download and install GAP packages",
Version := "1.6.3",
Date := "14/05/2025",  # dd/mm/yyyy format
License := "GPL-2.0-or-later",

Persons := [
  rec(
    IsAuthor := true,
    IsMaintainer := true,
    FirstNames := "Michael",
    LastName := "Young",
    WWWHome := "https://myoung.uk/work",
    Email := "mct25@st-andrews.ac.uk",
    PostalAddress := Concatenation(
               "School of Computer Science\n",
               "University of St Andrews\n",
               "Jack Cole Building, North Haugh\n",
               "St Andrews, Fife, KY16 9SX\n",
               "United Kingdom" ),
    Place := "St Andrews",
    Institution := "University of St Andrews",
  ),
  rec(
    LastName      := "GAP Team",
    FirstNames    := "The",
    IsAuthor      := false,
    IsMaintainer  := true,
    Email         := "support@gap-system.org",
  ),
],

SourceRepository := rec(
    Type := "git",
    URL := Concatenation( "https://github.com/gap-packages/", ~.PackageName ),
),
IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ),
#SupportEmail   := "TODO",
PackageWWWHome  := "https://gap-packages.github.io/PackageManager/",
PackageInfoURL  := Concatenation( ~.PackageWWWHome, "PackageInfo.g" ),
README_URL      := Concatenation( ~.PackageWWWHome, "README.md" ),
ArchiveURL      := Concatenation( ~.SourceRepository.URL,
                                 "/releases/download/v", ~.Version,
                                 "/", ~.PackageName, "-", ~.Version ),

ArchiveFormats := ".tar.gz",

##  Status information. Currently the following cases are recognized:
##    "accepted"      for successfully refereed packages
##    "submitted"     for packages submitted for the refereeing
##    "deposited"     for packages for which the GAP developers agreed
##                    to distribute them with the core GAP system
##    "dev"           for development versions of packages
##    "other"         for all other packages
##
Status := "deposited",

AbstractHTML :=
  "<span class=\"pkgname\">PackageManager</span> is a basic collection of \
   simple functions for installing and removing \
   <span class=\"pkgname\">GAP</span> packages, with the eventual aim of \
   becoming a full pip-style package manager for the \
   <span class=\"pkgname\">GAP</span> system.",

PackageDoc := rec(
  BookName  := "PackageManager",
  ArchiveURLSubset := ["doc"],
  HTMLStart := "doc/chap0_mj.html",
  PDFFile   := "doc/manual.pdf",
  SixFile   := "doc/manual.six",
  LongTitle := "Easily download and install GAP packages",
),

Dependencies := rec(
  GAP := ">= 4.12",
  NeededOtherPackages := [],
  SuggestedOtherPackages := [ [ "GAPDoc", ">= 1.6.1" ],
                              [ "AutoDoc", ">= 2025.05.09" ],
                              [ "curlInterface", ">= 2.1.0" ] ],
  ExternalConditions := [ ],
),

Extensions := [
    rec( needed := [ [ "JuliaInterface", ">= 0.9.3" ] ],
         filename := "gap/Julia.g" ),
],

AvailabilityTest := ReturnTrue,

# This is a limited test suite that doesn't try to build docs,
# since the GAP Docker images don't have texlive installed.
# For a full test suite, run tst/testall.g (as Travis does).
TestFile := "tst/testall.g",

#Keywords := [ "TODO" ],

));

[ Dauer der Verarbeitung: 0.20 Sekunden  (vorverarbeitet)  ]