summaryrefslogtreecommitdiffstats
path: root/pym/portage
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-04-20 22:25:33 +0000
committerZac Medico <zmedico@gentoo.org>2007-04-20 22:25:33 +0000
commit1f3334f9f3aad7591418d2daa8667da042edcc1b (patch)
treef73d891d73bb5ab0eac98546f887a5335a7dd415 /pym/portage
parentc807fc36067598447e027add831af0ec1e3130a4 (diff)
downloadportage-1f3334f9f3aad7591418d2daa8667da042edcc1b.tar.gz
portage-1f3334f9f3aad7591418d2daa8667da042edcc1b.tar.bz2
portage-1f3334f9f3aad7591418d2daa8667da042edcc1b.zip
Also validate SRC_URI inside doebuild().
svn path=/main/trunk/; revision=6425
Diffstat (limited to 'pym/portage')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 8774a3d18..606326bd8 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -3529,7 +3529,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
set(["clean", "cleanrm", "help", "prerm", "postrm"])
mycpv = mysettings["CATEGORY"] + "/" + mysettings["PF"]
dep_keys = ["DEPEND", "RDEPEND", "PDEPEND"]
- misc_keys = ["LICENSE", "PROVIDE"]
+ misc_keys = ["LICENSE", "PROVIDE", "SRC_URI"]
all_keys = dep_keys + misc_keys
metadata = dict(izip(all_keys, mydbapi.aux_get(mycpv, all_keys)))
class FakeTree(object):