diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-23 15:02:58 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-26 17:55:14 +0100 |
commit | aa60484384385a8b0f07e8062d58056a3670e399 (patch) | |
tree | 353046a2452fcf16621224a71b9aeb9f92e0568b | |
parent | 93e595d5c89ebacdb8d1e6fcfe6f58fe2d30de28 (diff) | |
download | openembedded-core-aa60484384385a8b0f07e8062d58056a3670e399.tar.gz openembedded-core-aa60484384385a8b0f07e8062d58056a3670e399.tar.bz2 openembedded-core-aa60484384385a8b0f07e8062d58056a3670e399.zip |
base.bbclass: Drop legacy code that is no longer useful/used
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>
-rw-r--r-- | meta/classes/base.bbclass | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 918d859c93..9144f9cd84 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -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 |