From 520256449fd66c2ecb40ecc213d605dc81c3cb54 Mon Sep 17 00:00:00 2001 From: Vitor Mattos Date: Wed, 30 Oct 2024 09:51:05 -0300 Subject: [PATCH] chore: convert dep5 tto reuse.toml Solve: ``` /opt/venv/lib/python3.11/site-packages/reuse/project.py:332: PendingDeprecationWarning: '.reuse/dep5' is deprecated. You are recommended to instead use REUSE.toml. Use `reuse convert-dep5` to convert. ``` Signed-off-by: Vitor Mattos --- .reuse/dep5 | 52 ------------------------------------------- REUSE.toml | 63 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 52 deletions(-) delete mode 100644 .reuse/dep5 create mode 100644 REUSE.toml diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index 4a49bbce2..000000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,52 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: libresign -Upstream-Contact: LibreCode -Source: https://github.com/LibreSign/libresign - -Files: .github/CODEOWNERS -Copyright: none -License: CC0-1.0 - -Files: .devcontainer/devcontainer.json - appinfo/info.xml - composer.json - composer.lock - .github/ISSUE_TEMPLATE/2_feature_request.md - .github/ISSUE_TEMPLATE/feature_request.md - .github/pull_request_template.md - .prettierrc - .tx/config - img/*.png - img/*.svg - img/screenshot/* - jsconfig.json - l10n/*.js - l10n/*.json - Makefile - openapi-administration.json - openapi-full.json - openapi.json - package-lock.json - package.json - phpunit.xml - psalm.xml - src/types/openapi/openapi-administration.ts - src/types/openapi/openapi-full.ts - src/types/openapi/openapi.ts - tests/Unit/Handler/mock/cert.json - tests/fixtures/cfssl/newcert-with-success.json - tests/fixtures/small_valid-signed.pdf - tests/fixtures/small_valid.pdf - tests/integration/composer.json - tests/integration/composer.lock - tests/integration/features/*/*.feature - tests/psalm-baseline.xml - tsconfig.json - vendor-bin/*/composer.json - vendor-bin/*/composer.lock -Copyright: 2020-2024 LibreCode coop and contributors -License: AGPL-3.0-or-later - -Files: src/assets/fonts/DancingScript/DancingScript.ttf -Copyright: 2012-2024 Google LLC -License: OFL-1.1 diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 000000000..3fe95e4b3 --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,63 @@ +# SPDX-FileCopyrightText: 2024 LibreCode coop and contributors +# SPDX-License-Identifier: AGPL-3.0-or-later +version = 3.0 +[project] +name = "libresign" +homepage = "https://github.com/LibreSign/libresign" +contact = "LibreCode " + +default-license = "AGPL-3.0-or-later" +default-copyright = "2020-2024 LibreCode coop and contributors" + +[[files]] +pattern = ".github/CODEOWNERS" +license = "CC0-1.0" +copyright = "none" + +[[files]] +pattern = [ + ".devcontainer/devcontainer.json", + "appinfo/info.xml", + "composer.json", + "composer.lock", + ".github/ISSUE_TEMPLATE/2_feature_request.md", + ".github/ISSUE_TEMPLATE/feature_request.md", + ".github/pull_request_template.md", + ".prettierrc", + ".tx/config", + "img/*.png", + "img/*.svg", + "img/screenshot/*", + "jsconfig.json", + "l10n/*.js", + "l10n/*.json", + "Makefile", + "openapi-administration.json", + "openapi-full.json", + "openapi.json", + "package-lock.json", + "package.json", + "phpunit.xml", + "psalm.xml", + "src/types/openapi/openapi-administration.ts", + "src/types/openapi/openapi-full.ts", + "src/types/openapi/openapi.ts", + "tests/Unit/Handler/mock/cert.json", + "tests/fixtures/cfssl/newcert-with-success.json", + "tests/fixtures/small_valid-signed.pdf", + "tests/fixtures/small_valid.pdf", + "tests/integration/composer.json", + "tests/integration/composer.lock", + "tests/integration/features/*/*.feature", + "tests/psalm-baseline.xml", + "tsconfig.json", + "vendor-bin/*/composer.json", + "vendor-bin/*/composer.lock" +] +license = "AGPL-3.0-or-later" +copyright = "2020-2024 LibreCode coop and contributors" + +[[files]] +pattern = "src/assets/fonts/DancingScript/DancingScript.ttf" +license = "OFL-1.1" +copyright = "2012-2024 Google LLC"