Re: [OE-core] [PATCH] distutils-common-base.bbclass: Pick up additional .debug folders:

2012-08-23 Thread Martin Jansa
On Thu, Aug 23, 2012 at 11:13:08PM +0100, Burton, Ross wrote: > On 23 August 2012 19:46, Matthew McClintock wrote: > >${PYTHON_SITEPACKAGES_DIR}/.debug \ > >${PYTHON_SITEPACKAGES_DIR}/*/.debug \ > >${PYTHON_SITEPACKAGES_DIR}/*/*/.debug \ > > + ${libdir}/${PYTHON_DIR}/.debug \ > > + $

Re: [OE-core] Tackling compilation errors in qt5 recipe.

2012-08-23 Thread Martin Ertsås
Hi. You could have a look at g...@github.com:martiert/meta-qt5.git as a starting point. Have not tried anything but the qt5-x11-free packages, which makes what is needed for rendering, but it is at least a starting point. - Martin On 08/23/12 19:59, Sravan wrote: > Hello, > > I never worked on o

[OE-core] [PATCH 0/1] kernel.bbclass: fix INC directory for SLANG

2012-08-23 Thread Bruce Ashfield
Richard/Saul, Here's the perf slang fix implemented in the kernel.bbclass. I've removed the old noslang patch, and built perf here. Everything seems sane. The kernel patch portion (that isn't required to fix the build issue), will come tomorrow along with some other kernel updates. Take this for

[OE-core] [PATCH 1/1] kernel.bbclass: fix INC directory for SLANG

2012-08-23 Thread Bruce Ashfield
From: Liang Li In the kernel's tools/perf/Makefile CFLAGS was previously hard coded to contain "-I/usr/include/slang" to work with hosts that have "/usr/include/slang/slang.h" as well as hosts that have "/usr/include/slang.h". This path can cause compile warnings like: cc1: warning: '/usr/incl

Re: [OE-core] [PATCH V2] iputils: Fix postinst to run on cross rootfs generation

2012-08-23 Thread Saul Wold
On 08/23/2012 09:13 PM, Khem Raj wrote: rpm shows error messages like /bin/traceroute6 not found when building cross rootfs Richard pointed out that with Pseudo the pkg_postinsts are un-needed, so I offered a different patch to that effect. Sau! Yocto # 2892 Signed-off-by: Khem Raj ---

Re: [OE-core] [PATCH 1/1] coreutils: fix do_configure error with long TMPDIR

2012-08-23 Thread wenzong fan
On 08/24/2012 12:33 PM, wenzong fan wrote: On 08/24/2012 12:28 AM, Saul Wold wrote: On 08/19/2012 07:55 PM, wenzong@windriver.com wrote: From: Wenzong Fan By default the 'm4/*' files will be extended with absolute path while autoreconf running, if the length of TMPDIR is too long such as

Re: [OE-core] [PATCH 1/1] coreutils: fix do_configure error with long TMPDIR

2012-08-23 Thread wenzong fan
On 08/24/2012 12:28 AM, Saul Wold wrote: On 08/19/2012 07:55 PM, wenzong@windriver.com wrote: From: Wenzong Fan By default the 'm4/*' files will be extended with absolute path while autoreconf running, if the length of TMPDIR is too long such as 410 which is the maximum value allowed by 's

[OE-core] [PATCH v2 0/1] libxpm: inherit gettext

2012-08-23 Thread Jesse Zhang
Hi Saul, Thanks for the advice. I've changed it to use "inherit gettext" instead. The following changes since commit 054d95edad8d79ef1c6b30681395d50f3c6335b4: poky.conf: restore Ubuntu 12.04 LTS to tested distro list (2012-08-23 17:23:40 +0100) are available in the git repository at: git:

[OE-core] [PATCH 1/1] libxpm: inherit gettext

2012-08-23 Thread Jesse Zhang
libxpm requires the xgettext command to build. Signed-off-by: Jesse Zhang --- meta/recipes-graphics/xorg-lib/libxpm_3.5.10.bb | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-graphics/xorg-lib/libxpm_3.5.10.bb b/meta/recipes-graphics/xorg-lib/libxpm_3.5.10.bb

[OE-core] [PATCH V2] iputils: Fix postinst to run on cross rootfs generation

2012-08-23 Thread Khem Raj
rpm shows error messages like /bin/traceroute6 not found when building cross rootfs Yocto # 2892 Signed-off-by: Khem Raj --- meta/recipes-extended/iputils/iputils_s20101006.bb |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta/recipes-extended/iputils/iputils_s2

Re: [OE-core] [PATCH 1/1] quota 4.00: add DEPENDS gettext-native

2012-08-23 Thread jhuang0
On 7/24/2012 1:17 PM, jhuang0 wrote: On 7/23/2012 6:00 PM, Richard Purdie wrote: On Mon, 2012-07-23 at 16:38 +0800, jackie.hu...@windriver.com wrote: From: Jackie Huang do_install needs command 'msgfmt', it would fail if the command doesn't exist on the host, add DEPENDS gettext-native to

Re: [OE-core] [PATCH] runqemu: Move the KVM check after the MACHINE/KERNEL Checks

2012-08-23 Thread Scott Garman
On 08/23/2012 01:46 PM, Saul Wold wrote: The MACHINE/KERNEL Checks setup MACHINE is it's unset, the KVM checks valid MACHINE is qemux86 or qemux86-64 and fail if it's unset! [YOCTO #2970] Signed-off-by: Saul Wold Thanks for this. Acked-by: Scott Garman --- scripts/runqemu | 31 ++

Re: [OE-core] [PATCH 1/1] ltp_20120104: add rdepends

2012-08-23 Thread Kang Kai
On 2012年08月23日 23:28, Saul Wold wrote: On 08/23/2012 03:21 AM, Kang Kai wrote: [Yocto #2973] Add rdepends libaio to fix this defect. Signed-off-by: Kang Kai --- meta/recipes-extended/ltp/ltp_20120104.bb | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-exten

[OE-core] [PATCH] distutils.bbclass: install libraries in ${PYTHON_SITEPACKAGES_DIR}

2012-08-23 Thread Matthew McClintock
This moves libaries from ${libdir}/${PYTHON_DIR}/ to ${libdir}/${PYTHON_DIR}/sitepackages/ Signed-off-by: Matthew McClintock --- meta/classes/distutils.bbclass |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes/distutils.bbclass b/meta/classes/distutils.bbclass i

Re: [OE-core] [PATCH] distutils-common-base.bbclass: Pick up additional .debug folders:

2012-08-23 Thread McClintock Matthew-B29882
On Thu, Aug 23, 2012 at 5:13 PM, Burton, Ross wrote: > On 23 August 2012 19:46, Matthew McClintock wrote: >>${PYTHON_SITEPACKAGES_DIR}/.debug \ >>${PYTHON_SITEPACKAGES_DIR}/*/.debug \ >>${PYTHON_SITEPACKAGES_DIR}/*/*/.debug \ >> + ${libdir}/${PYTHON_DIR}/.debug \ >> + ${libdir}/${PY

[OE-core] [PATCH v2] build-appliance-image: Add vmx* files and build zip file

2012-08-23 Thread Saul Wold
This commit adds the vmx* files needed to setup a VMware image, this also packages the vmdk along with the vmx files. v2: Add -f to ln to allow for overwrite Signed-off-by: Saul Wold --- meta/recipes-core/images/build-appliance-image.bb | 21 - .../Yocto_Build_Appliance.vmx

Re: [OE-core] [PATCH] distutils-common-base.bbclass: Pick up additional .debug folders:

2012-08-23 Thread Burton, Ross
On 23 August 2012 19:46, Matthew McClintock wrote: >${PYTHON_SITEPACKAGES_DIR}/.debug \ >${PYTHON_SITEPACKAGES_DIR}/*/.debug \ >${PYTHON_SITEPACKAGES_DIR}/*/*/.debug \ > + ${libdir}/${PYTHON_DIR}/.debug \ > + ${libdir}/${PYTHON_DIR}/*/.debug \ > + ${libdir}/${PYTHON_DIR}/*/*/.debug

[OE-core] [PATCH] runqemu: Move the KVM check after the MACHINE/KERNEL Checks

2012-08-23 Thread Saul Wold
The MACHINE/KERNEL Checks setup MACHINE is it's unset, the KVM checks valid MACHINE is qemux86 or qemux86-64 and fail if it's unset! [YOCTO #2970] Signed-off-by: Saul Wold --- scripts/runqemu | 31 --- 1 files changed, 16 insertions(+), 15 deletions(-) diff --git

Re: [OE-core] [PATCH 0/1] [denzil] linux-yocto: make validate_branches handle non BSP branches

2012-08-23 Thread Bruce Ashfield
On 12-08-23 03:18 PM, Tom Zanussi wrote: On Wed, 2012-08-22 at 01:48 -0400, Bruce Ashfield wrote: On 12-08-22 1:27 AM, Tom Zanussi wrote: On Mon, 2012-08-13 at 13:10 -0400, Bruce Ashfield wrote: Scott, Here's a fix for validate_branches that comes from a pending master change that I've been r

Re: [OE-core] [PATCH 0/1] [denzil] linux-yocto: make validate_branches handle non BSP branches

2012-08-23 Thread Tom Zanussi
On Wed, 2012-08-22 at 01:48 -0400, Bruce Ashfield wrote: > On 12-08-22 1:27 AM, Tom Zanussi wrote: > > On Mon, 2012-08-13 at 13:10 -0400, Bruce Ashfield wrote: > >> Scott, > >> > >> Here's a fix for validate_branches that comes from a pending master > >> change that I've been running for 3 weeks, a

[OE-core] [PATCH] distutils-common-base.bbclass: Pick up additional .debug folders:

2012-08-23 Thread Matthew McClintock
Signed-off-by: Matthew McClintock --- meta/classes/distutils-common-base.bbclass |3 +++ 1 file changed, 3 insertions(+) diff --git a/meta/classes/distutils-common-base.bbclass b/meta/classes/distutils-common-base.bbclass index f66a5cd..e650d93 100644 --- a/meta/classes/distutils-common-bas

[OE-core] [PATCH] build-appliance-image: Add vmx* files and build zip file

2012-08-23 Thread Saul Wold
This commit adds the vmx* files needed to setup a VMware image, this also packages the vmdk along with the vmx files. Signed-off-by: Saul Wold --- meta/recipes-core/images/build-appliance-image.bb | 21 +++- .../Yocto_Build_Appliance.vmx | 52 .

[OE-core] [PATCH] iputils: chmod in pkg_postinst are redundant

2012-08-23 Thread Saul Wold
With pseudo the cmod in pkg_postinst is actaully redundant since the do_install uses install -m 4555 and pseudo is able to track that between the install time and the rootfs package installation, so the perms are correct. [YOCTO #2894] Signed-off-by: Saul Wold --- meta/recipes-extended/iputils/

[OE-core] [PATCH - Denzil 1/2] build-appliance-image: rename from self-hosted-image

2012-08-23 Thread Saul Wold
From: Valentin Popa (-) renamed self-hosted-image to build-appliance-image (-) replaced build-appliance-image description [YOCTO #2636] (From OE-Core rev: 04096f31778886479dac479132bded57e717653e) Signed-off-by: Valentin Popa Signed-off-by: Richard Purdie --- meta/conf/multilib.conf

[OE-core] [PATCH - Denzil 2/2] build-appliance-image: Update SRCREV to Denzil 1.2.1

2012-08-23 Thread Saul Wold
Signed-off-by: Saul Wold --- meta/recipes-core/images/build-appliance-image.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-core/images/build-appliance-image.bb b/meta/recipes-core/images/build-appliance-image.bb index 2b7906f..bac7f80 100644 --- a/meta/rec

[OE-core] Tackling compilation errors in qt5 recipe.

2012-08-23 Thread Sravan
Hello, I never worked on oe/bitbake before. I am trying to write recipes for Qt5(based on http://qt-project.org/wiki/Building_Qt_5_from_Git) . How ever i am stuck with few compilation errors that am able to slowly fix and move forward, by disabling them through "config" options. So, far i have us

[OE-core] [PATCH 2/2] ld: -rpath must search under sysroot

2012-08-23 Thread Andy Ross
The -rpath argument would search the host filesystem for libraries, even when a sysroot was defined. For cross toolchains with targets compatible with the host architecture this can find incorrect libraries. Leave -rpath-link unmodified, as build systems in the wild are already using this to poin

[OE-core] [PATCH 0/2] RPATH fixes: libtool & binutils

2012-08-23 Thread Andy Ross
Current RPATH work: Patch 1 just updates the libtool work to use the built-in normalization function instead of sed, as requested. Patch 2 is to binutils ld, to fix the underlying host pollution issue: the -rpath argument was not sysroot aware, so setting "/usr/lib/../lib" as an RPATH would add t

[OE-core] [PATCH 1/2] libtool: update rpath normalization to use builtin

2012-08-23 Thread Andy Ross
Use the built-in normalization function instead of the sed hack. Signed-off-by: Andy Ross --- meta/recipes-devtools/libtool/libtool-2.4.2.inc| 2 +- .../libtool/libtool/norm-rpath.patch | 22 -- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git

Re: [OE-core] is there an image for the smallest feasible bootable system?

2012-08-23 Thread Cliff Brake
On Wed, Aug 22, 2012 at 8:31 PM, Robert P. J. Day wrote: > > for the purposes of demo'ing in a class, i'm interested in building > the *really* minimal system that will boot to a shell prompt. i've > examined core-image-minimal but it seems pretty clear that there's > stuff in that image that i

Re: [OE-core] [PATCH 1/1] coreutils: fix do_configure error with long TMPDIR

2012-08-23 Thread Saul Wold
On 08/19/2012 07:55 PM, wenzong@windriver.com wrote: From: Wenzong Fan By default the 'm4/*' files will be extended with absolute path while autoreconf running, if the length of TMPDIR is too long such as 410 which is the maximum value allowed by 'sanity.bbclass', autoreconf will fail with

Re: [OE-core] [PATCH 1/2] subversion: update to 1.7.6

2012-08-23 Thread Saul Wold
On 08/23/2012 12:24 AM, Marcin Juszkiewicz wrote: Dropped --without-apache option as it does not exists. Added patch from subversion-users ML to not build mod_dontdothat. Signed-off-by: Marcin Juszkiewicz --- .../subversion-1.7.6/fix-install-depends.patch | 48 + .../libtool2.

Re: [OE-core] [PATCH] dpkg: upgrade to 1.16.8

2012-08-23 Thread Marko Lindqvist
On 23 August 2012 18:14, Saul Wold wrote: > On 08/23/2012 05:49 AM, Constantin Musca wrote: >> >> perllibdir.patch: removed >> - in the new version PERL_LIBDIR will be set only if empty >> ignore_extra_fields.patch: adapted to the new version >> check_version.patch: adapted to the new version

Re: [OE-core] [PATCH 1/1] ltp_20120104: add rdepends

2012-08-23 Thread Saul Wold
On 08/23/2012 03:21 AM, Kang Kai wrote: [Yocto #2973] Add rdepends libaio to fix this defect. Signed-off-by: Kang Kai --- meta/recipes-extended/ltp/ltp_20120104.bb |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20120104.bb b/meta/r

Re: [OE-core] [PATCH] dpkg: upgrade to 1.16.8

2012-08-23 Thread Saul Wold
On 08/23/2012 05:49 AM, Constantin Musca wrote: perllibdir.patch: removed - in the new version PERL_LIBDIR will be set only if empty ignore_extra_fields.patch: adapted to the new version check_version.patch: adapted to the new version preinst.patch: removed - the incorrect code is remov

Re: [OE-core] Proposal: Creating meta-networking

2012-08-23 Thread Joe MacDonald
On Thu, Aug 23, 2012 at 2:22 AM, Koen Kooi wrote: > > Op 22 aug. 2012, om 21:22 heeft Chris Larson het volgende > geschreven: > >> On Wed, Aug 22, 2012 at 11:59 AM, Joe MacDonald wrote: >>> On Wed, Aug 22, 2012 at 2:20 PM, Christopher Larson >>> wrote: On Friday, June 15, 2012 at 8:15 AM

Re: [OE-core] [oe-commits] Matthew McClintock : distutils.bblass: change order of args to install step

2012-08-23 Thread Martin Jansa
On Wed, Aug 22, 2012 at 01:24:34PM +, g...@git.openembedded.org wrote: > Module: openembedded-core.git > Branch: master > Commit: 3b23feca31480cc56f55301fd0274e622c40b522 > URL: > http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=3b23feca31480cc56f55301fd0274e622c40b522 > > A

[OE-core] [PATCH] dpkg: upgrade to 1.16.8

2012-08-23 Thread Constantin Musca
perllibdir.patch: removed - in the new version PERL_LIBDIR will be set only if empty ignore_extra_fields.patch: adapted to the new version check_version.patch: adapted to the new version preinst.patch: removed - the incorrect code is removed in the new version dpkg-deb-avoid-fflush.patch: r

[OE-core] [PATCH 1/3] foomatic-filters: upgrade to 4.0.17

2012-08-23 Thread Constantin Musca
Signed-off-by: Constantin Musca --- ...ilters_4.0.16.bb => foomatic-filters_4.0.17.bb} |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-extended/foomatic/{foomatic-filters_4.0.16.bb => foomatic-filters_4.0.17.bb} (90%) diff --git a/meta/recipes-extended/foomat

[OE-core] [PATCH 0/3] Package upgrades

2012-08-23 Thread Constantin Musca
This is another set of package upgrades compiled on all architectures and tested using core-image-sato. Constantin Musca (3): foomatic-filters: upgrade to 4.0.17 libnfsidmap: upgrade to 0.25 dbus-glib: upgrade to 0.100 .../nfs-utils/files/fix-ac-prereq.patch|6 ++ .../{

[OE-core] [PATCH 3/3] dbus-glib: upgrade to 0.100

2012-08-23 Thread Constantin Musca
test-service-glib-include-glib-only.patch: removed - no more compiling errors --- .../no-examples.patch |0 .../test-install-makefile.patch|0 .../test-service-glib-include-glib-only.patch | 20 meta/recip

[OE-core] [PATCH 2/3] libnfsidmap: upgrade to 0.25

2012-08-23 Thread Constantin Musca
fix-ac-prereq.patch: adapted to the new version Signed-off-by: Constantin Musca --- .../nfs-utils/files/fix-ac-prereq.patch|6 ++ .../{libnfsidmap_0.24.bb => libnfsidmap_0.25.bb} |6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) rename meta/recipes-connectivi

Re: [OE-core] why does using a "revision" prevent downloading during a parse?

2012-08-23 Thread Robert P. J. Day
On Thu, 23 Aug 2012, McClintock Matthew-B29882 wrote: > On Wed, Aug 22, 2012 at 8:11 PM, Robert P. J. Day > wrote: > > > > certainly about to embarrass myself again, but from > > u-boot_2011.06.bb: > > > > ... > > # This revision corresponds to the tag "v2011.06" > > # We use the revision in o

[OE-core] [PATCH] mc: upgrade to 4.8.4

2012-08-23 Thread Andrei Dinu
Signed-off-by: Andrei Dinu --- .../mc/{mc_4.8.3.bb => mc_4.8.4.bb}|4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-extended/mc/{mc_4.8.3.bb => mc_4.8.4.bb} (82%) diff --git a/meta/recipes-extended/mc/mc_4.8.3.bb b/meta/recipes-extended/mc/mc_4.8.

[OE-core] [PATCH 1/1] ltp_20120104: add rdepends

2012-08-23 Thread Kang Kai
[Yocto #2973] Add rdepends libaio to fix this defect. Signed-off-by: Kang Kai --- meta/recipes-extended/ltp/ltp_20120104.bb |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/meta/recipes-extended/ltp/ltp_20120104.bb b/meta/recipes-extended/ltp/ltp_20120104.bb index c8

[OE-core] [PATCH 0/1] ltp_20120104: add rdepends for denzil branch

2012-08-23 Thread Kang Kai
The following changes since commit 65ffa7395055f7e012cb973f63f92380828eed0d: yocto-bsp: use base branches for qemu 'newbranch' case (2012-08-21 11:35:22 +0100) are available in the git repository at: git://git.pokylinux.org/poky-contrib kangkai/distro http://git.pokylinux.org/cgit.cgi/poky

Re: [OE-core] [PATCH] iputils: Fix postinst to run on cross rootfs generation

2012-08-23 Thread Koen Kooi
Op 23 aug. 2012, om 03:31 heeft Khem Raj het volgende geschreven: > rpm shows error messages like /bin/traceroute6 not found > when building cross rootfs > > Yocto # 2894 > > Signed-off-by: Khem Raj > --- > meta/recipes-extended/iputils/iputils_s20101006.bb |6 +++--- > 1 file changed, 3

Re: [OE-core] [PATCH 2/2] libcap: fetch from Debian

2012-08-23 Thread Marcin Juszkiewicz
W dniu 23.08.2012 09:31, Martin Jansa pisze: > On Thu, Aug 23, 2012 at 09:24:29AM +0200, Marcin Juszkiewicz wrote: >> Original location was kernel.org and it was not restored after server >> was hacked. > > So the SRC_URI checksums are different because it was repackaged? Please > include diff of

Re: [OE-core] [PATCH 2/2] libcap: fetch from Debian

2012-08-23 Thread Martin Jansa
On Thu, Aug 23, 2012 at 09:24:29AM +0200, Marcin Juszkiewicz wrote: > Original location was kernel.org and it was not restored after server > was hacked. So the SRC_URI checksums are different because it was repackaged? Please include diff of content from those 2 archives in commit message. Cheer

[OE-core] [PATCH 1/2] subversion: update to 1.7.6

2012-08-23 Thread Marcin Juszkiewicz
Dropped --without-apache option as it does not exists. Added patch from subversion-users ML to not build mod_dontdothat. Signed-off-by: Marcin Juszkiewicz --- .../subversion-1.7.6/fix-install-depends.patch | 48 + .../libtool2.patch |0 ...ersio

[OE-core] [PATCH 2/2] libcap: fetch from Debian

2012-08-23 Thread Marcin Juszkiewicz
Original location was kernel.org and it was not restored after server was hacked. Signed-off-by: Marcin Juszkiewicz --- meta/recipes-support/libcap/libcap.inc |2 +- meta/recipes-support/libcap/libcap_2.22.bb |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/met

[OE-core] [PATCH 1/2] telepathy-glib: update to 0.19.6

2012-08-23 Thread Constantin Musca
The 0001-Fix-a-race-in-_gen-reentrant-methods.list patch is included in the 0.19.6 version. Signed-off-by: Constantin Musca --- ...Fix-a-race-in-_gen-reentrant-methods.list.patch | 42 ...thy-glib_0.19.2.bb => telepathy-glib_0.19.6.bb} |9 ++--- 2 files changed, 4 inse

[OE-core] [PATCH 0/2] Telepathy package upgrades

2012-08-23 Thread Constantin Musca
This is another set of package upgrades compiled on all architectures and tested using core-image-sato-sdk. Constantin Musca (2): telepathy-glib: update to 0.19.6 telepathy-idle: upgrade to 0.1.12 ...Fix-a-race-in-_gen-reentrant-methods.list.patch | 42 ...thy-glib_0.1

[OE-core] [PATCH 2/2] telepathy-idle: upgrade to 0.1.12

2012-08-23 Thread Constantin Musca
Add patch for fixing the _gen/svc-gtk-doc.h target in the makefiles. Signed-off-by: Constantin Musca --- .../fix-svc-gtk-doc.h-target.patch | 37 ...thy-idle_0.1.11.bb => telepathy-idle_0.1.12.bb} |9 ++--- 2 files changed, 42 insertions(+), 4 deletions