From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RMQUN-0001js-1F for garchives@archives.gentoo.org; Fri, 04 Nov 2011 20:35:47 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91A7921C01F; Fri, 4 Nov 2011 20:35:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6417B21C020 for ; Fri, 4 Nov 2011 20:35:37 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB4001B4020 for ; Fri, 4 Nov 2011 20:35:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 30AFA80042 for ; Fri, 4 Nov 2011 20:35:36 +0000 (UTC) From: "Alexandre Restovtsev" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexandre Restovtsev" Message-ID: Subject: [gentoo-commits] proj/gnome:master commit in: eclass/ X-VCS-Repository: proj/gnome X-VCS-Files: eclass/gnome2-python.eclass X-VCS-Directories: eclass/ X-VCS-Committer: tetromino X-VCS-Committer-Name: Alexandre Restovtsev X-VCS-Revision: c2813caebcc5536a93d3c6d7413c288ea9869612 Date: Fri, 4 Nov 2011 20:35:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: bc328a53-de13-435a-8b49-9a3ea8a08ea7 X-Archives-Hash: 63237ed2ff8020d7da17a5a6d30519ef commit: c2813caebcc5536a93d3c6d7413c288ea9869612 Author: Alexandre Rostovtsev gentoo org> AuthorDate: Fri Nov 4 20:34:49 2011 +0000 Commit: Alexandre Restovtsev gmail com> CommitDate: Fri Nov 4 20:34:49 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gnome.git;a=3D= commit;h=3Dc2813cae eclass/gnome2-python.eclass: support EAPI4 No reason to restrict to EAPI3 since python.eclass gained support for 4. --- eclass/gnome2-python.eclass | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/gnome2-python.eclass b/eclass/gnome2-python.eclass index 7b05342..d4dc393 100644 --- a/eclass/gnome2-python.eclass +++ b/eclass/gnome2-python.eclass @@ -16,9 +16,9 @@ inherit gnome2 python # Stolen from git.eclass EXPORTED_FUNCTIONS=3D"pkg_setup src_compile src_test src_install" case "${EAPI:-0}" in - 2|3) EXPORTED_FUNCTIONS=3D"${EXPORTED_FUNCTIONS} src_prepare src_con= figure" ;; + 2|3|4) EXPORTED_FUNCTIONS=3D"${EXPORTED_FUNCTIONS} src_prepare src_c= onfigure" ;; 0|1) ;; - *) die "Unknown EAPI, Bug eclass maintainers." ;; + *) die "Unknown EAPI, bug eclass maintainers." ;; esac =20 EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS}