Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 261675 | Differences between
and this patch

Collapse All | Expand All

(-)pym/portage/__init__.py (-1 / +3 lines)
Lines 5952-5957 Link Here
5952
		mycpv = "/".join((mysettings["CATEGORY"], mysettings["PF"]))
5952
		mycpv = "/".join((mysettings["CATEGORY"], mysettings["PF"]))
5953
5953
5954
		emerge_skip_distfiles = returnpid
5954
		emerge_skip_distfiles = returnpid
5955
		emerge_skip_digest = returnpid
5955
		# Only try and fetch the files if we are going to need them ...
5956
		# Only try and fetch the files if we are going to need them ...
5956
		# otherwise, if user has FEATURES=noauto and they run `ebuild clean
5957
		# otherwise, if user has FEATURES=noauto and they run `ebuild clean
5957
		# unpack compile install`, we will try and fetch 4 times :/
5958
		# unpack compile install`, we will try and fetch 4 times :/
Lines 6008-6014 Link Here
6008
			elif mydo == "digest":
6009
			elif mydo == "digest":
6009
				return not digestgen(aalist, mysettings, overwrite=1,
6010
				return not digestgen(aalist, mysettings, overwrite=1,
6010
					myportdb=mydbapi)
6011
					myportdb=mydbapi)
6011
			elif "digest" in mysettings.features:
6012
			elif not emerge_skip_digest and not parallel_fetchonly and \
6013
				"digest" in mysettings.features:
6012
				digestgen(aalist, mysettings, overwrite=0, myportdb=mydbapi)
6014
				digestgen(aalist, mysettings, overwrite=0, myportdb=mydbapi)
6013
		except portage.exception.PermissionDenied, e:
6015
		except portage.exception.PermissionDenied, e:
6014
			writemsg("!!! Permission Denied: %s\n" % (e,), noiselevel=-1)
6016
			writemsg("!!! Permission Denied: %s\n" % (e,), noiselevel=-1)

Return to bug 261675