Remove obsolete setuptools dependency and fix Stefan's
Win32 builds. -----BEGIN PGP SIGNATURE----- iQFIBAABCAAyFiEE8TM4V0tmI4mGbHaCv/vSX3jHroMFAl+/uegUHHBib256aW5p QHJlZGhhdC5jb20ACgkQv/vSX3jHroPMiwgAj6VB/lZP10CmKfNCIC6s9TjONP2I ruI3ZMYBrmeiLMf/WZTDI0kRY/mmYMtn4nN+RlEHlBE9a9hSCmHWvQyZDgEIJUOA 1bTAdl4jFAbBv4knKVVuPSu/kMDHVIkwdktEEmPhkMHunIxrI7Yobe4r0GMXXZJm Vu4dNtskzERu/fc+lgbdMjRU+xlXT/zYHy98L5mu+VRgKgmtY/6aF1et4t+EfM9f tu3vd/WEOn/HiYvOsVj55SNSR6IiXTGq0LS5d4fI2Q9B477qoO+x3QJDzjbHBo+u u58QkbqJa5OfO0ZoUAi+SvOjE0EhJFPL5ihVODjkTSbORpfWz3ULyAK1nQ== =Mdqh -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/bonzini-gitlab/tags/for-upstream' into staging Remove obsolete setuptools dependency and fix Stefan's Win32 builds. # gpg: Signature made Thu 26 Nov 2020 14:21:28 GMT # gpg: using RSA key F13338574B662389866C7682BFFBD25F78C7AE83 # gpg: issuer "pbonzini@redhat.com" # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>" [full] # gpg: aka "Paolo Bonzini <pbonzini@redhat.com>" [full] # Primary key fingerprint: 46F5 9FBD 57D6 12E7 BFD4 E2F7 7E15 100C CD36 69B1 # Subkey fingerprint: F133 3857 4B66 2389 866C 7682 BFFB D25F 78C7 AE83 * remotes/bonzini-gitlab/tags/for-upstream: nsis: Fix build for 64 bit installer tests/docker, tests/vm: remove setuptools from images configure: remove python pkg_resources check meson: use dependency() to find libjpeg Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
6cfdaa88cf
@ -87,7 +87,6 @@ windows_msys2_task:
|
||||
C:\tools\msys64\usr\bin\bash.exe -lc "pacman --noconfirm -S --needed \
|
||||
diffutils git grep make pkg-config sed \
|
||||
mingw-w64-x86_64-python \
|
||||
mingw-w64-x86_64-python-setuptools \
|
||||
mingw-w64-x86_64-toolchain \
|
||||
mingw-w64-x86_64-SDL2 \
|
||||
mingw-w64-x86_64-SDL2_image \
|
||||
|
3
configure
vendored
3
configure
vendored
@ -1912,9 +1912,6 @@ fi
|
||||
|
||||
case "$meson" in
|
||||
git | internal)
|
||||
if ! $python -c 'import pkg_resources' > /dev/null 2>&1; then
|
||||
error_exit "Python setuptools not found"
|
||||
fi
|
||||
meson="$python ${source_path}/meson/meson.py"
|
||||
;;
|
||||
*) meson=$(command -v "$meson") ;;
|
||||
|
@ -654,9 +654,8 @@ if get_option('vnc').enabled()
|
||||
vnc = declare_dependency() # dummy dependency
|
||||
png = dependency('libpng', required: get_option('vnc_png'),
|
||||
method: 'pkg-config', static: enable_static)
|
||||
jpeg = cc.find_library('jpeg', has_headers: ['jpeglib.h'],
|
||||
required: get_option('vnc_jpeg'),
|
||||
static: enable_static)
|
||||
jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'),
|
||||
method: 'pkg-config', static: enable_static)
|
||||
sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'],
|
||||
required: get_option('vnc_sasl'),
|
||||
static: enable_static)
|
||||
@ -1956,7 +1955,7 @@ if host_machine.system() == 'windows'
|
||||
'@OUTPUT@',
|
||||
get_option('prefix'),
|
||||
meson.current_source_dir(),
|
||||
host_machine.cpu_family(),
|
||||
host_machine.cpu(),
|
||||
'--',
|
||||
'-DDISPLAYVERSION=' + meson.project_version(),
|
||||
]
|
||||
|
@ -30,7 +30,6 @@ RUN apt update && \
|
||||
pkg-config \
|
||||
psmisc \
|
||||
python3 \
|
||||
python3-setuptools \
|
||||
python3-sphinx \
|
||||
$(apt-get -s build-dep qemu | egrep ^Inst | fgrep '[all]' | cut -d\ -f2)
|
||||
|
||||
|
@ -30,7 +30,6 @@ ENV PACKAGES \
|
||||
perl-Test-Harness \
|
||||
python3 \
|
||||
python3-PyYAML \
|
||||
python3-setuptools \
|
||||
tar \
|
||||
which
|
||||
|
||||
|
@ -26,7 +26,6 @@ ENV PACKAGES \
|
||||
perl-Test-Harness \
|
||||
python3 \
|
||||
python3-PyYAML \
|
||||
python3-setuptools \
|
||||
tar \
|
||||
which
|
||||
|
||||
|
@ -33,7 +33,6 @@ class FreeBSDVM(basevm.BaseVM):
|
||||
"pkgconf",
|
||||
"bzip2",
|
||||
"python37",
|
||||
"py37-setuptools",
|
||||
"ninja",
|
||||
|
||||
# gnu tools
|
||||
|
@ -77,7 +77,6 @@ class HaikuVM(basevm.BaseVM):
|
||||
"devel:libusb_1.0",
|
||||
"devel:libz",
|
||||
"ninja",
|
||||
"setuptools_python3"
|
||||
]
|
||||
|
||||
# https://dev.haiku-os.org/ticket/16512 virtio disk1 shows up as 0 (reversed order)
|
||||
|
@ -31,7 +31,6 @@ class NetBSDVM(basevm.BaseVM):
|
||||
"pkgconf",
|
||||
"xz",
|
||||
"python37",
|
||||
"py37-setuptools",
|
||||
"ninja-build",
|
||||
|
||||
# gnu tools
|
||||
|
@ -30,7 +30,6 @@ class OpenBSDVM(basevm.BaseVM):
|
||||
"git",
|
||||
"pkgconf",
|
||||
"bzip2", "xz",
|
||||
"py3-setuptools",
|
||||
"ninja",
|
||||
|
||||
# gnu tools
|
||||
|
Loading…
Reference in New Issue
Block a user