<feed xmlns='http://www.w3.org/2005/Atom'>
<title>multitech-oe.git/classes/base.bbclass, 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>base.bbclass: fix soc-family test</title>
<updated>2010-09-12T11:31:05+00:00</updated>
<author>
<name>Frans Meulenbroeks</name>
<email>fransmeulenbroeks@gmail.com</email>
</author>
<published>2010-09-02T08:52:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=755654d14e8fddc54ed739461bd529291c1e1230'/>
<id>755654d14e8fddc54ed739461bd529291c1e1230</id>
<content type='text'>
for now pushed this patch as it fixes the breakage.
If it is decided not to have SOC_FAMILY we can always revert or overwrite

see http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-September/023680.html

Signed-off-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
Acked-by: Chase Maupin &lt;chase.maupin@ti.com&gt;
and got a looks good from Phil.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
for now pushed this patch as it fixes the breakage.
If it is decided not to have SOC_FAMILY we can always revert or overwrite

see http://lists.linuxtogo.org/pipermail/openembedded-devel/2010-September/023680.html

Signed-off-by: Frans Meulenbroeks &lt;fransmeulenbroeks@gmail.com&gt;
Acked-by: Chase Maupin &lt;chase.maupin@ti.com&gt;
and got a looks good from Phil.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix unpack issue with bitbake 1.10</title>
<updated>2010-09-10T19:41:14+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-09-10T19:38:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=88cb5184884d045ac4703910a6c5af86c1cf20f4'/>
<id>88cb5184884d045ac4703910a6c5af86c1cf20f4</id>
<content type='text'>
Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Per the TSC decision, make packaged-staging default</title>
<updated>2010-09-09T18:05:38+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-09-09T18:03:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=8cfa7531a02e1c8380508b3dbed653427bf04c36'/>
<id>8cfa7531a02e1c8380508b3dbed653427bf04c36</id>
<content type='text'>
For now, just ensures its inherited.  In the future, we can merge / simplify
staging.bbclass with packaged-staging.bbclass as appropriate.

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For now, just ensures its inherited.  In the future, we can merge / simplify
staging.bbclass with packaged-staging.bbclass as appropriate.

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>do_unpack, do_patch: shift some responsibility around, clean things up</title>
<updated>2010-09-02T16:19:17+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-09-01T04:52:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=900cc29b603691eb3a077cb660545ead3715ed54'/>
<id>900cc29b603691eb3a077cb660545ead3715ed54</id>
<content type='text'>
- Consolidate 'is this file a patch' logic
- Move unpack functions from classes into oe.unpack
- Move the unpacking message printing into do_unpack
- Move the destination directory determination into do_unpack
- Use subprocess's ability to pass in PATH and cwd rather than mangling the cmd
- Use shutil.copy2/copytree for ordinary file "unpack"
- Use the existing urldata from bb.fetch.init rather than re-decodeurl'ing the urls
- Make handling of globs in url paths explicit rather than implicit, calling
  oe_unpack on each one, so showing an unpacking message to the user for each
  globbed file, rather than the entirety

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
Acked-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Acked-by: Tom Rini &lt;tom_rini@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Consolidate 'is this file a patch' logic
- Move unpack functions from classes into oe.unpack
- Move the unpacking message printing into do_unpack
- Move the destination directory determination into do_unpack
- Use subprocess's ability to pass in PATH and cwd rather than mangling the cmd
- Use shutil.copy2/copytree for ordinary file "unpack"
- Use the existing urldata from bb.fetch.init rather than re-decodeurl'ing the urls
- Make handling of globs in url paths explicit rather than implicit, calling
  oe_unpack on each one, so showing an unpacking message to the user for each
  globbed file, rather than the entirety

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
Acked-by: Khem Raj &lt;raj.khem@gmail.com&gt;
Acked-by: Tom Rini &lt;tom_rini@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>base.bbclass: fix bug with absolute file:// uris</title>
<updated>2010-08-31T15:46:25+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-08-30T23:43:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=dd478c59e5ec36bc5f43ed9721323ad8171b5ef4'/>
<id>dd478c59e5ec36bc5f43ed9721323ad8171b5ef4</id>
<content type='text'>
The code which used host/path from the url to construct the destination of the
copy was using os.path.join.  os.path.join treats a "/" in an element as an
indication to drop all previous elements, so the full path resulted in a
destination exactly the same as the source, resulting in a no-op unpack.
Fixed by using oe.path.join instead.

The previous fix missed two instances of os.path.join -- there's code
duplication in oe_unpack_file, really need to resurrect my do_unpack cleanup
branch.

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The code which used host/path from the url to construct the destination of the
copy was using os.path.join.  os.path.join treats a "/" in an element as an
indication to drop all previous elements, so the full path resulted in a
destination exactly the same as the source, resulting in a no-op unpack.
Fixed by using oe.path.join instead.

The previous fix missed two instances of os.path.join -- there's code
duplication in oe_unpack_file, really need to resurrect my do_unpack cleanup
branch.

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "base.bbclass: fix bug with absolute file:// uris"</title>
<updated>2010-08-31T14:29:38+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-08-31T14:29:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=7b4cb64edce429f03cb4802f7df94f52176e4a23'/>
<id>7b4cb64edce429f03cb4802f7df94f52176e4a23</id>
<content type='text'>
Drop this for now, as it breaks other things.  Of course, without this, you
once again can no longer have absolute file:// paths the way we used to be
able to.  Will look into it further.

This reverts commit 599b03fe999d41114d124ce663b6c59fa57256d8.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Drop this for now, as it breaks other things.  Of course, without this, you
once again can no longer have absolute file:// paths the way we used to be
able to.  Will look into it further.

This reverts commit 599b03fe999d41114d124ce663b6c59fa57256d8.
</pre>
</div>
</content>
</entry>
<entry>
<title>base.bbclass: fix bug with absolute file:// uris</title>
<updated>2010-08-30T23:43:32+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-08-30T23:43:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=599b03fe999d41114d124ce663b6c59fa57256d8'/>
<id>599b03fe999d41114d124ce663b6c59fa57256d8</id>
<content type='text'>
The code which used host/path from the url to construct the destination of the
copy was using os.path.join.  os.path.join treats a "/" in an element as an
indication to drop all previous elements, so the full path resulted in a
destination exactly the same as the source, resulting in a no-op unpack.
Fixed by using oe.path.join instead.

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The code which used host/path from the url to construct the destination of the
copy was using os.path.join.  os.path.join treats a "/" in an element as an
indication to drop all previous elements, so the full path resulted in a
destination exactly the same as the source, resulting in a no-op unpack.
Fixed by using oe.path.join instead.

Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>base: use a variable for the modules to import/inject</title>
<updated>2010-08-24T00:40:12+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-08-23T20:39:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=744016016a6c3ca59da5068afec91a2834d73fd8'/>
<id>744016016a6c3ca59da5068afec91a2834d73fd8</id>
<content type='text'>
Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "base: use a variable for the modules to import/inject"</title>
<updated>2010-08-23T21:00:04+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-08-23T21:00:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=0a11eb71464b263412243dd3dd3e0cb2bbf6332f'/>
<id>0a11eb71464b263412243dd3dd3e0cb2bbf6332f</id>
<content type='text'>
This reverts commit 5678affd4e1b6453d6802b8cfb7823fec6f47269.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 5678affd4e1b6453d6802b8cfb7823fec6f47269.
</pre>
</div>
</content>
</entry>
<entry>
<title>base: use a variable for the modules to import/inject</title>
<updated>2010-08-23T20:40:11+00:00</updated>
<author>
<name>Chris Larson</name>
<email>chris_larson@mentor.com</email>
</author>
<published>2010-08-23T20:39:20+00:00</published>
<link rel='alternate' type='text/html' href='https://git.multitech.net/cgit/multitech-oe.git/commit/?id=5678affd4e1b6453d6802b8cfb7823fec6f47269'/>
<id>5678affd4e1b6453d6802b8cfb7823fec6f47269</id>
<content type='text'>
Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Chris Larson &lt;chris_larson@mentor.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
