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

Collapse All | Expand All

(-)pym/_emerge/__init__.py (+10 lines)
Lines 8-13 Link Here
8
from collections import deque
8
from collections import deque
9
import fcntl
9
import fcntl
10
import formatter
10
import formatter
11
import glob
11
import logging
12
import logging
12
import pwd
13
import pwd
13
import select
14
import select
Lines 15605-15610 Link Here
15605
15606
15606
	apply_priorities(settings)
15607
	apply_priorities(settings)
15607
15608
15609
	vdb_path = os.path.join(trees[settings["ROOT"]]["root_config"].trees["vartree"].root, portage.VDB_PATH)
15610
	if not os.access(vdb_path + "/.portage_lockfile", os.F_OK):
15611
		merging_directories = glob.glob(vdb_path + "/*/-MERGING-*")
15612
		if merging_directories:
15613
			print colorize("BAD", "!!! -MERGING- directories have been found:\n")
15614
			for dir in merging_directories:
15615
				print colorize("BAD", "    " + dir)
15616
			print colorize("BAD", "\n!!! Please remove these directories and reinstall appropriate packages.")
15617
15608
	spinner = stdout_spinner()
15618
	spinner = stdout_spinner()
15609
	if "candy" in settings.features:
15619
	if "candy" in settings.features:
15610
		spinner.update = spinner.update_scroll
15620
		spinner.update = spinner.update_scroll

Return to bug 192778