From 2c598193cb15512a5ddf81683d2fd436c6824fcd Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Sat, 7 Sep 2024 15:29:16 +0200 Subject: [PATCH] chore: Migrate reuse to toml format Signed-off-by: Andy Scherzinger --- .reuse/dep5 | 20 -------------------- REUSE.toml | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 20 deletions(-) delete mode 100644 .reuse/dep5 create mode 100644 REUSE.toml diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index 361d40fe..00000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,20 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: files_lock -Upstream-Contact: Nextcloud -Source: https://github.com/nextcloud/files_lock - -Files: .tx/config l10n/*.js l10n/*.json -Copyright: 2020 Nextcloud GmbH and Nextcloud contributors -License: AGPL-3.0-or-later - -Files: .github/CODEOWNERS tsconfig.json -Copyright: 2023 Nextcloud GmbH and Nextcloud contributors -License: AGPL-3.0-or-later - -Files: composer.json composer.lock package.json package-lock.json -Copyright: 2019 Nextcloud GmbH and Nextcloud contributors -License: AGPL-3.0-or-later - -Files: tests/phpunit.xml tests/psalm-baseline.xml tests/stub.phpstub tests/litmus/0001-Comment-out-collection-locking-tests.patch -Copyright: 2022 Nextcloud GmbH and Nextcloud contributors -License: AGPL-3.0-or-later diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 00000000..01f9fcfa --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,30 @@ +# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: AGPL-3.0-or-later +version = 1 +SPDX-PackageName = "files_lock" +SPDX-PackageSupplier = "Nextcloud " +SPDX-PackageDownloadLocation = "https://github.com/nextcloud/files_lock" + +[[annotations]] +path = [".tx/config", "l10n/**.js", "l10n/**.json"] +precedence = "aggregate" +SPDX-FileCopyrightText = "2020 Nextcloud GmbH and Nextcloud contributors" +SPDX-License-Identifier = "AGPL-3.0-or-later" + +[[annotations]] +path = [".github/CODEOWNERS", "tsconfig.json"] +precedence = "aggregate" +SPDX-FileCopyrightText = "2023 Nextcloud GmbH and Nextcloud contributors" +SPDX-License-Identifier = "AGPL-3.0-or-later" + +[[annotations]] +path = ["composer.json", "composer.lock", "package.json", "package-lock.json"] +precedence = "aggregate" +SPDX-FileCopyrightText = "2019 Nextcloud GmbH and Nextcloud contributors" +SPDX-License-Identifier = "AGPL-3.0-or-later" + +[[annotations]] +path = ["tests/phpunit.xml", "tests/psalm-baseline.xml", "tests/stub.phpstub", "tests/litmus/0001-Comment-out-collection-locking-tests.patch"] +precedence = "aggregate" +SPDX-FileCopyrightText = "2022 Nextcloud GmbH and Nextcloud contributors" +SPDX-License-Identifier = "AGPL-3.0-or-later"