mirror of https://github.com/qt/qthttpserver.git
Make module ready for source SBOM checking
This includes: - turning VERIFY_SOURCE_SBOM ON - adding rules to the licenseRule.json files - correcting the licensing given via REUSE.toml files A lot of files are skipped during the license test, but all are present in the source SBOM. This is why corrections are needed before turning the source SBOM check on. Task-number: QTBUG-131434 Pick-to: 6.9 6.8 Change-Id: I68996e9f013d9153e883449dc49c16a282cca124 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
parent
c060711bd5
commit
3c585a8406
18
REUSE.toml
18
REUSE.toml
|
@ -4,14 +4,15 @@ version = 1
|
|||
path = ["tests/auto/qhttpserver/data/text.html",
|
||||
"tests/auto/qhttpserverresponse/data/*",
|
||||
"tests/auto/qhttpserverresponder/data/index.html",
|
||||
"tests/benchmarks/qhttpserver/transfer/data/*"]
|
||||
"tests/benchmarks/qhttpserver/transfer/data/*",
|
||||
"tests/auto/qhttpserver/data/application.json"]
|
||||
precedence = "closest"
|
||||
SPDX-FileCopyrightText = "Copyright (C) 2024 The Qt Company Ltd."
|
||||
SPDX-License-Identifier = "LicenseRef-Qt-Commercial OR GPL-3.0-only"
|
||||
|
||||
[[annotations]]
|
||||
path = ["**.pro", "**.qrc", "**CMakeLists.txt", ".cmake.conf", "**.yaml", "**.json",
|
||||
"**.cfg", "**BLACKLIST"]
|
||||
path = ["**.pro", "**.qrc", "**CMakeLists.txt", ".cmake.conf", "**.yaml",
|
||||
"**.cfg", "**BLACKLIST", "**ci_config_linux.json"]
|
||||
precedence = "closest"
|
||||
comment = "build system"
|
||||
SPDX-FileCopyrightText = "Copyright (C) 2024 The Qt Company Ltd."
|
||||
|
@ -25,14 +26,14 @@ SPDX-FileCopyrightText = "Copyright (C) 2024 The Qt Company Ltd."
|
|||
SPDX-License-Identifier = "BSD-3-Clause"
|
||||
|
||||
[[annotations]]
|
||||
path = ["doc/images/**", "examples/**"]
|
||||
path = ["examples/**"]
|
||||
comment = "this must be after the build system table because example and snippets take precedence over build system"
|
||||
precedence = "closest"
|
||||
SPDX-FileCopyrightText = "Copyright (C) 2024 The Qt Company Ltd."
|
||||
SPDX-License-Identifier = "LicenseRef-Qt-Commercial OR BSD-3-Clause"
|
||||
|
||||
[[annotations]]
|
||||
path = ["**/README*", "**.qdocconf"]
|
||||
path = ["doc/images/**", "**/README*", "**.qdocconf"]
|
||||
comment = "documentation"
|
||||
precedence = "closest"
|
||||
SPDX-FileCopyrightText = "Copyright (C) 2024 The Qt Company Ltd."
|
||||
|
@ -52,10 +53,3 @@ precedence = "override"
|
|||
SPDX-FileCopyrightText = "Copyright (C) 2024 The Qt Company Ltd."
|
||||
SPDX-License-Identifier = "LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only"
|
||||
|
||||
[[annotations]]
|
||||
path = ["**LICENSE*"]
|
||||
precedence = "override"
|
||||
comment = "License file."
|
||||
SPDX-FileCopyrightText = "None"
|
||||
SPDX-License-Identifier = "CC0-1.0"
|
||||
|
||||
|
|
|
@ -6,6 +6,10 @@ accept_configuration:
|
|||
|
||||
instructions:
|
||||
Build:
|
||||
# to be turned on when the module source SBOM pass the license check
|
||||
- type: EnvironmentVariable
|
||||
variableName: VERIFY_SOURCE_SBOM
|
||||
variableValue: "ON"
|
||||
- !include "{{qt/qtbase}}/coin_module_build_template_v2.yaml"
|
||||
|
||||
Test:
|
||||
|
|
|
@ -10,7 +10,9 @@
|
|||
"Files with other endings can also be build system files"
|
||||
],
|
||||
"file_pattern_ending" : ["CMakeLists.txt", ".cmake", ".pro", ".pri", ".prf",
|
||||
"configure", "configure.bat", "cmake.in", "plist.in", "CMakeLists.txt.in"],
|
||||
"configure", "configure.bat", "cmake.in", "plist.in", "CMakeLists.txt.in",
|
||||
".cmake.conf", ".gitattributes", ".gitignore", ".tag", "ci_config_linux.json",
|
||||
".yaml", "BLACKLIST"],
|
||||
"location" : {
|
||||
"" : {
|
||||
"comment" : "Default",
|
||||
|
@ -44,7 +46,8 @@
|
|||
},
|
||||
{
|
||||
"comment" : "Files with the following endings are Documentation licensed.",
|
||||
"file_pattern_ending" : [".qdoc", ".qdocinc" , ".qdocconf", ".txt", "README", "qt_attribution.json"],
|
||||
"file_pattern_ending" : [".qdoc", ".qdocinc" , ".qdocconf", "README", "qt_attribution.json",
|
||||
"REUSE.toml", "licenseRule.json"],
|
||||
"location" :{
|
||||
"" : {
|
||||
"comment" : "",
|
||||
|
@ -78,6 +81,11 @@
|
|||
"comment" : "Default",
|
||||
"file type" : "examples and snippets",
|
||||
"spdx" : ["LicenseRef-Qt-Commercial OR BSD-3-Clause"]
|
||||
},
|
||||
"doc/images/" : {
|
||||
"comment" : "Default",
|
||||
"file type" : "documentation",
|
||||
"spdx" : ["LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue