From 887d89eaccd2b932347f8df69c1daf6f74b09426 Mon Sep 17 00:00:00 2001 From: Amolith Date: Sun, 24 Sep 2023 16:57:56 -0400 Subject: [PATCH] reuse compliance --- .gitignore | 4 ++++ git.go | 4 ++++ go.mod | 4 ++++ go.sum.license | 3 +++ main.go | 4 ++++ releases.go | 4 ++++ rss.go | 4 ++++ screenshots/2023-09-24.png.license | 3 +++ static/home.html | 6 ++++++ static/new.html | 6 ++++++ static/select-release.html | 6 ++++++ ws.go | 4 ++++ 12 files changed, 52 insertions(+) create mode 100644 go.sum.license create mode 100644 screenshots/2023-09-24.png.license diff --git a/.gitignore b/.gitignore index 40069ef..044f865 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: Amolith +# +# SPDX-License-Identifier: CC0-1.0 + /willow /*.csv /data/ diff --git a/git.go b/git.go index 5501daf..6a261c9 100644 --- a/git.go +++ b/git.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: Amolith +// +// SPDX-License-Identifier: Apache-2.0 + package main import ( diff --git a/go.mod b/go.mod index 5999f93..d881b2f 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: Amolith +// +// SPDX-License-Identifier: CC0-1.0 + module git.sr.ht/~amolith/willow go 1.20 diff --git a/go.sum.license b/go.sum.license new file mode 100644 index 0000000..3dbb1e2 --- /dev/null +++ b/go.sum.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: Amolith + +SPDX-License-Identifier: CC0-1.0 diff --git a/main.go b/main.go index db635fc..a3623ed 100644 --- a/main.go +++ b/main.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: Amolith +// +// SPDX-License-Identifier: Apache-2.0 + package main import ( diff --git a/releases.go b/releases.go index 9969544..f5e1b4b 100644 --- a/releases.go +++ b/releases.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: Amolith +// +// SPDX-License-Identifier: Apache-2.0 + package main import ( diff --git a/rss.go b/rss.go index e81ce02..2c98c3a 100644 --- a/rss.go +++ b/rss.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: Amolith +// +// SPDX-License-Identifier: Apache-2.0 + package main import ( diff --git a/screenshots/2023-09-24.png.license b/screenshots/2023-09-24.png.license new file mode 100644 index 0000000..3dbb1e2 --- /dev/null +++ b/screenshots/2023-09-24.png.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: Amolith + +SPDX-License-Identifier: CC0-1.0 diff --git a/static/home.html b/static/home.html index 2805e0e..f904d14 100644 --- a/static/home.html +++ b/static/home.html @@ -1,3 +1,9 @@ + + diff --git a/static/new.html b/static/new.html index 6657bbd..03c456c 100644 --- a/static/new.html +++ b/static/new.html @@ -1,3 +1,9 @@ + + diff --git a/static/select-release.html b/static/select-release.html index 0889250..3198d8e 100644 --- a/static/select-release.html +++ b/static/select-release.html @@ -1,3 +1,9 @@ + + diff --git a/ws.go b/ws.go index 2d78b8e..e58da35 100644 --- a/ws.go +++ b/ws.go @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: Amolith +// +// SPDX-License-Identifier: Apache-2.0 + package main import (