Parcourir la source

python: move qmp-shell under the AQMP package

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Beraldo Leal <bleal@redhat.com>
John Snow il y a 3 ans
Parent
commit
fd9c3a6219
4 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 1 1
      python/README.rst
  2. 0 0
      python/qemu/aqmp/qmp_shell.py
  3. 1 1
      python/setup.cfg
  4. 1 1
      scripts/qmp/qmp-shell

+ 1 - 1
python/README.rst

@@ -59,7 +59,7 @@ Package installation also normally provides executable console scripts,
 so that tools like ``qmp-shell`` are always available via $PATH. To
 so that tools like ``qmp-shell`` are always available via $PATH. To
 invoke them without installation, you can invoke e.g.:
 invoke them without installation, you can invoke e.g.:
 
 
-``> PYTHONPATH=~/src/qemu/python python3 -m qemu.qmp.qmp_shell``
+``> PYTHONPATH=~/src/qemu/python python3 -m qemu.aqmp.qmp_shell``
 
 
 The mappings between console script name and python module path can be
 The mappings between console script name and python module path can be
 found in ``setup.cfg``.
 found in ``setup.cfg``.

+ 0 - 0
python/qemu/qmp/qmp_shell.py → python/qemu/aqmp/qmp_shell.py


+ 1 - 1
python/setup.cfg

@@ -67,7 +67,7 @@ console_scripts =
     qom-tree = qemu.utils.qom:QOMTree.entry_point
     qom-tree = qemu.utils.qom:QOMTree.entry_point
     qom-fuse = qemu.utils.qom_fuse:QOMFuse.entry_point [fuse]
     qom-fuse = qemu.utils.qom_fuse:QOMFuse.entry_point [fuse]
     qemu-ga-client = qemu.utils.qemu_ga_client:main
     qemu-ga-client = qemu.utils.qemu_ga_client:main
-    qmp-shell = qemu.qmp.qmp_shell:main
+    qmp-shell = qemu.aqmp.qmp_shell:main
     aqmp-tui = qemu.aqmp.aqmp_tui:main [tui]
     aqmp-tui = qemu.aqmp.aqmp_tui:main [tui]
 
 
 [flake8]
 [flake8]

+ 1 - 1
scripts/qmp/qmp-shell

@@ -4,7 +4,7 @@ import os
 import sys
 import sys
 
 
 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
 sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python'))
-from qemu.qmp import qmp_shell
+from qemu.aqmp import qmp_shell
 
 
 
 
 if __name__ == '__main__':
 if __name__ == '__main__':