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 D4BC8138331 for ; Fri, 23 Mar 2018 18:52:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE633E08EC; Fri, 23 Mar 2018 18:52:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 B37F9E08EC for ; Fri, 23 Mar 2018 18:52:03 +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 0C3DE335C49 for ; Fri, 23 Mar 2018 18:52:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 526B0265 for ; Fri, 23 Mar 2018 18:52:00 +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: <1521831064.0d701084f7babd5f3c477548c4a71e5cdf697fc4.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: 0d701084f7babd5f3c477548c4a71e5cdf697fc4 X-VCS-Branch: master Date: Fri, 23 Mar 2018 18:52:00 +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-Archives-Salt: ee88d69d-2020-4446-80f4-5aba6e47a63d X-Archives-Hash: 0c40105078d2b33844180fa866da5174 commit: 0d701084f7babd5f3c477548c4a71e5cdf697fc4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Mar 23 18:35:35 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Mar 23 18:51:04 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0d701084 kde5-functions.eclass: Fix FRAMEWORKS_MINIMAL for kde-apps-18.03.x eclass/kde5-functions.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index edfe2142cb..1dfb1817cb 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -45,10 +45,10 @@ case ${CATEGORY} in fi ;; kde-apps) - if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 18.04* ]]; then + if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 18* ]]; then : ${FRAMEWORKS_MINIMAL:=5.44.0} fi - if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 17.12* ]]; then + if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 17.12* || ${PV} = 18* ]]; then : ${QT_MINIMAL:=5.9.1} fi ;;