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 BC2FF138334 for ; Thu, 17 Jan 2019 11:00:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84BC3E087B; Thu, 17 Jan 2019 11:00:23 +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 60CCDE087B for ; Thu, 17 Jan 2019 11:00:23 +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 A82B0335D12 for ; Thu, 17 Jan 2019 11:00:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DC2D2515 for ; Thu, 17 Jan 2019 11:00:10 +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: <1547722505.ee96b6c02f2d577fe4d77576129615ce630707c0.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/kde5-functions.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ee96b6c02f2d577fe4d77576129615ce630707c0 X-VCS-Branch: master Date: Thu, 17 Jan 2019 11:00:10 +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: b9a8dccb-e807-4dc2-88e9-a227471e98f2 X-Archives-Hash: 3db801ab9bcf959a36a52377324c1e1d commit: ee96b6c02f2d577fe4d77576129615ce630707c0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jan 17 10:55:05 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Jan 17 10:55:05 2019 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=ee96b6c0 kde5-functions.eclass: Set FRAMEWORKS_MINIMAL=5.54.0 for Plasma-5.15 Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/kde5-functions.eclass | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 4ff518f841..14cb4db3b0 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -39,6 +39,9 @@ case ${CATEGORY} in [[ ${PV} = 5.52.0* ]] && : ${QT_MINIMAL:=5.9.4} ;; kde-plasma) + if [[ ${PV} = 5.14.90 || ${PV} = 5.15.49* ]]; then + : ${FRAMEWORKS_MINIMAL:=5.54.0} + fi if [[ ${KDE_BUILD_TYPE} = live && ${PV} != 5.??.49* ]]; then : ${FRAMEWORKS_MINIMAL:=9999} fi @@ -46,7 +49,7 @@ case ${CATEGORY} in kde-apps) [[ ${PV} = 18.08.3* ]] && : ${QT_MINIMAL:=5.9.4} if [[ ${KDE_BUILD_TYPE} = live && ${PV} != ??.??.49* ]]; then - : ${FRAMEWORKS_MINIMAL:=5.53.0} + : ${FRAMEWORKS_MINIMAL:=5.54.0} fi ;; esac