From 4dd0a48b2bbf5bc16abecd782035145959e735f1 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Tue, 11 May 2021 16:43:22 +0200 Subject: [PATCH] fix(linux): Swap order of dependencies for Debian package It turns out that the Debian package build system only considers the first alternative; python3-raven isn't available on the current Debian version, however we still need it on Ubuntu 18.04 Bionic where python3-sentry-sdk is not available. This change swaps the alternatives and so should work both on Debian as well as for Bionic. --- linux/keyman-config/debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/keyman-config/debian/control b/linux/keyman-config/debian/control index 5aade1aa5e..dad46d616f 100644 --- a/linux/keyman-config/debian/control +++ b/linux/keyman-config/debian/control @@ -20,7 +20,7 @@ Build-Depends: python3-pil, python3-pip, python3-qrcode, - python3-raven | python3-sentry-sdk, + python3-sentry-sdk | python3-raven, python3-requests, python3-requests-cache, python3-setuptools,