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

Collapse All | Expand All

(-)a/pym/_emerge/depgraph.py (-1 / +2 lines)
Lines 2741-2747 class depgraph(object): Link Here
2741
			mask_docs = True
2741
			mask_docs = True
2742
		else:
2742
		else:
2743
			writemsg_stdout("\nemerge: there are no ebuilds to satisfy "+green(xinfo)+".\n", noiselevel=-1)
2743
			writemsg_stdout("\nemerge: there are no ebuilds to satisfy "+green(xinfo)+".\n", noiselevel=-1)
2744
			if isinstance(myparent, AtomArg):
2744
			if self._frozen_config.myopts.get('--misspell-suggestions', 'y') == 'y' and \
2745
				isinstance(myparent, AtomArg):
2745
				cp = myparent.atom.cp.lower()
2746
				cp = myparent.atom.cp.lower()
2746
				cat, pkg = portage.catsplit(cp)
2747
				cat, pkg = portage.catsplit(cp)
2747
				if cat == "null":
2748
				if cat == "null":
(-)a/pym/_emerge/help.py (-1 / +1 lines)
Lines 19-25 def shorthelp(): Link Here
19
	print("          [ "+green("--complete-graph")+"             ] [ "+green("--deep")+"       ]")
19
	print("          [ "+green("--complete-graph")+"             ] [ "+green("--deep")+"       ]")
20
	print("          [ "+green("--jobs") + " " + turquoise("JOBS")+" ] [ "+green("--keep-going")+" ] [ " + green("--load-average")+" " + turquoise("LOAD") + "            ]")
20
	print("          [ "+green("--jobs") + " " + turquoise("JOBS")+" ] [ "+green("--keep-going")+" ] [ " + green("--load-average")+" " + turquoise("LOAD") + "            ]")
21
	print("          [ "+green("--newuse")+"    ] [ "+green("--noconfmem")+"  ] [ "+green("--nospinner")+"  ]")
21
	print("          [ "+green("--newuse")+"    ] [ "+green("--noconfmem")+"  ] [ "+green("--nospinner")+"  ]")
22
	print("          [ "+green("--oneshot")+"   ] [ "+green("--onlydeps")+"   ]")
22
	print("          [ "+green("--oneshot")+"   ] [ "+green("--onlydeps")+"   ] [ " + green("--misspell-suggestions")+" < " + turquoise("y") + " | "+ turquoise("n")+" > ]")
23
	print("          [ "+green("--reinstall ")+turquoise("changed-use")+"      ] [ " + green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" >         ]")
23
	print("          [ "+green("--reinstall ")+turquoise("changed-use")+"      ] [ " + green("--with-bdeps")+" < " + turquoise("y") + " | "+ turquoise("n")+" >         ]")
24
	print(bold("Actions:")+"  [ "+green("--depclean")+" | "+green("--list-sets")+" | "+green("--search")+" | "+green("--sync")+" | "+green("--version")+"        ]")
24
	print(bold("Actions:")+"  [ "+green("--depclean")+" | "+green("--list-sets")+" | "+green("--search")+" | "+green("--sync")+" | "+green("--version")+"        ]")
25
25
(-)a/pym/_emerge/main.py (-1 / +6 lines)
Lines 778-783 def parse_opts(tmpcmdline, silent=False): Link Here
778
			"choices"  : true_y_or_n
778
			"choices"  : true_y_or_n
779
		},
779
		},
780
780
781
		"--misspell-suggestions": {
782
			"help"     : "enable package name suggestions when not existing",
783
			"type"     : "choice",
784
			"choices"  : true_y_or_n
785
		},
786
781
	}
787
	}
782
788
783
	if _ENABLE_DYN_LINK_MAP:
789
	if _ENABLE_DYN_LINK_MAP:
784
- 

Return to bug 363137