]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/create-spdx: Change creator
authorJoshua Watt <JPEWhacker@gmail.com>
Wed, 1 Sep 2021 13:44:42 +0000 (08:44 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 3 Sep 2021 08:03:36 +0000 (09:03 +0100)
Update the creator name since this no longer lives in meta-doubleopen

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/create-spdx.bbclass

index 35fb4421d0ec522b12a769d90ff36774c9686cbc..e49d4d7e3cef4a69fe19afeded9f281dc09915ce 100644 (file)
@@ -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()