Home
last modified time | relevance | path

Searched +full:python3 +full:- +full:setuptools (Results 1 – 10 of 10) sorted by relevance

/qemu/tests/lcitool/
H A Dmappings.yml16 python3:
17 OpenSUSELeap15: python311-base
19 python3-PyYAML:
22 python3-devel:
23 OpenSUSELeap15: python311-devel
25 python3-docutils:
28 python3-numpy:
31 python3-opencv:
34 python3-pillow:
37 python3-pip:
[all …]
/qemu/python/
H A Dsetup.py1 #!/usr/bin/env python3
4 Copyright (c) 2020-2021 John Snow for Red Hat, Inc.
7 import setuptools
8 from setuptools.command import bdist_egg
33 # https://medium.com/@daveshawley/safely-using-setup-cfg-for-metadata-1babbe54c108
34 pkg_resources.require('setuptools>=39.2')
36 setuptools.setup(cmdclass={'bdist_egg': bdist_egg_guard})
H A DREADME.rst17 2. ``pip3 install --user .`` will install these packages to your user's
21 If you append the ``--editable`` or ``-e`` argument to either invocation
23 a forwarder ("qemu.egg-link") that points to the source tree. In so
33 (It is a shortcut for ``pip3 install -e .[devel]``.)
36 <https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/>`_
41 --------------------------------------------
48 https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH
59 so that tools like ``qmp-shell`` are always available via $PATH. To
62 ``> PYTHONPATH=~/src/qemu/python python3 -m qemu.qmp.qmp_shell``
69 -----------------------
[all …]
/qemu/tests/docker/dockerfiles/
H A Ddebian-tricore-cross.docker2 # Docker TriCore cross-compiler target
8 # Copyright (c) 2018 Philippe Mathieu-Daudé
10 # SPDX-License-Identifier: GPL-2.0-or-later
12 FROM docker.io/library/debian:11-slim
15 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
16 DEBIAN_FRONTEND=noninteractive eatmydata apt install -yy \
19 ca-certificates \
26 libglib2.0-dev \
27 libpixman-1-dev \
30 ninja-build \
[all …]
H A Ddebian-legacy-test-cross.docker1 # Docker legacy cross-compiler target (tests and minimal qemu)
6 # libc6.1-dev-alpha-cross: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1054412
7 # sh4-linux-user: binaries don't run with bookworm compiler
9 # As we are targeting check-tcg here we only need minimal qemu
12 FROM docker.io/library/debian:11-slim
14 # Duplicate deb line as deb-src
15 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
18 apt-get update && \
19 apt-get install -y eatmydata && \
20 eatmydata apt-get dist-upgrade -y && \
[all …]
H A Ddebian-loongarch-cross.docker2 # Docker cross-compiler target
5 # https://github.com/loongson/build-tools/releases
7 FROM docker.io/library/debian:11-slim
9 # Duplicate deb line as deb-src
10 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
13 apt-get update && \
14 apt-get install -y eatmydata && \
15 eatmydata apt-get dist-upgrade -y && \
16 apt build-dep -yy qemu
18 RUN apt-get update && \
[all …]
H A Ddebian-hexagon-cross.docker2 # Docker Hexagon cross-compiler target
6 # build-deps.
8 FROM docker.io/library/debian:11-slim
10 # Duplicate deb line as deb-src
11 RUN cat /etc/apt/sources.list | sed "s/^deb\ /deb-src /" >> /etc/apt/sources.list
12 RUN apt-get update && \
13 DEBIAN_FRONTEND=noninteractive apt install -yy eatmydata && \
16 apt-get install -y --no-install-recommends \
19 xz-utils \
20 ca-certificates \
[all …]
H A Ddebian-all-test-cross.docker2 # Docker all cross-compiler target (tests only)
7 # to build and run linux-user tests on GitLab
9 FROM docker.io/library/debian:12-slim
11 # Duplicate deb line as deb-src
12 RUN sed -in "s/Types: deb/Types: deb deb-src/g" /etc/apt/sources.list.d/debian.sources
15 apt-get update && \
16 apt-get install -y eatmydata && \
17 eatmydata apt-get dist-upgrade -y && \
18 apt build-dep -yy qemu
22 apt install -y --no-install-recommends \
[all …]
H A Dopensuse-leap.docker1 # THIS FILE WAS AUTO-GENERATED
3 # $ lcitool dockerfile --layers all opensuse-leap-15 qemu
5 # https://gitlab.com/libvirt/libvirt-ci
9 RUN zypper update -y && \
10 …zypper addrepo -fc https://download.opensuse.org/update/leap/15.6/backports/openSUSE:Backports:SLE
11 zypper install -y \
12 Mesa-devel \
13 alsa-lib-devel \
17 brlapi-devel \
19 ca-certificates \
[all …]
/qemu/python/scripts/
H A Dmkvenv.py2 mkvenv - QEMU pyvenv bootstrapping utility
4 usage: mkvenv [-h] command ...
9 -h, --help show this help message and exit
15 post-venv initialization
19 --------------------------------------------------
21 usage: mkvenv create [-h] target
27 -h, --help show this help message and exit
29 --------------------------------------------------
31 usage: mkvenv post_init [-h]
34 -h, --help show this help message and exit
[all …]