-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reuse, SPDX, Licenses #257
base: main
Are you sure you want to change the base?
Conversation
Rdy for review. Most of the changes will add the license header. It can be roughly skipped. |
[[annotations]] | ||
path = [ | ||
".idea/**", | ||
".vscode/**", | ||
"**moq.go", | ||
"docs/**", | ||
"go.sum" | ||
] | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "Deutsche Telekom IT GmbH" | ||
SPDX-License-Identifier = "Apache-2.0" | ||
|
||
[[annotations]] | ||
path = [ | ||
"docs/**" | ||
] | ||
precedence = "aggregate" | ||
SPDX-FileCopyrightText = "Deutsche Telekom IT GmbH" | ||
SPDX-License-Identifier = "CC-BY-4.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
docs/**
is included in both types of licences - how does this work? Docs should typically only have the creative commons licence added (which is the case in this repo). Is this a case of misconfiguration that works out in the end?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a question regarding the toml confiq before approving. Cool stuff!
Motivation
Last step to stay compliant with Telekom org, we are switching to use
reuse
cli tool to handle the licenses management with SPDX standard.S11
reuse
and licence handlingChanges
Adding SPDX headers in all files. For those files that are generated, binary files, etc. a
.license
file is created. All done byreuse
toolset.For additional information look at the commits.
Tests done
TODO