Message ID | 20241122201557.2247079-1-JPEWhacker@gmail.com |
---|---|
State | New |
Headers | show |
Series | lib: sbom30: Prefix aliases with "http://spdx.org/spdxdocs/" | expand |
diff --git a/meta/lib/oe/sbom30.py b/meta/lib/oe/sbom30.py index 56cdd7ba4c6..7acb5234db2 100644 --- a/meta/lib/oe/sbom30.py +++ b/meta/lib/oe/sbom30.py @@ -344,7 +344,9 @@ class ObjectSet(oe.spdx30.SHACLObjectSet): alias_ext = set_alias( e, e._id.replace(unihash, "UNIHASH").replace( - namespace, self.d.getVar("PN") + namespace, + "http://spdx.org/spdxdocs/openembedded-alias/" + + self.d.getVar("PN"), ), )
While the SPDX ID aliases are primarily intended for internal use by the SPDX code, they are used in places where a valid SPDX ID is expected. In order to make sure that they still conform to this, prefix them with "http://spdx.org/spdxdocs/openembedded-alias" Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> --- meta/lib/oe/sbom30.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)