Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 184395 Details for
Bug 261675
Interaction between digest and parallel-fetch options can cause problems.
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
fix interference triggered by FEATURES=digest
digest_parallel.patch (text/plain), 1007 bytes, created by
Zac Medico
on 2009-03-09 02:07:13 UTC
(
hide
)
Description:
fix interference triggered by FEATURES=digest
Filename:
MIME Type:
Creator:
Zac Medico
Created:
2009-03-09 02:07:13 UTC
Size:
1007 bytes
patch
obsolete
>Index: pym/portage/__init__.py >=================================================================== >--- pym/portage/__init__.py (revision 12796) >+++ pym/portage/__init__.py (revision 12798) >@@ -5952,6 +5952,7 @@ > mycpv = "/".join((mysettings["CATEGORY"], mysettings["PF"])) > > emerge_skip_distfiles = returnpid >+ emerge_skip_digest = returnpid > # 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 :/ >@@ -6008,7 +6009,8 @@ > elif mydo == "digest": > return not digestgen(aalist, mysettings, overwrite=1, > myportdb=mydbapi) >- elif "digest" in mysettings.features: >+ elif not emerge_skip_digest and not parallel_fetchonly and \ >+ "digest" in mysettings.features: > digestgen(aalist, mysettings, overwrite=0, myportdb=mydbapi) > except portage.exception.PermissionDenied, e: > writemsg("!!! Permission Denied: %s\n" % (e,), noiselevel=-1)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 261675
:
184393
|
184395
|
184401