qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/14] Python, i386 changes for 2023-08-28
@ 2023-08-28 10:38 Paolo Bonzini
  2023-08-28 10:38 ` [PULL 01/14] configure: fix and complete detection of tricore tools Paolo Bonzini
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: Paolo Bonzini @ 2023-08-28 10:38 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 50e7a40af372ee5931c99ef7390f5d3d6fbf6ec4:

  Merge tag 'pull-target-arm-20230824' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-08-24 10:08:33 -0400)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 29a8238510df27080b0ffa92c58400412ce19daa:

  configure: remove unnecessary mkdir -p (2023-08-28 10:01:44 +0200)

----------------------------------------------------------------
* separate accepted and auto-installed versions of Python dependencies
* bump tricore container to Debian 11
* small configure cleanups

----------------------------------------------------------------
Ake Koomsin (1):
      target/i386: add support for VMX_SECONDARY_EXEC_ENABLE_USER_WAIT_PAUSE

Paolo Bonzini (13):
      configure: fix and complete detection of tricore tools
      dockerfiles: bump tricore cross compiler container to Debian 11
      python: mkvenv: tweak the matching of --diagnose to depspecs
      python: mkvenv: introduce TOML-like representation of dependencies
      python: mkvenv: add ensuregroup command
      lcitool: bump libvirt-ci submodule and regenerate
      configure: never use PyPI for Meson
      python: use vendored tomli
      configure: switch to ensuregroup
      Revert "tests: Use separate virtual environment for avocado"
      tests/docker: add python3-tomli dependency to containers
      configure: fix container_hosts misspellings and duplications
      configure: remove unnecessary mkdir -p

 .gitlab-ci.d/buildtest.yml                         |   6 +-
 .gitlab-ci.d/cirrus/freebsd-13.vars                |   2 +-
 .gitlab-ci.d/cirrus/macos-12.vars                  |   2 +-
 configure                                          |  31 +---
 docs/devel/acpi-bits.rst                           |   6 +-
 docs/devel/testing.rst                             |  14 +-
 python/scripts/mkvenv.py                           | 201 +++++++++++++++++++--
 python/scripts/vendor.py                           |   5 +-
 python/setup.cfg                                   |   6 +
 python/wheels/tomli-2.0.1-py3-none-any.whl         | Bin 0 -> 12757 bytes
 pythondeps.toml                                    |  32 ++++
 scripts/ci/org.centos/stream/8/x86_64/test-avocado |   4 +-
 scripts/device-crash-test                          |   2 +-
 target/i386/cpu.c                                  |   6 +-
 target/i386/cpu.h                                  |   1 +
 tests/Makefile.include                             |  19 +-
 tests/docker/dockerfiles/centos8.docker            |   3 +-
 .../dockerfiles/debian-all-test-cross.docker       |   7 +-
 tests/docker/dockerfiles/debian-amd64-cross.docker |   6 +-
 tests/docker/dockerfiles/debian-amd64.docker       |   4 +
 tests/docker/dockerfiles/debian-arm64-cross.docker |   6 +-
 tests/docker/dockerfiles/debian-armel-cross.docker |   6 +-
 tests/docker/dockerfiles/debian-armhf-cross.docker |   6 +-
 .../docker/dockerfiles/debian-hexagon-cross.docker |   6 +-
 .../dockerfiles/debian-mips64el-cross.docker       |   6 +-
 .../docker/dockerfiles/debian-mipsel-cross.docker  |   6 +-
 .../docker/dockerfiles/debian-ppc64el-cross.docker |   6 +-
 .../docker/dockerfiles/debian-riscv64-cross.docker |   2 +-
 tests/docker/dockerfiles/debian-s390x-cross.docker |   6 +-
 .../docker/dockerfiles/debian-tricore-cross.docker |   4 +-
 tests/docker/dockerfiles/fedora-i386-cross.docker  |   1 +
 tests/docker/dockerfiles/fedora-win32-cross.docker |   2 +-
 tests/docker/dockerfiles/fedora-win64-cross.docker |   2 +-
 tests/docker/dockerfiles/opensuse-leap.docker      |  22 +--
 tests/docker/dockerfiles/ubuntu2004.docker         |   4 +-
 tests/docker/dockerfiles/ubuntu2204.docker         |   1 +
 tests/lcitool/libvirt-ci                           |   2 +-
 tests/lcitool/mappings.yml                         |  28 ++-
 tests/lcitool/projects/qemu.yml                    |   3 +-
 tests/lcitool/targets/opensuse-leap-15.yml         |   4 +-
 tests/requirements.txt                             |   6 -
 tests/vm/Makefile.include                          |   2 +-
 tests/vm/generated/freebsd.json                    |   1 +
 43 files changed, 377 insertions(+), 112 deletions(-)
 create mode 100644 python/wheels/tomli-2.0.1-py3-none-any.whl
 create mode 100644 pythondeps.toml
 delete mode 100644 tests/requirements.txt
-- 
2.41.0



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

end of thread, other threads:[~2023-08-29 13:45 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-28 10:38 [PULL 00/14] Python, i386 changes for 2023-08-28 Paolo Bonzini
2023-08-28 10:38 ` [PULL 01/14] configure: fix and complete detection of tricore tools Paolo Bonzini
2023-08-28 10:38 ` [PULL 02/14] dockerfiles: bump tricore cross compiler container to Debian 11 Paolo Bonzini
2023-08-28 10:38 ` [PULL 03/14] python: mkvenv: tweak the matching of --diagnose to depspecs Paolo Bonzini
2023-08-28 10:38 ` [PULL 04/14] python: mkvenv: introduce TOML-like representation of dependencies Paolo Bonzini
2023-08-28 10:38 ` [PULL 05/14] python: mkvenv: add ensuregroup command Paolo Bonzini
2023-08-28 10:38 ` [PULL 06/14] lcitool: bump libvirt-ci submodule and regenerate Paolo Bonzini
2023-08-28 10:38 ` [PULL 07/14] configure: never use PyPI for Meson Paolo Bonzini
2023-08-28 10:38 ` [PULL 08/14] python: use vendored tomli Paolo Bonzini
2023-08-28 10:38 ` [PULL 09/14] configure: switch to ensuregroup Paolo Bonzini
2023-08-28 10:38 ` [PULL 10/14] Revert "tests: Use separate virtual environment for avocado" Paolo Bonzini
2023-08-28 10:38 ` [PULL 11/14] tests/docker: add python3-tomli dependency to containers Paolo Bonzini
2023-08-28 10:38 ` [PULL 12/14] target/i386: add support for VMX_SECONDARY_EXEC_ENABLE_USER_WAIT_PAUSE Paolo Bonzini
2023-08-28 10:38 ` [PULL 13/14] configure: fix container_hosts misspellings and duplications Paolo Bonzini
2023-08-28 10:38 ` [PULL 14/14] configure: remove unnecessary mkdir -p Paolo Bonzini
2023-08-28 21:14 ` [PULL 00/14] Python, i386 changes for 2023-08-28 Stefan Hajnoczi
2023-08-29 13:43 ` Stefan Hajnoczi

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).