Hello community, here is the log from the commit of package kmymoney for openSUSE:Factory checked in at 2018-01-30 15:44:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kmymoney (Old) and /work/SRC/openSUSE:Factory/.kmymoney.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kmymoney" Tue Jan 30 15:44:41 2018 rev:56 rq:570864 version:4.8.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/kmymoney/kmymoney.changes 2018-01-19 11:51:43.267857776 +0100 +++ /work/SRC/openSUSE:Factory/.kmymoney.new/kmymoney.changes 2018-01-30 15:44:43.173720112 +0100 @@ -1,0 +2,6 @@ +Mon Jan 29 17:32:18 UTC 2018 - [email protected] + +- Add fix-build-with-libalkimia-7.0.patch to make it build with the + latest libalkimia (kde#387350) + +------------------------------------------------------------------- New: ---- fix-build-with-libalkimia-7.0.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kmymoney.spec ++++++ --- /var/tmp/diff_new_pack.Hxw9KO/_old 2018-01-30 15:44:44.309667081 +0100 +++ /var/tmp/diff_new_pack.Hxw9KO/_new 2018-01-30 15:44:44.317666707 +0100 @@ -28,6 +28,8 @@ Patch: aqbanking-5.1-backward-compatibility.patch # PATCH-FIX-UPSTREAM Patch1: fix-sepa-plugin.patch +# PATCH-FIX-UPSTREAM +Patch2: fix-build-with-libalkimia-7.0.patch BuildRequires: aqbanking-devel %if 0%{?suse_version} > 1325 BuildRequires: libboost_headers-devel @@ -92,6 +94,7 @@ %patch -p1 %endif %patch1 -p1 +%patch2 -p1 %build %cmake_kde4 -d build ++++++ fix-build-with-libalkimia-7.0.patch ++++++ >From 05003dca6990dd6463eb7fab168b26baa56dec1f Mon Sep 17 00:00:00 2001 From: Ralf Habacker <[email protected]> Date: Mon, 27 Nov 2017 11:30:51 +0100 Subject: Fix 'Link error with libalkimia 7.0' The build system expects alkimia library to be specified in LIBALKIMIA_LIBRARIES, which is not provided by libalkimia > 5.0. BUG:387350 FIXED-IN:4.8.2 --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3585de4..535cf2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -124,6 +124,10 @@ if (NOT LIBALKIMIA_LIBRARIES AND LIBALKIMIA_LIBRARY) find_package(GMP REQUIRED) set(LIBALKIMIA_LIBRARIES ${GMP_LIBRARIES} ${LIBALKIMIA_LIBRARY} ) endif() +# make sure LIBALKIMIA_LIBRARIES is set +if(${LibAlkimia_FOUND} AND NOT LIBALKIMIA_LIBRARIES) + set(LIBALKIMIA_LIBRARIES Alkimia::alkimia) +endif() # make sure we have the matching version of LibAlkimia (not too new) if(${LibAlkimia_FOUND}) if (DEFINED ${LibAlkimia_VERSION}) -- cgit v0.11.2
