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

(-)portage-2.1_pre4-r1_(Original)/bin/emerge (-6 / +15 lines)
Lines 175-180 Link Here
175
"--changelog",    "--columns", "--cols",
175
"--changelog",    "--columns", "--cols",
176
"--debug",        "--deep",
176
"--debug",        "--deep",
177
"--digest",
177
"--digest",
178
"--display-plus-symbol-before-activated-use-flags",
178
"--emptytree",
179
"--emptytree",
179
"--fetchonly",    "--fetch-all-uri",
180
"--fetchonly",    "--fetch-all-uri",
180
"--getbinpkg",    "--getbinpkgonly",
181
"--getbinpkg",    "--getbinpkgonly",
Lines 1505-1516 Link Here
1505
					disabled = []
1506
					disabled = []
1506
				for flag in cur_iuse:
1507
				for flag in cur_iuse:
1507
					if flag in cur_use:
1508
					if flag in cur_use:
1508
						if is_new or flag in old_use and all_flags:
1509
						if "--display-plus-symbol-before-activated-use-flags" in myopts:
1509
							enabled.append(red(flag))
1510
							if is_new or flag in old_use and all_flags:
1510
						elif flag not in old_iuse:
1511
								enabled.append(red("+"+flag))
1511
							enabled.append(yellow(flag)+"%")
1512
							elif flag not in old_iuse:
1512
						elif flag not in old_use:
1513
								enabled.append(yellow("+"+flag)+"%")
1513
							enabled.append(green(flag)+"*")
1514
							elif flag not in old_use:
1515
								enabled.append(green("+"+flag)+"*")
1516
						else:
1517
							if is_new or flag in old_use and all_flags:
1518
								enabled.append(red(flag))
1519
							elif flag not in old_iuse:
1520
								enabled.append(yellow(flag)+"%")
1521
							elif flag not in old_use:
1522
								enabled.append(green(flag)+"*")
1514
					else:
1523
					else:
1515
						if is_new or flag in old_iuse and flag not in old_use and all_flags:
1524
						if is_new or flag in old_iuse and flag not in old_use and all_flags:
1516
							disabled.append(blue("-"+flag))
1525
							disabled.append(blue("-"+flag))
(-)portage-2.1_pre4-r1_(Original)/man/emerge.1 (+3 lines)
Lines 248-253 Link Here
248
As an example, this catches updates in libraries that are not directly
248
As an example, this catches updates in libraries that are not directly
249
listed in the dependencies of a package.
249
listed in the dependencies of a package.
250
.TP
250
.TP
251
.BR "\-\-display-plus-symbol-before-activated-use-flags "
252
Displays a plus ('+') symbol before activated USE flags, for readability.
253
.TP
251
.BR "\-\-emptytree " (\fB\-e\fR)
254
.BR "\-\-emptytree " (\fB\-e\fR)
252
Reinstalls all world packages and their dependencies to the current USE 
255
Reinstalls all world packages and their dependencies to the current USE 
253
specifications while differing from the installed set of packages as 
256
specifications while differing from the installed set of packages as 
(-)portage-2.1_pre4-r1_(Original)/pym/emergehelp.py (+4 lines)
Lines 168-173 Link Here
168
		print "              example, this catches updates in libraries that are not directly"
168
		print "              example, this catches updates in libraries that are not directly"
169
		print "              listed in the dependencies of a package."
169
		print "              listed in the dependencies of a package."
170
		print 
170
		print 
171
		print "       "+green("--display-plus-symbol-before-activated-use-flags")
172
		print "              Displays a plus ('+') symbol before activated USE flags,"
173
		print "              for readability."
174
		print		
171
		print "       "+green("--emptytree")+" ("+green("-e")+" short option)"
175
		print "       "+green("--emptytree")+" ("+green("-e")+" short option)"
172
		print "              Virtually tweaks the tree of installed packages to contain"
176
		print "              Virtually tweaks the tree of installed packages to contain"
173
		print "              nothing. This is great to use together with --pretend. This makes"
177
		print "              nothing. This is great to use together with --pretend. This makes"

Return to bug 10013