<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-java.git/recipes-core/classpath/classpath-initial_0.93.bb, branch honister</title>
<subtitle>[no description]</subtitle>
<id>https://git.enea.com/cgit/linux/meta-java.git/atom?h=honister</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-java.git/atom?h=honister'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/'/>
<updated>2015-03-11T13:43:53+00:00</updated>
<entry>
<title>initials: silence "populate_sysroot manifest not found" warnings</title>
<updated>2015-03-11T13:43:53+00:00</updated>
<author>
<name>Magnus Olsson</name>
<email>magnus@minimum.se</email>
</author>
<published>2015-03-10T12:19:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=bd9c60238c4c62d9a0f2d60b89aef429a1b71e34'/>
<id>urn:sha1:bd9c60238c4c62d9a0f2d60b89aef429a1b71e34</id>
<content type='text'>
A number of recipes in meta-java use autotools.bbclass for building; internally
it uses the sstate-control populate_sysroot manifests to locate and copy
aslocals for configure dependencies as part of the do_configure step.
The manifest path differs depending on if it's a native package or not so
autotools.bbclass looks at the package name to determine if its native or not
(it's native if it ends with "-native").

The warnings are emitted because a few (native) recipes in meta-java (such as
cacao-initial, classpath-initial and more) are incorrectly being classified as
non-native by autotools.bbclass, which makes it look for the manifest in the
wrong place and finally gives up with the warning:

WARNING: /home/oe/tmp-glibc/sstate-control/manifest-mymachine-libecj-bootstrap.populate_sysroot not found

This happens for cacao-initial, classpath-initial, ecj-initial, libecj-boostrap,
jamvm-initial and jikes-initial since they are all native and rely on autotools.

This patch renames the recipes so they end with -native, e.g ecj-initial-native.
It also updates the recipes so they DEPEND on the corresponding new name. This
helps autotools.bbclass to properly classify the recipes are native and silence
the warnings.

Signed-off-by: Magnus Olsson &lt;magnus@minimum.se&gt;
Signed-off-by: Otavio Salvador &lt;otavio@ossystems.com.br&gt;
</content>
</entry>
<entry>
<title>classpath-initial: fix do_install for removing the classpath tools</title>
<updated>2013-04-14T16:15:34+00:00</updated>
<author>
<name>Henning Heinold</name>
<email>heinold@inf.fu-berlin.de</email>
</author>
<published>2013-04-14T16:09:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=27f998e0cddf13e469f2c4969457018b53e241ac'/>
<id>urn:sha1:27f998e0cddf13e469f2c4969457018b53e241ac</id>
<content type='text'>
* bump PR

Signed-off-by: Henning Heinold &lt;heinold@inf.fu-berlin.de&gt;
</content>
</entry>
<entry>
<title>classpath-initial: remove files shared with classpath-native</title>
<updated>2013-01-24T21:32:08+00:00</updated>
<author>
<name>Henning Heinold</name>
<email>heinold@inf.fu-berlin.de</email>
</author>
<published>2013-01-10T19:41:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=74389d2acb676ad1c204e36af01cb47dac070502'/>
<id>urn:sha1:74389d2acb676ad1c204e36af01cb47dac070502</id>
<content type='text'>
* bump PR
</content>
</entry>
<entry>
<title>classpath-initial: remove trailing whitespace</title>
<updated>2013-01-24T21:32:08+00:00</updated>
<author>
<name>Henning Heinold</name>
<email>heinold@inf.fu-berlin.de</email>
</author>
<published>2013-01-10T17:53:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=f861d37eb4851245d36889c2d5f44177dfe873f0'/>
<id>urn:sha1:f861d37eb4851245d36889c2d5f44177dfe873f0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>classpath: update to version 0.99</title>
<updated>2012-07-19T15:37:39+00:00</updated>
<author>
<name>Henning Heinold</name>
<email>heinold@inf.fu-berlin.de</email>
</author>
<published>2012-07-18T20:48:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=ea76b80108b4c292379e37e01cdbb9d984d74759'/>
<id>urn:sha1:ea76b80108b4c292379e37e01cdbb9d984d74759</id>
<content type='text'>
* switch to INC_PR for native and initial
* clean up dependencies
* inherit gettext class instead of depeding directly on the package
* clean up patches
</content>
</entry>
<entry>
<title>classpath-initial: fix installation of tools.zip file</title>
<updated>2012-04-04T05:24:16+00:00</updated>
<author>
<name>Otavio Salvador</name>
<email>otavio@ossystems.com.br</email>
</author>
<published>2012-04-04T05:20:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=2538fdffd3f5728b788ede09e2b0b576ad362ce2'/>
<id>urn:sha1:2538fdffd3f5728b788ede09e2b0b576ad362ce2</id>
<content type='text'>
This fixes an unpredicability of sysroot tools.zip version as
classpath-initial and classpath-native were installing the tools.zip
at same path.

We also bump PR of affected recipes to force them to rebuild.

Signed-off-by: Otavio Salvador &lt;otavio@ossystems.com.br&gt;
</content>
</entry>
<entry>
<title>meta-java: initial commit</title>
<updated>2011-11-26T22:41:44+00:00</updated>
<author>
<name>Henning Heinold</name>
<email>heinold@inf.fu-berlin.de</email>
</author>
<published>2011-11-12T19:58:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-java.git/commit/?id=57e069cde6617f00ca8834a82c6f360af43d5067'/>
<id>urn:sha1:57e069cde6617f00ca8834a82c6f360af43d5067</id>
<content type='text'>
* taken over mostly stuff from oe classic
* cleaned up recipes
* added license checksums
* bump icedtea6-native to 1.8.11
* use jamvm from git as native
</content>
</entry>
</feed>
