Hello community, here is the log from the commit of package libkdepim for openSUSE:Factory checked in at 2019-02-28 21:26:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkdepim (Old) and /work/SRC/openSUSE:Factory/.libkdepim.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkdepim" Thu Feb 28 21:26:08 2019 rev:36 rq:677615 version:18.12.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libkdepim/libkdepim.changes 2019-02-14 14:21:05.923995750 +0100 +++ /work/SRC/openSUSE:Factory/.libkdepim.new.28833/libkdepim.changes 2019-02-28 21:26:08.769878066 +0100 @@ -1,0 +2,7 @@ +Wed Feb 20 08:38:05 UTC 2019 - [email protected] + +- Add Fix-building-with-akonadi-search-support.patch to re-enable + akonadi-search support that unconditionally was disabled by + mistake + +------------------------------------------------------------------- New: ---- Fix-building-with-akonadi-search-support.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkdepim.spec ++++++ --- /var/tmp/diff_new_pack.30ClWN/_old 2019-02-28 21:26:09.277877896 +0100 +++ /var/tmp/diff_new_pack.30ClWN/_new 2019-02-28 21:26:09.277877896 +0100 @@ -25,6 +25,8 @@ Group: System/Libraries URL: http://www.kde.org Source0: %{name}-%{version}.tar.xz +# PATCH-FIX-UPSTREAM +Patch0: Fix-building-with-akonadi-search-support.patch BuildRequires: akonadi-contact-devel BuildRequires: akonadi-search-devel BuildRequires: akonadi-server-devel @@ -66,6 +68,7 @@ %prep %setup -q +%autopatch -p1 %build %cmake_kf5 -d build ++++++ Fix-building-with-akonadi-search-support.patch ++++++ >From 0e21571f1629b162fd63713c10102e654c9d23e5 Mon Sep 17 00:00:00 2001 From: Antonio Rojas <[email protected]> Date: Wed, 20 Feb 2019 08:17:56 +0100 Subject: Fix building with akonadi search support Commit c185b4f51e6196b82a1289f8d2a1adb8ec3b3770 unconditionally builds without akonadi-search support due to a wrong assignement of the DISABLE_AKONADI_SEARCH variable. Differential Revision: https://phabricator.kde.org/D19172 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4405ddb..bac4166 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -57,7 +57,7 @@ find_package(KF5AkonadiSearch ${AKONADISEARCH_LIB_VERSION} CONFIG REQUIRED) set_package_properties(KF5AkonadiSearch PROPERTIES DESCRIPTION "The Akonadi Search libraries" URL "http://www.kde.org" TYPE REQUIRED PURPOSE "Provides search capabilities in KMail and Akonadi") endif() -set(DISABLE_AKONADI_SEARCH FORCE_DISABLE_AKONADI_SEARCH) +set(DISABLE_AKONADI_SEARCH ${FORCE_DISABLE_AKONADI_SEARCH}) configure_file(config-akonadi-search.h.in ${CMAKE_CURRENT_BINARY_DIR}/src/config-akonadi-search.h) find_package(KF5DesignerPlugin ${KF5_VERSION} CONFIG) -- cgit v1.1
