Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 612590
Collapse All | Expand All

(-)a/portage/package/ebuild/fetch.py (-2 / +7 lines)
Lines 370-378 def fetch(myuris, mysettings, listonly=0, fetchonly=0, Link Here
370
	if hash_filter.transparent:
370
	if hash_filter.transparent:
371
		hash_filter = None
371
		hash_filter = None
372
	skip_manifest = mysettings.get("EBUILD_SKIP_MANIFEST") == "1"
372
	skip_manifest = mysettings.get("EBUILD_SKIP_MANIFEST") == "1"
373
	pkgdir = mysettings.get("O")
374
	if not skip_manifest:
375
		mf = mysettings.repositories.get_repo_for_location(os.path.dirname(os.path.dirname(pkgdir)))
376
		mf = mf.load_manifest(mysettings["O"], mysettings["DISTDIR"])
377
			#fetchlist_dict=fetchlist_dict)
378
		if not mf.allow_create:
379
			skip_manifest = True
373
	if skip_manifest:
380
	if skip_manifest:
374
		allow_missing_digests = True
381
		allow_missing_digests = True
375
	pkgdir = mysettings.get("O")
376
	if digests is None and not (pkgdir is None or skip_manifest):
382
	if digests is None and not (pkgdir is None or skip_manifest):
377
		mydigests = mysettings.repositories.get_repo_for_location(
383
		mydigests = mysettings.repositories.get_repo_for_location(
378
			os.path.dirname(os.path.dirname(pkgdir))).load_manifest(
384
			os.path.dirname(os.path.dirname(pkgdir))).load_manifest(
379
- 

Return to bug 612590