aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2017-06-15 16:33:28 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-06-16 00:20:43 +0100
commit03ba8db0595723286ad462fa197f862e1efdf0de (patch)
treec978e2a3debc70d75db8522df5725cabc955d880
parent910b96b9894c712aa32b5d4dadda88b766d86e35 (diff)
downloadbitbake-03ba8db0595723286ad462fa197f862e1efdf0de.tar.gz
event: drop some unused events
These were all used by support code for the Hob UI which has been removed - nothing will currently fire or respond to these events. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/event.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 6d8493b17..eb5cd0459 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -616,14 +616,6 @@ class FilesMatchingFound(Event):
self._pattern = pattern
self._matches = matches
-class CoreBaseFilesFound(Event):
- """
- Event when a list of appropriate config files has been generated
- """
- def __init__(self, paths):
- Event.__init__(self)
- self._paths = paths
-
class ConfigFilesFound(Event):
"""
Event when a list of appropriate config files has been generated
@@ -694,19 +686,6 @@ class LogHandler(logging.Handler):
record.taskpid = worker_pid
return True
-class RequestPackageInfo(Event):
- """
- Event to request package information
- """
-
-class PackageInfo(Event):
- """
- Package information for GUI
- """
- def __init__(self, pkginfolist):
- Event.__init__(self)
- self._pkginfolist = pkginfolist
-
class MetadataEvent(Event):
"""
Generic event that target for OE-Core classes