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 F3CE11396D0 for ; Sun, 8 Oct 2017 08:10:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04FA82BC00A; Sun, 8 Oct 2017 08:10:45 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 D843B2BC004 for ; Sun, 8 Oct 2017 08:10:44 +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 E1B0333D3CE for ; Sun, 8 Oct 2017 08:10:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2B305909F for ; Sun, 8 Oct 2017 08:10:42 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1507449446.bd55acfb7cfc04a00233d4594e5b4cbe72bf5ea1.johu@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: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: bd55acfb7cfc04a00233d4594e5b4cbe72bf5ea1 X-VCS-Branch: master Date: Sun, 8 Oct 2017 08:10:42 +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: f9cf181f-78e2-495c-b46c-fb9994c2c6f6 X-Archives-Hash: 9619bb1966e8294fa854008bdbbb4c3f commit: bd55acfb7cfc04a00233d4594e5b4cbe72bf5ea1 Author: Johannes Huber gentoo org> AuthorDate: Sun Oct 8 07:57:26 2017 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun Oct 8 07:57:26 2017 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=bd55acfb kde5-functions.eclass: Raise minimal versions Closes: https://bugs.gentoo.org/633330 eclass/kde5-functions.eclass | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass index 5e0dc3aa96..7a52044de8 100644 --- a/eclass/kde5-functions.eclass +++ b/eclass/kde5-functions.eclass @@ -42,7 +42,20 @@ case ${CATEGORY} in kde-plasma) [[ ${PV} = 5.10.95 ]] && : ${FRAMEWORKS_MINIMAL:=5.38.0} [[ ${PV} = 5.11* ]] && : ${FRAMEWORKS_MINIMAL:=5.38.0} - [[ ${KDE_BUILD_TYPE} = live ]] && : ${FRAMEWORKS_MINIMAL:=9999} + if [[ ${PV} = 5.12* ]]; then + : ${QT_MINIMAL:=5.9.2} + : ${FRAMEWORKS_MINIMAL:=5.38.0} + fi + if [[ ${KDE_BUILD_TYPE} = live ]]; then + : ${QT_MINIMAL:=5.9.2} + : ${FRAMEWORKS_MINIMAL:=9999} + fi + ;; + kde-apps) + if [[ ${KDE_BUILD_TYPE} = live || ${PV} = 17.12* ]]; then + : ${QT_MINIMAL:=5.9.2} + : ${FRAMEWORKS_MINIMAL:=5.38.0} + fi ;; esac