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 2434B1395E2 for ; Sat, 12 Nov 2016 08:02:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EC9521C0B0; Sat, 12 Nov 2016 08:02:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 884B021C0B0 for ; Sat, 12 Nov 2016 08:02:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D288341647 for ; Sat, 12 Nov 2016 08:02:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C145224BA for ; Sat, 12 Nov 2016 08:02:30 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1478937730.cad5e55fa91a4d0653fca764019ac9839a735ca4.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/kde5.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: cad5e55fa91a4d0653fca764019ac9839a735ca4 X-VCS-Branch: master Date: Sat, 12 Nov 2016 08:02:30 +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: fff4c4d9-bf1c-4757-9730-1039c7b22a7c X-Archives-Hash: 69c86950a04006e6be7e9ddfa906842d commit: cad5e55fa91a4d0653fca764019ac9839a735ca4 Author: Andreas Sturmlechner gmail com> AuthorDate: Sat Sep 10 14:59:23 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Nov 12 08:02:10 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cad5e55f kde5.eclass: KDE Plasma 5.9 requires >=KF-5.27 Don't interfere with live ebuild KF5 dep though. eclass/kde5.eclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 0041e45..491e4e3 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -154,6 +154,12 @@ case ${KDE_AUTODEPS} in esac fi + if [[ ${CATEGORY} = kde-plasma && ${FRAMEWORKS_MINIMAL} != 9999 ]]; then + if ! [[ $(get_version_component_range 2) -le 8 && $(get_version_component_range 3) -lt 50 ]]; then + FRAMEWORKS_MINIMAL=5.27.0 + fi + fi + DEPEND+=" $(add_frameworks_dep extra-cmake-modules)" RDEPEND+=" >=kde-frameworks/kf-env-3" COMMONDEPEND+=" $(add_qt_dep qtcore)"