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-arm in repository toolchain/ci/qemu.
from 14f02d8a9e Merge remote-tracking branch 'remotes/philmd/tags/integratio [...] adds a093a65567 python/aqmp: add asynchronous QMP (AQMP) subpackage adds fbfb6a37a3 python/aqmp: add error classes adds 35b9a85ade python/pylint: Add exception for TypeVar names ('T') adds a07616d612 python/aqmp: add asyncio compatibility wrappers adds 4ccaab0377 python/aqmp: add generic async message-based protocol support adds c58b42e095 python/aqmp: add runstate state machine to AsyncProtocol adds c1408345af python/aqmp: Add logging utility helpers adds 50e533061f python/aqmp: add logging to AsyncProtocol adds 774c64a58d python/aqmp: add AsyncProtocol.accept() method adds 2686ac1316 python/aqmp: add configurable read buffer limit adds 12c7a57f5b python/aqmp: add _cb_inbound and _cb_outbound logging hooks adds 762bd4d7a7 python/aqmp: add AsyncProtocol._readline() method adds 08f98a2231 python/aqmp: add QMP Message format adds ad07299941 python/aqmp: add well-known QMP object models adds b3cda213a7 python/aqmp: add QMP event support adds 29a8ea9ba2 python/pylint: disable too-many-function-args adds c67d696b85 python/aqmp: add QMP protocol support adds 4cd17f375d python/pylint: disable no-member check adds 577737be55 python/aqmp: Add message routing to QMP protocol adds e0fea0b3ac python/aqmp: add execute() interfaces adds 41f4f92260 python/aqmp: add _raw() execution interface adds debbabd77f python/aqmp: add asyncio_run compatibility wrapper adds ed6d4d7a95 python/aqmp: add scary message adds 4320f7172f python: bump avocado to v90.0 adds a1f71b61ea python/aqmp: add AsyncProtocol unit tests adds 8193b9d148 python/aqmp: add LineProtocol tests adds a4ffaecd57 python/aqmp: Add Coverage.py support adds 974e2f4722 python: Add dependencies for AQMP TUI adds aeb6b48a47 python/aqmp-tui: Add AQMP TUI adds 35755f7d4f python: Add entry point for aqmp-tui adds f37c34d601 python: add optional pygments dependency adds 99e45a6131 python/aqmp-tui: Add syntax highlighting adds 6b54a31bf7 Merge remote-tracking branch 'remotes/jsnow-gitlab/tags/pyth [...]
No new revisions were added by this update.
Summary of changes: python/.gitignore | 5 + python/Makefile | 9 + python/Pipfile.lock | 28 +- python/avocado.cfg | 3 + python/qemu/aqmp/__init__.py | 59 +++ python/qemu/aqmp/aqmp_tui.py | 652 ++++++++++++++++++++++++ python/qemu/aqmp/error.py | 50 ++ python/qemu/aqmp/events.py | 706 ++++++++++++++++++++++++++ python/qemu/aqmp/message.py | 209 ++++++++ python/qemu/aqmp/models.py | 133 +++++ python/qemu/aqmp/protocol.py | 902 +++++++++++++++++++++++++++++++++ python/qemu/{machine => aqmp}/py.typed | 0 python/qemu/aqmp/qmp_client.py | 621 +++++++++++++++++++++++ python/qemu/aqmp/util.py | 217 ++++++++ python/setup.cfg | 43 +- python/tests/protocol.py | 583 +++++++++++++++++++++ 16 files changed, 4214 insertions(+), 6 deletions(-) create mode 100644 python/qemu/aqmp/__init__.py create mode 100644 python/qemu/aqmp/aqmp_tui.py create mode 100644 python/qemu/aqmp/error.py create mode 100644 python/qemu/aqmp/events.py create mode 100644 python/qemu/aqmp/message.py create mode 100644 python/qemu/aqmp/models.py create mode 100644 python/qemu/aqmp/protocol.py copy python/qemu/{machine => aqmp}/py.typed (100%) create mode 100644 python/qemu/aqmp/qmp_client.py create mode 100644 python/qemu/aqmp/util.py create mode 100644 python/tests/protocol.py