Re: [OE-core] [PATCH] gdk-pixbuf: Ensure gdk-pixbuf-native dependencies are correct with linuxstdbase

2012-10-01 Thread Paul Eggleton
On Tuesday 02 October 2012 01:09:18 Richard Purdie wrote: > Without this change, anything using linuxstdbase would incorrectly > try and pull in X dependencies. > > Signed-off-by: Richard Purdie > --- > diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb > b/meta/recipes-gnome/gdk-pix

[OE-core] [PATCH] binutils-crossdk: Fix interp size expansion

2012-10-01 Thread Khem Raj
Currently for sdk binutils we expand the size of .interp section to 0x1000 assuming that its at the beginning of the linker map but there may be program header before that so actually we want to add 0x1000 - sizeof(.interp) section to current location and not assign is absolutely to 0x1000 This fi

[OE-core] [PATCH] classes: Update to use corrected bb.utils.explode_dep_versions2 API

2012-10-01 Thread Richard Purdie
The bb.utils.explode_dep_versions function has issues where dependency information can be lost. The API doesn't support maintaining the correct information so this changes to use a new function which correctly handles the data. Signed-off-by: Richard Purdie --- NB: This applies on top of Mark's

[OE-core] [PATCH] gdk-pixbuf: Ensure gdk-pixbuf-native dependencies are correct with linuxstdbase

2012-10-01 Thread Richard Purdie
Without this change, anything using linuxstdbase would incorrectly try and pull in X dependencies. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.24.1.bb index 82a7eaa..8d18b87 100644 --- a/meta/recip

[OE-core] [PATCH] insane.bbclass: Remove copy and paste confusion when using OVERRIDES

2012-10-01 Thread Richard Purdie
People keep copying this code and its confusing and unnecessary. Remove the bad examples to try and stop this happening. Signed-off-by: Richard Purdie --- diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 17d887a..dddcd66 100644 --- a/meta/classes/insane.bbclass +++ b

Re: [OE-core] [oe-core][PATCH 00/10] qt4: upgrade to 4.8.3 and cleanup

2012-10-01 Thread Martin Jansa
On Mon, Oct 01, 2012 at 04:31:08PM +0200, Martin Jansa wrote: > On Sun, Sep 30, 2012 at 10:18:18PM +0200, Martin Jansa wrote: > > On Fri, Sep 28, 2012 at 06:43:09PM +0200, Martin Jansa wrote: > > > On Thu, Sep 27, 2012 at 12:27:05AM +0200, Martin Jansa wrote: > > > > Please test on more architectur

Re: [OE-core] [PATCH 1/1] gnutls: Update SRC_URI to use GNU_MIRROR

2012-10-01 Thread Darren Hart
On 10/01/2012 04:19 PM, Darren Hart wrote: > The current SRC_URI fails. Update it with the GNU_MIRROR SRC_URI from > upstream commit 188dff3daf048e369bcab0d1db2964490e43d734. Sorry, that was the poky commit. Updated in the branch to the oe-core commit: 753b22012f10c393c191d3116b9d38ee4be6d112

[OE-core] [PATCH 1/1] gnutls: Update SRC_URI to use GNU_MIRROR

2012-10-01 Thread Darren Hart
The current SRC_URI fails. Update it with the GNU_MIRROR SRC_URI from upstream commit 188dff3daf048e369bcab0d1db2964490e43d734. Signed-off-by: Darren Hart CC: John Howard CC: Scott Garman --- meta/recipes-support/gnutls/gnutls.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff

[OE-core] [PATCH 0/1][denzil] gnutls: Update SRC_URI to use GNU_MIRROR

2012-10-01 Thread Darren Hart
The following changes since commit 032bd9a856f9ca0b43dff272bd4f95481aa46597: bootimg: Use STAGING_KERNEL_DIR (2012-09-28 16:51:35 +0100) are available in the git repository at: git://git.yoctoproject.org/user-contrib/dvhart/oe-core dvhart/denzil/fixes http://git.yoctoproject.org/cgit.cgi/

Re: [OE-core] [PATCH] Fix invalid test for network error

2012-10-01 Thread Saul Wold
The commit message should include the filename such as: sanity.bbclass: Fix invalid test for network error Sau! On 10/01/2012 07:17 AM, Bogdan Marinescu wrote: The test for network error in sanity.bbclass was negated. Signed-off-by: Bogdan Marinescu --- meta/classes/sanity.bbclass |2

[OE-core] OE Changelog since 2012-09-23 until 2012-09-30

2012-10-01 Thread cliff . brake
Changelog since 2012-09-23 until 2012-09-30. Projects included in this report: bitbake: git://git.openembedded.org/bitbake openembedded-core: git://git.openembedded.org/openembedded-core meta-openembedded: git://git.openembedded.org/meta-openembedded meta-smartphone: http://git.shr-project.org/re

[OE-core] [PATCH] insane: Rationalise phdrs-based QA checks

2012-10-01 Thread Phil Blundell
Various different QA checks are based on essentially the same data from the ELF program headers. Calling objdump to extract it repeatedly is inefficient, particularly if the shell is involved. Instead, let's cache the output from objdump inside the qa.elf object and allow it to be reused by multi

[OE-core] [PATCH] libpcap: add dependency on libnl

2012-10-01 Thread Ross Burton
libpcap uses libnl on Linux to support sniffing mac80211 devices, which could be useful. Signed-off-by: Ross Burton --- meta/recipes-connectivity/libpcap/libpcap.inc |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-connectivity/libpcap/libpcap.inc b/meta/r

[OE-core] [PATCH] recipe_sanity: Don't bother checking LICENSE

2012-10-01 Thread Phil Blundell
Since e3d7890cace71b0a57d2530bf615a58dcb46d96f or so, base.bbclass has considered invalid LICENSE settings to be a fatal error. This means we will never see them so there is no point checking for that. Signed-off-by: Phil Blundell --- meta/classes/recipe_sanity.bbclass |9 ++--- 1 file

Re: [OE-core] [PATCH 04/12 v2] bb.utils.explode_dep_versions: Update to ensure we avoid duplicate deps

2012-10-01 Thread Mark Hatle
FYI I reworked this based on what Richard mentioned was wrong. However, I do expect this isn't the final version of the patch based on his comments that the explode_dep_versions stuff is likely going to need further modifications. Most of the changes below are still relevant even if explode_de

[OE-core] [PATCH] opkg-native: remove spurious dependency on curl-native

2012-10-01 Thread Phil Blundell
All variants of opkg are currently configured --disable-curl so there seems no point in depending on it. Signed-off-by: Phil Blundell --- meta/recipes-devtools/opkg/opkg.inc |2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/

Re: [OE-core] [PATCH 03/12] populate_sdk_base: Update extraction script for multilibs

2012-10-01 Thread Laurentiu Palcu
On 10/01/2012 06:25 PM, Mark Hatle wrote: > On 10/1/12 10:17 AM, Laurentiu Palcu wrote: >> >> >> On 10/01/2012 05:55 PM, Mark Hatle wrote: >>> On 10/1/12 8:17 AM, Richard Purdie wrote: On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: > When multilibs are enabled, there will be more t

[OE-core] [PATCH 02/12 v2] populate_sdk_base: Update extraction script for multilibs

2012-10-01 Thread Mark Hatle
When multilibs are enabled, there will be more then one environment file created. We need to be sure to process each environment file. The next function can simply use the last environment file processed to get the magic value(s) that it requires. Signed-off-by: Mark Hatle --- meta/classes/popu

[OE-core] [PATCH 04/12 v2] bb.utils.explode_dep_versions: Update to ensure we avoid duplicate deps

2012-10-01 Thread Mark Hatle
Due to a recent change in bb.utils.explode_dep_version, we need to make sure that we do not have any duplicates in things that use explode_dep_versions. Signed-off-by: Mark Hatle --- meta/classes/insane.bbclass | 45 ++- meta/classes/kernel.bbclass | 20

Re: [OE-core] [PATCH 03/12] populate_sdk_base: Update extraction script for multilibs

2012-10-01 Thread Mark Hatle
On 10/1/12 10:17 AM, Laurentiu Palcu wrote: On 10/01/2012 05:55 PM, Mark Hatle wrote: On 10/1/12 8:17 AM, Richard Purdie wrote: On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: When multilibs are enabled, there will be more then one environment file created. We need to be sure to proces

Re: [OE-core] [PATCH 03/12] populate_sdk_base: Update extraction script for multilibs

2012-10-01 Thread Laurentiu Palcu
On 10/01/2012 05:55 PM, Mark Hatle wrote: > On 10/1/12 8:17 AM, Richard Purdie wrote: >> On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: >>> When multilibs are enabled, there will be more then one environment >>> file created. We need to be sure to process each environment file. >>> The nex

Re: [OE-core] [PATCH 04/12] bb.utils.explode_dep_versions: Update to ensure we avoid duplicate deps

2012-10-01 Thread Richard Purdie
On Mon, 2012-10-01 at 09:53 -0500, Mark Hatle wrote: > On 10/1/12 8:09 AM, Richard Purdie wrote: > > On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: > >> Due to a recent change in bb.utils.explode_dep_version, we need to make > >> sure that we do not have any duplicates in things that use > >>

Re: [OE-core] [PATCH 03/12] populate_sdk_base: Update extraction script for multilibs

2012-10-01 Thread Mark Hatle
On 10/1/12 8:17 AM, Richard Purdie wrote: On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: When multilibs are enabled, there will be more then one environment file created. We need to be sure to process each environment file. The next function can simply use the last environment file proces

Re: [OE-core] [PATCH 04/12] bb.utils.explode_dep_versions: Update to ensure we avoid duplicate deps

2012-10-01 Thread Mark Hatle
On 10/1/12 8:09 AM, Richard Purdie wrote: On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: Due to a recent change in bb.utils.explode_dep_version, we need to make sure that we do not have any duplicates in things that use explode_dep_versions. Signed-off-by: Mark Hatle --- meta/classes/i

Re: [OE-core] [oe-core][PATCH 00/10] qt4: upgrade to 4.8.3 and cleanup

2012-10-01 Thread Martin Jansa
On Sun, Sep 30, 2012 at 10:18:18PM +0200, Martin Jansa wrote: > On Fri, Sep 28, 2012 at 06:43:09PM +0200, Martin Jansa wrote: > > On Thu, Sep 27, 2012 at 12:27:05AM +0200, Martin Jansa wrote: > > > Please test on more architectures. > > > I've tested complete qt4-native + qt4-free-x11 on armv4t. >

[OE-core] [PATCH] Fix invalid test for network error

2012-10-01 Thread Bogdan Marinescu
The test for network error in sanity.bbclass was negated. Signed-off-by: Bogdan Marinescu --- meta/classes/sanity.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index e2095dd..f2e9a74 100644 --- a/meta/clas

Re: [OE-core] work-shared not being correctly shared

2012-10-01 Thread Richard Purdie
On Mon, 2012-10-01 at 12:50 +0100, Phil Blundell wrote: > On Mon, 2012-09-24 at 21:28 +0200, Martin Jansa wrote: > > On Mon, Sep 24, 2012 at 05:22:57PM +0100, Phil Blundell wrote: > > > On Mon, 2012-09-24 at 08:42 -0700, Saul Wold wrote: > > > > Yes, I am seeing something similar with do_patch happ

Re: [OE-core] [PATCH] Revert "opkg svn: respect to the arch priority"

2012-10-01 Thread Richard Purdie
On Sat, 2012-09-29 at 15:34 +0200, Koen Kooi wrote: > Op 28 sep. 2012, om 23:27 heeft Richard Purdie > het volgende geschreven: > > > On Fri, 2012-09-28 at 23:04 +0200, Koen Kooi wrote: > >> This completely breaks installing packages from feeds: > >> > >> root@bone-mainline:~# opkg install libg

Re: [OE-core] [PATCH 03/12] populate_sdk_base: Update extraction script for multilibs

2012-10-01 Thread Richard Purdie
On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: > When multilibs are enabled, there will be more then one environment > file created. We need to be sure to process each environment file. > The next function can simply use the last environment file processed > to get the magic value(s) that it

Re: [OE-core] [PATCH 04/12] bb.utils.explode_dep_versions: Update to ensure we avoid duplicate deps

2012-10-01 Thread Richard Purdie
On Sat, 2012-09-29 at 19:19 -0500, Mark Hatle wrote: > Due to a recent change in bb.utils.explode_dep_version, we need to make > sure that we do not have any duplicates in things that use > explode_dep_versions. > > Signed-off-by: Mark Hatle > --- > meta/classes/insane.bbclass | 55 ++

Re: [OE-core] [PATCH] libdrm: Remove Cairo dependency

2012-10-01 Thread Burton, Ross
On 1 October 2012 13:02, Martin Jansa wrote: > shouldn't we disable that example explicitly, so that the output is not > different when cairo gets built before libdrm? The test (tests/modetest/) is noinst, so the output doesn't actually change. Ross _

Re: [OE-core] [PATCH] libdrm: Remove Cairo dependency

2012-10-01 Thread Martin Jansa
On Mon, Oct 01, 2012 at 12:56:09PM +0100, Ross Burton wrote: > From: Daniel Stone > > This causes a build loop, when DRM depends on Cairo depends on Mesa > depends on DRM. We can safely remove it as it's only one libdrm example > program which uses Cairo, which we won't be needing. At least it'

[OE-core] [PATCH] libdrm: Remove Cairo dependency

2012-10-01 Thread Ross Burton
From: Daniel Stone This causes a build loop, when DRM depends on Cairo depends on Mesa depends on DRM. We can safely remove it as it's only one libdrm example program which uses Cairo, which we won't be needing. At least it's not worth the build loop. Signed-off-by: Daniel Stone Signed-off-by

Re: [OE-core] work-shared not being correctly shared

2012-10-01 Thread Phil Blundell
On Mon, 2012-09-24 at 21:28 +0200, Martin Jansa wrote: > On Mon, Sep 24, 2012 at 05:22:57PM +0100, Phil Blundell wrote: > > On Mon, 2012-09-24 at 08:42 -0700, Saul Wold wrote: > > > Yes, I am seeing something similar with do_patch happening twice on the > > > work-shared area, I talked with Richar

[OE-core] [PATCHv3] opkg: fix version constraints in conflicts, depends, replaces

2012-10-01 Thread Martin Jansa
* http://code.google.com/p/opkg/issues/detail?id=94 Signed-off-by: Martin Jansa --- .../0009-pkg_depends-fix-version-constraints.patch | 188 + ...depends-fix-version_constraints_satisfied.patch | 37 meta/recipes-devtools/opkg/opkg_svn.bb | 4 +- 3 files

[OE-core] [PATCH] xf86-video-intel: drop libxvmc dependency

2012-10-01 Thread Ross Burton
xvmc is explicitly disabled, so remove the dependency. Signed-off-by: Ross Burton --- meta/recipes-graphics/xorg-driver/xf86-video-intel_2.19.0.bb |4 ++-- meta/recipes-graphics/xorg-driver/xf86-video-intel_git.bb|4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a