projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
15a5d41
)
Make digestcheck() skip the "checking ebuild checksums" part when fetching in
author
Zac Medico
<zmedico@gentoo.org>
Thu, 10 Jul 2008 04:41:27 +0000
(
04:41
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 10 Jul 2008 04:41:27 +0000
(
04:41
-0000)
the background.
svn path=/main/trunk/; revision=11009
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 306d85b3b275de4084774cca3503eec8cfbb48b9..bd800b4e2a0515d52e8d88764229a2b4459b3112 100644
(file)
--- 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)