diff options
-rw-r--r-- | meta/classes/distrodata.bbclass | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/classes/distrodata.bbclass b/meta/classes/distrodata.bbclass index b0f4ecea09..59ee8cea66 100644 --- a/meta/classes/distrodata.bbclass +++ b/meta/classes/distrodata.bbclass | |||
@@ -188,14 +188,6 @@ python do_distrodata() { | |||
188 | } | 188 | } |
189 | do_distrodata[vardepsexclude] = "DATETIME" | 189 | do_distrodata[vardepsexclude] = "DATETIME" |
190 | 190 | ||
191 | addtask distrodataall after do_distrodata | ||
192 | do_distrodataall[recrdeptask] = "do_distrodataall do_distrodata" | ||
193 | do_distrodataall[recideptask] = "do_${BB_DEFAULT_TASK}" | ||
194 | do_distrodataall[nostamp] = "1" | ||
195 | do_distrodataall() { | ||
196 | : | ||
197 | } | ||
198 | |||
199 | addhandler checkpkg_eventhandler | 191 | addhandler checkpkg_eventhandler |
200 | checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted" | 192 | checkpkg_eventhandler[eventmask] = "bb.event.BuildStarted bb.event.BuildCompleted" |
201 | python checkpkg_eventhandler() { | 193 | python checkpkg_eventhandler() { |
@@ -354,14 +346,6 @@ python do_checkpkg() { | |||
354 | bb.utils.unlockfile(lf) | 346 | bb.utils.unlockfile(lf) |
355 | } | 347 | } |
356 | 348 | ||
357 | addtask checkpkgall after do_checkpkg | ||
358 | do_checkpkgall[recrdeptask] = "do_checkpkgall do_checkpkg" | ||
359 | do_checkpkgall[recideptask] = "do_${BB_DEFAULT_TASK}" | ||
360 | do_checkpkgall[nostamp] = "1" | ||
361 | do_checkpkgall() { | ||
362 | : | ||
363 | } | ||
364 | |||
365 | addhandler distro_check_eventhandler | 349 | addhandler distro_check_eventhandler |
366 | distro_check_eventhandler[eventmask] = "bb.event.BuildStarted" | 350 | distro_check_eventhandler[eventmask] = "bb.event.BuildStarted" |
367 | python distro_check_eventhandler() { | 351 | python distro_check_eventhandler() { |
@@ -397,13 +381,6 @@ python do_distro_check() { | |||
397 | dc.save_distro_check_result(result, datetime, result_file, d) | 381 | dc.save_distro_check_result(result, datetime, result_file, d) |
398 | } | 382 | } |
399 | 383 | ||
400 | addtask distro_checkall after do_distro_check | ||
401 | do_distro_checkall[recrdeptask] = "do_distro_checkall do_distro_check" | ||
402 | do_distro_checkall[recideptask] = "do_${BB_DEFAULT_TASK}" | ||
403 | do_distro_checkall[nostamp] = "1" | ||
404 | do_distro_checkall() { | ||
405 | : | ||
406 | } | ||
407 | # | 384 | # |
408 | #Check Missing License Text. | 385 | #Check Missing License Text. |
409 | #Use this task to generate the missing license text data for pkg-report system, | 386 | #Use this task to generate the missing license text data for pkg-report system, |
@@ -448,11 +425,3 @@ python do_checklicense() { | |||
448 | bb.utils.unlockfile(lf) | 425 | bb.utils.unlockfile(lf) |
449 | return | 426 | return |
450 | } | 427 | } |
451 | |||
452 | addtask checklicenseall after do_checklicense | ||
453 | do_checklicenseall[recrdeptask] = "do_checklicenseall do_checklicense" | ||
454 | do_checklicenseall[recideptask] = "do_${BB_DEFAULT_TASK}" | ||
455 | do_checklicenseall[nostamp] = "1" | ||
456 | do_checklicenseall() { | ||
457 | : | ||
458 | } | ||