More eblank.
authorZac Medico <zmedico@gentoo.org>
Tue, 17 Jun 2008 20:16:03 +0000 (20:16 -0000)
committerZac Medico <zmedico@gentoo.org>
Tue, 17 Jun 2008 20:16:03 +0000 (20:16 -0000)
svn path=/main/trunk/; revision=10704

bin/isolated-functions.sh
cnf/make.conf
man/color.map.5
pym/portage/__init__.py
pym/portage/output.py

index 1eacf4414b34ac9e9ffcd9d616a9cb8d6ecd8583..6faa5d656758a221649d5ef364b18c6f5c15ca71 100755 (executable)
@@ -344,7 +344,6 @@ unset_colors() {
        COLS="25 80"
        ENDCOL=
 
-       BLANK=
        GOOD=
        WARN=
        BAD=
@@ -367,7 +366,6 @@ set_colors() {
        if [ -n "${PORTAGE_COLORMAP}" ] ; then
                eval ${PORTAGE_COLORMAP}
        else
-               BLANK=$'\e[37m'
                GOOD=$'\e[32;01m'
                WARN=$'\e[33;01m'
                BAD=$'\e[31;01m'
index bc9a8f40a7674fe699fc87399774b7b45a2fa3b0..ecc382b96d93c3eb6b23e51993838eb14fd694f6 100644 (file)
 
 # logging related variables:
 # PORTAGE_ELOG_CLASSES: selects messages to be logged, possible values are:
-#                          blank, info, warn, error, log, qa, *
+#                          info, warn, error, log, qa, *
 #                       Warning: commenting this will disable elog
-PORTAGE_ELOG_CLASSES="blank log warn error"
+PORTAGE_ELOG_CLASSES="log warn error"
 
 # PORTAGE_ELOG_SYSTEM: selects the module(s) to process the log messages. Modules
 #                      included in portage are (empty means logging is disabled):
index acb23ee9212be407d14fce3d6ac0cc7ecc096ae8..39f76a4cb882eff14ea63cc13c5e83d15e3b4c6e 100644 (file)
@@ -15,9 +15,6 @@ value defined internally.
 \fBBAD\fR = \fI"red"\fR
 Defines color used for some words occuring in bad context.
 .TP
-\fBBLANK\fR = \fI"lightgray"\fR
-Defines color used to display eblank lines.
-.TP
 \fBBRACKET\fR = \fI"blue"\fR
 Defines color used for brackets.
 .TP
index 4970d1a114d7da00d004a5fa0a3141df471a4b22..6b35f1791ac17ec3688674b38b89ea21155d1854 100644 (file)
@@ -4452,7 +4452,7 @@ def doebuild_environment(myebuild, mydo, myroot, mysettings, debug, use_cache, m
 
        # Allow color.map to control colors associated with einfo, ewarn, etc...
        mycolors = []
-       for c in ("BLANK", "GOOD", "WARN", "BAD", "HILITE", "BRACKET"):
+       for c in ("GOOD", "WARN", "BAD", "HILITE", "BRACKET"):
                mycolors.append("%s=$'%s'" % (c, portage.output.codes[c]))
        mysettings["PORTAGE_COLORMAP"] = "\n".join(mycolors)
 
index 482747e35ecebb9fcb70ac48c857517873327c01..a7a500cd4f120efcf208cc8a87a85c79819c83a9 100644 (file)
@@ -138,7 +138,6 @@ codes["bg_darkyellow"] = codes["bg_brown"]
 
 # Colors from /etc/init.d/functions.sh
 codes["NORMAL"]     = esc_seq + "0m"
-codes["BLANK"]      = codes["lightgray"]
 codes["GOOD"]       = codes["green"]
 codes["WARN"]       = codes["yellow"]
 codes["BAD"]        = codes["red"]