Thank you for taking the time to produce the diffs. These are very easy
to read.
Comments:
Licensing .gitignore is excessive. If REUSE requires licenses for
trivial files, perhaps list all of those in a metadata file.
Comments in .html files should probably go below the <html> tag. See
e.g.
https://stackoverflow.com/questions/941100/can-comments-appear-before-the-doctype-declaration
In comments of the following form
# SPDX-FileCopyrightText: 2015 Arthur A. Gleckler <[email protected]>
#
# SPDX-License-Identifier: MIT
the blank line in the middle can be omitted to save space. And last I
checked, "SPDX-FileCopyrightText:" could be replaced with "Copyright"
for more natural looking notices. E.g.
# Copyright 2015 Arthur A. Gleckler <[email protected]>
# SPDX-License-Identifier: MIT
We keep a bunch of per-SRFI metadata as S-expressions in this file:
https://raw.githubusercontent.com/scheme-requests-for-implementation/srfi-common/master/admin/srfi-data.scm
The file is regularly updated. I think we should store licensing
information in there, and a script would then generate the files
required by REUSE into the SRFI's repos. Arthur already generates the
README files, so it's not much work to generate extra stuff.