Re: [oe] [meta-oe][PATCH] stunnel: Update to 5.10

2015-02-16 Thread Martin Jansa
On Wed, Feb 11, 2015 at 11:47:57AM +0100, Sven Ebenfeld wrote: Signed-off-by: Sven Ebenfeld sven.ebenf...@gmail.com --- .../recipes-support/stunnel/stunnel_4.56.bb| 17 - .../recipes-support/stunnel/stunnel_5.10.bb| 18 ++ 2 files

Re: [oe] [meta-oe][PATCH] stunnel: Update to 5.10

2015-02-16 Thread Martin Jansa
On Fri, Feb 13, 2015 at 04:11:13PM +0100, Sven Ebenfeld wrote: If you accept this patch, can you as well backport it to dizzy? No, version upgrades aren't usually backported to release branches, unless there is very good reason to do that. Am 11.02.2015 um 11:47 schrieb Sven Ebenfeld:

[oe] [meta-oe][PATCH v2] rsyslog: fix name of syslogd ua group

2015-02-16 Thread Steffen Sledz
All the other syslogd implementations use 'syslogd' as update alternatives group name. So rsyslogd should use this too. Signed-off-by: Steffen Sledz sl...@dresearch-fe.de --- meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git

[oe] [meta-qt5][PATCH] qt5-plugin-generic-vboxtouch: fix unpackaged cmake file

2015-02-16 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- recipes-qt/qt5/qt5-plugin-generic-vboxtouch_git.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipes-qt/qt5/qt5-plugin-generic-vboxtouch_git.bb b/recipes-qt/qt5/qt5-plugin-generic-vboxtouch_git.bb index

[oe] [meta-java][PATCH 0/7] Allow build for multiple ARCH in the same builddir

2015-02-16 Thread Max Krummenacher
Building a recipe which provides packages for allarch and ${TUNE_PKGARCH} fails if one builds in the same build directory for different TUNE_PKGARCHs. An example is rhino which fails as follows when one builds first for armv7at2hf-vfp and then for armv7at2hf-vfp-neon. ERROR: The recipe rhino

[oe] [meta-java][PATCH 0/7] Allow build for multiple ARCH in the same builddir

2015-02-16 Thread Max Krummenacher
Building a recipe which provides packages for allarch and ${TUNE_PKGARCH} fails if one builds in the same build directory for different TUNE_PKGARCHs. An example is rhino which fails as follows when one builds first for armv7at2hf-vfp and then for armv7at2hf-vfp-neon. ERROR: The recipe rhino

[oe] [meta-java][PATCH 2/7] licence: add missing LIC_FILES_CHKSUM

2015-02-16 Thread Max Krummenacher
While at it change the LICENSE string to the oe one if applicable. e.g. AL-2.0 - Apache-2.0 Signed-off-by: Max Krummenacher max.oss...@gmail.com --- recipes-core/jakarta-commons/commons-cli_1.1.bb | 1 + recipes-core/jakarta-commons/commons-codec_1.3.bb| 1 +

[oe] [meta-java][PATCH 1/7] cleanup whitespace in tasks

2015-02-16 Thread Max Krummenacher
Indent with 4 spaces in task definitions. Signed-off-by: Max Krummenacher max.oss...@gmail.com --- recipes-core/jakarta-commons/jakarta-commons.inc | 66 recipes-core/xml-commons/jaxme_0.5.2.bb | 39 +++--- recipes-core/xml-commons/xom_1.1.bb

[oe] [meta-java][PATCH 4/7] java-library: inherit allarch

2015-02-16 Thread Max Krummenacher
Use the allarch class to make every packages in the 'all' ARCH. Recipes inheriting java-library which build additional packages which don't belong in to all ARCH must manually setting PACKAGE_ARCH after inheritting java-library. This fixes the following error when building e.g. rhino for a second

[oe] [meta-java][PATCH 3/7] rxtx: use autotools-brokensep

2015-02-16 Thread Max Krummenacher
Signed-off-by: Max Krummenacher max.oss...@gmail.com --- recipes-extended/rxtx/rxtx_2.2.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/rxtx/rxtx_2.2.0.bb b/recipes-extended/rxtx/rxtx_2.2.0.bb index 28603e3..85f55c0 100644 ---

[oe] [OE-core][RFC] openjdk-7: enable xawt

2015-02-16 Thread Max Krummenacher
Hi all Currently xawt is disabled when building openjdk-7-jre for all architectures. I'd like to reenable this. The attached patch works fine for armv7. My guess is that the patches which disabled xawt were applied because of qemu failing to executed and thus making the whole build fail. I guess

[oe] [OE-core][RFC] openjdk-7: enable xawt

2015-02-16 Thread Max Krummenacher
The build of xawt has been disabled as its build seemed to fail during a qemu call to generate a file with information on variable sizes. qemu is now called with the relevant path into sysroot and thus works. This patch enables xawt again. Signed-off-by: Max Krummenacher max.oss...@gmail.com

[oe] [meta-java][PATCH 6/7] adding a README.nonworking

2015-02-16 Thread Max Krummenacher
While testing commit 'java-library: inherit allarch' I found some recipes throwing errors in do_compile. Document this in README.nonworking. Signed-off-by: Max Krummenacher max.oss...@gmail.com --- README.nonworking | 6 ++ 1 file changed, 6 insertions(+) create mode 100644

[oe] [meta-java][PATCH 5/7] antlr: fix override for native build

2015-02-16 Thread Max Krummenacher
The override virtclass_native has been deprecated and removed from the buildsystem, use class-native instead. While at it fix whitespace issues. Signed-off-by: Max Krummenacher max.oss...@gmail.com --- recipes-core/antlr/antlr_2.7.7.bb | 18 +- 1 file changed, 9 insertions(+), 9

Re: [oe] [meta-java][PATCH 0/7] Allow build for multiple ARCH in the same builddir

2015-02-16 Thread Otavio Salvador
Hello Max, First I want to Thank you for all the hard work you've been putting in the meta-java lately. This is an important step on the right direction and fixes several things a lot the process... On Mon, Feb 16, 2015 at 7:55 PM, Max Krummenacher max.oss...@gmail.com wrote: Building a recipe

Re: [oe] Question about RDEPENDS and RRECOMMENDS

2015-02-16 Thread Otavio Salvador
On Mon, Feb 16, 2015 at 9:12 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Sunday 15 February 2015 19:34:28 Otavio Salvador wrote: On Sat, Feb 14, 2015 at 6:42 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: ... So, it would make sense to establish some sort of dependency.

Re: [oe] Question about RDEPENDS and RRECOMMENDS

2015-02-16 Thread Carlos Rafael Giani
On 02/16/2015 01:42 PM, Otavio Salvador wrote: On Mon, Feb 16, 2015 at 9:12 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Sunday 15 February 2015 19:34:28 Otavio Salvador wrote: On Sat, Feb 14, 2015 at 6:42 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: ... So, it would

Re: [oe] [meta-networking] crda-1.1.3 broken in dylan, dora, daisy and dizzy

2015-02-16 Thread Paul Eggleton
On Friday 30 January 2015 17:23:55 Paul Eggleton wrote: On Friday 30 January 2015 16:51:22 Viguera, Javier wrote: Seems that CRDA maintainers did some changes that broke the fetch of the package for all those releases. These are the URIs in the package recipe:

Re: [oe] Question about RDEPENDS and RRECOMMENDS

2015-02-16 Thread Otavio Salvador
On Mon, Feb 16, 2015 at 10:53 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: On 02/16/2015 01:42 PM, Otavio Salvador wrote: On Mon, Feb 16, 2015 at 9:12 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: ... The QA warning message could perhaps be worded more accurately - what it

Re: [oe] Question about RDEPENDS and RRECOMMENDS

2015-02-16 Thread Paul Eggleton
On Monday 16 February 2015 10:42:56 Otavio Salvador wrote: On Mon, Feb 16, 2015 at 9:12 AM, Paul Eggleton paul.eggle...@linux.intel.com wrote: On Sunday 15 February 2015 19:34:28 Otavio Salvador wrote: On Sat, Feb 14, 2015 at 6:42 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote:

Re: [oe] Question about RDEPENDS and RRECOMMENDS

2015-02-16 Thread Paul Eggleton
On Sunday 15 February 2015 19:34:28 Otavio Salvador wrote: On Sat, Feb 14, 2015 at 6:42 AM, Carlos Rafael Giani d...@pseudoterminal.org wrote: ... So, it would make sense to establish some sort of dependency. But how exactly? I thought of something like this: