<feed xmlns='http://www.w3.org/2005/Atom'>
<title>multitech-oe.git/classes/gettext.bbclass, branch corecdp-1.1.1</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>classes: Drop a number of unneeded import calls (from Poky)</title>
<updated>2009-11-16T10:45:23+00:00</updated>
<author>
<name>Richard Purdie</name>
<email>rpurdie@linux.intel.com</email>
</author>
<published>2009-11-16T10:45:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=bc465d83ad8665211b6f9664b418f4eafcc5ca6c'/>
<id>bc465d83ad8665211b6f9664b418f4eafcc5ca6c</id>
<content type='text'>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Richard Purdie &lt;rpurdie@linux.intel.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>merge of '0cc46a3e4be22a50518f2ca80e16fc733b1d9ca0'</title>
<updated>2008-10-09T08:06:24+00:00</updated>
<author>
<name>Koen Kooi</name>
<email>koen@openembedded.org</email>
</author>
<published>2008-10-09T08:06:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=ec5a5fcd488d5f7b2751647120b4d2fec507eda9'/>
<id>ec5a5fcd488d5f7b2751647120b4d2fec507eda9</id>
<content type='text'>
     and '300c8b716e9fdd8499a7197f71dbcea5255e3b5a'
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
     and '300c8b716e9fdd8499a7197f71dbcea5255e3b5a'
</pre>
</div>
</content>
</entry>
<entry>
<title>gettext.bbclass: revert part of a cset that breaks OE with inifinite loops</title>
<updated>2008-10-09T08:02:50+00:00</updated>
<author>
<name>Koen Kooi</name>
<email>koen@openembedded.org</email>
</author>
<published>2008-10-09T08:02:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=426e03a54e3991b6651bf37d54e78494bcb2d20b'/>
<id>426e03a54e3991b6651bf37d54e78494bcb2d20b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>revert last patch as it leads to a build loop. woglinde, please try again.</title>
<updated>2008-10-09T07:59:28+00:00</updated>
<author>
<name>Michael Lauer</name>
<email>mickey@vanille-media.de</email>
</author>
<published>2008-10-09T07:59:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=355d05a507306d7e18e86fac778e0aaa7f0208d5'/>
<id>355d05a507306d7e18e86fac778e0aaa7f0208d5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>gettext.bbclass: make it simpler to understand</title>
<updated>2008-10-08T22:06:39+00:00</updated>
<author>
<name>Henning Heinold</name>
<email>heinold@inf.fu-berlin.de</email>
</author>
<published>2008-10-08T22:06:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=2a82625e1b63d1eb33b37fea6c96b14e02549708'/>
<id>2a82625e1b63d1eb33b37fea6c96b14e02549708</id>
<content type='text'>
* set the deps for package which can use NLS stuff
* filter the deps out if NLS is not requested
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* set the deps for package which can use NLS stuff
* filter the deps out if NLS is not requested
</pre>
</div>
</content>
</entry>
<entry>
<title>Micro-Optimisation decreasing initial parsing time by 10%</title>
<updated>2006-11-18T16:55:13+00:00</updated>
<author>
<name>Holger Freyther</name>
<email>zecke@selfish.org</email>
</author>
<published>2006-11-18T16:55:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=56b7d78a034187f66e08f3b3e2de55bd878cf9b5'/>
<id>56b7d78a034187f66e08f3b3e2de55bd878cf9b5</id>
<content type='text'>
    python () {} and python __anonymous () {} are as the same
    says functions without a name. They get executed when the
    main bb file is completely parsed. This is used to set
    information like FILESDIR.
    This is a python method so it gets evaled which means compiled
    and executed a lot of times. By moving the code of the anonfunc
    into a proper method this is only compiled once. The result is
    is the 10% speed up when parsing.
    Reindent anonfuncs and new defs without tabs and four spaces
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    python () {} and python __anonymous () {} are as the same
    says functions without a name. They get executed when the
    main bb file is completely parsed. This is used to set
    information like FILESDIR.
    This is a python method so it gets evaled which means compiled
    and executed a lot of times. By moving the code of the anonfunc
    into a proper method this is only compiled once. The result is
    is the 10% speed up when parsing.
    Reindent anonfuncs and new defs without tabs and four spaces
</pre>
</div>
</content>
</entry>
<entry>
<title>import clean BK tree at cset 1.3670</title>
<updated>2005-06-30T08:19:37+00:00</updated>
<author>
<name>Koen Kooi</name>
<email>koen@openembedded.org</email>
</author>
<published>2005-06-30T08:19:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=c8e5702127e507e82e6f68a4b8c546803accea9d'/>
<id>c8e5702127e507e82e6f68a4b8c546803accea9d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge oe-devel@oe-devel.bkbits.net:packages.bb</title>
<updated>2004-12-07T22:05:47+00:00</updated>
<author>
<name>Chris Larson</name>
<email>clarson@kergoth.com</email>
</author>
<published>2004-12-07T22:05:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=a780643c4b6aa11e1a36965a69df7116477c7b4c'/>
<id>a780643c4b6aa11e1a36965a69df7116477c7b4c</id>
<content type='text'>
into handhelds.org:/home/kergoth/code/packages.bb

2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.

2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.

2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge

2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.

BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
into handhelds.org:/home/kergoth/code/packages.bb

2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.

2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.

2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge

2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.

BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
</pre>
</div>
</content>
</entry>
</feed>
