]> git.proxmox.com Git - mirror_qemu.git/commitdiff
python: mkvenv: tweak the matching of --diagnose to depspecs
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 8 Aug 2023 11:25:09 +0000 (13:25 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 28 Aug 2023 07:55:05 +0000 (09:55 +0200)
Move the matching between the "absent" array and dep_specs[0] inside
the loop, preparing for the possibility of having multiple canaries
among the installed packages.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
python/scripts/mkvenv.py

index a47f1eaf5d67c0c72542ca2b5fdcd3e2621c1c56..399659b22f1e329f9d19b9c25c3000092a6de577 100644 (file)
@@ -806,6 +806,7 @@ def _do_ensure(
     """
     absent = []
     present = []
+    canary = None
     for spec in dep_specs:
         matcher = distlib.version.LegacyMatcher(spec)
         ver = _get_version(matcher.name)
@@ -817,6 +818,8 @@ def _do_ensure(
             or not matcher.match(distlib.version.LegacyVersion(ver))
         ):
             absent.append(spec)
+            if spec == dep_specs[0]:
+                canary = prog
         else:
             logger.info("found %s %s", matcher.name, ver)
             present.append(matcher.name)
@@ -839,7 +842,7 @@ def _do_ensure(
             absent[0],
             online,
             wheels_dir,
-            prog if absent[0] == dep_specs[0] else None,
+            canary,
         )
 
     return None