summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-08-10 22:45:31 +0200
committerZac Medico <zmedico@gentoo.org>2010-08-10 22:30:34 -0700
commita86cd8e23dfda87ff87625464ed23cd75566237f (patch)
treed3c5bf17e3397506aa2346990b2f583719c550a7 /bin/repoman
parent44dac97ec6dcfff3d804f712eb3fcdefc8f01dbc (diff)
downloadportage-a86cd8e23dfda87ff87625464ed23cd75566237f.tar.gz
portage-a86cd8e23dfda87ff87625464ed23cd75566237f.tar.bz2
portage-a86cd8e23dfda87ff87625464ed23cd75566237f.zip
portage.dep.use_reduce: pass is_src_uri when needed
Remove the now unneded _src_uri_validate.
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman
index 24065805c..ffb435238 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1445,7 +1445,9 @@ for x in scanlist:
if not src_uri_error:
# Check that URIs don't reference a server from thirdpartymirrors.
- for uri in portage.flatten(portage.dep.use_reduce(myaux["SRC_URI"], matchall=True)):
+ for uri in portage.flatten(portage.dep.use_reduce( \
+ myaux["SRC_URI"], matchall=True, is_src_uri=True, \
+ allow_src_uri_file_renames=(eapi not in ("0", "1")))):
contains_mirror = False
for mirror in thirdpartymirrors:
if uri.startswith(mirror):