https://bugs.winehq.org/show_bug.cgi?id=52439
Osamu Aoki osamu.aoki@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |osamu.aoki@gmail.com
--- Comment #2 from Osamu Aoki osamu.aoki@gmail.com --- Here is the issue of my previous suggestion and updated fix method.
What I suggested caused following ``` ... Reading package lists... Done W: http://cdn-fastly.deb.debian.org/debian/dists/bookworm/InRelease: The key(s) in the keyring /etc/apt/trusted.gpg.d/winehq.gpg are ignored as the file has an unsupported filetype. W: https://dl.winehq.org/wine-builds/debian/dists/bookworm/InRelease: The key(s) in the keyring /etc/apt/trusted.gpg.d/winehq.gpg are ignored as the file has an unsupported filetype. W: https://dl.google.com/linux/chrome/deb/dists/stable/InRelease: The key(s) in the keyring /etc/apt/trusted.gpg.d/winehq.gpg are ignored as the file has an unsupported filetype. ```
As I see, winehq key is ascii armored wile others are not.
OK, so here is the correct updated steps for Debian Bookworm/12 (and possibly future Ubuntu)
``` $ wget -nc https://dl.winehq.org/wine-builds/winehq.key $ gpg --dearmor winehq.key $ sudo mv winehq.key.gpg /etc/apt/trusted.gpg.d/winehq.key.gpg ```
Cheers!