mbox

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

Message ID 20180205230900.11344-1-ehabkost@redhat.com
State New
Headers show

Pull-request

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

Message

Eduardo Habkost Feb. 5, 2018, 11:08 p.m. UTC
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(-)

Comments

Peter Maydell Feb. 7, 2018, 12:07 p.m. UTC | #1
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