* [PATCH 0/2] A couple of minor fixes
@ 2017-03-16 9:09 Paul Eggleton
2017-03-16 9:09 ` [PATCH 1/2] classes/base: reformat HOSTTOOLS error Paul Eggleton
2017-03-16 9:09 ` [PATCH 2/2] packagegroup-core-lsb: avoid rebuilding when changing layer config Paul Eggleton
0 siblings, 2 replies; 4+ messages in thread
From: Paul Eggleton @ 2017-03-16 9:09 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 477805b913a6c4b4b630e42f08cd9e59f1e4e254:
wic: selftest: account for occasional newline in debugfs file names (2017-03-14 14:39:34 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/fixes1
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=paule/fixes1
Paul Eggleton (2):
classes/base: reformat HOSTTOOLS error
packagegroup-core-lsb: avoid rebuilding when changing layer config
meta/classes/base.bbclass | 2 +-
meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
--
2.9.3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] classes/base: reformat HOSTTOOLS error
2017-03-16 9:09 [PATCH 0/2] A couple of minor fixes Paul Eggleton
@ 2017-03-16 9:09 ` Paul Eggleton
2017-03-16 9:09 ` [PATCH 2/2] packagegroup-core-lsb: avoid rebuilding when changing layer config Paul Eggleton
1 sibling, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2017-03-16 9:09 UTC (permalink / raw)
To: openembedded-core
Adjust the message slightly to make it clearer, in particular mentioning
the HOSTTOOLS variable.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/classes/base.bbclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index fec351a..cf8748a 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -136,7 +136,7 @@ def setup_hosttools_dir(dest, toolsvar, d, fatal=True):
else:
notfound.append(tool)
if notfound and fatal:
- bb.fatal("These tools appear to be unavailable in PATH, please install them in order to proceed:\n%s" % " ".join(notfound))
+ bb.fatal("The following required tools (as specified by HOSTTOOLS) appear to be unavailable in PATH, please install them in order to proceed:\n %s" % " ".join(notfound))
addtask fetch
do_fetch[dirs] = "${DL_DIR}"
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/2] packagegroup-core-lsb: avoid rebuilding when changing layer config
2017-03-16 9:09 [PATCH 0/2] A couple of minor fixes Paul Eggleton
2017-03-16 9:09 ` [PATCH 1/2] classes/base: reformat HOSTTOOLS error Paul Eggleton
@ 2017-03-16 9:09 ` Paul Eggleton
1 sibling, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2017-03-16 9:09 UTC (permalink / raw)
To: openembedded-core
It's regrettable that code in here is referring to BBFILE_COLLECTIONS,
but it is, and the result is that this packagegroup will rebuild simply
by adding or removing a layer which may be completely unrelated to
whether you've got meta-qt4 or not. Add BBFILE_COLLECTIONS to
vardepsexclude for the function to avoid this. (This was flagged up when
testing the new yocto-compat-layer script - it understandably but
undesirably reports it as a change caused by a layer).
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
index 3aedf6b..a156bcb 100644
--- a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
+++ b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb
@@ -225,6 +225,8 @@ def get_libqt4(d):
'libraries. Its intended use is for passing LSB tests as Qt4 is ' \
'a requirement for LSB.')
return ''
+# We don't want this to rebuild every time you change your layer config
+get_libqt4[vardepsexclude] += "BBFILE_COLLECTIONS"
SUMMARY_packagegroup-core-lsb-desktop = "LSB Desktop"
DESCRIPTION_packagegroup-core-lsb-desktop = "Packages required to support libraries \
--
2.9.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 0/2] A couple of minor fixes
@ 2012-09-13 11:03 Paul Eggleton
0 siblings, 0 replies; 4+ messages in thread
From: Paul Eggleton @ 2012-09-13 11:03 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 835654994574c158d6324218ebe000bd2ef9a792:
rt: Add hwlatdetect to rt images (2012-09-12 15:11:12 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/fixes1
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes1
Paul Eggleton (2):
gst-ffmpeg: add LICENSE_FLAGS
gst-fluendo-mpegdemux: add LICENSE_FLAGS
.../gstreamer/gst-ffmpeg_0.10.13.bb | 1 +
.../gstreamer/gst-fluendo-mpegdemux_0.10.71.bb | 1 +
2 files changed, 2 insertions(+)
--
1.7.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-03-16 9:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-16 9:09 [PATCH 0/2] A couple of minor fixes Paul Eggleton
2017-03-16 9:09 ` [PATCH 1/2] classes/base: reformat HOSTTOOLS error Paul Eggleton
2017-03-16 9:09 ` [PATCH 2/2] packagegroup-core-lsb: avoid rebuilding when changing layer config Paul Eggleton
-- strict thread matches above, loose matches on Subject: below --
2012-09-13 11:03 [PATCH 0/2] A couple of minor fixes Paul Eggleton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox