summaryrefslogtreecommitdiff
path: root/classes/seppuku.bbclass
AgeCommit message (Collapse)AuthorFiles
2009-05-25seppuku: add support for working behind the proxyDmitry Eremin-Solenikov1
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2008-05-23seppuku.bbclass,oestats-client.bbclass: add bug number and tracker to oestatsJeremy Laine1
2008-05-04divers: s/bugs.openembedded.org/bugs.openembedded.net/ for all of OERolf Leggewie1
* bugs.openembedded.org has frequent DNS issues, .net is better maintained both should usually point to the same server and bugzilla installation
2008-03-17sepukku: make attachments work again by importing bb and passing in e.data, ↵Koen Kooi1
based on a patch by RP
2008-03-16seppuku: add PN to comment line for attachment (as discussed on ml)Rolf Leggewie1
2008-03-16seppuku: have the name of the MACHINE in the attachment's description (as ↵Rolf Leggewie1
discussed on the ml)
2008-03-10sepukku bbclass: change 'bugname' far so bugreports get grouped by PN-PV ↵Koen Kooi1
instead of PN-PV-PR-task * mentions failed task now in bug comment
2008-02-26seppuku.bbclass/tinderclient.bbclass: Use exec_func, not exec_task for clean ↵Richard Purdie1
function
2007-11-19seppuku: some more debuggingKoen Kooi1
2007-11-19sepukku: don't log html to file, log more usefull stuff. Debug now looks like:Koen Kooi1
Logged into the box Adding log file /data/build/koen/OE/build/tmp/angstrom/work/arm-oabi-angstrom-linux/failme-1.0-r0/temp/log.do_configure.23635 Trying http://bugs.openembedded.org/buglist.cgi?product=Openembedded&component=build&short_desc_type=substring&short_desc=failme-1.0-r0-do_configure Result of bug search is Bug is open: False and bug number: 2747 Reopened the bug #2747 Got exception in poster.open( attach_query, param ) Failed to attach the build log for bug #2747
2007-08-23seppuku.bbclass: add more debugging and keep attaching buildlogs for known bugsKoen Kooi1
2007-08-19classes/seppuku.bbclass: We can't handle NoProvider for, don't handle it ↵Holger Freyther1
properly, more debugging added BitBake 1.8 is firing NoProvider in non fatal cases. We have to honor that for now.
2007-08-13seppuku: remove extra '?' that confuses bugzilla Koen Kooi1
2007-08-12seppuku: misc fixesKoen Kooi1
* better error messages * fixed bug creation and attachment handling * now reports machine in bug content (till we have a machine section in bugzilla)
2007-08-12seppuku: quick fix for Noprovider not having isRuntime anymore (use ↵Koen Kooi1
Norprovider for that)
2007-08-12seppuku.bbclass: Avoid recursion problem (#2722)Richard Purdie1
2007-08-08seppuku.bbclass: fix indentationKoen Kooi1
* grrrrr, stupid python
2007-05-19classes/seppuku.bbclass: Merge with the one used at openmoko's autobuilderHolger Freyther1
-Properly quote the PR, PV and such. -Log communication with the bugzilla to a log file for inspection.
2007-05-19seppuku.bbclass: replace all examples with OE examplesKoen Kooi1
2007-05-19seppuku.bbclass: start removing openmoko crapKoen Kooi1
2007-03-16classes/seppuku.bbclass: Make it work with OpenEmbedded bugtrackerHolger Freyther1
Do not error out on python2.5 when splitting the url. We had an empty key and a none value. If there was no output file, do not error. This check is the same as in tinderclient.bbclass
2007-03-16classes/seppuku.bbclass: Make parsing of OpenEmbedded's bugtracker workHolger Freyther1
OE's bugtracker has different classes for the buglist. I try hard to parse them all. All severities should be handled.
2007-03-10classes/seppuku.bbclass: Switch to HTTP post, attach the build logs instead ↵Holger Freyther1
of using comments The limit of comments is too low. Use attachments to work around this issue. Also start using HTTP post to avoid really long URLs. They lead to a pipe error. To post we use a MultiPartPoster which is licensed LGPL and can be freely downloaded. You need to put it into the PYTHONPATH Add a new variable for creating attachments and document it.
2007-03-07classes/seppuku.bbclass: Make it almost workHolger Freyther1
This class can find the broken bug, reopen it, or leave it open. There is some issue with sending the logfile to the server, the url itself is correct, when opened in a browser the right thing happens but not from within python *sigh* need a working tcpdump to look into this (which means I will continue tomorrow)
2007-03-06conf/documentation.conf: Document the keys influencing seppuku.bbclassHolger Freyther1
2007-03-06classes/seppuku.bbclass: This could be feature complete nowHolger Freyther1
It is time to try it
2007-03-06classes/seppuku.bbclass: Add the BugQuery code, add code to post a bugHolger Freyther1
Posting bugs should work (besides typos), now only reopening bugs is missing.
2007-03-06classes/seppuku.bbclass: Add a class which might report build issues to a ↵Holger Freyther1
bugzilla directly Start adding seppuku. It listens to TaskFailed and NoProvider failures logs into a bugzilla and calls empty stubs to find a bug report. We use the urllib2 and cookielib from python2.4 to handle the session cookie for us automatically. This library is sadly not present in python2.3 but it eases my life. The old BugZilla installed at OpenMoko has no support for listing the bug report as csv or xml file, this will force me to parse the HTML which I will do for now. This assumes that only one bug report with the exact name can exist.