summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi/vartree.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-07-17 16:52:48 -0700
committerZac Medico <zmedico@gentoo.org>2012-07-17 16:52:48 -0700
commit2df06cb95c1f97a470034bf2be73869256633685 (patch)
treed8f14ef8c5aa81e8def6ac7de87da73fac3ce75a /pym/portage/dbapi/vartree.py
parent9ea1eb84c6c2cd91e31196471ec8ad4339988611 (diff)
downloadportage-2df06cb95c1f97a470034bf2be73869256633685.tar.gz
portage-2df06cb95c1f97a470034bf2be73869256633685.tar.bz2
portage-2df06cb95c1f97a470034bf2be73869256633685.zip
move: respect EAPI wrt dots_in_PN, bug #426476
Diffstat (limited to 'pym/portage/dbapi/vartree.py')
-rw-r--r--pym/portage/dbapi/vartree.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 264790a03..0ae7dc54b 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -330,7 +330,10 @@ class vardbapi(dbapi):
# Ignore PROVIDE virtual match.
continue
if repo_match is not None \
- and not repo_match(self.aux_get(mycpv, ['repository'])[0]):
+ and not repo_match(mycpv.repo):
+ continue
+ eapi_attrs = _get_eapi_attrs(mycpv.eapi)
+ if not eapi_attrs.dots_in_PN and "." in catsplit(newcp)[1]:
continue
mynewcpv = mycpv.replace(mycpv_cp, str(newcp), 1)
mynewcat = catsplit(newcp)[0]