qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/6] QAPI patches for 2020-01-14
@ 2020-01-14 10:20 Markus Armbruster
  2020-01-14 10:20 ` [PULL 1/6] qapi: Tweak "command returns a nice type" check for clarity Markus Armbruster
                   ` (6 more replies)
  0 siblings, 7 replies; 9+ messages in thread
From: Markus Armbruster @ 2020-01-14 10:20 UTC (permalink / raw)
  To: qemu-devel

My previous pull request failed tests with Python 2, which is now
gone.  Try again.

The following changes since commit dc65a5bdc9fa543690a775b50d4ffbeb22c56d6d:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-5.0-20200108' into staging (2020-01-10 16:15:04 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2020-01-14

for you to fetch changes up to 3bef3aaec91815b75a78a4c12ca92ac3cec53faf:

  qapi: Simplify QAPISchemaModularCVisitor (2020-01-14 11:01:58 +0100)

----------------------------------------------------------------
QAPI patches for 2020-01-14

----------------------------------------------------------------
Markus Armbruster (6):
      qapi: Tweak "command returns a nice type" check for clarity
      tests/Makefile.include: Fix missing test-qapi-emit-events.[ch]
      qapi: Generate command registration stuff into separate files
      qapi: Proper intermediate representation for modules
      qapi: Fix code generation for empty modules
      qapi: Simplify QAPISchemaModularCVisitor

 docs/devel/qapi-code-gen.txt             | 19 +++++--
 Makefile                                 |  4 +-
 monitor/misc.c                           |  7 ++-
 qga/main.c                               |  2 +-
 tests/test-qmp-cmds.c                    |  1 +
 .gitignore                               |  1 +
 qapi/Makefile.objs                       |  1 +
 qga/Makefile.objs                        |  1 +
 scripts/qapi/commands.py                 | 17 ++++--
 scripts/qapi/events.py                   |  2 +-
 scripts/qapi/gen.py                      | 28 +++++-----
 scripts/qapi/schema.py                   | 92 ++++++++++++++++++++------------
 scripts/qapi/types.py                    |  5 +-
 scripts/qapi/visit.py                    |  8 +--
 tests/.gitignore                         |  1 +
 tests/Makefile.include                   |  9 +++-
 tests/qapi-schema/empty.out              |  1 +
 tests/qapi-schema/include-repetition.out |  6 +--
 tests/qapi-schema/qapi-schema-test.out   | 24 ++++-----
 19 files changed, 144 insertions(+), 85 deletions(-)

-- 
2.21.1



^ permalink raw reply	[flat|nested] 9+ messages in thread
* [PULL 0/6] QAPI patches for 2019-12-17
@ 2019-12-17  8:14 Markus Armbruster
  2019-12-17  8:14 ` [PULL 2/6] tests/Makefile.include: Fix missing test-qapi-emit-events.[ch] Markus Armbruster
  0 siblings, 1 reply; 9+ messages in thread
From: Markus Armbruster @ 2019-12-17  8:14 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit cb88904a54903ef6ba21a68a61d9cd51e2166304:

  Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-dec-16-2019' into staging (2019-12-16 14:07:56 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2019-12-17

for you to fetch changes up to 328add3012e0b642134afedcd53660c30c758866:

  qapi: Simplify QAPISchemaModularCVisitor (2019-12-17 08:09:28 +0100)

----------------------------------------------------------------
QAPI patches for 2019-12-17

----------------------------------------------------------------
Markus Armbruster (6):
      qapi: Tweak "command returns a nice type" check for clarity
      tests/Makefile.include: Fix missing test-qapi-emit-events.[ch]
      qapi: Generate command registration stuff into separate files
      qapi: Proper intermediate representation for modules
      qapi: Fix code generation for empty modules
      qapi: Simplify QAPISchemaModularCVisitor

 docs/devel/qapi-code-gen.txt             | 19 +++++--
 Makefile                                 |  4 +-
 monitor/misc.c                           |  7 ++-
 qga/main.c                               |  2 +-
 tests/test-qmp-cmds.c                    |  1 +
 .gitignore                               |  1 +
 qapi/Makefile.objs                       |  1 +
 qga/Makefile.objs                        |  1 +
 scripts/qapi/commands.py                 | 17 ++++--
 scripts/qapi/events.py                   |  2 +-
 scripts/qapi/gen.py                      | 28 +++++-----
 scripts/qapi/schema.py                   | 92 ++++++++++++++++++++------------
 scripts/qapi/types.py                    |  5 +-
 scripts/qapi/visit.py                    |  8 +--
 tests/.gitignore                         |  1 +
 tests/Makefile.include                   |  9 +++-
 tests/qapi-schema/empty.out              |  1 +
 tests/qapi-schema/include-repetition.out |  6 +--
 tests/qapi-schema/qapi-schema-test.out   | 24 ++++-----
 19 files changed, 144 insertions(+), 85 deletions(-)

-- 
2.21.0



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-01-16 14:04 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-14 10:20 [PULL 0/6] QAPI patches for 2020-01-14 Markus Armbruster
2020-01-14 10:20 ` [PULL 1/6] qapi: Tweak "command returns a nice type" check for clarity Markus Armbruster
2020-01-14 10:20 ` [PULL 2/6] tests/Makefile.include: Fix missing test-qapi-emit-events.[ch] Markus Armbruster
2020-01-14 10:20 ` [PULL 3/6] qapi: Generate command registration stuff into separate files Markus Armbruster
2020-01-14 10:20 ` [PULL 4/6] qapi: Proper intermediate representation for modules Markus Armbruster
2020-01-14 10:20 ` [PULL 5/6] qapi: Fix code generation for empty modules Markus Armbruster
2020-01-14 10:20 ` [PULL 6/6] qapi: Simplify QAPISchemaModularCVisitor Markus Armbruster
2020-01-16 14:03 ` [PULL 0/6] QAPI patches for 2020-01-14 Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-12-17  8:14 [PULL 0/6] QAPI patches for 2019-12-17 Markus Armbruster
2019-12-17  8:14 ` [PULL 2/6] tests/Makefile.include: Fix missing test-qapi-emit-events.[ch] Markus Armbruster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).