summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-03 18:34:07 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-15 10:28:12 +0100
commitfb8fc5e78c475e217655a05add516c2520d17a4e (patch)
tree109da1d36f254df247299ab31b540dd06b21d459 /bitbake/lib/bb/event.py
parent97fda91810a062a36e419b4d3993a4a36f90f7b9 (diff)
downloadpoky-fb8fc5e78c475e217655a05add516c2520d17a4e.tar.gz
bitbake: event/runqueue: Drop StampUpdate event, its pointless/unused
Whilst this class has existed for years, it doesn't have any users and has a questionable interface. Drop it to allow for further simplification and changes. (Bitbake rev: 3ab51764f7965d696bb2c5a872bf161473df4289) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index 248fc1a6f8..d44621edf4 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -404,23 +404,6 @@ class RecipeTaskPreProcess(RecipeEvent):
404class RecipeParsed(RecipeEvent): 404class RecipeParsed(RecipeEvent):
405 """ Recipe Parsing Complete """ 405 """ Recipe Parsing Complete """
406 406
407class StampUpdate(Event):
408 """Trigger for any adjustment of the stamp files to happen"""
409
410 def __init__(self, targets, stampfns):
411 self._targets = targets
412 self._stampfns = stampfns
413 Event.__init__(self)
414
415 def getStampPrefix(self):
416 return self._stampfns
417
418 def getTargets(self):
419 return self._targets
420
421 stampPrefix = property(getStampPrefix)
422 targets = property(getTargets)
423
424class BuildBase(Event): 407class BuildBase(Event):
425 """Base class for bitbake build events""" 408 """Base class for bitbake build events"""
426 409