summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2015-11-09 00:41:57 +0100
committerMichał Górny <mgorny@gentoo.org>2015-11-12 20:32:37 +0100
commit7fa01035846b24c94768906b18fac17ab17a6f8a (patch)
tree98786ab27ed4689cf6975db1bdbe89ba493fe463
parenteapply: Update default patch arguments (diff)
downloadportage-7fa01035846b24c94768906b18fac17ab17a6f8a.tar.gz
portage-7fa01035846b24c94768906b18fac17ab17a6f8a.tar.bz2
portage-7fa01035846b24c94768906b18fac17ab17a6f8a.zip
EAPI 6: Revert support for profile- and repo-level directories
Revert the support for profile- and repository-level directories that has been voted out of EAPI 6.
-rw-r--r--pym/portage/eapi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/eapi.py b/pym/portage/eapi.py
index 7217d23b2..4f77910c5 100644
--- a/pym/portage/eapi.py
+++ b/pym/portage/eapi.py
@@ -81,7 +81,7 @@ def eapi_supports_stable_use_forcing_and_masking(eapi):
return eapi not in ("0", "1", "2", "3", "4", "4-python", "4-slot-abi")
def eapi_allows_directories_on_profile_level_and_repository_level(eapi):
- return eapi not in ("0", "1", "2", "3", "4", "4-slot-abi", "5")
+ return eapi in ("4-python", "5-progress")
def eapi_has_use_aliases(eapi):
return eapi in ("4-python", "5-progress")