Instead of manually curating a hardcoded list of checksums, use the same list that bitbake uses.
Signed-off-by: Joshua Watt <[email protected]> --- meta/lib/oe/spdx30_tasks.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/lib/oe/spdx30_tasks.py b/meta/lib/oe/spdx30_tasks.py index 1821dd7de4..0a30be5767 100644 --- a/meta/lib/oe/spdx30_tasks.py +++ b/meta/lib/oe/spdx30_tasks.py @@ -547,8 +547,10 @@ def add_download_files(d, objset): _enrich_source_package(d, dl, fd, file_name, primary_purpose) if fd.method.supports_checksum(fd): - # TODO Need something better than hard coding this - for checksum_id in ["sha256", "sha1"]: + for checksum_id in bb.fetch2.CHECKSUM_LIST: + if checksum_id not in oe.spdx30.HashAlgorithm.NAMED_INDIVIDUALS: + continue + expected_checksum = getattr(fd, "%s_expected" % checksum_id, None) if expected_checksum is None: continue -- 2.54.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#236988): https://lists.openembedded.org/g/openembedded-core/message/236988 Mute This Topic: https://lists.openembedded.org/mt/119298464/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
