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

(-)pym/portage/dbapi/vartree.py (+4 lines)
Lines 2062-2067 Link Here
2062
								break
2062
								break
2063
						continue
2063
						continue
2064
					self.vartree.dbapi.removeFromContents(cpv, removed)
2064
					self.vartree.dbapi.removeFromContents(cpv, removed)
2065
			else:
2066
				# Prune any preserved libs that may have
2067
				# been unmerged with this package.
2068
				self.vartree.dbapi.plib_registry.pruneNonExisting()
2065
2069
2066
		finally:
2070
		finally:
2067
			if builddir_lock:
2071
			if builddir_lock:
(-)pym/_emerge/__init__.py (+3 lines)
Lines 11374-11379 Link Here
11374
def display_preserved_libs(vardbapi):
11374
def display_preserved_libs(vardbapi):
11375
	MAX_DISPLAY = 3
11375
	MAX_DISPLAY = 3
11376
11376
11377
	# Ensure the registry is consistent with existing files.
11378
	vardbapi.plib_registry.pruneNonExisting()
11379
11377
	if vardbapi.plib_registry.hasEntries():
11380
	if vardbapi.plib_registry.hasEntries():
11378
		print
11381
		print
11379
		print colorize("WARN", "!!!") + " existing preserved libs:"
11382
		print colorize("WARN", "!!!") + " existing preserved libs:"

Return to bug 249805