summaryrefslogtreecommitdiffstats
path: root/pym/portage/dbapi
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-08-26 09:53:10 +0200
committerZac Medico <zmedico@gentoo.org>2010-08-26 07:41:47 -0700
commitf8433f1fde7b87a876689e2fcf9c6c658095a9ce (patch)
tree2a2cd4773cef939f5b771cc90950452af937d8ac /pym/portage/dbapi
parentb2dd1c7ea0c454334e3f7a56fcd25c65927f4dac (diff)
downloadportage-f8433f1fde7b87a876689e2fcf9c6c658095a9ce.tar.gz
portage-f8433f1fde7b87a876689e2fcf9c6c658095a9ce.tar.bz2
portage-f8433f1fde7b87a876689e2fcf9c6c658095a9ce.zip
Let use_reduce and Atom do EAPI checks
Diffstat (limited to 'pym/portage/dbapi')
-rw-r--r--pym/portage/dbapi/porttree.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index dab75b278..ea27883dd 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -22,7 +22,6 @@ from portage.cache.cache_errors import CacheError
from portage.cache.mappings import Mapping
from portage.const import REPO_NAME_LOC
from portage.dbapi import dbapi
-from portage.eapi import eapi_has_src_uri_arrows
from portage.exception import PortageException, \
FileNotFound, InvalidDependString, InvalidPackageName
from portage.localization import _
@@ -1185,8 +1184,7 @@ def _parse_uri_map(cpv, metadata, use=None):
myuris = use_reduce(metadata.get('SRC_URI', ''),
uselist=use, matchall=(use is None),
is_src_uri=True,
- allow_src_uri_file_renames = \
- eapi_has_src_uri_arrows(metadata['EAPI']))
+ eapi=metadata['EAPI'])
uri_map = OrderedDict()