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 D281058973 for ; Sun, 17 Jan 2016 10:05:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E54021C035; Sun, 17 Jan 2016 10:05:07 +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 1AE8B21C040 for ; Sun, 17 Jan 2016 10:05:06 +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 2ABA034095A for ; Sun, 17 Jan 2016 10:05:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C49AEE4 for ; Sun, 17 Jan 2016 10:05:02 +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: <1453024585.793a6eb4cc71310ec882d072e67341269eab2607.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: 793a6eb4cc71310ec882d072e67341269eab2607 X-VCS-Branch: master Date: Sun, 17 Jan 2016 10:05:02 +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: ef10c3be-4c35-4529-986a-889fb315ae19 X-Archives-Hash: f2f0539f04a1d2952638ec2917c8f4ba commit: 793a6eb4cc71310ec882d072e67341269eab2607 Author: Michael Palimaka gentoo org> AuthorDate: Sun Jan 17 09:56:25 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jan 17 09:56:25 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=793a6eb4 cmake-utils.eclass: reverse EAPI logic Otherwise it will need updating for any new EAPI. eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index c0f9cc8..d0df4a2 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -428,7 +428,7 @@ enable_cmake-utils_src_prepare() { pushd "${S}" > /dev/null || die - if has "${EAPI:-0}" 6 ; then + if ! has "${EAPI:-0}" 2 3 4 5 ; then default_src_prepare _cleanup_cmake fi