"""
__slots__ = ("pkg", "settings")
+ _phases = ("setup", "unpack", "compile", "test", "install")
+
def _get_hash_key(self):
hash_key = getattr(self, "_hash_key", None)
if hash_key is None:
if retval != os.EX_OK:
return retval
- retval = portage.doebuild(ebuild_path, "install",
- root_config.root, self.settings, debug,
- mydbapi=portdb, tree="porttree")
- return retval
+ for mydo in self._phases:
+ retval = portage.doebuild(ebuild_path, mydo,
+ root_config.root, self.settings, debug,
+ mydbapi=portdb, tree="porttree")
+ if retval != os.EX_OK:
+ return retval
+ return os.EX_OK
class EbuildBinpkg(Task):
"""
# parse actionmap to spawn ebuild with the appropriate args
def spawnebuild(mydo,actionmap,mysettings,debug,alwaysdep=0,logfile=None):
- if alwaysdep or "noauto" not in mysettings.features:
+ if "EMERGE_FROM" not in mysettings and \
+ (alwaysdep or "noauto" not in mysettings.features):
# process dependency first
if "dep" in actionmap[mydo]:
retval=spawnebuild(actionmap[mydo]["dep"],actionmap,mysettings,debug,alwaysdep=alwaysdep,logfile=logfile)
# unpack compile install`, we will try and fetch 4 times :/
need_distfiles = (mydo in ("fetch", "unpack") or \
mydo not in ("digest", "manifest") and "noauto" not in features)
- if need_distfiles and not fetch(
+ if not ("EMERGE_FROM" in mysettings and mydo != "unpack") and \
+ need_distfiles and not fetch(
fetchme, mysettings, listonly=listonly, fetchonly=fetchonly):
if have_build_dirs:
# Create an elog message for this fetch failure since the
return 1
# See above comment about fetching only when needed
- if not digestcheck(checkme, mysettings, ("strict" in features),
- (mydo not in ["digest","fetch","unpack"] and \
- mysettings.get("PORTAGE_CALLER", None) == "ebuild" and \
- "noauto" in features)):
+ if not ("EMERGE_FROM" in mysettings and mydo != "unpack") and \
+ not digestcheck(checkme, mysettings, "strict" in features):
return 1
if mydo == "fetch":