Alex Bennée <[email protected]> writes:
Package: qemu
Version: 3.1+dfsg-2
Package: xfsprogs
Version: 4.15.1-1
>
> Which would uninstall the base QEMU binaries. Backtracking I think the
> problem is:
>
> The following packages have unmet dependencies:
> libvdeplug-dev:arm64 : Depends: libvdeplug2:arm64 (= 2.3.2+r586-2.2) but
> it is not going to be installed
> xfslibs-dev:arm64 : Depends: xfsprogs:arm64 (>= 3.0.0) but it is not going
> to be installed
>
> As the libvdeplug2 and xfslibs dependancies have been in the QEMU
> package for a while this looks like a regression in the dev packages. I
> know these work in stretch as we use a dockerised stretch as the basis
> for our cross-compile tools upstream.
OK testing on inside an otherwise clean docker container (so as not to
clash with my native build-deps) I get:
The following packages have unmet dependencies:
builddeps:qemu:arm64 : Depends: xfslibs-dev:arm64 but it is not going to be
installed
E: Unable to correct problems, you have held broken packages.
So it looks like libvde2 is in the clear and it's the xfslibs-dev that
is broken. However I can install it directly:
apt-get install xfslibs-dev:arm64
and then if I try apt-get build-dep -a arm64 qemu again I get:
The following packages have unmet dependencies:
builddeps:qemu:arm64 : Depends: glusterfs-common:arm64
E: Unable to correct problems, you have held broken packages.
Which leads to:
apt install glusterfs-common:arm64
which complains with:
The following packages have unmet dependencies:
glusterfs-common:arm64 : Depends: python3-prettytable:arm64 but it is not
installable
Depends: python3-requests:arm64 but it is not
installable
Depends: python3-jwt:arm64 but it is not installable
However if I try:
apt install glusterfs-common:arm64 python3-prettytable:arm64
python3-requests:arm64 python3-jwt:arm64
It turns out a bunch of unavailable packages:
E: Package 'python3-prettytable:arm64' has no installation candidate
E: Package 'python3-requests:arm64' has no installation candidate
E: Package 'python3-jwt:arm64' has no installation candidate
--
Alex Bennée