Hello community, here is the log from the commit of package kcm_tablet for openSUSE:Factory checked in at 2019-07-08 15:11:26 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kcm_tablet (Old) and /work/SRC/openSUSE:Factory/.kcm_tablet.new.4615 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kcm_tablet" Mon Jul 8 15:11:26 2019 rev:7 rq:713732 version:3.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/kcm_tablet/kcm_tablet.changes 2019-05-28 09:42:57.985850489 +0200 +++ /work/SRC/openSUSE:Factory/.kcm_tablet.new.4615/kcm_tablet.changes 2019-07-08 15:11:27.591370121 +0200 @@ -1,0 +2,6 @@ +Sat Jul 6 15:29:17 UTC 2019 - Fabian Vogt <[email protected]> + +- Add patch to fix build with cmake >= 3.14 (X11 never had an XLIB component): + * 0001-Remove-x11-xlib-dependency.patch + +------------------------------------------------------------------- New: ---- 0001-Remove-x11-xlib-dependency.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kcm_tablet.spec ++++++ --- /var/tmp/diff_new_pack.g2pcTJ/_old 2019-07-08 15:11:28.359370857 +0200 +++ /var/tmp/diff_new_pack.g2pcTJ/_new 2019-07-08 15:11:28.359370857 +0200 @@ -28,6 +28,8 @@ Source: https://download.kde.org/stable/%{rname}/%{version}/%{rname}-%{version}.tar.xz # PATCH-FIX-UPSTREAM Patch1: 0001-Supposedly-fix-building-with-gcc9.patch +# PATCH-FIX-UPSTREAM +Patch2: 0001-Remove-x11-xlib-dependency.patch BuildRequires: extra-cmake-modules BuildRequires: pkgconfig BuildRequires: update-desktop-files ++++++ 0001-Remove-x11-xlib-dependency.patch ++++++ >From 932353cb5adf9f36caf0249458ce748b38a5b13e Mon Sep 17 00:00:00 2001 From: Valerii Malov <[email protected]> Date: Tue, 18 Jun 2019 21:30:45 +0300 Subject: [PATCH] Remove x11-xlib dependency It's not shipped anymore in some distributions. It was used only in xlib event handlers and since those were dropped it's no longer required. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d7e26e4..9f8df32 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ ecm_setup_version(${PROJECT_VERSION} find_package(Qt5 REQUIRED COMPONENTS Core Gui Widgets DBus X11Extras Qml) find_package(KF5 REQUIRED COMPONENTS CoreAddons I18n GlobalAccel Config XmlGui WidgetsAddons WindowSystem Notifications DBusAddons Plasma DocTools) find_package(XCB OPTIONAL_COMPONENTS XINPUT) -find_package(X11 REQUIRED COMPONENTS XLIB) +find_package(X11 REQUIRED) find_package(XorgWacom REQUIRED) find_package(LibWacom REQUIRED) -- 2.22.0
