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

Collapse All | Expand All

(-)pym/portage/__init__.py (+14 lines)
Lines 4042-4048 Link Here
4042
			noiselevel=-1)
4049
			noiselevel=-1)
4043
		if strict:
4050
		if strict:
4044
			return 0
4051
			return 0
4052
		else:
4053
			return 1
4045
	mf = Manifest(pkgdir, mysettings["DISTDIR"])
4054
	mf = Manifest(pkgdir, mysettings["DISTDIR"])
4055
	manifest_empty = True
4056
	for d in mf.fhashdict.itervalues():
4057
		if d:
4058
			manifest_empty = False
4059
			break
4060
	if manifest_empty:
4061
		writemsg("!!! Manifest is empty: '%s'\n" % manifest_path,
4062
			noiselevel=-1)
4063
		if strict:
4064
			return 0
4065
		else:
4066
			return 1
4046
	eout = portage.output.EOutput()
4067
	eout = portage.output.EOutput()
4047
	eout.quiet = mysettings.get("PORTAGE_QUIET", None) == "1"
4068
	eout.quiet = mysettings.get("PORTAGE_QUIET", None) == "1"
4048
	try:
4069
	try:

Return to bug 225285