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 CB29C138010 for ; Fri, 31 Aug 2012 14:52:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55A90E05F8; Fri, 31 Aug 2012 14:52:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2972DE05F8 for ; Fri, 31 Aug 2012 14:52:03 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FCAB33D912 for ; Fri, 31 Aug 2012 14:52:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3F315E543C for ; Fri, 31 Aug 2012 14:52:01 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1346424709.4d7e4d6c89477f1feb2672a6a32b104287c1383d.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/phase-helpers.sh bin/save-ebuild-env.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4d7e4d6c89477f1feb2672a6a32b104287c1383d X-VCS-Branch: master Date: Fri, 31 Aug 2012 14:52:01 +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: 70e5eada-2391-49b1-8e36-caf6b3ce35f4 X-Archives-Hash: eb7738d1c07ece06d93dd56a011330a5 commit: 4d7e4d6c89477f1feb2672a6a32b104287c1383d Author: Zac Medico gentoo org> AuthorDate: Fri Aug 31 14:51:49 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Aug 31 14:51:49 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=4d7e4d6c Fix usex for EAPI 4-python|4-slot-abi. --- bin/phase-helpers.sh | 2 +- bin/save-ebuild-env.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh index 5f170fc..f23abdf 100644 --- a/bin/phase-helpers.sh +++ b/bin/phase-helpers.sh @@ -175,7 +175,7 @@ usev() { } case ${EAPI} in - 0|1|2|3|4) ;; + 0|1|2|3|4|4-python|4-slot-abi) ;; *) usex() { if use "$1"; then diff --git a/bin/save-ebuild-env.sh b/bin/save-ebuild-env.sh index a6d1c61..845a97f 100644 --- a/bin/save-ebuild-env.sh +++ b/bin/save-ebuild-env.sh @@ -74,7 +74,7 @@ save_ebuild_env() { ${QA_INTERCEPTORS} case ${EAPI} in - 0|1|2|3|4) ;; + 0|1|2|3|4|4-python|4-slot-abi) ;; *) unset -f usex ;; esac