Re: [OE-core] [PATCH 0/1] remove lttng-syscalls patch from lttng-modules

2012-10-27 Thread Saul Wold

On 10/26/2012 09:21 AM, tom.zanu...@intel.com wrote:

From: Tom Zanussi 

This removes a no-longer-used patch from lttng-modules.

The following changes since commit 511f7f9d0422fe1a896361b53179c9f642c1fc0b:

   zeroconf: remove (2012-10-26 14:12:55 +0100)

are available in the git repository at:

   git://git.yoctoproject.org/poky-contrib.git 
tzanussi/lttng-modules-remove-syscalls-patch
   
http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/lttng-modules-remove-syscalls-patch

Tom Zanussi (1):
   lttng-modules: remove unused lttng-syscalls patch

  ...ls-protect-is_compat_task-from-redefiniti.patch | 41 --
  1 file changed, 41 deletions(-)
  delete mode 100644 
meta/recipes-kernel/lttng-2.0/lttng-modules/lttng-sycalls-protect-is_compat_task-from-redefiniti.patch


Merged into OE-Core

Thanks
Sau!


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 2/2] distro_identifier: replace slash with hyphen

2012-10-27 Thread Saul Wold

On 10/26/2012 07:37 AM, Mihai Lindner wrote:

Use "-" instead of "/" in "n/a" strings ("Distributor ID" and/or
"Release"), provided by `lsb_release`.
This leads to directories and subdirectories created in ./sstate-cache/
e.g. Distro-n/a/ where "Distro-n" is dir and "a" is subdir.

Signed-off-by: Mihai Lindner 
---
  meta/lib/oe/lsb.py | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/lsb.py b/meta/lib/oe/lsb.py
index c8852a2..9133356 100644
--- a/meta/lib/oe/lsb.py
+++ b/meta/lib/oe/lsb.py
@@ -31,4 +31,4 @@ def distro_identifier(adjust_hook=None):
  distro_id, release = adjust_hook(distro_id, release)
  if not distro_id:
  return "Unknown"
-return '{0}-{1}'.format(distro_id, release).replace(' ','-')
+return '{0}-{1}'.format(distro_id, release).replace(' 
','-').replace('/','-')



Merged into OE-Core

Thanks
Sau!


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 1/4] pulseaudio: add GConf dependency

2012-10-27 Thread Saul Wold

On 10/24/2012 09:37 AM, Ross Burton wrote:

Add explicit build-dependency on GConf as currently it's an implicit dependency
and so vunerable to races at build time.

Signed-off-by: Ross Burton 
---
  meta/recipes-multimedia/pulseaudio/pulseaudio.inc|2 +-
  meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb |2 +-
  2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc 
b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
index 463777d..ab70c7e 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = 
"file://GPL;md5=4325afd396febcb659c36b49533135d4 \
  DEPENDS = "libatomics-ops liboil avahi libsamplerate0 libsndfile1 libtool \
 ${@base_contains('DISTRO_FEATURES', 'x11', 'virtual/libx11 libxtst 
libice libsm libxcb gtk+', '', d)}"
  # optional
-DEPENDS += "udev alsa-lib glib-2.0 dbus \
+DEPENDS += "udev alsa-lib glib-2.0 dbus gconf \
 ${@base_contains('DISTRO_FEATURES', 'bluetooth', 'bluez4', '', d)}"

  SRC_URI = 
"http://0pointer.de/lennart/projects/pulseaudio/pulseaudio-${PV}.tar.gz \
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb 
b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
index a10b953..d25b424 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
@@ -1,6 +1,6 @@
  require pulseaudio.inc

-PR = "r7"
+PR = "r8"

  DEPENDS += "libjson gdbm speex libxml-parser-perl-native"




Merged this full set to OE-Core

Thanks
Sau!


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [v2] [PATCH 0/1] insane.bbclass and friends: support n32

2012-10-27 Thread Saul Wold

On 10/23/2012 03:55 PM, Peter Seebach wrote:

This makes multilib_header, insane, and site config work for n32 MIPS.

It turns out the previous patch only worked for part of the system; when I
got to glib, the mips-linux siteconfig wasn't getting picked up for n32.
So add a couple more references in siteinfo.bbclass to make that work.

The following changes since commit 754ddbf1c57e6b9d0650498538840effebe4f7a2:
   Ross Burton (1):
 libical: remove

are available in the git repository at:

   git://git.yoctoproject.org/poky-contrib seebs/mips64
   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=seebs/mips64

Peter Seebach (1):
   insane.bbclass and friends: Fix sanity checks and multlib headers for
 n32

  meta/classes/insane.bbclass  |4 +++
  meta/classes/multilib_header.bbclass |   32 +
  meta/classes/siteinfo.bbclass|5 
  meta/conf/machine/include/mips/arch-mips.inc |1 +
  4 files changed, 32 insertions(+), 10 deletions(-)



Merged into OE-Core

Thanks
Sau!


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core




___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 0/4] Implement multilib SDK support

2012-10-27 Thread Saul Wold

On 10/22/2012 08:20 AM, Mark Hatle wrote:

The attached patch set implements multilib SDK support.  This means that
when generating an SDK (either by a traditional SDK recipe or the
do_populate_sdk task), that support infrastructure for each multilib
will be included in the SDK.

Note, this code does -not- change the toolchain.  If the generated toolchain
does not work properly with the multilib configuration, that will need to
be a seperate fix!

This was tested with both the oe-core and our custom Wind River toolchain.
Generation passed on the oe-core SDK, but the functionality of the toolchain
was not tested.  The Wind River toolchain did get properly generated and
functioned as expected.

Note:  The 0003 patch that affects processing the environment file was
agreed to with the other author of the function.

The following changes since commit 06d27cf0fbcc4004e6f456880eca49893c9290bf:

   xorg: remove XF86 BigFont extension (2012-10-22 14:57:26 +0100)

are available in the git repository at:
   git://git.yoctoproject.org/poky-contrib mhatle/sdk
   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=mhatle/sdk

Mark Hatle (4):
   multilib: Add support for cross-canadian multilib packages
   multilib - crosssdk: Stop building multilib for crosssdk packages
   populate_sdk_base: Update extraction script for multilibs
   populate_sdk_base: Ensure that the multilib cross-canadian tools are
 used

  meta/classes/base.bbclass  |   43 +---
  meta/classes/multilib.bbclass  |   20 +++---
  meta/classes/populate_sdk_base.bbclass |7 +++--
  meta/lib/oe/classextend.py |4 +-
  4 files changed, 60 insertions(+), 14 deletions(-)



Merged into OE-Core

Thanks
Sau!


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] bitbake.conf: Change systemd_unitdir definition

2012-10-27 Thread Saul Wold

On 10/26/2012 12:03 AM, Khem Raj wrote:

systemd_unitdir indicates the arch independent
files which are basically scripts and unit files
and systemd wants then to be in /lib always even
when base_libdir is  /lib64, hence we have to reflect
that and not use base_libdir to define it. Otherwise
on architectures where base_libdir is lib64 e.g. ppc64
or multilibbed x86_64 this wont work

Signed-off-by: Khem Raj 
---
  meta/conf/bitbake.conf |2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 5cb5b13..e7fa731 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -31,6 +31,7 @@ export localstatedir = "${base_prefix}/var"
  export infodir = "${datadir}/info"
  export mandir = "${datadir}/man"
  export docdir = "${datadir}/doc"
+export systemd_unitdir = "/lib/systemd"

  # Architecture dependent paths
  export bindir = "${exec_prefix}/bin"
@@ -39,7 +40,6 @@ export libexecdir = "${exec_prefix}/libexec"
  export libdir = "${exec_prefix}/${baselib}"
  export includedir = "${exec_prefix}/include"
  export oldincludedir = "${exec_prefix}/include"
-export systemd_unitdir = "${base_libdir}/systemd"
  localedir = "${libdir}/locale"

  # Linkage between native/cross/nativesdk layouts


Merged into OE-Core

Thanks
Sau!


___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH 0/3] Improve x11 distro_feature checks

2012-10-27 Thread Saul Wold

On 10/26/2012 06:37 AM, Jack Mitchell wrote:

From: Jack Mitchell 

Improvement to the detection of the x11 distro_feature in a few recipes
with the final achievement being that GTK+ is no longer required in
core-image-minimal if dbg-pkgs, tools-profile and tools-debug are enabled
when x11 is not in distro_features.


Jack Mitchell (3):
   latencytop: disable GTK and remove gtk+ dependacy
   packagegroup-core-tools-profile: include sysprof only if x11 is
 distro feature
   babeltrace: fix depends



These all need PR Bumps.

Thanks
Sau!


  .../packagegroups/packagegroup-core-tools-profile.bb|  4 +++-
  .../latencytop/latencytop-0.5/latencytop-makefile.patch | 13 +++--
  meta/recipes-kernel/latencytop/latencytop_0.5.bb|  6 --
  meta/recipes-kernel/lttng-2.0/babeltrace_0.12.bb|  2 +-
  4 files changed, 15 insertions(+), 10 deletions(-)



___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] devshell spawning twice

2012-10-27 Thread Andrea Adami
On Sun, Oct 28, 2012 at 1:55 AM, Andrea Adami  wrote:
> Since commit c76da87511d2668479745c2f18b8a9b8116c7489 (terminal: Add
> support for running custom terminals.) screen opens also in the master
> terminal, waiting for input.
>
> Reverting the patch fixes the funny behavior.
>
> This on Gentoo, using xterm.

Sorry, is gnome-terminal on this host.

>
> Regards
>
> Andrea

___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


[OE-core] devshell spawning twice

2012-10-27 Thread Andrea Adami
Since commit c76da87511d2668479745c2f18b8a9b8116c7489 (terminal: Add
support for running custom terminals.) screen opens also in the master
terminal, waiting for input.

Reverting the patch fixes the funny behavior.

This on Gentoo, using xterm.

Regards

Andrea

___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [PATCH] libxkbcommon: new window system-independent XKB library

2012-10-27 Thread Burton, Ross
On 26 October 2012 18:45, Saul Wold  wrote:
> Ok, I am really confused now!  Your right the version'ed one is in master,
> which is this commit, your other commit with the git version is not.
>
> Also, the git version had a change xorg-lib-common.inc also.

Drop the git version, that had a required change to xorg-lib-common
but as the versioned version doesn't use that include the change isn't
required.

Ross

___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core


Re: [OE-core] [Consolidated Pull 00/13] SDK and misc

2012-10-27 Thread Richard Purdie
On Fri, 2012-10-26 at 09:22 -0700, Saul Wold wrote:
> Richard,
> 
> Built and reviewed.
> 
> Sau!
> 
> 
> The following changes since commit 88b4ec0b8c7c75b8570fc201c705937b459bb43e:
> 
>   zeroconf: remove (2012-10-26 14:11:55 +0100)
> 
> are available in the git repository at:
>   git://git.openembedded.org/openembedded-core-contrib sgw/stage
>   
> http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/stage
> 
> Mark Hatle (4):
>   multilib: Add support for cross-canadian multilib packages
>   multilib - crosssdk: Stop building multilib for crosssdk packages
>   populate_sdk_base: Update extraction script for multilibs
>   populate_sdk_base: Ensure that the multilib cross-canadian tools are
> used
> 
> Peter Seebach (1):
>   insane.bbclass and friends: Fix sanity checks and multlib headers for
> n32
> 
> Ross Burton (4):
>   pulseaudio: add GConf dependency
>   pulseaudio: move helper binaries into the relevant module packages
>   pulseaudio: fix library packaging
>   pulseaudio: remove libpulse-browse, removed upstream in 2011
> 
> Saul Wold (3):
>   gst-meta-base: include ximagesink plugin when x11 is a feature
>   sstate: add manifest info for shared file matches
>   ltp: add perl to RDEPENDS
> 
> Thomas Kristensen (1):
>   populate_sdk_base.bbclass: Make it possible to overrise the
> create_shar method of populate_sdk_base.

I've merged these but this last patch had the wrong header on it, it
should be "SDK: allow SDK path of various level". I found the correct
version and applied that instead.

Cheers,

Richard



___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core