From 37f065f1bf0b50675a7e06670566bee5e59c8bbf Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Sun, 7 Jul 2024 19:02:57 +0200 Subject: [PATCH] chore: Migrate REUSE to TOML format Signed-off-by: Andy Scherzinger --- .reuse/dep5 | 8 -------- REUSE.toml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 8 deletions(-) delete mode 100644 .reuse/dep5 create mode 100644 REUSE.toml diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index b338763..0000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,8 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: profiler -Upstream-Contact: Carl Schwan -Source: https://github.com/nextcloud/profiler - -Files: .editorconfig babel.config.js .php-cs-fixer.dist.php package-lock.json package.json composer.json composer.lock img/app-dark.svg img/app.svg webpack.js stylelint.config.js .eslintrc.js .gitignore .jshintrc .l10nignore action/.gitignore action/package.json action/package-lock.json action/dist/index.js tests/* psalm.xml -Copyright: none -License: CC0-1.0 diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 0000000..9c44f48 --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,12 @@ +# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: AGPL-3.0-or-later +version = 1 +SPDX-PackageName = "profiler" +SPDX-PackageSupplier = "Carl Schwan " +SPDX-PackageDownloadLocation = "https://github.com/nextcloud/profiler" + +[[annotations]] +path = [".editorconfig", "babel.config.js", ".php-cs-fixer.dist.php", "package-lock.json", "package.json", "composer.json", "composer.lock", "img/app-dark.svg", "img/app.svg", "webpack.js", "stylelint.config.js", ".eslintrc.js", ".gitignore", ".jshintrc", ".l10nignore", "action/.gitignore", "action/package.json", "action/package-lock.json", "action/dist/index.js", "tests/**", "psalm.xml"] +precedence = "aggregate" +SPDX-FileCopyrightText = "none" +SPDX-License-Identifier = "CC0-1.0"