Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 17 additions & 23 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,39 +10,35 @@ SetPackageInfo( rec(

PackageName := "AttributeScheduler",
Subtitle := "Graph and methods to compute attribute with dependencies",
Version := "2019.12.05",
Date := "05/12/2019", # dd/mm/yyyy format
Version := "0.1",
Date := "15/04/2025", # dd/mm/yyyy format
License := "GPL-3.0-or-later",

Persons := [
rec(
IsAuthor := true,
IsMaintainer := true,
IsMaintainer := false,
FirstNames := "Sebastian",
LastName := "Gutsche",
WWWHome := "http://wwwb.math.rwth-aachen.de/~gutsche/",
Email := "gutsche@mathematik.uni-siegen.de",
PostalAddress := "TODO",
Place := "Siegen",
Institution := "University of Siegen",
Email := " sebastian.gutsche@gmail.com"
),
rec(
IsAuthor := true,
IsMaintainer := true,
IsMaintainer := false,
FirstNames := "Markus",
LastName := "Baumeister",
WWWHome := "https://www.mathb.rwth-aachen.de",
Email := "baumeister@momo.math.rwth-aachen.de",
PostalAddress := "TODO",
Place := "Aachen",
Institution := "RWTH Aachen University",
Email := "baumeister@momo.math.rwth-aachen.de"
),
],

PackageWWWHome := "http://TODO/",
PackageWWWHome := "https://github.com/gap-packages/AttributeScheduler",

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

ArchiveFormats := ".tar.gz",

Expand All @@ -69,14 +65,12 @@ PackageDoc := rec(

Dependencies := rec(
GAP := ">= 4.6",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ] ],
SuggestedOtherPackages := [ ],
NeededOtherPackages := [ ],
SuggestedOtherPackages := [ [ "GAPDoc", ">= 1.5" ] ],
ExternalConditions := [ ],
),

AvailabilityTest := function()
return true;
end,
AvailabilityTest := ReturnTrue,

TestFile := "tst/testall.g",

Expand Down
2 changes: 1 addition & 1 deletion gap/AttributeScheduler.gd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
## AttributeSchedulerGraph
##
## Copyright 2017, Markus Baumeister, RWTH Aachen
## Copyright 2025, Markus Baumeister, RWTH Aachen
## Sebastian Gutsche, Siegen University
##
##
Expand Down
2 changes: 1 addition & 1 deletion gap/AttributeScheduler.gi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
##
## AttributeSchedulerGraph
##
## Copyright 2017, Markus Baumeister, RWTH Aachen
## Copyright 2025, Markus Baumeister, RWTH Aachen
## Sebastian Gutsche, Siegen University
##
#############################################################################
Expand Down