From: Zac Medico Date: Thu, 10 Jul 2008 04:41:27 +0000 (-0000) Subject: Make digestcheck() skip the "checking ebuild checksums" part when fetching in X-Git-Tag: v2.2_rc2~135 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=906548f973148ef3b6df42d51df8f43d023bcf10;p=portage.git Make digestcheck() skip the "checking ebuild checksums" part when fetching in the background. svn path=/main/trunk/; revision=11009 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 306d85b3b..bd800b4e2 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4125,7 +4125,7 @@ def digestcheck(myfiles, mysettings, strict=0, justmanifest=0): eout = portage.output.EOutput() eout.quiet = mysettings.get("PORTAGE_QUIET", None) == "1" try: - if strict: + if strict and "PORTAGE_PARALLEL_FETCHONLY" not in mysettings: eout.ebegin("checking ebuild checksums ;-)") mf.checkTypeHashes("EBUILD") eout.eend(0)