[OE-core] [PATCH 0/1] pkg-config obsolete automake macro fix

2013-05-24 Thread Marko Lindqvist
glib tree included in pkg-config distribution uses AM_PROG_CC_STDC that is deprecated at best. It will be obsolete, and give error, in future automake versions, as well as with automake 1.13.0 and 1.13.1. The following changes since commit 8f5bc47729edb8cb051d81e9ff1680cb8d2eca25: dropbear: a f

Re: [OE-core] [PATCH 0/1] Update automake to version 1.13.2

2013-05-24 Thread Marko Lindqvist
Confirmed. Automake update to (any) 1.13.x version breaks gtk-engines build. I don't know yet if it's automake or gtk-engines bug. On 24 May 2013 02:03, Saul Wold wrote: > On 05/23/2013 01:52 AM, Marko Lindqvist wrote: > >> New upstream release, 1.13.2, has reverted some of the 1.13.0 backward

Re: [OE-core] [PATCH 0/5] Low-hanging updates

2013-05-24 Thread Marko Lindqvist
On 24 May 2013 15:42, Burton, Ross wrote: > On 24 May 2013 08:58, Marko Lindqvist wrote: > > freetype: update to upstream version 2.4.12 > > harfbuzz: update to upstream version 0.9.17 > > gtk+: update to upstream version 2.24.18 > > curl: update to upstream version 7.30.0 > > zlib: up

Re: [OE-core] [PATCH] libdrm: fix packaging after last upgrade

2013-05-24 Thread Martin Jansa
On Thu, May 23, 2013 at 10:08:23AM +0100, Burton, Ross wrote: > On 23 May 2013 09:55, Martin Jansa wrote: > > -FILES_${PN}-tests = "${bindir}/dr* ${bindir}/mode*" > > +FILES_${PN}-tests = "${bindir}/dr* ${bindir}/mode* ${bindir}/*test" > > Why not just capture ${bindir}/* and we won't have this p

[OE-core] [PATCH] cracklib: Allow byte order patch to work on older Linux hosts

2013-05-24 Thread Mark Hatle
Older hosts don't have the htobe* and be*toh functions defined. Instead we fall back to checking the endian and calling bswap_* directly. This works on both old and new hosts. Signed-off-by: Mark Hatle --- ...c-support-dictionary-byte-order-dependent.patch | 120 +++-- 1 file ch

Re: [OE-core] [PATCH 1/1] cracklib: do_compile failed on RHEL5.8 in which glibc version less than 2.9

2013-05-24 Thread Mark Hatle
On 5/24/13 4:56 AM, Hongxu Jia wrote: cracklib invokes C functions `be16toh/be32toh/be64toh/htobe16/htobe32/htobe64' to fix endian issue on multi platform, but these functions are nonstandard which were added to glibc in version 2.9. The do_compile failed while host's glibc version < 2.9, so use

Re: [OE-core] [PATCH] libpam: fix multilib packaging issue for pam-plugins

2013-05-24 Thread Mark Hatle
On 5/24/13 3:52 AM, Paul Eggleton wrote: On Thursday 23 May 2013 09:40:51 Mark Hatle wrote: On 5/23/13 3:01 AM, Ming Liu wrote: libpam might miss ABI specific dependencies for pam-plugins-*, for RPM uses generic names to check the packages depending on it and doesn't consider the arch, which wi

Re: [OE-core] [PATCH] systemd: fix ordering for machineid and run-postinsts services

2013-05-24 Thread Jonathan Liu
On 16/05/2013 12:59 PM, Jonathan Liu wrote: The remount-rootfs.service unit has been renamed to systemd-remount-fs.service in systemd v183 and later. The run-postinsts script writes to /var/log (a symbolic link to /var/volatile/log), so systemd-tmpfiles-setup.service is added to After= in run-po

Re: [OE-core] [PATCH 0/5] Low-hanging updates

2013-05-24 Thread Burton, Ross
On 24 May 2013 08:58, Marko Lindqvist wrote: > freetype: update to upstream version 2.4.12 > harfbuzz: update to upstream version 0.9.17 > gtk+: update to upstream version 2.24.18 > curl: update to upstream version 7.30.0 > zlib: update to upstream version 1.2.8 I'd prefer to see zlib u

Re: [OE-core] [PATCH 4/7] libsoup-2.4: Update from 2.42.1 to 2.43.1

2013-05-24 Thread Paul Eggleton
On Friday 24 May 2013 10:40:24 Ciobanu, Emilia Maria Silvia wrote: > On Friday, May 24, 2013 12:36 PM, Paul Eggleton wrote: > > Could we just add some logic to distrodata.bbclass so that we don't get > > reports of needing to upgrade to these unstable releases? > > We thought about this situation.

[OE-core] [PATCH v2 0/7] Package Upgrades

2013-05-24 Thread Ionut Radu
Sending only the cover letter for v2. Changes in v2: * freetype: added LIC_FILES_CHKSUM change explaination * matchbox-keyboard: changed commit subject and fixed tabs and spaces mix for FILES_${PN} * matchbox-terminal: changed commit subject and removed PR="r0" Changes in v1: test: I've test

Re: [OE-core] [PATCH 4/7] libsoup-2.4: Update from 2.42.1 to 2.43.1

2013-05-24 Thread Ciobanu, Emilia Maria Silvia
Hi, > -Original Message- > From: Paul Eggleton [mailto:paul.eggle...@linux.intel.com] > Sent: Friday, May 24, 2013 12:36 PM > To: openembedded-core@lists.openembedded.org > Cc: Burton, Ross; Radu, IonutX; Saul Wold; Ciobanu, Emilia Maria Silvia > Subject: Re: [OE-core] [PATCH 4/7] libsoup-

Re: [OE-core] [PATCH 0/7] run-postinsts refactoring

2013-05-24 Thread Laurentiu Palcu
On 05/24/2013 06:38 AM, Saul Wold wrote: > On 05/23/2013 06:15 AM, Laurentiu Palcu wrote: >> Hi all, >> >> My work at #4484 revealed that the package managers deb/ipk/rpm handle >> removal >> of PM meta-data (when the PM is not deployed) and the delayed postinstalls >> execution in their own way

[OE-core] [PATCH 1/1] cracklib: do_compile failed on RHEL5.8 in which glibc version less than 2.9

2013-05-24 Thread Hongxu Jia
cracklib invokes C functions `be16toh/be32toh/be64toh/htobe16/htobe32/htobe64' to fix endian issue on multi platform, but these functions are nonstandard which were added to glibc in version 2.9. The do_compile failed while host's glibc version < 2.9, so use standard `htons/htonl/ntohs/ntohl' inst

[OE-core] [PATCH 0/1]cracklib: do_compile failed on RHEL5.8 in which glibc version less than 2.9

2013-05-24 Thread Hongxu Jia
The following changes since commit 350c36fcd97e8ef223b91e548d39c346c1c4cb29: bitbake: test/fetch: Allow the conditional network tests to work under python 2.6 (2013-05-17 12:42:08 +0300) are available in the git repository at: git://git.pokylinux.org/poky-contrib hongxu/fix-cracklib http:

Re: [OE-core] [PATCH 4/7] libsoup-2.4: Update from 2.42.1 to 2.43.1

2013-05-24 Thread Paul Eggleton
On Friday 24 May 2013 10:30:00 Burton, Ross wrote: > NACK. libsoup is GNOMEy, so odd minor versions indicate development > releases. Stick with 2.42.x until 2.44.x appears. Could we just add some logic to distrodata.bbclass so that we don't get reports of needing to upgrade to these unstable re

Re: [OE-core] [PATCH 2/7] freetype: Updated from 2.4.11 to 2.4.12

2013-05-24 Thread Paul Eggleton
Hi Ionut, On Friday 24 May 2013 12:18:06 Ionut Radu wrote: > Signed-off-by: Ionut Radu > > freetype: no-hardcode.patch does not apply to 2.4.12 version because > hardcode_libdir_flag_spec variable is set to '' in 2.4.12 > > --- > .../{freetype-2.4.11 => freetype-2.4.12}/no-hardcode.patch |

Re: [OE-core] [PATCH 7/7] settings-daemon: Updated to 0.0+gitAUTOINC+9a99528b02255450db81176abd9bbcc1dab9a4c1

2013-05-24 Thread Burton, Ross
On 24 May 2013 10:18, Ionut Radu wrote: > Signed-off-by: Ionut Radu Signed-off-by: Ross Burton Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-core

Re: [OE-core] [PATCH 5/7] matchbox-keyboard: Update to 0.0+gitAUTOINCa+a17b1135daab9eb4cd3647c02e82687f96d93619

2013-05-24 Thread Radu, IonutX
From: Burton, Ross [ross.bur...@intel.com] Sent: Friday, May 24, 2013 12:26 PM To: Radu, IonutX Cc: openembedded-core@lists.openembedded.org Subject: Re: [OE-core] [PATCH 5/7] matchbox-keyboard: Update to 0.0+gitAUTOINCa+a17b1135daab9eb4cd3647c02e82687f96d

Re: [OE-core] [PATCH 4/7] libsoup-2.4: Update from 2.42.1 to 2.43.1

2013-05-24 Thread Burton, Ross
NACK. libsoup is GNOMEy, so odd minor versions indicate development releases. Stick with 2.42.x until 2.44.x appears. Ross ___ Openembedded-core mailing list Openembedded-core@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openem

Re: [OE-core] [PATCH 2/7] freetype: Updated from 2.4.11 to 2.4.12

2013-05-24 Thread Burton, Ross
On 24 May 2013 10:18, Ionut Radu wrote: > Signed-off-by: Ionut Radu > > freetype: no-hardcode.patch does not apply to 2.4.12 version because > hardcode_libdir_flag_spec variable is set to '' in 2.4.12 If you change the license checksum, please say why. Handily Marko just sent the same upgrade w

Re: [OE-core] [PATCH 6/7] matchbox-terminal: Updated to 0.0+gitAUTOINC+452bca253492a97a587f440289b9ab27d217353e

2013-05-24 Thread Martin Jansa
On Fri, May 24, 2013 at 12:18:10PM +0300, Ionut Radu wrote: > Signed-off-by: Ionut Radu > --- > meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb >

Re: [OE-core] [PATCH 5/7] matchbox-keyboard: Update to 0.0+gitAUTOINCa+a17b1135daab9eb4cd3647c02e82687f96d93619

2013-05-24 Thread Burton, Ross
On 24 May 2013 10:18, Ionut Radu wrote: > Signed-off-by: Ionut Radu > > matchbox-keyboard: png-fix.patch was backported. (The newest version > contains 'png-fix.patch' changes). Did you test this worked on a device/qemu? There's been some heavy work upstream that hasn't been tested in our envir

Re: [OE-core] [PATCH 5/7] matchbox-keyboard: Update to 0.0+gitAUTOINCa+a17b1135daab9eb4cd3647c02e82687f96d93619

2013-05-24 Thread Martin Jansa
On Fri, May 24, 2013 at 12:18:09PM +0300, Ionut Radu wrote: > Signed-off-by: Ionut Radu > > matchbox-keyboard: png-fix.patch was backported. (The newest version > contains 'png-fix.patch' changes). do we need 0.0+gitAUTOINCa+ in subject? and where did it get 'a' after AUTOINC? > > --- > .../m

[OE-core] [PATCH 7/7] settings-daemon: Updated to 0.0+gitAUTOINC+9a99528b02255450db81176abd9bbcc1dab9a4c1

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu --- meta/recipes-sato/settings-daemon/settings-daemon_git.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-sato/settings-daemon/settings-daemon_git.bb b/meta/recipes-sato/settings-daemon/settings-daemon_git.bb index b76f4d8..168d778

[OE-core] [PATCH 6/7] matchbox-terminal: Updated to 0.0+gitAUTOINC+452bca253492a97a587f440289b9ab27d217353e

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu --- meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb b/meta/recipes-sato/matchbox-terminal/matchbox-terminal_git.bb index f4ad

[OE-core] [PATCH 5/7] matchbox-keyboard: Update to 0.0+gitAUTOINCa+a17b1135daab9eb4cd3647c02e82687f96d93619

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu matchbox-keyboard: png-fix.patch was backported. (The newest version contains 'png-fix.patch' changes). --- .../matchbox-keyboard/matchbox-keyboard_git.bb | 15 +++ 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/meta/recipes-sato/m

[OE-core] [PATCH 4/7] libsoup-2.4: Update from 2.42.1 to 2.43.1

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu --- .../libsoup/{libsoup-2.4_2.42.1.bb => libsoup-2.4_2.43.1.bb} |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-support/libsoup/{libsoup-2.4_2.42.1.bb => libsoup-2.4_2.43.1.bb} (85%) diff --git a/meta/recipes-support/libsoup/lib

[OE-core] [PATCH 3/7] libtasn1: Updated from 2.14 to 3.3

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu --- .../recipes-support/gnutls/{libtasn1_2.14.bb => libtasn1_3.3.bb} |6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) rename meta/recipes-support/gnutls/{libtasn1_2.14.bb => libtasn1_3.3.bb} (81%) diff --git a/meta/recipes-support/gnutls/libtasn1_2.14.bb

[OE-core] [PATCH 2/7] freetype: Updated from 2.4.11 to 2.4.12

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu freetype: no-hardcode.patch does not apply to 2.4.12 version because hardcode_libdir_flag_spec variable is set to '' in 2.4.12 --- .../{freetype-2.4.11 => freetype-2.4.12}/no-hardcode.patch |0 .../freetype/{freetype_2.4.11.bb => freetype_2.4.12.bb} | 11 +++

[OE-core] [PATCH 1/7] apt: Updated from 0.9.7.8 to 0.9.8.1

2013-05-24 Thread Ionut Radu
Signed-off-by: Ionut Radu --- .../disable-configure-in-makefile.patch|0 .../fix-gcc-4.6-null-not-defined.patch |0 .../apt/{apt-0.9.7.8 => apt-0.9.8.1}/makerace.patch|0 .../apt/{apt-0.9.7.8 => apt-0.9.8.1}/no-ko

[OE-core] [PATCH 0/7] Package Upgrades

2013-05-24 Thread Ionut Radu
test: I've tested patches with autobuilder on all 5 architectures (nightly-x86, nightly-x86-64, nightly-arm, nightly-ppc, nightly-mips). A have also tested locally on all architectures and verified that all images successfully build and graphics is correcly displayed. For each package individuall

Re: [OE-core] [PATCH] libpam: fix multilib packaging issue for pam-plugins

2013-05-24 Thread Paul Eggleton
On Thursday 23 May 2013 09:40:51 Mark Hatle wrote: > On 5/23/13 3:01 AM, Ming Liu wrote: > > libpam might miss ABI specific dependencies for pam-plugins-*, for RPM > > uses > > generic names to check the packages depending on it and doesn't consider > > the arch, which will lead to packaging issues

Re: [OE-core] Query for multilib support in Yocto

2013-05-24 Thread Luo Zhenhua-B19537
Hi Mark, Thanks for your comments. > -Original Message- > From: openembedded-core-boun...@lists.openembedded.org > [mailto:openembedded-core-boun...@lists.openembedded.org] On Behalf Of Mark > Hatle > Sent: Thursday, May 23, 2013 10:47 PM > > On 5/23/13 3:46 AM, Luo Zhenhua-B19537 wrot

[OE-core] [PATCH 0/5] Low-hanging updates

2013-05-24 Thread Marko Lindqvist
This is set of simple package updates. HarfBuzz update drops avoid_double_version_h.patch rather than tries to update it. The code in question has changed so that I think original problem addressed by the patch is no longer present, and patch instead would remove the only remaining installation of