From 9222348863e742e40db6247be7d3614f08de77ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Tue, 23 Feb 2021 15:55:52 +0100 Subject: [PATCH] Remove Ubuntu 16.04 package as we haven't supported it as long as I have been here. Remove Ubuntu 19.10 package as support for it ran out last year. --- hifi_qt.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/hifi_qt.py b/hifi_qt.py index 10c8709761..3ab38da1e8 100644 --- a/hifi_qt.py +++ b/hifi_qt.py @@ -66,12 +66,8 @@ endif() u_major = int( distro.major_version() ) u_minor = int( distro.minor_version() ) - if u_major == 16: - self.qtUrl = self.assets_url + '/dependencies/vcpkg/qt5-install-5.12.3-ubuntu-16.04-with-symbols.tar.gz' - elif u_major == 18: + if u_major == 18: self.qtUrl = self.assets_url + '/dependencies/vcpkg/qt5-install-5.15.2-ubuntu-18.04-amd64.tar.xz' - elif u_major == 19 and u_minor == 10: - self.qtUrl = self.assets_url + '/dependencies/vcpkg/qt5-install-5.12.6-ubuntu-19.10.tar.xz' elif u_major > 19: print("We don't support " + distro.name(pretty=True) + " yet. Perhaps consider helping us out?") raise Exception('LINUX DISTRO IS NOT SUPPORTED YET!!!')