summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2008-12-06 12:05:19 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2008-12-06 12:05:19 +0000
commitae431c25bf8607da8367f673aeaf5b2ffa705193 (patch)
treeecdcaebbb9f6f26c13cdfc7d69db77a1d11564af /lib/bb/event.py
parent18baf8f89cbef4a9e965c6319f6a01b9cd7166bf (diff)
downloadbitbake-ae431c25bf8607da8367f673aeaf5b2ffa705193.tar.gz
event.py: Remove the Pkg* events, the make no sense in the task based model bitbake now uses (From Rob Bradford in Poky)
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index 9cf2ee9d7..8f0a1961d 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -213,18 +213,6 @@ class DepBase(PkgBase):
dep = property(getDep, setDep, None, "dep property")
-class PkgStarted(PkgBase):
- """Package build started"""
-
-
-class PkgFailed(PkgBase):
- """Package build failed"""
-
-
-class PkgSucceeded(PkgBase):
- """Package build completed"""
-
-
class BuildStarted(BuildBase):
"""bbmake build run started"""