mirror of
https://github.com/qemu/qemu.git
synced 2025-08-09 01:50:43 +00:00

Thanks for your service!
Remove the old qapidoc and the option to enable the transmogrifier,
leaving the "transmogrifier" as the ONLY qapi doc generator. This in
effect also converts the QAPI test to use the new documentation
generator, too.
Update doc-good.txt output to match the new doc generator, which I
should've done exactly when we switched over to the transmogrifier, but,
uhh, oops!
Notes on the new format:
1. per-member IFCOND documentation is missing. Known issue.
2. Freeform documentation without a header is now copied through into
the output. This is a bug fix.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-ID: <20250618165353.1980365-4-jsnow@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Fixes: b61a4eb3f3
(docs/qapidoc: support header-less freeform sections)
[Tweak commit message to say it's a bug fix, add Fixes:]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
9 lines
289 B
Bash
Executable File
9 lines
289 B
Bash
Executable File
#!/bin/sh -e
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
python3 -m isort --sp . -c ../scripts/qapi/
|
|
# Force isort to recognize "compat" as a local module and not third-party
|
|
python3 -m isort --sp . -c -p compat \
|
|
../docs/sphinx/qapi_domain.py \
|
|
../docs/sphinx/qapidoc.py
|