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 4975D1395E4 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 481C921C0B9; Sat, 12 Nov 2016 08:02:34 +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 11A4D21C0B9 for ; Sat, 12 Nov 2016 08:02:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A14D8341661 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 D263624BB 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.3a28f8b99cc79e05ce104765f2c0893250d370cf.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: 3a28f8b99cc79e05ce104765f2c0893250d370cf 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: 85a1d5e9-963b-4421-b1be-d8f90f79e66b X-Archives-Hash: 4928d7037cb8987eab08a108ff4e10b9 commit: 3a28f8b99cc79e05ce104765f2c0893250d370cf Author: Andreas Sturmlechner gmail com> AuthorDate: Mon Oct 17 14:22:32 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=3a28f8b9 kde5.eclass: KDE Applications 16.12 requires >=KF-5.27 eclass/kde5.eclass | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass index 491e4e3..b5ea65a 100644 --- a/eclass/kde5.eclass +++ b/eclass/kde5.eclass @@ -160,6 +160,14 @@ case ${KDE_AUTODEPS} in fi fi + if [[ ${CATEGORY} = kde-apps ]]; then + local vcr2=$((10#$(get_version_component_range 2))) + if ! [[ $(get_version_component_range 1) -le 16 && ${vcr2} -lt 9 ]]; then + FRAMEWORKS_MINIMAL=5.27.0 + fi + unset vcr2 + fi + DEPEND+=" $(add_frameworks_dep extra-cmake-modules)" RDEPEND+=" >=kde-frameworks/kf-env-3" COMMONDEPEND+=" $(add_qt_dep qtcore)"