]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: Drop legacy code that is no longer useful/used
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 23 Sep 2011 14:02:58 +0000 (15:02 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 26 Sep 2011 16:55:14 +0000 (17:55 +0100)
The code displaying console events has been handled by the bitbake
UI since 1.8 so the legacy code path can be removed. If a log event
is wanted, there are much better (and more complete) ways to do this
so remove the EVENTLOG code too.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/base.bbclass

index 918d859c93d048698293d27b06c514224391b3aa..9144f9cd84ceb7aff4f7f9eee9e98e4b7e35ebc4 100644 (file)
@@ -205,31 +205,7 @@ python base_eventhandler() {
        from bb import note, error, data
        from bb.event import getName
 
-       messages = {}
-       messages["Completed"] = "completed"
-       messages["Succeeded"] = "completed"
-       messages["Started"] = "started"
-       messages["Failed"] = "failed"
-
        name = getName(e)
-       msg = ""
-       if name.startswith("Pkg"):
-               msg += "package %s: " % data.getVar("P", e.data, 1)
-               msg += messages.get(name[3:]) or name[3:]
-       elif name.startswith("Task"):
-               msg += "package %s: task %s: " % (data.getVar("PF", e.data, 1), e.task)
-               msg += messages.get(name[4:]) or name[4:]
-       elif name.startswith("Build"):
-               msg += "build %s: " % e.name
-               msg += messages.get(name[5:]) or name[5:]
-       elif name == "UnsatisfiedDep":
-               msg += "package %s: dependency %s %s" % (e.pkg, e.dep, name[:-3].lower())
-
-       # Only need to output when using 1.8 or lower, the UI code handles it
-       # otherwise
-       if (int(bb.__version__.split(".")[0]) <= 1 and int(bb.__version__.split(".")[1]) <= 8):
-               if msg:
-                       note(msg)
 
        if name.startswith("BuildStarted"):
                bb.data.setVar( 'BB_VERSION', bb.__version__, e.data )
@@ -275,12 +251,6 @@ python base_eventhandler() {
 
        if not data in e.__dict__:
                return
-
-       log = data.getVar("EVENTLOG", e.data, 1)
-       if log:
-               logfile = file(log, "a")
-               logfile.write("%s\n" % msg)
-               logfile.close()
 }
 
 addtask configure after do_unpack do_patch