diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-10 02:09:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-10 02:09:23 +0000 |
commit | ce84d1127388ab87882b79cefecca6aa6d32db18 (patch) | |
tree | ee997bbaa1c0393671027d6fc453a5aea6a88213 | |
parent | 3d56b2a3ef904dbbfb65a6ccc8a44114abea1ad8 (diff) | |
download | portage-ce84d1127388ab87882b79cefecca6aa6d32db18.tar.gz portage-ce84d1127388ab87882b79cefecca6aa6d32db18.tar.bz2 portage-ce84d1127388ab87882b79cefecca6aa6d32db18.zip |
fix the fetch/digest shortcuts so they dont break normal runs of emerge/ebuild
svn path=/main/trunk/; revision=2358
-rw-r--r-- | pym/portage.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/pym/portage.py b/pym/portage.py index 678a695e8..d92b94c60 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2774,8 +2774,11 @@ def doebuild(myebuild,mydo,myroot,mysettings,debug=0,listonly=0,fetchonly=0,clea except: pass - # Only try and fetch the files if we are going to need them - if mydo in ["digest","fetch","unpack"] and not fetch(fetchme, mysettings, listonly=listonly, fetchonly=fetchonly): + # Only try and fetch the files if we are going to need them ... otherwise, + # if user has FEATURES=noauto and they run `ebuild clean unpack compile install`, + # we will try and fetch 4 times :/ + if (mydo in ["digest","fetch","unpack"] or settings["PORTAGE_CALLER"] != "ebuild" or not "noauto" in features) and \ + not fetch(fetchme, mysettings, listonly=listonly, fetchonly=fetchonly): return 1 if mydo=="fetch" and listonly: @@ -2793,8 +2796,8 @@ def doebuild(myebuild,mydo,myroot,mysettings,debug=0,listonly=0,fetchonly=0,clea if mydo=="manifest": return (not digestgen(aalist,mysettings,overwrite=1,manifestonly=1)) - # Don't digest the src_uri files if we don't actually need them - if not digestcheck(checkme, mysettings, ("strict" in features), (mydo not in ["digest","fetch","unpack"])): + # See above comment about fetching only when needed + if not digestcheck(checkme, mysettings, ("strict" in features), (mydo not in ["digest","fetch","unpack"] and settings["PORTAGE_CALLER"] == "ebuild" and "noauto" in features)): return 1 if mydo=="fetch": |