aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>2012-05-12 05:58:38 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>2012-05-12 05:58:38 +0200
commiteb2056631021a04b62c228206e44376f5c7a81ba (patch)
tree55ff4b6768d1b3acafa564ca213324cfdcfed751 /pym/portage/eapi.py
parentFix handling of empty PORTDIR{,_OVERLAY} setting. (diff)
downloadportage-eb2056631021a04b62c228206e44376f5c7a81ba.tar.gz
portage-eb2056631021a04b62c228206e44376f5c7a81ba.tar.bz2
portage-eb2056631021a04b62c228206e44376f5c7a81ba.zip
Allow dots in package names in EAPI="4-python".
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 c3c4f2d22..f09052dab 100644
--- a/pym/portage/eapi.py
+++ b/pym/portage/eapi.py
@@ -54,3 +54,6 @@ def eapi_has_use_dep_defaults(eapi):
def eapi_has_repo_deps(eapi):
return eapi in ("4-python",)
+
+def eapi_allows_dots_in_PN(eapi):
+ return eapi in ("4-python",)