diff options
| author | Shulhan <ms@kilabit.info> | 2024-09-15 13:55:43 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2024-09-15 14:19:05 +0700 |
| commit | f32c9a90874659b03408479281e82cc1c834ab3e (patch) | |
| tree | 038a2aa67d60d8fb193bc7e37f483e825341716b | |
| parent | 98cfe314d85b9c2a92f84416d79f95c92e8a6d9d (diff) | |
| download | pakakeh.ts-f32c9a90874659b03408479281e82cc1c834ab3e.tar.xz | |
all: update reuse to use REUSE.toml
Since REUSE version 3.2, using ".reuse/dep5" has been deprecated,
and replaced using REUSE.toml
| -rw-r--r-- | .eslintrc.yaml | 4 | ||||
| -rw-r--r-- | .reuse/dep5 | 16 | ||||
| -rw-r--r-- | REUSE.toml | 14 | ||||
| -rw-r--r-- | package-lock.json.license | 3 | ||||
| -rw-r--r-- | package.json.license | 3 | ||||
| -rw-r--r-- | tsconfig.json.license | 3 |
6 files changed, 27 insertions, 16 deletions
diff --git a/.eslintrc.yaml b/.eslintrc.yaml index 9c2b441..08becfd 100644 --- a/.eslintrc.yaml +++ b/.eslintrc.yaml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2023 M. Shulhan <ms@kilabit.info> +# +# SPDX-License-Identifier: GPL-3.0-or-later + root: true extends: google parserOptions: diff --git a/.reuse/dep5 b/.reuse/dep5 deleted file mode 100644 index 9541263..0000000 --- a/.reuse/dep5 +++ /dev/null @@ -1,16 +0,0 @@ -Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: wui -Upstream-Contact: Shulhan <ms@kilabit.info> -Source: https://git.sr.ht/~shulhan/wui - -Files: *.d.ts -Copyright: 2022 Shulhan <ms@kilabit.info> -License: GPL-3.0-or-later - -Files: tsconfig.json -Copyright: 2022 Shulhan <ms@kilabit.info> -License: GPL-3.0-or-later - -Files: README.md -Copyright: 2021 Shulhan <ms@kilabit.info> -License: GPL-3.0-or-later diff --git a/REUSE.toml b/REUSE.toml new file mode 100644 index 0000000..6fbb36f --- /dev/null +++ b/REUSE.toml @@ -0,0 +1,14 @@ +# SPDX-FileCopyrightText: 2024 M. Shulhan <ms@kilabit.info> +# +# SPDX-License-Identifier: GPL-3.0-or-later + +version = 1 +SPDX-PackageName = "pakakeh.ts" +SPDX-PackageSupplier = "M. Shulhan <ms@kilabit.info>" +SPDX-PackageDownloadLocation = "https://git.sr.ht/~shulhan/pakakeh.ts" + +[[annotations]] +path = "**.d.ts" +precedence = "aggregate" +SPDX-FileCopyrightText = "2022 Shulhan <ms@kilabit.info>" +SPDX-License-Identifier = "GPL-3.0-or-later" diff --git a/package-lock.json.license b/package-lock.json.license new file mode 100644 index 0000000..f24ff8d --- /dev/null +++ b/package-lock.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023 M. Shulhan <ms@kilabit.info> + +SPDX-License-Identifier: GPL-3.0-or-later diff --git a/package.json.license b/package.json.license new file mode 100644 index 0000000..f24ff8d --- /dev/null +++ b/package.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2023 M. Shulhan <ms@kilabit.info> + +SPDX-License-Identifier: GPL-3.0-or-later diff --git a/tsconfig.json.license b/tsconfig.json.license new file mode 100644 index 0000000..dc54291 --- /dev/null +++ b/tsconfig.json.license @@ -0,0 +1,3 @@ +SPDX-FileCopyrightText: 2022 M. Shulhan <ms@kilabit.info> + +SPDX-License-Identifier: GPL-3.0-or-later |
