Просмотр исходного кода

Tribute to deprecated components: add license information to files for matrix-bot-go-neb

This commit adds copyright attirbutions in SPDX format to files for matrix-bot-go-neb, following the REUSE's specification.

Signed-off-by: Suguru Hirahara <acioustick@noreply.codeberg.org>
pull/4101/head
Suguru Hirahara 1 год назад
Родитель
Сommit
329fa105bf
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: E4F9743DAB4B7B75
10 измененных файлов: 67 добавлений и 0 удалений
  1. +10
    -0
      docs/configuring-playbook-bot-go-neb.md
  2. +9
    -0
      roles/custom/matrix-bot-go-neb/defaults/main.yml
  3. +10
    -0
      roles/custom/matrix-bot-go-neb/tasks/install.yml
  4. +6
    -0
      roles/custom/matrix-bot-go-neb/tasks/main.yml
  5. +7
    -0
      roles/custom/matrix-bot-go-neb/tasks/uninstall.yml
  6. +5
    -0
      roles/custom/matrix-bot-go-neb/tasks/validate_config.yml
  7. +4
    -0
      roles/custom/matrix-bot-go-neb/templates/config.yaml.j2.license
  8. +6
    -0
      roles/custom/matrix-bot-go-neb/templates/env.j2
  9. +6
    -0
      roles/custom/matrix-bot-go-neb/templates/labels.j2
  10. +4
    -0
      roles/custom/matrix-bot-go-neb/templates/systemd/matrix-bot-go-neb.service.j2.license

+ 10
- 0
docs/configuring-playbook-bot-go-neb.md Просмотреть файл

@@ -1,3 +1,13 @@
<!--
SPDX-FileCopyrightText: 2021 Yannick Goossens
SPDX-FileCopyrightText: 2021 - 2024 Slavi Pantaleev
SPDX-FileCopyrightText: 2022 Dennis Ciba
SPDX-FileCopyrightText: 2024 - 2025 Suguru Hirahara
SPDX-FileCopyrightText: 2025 MDAD project contributors

SPDX-License-Identifier: AGPL-3.0-or-later
-->

# Setting up Go-NEB (optional, unmaintained)

**Note**: [Go-NEB](https://github.com/matrix-org/go-neb) is now an archived (**unmaintained**) project. We recommend not bothering with installing it. While not a 1:1 replacement, the bridge's author suggests taking a look at [matrix-hookshot](https://github.com/matrix-org/matrix-hookshot) as a replacement, which can also be installed using [this playbook](configuring-playbook-bridge-hookshot.md). Consider using that bot instead of this one.


+ 9
- 0
roles/custom/matrix-bot-go-neb/defaults/main.yml Просмотреть файл

@@ -1,3 +1,12 @@
# SPDX-FileCopyrightText: 2021 Yannick Goossens
# SPDX-FileCopyrightText: 2021 - 2024 Slavi Pantaleev
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
# SPDX-FileCopyrightText: 2023 Samuel Meenzen
# SPDX-FileCopyrightText: 2024 Suguru Hirahara
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

# Go-NEB is a Matrix bot written in Go. It is the successor to Matrix-NEB, the original Matrix bot written in Python.


+ 10
- 0
roles/custom/matrix-bot-go-neb/tasks/install.yml Просмотреть файл

@@ -1,3 +1,13 @@
# SPDX-FileCopyrightText: 2021 Yannick Goossens
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 Jim Myhrberg
# SPDX-FileCopyrightText: 2022 Nikita Chernyi
# SPDX-FileCopyrightText: 2022 - 2024 Slavi Pantaleev
# SPDX-FileCopyrightText: 2022 Sebastian Gumprich
# SPDX-FileCopyrightText: 2024 David Mehren
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Ensure go-neb paths exist


+ 6
- 0
roles/custom/matrix-bot-go-neb/tasks/main.yml Просмотреть файл

@@ -1,3 +1,9 @@
# SPDX-FileCopyrightText: 2021 Yannick Goossens
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 - 2023 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- tags:


+ 7
- 0
roles/custom/matrix-bot-go-neb/tasks/uninstall.yml Просмотреть файл

@@ -1,3 +1,10 @@
# SPDX-FileCopyrightText: 2021 Yannick Goossens
# SPDX-FileCopyrightText: 2021 - 2023 Slavi Pantaleev
# SPDX-FileCopyrightText: 2022 Marko Weltzer
# SPDX-FileCopyrightText: 2022 Sebastian Gumprich
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Check existence of matrix-go-neb service


+ 5
- 0
roles/custom/matrix-bot-go-neb/tasks/validate_config.yml Просмотреть файл

@@ -1,3 +1,8 @@
# SPDX-FileCopyrightText: 2021 Yannick Goossens
# SPDX-FileCopyrightText: 2022 Slavi Pantaleev
#
# SPDX-License-Identifier: AGPL-3.0-or-later

---

- name: Fail if there's not at least 1 client


+ 4
- 0
roles/custom/matrix-bot-go-neb/templates/config.yaml.j2.license Просмотреть файл

@@ -0,0 +1,4 @@
SPDX-FileCopyrightText: 2021 Yannick Goossens
SPDX-FileCopyrightText: 2022 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later

+ 6
- 0
roles/custom/matrix-bot-go-neb/templates/env.j2 Просмотреть файл

@@ -1,3 +1,9 @@
{#
SPDX-FileCopyrightText: 2023 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later
#}

BIND_ADDRESS=:4050

DATABASE_TYPE={{ matrix_bot_go_neb_database_engine }}


+ 6
- 0
roles/custom/matrix-bot-go-neb/templates/labels.j2 Просмотреть файл

@@ -1,3 +1,9 @@
{#
SPDX-FileCopyrightText: 2023 - 2024 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later
#}

{% if matrix_bot_go_neb_container_labels_traefik_enabled %}
traefik.enable=true



+ 4
- 0
roles/custom/matrix-bot-go-neb/templates/systemd/matrix-bot-go-neb.service.j2.license Просмотреть файл

@@ -0,0 +1,4 @@
SPDX-FileCopyrightText: 2021 Yannick Goossens
SPDX-FileCopyrightText: 2022 - 2025 Slavi Pantaleev

SPDX-License-Identifier: AGPL-3.0-or-later

Загрузка…
Отмена
Сохранить