aboutsummaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 16:49:37 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-20 16:49:37 +0100
commit25efcd45c83a81d78f73b5da852e575b108b3fb5 (patch)
treebd78faf51dc50682c6a26b9ce5d3300c9973ecb9 /meta
parent7687d91f73f4a116593315b3b1488ac3f0904905 (diff)
downloadopenembedded-core-contrib-25efcd45c83a81d78f73b5da852e575b108b3fb5.tar.gz
Remove obsolete scripts/classes
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/poky-autobuild-notifier.bbclass62
1 files changed, 0 insertions, 62 deletions
diff --git a/meta/classes/poky-autobuild-notifier.bbclass b/meta/classes/poky-autobuild-notifier.bbclass
deleted file mode 100644
index 9ab3d064ed..0000000000
--- a/meta/classes/poky-autobuild-notifier.bbclass
+++ /dev/null
@@ -1,62 +0,0 @@
-#
-# Copyright Openedhand Ltd 2008
-# Author: Richard Purdie
-#
-
-# Designed for use with the Poky autobuilder only and provides custom hooks for
-# certain specific events.
-
-def do_autobuilder_failure_report(event):
- from bb.event import getName
- from bb import data, mkdirhier, build
- import os, glob
-
- if data.getVar('PN', event.data, True) != "clutter":
- return
-
- import smtplib
- import email.Message
-
- version = data.expand("${PN}: ${PV}-${PR}", event.data)
-
- recipients = ["richard@o-hand.com"]
- COMMASPACE = ', '
-
- message = email.Message.Message()
- message["To"] = COMMASPACE.join(recipients)
- message["From"] = "Poky Autobuilder Failure <poky@o-hand.com>"
- message["Subject"] = "Poky Autobuild Failure Report - " + version
-
- mesg = "Poky Build Failure for:\n\n"
-
- for var in ["DISTRO", "MACHINE", "PN", "PV", "PR"]:
- mesg += var + ": " + data.getVar(var, event.data, True) + "\n"
-
- mesg += "\nLog of the failure follows:\n\n"
-
- log_file = glob.glob("%s/log.%s.*" % (data.getVar('T', event.data, True), event.task))
- if len(log_file) != 0:
- mesg += "".join(open(log_file[0], 'r').readlines())
-
- message.set_payload(mesg)
-
- mailServer = smtplib.SMTP("pug.o-hand.com")
- mailServer.sendmail(message["From"], recipients, message.as_string())
- mailServer.quit()
-
-# we want to be an event handler
-addhandler poky_autobuilder_notifier_eventhandler
-python poky_autobuilder_notifier_eventhandler() {
- from bb import note, error, data
- from bb.event import getName
-
- if e.data is None:
- return
-
- name = getName(e)
-
- if name == "TaskFailed":
- do_autobuilder_failure_report(e)
-
- return
-}