web-dev-qa-db-ja.com

ワイン5に更新しようとすると、エラーが発生する

私はDebian10を持っていて、現在wine-4.0をインストールしています。推奨コマンドを使用して、ここから最新のワインバージョンに更新しようとしています。

https://wiki.winehq.org/Debian

Sudo apt install --install-recommends winehq-stable

上記のinstallコマンドを実行すると、次のようになります。

Reading package lists... Done
Building dependency tree       
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 to resolve the situation:

The following packages have unmet dependencies:
 winehq-stable : Depends: wine-stable (= 5.0.0~buster)
E: Unable to correct problems, you have held broken packages.

Sudo apt list --installed |グレップワインショー:

fonts-wine/stable,stable,now 4.0-2 all [installed]
libkwineffects11/stable,now 4:5.14.5-1 AMD64 [installed,automatic]
libwine-development/stable,now 4.2-4+b1 AMD64 [installed]
libwine-development/stable,now 4.2-4+b1 i386 [installed]
libwine/stable,now 4.0-2 AMD64 [installed]
libwine/stable,now 4.0-2 i386 [installed]
wine-development/stable,stable,now 4.2-4 all [installed]
wine32-development/stable,now 4.2-4+b1 i386 [installed]
wine32/stable,now 4.0-2 i386 [installed]
wine64-development/stable,now 4.2-4+b1 AMD64 [installed]
wine64/stable,now 4.0-2 AMD64 [installed]
wine/stable,stable,now 4.0-2 all [installed]

私はSudo apt updateを実行しましたが、すべてが最新であることを示しています。

cat /etc/apt/sources.list.d/wine.listは、次のことを示しています。

deb https://dl.winehq.org/wine-builds/debian/ buster main

どうすれば更新できますか?

1
raphael75

Winehqフォーラムからの回答: Debian10およびUbuntu18.04のFAudio

問題は、依存関係がないことに起因しますlibfaudio0 debian10リポジトリやwinehqリポジトリでは利用できません。 opensuseリポジトリを追加する必要があります。

Sudo apt install software-properties-common apt-transport-https
Sudo add-apt-repository 'deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10 ./'
wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/Release.key
Sudo apt-key add Release.key
Sudo apt update
Sudo apt install --install-recommends winehq-stable

Cyber​​maxのおかげで、Debian10およびUbuntu18.04用のFAudioパッケージがOBSにあります。それらのディストリビューション用のWineHQ wine-develおよびwine-stagingパッケージは、それらに対してビルドされ、依存関係としてそれらを必要とします。 Wine 5.0から、wine-stableパッケージにはFAudioも必要になります。

注:Ubuntu 19.10以降およびDebianブルズアイ以降のFAudioは、これらのディストリビューションによって提供されます。ディストリビューションリポジトリからそれらをインストールできない場合は、ディストリビューションのフォーラムでヘルプを求めてください。

FAudioはWineProjectの一部ではないため、FAudioパッケージはここのダウンロードサーバーから配布されませんが、OBSから直接取得できます。

Debian 10: https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/

Ubuntu18.04およびLinuxMint 19.x: https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/

3
GAD3R

aptの代わりにaptitude install winehq-stableを使用してみてください。競合するパッケージを自動的に分類したり、提案したりできます。

apt install aptitudeを実行してaptitudeをインストールできます

0
nullnv0id