Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Fri, 31 Aug 2012 14:52:40
Message-Id: 1346424709.4d7e4d6c89477f1feb2672a6a32b104287c1383d.zmedico@gentoo
1 commit: 4d7e4d6c89477f1feb2672a6a32b104287c1383d
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 31 14:51:49 2012 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 31 14:51:49 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=4d7e4d6c
7
8 Fix usex for EAPI 4-python|4-slot-abi.
9
10 ---
11 bin/phase-helpers.sh | 2 +-
12 bin/save-ebuild-env.sh | 2 +-
13 2 files changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
16 index 5f170fc..f23abdf 100644
17 --- a/bin/phase-helpers.sh
18 +++ b/bin/phase-helpers.sh
19 @@ -175,7 +175,7 @@ usev() {
20 }
21
22 case ${EAPI} in
23 - 0|1|2|3|4) ;;
24 + 0|1|2|3|4|4-python|4-slot-abi) ;;
25 *)
26 usex() {
27 if use "$1"; then
28
29 diff --git a/bin/save-ebuild-env.sh b/bin/save-ebuild-env.sh
30 index a6d1c61..845a97f 100644
31 --- a/bin/save-ebuild-env.sh
32 +++ b/bin/save-ebuild-env.sh
33 @@ -74,7 +74,7 @@ save_ebuild_env() {
34 ${QA_INTERCEPTORS}
35
36 case ${EAPI} in
37 - 0|1|2|3|4) ;;
38 + 0|1|2|3|4|4-python|4-slot-abi) ;;
39 *) unset -f usex ;;
40 esac