-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathREUSE.toml
More file actions
58 lines (52 loc) · 2.16 KB
/
Copy pathREUSE.toml
File metadata and controls
58 lines (52 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# SPDX-FileCopyrightText: 2026 AerynOS Developers
# SPDX-License-Identifier: MPL-2.0
version = 1
# Annotate files that we cannot edit or comment.
# We don't report the initial year for simplicity;
# it is a valid copyright notice anyway.
[[annotations]]
path = ["**/manifest.*.bin"]
SPDX-FileCopyrightText = "AerynOS Developers"
SPDX-License-Identifier = "MPL-2.0"
# Configuration files usually don't have enough logic
# to justify a copyright. With regards of their license,
# it would be silly to ask anyone to re-distribute a conf
# file just because they edited it.
# Exceptions can still be tagged though (note the absence
# of the "override" option below).
[[annotations]]
path = ["*/*/pkg/**"]
SPDX-FileCopyrightText = "NONE"
SPDX-License-Identifier = "CC0-1.0"
# Patch files are particular: REUSE doesn't easily allow to
# track copyright and license of downstream modifications.
# See https://codeberg.org/fsfe/reuse-tool/issues/237
# Tagging *all patch files* with the correct copyright holder
# (this depends on the author) and the right license
# (this depends on the software modified) is a job on its own.
#
# Almost all patch files are found in the wild and pulled in by
# packagers: they didn't write them.
# In this case we believe the safest approach is to tag patches
# with no copyright at all, and mark them as public domain.
# This may not be technically true, because a patch most of the
# times edits licensed software, but the message is clear:
# we don't own them.
#
# Developers that instead provide patches they wrote themselves
# to AerynOS are free to add SPDX headers to the patch, claiming
# copyright on them. The license though must match the
# upstream's license(s).
[[annotations]]
path = ["**/*.patch", "**/*.diff"]
precedence = "override"
SPDX-FileCopyrightText = "NONE"
SPDX-License-Identifier = "CC0-1.0"
# FIXME: we should add SPDX headers to .jsonc files at the moment
# of creation, but we must teach Boulder how to do that first.
# For the time being we are going to "annotate" them here, but
# this eventually needs to change.
[[annotations]]
path = ["**/manifest.*.jsonc"]
SPDX-FileCopyrightText = "AerynOS Developers"
SPDX-License-Identifier = "MPL-2.0"