In anticipation of deleting the python/qemu/qmp source from the tree, add a vendored version of the qemu.qmp package to ensure that "make check" can be run in isolated build environments, offline.
Acked-by: Thomas Huth <[email protected]> Message-ID: <[email protected]> Signed-off-by: John Snow <[email protected]> --- python/scripts/vendor.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/scripts/vendor.py b/python/scripts/vendor.py index 33b9b0b92b7..46ce2980d5d 100755 --- a/python/scripts/vendor.py +++ b/python/scripts/vendor.py @@ -43,6 +43,8 @@ def main() -> int: packages = { "meson==1.10.0": "4b27aafce281e652dcb437b28007457411245d975c48b5db3a797d3e93ae1585", + "qemu.qmp==0.0.5": + "e05782d6df5844b34e0d2f7c68693525da074deef7b641c1401dda6e4e3d6303", } vendor_dir = Path(__file__, "..", "..", "wheels").resolve() -- 2.53.0
