From 6fdea64ef53eb4de3d0e58e70ae6b391fdff6cd0 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Wed, 1 Sep 2021 08:44:42 -0500 Subject: classes/create-spdx: Change creator Update the creator name since this no longer lives in meta-doubleopen Signed-off-by: Joshua Watt Signed-off-by: Richard Purdie --- meta/classes/create-spdx.bbclass | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/classes/create-spdx.bbclass b/meta/classes/create-spdx.bbclass index 35fb4421d0..e49d4d7e3c 100644 --- a/meta/classes/create-spdx.bbclass +++ b/meta/classes/create-spdx.bbclass @@ -335,9 +335,9 @@ python do_create_spdx() { doc.name = "recipe-" + d.getVar("PN") doc.documentNamespace = get_doc_namespace(d, doc) doc.creationInfo.created = creation_time - doc.creationInfo.comment = "This document was created by analyzing the source of the Yocto recipe during the build." - doc.creationInfo.creators.append("Tool: meta-doubleopen") - doc.creationInfo.creators.append("Organization: Double Open Project ()") + doc.creationInfo.comment = "This document was created by analyzing recipe files during the build." + doc.creationInfo.creators.append("Tool: OpenEmbedded Core create-spdx.bbclass") + doc.creationInfo.creators.append("Organization: OpenEmbedded ()") doc.creationInfo.creators.append("Person: N/A ()") recipe = oe.spdx.SPDXPackage() @@ -423,9 +423,9 @@ python do_create_spdx() { package_doc.name = pkg_name package_doc.documentNamespace = get_doc_namespace(d, package_doc) package_doc.creationInfo.created = creation_time - package_doc.creationInfo.comment = "This document was created by analyzing the source of the Yocto recipe during the build." - package_doc.creationInfo.creators.append("Tool: meta-doubleopen") - package_doc.creationInfo.creators.append("Organization: Double Open Project ()") + package_doc.creationInfo.comment = "This document was created by analyzing packages created during the build." + package_doc.creationInfo.creators.append("Tool: OpenEmbedded Core create-spdx.bbclass") + package_doc.creationInfo.creators.append("Organization: OpenEmbedded ()") package_doc.creationInfo.creators.append("Person: N/A ()") recipe_ref = oe.spdx.SPDXExternalDocumentRef() -- cgit 1.2.3-korg