<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/poky.git/bitbake/lib/bb/server, branch bernard</title>
<subtitle>Mirror of git.yoctoproject.org/poky</subtitle>
<id>https://git.enea.com/cgit/linux/poky.git/atom?h=bernard</id>
<link rel='self' href='https://git.enea.com/cgit/linux/poky.git/atom?h=bernard'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/'/>
<updated>2011-03-15T00:41:46+00:00</updated>
<entry>
<title>bitbake/xmlrpc: only use BBTransport for affected Python versions</title>
<updated>2011-03-15T00:41:46+00:00</updated>
<author>
<name>Joshua Lock</name>
<email>josh@linux.intel.com</email>
</author>
<published>2011-03-05T17:01:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=498c628a1e92831a5331cdaf4d5286246f8f9024'/>
<id>urn:sha1:498c628a1e92831a5331cdaf4d5286246f8f9024</id>
<content type='text'>
Upstream have fixed the xmlrpclip.Transport() bug from Python #8194 for
the Python 2.7.2 release, therefore as we know which versions of the
standard library are affected we can only use our copy/paste class when
it's needed.

Signed-off-by: Joshua Lock &lt;josh@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/server/none: fix getEvent() to return events</title>
<updated>2011-02-24T15:53:58+00:00</updated>
<author>
<name>Paul Eggleton</name>
<email>paul.eggleton@linux.intel.com</email>
</author>
<published>2010-12-09T11:31:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=edd64c7e864cfe68d01a410a021d6bb1d7cf2c27'/>
<id>urn:sha1:edd64c7e864cfe68d01a410a021d6bb1d7cf2c27</id>
<content type='text'>
In the none server, events don't get processed unless the idle_commands
function gets called, which previously wasn't happening with getEvent();
thus UIs that use this to get events were not working.

Fixes [BUGID #561]

Signed-off-by: Paul Eggleton &lt;paul.eggleton@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/server/none: remove leftover XMLRPC bits from none server</title>
<updated>2011-02-24T14:32:01+00:00</updated>
<author>
<name>Paul Eggleton</name>
<email>paul.eggleton@linux.intel.com</email>
</author>
<published>2010-12-07T11:33:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=febb7f263289a8137bbf2f9cd2d47c30cb75cbb8'/>
<id>urn:sha1:febb7f263289a8137bbf2f9cd2d47c30cb75cbb8</id>
<content type='text'>
Remove some comments, imports etc. to do with XMLRPC (inherited from xmlrpc.py
which this file was based upon.)

Signed-off-by: Paul Eggleton &lt;paul.eggleton@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/runqueue.py: Move SIGCHLD handler to wrap none server sleep call</title>
<updated>2011-02-18T11:54:28+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>richard.purdie@linuxfoundation.org</email>
</author>
<published>2011-02-18T11:43:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=359a4d8bf72867b4d5f3daaf8c4f14a82a810107'/>
<id>urn:sha1:359a4d8bf72867b4d5f3daaf8c4f14a82a810107</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;richard.purdie@linuxfoundation.org&gt;
</content>
</entry>
<entry>
<title>Queue up events before the UI is spawned</title>
<updated>2011-01-04T14:46:37+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-09-28T15:24:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=26eda933379801ef1c8b4b09e67d14f498cd3813'/>
<id>urn:sha1:26eda933379801ef1c8b4b09e67d14f498cd3813</id>
<content type='text'>
- Queue up any events fired to the UI before the UI exists
- At exit, check if UIs exist, and if not, flush the queue of LogRecords to
  the console directly.
- When establishing a connection from the UI to the server, flush the queue of
  events to the queue in the server connection, so the UI will receive them
  when it begins its event loop.

(Bitbake rev: 73488aeb317ed306f2ecf99cc9d3708526a5933c)

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/xmlrpc: Modify xmlrpc server to work with Python 2.7</title>
<updated>2010-12-07T12:51:59+00:00</updated>
<author>
<name>Joshua Lock</name>
<email>josh@linux.intel.com</email>
</author>
<published>2010-12-01T14:40:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=b9617bf6e15fe75f850fe5644eea4b7f04eed792'/>
<id>urn:sha1:b9617bf6e15fe75f850fe5644eea4b7f04eed792</id>
<content type='text'>
Python 2.7's library changes some of xmlrpclib's internal implementation such
that interacting with a proxy to BitBakes SimpleXMLRPCServer would cause
BitBake to crash.

The issue was traced to changes in the xmlrpclib.Transport implementation and
Python bug #8194 (http://bugs.python.org/issue8194).

This patch introduces a workaround by create a subclass of
xmlrpclib.Transport, which overrides the offending methods with the Python
2.6.6 implementation copy and pasted from the Python 2.6.6 xmlrpclib, and
using this BBTransport implementation for both xmlrpclib.Server objects we
create.

Signed-off-by: Joshua Lock &lt;josh@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake: Simplfy pre and post cooker hooks</title>
<updated>2010-11-28T21:54:31+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-11-28T15:01:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=d4125bcac0b1ff225dbfd90d2a5722a2f4e64ff8'/>
<id>urn:sha1:d4125bcac0b1ff225dbfd90d2a5722a2f4e64ff8</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake: Rewrite profiling code so its functional for both none and xmlrpc backends</title>
<updated>2010-11-13T13:23:54+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-11-13T13:23:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=05ba6fc7cb5a389737a238f312f4148e6b837d71'/>
<id>urn:sha1:05ba6fc7cb5a389737a238f312f4148e6b837d71</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>bitbake/server: Raise a shutdown event if we're seeing exceptions</title>
<updated>2010-08-20T08:42:31+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2010-08-20T08:38:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=9b8ae6ba4525a63ba18b9e0e85cf0fb9f2a670f1'/>
<id>urn:sha1:9b8ae6ba4525a63ba18b9e0e85cf0fb9f2a670f1</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
<entry>
<title>Apply some 2to3 transforms that don't cause issues in 2.6</title>
<updated>2010-07-02T14:41:33+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-04-12T00:03:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/poky.git/commit/?id=1180bab54e2879401f3586c91a48174191a1ee8b'/>
<id>urn:sha1:1180bab54e2879401f3586c91a48174191a1ee8b</id>
<content type='text'>
(Bitbake rev: d39ab776e7ceaefc8361150151cf0892dcb70d9c)

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
</entry>
</feed>
