From ef172adebe22b4c9cec5ea329751c818c50a74f4 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Sat, 17 Feb 2018 15:44:21 -0500 Subject: [PATCH] Use Wine Devel instead of Wine Staging Wine Staging is not maintained https://wine-staging.com/news/2018-02-17-future-wine-staging.html --- other/docker/windows/get_packages.sh | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/other/docker/windows/get_packages.sh b/other/docker/windows/get_packages.sh index 6c49a5129..45c91854d 100644 --- a/other/docker/windows/get_packages.sh +++ b/other/docker/windows/get_packages.sh @@ -42,20 +42,17 @@ if [ "${SUPPORT_TEST}" = "true" ]; then texinfo # Add Wine package repository to use the latest Wine - echo " - # Wine-staging - deb https://dl.winehq.org/wine-builds/debian/ stretch main - " >> /etc/apt/sources.list + echo "deb https://dl.winehq.org/wine-builds/debian/ stretch main" >> /etc/apt/sources.list curl -o Release.key https://dl.winehq.org/wine-builds/Release.key apt-key add Release.key dpkg --add-architecture i386 apt-get update apt-get install -y \ - wine-staging \ - wine-staging-amd64 \ - wine-staging-dbg \ - winehq-staging + wine-devel \ + wine-devel-amd64 \ + wine-devel-dbg \ + winehq-devel fi # Clean up to reduce image size