Re: [OE-core] [PATCH 6/8] alsa-tools: update to 1.0.25

2012-03-14 Thread Kang Kai
On 2012年03月14日 23:55, Richard Purdie wrote: On Wed, 2012-03-14 at 17:03 +0800, Kang Kai wrote: Update to version 1.0.25 Signed-off-by: Kang Kai --- .../autotools.patch|0 ...alsa-tools_1.0.24.1.bb => alsa-tools_1.0.25.bb} |6 +++--- 2 files changed,

Re: [OE-core] [PATCH 8/8] gcc: enable multilib for target gcc

2012-03-14 Thread McClintock Matthew-B29882
On Wed, Mar 14, 2012 at 9:02 PM, wrote: > +    multilibs = d.getVar('MULTILIB_VARIANTS', True) > +    target_arch = d.getVar('TARGET_ARCH', True) > + > +    gcc_target_config_files = { > +        'x86_64'      : ['gcc/config/i386/t-linux64', > 'gcc/config/i386/t-linux'], > +        'i586'      

Re: [OE-core] [PATCH 5/8] python: fix install when libdir is not "lib"

2012-03-14 Thread Andreas Oberritter
Hello Nitin, On 15.03.2012 03:02, nitin.a.kam...@intel.com wrote: > --- a/meta/recipes-devtools/python/python_2.7.2.bb > +++ b/meta/recipes-devtools/python/python_2.7.2.bb > @@ -20,7 +20,7 @@ SRC_URI += "\ >file://setup_py_skip_cross_import_check.patch \ >file://add-md5module-support.patch

Re: [OE-core] [PATCH 4/8] ncurses: fix install error

2012-03-14 Thread Scott Garman
On 03/14/2012 07:02 PM, nitin.a.kam...@intel.com wrote: From: Nitin A Kamble Fix this issue: | rm: cannot remove `/srv/home/nitin/builds/build-multilib/tmp/work/x86_64-poky-linux/ncurses-5.9-r6.1/image/usr/lib64/terminfo': No such file or directory NOTE: package ncurses-5.9-r6.1: task do_insta

Re: [OE-core] [PATCH 8/8] gcc: enable multilib for target gcc

2012-03-14 Thread McClintock Matthew-B29882
On Wed, Mar 14, 2012 at 9:02 PM, wrote: >   ${libdir}/${TARGET_SYS}/${BINV}/crt* \ > +  ${libdir}/${TARGET_SYS}/${BINV}/32 \ > +  ${libdir}/${TARGET_SYS}/${BINV}/x32 \ > +  ${libdir}/${TARGET_SYS}/${BINV}/n32 \ Would ${libdir}/${TARGET_SYS}/${BINV}/64 ever exist? -M ___

Re: [OE-core] [PATCH 1/1] gcc-cross: aviod creating invalid symlinks

2012-03-14 Thread Robert Yang
On 03/14/2012 11:26 PM, Richard Purdie wrote: On Wed, 2012-03-14 at 17:13 +0800, Robert Yang wrote: There are several invalid symlinks in gcc-cross-initial, gcc-cross-intermediate and gcc-cross, these cause the error:(56 errors) tmp/work/i586-poky-linux/gcc-cross-initial-4.6.3+svnr184847-r23/

Re: [OE-core] Task after do_package repeating despite stamp

2012-03-14 Thread Daniel Lazzari
>Date: Thu, 15 Mar 2012 01:11:00 + >From: Daniel Lazzari >Subject: [OE-core] Task after do_package repeating despite stamp >To: "openembedded-core@lists.openembedded.org" > >Message-ID: > eapfrog.com> >Content-Type: text/plain; charset="us-ascii" > >Let me preface this by saying I

[OE-core] [PATCH 8/8] gcc: enable multilib for target gcc

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble add a task to setup multilib configuration for target gcc. This commit modifies target gcc, in such a way that it supports configured multilib targets output. Tested this, and this works on the target now. root@qemux86-64:~# gcc -m64 t.c -o t root@qemux86-64:~# file t t: E

[OE-core] [PATCH 7/8] gcc: remove the 64bithack patch

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble and bump PR Signed-off-by: Nitin A Kamble --- meta/recipes-devtools/gcc/gcc-4.6.inc |1 - meta/recipes-devtools/gcc/gcc-4.6/64bithack.patch | 68 - 2 files changed, 0 insertions(+), 69 deletions(-) delete mode 100644 meta/recipes-devt

[OE-core] [PATCH 2/8] automake: upgrade from 1.11.2 to 1.11.3

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble Removed already upstream patch: automake/automake_1.11.2_fix_for_pkglibexec_SCRIPTS.patch Rebased these patches to the newer code: automake/prefer-cpio-over-pax-for-ustar-archives.patch automake/python-libdir.patch Changed the tarball name from bz2 to gz, as the bz2 t

[OE-core] [PATCH 6/8] multilib.conf: add other abi packages to target gcc's dependencies

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble Signed-off-by: Nitin A Kamble --- meta/conf/multilib.conf |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/meta/conf/multilib.conf b/meta/conf/multilib.conf index 3b47c48..e71918a 100644 --- a/meta/conf/multilib.conf +++ b/meta/conf/multilib.conf @

[OE-core] [PATCH 3/8] distro-tracking: update status of recipes

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble Signed-off-by: Nitin A Kamble --- .../conf/distro/include/distro_tracking_fields.inc | 24 ++- 1 files changed, 13 insertions(+), 11 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_

[OE-core] [PATCH 5/8] python: fix install when libdir is not "lib"

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble This commit fixes python's install issue of not finding the native pythong binray modules. Signed-off-by: Nitin A Kamble --- .../python/fix_for_using_different_libdir.patch| 78 meta/recipes-devtools/python/python_2.7.2.bb |3 +- 2 file

[OE-core] [PATCH 1/8] gmp: upgrade from 5.0.3 to 5.0.4

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble gmp_bugfix.patch : removed this patch as it is in upstream now Signed-off-by: Nitin A Kamble --- meta/recipes-support/gmp/gmp/gmp_bugfix.patch | 94 .../gmp/{gmp_5.0.3.bb => gmp_5.0.4.bb} |7 +- 2 files changed, 3 insertions(+),

[OE-core] [PATCH 0/8] fixes, recipe upgrades, & gcc multilib enabling commits

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble For more information look at the individual commit logs. The following changes since commit 8bae18bb358755131f13865abb279ac687a03848: slang: Fix rpath QA warnings (2012-03-15 00:11:40 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib g

[OE-core] [PATCH 4/8] ncurses: fix install error

2012-03-14 Thread nitin . a . kamble
From: Nitin A Kamble Fix this issue: | rm: cannot remove `/srv/home/nitin/builds/build-multilib/tmp/work/x86_64-poky-linux/ncurses-5.9-r6.1/image/usr/lib64/terminfo': No such file or directory NOTE: package ncurses-5.9-r6.1: task do_install: Failed PR not bumped as there is no change in the pa

[OE-core] Task after do_package repeating despite stamp

2012-03-14 Thread Daniel Lazzari
Let me preface this by saying I'm running an older oe-core (Angstrom) so this may be fixed in the latest, but if so, I'm hoping someone can point me at the patch to fix it. I have a few recipes in our layer that need to generate proprietary packages from ${D} after the do_package task has copie

[OE-core] [PATCH] parted: don't pass --disable-Werror to configure

2012-03-14 Thread Andreas Oberritter
* Fixes the following warning: | configure: WARNING: unrecognized options: --disable-Werror Signed-off-by: Andreas Oberritter --- * No PR bump required because it doesn't change anything apart from the log message mentioned above. meta/recipes-extended/parted/parted_3.0.bb |2 +- 1 files

Re: [OE-core] [PATCH 1/6] scripts/bitbake: ensure user is in build directory

2012-03-14 Thread Andreas Oberritter
Hello Paul, On 14.03.2012 01:36, Paul Eggleton wrote: > If the user is in any directory other than $BUILDDIR when the bitbake > wrapper script is run, then show an error an exit. this patch broke my setup. My $BUILDDIR points to tmp, so that pseudo doesn't get rebuilt for every machine. I have a

[OE-core] [PATCH] distro_tracking_fields: Fix EOL Comments and missing Quotes

2012-03-14 Thread Saul Wold
Signed-off-by: Saul Wold --- .../conf/distro/include/distro_tracking_fields.inc | 294 +--- 1 files changed, 196 insertions(+), 98 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc index 2fcd52d..

[OE-core] boost breaks on rebuild

2012-03-14 Thread Steve Sakoman
Boost is another package when a rebuild is triggered: ERROR: Logfile of failure stored in: /media/Work/yocto/tmp/work/armv7a-vfp-neon-poky-linux-gnueabi/boost-1.49.0-r2.0/temp/log.do_compile.22475 Log data follows: | ERROR: Function failed: do_compile (see /media/Work/yocto/tmp/work/armv7a-vfp-neo

[OE-core] [PATCH 0/2] ncurses packaging fix [v3]

2012-03-14 Thread Scott Garman
Hello, This fixes the ncurses library packaging. v3 of this pull request uses do_split_packages to package the libraries in base_libdir, and includes a commit which bumps PR for all recipes which DEPEND on ncurses. Scott The following changes since commit 8567549a743cb5be157e7988e1f9227d91f4885

[OE-core] [PATCH 2/2] PR bump for all recipes that DEPEND on ncurses

2012-03-14 Thread Scott Garman
The packaging changes to ncurses could break package feeds, so bump the PR on everythong that DEPENDS on ncurses. Signed-off-by: Scott Garman --- meta/recipes-core/gettext/gettext_0.18.1.1.bb |2 +- meta/recipes-core/readline/readline_5.2.bb |2 +- meta/recipes-core/readline

[OE-core] [PATCH 1/2] ncurses: fix packaging of moved libraries

2012-03-14 Thread Scott Garman
This ensures packaging of the ncurses libraries moved to base_libdir is done correctly. Signed-off-by: Scott Garman --- meta/recipes-core/ncurses/ncurses.inc |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/ncurses/ncurses.inc b/meta/recipes-core/n

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Scott Garman
On 03/14/2012 09:53 AM, Koen Kooi wrote: Op 14 mrt. 2012, om 17:36 heeft Scott Garman het volgende geschreven: The recent move of some of the ncurses libraries to base_libdir does not work with our automatic library packaging, so this explicity creates packages for libncurses, libncursesw, and

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Koen Kooi
Op 14 mrt. 2012, om 17:36 heeft Scott Garman het volgende geschreven: > The recent move of some of the ncurses libraries to base_libdir > does not work with our automatic library packaging, so this > explicity creates packages for libncurses, libncursesw, and > libtinfo. > > Signed-off-by: Scott

Re: [OE-core] [PATCH 0/1] ncurses packaging fix

2012-03-14 Thread Scott Garman
On 03/14/2012 12:51 AM, Martin Jansa wrote: On Tue, Mar 13, 2012 at 05:31:24PM -0700, Scott Garman wrote: Hello, This fixes the ncurses library packaging. Thanks to Andreas Oberritter for pointing it out. Why not use another do_split_packages for base_libdir? Can it be used only once per rec

[OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Scott Garman
The recent move of some of the ncurses libraries to base_libdir does not work with our automatic library packaging, so this explicity creates packages for libncurses, libncursesw, and libtinfo. Signed-off-by: Scott Garman --- meta/recipes-core/ncurses/ncurses.inc | 18 -- 1 fil

[OE-core] [PATCH 0/1] ncurses packaging fix [v2]

2012-03-14 Thread Scott Garman
Hello, This fixes the ncurses library packaging. Thanks to Andreas Oberritter for pointing it out. v2 of this pull request increments INC_PR again, since Paul Eggleton got a patch into master while my pull request was pending, so it needed another bump. Scott The following changes since commit

Re: [OE-core] [PATCH] Add pigz as gzip-native alternative.

2012-03-14 Thread Paul Eggleton
On Wednesday 14 March 2012 16:59:31 Björn Stenberg wrote: > pigz, which stands for parallel implementation of gzip, is a fully > functional replacement for gzip that exploits multiple processors and > multiple cores to the hilt when compressing data. pigz was written by Mark > Adler, and uses the z

Re: [OE-core] [PATCH 0/1] ncurses packaging fix

2012-03-14 Thread Scott Garman
On 03/14/2012 01:22 AM, Koen Kooi wrote: Op 14 mrt. 2012, om 01:31 heeft Scott Garman het volgende geschreven: Hello, This fixes the ncurses library packaging. Thanks to Andreas Oberritter for pointing it out. Scott The following changes since commit 81379dc141e245307ca391a02b7490b199128991

[OE-core] [PATCH] Add pigz as gzip-native alternative.

2012-03-14 Thread Björn Stenberg
pigz, which stands for parallel implementation of gzip, is a fully functional replacement for gzip that exploits multiple processors and multiple cores to the hilt when compressing data. pigz was written by Mark Adler, and uses the zlib and pthread libraries. This recipe adds pigz as an alterna

Re: [OE-core] [PATCH 00/14] Warning Fixes and some Updates

2012-03-14 Thread Saul Wold
On 03/14/2012 06:26 AM, Richard Purdie wrote: On Wed, 2012-03-14 at 01:33 -0700, Saul Wold wrote: Richard, This has some warning fixes along with some update. Biggest change is to bitbake.conf, which re-orders PACKAGE and addes ${libdir}/${BPN}/*.a to the staticdev list, this was seen in a num

Re: [OE-core] [PATCH 6/8] alsa-tools: update to 1.0.25

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 17:03 +0800, Kang Kai wrote: > Update to version 1.0.25 > > Signed-off-by: Kang Kai > --- > .../autotools.patch|0 > ...alsa-tools_1.0.24.1.bb => alsa-tools_1.0.25.bb} |6 +++--- > 2 files changed, 3 insertions(+), 3 deletions(-) > r

[OE-core] [PATCH] gpgme: fix packaging warnings

2012-03-14 Thread Saul Wold
Use rmdir since it is currently empty, and we can catch if it gets used later Signed-off-by: Saul Wold --- meta/recipes-support/gpgme/gpgme_1.3.1.bb |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/meta/recipes-support/gpgme/gpgme_1.3.1.bb b/meta/recipes-support/gpg

[OE-core] net-tools breaks on rebuild

2012-03-14 Thread Steve Sakoman
I'm still encountering recipes that fail when sstate hash forces a rebuild after a pull. The latest is net-tools in nettools_do_patch: | ERROR: Function failed: nettools_do_patch (see /media/Work/yocto/tmp/work/armv7a-vfp-neon-poky-linux-gnueabi/net-tools-1.60-23-r0/temp/log.do_patch.658 for furt

Re: [OE-core] [PATCH 1/1] gcc-cross: aviod creating invalid symlinks

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 17:13 +0800, Robert Yang wrote: > There are several invalid symlinks in gcc-cross-initial, > gcc-cross-intermediate and gcc-cross, these cause the error:(56 errors) > > tmp/work/i586-poky-linux/gcc-cross-initial-4.6.3+svnr184847-r23/temp/log.do_populate_sysroot: > log.do_popu

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Paul Eggleton
On Wednesday 14 March 2012 08:12:23 Darren Hart wrote: > Perhaps. ALLOW_EMPTY is not defined in poky/documentation/* nor in > poky/conf/documentation.conf. > > (I realize this oe-core and not poky, but this is the best reference I > know of) > > Could you provide a terse description of how ALLOW_

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Paul Eggleton
On Wednesday 14 March 2012 08:18:34 Darren Hart wrote: > On 03/14/2012 08:07 AM, Paul Eggleton wrote: > > On Wednesday 14 March 2012 16:00:33 Martin Jansa wrote: > >> isn't just > >> ALLOW_EMPTY_${PN}-libncursesw = "1" > >> enough? > > > > I suspect we don't care if the libncursesw package isn't c

Re: [OE-core] [PATCH 1/6] scripts/bitbake: ensure user is in build directory

2012-03-14 Thread Darren Hart
On 03/14/2012 08:09 AM, Paul Eggleton wrote: > On Wednesday 14 March 2012 07:52:01 Darren Hart wrote: >> Should this have some kind of prefix? "ERROR: " or something along those >> lines for consistency with other output? > > I did wonder about that; in the end I elected to be consistent with th

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Darren Hart
On 03/14/2012 08:07 AM, Paul Eggleton wrote: > On Wednesday 14 March 2012 16:00:33 Martin Jansa wrote: >> isn't just >> ALLOW_EMPTY_${PN}-libncursesw = "1" >> enough? > > I suspect we don't care if the libncursesw package isn't created when wide > character support is disabled, if so, we don't

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Darren Hart
On 03/14/2012 08:00 AM, Martin Jansa wrote: > On Wed, Mar 14, 2012 at 07:57:56AM -0700, Darren Hart wrote: >> >> >> On 03/13/2012 05:31 PM, Scott Garman wrote: ... >>> PACKAGES += " \ >>> + ${PN}-libncurses \ >>> + ${PN}-libncursesw \ >> >> This one needs to be dependent on ENABLE_WIDEC > > i

Re: [OE-core] [PATCH 1/6] scripts/bitbake: ensure user is in build directory

2012-03-14 Thread Paul Eggleton
On Wednesday 14 March 2012 07:52:01 Darren Hart wrote: > Should this have some kind of prefix? "ERROR: " or something along those > lines for consistency with other output? I did wonder about that; in the end I elected to be consistent with the python version errors in the same script (although I

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Paul Eggleton
On Wednesday 14 March 2012 16:00:33 Martin Jansa wrote: > isn't just > ALLOW_EMPTY_${PN}-libncursesw = "1" > enough? I suspect we don't care if the libncursesw package isn't created when wide character support is disabled, if so, we don't even need that. Cheers, Paul -- Paul Eggleton Intel Op

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Martin Jansa
On Wed, Mar 14, 2012 at 07:57:56AM -0700, Darren Hart wrote: > > > On 03/13/2012 05:31 PM, Scott Garman wrote: > > The recent move of some of the ncurses libraries to base_libdir > > does not work with our automatic library packaging, so this > > explicity creates packages for libncurses, libncur

Re: [OE-core] [PATCH 1/1] ncurses: fix packaging of moved libraries

2012-03-14 Thread Darren Hart
On 03/13/2012 05:31 PM, Scott Garman wrote: > The recent move of some of the ncurses libraries to base_libdir > does not work with our automatic library packaging, so this > explicity creates packages for libncurses, libncursesw, and > libtinfo. > > Signed-off-by: Scott Garman > --- > meta/rec

Re: [OE-core] [PATCH 6/6] linux-yocto-tiny: add dependency on xz-native

2012-03-14 Thread Darren Hart
On 03/14/2012 06:12 AM, Bruce Ashfield wrote: > On Wed, Mar 14, 2012 at 9:03 AM, Paul Eggleton > wrote: >> On Wednesday 14 March 2012 08:59:34 Bruce Ashfield wrote: >>> You could audit the constructed .config as well, since that's the final word >>> on whether it actually makes it into the kerne

[OE-core] [PATCH] python: regenerate python-2.7-manifest.inc

2012-03-14 Thread Martin Jansa
* only manual change is extra line break in FILES_${PN}-core, because git send-email doesn't like long lines fatal: /tmp/0wfyzTvlIf/0001-python-regenerate-python-2.7-manifest.inc.patch: 30: patch contains a line longer than 998 characters * fixes PROVIDES and it will be easier to review next

Re: [OE-core] [PATCH 5/6] ncurses: fix build when ENABLE_WIDEC is not set

2012-03-14 Thread Darren Hart
On 03/13/2012 05:36 PM, Paul Eggleton wrote: > If wide character support is disabled (as it is with poky-tiny, for > example) then we won't have libncursesw.so.*, so skip moving these files > in that case. (Fixes a regression introduced in OE-Core revision > ccd370ab147b78de7a5bd74818f755f4d3ca6d

Re: [OE-core] [PATCH 1/6] scripts/bitbake: ensure user is in build directory

2012-03-14 Thread Darren Hart
On 03/13/2012 05:36 PM, Paul Eggleton wrote: > If the user is in any directory other than $BUILDDIR when the bitbake > wrapper script is run, then show an error an exit. > > Fixes [YOCTO #2071]. > > Signed-off-by: Paul Eggleton > --- > scripts/bitbake |5 + > 1 files changed, 5 insert

[OE-core] [oe-core][PATCHv3] qt4: package static libraries correctly to fix warnings

2012-03-14 Thread Martin Jansa
From: Saul Wold WARNING: QA Issue: non -staticdev package contains static .a library: qt4-demos path '/work/i586-poky-linux/qt4-x11-free-4.7.4-r39.7/packages-split/qt4-demos/usr/bin/qt4/demos/shared/libdemo_shared.a' WARNING: QA Issue: non -staticdev package contains static .a library: qt4-exa

Re: [OE-core] [oe-core][PATCHv2] qt4: package static libraries correctly to fix warnings

2012-03-14 Thread Martin Jansa
Ah.. gmail doesn't like my From: to keep sgw credit Who should the emails appear to be from? [Martin Jansa ] Saul Wold and then arrived as From: Saul Wold Will send v3 On Wed, Mar 14, 2012 at 03:44:17PM +0100, Saul Wold wrote: > WARNING: QA Issue: non -staticdev package contains static .a l

[OE-core] [oe-core][PATCHv2] qt4: package static libraries correctly to fix warnings

2012-03-14 Thread Saul Wold
WARNING: QA Issue: non -staticdev package contains static .a library: qt4-demos path '/work/i586-poky-linux/qt4-x11-free-4.7.4-r39.7/packages-split/qt4-demos/usr/bin/qt4/demos/shared/libdemo_shared.a' WARNING: QA Issue: non -staticdev package contains static .a library: qt4-examples path '/work

Re: [OE-core] [PATCH] librsvg: really bump PR

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 13:44 +0100, Martin Jansa wrote: > * it was downgraded from r4 to r1 in > > http://git.openembedded.org/openembedded-core/commit/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb?id=50ad5230ea9e0982cdfda23fb9fcfccf89d28f29 > so even with latest change making it r3 we had still

Re: [OE-core] [PATCH 0/2] Update ccache and chkconfig to latest version

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 14:24 +0800, wenzong@windriver.com wrote: > From: Wenzong Fan > > Update ccache and chkconfig, also update their distro tracking fields > accordingly. > > The following changes since commit 8e9f6fc77ac4763f4ed1f6e7b720420c220ba6e2: > Richard Purdie (1): > date

Re: [OE-core] [PATCH 1/1 V2] package.bbclass: do not split debug pkg when no debugsources.list

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 15:16 +0800, Robert Yang wrote: > We don't have to split the debug pkg if it is null (No debugsources.list > since the find-debuginfo.sh would not generate it for the null pkg). > > Serval pkg's debug pkg is null, and there were a few errors: (53 pkgs > had such errors in a c

Re: [OE-core] [PATCH] opensp: Fix unnecessary rpath warnings

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 01:25 -0700, Saul Wold wrote: > On 03/13/2012 05:26 PM, Richard Purdie wrote: > > Stale m4 macros seemed to be corrupting the opensp build. By removing > > them, we can fix the warnings: > > > > WARNING: QA Issue: opensp: > > /work/i586-poky-linux/opensp-1.5-r2/packages-split

Re: [OE-core] [PATCH 00/14] Warning Fixes and some Updates

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 01:33 -0700, Saul Wold wrote: > Richard, > > This has some warning fixes along with some update. > > Biggest change is to bitbake.conf, which re-orders PACKAGE and addes > ${libdir}/${BPN}/*.a to the staticdev list, this was seen in a number > of packages and seems to make

Re: [OE-core] [PATCH 0/1] aviod creating invalid symlinks

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 17:13 +0800, Robert Yang wrote: > The following changes since commit 81379dc141e245307ca391a02b7490b199128991: > > dates: Fix unpackaged files warning (2012-03-13 23:18:19 +) > > are available in the git repository at: > git://git.pokylinux.org/poky-contrib robert/gc

Re: [OE-core] [PATCH 0/8] Update packages

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 17:03 +0800, Kang Kai wrote: > Hello, > > This serious patches try to update some packages. > > Regards, > > > The following changes since commit 19b38a6486086b62efbff2bf8192adbaa34ecc0a: > > package.bbclass: Drop python depends from rpmdeps (2012-03-11 18:27:45 > +000

Re: [OE-core] [PATCH 0/6] Misc build failure fixes

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 00:36 +, Paul Eggleton wrote: > The following changes since commit 81379dc141e245307ca391a02b7490b199128991: > > dates: Fix unpackaged files warning (2012-03-13 23:18:19 +) > > are available in the git repository at: > git://git.openembedded.org/openembedded-core

Re: [OE-core] gettext_0.18.1.1.bb (PR r7 => r8)

2012-03-14 Thread Richard Purdie
On Tue, 2012-03-13 at 16:00 +0100, Matthieu CRAPET wrote: > Greetings, > > Updated my openembedded-core git repository. > Rebuilt world for my custom distro (compiling for a BeagleBoard). > > I've got an error on gettext. > > .../build/tmp-eglibc/sysroots/x86_64-linux/usr/libexec/armv7a-vfp-

Re: [OE-core] [PATCH 6/6] linux-yocto-tiny: add dependency on xz-native

2012-03-14 Thread Bruce Ashfield
On Wed, Mar 14, 2012 at 9:03 AM, Paul Eggleton wrote: > On Wednesday 14 March 2012 08:59:34 Bruce Ashfield wrote: >> You could audit the constructed .config as well, since that's the final word >> on whether it actually makes it into the kernel build, but also not really >> required here. > > This

Re: [OE-core] [PATCH 6/6] linux-yocto-tiny: add dependency on xz-native

2012-03-14 Thread Paul Eggleton
On Wednesday 14 March 2012 08:59:34 Bruce Ashfield wrote: > You could audit the constructed .config as well, since that's the final word > on whether it actually makes it into the kernel build, but also not really > required here. This is what I wanted to do, but I'm assuming the config constructi

Re: [OE-core] [PATCH 6/6] linux-yocto-tiny: add dependency on xz-native

2012-03-14 Thread Bruce Ashfield
On Wed, Mar 14, 2012 at 8:39 AM, Paul Eggleton wrote: > Hi Bruce, > > On Wednesday 14 March 2012 08:29:20 Bruce Ashfield wrote: >> In this case, you wouldn't go through the fragments, you'd just add one that >> turns it on when you want it. Don't audit a defconfig, push the few options >> that you

Re: [OE-core] [PATCH 12/14] gpgme: fix packaging warnings

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 01:33 -0700, Saul Wold wrote: > Signed-off-by: Saul Wold > --- > meta/recipes-support/gpgme/gpgme_1.3.1.bb |6 +- > 1 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/meta/recipes-support/gpgme/gpgme_1.3.1.bb > b/meta/recipes-support/gpgme/gpgme_1.3.

Re: [OE-core] [PATCH 14/14] bitbake.conf: Modify PACKAGE list ordering to insert -staticdev file before PN

2012-03-14 Thread Richard Purdie
On Wed, 2012-03-14 at 01:33 -0700, Saul Wold wrote: > Signed-off-by: Saul Wold > --- > meta/conf/bitbake.conf |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf > index 216da75..d4357d1 100644 > --- a/meta/conf/bitbake

[OE-core] [PATCH] librsvg: really bump PR

2012-03-14 Thread Martin Jansa
* it was downgraded from r4 to r1 in http://git.openembedded.org/openembedded-core/commit/meta/recipes-gnome/librsvg/librsvg_2.32.1.bb?id=50ad5230ea9e0982cdfda23fb9fcfccf89d28f29 so even with latest change making it r3 we had still on lower version that we had before for 2.32.1 Signed-off-by

Re: [OE-core] [PATCH 6/6] linux-yocto-tiny: add dependency on xz-native

2012-03-14 Thread Paul Eggleton
Hi Bruce, On Wednesday 14 March 2012 08:29:20 Bruce Ashfield wrote: > In this case, you wouldn't go through the fragments, you'd just add one that > turns it on when you want it. Don't audit a defconfig, push the few options > that you want onto the build. I'm not sure what you mean here, in the

Re: [OE-core] [PATCH 2/7] archiver.bbclass: New bbclass for archiving sources, patches, logs and scripts

2012-03-14 Thread Xiaofeng Yan
On 2012年03月14日 10:57, Saul Wold wrote: On 03/13/2012 05:52 AM, Xiaofeng Yan wrote: From: Xiaofeng Yan 1 Archive sources in ${S} in the different stage (do_unpack,do_patch,do_configure). 2 Archive patches including series 3 Archive logs including scripts (.bb and .inc files) 4 dump environment

Re: [OE-core] [PATCH 6/6] linux-yocto-tiny: add dependency on xz-native

2012-03-14 Thread Bruce Ashfield
On Wed, Mar 14, 2012 at 4:32 AM, Paul Eggleton wrote: > On Wednesday 14 March 2012 09:21:06 Koen Kooi wrote: >> Op 14 mrt. 2012, om 01:36 heeft Paul Eggleton het volgende geschreven: >> > The kernel configuration requires lzma to compress the kernel image >> > (CONFIG_KERNEL_LZMA=y), so add a depe

Re: [OE-core] [PATCH 1/7] package_rpm: Add srpm function to this bbclass

2012-03-14 Thread Xiaofeng Yan
Hi Saul, Thanks for your detailed comment On 2012年03月14日 07:24, Saul Wold wrote: On 03/13/2012 05:52 AM, Xiaofeng Yan wrote: From: Xiaofeng Yan Add a new function to archive source, patches and logs to a source rpm package. Every source rpm package will be deployed to ${DEPLOY_DIR}/sources/dep

Re: [OE-core] [PATCH 05/14] qt4: package static libraries correctly to fix warnings

2012-03-14 Thread Martin Jansa
On Wed, Mar 14, 2012 at 01:33:16AM -0700, Saul Wold wrote: > WARNING: QA Issue: non -staticdev package contains static .a library: > qt4-demos path > '/work/i586-poky-linux/qt4-x11-free-4.7.4-r39.7/packages-split/qt4-demos/usr/bin/qt4/demos/shared/libdemo_shared.a' > WARNING: QA Issue: non -stati

[OE-core] [PATCH 1/1] gcc-cross: aviod creating invalid symlinks

2012-03-14 Thread Robert Yang
There are several invalid symlinks in gcc-cross-initial, gcc-cross-intermediate and gcc-cross, these cause the error:(56 errors) tmp/work/i586-poky-linux/gcc-cross-initial-4.6.3+svnr184847-r23/temp/log.do_populate_sysroot: log.do_populate_sysroot:grep: /path/to/invalid/symlink: No such file or di

[OE-core] [PATCH 0/1] aviod creating invalid symlinks

2012-03-14 Thread Robert Yang
The following changes since commit 81379dc141e245307ca391a02b7490b199128991: dates: Fix unpackaged files warning (2012-03-13 23:18:19 +) are available in the git repository at: git://git.pokylinux.org/poky-contrib robert/gcc http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=robert/g

[OE-core] [PATCH 8/8] distro_tracking_fields: udpate package status

2012-03-14 Thread Kang Kai
Update packages' status, includes libsdl, gobject-introspection, newt, alsa and ghostscript. Signed-off-by: Kang Kai --- .../conf/distro/include/distro_tracking_fields.inc | 48 ++-- 1 files changed, 24 insertions(+), 24 deletions(-) diff --git a/meta/conf/distro/include/distr

[OE-core] [PATCH 7/8] ghostscript: update to 9.05

2012-03-14 Thread Kang Kai
Update ghostscript to 9.05, and update ghostscript-9.02-genarch.patch at same time because it can't be applied. Add patch ghostscript/ghostscript-9.05-NOT-check-endian.patch to forbid checking endianese. Signed-off-by: Kang Kai --- .../ghostscript/ghostscript-9.02-genarch.patch | 12 ++--

[OE-core] [PATCH 6/8] alsa-tools: update to 1.0.25

2012-03-14 Thread Kang Kai
Update to version 1.0.25 Signed-off-by: Kang Kai --- .../autotools.patch|0 ...alsa-tools_1.0.24.1.bb => alsa-tools_1.0.25.bb} |6 +++--- 2 files changed, 3 insertions(+), 3 deletions(-) rename meta/recipes-multimedia/alsa/{alsa-tools-1.0.24.1 => alsa-to

[OE-core] [PATCH 5/8] alsa-utils: update to 1.0.25

2012-03-14 Thread Kang Kai
Update to version 1.0.25, and update patch 0001-alsactl-don-t-let-systemd-unit-restore-the-volume-wh.patch because rejected when apply it. Signed-off-by: Kang Kai --- ...-t-let-systemd-unit-restore-the-volume-wh.patch |4 ++-- .../ncursesfix.patch |0 .../uc

[OE-core] [PATCH 4/8] alsa-lib: update to 1.0.25

2012-03-14 Thread Kang Kai
Update to version 1.0.25, rename the patch directory at same time. Signed-off-by: Kang Kai --- .../fix-tstamp-declaration.patch |0 .../unbreak_plugindir.patch|0 .../{alsa-lib_1.0.24.1.bb => alsa-lib_1.0.25.bb} |6 +++--- 3 files changed,

[OE-core] [PATCH 3/8] libsdl: update to 1.2.15

2012-03-14 Thread Kang Kai
Update libsdl to 1.2.15. Patch add.XGetRequest.symbol.patch is merged by upstream, so remove it. Signed-off-by: Kang Kai --- .../libsdl-1.2.14/add.XGetRequest.symbol.patch | 79 .../configure_tweak.patch |0 .../libsdl/{libsdl_1.2.14.bb =>

[OE-core] [PATCH 1/8] gobject-introspection: update to 1.31.20

2012-03-14 Thread Kang Kai
Add a new recipe file to update gobject-introspection to 1.31.20, instead of git version. Signed-off-by: Kang Kai --- .../gnome/gobject-introspection_1.31.20.bb | 28 1 files changed, 28 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-gnome/gnome/gob

[OE-core] [PATCH 2/8] newt: update to 0.52.14

2012-03-14 Thread Kang Kai
Update newt to latest verion 0.52.14. Signed-off-by: Kang Kai --- .../{libnewt_0.52.13.bb => libnewt_0.52.14.bb} |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-) rename meta/recipes-extended/newt/{libnewt_0.52.13.bb => libnewt_0.52.14.bb} (84%) diff --git a/meta/recipes-ext

[OE-core] [PATCH 0/8] Update packages

2012-03-14 Thread Kang Kai
Hello, This serious patches try to update some packages. Regards, The following changes since commit 19b38a6486086b62efbff2bf8192adbaa34ecc0a: package.bbclass: Drop python depends from rpmdeps (2012-03-11 18:27:45 +) are available in the git repository at: git://git.pokylinux.org/poky

Re: [OE-core] [PATCH 07/14] python: package static libraries correctly in -staticdev

2012-03-14 Thread Martin Jansa
On Wed, Mar 14, 2012 at 01:33:18AM -0700, Saul Wold wrote: > WARNING: QA Issue: non -staticdev package contains static .a library: > python-distutils path > '/work/i586-poky-linux/python-2.7.2-r1.7/packages-split/python-distutils/usr/lib/python2.7/config/libpython2.7.a' > Signed-off-by: Saul Wold

Re: [OE-core] gdb 7.4 and libexpat

2012-03-14 Thread Henning Heinold
On Wed, Mar 14, 2012 at 02:49:19AM +0100, Andreas Oberritter wrote: > Hi everybody, > > in our rootfs, when debugging remotely with gdbserver on mips32el, gdb > 7.4 fails to find symbol names for use in backtraces. gdb 7.3.1 works > well. One of my colleagues ran git bisect and discovered the culp

Re: [OE-core] [oe-commits] Andreas Oberritter : qt4: fix deps in libQtWebkit.la and QtWebKit.pc

2012-03-14 Thread Martin Jansa
On Wed, Mar 14, 2012 at 08:08:03AM +0100, Martin Jansa wrote: > On Tue, Mar 13, 2012 at 11:48:20AM +, g...@git.openembedded.org wrote: > > Module: openembedded-core.git > > Branch: master > > Commit: 4c41a3204ef72f53813ddc86fe525fa9c6714daa > > URL: > > http://git.openembedded.org/?p=openem

[OE-core] [PATCH 14/14] bitbake.conf: Modify PACKAGE list ordering to insert -staticdev file before PN

2012-03-14 Thread Saul Wold
Signed-off-by: Saul Wold --- meta/conf/bitbake.conf |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 216da75..d4357d1 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -253,7 +253,7 @@ SOLIBSDEV_dar

[OE-core] [PATCH 13/14] man: fix configure issue to solve warnings

2012-03-14 Thread Saul Wold
WARNING: For recipe man, the following files/directories were installed but not shipped in any package: WARNING: /intel WARNING: /intel/poky WARNING: /intel/poky/builds WARNING: /intel/poky/builds/world WARNING: /intel/poky/builds/world/tmp WARNING: /intel/poky/builds/world/tmp/work WA

[OE-core] [PATCH 12/14] gpgme: fix packaging warnings

2012-03-14 Thread Saul Wold
Signed-off-by: Saul Wold --- meta/recipes-support/gpgme/gpgme_1.3.1.bb |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/meta/recipes-support/gpgme/gpgme_1.3.1.bb b/meta/recipes-support/gpgme/gpgme_1.3.1.bb index 9ffedba..33858bf 100644 --- a/meta/recipes-support/gpgm

[OE-core] [PATCH 10/14] man-pages: Update to 3.36

2012-03-14 Thread Saul Wold
Signed-off-by: Saul Wold --- .../{man-pages_3.32.bb => man-pages_3.36.bb} |8 1 files changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-extended/man-pages/{man-pages_3.32.bb => man-pages_3.36.bb} (80%) diff --git a/meta/recipes-extended/man-pages/man-pages_3.32.bb

[OE-core] [PATCH 11/14] libgalago: Fix package warnings by not packaging autopackage

2012-03-14 Thread Saul Wold
WARNING: For recipe libgalago, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/autopackage WARNING: /usr/share/autopackage/skeletons WARNING: /usr/share/autopackage/skeletons/@galago.info WARNING: /usr/share/autopackage/skeletons/@galago.i

[OE-core] [PATCH 09/14] avahi: Update to 0.6.31

2012-03-14 Thread Saul Wold
Removed unneeded patch, because the issue was fixed upstream Signed-off-by: Saul Wold --- .../{avahi-ui_0.6.30.bb => avahi-ui_0.6.31.bb} |8 meta/recipes-connectivity/avahi/avahi.inc |6 +++--- .../avahi/{avahi_0.6.30.bb => avahi_0.6.31.bb} |6 +++--- 3 file

[OE-core] [PATCH 08/14] distro_tracking: Updates for manual checks

2012-03-14 Thread Saul Wold
Signed-off-by: Saul Wold --- .../conf/distro/include/distro_tracking_fields.inc | 36 1 files changed, 29 insertions(+), 7 deletions(-) diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc index d8cb150..ee

[OE-core] [PATCH 07/14] python: package static libraries correctly in -staticdev

2012-03-14 Thread Saul Wold
WARNING: QA Issue: non -staticdev package contains static .a library: python-distutils path '/work/i586-poky-linux/python-2.7.2-r1.7/packages-split/python-distutils/usr/lib/python2.7/config/libpython2.7.a' Signed-off-by: Saul Wold --- .../python/python-2.7-manifest.inc |6 ++

[OE-core] [PATCH 05/14] qt4: package static libraries correctly to fix warnings

2012-03-14 Thread Saul Wold
WARNING: QA Issue: non -staticdev package contains static .a library: qt4-demos path '/work/i586-poky-linux/qt4-x11-free-4.7.4-r39.7/packages-split/qt4-demos/usr/bin/qt4/demos/shared/libdemo_shared.a' WARNING: QA Issue: non -staticdev package contains static .a library: qt4-examples path '/work

[OE-core] [PATCH 04/14] autoconf: remove emacs mode files to fix warnings

2012-03-14 Thread Saul Wold
WARNING: For recipe autoconf, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/emacs WARNING: /usr/share/emacs/site-lisp WARNING: /usr/share/emacs/site-lisp/autotest-mode.elc WARNING: /usr/share/emacs/site-lisp/autotest-mode.el WARNING: /

[OE-core] [PATCH 06/14] rpm: Package python-rpm static archive correctly

2012-03-14 Thread Saul Wold
WARNING: QA Issue: non -staticdev package contains static .a library: python-rpm path '/work/i586-poky-linux/rpm-5.4.0-r34/packages-split/python-rpm/usr/lib/python2.7/rpm/_rpmmodule.a' Signed-off-by: Saul Wold --- meta/recipes-devtools/rpm/rpm_5.4.0.bb |5 +++-- 1 files changed, 3 insertion

[OE-core] [PATCH 03/14] quilt: Fix docs packaging warnings

2012-03-14 Thread Saul Wold
WARNING: For recipe quilt, the following files/directories were installed but not shipped in any package: WARNING: /usr/share/doc WARNING: /usr/share/doc/quilt WARNING: /usr/share/doc/quilt/README WARNING: /usr/share/doc/quilt/quilt.pdf WARNING: /usr/share/doc/quilt/README.MAIL Signed-of

[OE-core] [PATCH 02/14] ltp: Package static library in -staticdev

2012-03-14 Thread Saul Wold
WARNING: QA Issue: non -staticdev package contains static .a library: ltp path '/work/i586-poky-linux/ltp-20120104-r0/packages-split/ltp/opt/ltp/lib/libmem.a' Signed-off-by: Saul Wold --- meta/recipes-extended/ltp/ltp_20120104.bb |4 1 files changed, 4 insertions(+), 0 deletions(-) dif

  1   2   >