<feed xmlns='http://www.w3.org/2005/Atom'>
<title>multitech-oe.git/recipes/python, branch testing</title>
<subtitle>Multi-Tech CoreCDP 1.x OpenEmbedded Tree</subtitle>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/'/>
<entry>
<title>python-tlslite_0.3.8.bb: bump PR</title>
<updated>2010-09-19T15:19:12+00:00</updated>
<author>
<name>Frans Meulenbroeks</name>
<email>fransmeulenbroeks@gmail.com</email>
</author>
<published>2010-09-19T15:19:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=2fd88f3594cc316430209c2f9a5ed3530b7af263'/>
<id>2fd88f3594cc316430209c2f9a5ed3530b7af263</id>
<content type='text'>
didn't bump PR yesterday when fixing SRC_URI but on hindsight
it can be convenient in some cases (especially if you have a
failed build around) so here's the bump.

Signed-off-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
didn't bump PR yesterday when fixing SRC_URI but on hindsight
it can be convenient in some cases (especially if you have a
failed build around) so here's the bump.

Signed-off-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>python-tlslite_0.3.8.bb: replaced SRC_URI with gentoo one</title>
<updated>2010-09-18T20:12:48+00:00</updated>
<author>
<name>Frans Meulenbroeks</name>
<email>fransmeulenbroeks@gmail.com</email>
</author>
<published>2010-09-18T20:08:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=f22f41d47fb8d9f4463a49657c710a8561764335'/>
<id>f22f41d47fb8d9f4463a49657c710a8561764335</id>
<content type='text'>
original src dir does not exist any more, changed recipe
to fetch from gentoo.
as there is no functional change no PR bump

Signed-off-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
original src dir does not exist any more, changed recipe
to fetch from gentoo.
as there is no functional change no PR bump

Signed-off-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>python-docutils : Add DEPENDS on python.</title>
<updated>2010-09-16T22:32:19+00:00</updated>
<author>
<name>Philip Balister</name>
<email>philip@balister.org</email>
</author>
<published>2010-09-16T22:31:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=402c80a963f6b9a71f82a8e553d4714f7c9c27a5'/>
<id>402c80a963f6b9a71f82a8e553d4714f7c9c27a5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python-cheetah : Add DEPENDS on python.</title>
<updated>2010-09-16T13:36:26+00:00</updated>
<author>
<name>Philip Balister</name>
<email>philip@balister.org</email>
</author>
<published>2010-09-16T11:36:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=fdba514c0a0c04959dcb8da6d1583aa81ddc6163'/>
<id>fdba514c0a0c04959dcb8da6d1583aa81ddc6163</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python-native: configure unicode to ucs4</title>
<updated>2010-09-14T19:55:09+00:00</updated>
<author>
<name>Eric BENARD</name>
<email>eric@eukrea.com</email>
</author>
<published>2010-09-14T09:39:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=203eb8601efb01177e26ede374f315c5eaed990c'/>
<id>203eb8601efb01177e26ede374f315c5eaed990c</id>
<content type='text'>
* while trying to run gdb from an SDK created by OE, I got the following
errors: /usr/local/angstrom/arm/bin/arm-angstrom-linux-gnueabi-gdb: undefined symbol:
PyUnicodeUCS2_FromEncodedObject

* the reason is that the workstation (ubuntu 10.04 or 9.01)'s Python is compiled using ucs4
and the python-native used to create arm-angstrom-linux-gnueabi-gdb is using ucs2, the
problem is detailed here :
http://docs.python.org/faq/extending#when-importing-module-x-why-do-i-get-undefined-symbol-pyunicodeucs2

* configuring python-native with ucs=4 solves this problem.

Signed-off-by: Eric Bénard &lt;eric@eukrea.com&gt;
Acked-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* while trying to run gdb from an SDK created by OE, I got the following
errors: /usr/local/angstrom/arm/bin/arm-angstrom-linux-gnueabi-gdb: undefined symbol:
PyUnicodeUCS2_FromEncodedObject

* the reason is that the workstation (ubuntu 10.04 or 9.01)'s Python is compiled using ucs4
and the python-native used to create arm-angstrom-linux-gnueabi-gdb is using ucs2, the
problem is detailed here :
http://docs.python.org/faq/extending#when-importing-module-x-why-do-i-get-undefined-symbol-pyunicodeucs2

* configuring python-native with ucs=4 solves this problem.

Signed-off-by: Eric Bénard &lt;eric@eukrea.com&gt;
Acked-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>python-m2crypto: Fix for openssl-1.0.0: Update to 0.20.2, apply compatibility patch (gentoo#310461).</title>
<updated>2010-09-11T20:16:23+00:00</updated>
<author>
<name>Stanislav Brabec</name>
<email>utx@penguin.cz</email>
</author>
<published>2010-09-11T20:16:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=c415463af9310c564b65bceea394a7ccc8c77e12'/>
<id>c415463af9310c564b65bceea394a7ccc8c77e12</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python-cheetah: Add native support.</title>
<updated>2010-08-28T13:46:09+00:00</updated>
<author>
<name>Philip Balister</name>
<email>philip@balister.org</email>
</author>
<published>2010-08-28T13:46:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=12bcc62dba9b9c5511f82e2eae23c7458c51a68e'/>
<id>12bcc62dba9b9c5511f82e2eae23c7458c51a68e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python-numpy_1.4.1.bb: Add recipe checksums.</title>
<updated>2010-08-26T06:56:37+00:00</updated>
<author>
<name>Khem Raj</name>
<email>raj.khem@gmail.com</email>
</author>
<published>2010-08-26T06:56:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=513e4eacd19972193164ca64b5ade785fa9858e0'/>
<id>513e4eacd19972193164ca64b5ade785fa9858e0</id>
<content type='text'>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Khem Raj &lt;raj.khem@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>python-numpy_1.4.1.bb : Add version that builds with gcc-4.5.</title>
<updated>2010-08-23T19:16:05+00:00</updated>
<author>
<name>Philip Balister</name>
<email>philip@balister.org</email>
</author>
<published>2010-08-23T19:16:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=e5bed7acf521ad8135dbe1f4dab47ed6cd07af12'/>
<id>e5bed7acf521ad8135dbe1f4dab47ed6cd07af12</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>python-efl: drop do_stage</title>
<updated>2010-08-20T18:23:25+00:00</updated>
<author>
<name>Martin Jansa</name>
<email>Martin.Jansa@gmail.com</email>
</author>
<published>2010-08-17T07:48:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=48b0ef76e0cadf886a5c64eedaef2a61ec894b05'/>
<id>48b0ef76e0cadf886a5c64eedaef2a61ec894b05</id>
<content type='text'>
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Martin Jansa &lt;Martin.Jansa@gmail.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
