Skip to content

Commit

Permalink
Update to latest GitHubPagesForGAP template
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Feb 20, 2024
1 parent 17df239 commit b9030c1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions _data/package.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: AutomGrp
version: "1.3.2"
license: "MIT"
date: 2019-09-30
description: |
Automata groups
Expand Down
4 changes: 4 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ The current version of this package is version {{site.data.package.version}}, re
For more information, please refer to [the package manual]({{site.data.package.doc-html}}).
There is also a [README](README.html) file.

{% if site.data.package.license %}
License: [{{ site.data.package.license }}](https://spdx.org/licenses/{{ site.data.package.license }})
{% endif %}

## Dependencies

This package requires GAP version {{site.data.package.GAP}}
Expand Down
3 changes: 3 additions & 0 deletions update.g
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ GeneratePackageYML:=function(pkg)

AppendTo(stream, "name: ", pkg.PackageName, "\n");
AppendTo(stream, "version: \"", pkg.Version, "\"\n");
if IsBound(pkg.License) then
AppendTo(stream, "license: \"", pkg.License, "\"\n");
fi;

# convert date from DD/MM/YYYY to ISO 8601, i.e. YYYY-MM-DD
#
Expand Down

0 comments on commit b9030c1

Please sign in to comment.