[Qemu-devel] [PULL 00/21] Python queue, 2018-02-05

Eduardo Habkost posted 21 patches 6 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180205230900.11344-1-ehabkost@redhat.com
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test s390x passed
configure                              |  5 +-
Makefile                               | 22 ++++----
qapi/ui.json                           |  5 +-
scripts/qapi.py                        | 43 ++++++++++------
scripts/qapi2texi.py                   | 11 ++--
scripts/qemu.py                        | 94 ++++++++++++++++++++++------------
scripts/signrom.py                     |  4 +-
.travis.yml                            | 14 +++--
tests/Makefile.include                 |  6 +--
tests/docker/dockerfiles/fedora.docker |  3 +-
tests/qapi-schema/test-qapi.py         | 43 ++++++++--------
ui/keycodemapdb                        |  2 +-
12 files changed, 151 insertions(+), 101 deletions(-)
[Qemu-devel] [PULL 00/21] Python queue, 2018-02-05
Posted by Eduardo Habkost 6 years, 2 months ago
The following changes since commit f24ee107a07f093bd7ed475dd48d7ba57ea3d8fe:

  Merge remote-tracking branch 'remotes/kraxel/tags/ui-20180202-pull-request' into staging (2018-02-02 18:54:11 +0000)

are available in the Git repository at:

  git://github.com/ehabkost/qemu.git tags/python-next-pull-request

for you to fetch changes up to 356dc290f0ef930a24b6af3a0908b1cb58ad47c9:

  docker: change Fedora images to run with python3 (2018-02-05 19:53:55 -0200)

----------------------------------------------------------------
Python queue, 2018-02-05

----------------------------------------------------------------

Amador Pahim (7):
  qemu.py: remove unused import
  qemu.py: better control of created files
  qemu.py: refactor launch()
  qemu.py: always cleanup on shutdown()
  qemu.py: use poll() instead of 'returncode'
  qemu.py: cleanup redundant calls in launch()
  qemu.py: don't launch again before shutdown()

Daniel P. Berrange (13):
  qapi: convert to use python print function instead of statement
  qapi: use items()/values() intead of iteritems()/itervalues()
  qapi: Use OrderedDict from standard library if available
  qapi: adapt to moved location of StringIO module in py3
  qapi: Adapt to moved location of 'maketrans' function in py3
  qapi: remove '-q' arg to diff when comparing QAPI output
  qapi: ensure stable sort ordering when checking QAPI entities
  qapi: force a UTF-8 locale for running Python
  scripts: ensure signrom treats data as bytes
  configure: allow use of python 3
  ui: update keycodemapdb to get py3 fixes
  travis: improve python version test coverage
  docker: change Fedora images to run with python3

Miika S (1):
  input: add missing JIS keys to virtio input

 configure                              |  5 +-
 Makefile                               | 22 ++++----
 qapi/ui.json                           |  5 +-
 scripts/qapi.py                        | 43 ++++++++++------
 scripts/qapi2texi.py                   | 11 ++--
 scripts/qemu.py                        | 94 ++++++++++++++++++++++------------
 scripts/signrom.py                     |  4 +-
 .travis.yml                            | 14 +++--
 tests/Makefile.include                 |  6 +--
 tests/docker/dockerfiles/fedora.docker |  3 +-
 tests/qapi-schema/test-qapi.py         | 43 ++++++++--------
 ui/keycodemapdb                        |  2 +-
 12 files changed, 151 insertions(+), 101 deletions(-)

-- 
2.14.3


Re: [Qemu-devel] [PULL 00/21] Python queue, 2018-02-05
Posted by Peter Maydell 6 years, 2 months ago
On 5 February 2018 at 23:08, Eduardo Habkost <ehabkost@redhat.com> wrote:
> The following changes since commit f24ee107a07f093bd7ed475dd48d7ba57ea3d8fe:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/ui-20180202-pull-request' into staging (2018-02-02 18:54:11 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/ehabkost/qemu.git tags/python-next-pull-request
>
> for you to fetch changes up to 356dc290f0ef930a24b6af3a0908b1cb58ad47c9:
>
>   docker: change Fedora images to run with python3 (2018-02-05 19:53:55 -0200)
>
> ----------------------------------------------------------------
> Python queue, 2018-02-05
>
> ----------------------------------------------------------------

Applied, thanks. (I've also updated one of my local build configs
to use --with-python=python3; thanks to Daniel Berrange for the suggestion.)

-- PMM