From abb50458802c360a0252f06ef689171317c04029 Mon Sep 17 00:00:00 2001
From: Lukas Holecek <hluk@email.cz>
Date: Sun, 2 Feb 2020 08:04:32 +0100
Subject: [PATCH] Drop support for Ubuntu 14.04

Ubuntu 14.04 contains old Qt 5.2.1 Recent fixes of Qt deprecation
warnings breaks the build. Fixing this would mean adding additional
`ifdef`s.

Signed-off-by: Lukas Holecek <hluk@email.cz>
---
 CMakeLists.txt                         | 2 +-
 utils/debian/create_source_packages.sh | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index bf5d7f8f3..901339c0d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -44,7 +44,7 @@ endif()
 
 set(CMAKE_AUTOMOC ON)
 
-find_package(Qt5Widgets 5.1.0 REQUIRED)
+find_package(Qt5Widgets 5.5.0 REQUIRED)
 list(APPEND copyq_LIBRARIES Qt5::Widgets)
 
 set(copyq_APP_ID      com.github.hluk.copyq)
diff --git a/utils/debian/create_source_packages.sh b/utils/debian/create_source_packages.sh
index 266f6247a..cf88cf9cc 100755
--- a/utils/debian/create_source_packages.sh
+++ b/utils/debian/create_source_packages.sh
@@ -2,7 +2,6 @@
 set -e
 
 distros=(
-    trusty
     xenial
     bionic
     disco
-- 
GitLab