diff options
author | Robert Bradford <rob@openedhand.com> | 2008-10-20 11:35:49 +0000 |
---|---|---|
committer | Robert Bradford <rob@openedhand.com> | 2008-10-20 11:35:49 +0000 |
commit | f105cdc88a735b6e0a0b1b0c5a0bd3931a5ad9c3 (patch) | |
tree | 28c6a3b1602603b31bba81b085dc00330e47faab /bitbake-dev/lib/bb/ui | |
parent | a8644924ab92b090546df1869714b57ba91fcd8b (diff) | |
download | openembedded-core-f105cdc88a735b6e0a0b1b0c5a0bd3931a5ad9c3.tar.gz openembedded-core-f105cdc88a735b6e0a0b1b0c5a0bd3931a5ad9c3.tar.bz2 openembedded-core-f105cdc88a735b6e0a0b1b0c5a0bd3931a5ad9c3.tar.xz openembedded-core-f105cdc88a735b6e0a0b1b0c5a0bd3931a5ad9c3.zip |
bitbake-dev: Remove the Pkg{Started, Failed, Succeeded} events and their handling in the UI
These events are superfluous now that BB operates on a task level granularity.
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5541 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake-dev/lib/bb/ui')
-rw-r--r-- | bitbake-dev/lib/bb/ui/knotty.py | 3 | ||||
-rw-r--r-- | bitbake-dev/lib/bb/ui/ncurses.py | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/bitbake-dev/lib/bb/ui/knotty.py b/bitbake-dev/lib/bb/ui/knotty.py index 9e8966030..5e7544ea0 100644 --- a/bitbake-dev/lib/bb/ui/knotty.py +++ b/bitbake-dev/lib/bb/ui/knotty.py @@ -56,9 +56,6 @@ def init(server, eventHandler): if event is None: continue #print event - if event[0].startswith('bb.event.Pkg'): - print "NOTE: %s" % event[1]['_message'] - continue if event[0].startswith('bb.msg.MsgPlain'): print event[1]['_message'] continue diff --git a/bitbake-dev/lib/bb/ui/ncurses.py b/bitbake-dev/lib/bb/ui/ncurses.py index 866792b14..3cac26464 100644 --- a/bitbake-dev/lib/bb/ui/ncurses.py +++ b/bitbake-dev/lib/bb/ui/ncurses.py @@ -245,8 +245,6 @@ class NCursesUI: continue helper.eventHandler(event) #mw.appendText("%s\n" % event[0]) - if event[0].startswith('bb.event.Pkg'): - mw.appendText("NOTE: %s\n" % event[1]['_message']) if event[0].startswith('bb.build.Task'): mw.appendText("NOTE: %s\n" % event[1]['_message']) if event[0].startswith('bb.msg.MsgDebug'): |