From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-796739-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id ADB53138C9D
	for <garchives@archives.gentoo.org>; Tue, 28 Apr 2015 19:16:19 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 2A9FCE091E;
	Tue, 28 Apr 2015 19:16:17 +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 D0E75E091E
	for <gentoo-commits@lists.gentoo.org>; Tue, 28 Apr 2015 19:16:16 +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 8403D340EBF
	for <gentoo-commits@lists.gentoo.org>; Tue, 28 Apr 2015 19:16:15 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 79C21978
	for <gentoo-commits@lists.gentoo.org>; Tue, 28 Apr 2015 19:16:11 +0000 (UTC)
From: "Ian Stakenvicius" <axs@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" <axs@gentoo.org>
Message-ID: <1430248551.c5c6c5ef1d2358984fc233d10ebb388873c59e2d.axs@gentoo>
Subject: [gentoo-commits] proj/kde-sunset:master commit in: eclass/
X-VCS-Repository: proj/kde-sunset
X-VCS-Files: eclass/kde-meta.eclass eclass/kde.eclass
X-VCS-Directories: eclass/
X-VCS-Committer: axs
X-VCS-Committer-Name: Ian Stakenvicius
X-VCS-Revision: c5c6c5ef1d2358984fc233d10ebb388873c59e2d
X-VCS-Branch: master
Date: Tue, 28 Apr 2015 19:16:11 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 221f1b0c-9279-4fbc-b78c-780911afdeb8
X-Archives-Hash: 3ec5234befbb47ff19d5fb7b27595eb2

commit:     c5c6c5ef1d2358984fc233d10ebb388873c59e2d
Author:     Ian Stakenvicius <axs <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 28 19:14:43 2015 +0000
Commit:     Ian Stakenvicius <axs <AT> gentoo <DOT> org>
CommitDate: Tue Apr 28 19:15:51 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=c5c6c5ef

Ensured EXPORT_FUNCTIONS works for EAPI3-5 in kde{,-meta}.eclass

Signed-off-by: Ian Stakenvicius <axs <AT> gentoo.org>

 eclass/kde-meta.eclass | 2 +-
 eclass/kde.eclass      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/kde-meta.eclass b/eclass/kde-meta.eclass
index 884ee05..570efd6 100644
--- a/eclass/kde-meta.eclass
+++ b/eclass/kde-meta.eclass
@@ -459,5 +459,5 @@ kde-meta_src_install() {
 }
 case ${EAPI:-0} in
 	0|1) EXPORT_FUNCTIONS src_unpack src_compile src_install;;
-	2) EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install;;
+	2|3|4|5) EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install;;
 esac

diff --git a/eclass/kde.eclass b/eclass/kde.eclass
index eb89f30..eb99669 100644
--- a/eclass/kde.eclass
+++ b/eclass/kde.eclass
@@ -604,5 +604,5 @@ kde_pkg_postrm() {
 
 case ${EAPI:-0} in
 	0|1) EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install pkg_postinst pkg_postrm pkg_preinst;;
-	2) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postinst pkg_postrm pkg_preinst;;
+	2|3|4|5) EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postinst pkg_postrm pkg_preinst;;
 esac