summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2021-09-01 08:44:42 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-03 09:53:28 +0100
commitf3796b452490804fa57e66937d912072b1729e8a (patch)
tree88657b201435dc0336f8fc0da436e33a369088bd /meta
parentf1a34a63e44dc444ed213c48bfeab9da1196bfc8 (diff)
downloadpoky-f3796b452490804fa57e66937d912072b1729e8a.tar.gz
classes/create-spdx: Change creator
Update the creator name since this no longer lives in meta-doubleopen (From OE-Core rev: 6fdea64ef53eb4de3d0e58e70ae6b391fdff6cd0) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/create-spdx.bbclass12
1 files 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() {
335 doc.name = "recipe-" + d.getVar("PN") 335 doc.name = "recipe-" + d.getVar("PN")
336 doc.documentNamespace = get_doc_namespace(d, doc) 336 doc.documentNamespace = get_doc_namespace(d, doc)
337 doc.creationInfo.created = creation_time 337 doc.creationInfo.created = creation_time
338 doc.creationInfo.comment = "This document was created by analyzing the source of the Yocto recipe during the build." 338 doc.creationInfo.comment = "This document was created by analyzing recipe files during the build."
339 doc.creationInfo.creators.append("Tool: meta-doubleopen") 339 doc.creationInfo.creators.append("Tool: OpenEmbedded Core create-spdx.bbclass")
340 doc.creationInfo.creators.append("Organization: Double Open Project ()") 340 doc.creationInfo.creators.append("Organization: OpenEmbedded ()")
341 doc.creationInfo.creators.append("Person: N/A ()") 341 doc.creationInfo.creators.append("Person: N/A ()")
342 342
343 recipe = oe.spdx.SPDXPackage() 343 recipe = oe.spdx.SPDXPackage()
@@ -423,9 +423,9 @@ python do_create_spdx() {
423 package_doc.name = pkg_name 423 package_doc.name = pkg_name
424 package_doc.documentNamespace = get_doc_namespace(d, package_doc) 424 package_doc.documentNamespace = get_doc_namespace(d, package_doc)
425 package_doc.creationInfo.created = creation_time 425 package_doc.creationInfo.created = creation_time
426 package_doc.creationInfo.comment = "This document was created by analyzing the source of the Yocto recipe during the build." 426 package_doc.creationInfo.comment = "This document was created by analyzing packages created during the build."
427 package_doc.creationInfo.creators.append("Tool: meta-doubleopen") 427 package_doc.creationInfo.creators.append("Tool: OpenEmbedded Core create-spdx.bbclass")
428 package_doc.creationInfo.creators.append("Organization: Double Open Project ()") 428 package_doc.creationInfo.creators.append("Organization: OpenEmbedded ()")
429 package_doc.creationInfo.creators.append("Person: N/A ()") 429 package_doc.creationInfo.creators.append("Person: N/A ()")
430 430
431 recipe_ref = oe.spdx.SPDXExternalDocumentRef() 431 recipe_ref = oe.spdx.SPDXExternalDocumentRef()