Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: pym/portage/
Date: Wed, 29 Aug 2012 20:30:12
Message-Id: 1346272177.40ef0fd75e329b789ae1fd98184b89520e9ee0c3.zmedico@gentoo
1 commit: 40ef0fd75e329b789ae1fd98184b89520e9ee0c3
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 20:29:37 2012 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 29 20:29:37 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=40ef0fd7
7
8 EAPI 5: enable slot-operator-deps
9
10 ---
11 pym/portage/eapi.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/portage/eapi.py b/pym/portage/eapi.py
15 index f13e791..84d1afc 100644
16 --- a/pym/portage/eapi.py
17 +++ b/pym/portage/eapi.py
18 @@ -15,7 +15,7 @@ def eapi_has_slot_deps(eapi):
19 return eapi != "0"
20
21 def eapi_has_slot_operator(eapi):
22 - return eapi in ("4-slot-abi",)
23 + return eapi not in ("0", "1", "2", "3", "4", "4-python")
24
25 def eapi_has_src_uri_arrows(eapi):
26 return eapi not in ("0", "1")