
Es scheint ein Problem mit libpulse-dev
Ubuntu 21.10 zu geben, denn wenn ich libsdl2-dev auf einem vollständig aktuellen System installieren möchte, erhalte ich:
Die folgenden Pakete weisen nicht erfüllte Abhängigkeiten auf:
libpulse-dev: Hängt ab von: libpulse0 (= 1:15.0+dfsg1-1ubuntu2), aber 1:15.0+dfsg1-1ubuntu2.1 muss installiert werden
# dpkg --get-selections | grep hold
root@gamer2:/# apt update
Hit:1 https://repo.steampowered.com/steam stable InRelease
Hit:2 http://ca.archive.ubuntu.com/ubuntu impish InRelease
Hit:3 http://ca.archive.ubuntu.com/ubuntu impish-updates InRelease
Hit:4 http://security.ubuntu.com/ubuntu impish-security InRelease
Hit:5 http://ca.archive.ubuntu.com/ubuntu impish-backports InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
All packages are up to date.
root@gamer2:/# apt dist-upgrade
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Calculating upgrade... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
root@gamer2:/# apt install libsdl2-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help resolve the situation:
The following packages have unmet dependencies:
libpulse-dev : Depends: libpulse0 (= 1:15.0+dfsg1-1ubuntu2) but 1:15.0+dfsg1-1ubuntu2.1 is to be installed
Depends: libpulse-mainloop-glib0 (= 1:15.0+dfsg1-1ubuntu2) but 1:15.0+dfsg1-1ubuntu2.1 is to be installed
E: Unable to correct problems, you have held broken packages.
root@gamer2:/# dpkg --get-selections | grep hold
root@gamer2:/#
Wie löse ich das?
Dies ist eine neue 64b Ubuntu21.10-Installation.
AKTUALISIEREN
# apt-cache policy libpulse-dev
libpulse-dev:
Installed: (none)
Candidate: 1:15.0+dfsg1-1ubuntu2
Version table:
1:15.0+dfsg1-1ubuntu2.2 1 (phased 20%)
500 http://ca.archive.ubuntu.com/ubuntu impish-updates/main amd64 Packages
1:15.0+dfsg1-1ubuntu2 500
500 http://ca.archive.ubuntu.com/ubuntu impish/main amd64 Packages
Ubuntu-Version, -Kernel und -Architektur:
root@gamer2:/# cat /etc/issue
Ubuntu 21.10 \n \l
root@gamer2:/# uname -a
Linux gamer2 5.13.0-22-generic #22-Ubuntu SMP Fri Nov 5 13:21:36 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
AKTUALISIERUNG 2
Es scheint, libpulse0 von impish zu bekommen, aber libpulse-dev von impish-updates, aber warum?
root@gamer2:/# apt-cache policy libpulse0
libpulse0:
Installed: 1:15.0+dfsg1-1ubuntu2.1
Candidate: 1:15.0+dfsg1-1ubuntu2.1
Version table:
1:15.0+dfsg1-1ubuntu2.2 1 (phased 20%)
500 http://ca.archive.ubuntu.com/ubuntu impish-updates/main amd64 Packages
*** 1:15.0+dfsg1-1ubuntu2.1 100
100 /var/lib/dpkg/status
1:15.0+dfsg1-1ubuntu2 500
500 http://ca.archive.ubuntu.com/ubuntu impish/main amd64 Packages
root@gamer2:/# apt install libpulse0
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
libpulse0 is already the newest version (1:15.0+dfsg1-1ubuntu2.1).
libpulse0 set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
AKTUALISIERUNG 3
Dieser PC verfügt über keine nicht standardmäßigen Repositories und es waren auch nie nicht standardmäßige Repositories konfiguriert.
Es gibt keine Haltepunkte:
$ apt-mark showhold
$
Antwort1
„(stufenweise 20 %)“
sehenhttps://wiki.ubuntu.com/PhasedUpdates https://wiki.ubuntu.com/ErrorTracker/PhasedUpdates
Sie können warten, bis die Phasenphase vorbei ist (aktuell bei 50 %) oder das Paket unter Angabe der Versionsnummern installieren:
Entweder
sudo apt install libpulse-dev=1:15.0+dfsg1-1ubuntu2 libpulse0=1:15.0+dfsg1-1ubuntu2 libpulse-mainloop-glib0=1:15.0+dfsg1-1ubuntu2
oder
sudo apt install libpulse-dev=1:15.0+dfsg1-1ubuntu2.2 libpulse0=1:15.0+dfsg1-1ubuntu2.2 libpulse-mainloop-glib0=1:15.0+dfsg1-1ubuntu2.2
Dies scheint ein Sonderfall zu sein, der einen Fehlerbericht auf Launchpad verdient, siehe auchhttps://answers.launchpad.net/ubuntu/+source/pulseaudio/+question/699828