This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_build/master-aarch64 in repository toolchain/ci/qemu.
from 28298069af Merge tag 'misc-pull-request' of gitlab.com:marcandre.lureau [...] new a58069494d qapi-schema: support alternates with array type new b36dc5c279 qapi-schema: test: add a qapi-schema-test for array alternates new 79db994861 qapi-schema: test: add a unit test for parsing array alternates new 659056b81d docs: qapi: Remove outdated reference to simple unions new f43471297b qapi: Fix documentation for query-xen-replication-status new 068613f065 qapi: Fix typo new de7371bc7c qapi: Fix version of cpu0-id field new 378f973a6c Merge tag 'pull-qapi-2022-04-21' of git://repo.or.cz/qemu/ar [...] new a4225303a1 python/machine: permanently switch to AQMP new 28d4f06e0a scripts/bench-block-job: switch to AQMP new 998ed38620 iotests/mirror-top-perms: switch to AQMP new 68e2e3dd66 iotests: switch to AQMP new 380fc8f32e python/aqmp: add explicit GPLv2 license to legacy.py new 9dcea96d08 python/aqmp: relicense as LGPLv2+ new 0e08b94700 python/qmp-shell: relicense as LGPLv2+ new 445c9d4e3d python/aqmp-tui: relicense as LGPLv2+ new 335e7d410e python: temporarily silence pylint duplicate-code warnings new 9fcd3930e0 python/aqmp: take QMPBadPortError and parse_address from qemu.qmp new 0c78ebf722 python/aqmp: fully separate from qmp.QEMUMonitorProtocol new b0654f4f98 python/aqmp: copy qmp docstrings to qemu.aqmp.legacy new adaca6e085 python: remove the old QMP package new 105bbff886 python: re-enable pylint duplicate-code warnings new 37094b6dd5 python: rename qemu.aqmp to qemu.qmp new b1a9b1f7a6 python: rename 'aqmp-tui' to 'qmp-tui' new 47430775ed python/qmp: remove pylint workaround from legacy.py new da5006445a Merge tag 'python-pull-request' of https://gitlab.com/jsnow/ [...]
The 26 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: docs/devel/qapi-code-gen.rst | 4 +- python/README.rst | 2 +- python/qemu/aqmp/__init__.py | 59 --- python/qemu/aqmp/legacy.py | 177 -------- python/qemu/machine/machine.py | 18 +- python/qemu/machine/qtest.py | 2 +- python/qemu/qmp/README.rst | 9 - python/qemu/qmp/__init__.py | 447 ++------------------- python/qemu/{aqmp => qmp}/error.py | 0 python/qemu/{aqmp => qmp}/events.py | 2 +- python/qemu/qmp/legacy.py | 315 +++++++++++++++ python/qemu/{aqmp => qmp}/message.py | 0 python/qemu/{aqmp => qmp}/models.py | 0 python/qemu/{aqmp => qmp}/protocol.py | 4 +- python/qemu/{aqmp => qmp}/qmp_client.py | 16 +- python/qemu/{aqmp => qmp}/qmp_shell.py | 11 +- python/qemu/{aqmp/aqmp_tui.py => qmp/qmp_tui.py} | 17 +- python/qemu/{aqmp => qmp}/util.py | 0 python/qemu/utils/qemu_ga_client.py | 4 +- python/qemu/utils/qom.py | 2 +- python/qemu/utils/qom_common.py | 4 +- python/qemu/utils/qom_fuse.py | 2 +- python/setup.cfg | 11 +- python/tests/protocol.py | 14 +- qapi/migration.json | 2 +- qapi/misc-target.json | 2 +- qapi/sockets.json | 2 +- scripts/cpu-x86-uarch-abi.py | 2 +- scripts/device-crash-test | 4 +- scripts/qapi/expr.py | 2 +- scripts/qapi/schema.py | 4 + scripts/qmp/qmp-shell | 2 +- scripts/qmp/qmp-shell-wrap | 2 +- scripts/render_block_graph.py | 4 +- scripts/simplebench/bench_block_job.py | 5 +- tests/qapi-schema/alternate-array.err | 2 - tests/qapi-schema/alternate-array.json | 2 - tests/qapi-schema/alternate-array.out | 18 + tests/qapi-schema/alternate-conflict-lists.err | 2 + tests/qapi-schema/alternate-conflict-lists.json | 6 + .../qapi-schema/alternate-conflict-lists.out | 0 tests/qapi-schema/meson.build | 1 + tests/qapi-schema/qapi-schema-test.json | 1 + tests/qapi-schema/qapi-schema-test.out | 4 + tests/qemu-iotests/iotests.py | 3 +- tests/qemu-iotests/tests/mirror-top-perms | 11 +- tests/unit/test-qobject-input-visitor.c | 40 ++ 47 files changed, 505 insertions(+), 736 deletions(-) delete mode 100644 python/qemu/aqmp/__init__.py delete mode 100644 python/qemu/aqmp/legacy.py delete mode 100644 python/qemu/qmp/README.rst rename python/qemu/{aqmp => qmp}/error.py (100%) rename python/qemu/{aqmp => qmp}/events.py (99%) create mode 100644 python/qemu/qmp/legacy.py rename python/qemu/{aqmp => qmp}/message.py (100%) rename python/qemu/{aqmp => qmp}/models.py (100%) rename python/qemu/{aqmp => qmp}/protocol.py (99%) rename python/qemu/{aqmp => qmp}/qmp_client.py (97%) rename python/qemu/{aqmp => qmp}/qmp_shell.py (98%) rename python/qemu/{aqmp/aqmp_tui.py => qmp/qmp_tui.py} (98%) rename python/qemu/{aqmp => qmp}/util.py (100%) create mode 100644 tests/qapi-schema/alternate-conflict-lists.err create mode 100644 tests/qapi-schema/alternate-conflict-lists.json rename python/qemu/aqmp/py.typed => tests/qapi-schema/alternate-conflict-lists.out (100%)