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 220BD13888F for ; Thu, 15 Oct 2015 11:24:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AA85321C052; Thu, 15 Oct 2015 11:24:50 +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 5B37F21C052 for ; Thu, 15 Oct 2015 11:24:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76F40340B9F for ; Thu, 15 Oct 2015 11:24:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B998C10C9 for ; Thu, 15 Oct 2015 11:24:44 +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: <1444908277.f89c628ae04a2e3d52edab9394d42d839de3b39e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/cmake-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: f89c628ae04a2e3d52edab9394d42d839de3b39e X-VCS-Branch: master Date: Thu, 15 Oct 2015 11:24:44 +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: 48e4b80c-94f2-4b30-98fc-e646a0666f96 X-Archives-Hash: 5b39dc432278ea89a8d08231bf1f06d3 commit: f89c628ae04a2e3d52edab9394d42d839de3b39e Author: Michael Palimaka gentoo org> AuthorDate: Sat Apr 4 15:43:56 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Oct 15 11:24:37 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f89c628a cmake-utils.eclass: Simplify. The exported function list used to be variable due to new phase functions introduced in EAPI 2 and later. Since we no longer support earlier EAPIs, the exported function list is now static and the variable is no longer required. eclass/cmake-utils.eclass | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 948b838..480cd09 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -128,8 +128,7 @@ case ${EAPI} in *) die "EAPI=${EAPI:-0} is not supported" ;; esac -CMAKE_EXPF="src_prepare src_configure src_compile src_test src_install" -EXPORT_FUNCTIONS ${CMAKE_EXPF} +EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install case ${CMAKE_MAKEFILE_GENERATOR} in emake)