[1/3] isar-sstate: add well-known task for dpkg-source

Message ID 20260922090930.2322146-1-felix.moessbauer@siemens.com
State New
Headers show
Series [1/3] isar-sstate: add well-known task for dpkg-source | expand

Commit Message

Felix Moessbauer Sept. 22, 2026, 9:09 a.m. UTC
These currently accumulate under others, but this is a well known isar
task. We now map them to the deb entry.

Signed-off-by: Felix Moessbauer <felix.moessbauer@siemens.com>
---
 scripts/isar-sstate | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Patch

diff --git a/scripts/isar-sstate b/scripts/isar-sstate
index 767661f6..9e78e8f7 100755
--- a/scripts/isar-sstate
+++ b/scripts/isar-sstate
@@ -803,14 +803,14 @@  def sstate_info(target, verbose, filter, arch, **kwargs):
     archs = list(set([f.arch for f in all_files]))
     print(f"INFO: found the following archs: {archs}")
 
-    key_task = {'deb': 'dpkg_build',
-                'rootfs': 'rootfs_install',
-                'bootstrap': 'bootstrap'}
+    key_task = {'deb': ['dpkg_build', 'dpkg_source'],
+                'rootfs': ['rootfs_install'],
+                'bootstrap': ['bootstrap']}
     recipes = {k: [] for k in key_task.keys()}
     others = []
     for pn in set([f.pn for f in all_files]):
         tasks = set([f.task for f in all_files if f.pn == pn])
-        ks = [k for k, v in key_task.items() if v in tasks]
+        ks = [k for k, v in key_task.items() if any(t in tasks for t in v)]
         if len(ks) == 1:
             recipes[ks[0]].append(pn)
         elif len(ks) == 0:
@@ -820,7 +820,7 @@  def sstate_info(target, verbose, filter, arch, **kwargs):
     for k, entries in recipes.items():
         print(f"Cache entries for {k}:")
         for pn in entries:
-            artifacts = [f for f in all_files if f.pn == pn and f.task == key_task[k] and f.suffix in ['tgz', 'tar.zst']]
+            artifacts = [f for f in all_files if f.pn == pn and f.task in key_task[k] and f.suffix in ['tgz', 'tar.zst']]
             print(f"  - {pn}: {len(artifacts)} entries")
     print("Other cache entries:")
     for pn in others: