From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 75BBE1384B4 for ; Wed, 18 Nov 2015 09:16:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E3B721C060; Wed, 18 Nov 2015 09:16:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9F6AF21C060 for ; Wed, 18 Nov 2015 09:16:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8CDDA3408EC for ; Wed, 18 Nov 2015 09:16:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EA455FF9 for ; Wed, 18 Nov 2015 09:16:05 +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: <1447836436.932db652b0e2a855f70d0fa2f1ed1e1efd3e0127.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/cmake-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 932db652b0e2a855f70d0fa2f1ed1e1efd3e0127 X-VCS-Branch: master Date: Wed, 18 Nov 2015 09:16:05 +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: 41c86db3-5708-4efc-aa16-1ae44bc15c19 X-Archives-Hash: cb5113c7f21193fb6c57855dd46a9c93 commit: 932db652b0e2a855f70d0fa2f1ed1e1efd3e0127 Author: Michael Palimaka gentoo org> AuthorDate: Wed Nov 18 08:47:13 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Nov 18 08:47:16 2015 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=932db652 cmake-utils.eclass: ban WANT_CMAKE in EAPI 6 and later It is basically unused across the tree and complicates the eclass. If it were needed, it might be better to write custom ebuild phase functions instead. eclass/cmake-utils.eclass | 1 + 1 file changed, 1 insertion(+) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 7810a26..c3184bd 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -126,6 +126,7 @@ case ${WANT_CMAKE} in always) ;; *) + ! has "${EAPI:-0}" 2 3 4 5 && die "WANT_CMAKE is banned in EAPI 6 and later" IUSE+=" ${WANT_CMAKE}" CMAKEDEPEND+="${WANT_CMAKE}? ( " ;;