summaryrefslogtreecommitdiffstats
path: root/pym/portage/eapi.py
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-03-24 08:22:58 +0100
committerZac Medico <zmedico@gentoo.org>2010-08-13 20:16:40 -0700
commit5e39119d80433d9333fac70d12cf7c6b6ca61afe (patch)
tree7383c8fd7b5d0089a6565b2c6cef0017d512bcc9 /pym/portage/eapi.py
parent12e38fd2fe321c64c90a8f8863f271994d4e235d (diff)
downloadportage-5e39119d80433d9333fac70d12cf7c6b6ca61afe.tar.gz
portage-5e39119d80433d9333fac70d12cf7c6b6ca61afe.tar.bz2
portage-5e39119d80433d9333fac70d12cf7c6b6ca61afe.zip
Implement use dependency defaults
Diffstat (limited to 'pym/portage/eapi.py')
-rw-r--r--pym/portage/eapi.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pym/portage/eapi.py b/pym/portage/eapi.py
index a288b1964..eb2809ee8 100644
--- a/pym/portage/eapi.py
+++ b/pym/portage/eapi.py
@@ -42,3 +42,6 @@ def eapi_has_dosed_dohard(eapi):
def eapi_has_required_use(eapi):
return eapi not in ("0", "1", "2", "3")
+
+def eapi_has_use_dep_defaults(eapi):
+ return eapi not in ("0", "1", "2", "3")