From 1e2c1ede059e6e5b5d5778e7c682c2a7fad7427f Mon Sep 17 00:00:00 2001 From: Suguru Hirahara Date: Sat, 7 Dec 2024 18:32:52 +0900 Subject: [PATCH] Setting up REUSE: add copyright statements to files on the root directory flack.lock, flake.nix, and requirements.yml are taken care of with REUSE.toml Signed-off-by: Suguru Hirahara --- .editorconfig | 4 ++++ .envrc | 4 ++++ .gitattributes | 4 ++++ .gitignore | 4 ++++ .yamllint | 4 ++++ CHANGELOG.md | 6 ++++++ Makefile | 4 ++++ README.md | 6 ++++++ REUSE.toml | 4 ++++ YEAR-IN-REVIEW.md | 6 ++++++ ansible.cfg | 4 ++++ jitsi_jvb.yml | 4 ++++ justfile | 4 ++++ setup.yml | 4 ++++ 14 files changed, 62 insertions(+) diff --git a/.editorconfig b/.editorconfig index dc97b48dd..8434c6e63 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + # This file is the top-most EditorConfig file root = true diff --git a/.envrc b/.envrc index 8392d159f..ca54d0cad 100644 --- a/.envrc +++ b/.envrc @@ -1 +1,5 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + use flake \ No newline at end of file diff --git a/.gitattributes b/.gitattributes index 6313b56c5..2514a0d8a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,5 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + * text=auto eol=lf diff --git a/.gitignore b/.gitignore index 42e31f650..820bee055 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + /inventory /roles/**/files/scratchpad .DS_Store diff --git a/.yamllint b/.yamllint index 75da2b702..5d36312cb 100644 --- a/.yamllint +++ b/.yamllint @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + --- extends: default diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cd25b0ab..653ff74f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ + + # 2024-11-26 ## (Backward Compatibility Break) Synapse now defaults to enabling authenticated media diff --git a/Makefile b/Makefile index 3379b8fff..58d53ef04 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + .PHONY: roles lint help: ## Show this help. diff --git a/README.md b/README.md index 412b73b65..9a6aed6b4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,9 @@ + + [![Support room on Matrix](https://img.shields.io/matrix/matrix-docker-ansible-deploy:devture.com.svg?label=%23matrix-docker-ansible-deploy%3Adevture.com&logo=matrix&style=for-the-badge&server_fqdn=matrix.devture.com)](https://matrix.to/#/#matrix-docker-ansible-deploy:devture.com) [![donate](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/s.pantaleev/donate) # Matrix (An open network for secure, decentralized communication) server setup using Ansible and Docker diff --git a/REUSE.toml b/REUSE.toml index b3454a3e1..36b5f3cf8 100644 --- a/REUSE.toml +++ b/REUSE.toml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + version = 1 # Computer-generated files diff --git a/YEAR-IN-REVIEW.md b/YEAR-IN-REVIEW.md index cf48fc095..bd870d13e 100644 --- a/YEAR-IN-REVIEW.md +++ b/YEAR-IN-REVIEW.md @@ -1,3 +1,9 @@ + + # 2023 2023 was a year filled with many changes for matrix-docker-ansible-deploy. In this post, we're looking backward at some of the major changes that happened this year, as well as taking a glimpse of what's ahead in 2024. diff --git a/ansible.cfg b/ansible.cfg index 360ce153c..ed2efea06 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + [defaults] retry_files_enabled = False stdout_callback = yaml diff --git a/jitsi_jvb.yml b/jitsi_jvb.yml index 16acd0ee6..8468a17fa 100644 --- a/jitsi_jvb.yml +++ b/jitsi_jvb.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + --- - name: "Set up additional Jitsi JVB servers" hosts: "jitsi_jvb_servers" diff --git a/justfile b/justfile index c21b56679..2bf0105df 100644 --- a/justfile +++ b/justfile @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + # Shows help default: @just --list --justfile {{ justfile() }} diff --git a/setup.yml b/setup.yml index cb5fd7a1a..5243e7641 100644 --- a/setup.yml +++ b/setup.yml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 MDAD Team and contributors +# +# SPDX-License-Identifier: AGPL-3.0-or-later + --- - name: "Set up a Matrix server" hosts: "{{ target if target is defined else 'matrix_servers' }}"