diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2017-06-15 16:33:28 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-22 09:23:38 +0100 |
| commit | b367cd91d1f12e9eca92224dc5ce6b2da028c106 (patch) | |
| tree | 3c66d5354ae5e9a23987938d0b1ebd1886abd436 | |
| parent | 246b2fde383c6b6fdde83db686e0f8a2a9b94615 (diff) | |
| download | poky-b367cd91d1f12e9eca92224dc5ce6b2da028c106.tar.gz | |
bitbake: 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.
(Bitbake rev: 03ba8db0595723286ad462fa197f862e1efdf0de)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/bb/event.py | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 6d8493b175..eb5cd04597 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
| @@ -616,14 +616,6 @@ class FilesMatchingFound(Event): | |||
| 616 | self._pattern = pattern | 616 | self._pattern = pattern |
| 617 | self._matches = matches | 617 | self._matches = matches |
| 618 | 618 | ||
| 619 | class CoreBaseFilesFound(Event): | ||
| 620 | """ | ||
| 621 | Event when a list of appropriate config files has been generated | ||
| 622 | """ | ||
| 623 | def __init__(self, paths): | ||
| 624 | Event.__init__(self) | ||
| 625 | self._paths = paths | ||
| 626 | |||
| 627 | class ConfigFilesFound(Event): | 619 | class ConfigFilesFound(Event): |
| 628 | """ | 620 | """ |
| 629 | Event when a list of appropriate config files has been generated | 621 | Event when a list of appropriate config files has been generated |
| @@ -694,19 +686,6 @@ class LogHandler(logging.Handler): | |||
| 694 | record.taskpid = worker_pid | 686 | record.taskpid = worker_pid |
| 695 | return True | 687 | return True |
| 696 | 688 | ||
| 697 | class RequestPackageInfo(Event): | ||
| 698 | """ | ||
| 699 | Event to request package information | ||
| 700 | """ | ||
| 701 | |||
| 702 | class PackageInfo(Event): | ||
| 703 | """ | ||
| 704 | Package information for GUI | ||
| 705 | """ | ||
| 706 | def __init__(self, pkginfolist): | ||
| 707 | Event.__init__(self) | ||
| 708 | self._pkginfolist = pkginfolist | ||
| 709 | |||
| 710 | class MetadataEvent(Event): | 689 | class MetadataEvent(Event): |
| 711 | """ | 690 | """ |
| 712 | Generic event that target for OE-Core classes | 691 | Generic event that target for OE-Core classes |
