| Submitter | Dongxiao Xu |
|---|---|
| Date | Dec. 15, 2011, 7:14 a.m. |
| Message ID | <8777803468ca20a18696e9605fc08ed32d068bd7.1323933009.git.dongxiao.xu@intel.com> |
| Download | mbox | patch |
| Permalink | /patch/16985/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/lib/bb/event.py b/lib/bb/event.py index 088cd7c..67543e7 100644 --- a/lib/bb/event.py +++ b/lib/bb/event.py @@ -459,3 +459,12 @@ class LogHandler(logging.Handler): def filter(self, record): record.taskpid = worker_pid return True + +class PackageInfo(Event): + """ + Package information for GUI + """ + def __init__(self, recipe, pkginfolist): + Event.__init__(self) + self._recipe = recipe + self._pkginfolist = pkginfolist
This event is to pass package information. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> --- lib/bb/event.py | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)