From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3B03F138334 for ; Sat, 22 Jun 2019 11:44:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6781E08FB; Sat, 22 Jun 2019 11:44:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93176E08FB for ; Sat, 22 Jun 2019 11:44:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E86B346809 for ; Sat, 22 Jun 2019 11:44:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDC9662D for ; Sat, 22 Jun 2019 11:44:32 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1561203842.b8a603506cb2bf061a03f12fc5e206073f903375.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-misc/zanshin/files/, kde-misc/zanshin/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-misc/zanshin/files/zanshin-0.5.0-cmake.patch kde-misc/zanshin/zanshin-0.5.0.ebuild X-VCS-Directories: kde-misc/zanshin/files/ kde-misc/zanshin/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: b8a603506cb2bf061a03f12fc5e206073f903375 X-VCS-Branch: master Date: Sat, 22 Jun 2019 11:44:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 074e3d82-59bb-4749-99b4-f76963048343 X-Archives-Hash: be55f87f32410a4715d9915bbe587f1d commit: b8a603506cb2bf061a03f12fc5e206073f903375 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 22 11:02:45 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 22 11:44:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8a60350 kde-misc/zanshin: Fix build against >=kde-apps/akonadi-19.04 Package-Manager: Portage-2.3.67, Repoman-2.3.15 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-misc/zanshin/files/zanshin-0.5.0-cmake.patch | 25 ++++++++++++++++++++++++ kde-misc/zanshin/zanshin-0.5.0.ebuild | 4 +++- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/kde-misc/zanshin/files/zanshin-0.5.0-cmake.patch b/kde-misc/zanshin/files/zanshin-0.5.0-cmake.patch new file mode 100644 index 00000000000..6d6facbaeaa --- /dev/null +++ b/kde-misc/zanshin/files/zanshin-0.5.0-cmake.patch @@ -0,0 +1,25 @@ +From 87e98e6b0aa704558009574eed8d8bdf2bfa0fbb Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner +Date: Sat, 22 Jun 2019 12:47:28 +0200 +Subject: [PATCH] Add missing KF5 dependency (fix broken cmake against >=19.04) + +Signed-off-by: Andreas Sturmlechner +--- + CMakeLists.txt | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/CMakeLists.txt b/CMakeLists.txt +index a6191f54..960fc6c7 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -67,6 +67,7 @@ include_directories ( + + find_package(KF5 REQUIRED COMPONENTS + AkonadiCalendar ++ AkonadiContact + AkonadiNotes + AkonadiSearch + IdentityManagement +-- +2.22.0 + diff --git a/kde-misc/zanshin/zanshin-0.5.0.ebuild b/kde-misc/zanshin/zanshin-0.5.0.ebuild index 3a8f084bb7b..96b3141c24e 100644 --- a/kde-misc/zanshin/zanshin-0.5.0.ebuild +++ b/kde-misc/zanshin/zanshin-0.5.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -60,3 +60,5 @@ RDEPEND="${COMMON_DEPEND} !kde-misc/zanshin:4 $(add_kdeapps_dep kdepim-runtime) " + +PATCHES=( "${FILESDIR}/${P}-cmake.patch" )