|
| 1 | +# SPDX-License-Identifier: GPL-2.0-or-later |
| 2 | +# GroupsAsCategoriesForCAP: Groups as categories on one object |
| 3 | +# |
| 4 | +# This file contains package meta data. For additional information on |
| 5 | +# the meaning and correct usage of these fields, please consult the |
| 6 | +# manual of the "Example" package as well as the comments in its |
| 7 | +# PackageInfo.g file. |
| 8 | +# |
| 9 | +SetPackageInfo( rec( |
| 10 | + |
| 11 | +PackageName := "GroupsAsCategoriesForCAP", |
| 12 | +Subtitle := "Groups as categories on one object", |
| 13 | +Version := "2025.06-02", |
| 14 | +Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ), |
| 15 | +License := "GPL-2.0-or-later", |
| 16 | + |
| 17 | +Persons := [ |
| 18 | + rec( |
| 19 | + IsAuthor := true, |
| 20 | + IsMaintainer := true, |
| 21 | + FirstNames := "Sebastian", |
| 22 | + LastName := "Posur", |
| 23 | + WWWHome := "https://sebastianpos.github.io", |
| 24 | + Email := "sebastian.posur@uni-siegen.de", |
| 25 | + PostalAddress := Concatenation( |
| 26 | + "Department Mathematik\n", |
| 27 | + "Universität Siegen\n", |
| 28 | + "Walter-Flex-Straße 3\n", |
| 29 | + "57068 Siegen\n", |
| 30 | + "Germany" ), |
| 31 | + Place := "Siegen", |
| 32 | + Institution := "University of Siegen", |
| 33 | + ), |
| 34 | + rec( |
| 35 | + IsAuthor := true, |
| 36 | + IsMaintainer := true, |
| 37 | + FirstNames := "Fabian", |
| 38 | + LastName := "Zickgraf", |
| 39 | + WWWHome := "https://github.com/zickgraf/", |
| 40 | + Email := "fabian.zickgraf@uni-siegen.de", |
| 41 | + PostalAddress := Concatenation( |
| 42 | + "Walter-Flex-Str. 3\n", |
| 43 | + "57068 Siegen\n", |
| 44 | + "Germany" ), |
| 45 | + Place := "Siegen", |
| 46 | + Institution := "University of Siegen", |
| 47 | + ), |
| 48 | +], |
| 49 | + |
| 50 | +# BEGIN URLS |
| 51 | +SourceRepository := rec( |
| 52 | + Type := "git", |
| 53 | + URL := "https://github.com/homalg-project/CAP_project", |
| 54 | +), |
| 55 | +IssueTrackerURL := Concatenation( ~.SourceRepository.URL, "/issues" ), |
| 56 | +PackageWWWHome := "https://homalg-project.github.io/pkg/GroupsAsCategoriesForCAP", |
| 57 | +PackageInfoURL := "https://homalg-project.github.io/CAP_project/GroupsAsCategoriesForCAP/PackageInfo.g", |
| 58 | +README_URL := "https://homalg-project.github.io/CAP_project/GroupsAsCategoriesForCAP/README.md", |
| 59 | +ArchiveURL := Concatenation( "https://github.com/homalg-project/CAP_project/releases/download/GroupsAsCategoriesForCAP-", ~.Version, "/GroupsAsCategoriesForCAP-", ~.Version ), |
| 60 | +# END URLS |
| 61 | + |
| 62 | +ArchiveFormats := ".tar.gz .zip", |
| 63 | + |
| 64 | +## Status information. Currently the following cases are recognized: |
| 65 | +## "accepted" for successfully refereed packages |
| 66 | +## "submitted" for packages submitted for the refereeing |
| 67 | +## "deposited" for packages for which the GAP developers agreed |
| 68 | +## to distribute them with the core GAP system |
| 69 | +## "dev" for development versions of packages |
| 70 | +## "other" for all other packages |
| 71 | +## |
| 72 | +Status := "dev", |
| 73 | + |
| 74 | +AbstractHTML := "", |
| 75 | + |
| 76 | +PackageDoc := rec( |
| 77 | + BookName := "GroupsAsCategoriesForCAP", |
| 78 | + ArchiveURLSubset := ["doc"], |
| 79 | + HTMLStart := "doc/chap0.html", |
| 80 | + PDFFile := "doc/manual.pdf", |
| 81 | + SixFile := "doc/manual.six", |
| 82 | + LongTitle := "Groups as categories on one object", |
| 83 | +), |
| 84 | + |
| 85 | +Dependencies := rec( |
| 86 | + GAP := ">= 4.13.0", |
| 87 | + NeededOtherPackages := [ [ "CAP", ">= 2025.06-05" ], |
| 88 | + ], |
| 89 | + SuggestedOtherPackages := [ [ "FinSetsForCAP", ">= 2023.07-03" ], |
| 90 | + ], |
| 91 | + ExternalConditions := [ ], |
| 92 | +), |
| 93 | + |
| 94 | +Extensions := [ |
| 95 | + rec( |
| 96 | + needed := [ [ "FinSetsForCAP", ">= 2023.07-03" ] ], |
| 97 | + filename := "gap/HomomorphismStructure.gi", |
| 98 | + ), |
| 99 | +], |
| 100 | + |
| 101 | +AvailabilityTest := function() |
| 102 | + return true; |
| 103 | + end, |
| 104 | +#Keywords := [ "TODO" ], |
| 105 | + |
| 106 | +TestFile := "tst/testall.g", |
| 107 | + |
| 108 | +)); |
0 commit comments