Re: [oe] [meta-oe][krogoth][PATCH] syslog-ng: expand service file @variables@ earlier

2016-12-13 Thread Denys Dmytriyenko
On Mon, Dec 12, 2016 at 07:55:40PM -0800, akuster808 wrote: > Denys, > > > > On 12/07/2016 09:40 AM, Denys Dmytriyenko wrote: > >On Fri, Nov 18, 2016 at 07:25:48AM -0800, akuster808 wrote: > >> > >>On 11/16/2016 07:58 PM, Denys Dmytriyenko wrote: > >>>On Mon, Nov 14, 2016 at 02:09:40PM -0500, De

[oe] [meta-oe][PATCH v2 4/8] opencv: Add support for OpenJDK

2016-12-13 Thread Ricardo Ribalda Delgado
Add support for OpenJDK8 and Oracle-java Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.1.bb

[oe] [meta-oe][PATCH v2 6/8] opencv: Add missing DEPEND for opencl PKGCFG

2016-12-13 Thread Ricardo Ribalda Delgado
OpenCL headers are not enough, we also require a valid icd (.so) Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/ope

[oe] [meta-oe][PATCH v2 8/8] opencv: Merge dbg packages and Fix QA Issues

2016-12-13 Thread Ricardo Ribalda Delgado
The presence of more than on -dbg file made completely unusable the rest, and there is no big win by having more than one. Also this qa issue is fixed: QA Issue: opencv-samples-dbg: found library in wrong location: /usr/share/OpenCV/java/.debug/libopencv_java310.so [libdir] Signed-off-by: Ricard

[oe] [meta-oe][PATCH v2 3/8] opencv: Add missing depends

2016-12-13 Thread Ricardo Ribalda Delgado
contrib/modules/sfm depends on glog, gflags and libeigen. The CmakeList does not seem to provide a way to disable/enable its build. Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/

[oe] [meta-oe][PATCH v2 5/8] opencv: Add support for python3

2016-12-13 Thread Ricardo Ribalda Delgado
New PACKAGECONFIG options: python2 and python3. Python3 selectec by default, because it is almost 2017 ;). Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 24 +--- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/meta-oe

[oe] [meta-oe][PATCH v2 7/8] opencv: Add new PACKAGECONFIG dnn

2016-12-13 Thread Ricardo Ribalda Delgado
The dnn module depends on a linear algebra libray such as lapack. Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.1.

[oe] [meta-oe][PATCH v2 2/8] opencv: Metapkg should not rdepend on -staticdev

2016-12-13 Thread Ricardo Ribalda Delgado
Otherwise the running dependencies will grow considerably. Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/op

[oe] [meta-oe][PATCH v2 1/8] opencv: Update repository location

2016-12-13 Thread Ricardo Ribalda Delgado
All opencv repos are now on github.com/opencv Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.

Re: [oe] bitbake dependency question

2016-12-13 Thread Robert Cagle
Hi Paul, Thanks for the response. > Another way to handle this kind of situation with plugins is to simply build > them all with all dependencies, and have the runtime design such that it's > fully flexible as to which plugins are installed - then you just make the > choice in the image. (Perhaps

Re: [oe] [meta-oe][PATCH 7/8] opencv: Add new PACKAGECONFIG lapack

2016-12-13 Thread Ricardo Ribalda Delgado
Hi Martin Sorry, I meant DEPENDS. I will take a look for checking how difficult is to add the WITH params, with some luck it is accepted upstream. Regards! On Tue, Dec 13, 2016 at 11:37 PM, Martin Jansa wrote: > Definitely not RDEPENDS (that would make it even worse by not ensuring that > lapac

Re: [oe] [meta-oe][PATCH 7/8] opencv: Add new PACKAGECONFIG lapack

2016-12-13 Thread Martin Jansa
Definitely not RDEPENDS (that would make it even worse by not ensuring that lapack is staged soon enough to be detected during opencv configure). Best way is to patch the configure to support WITH parameters like for other optional dependencies. On Tue, Dec 13, 2016 at 10:30 PM, Ricardo Ribalda D

Re: [oe] [meta-oe][PATCH 7/8] opencv: Add new PACKAGECONFIG lapack

2016-12-13 Thread Ricardo Ribalda Delgado
Hi Khem On Tue, Dec 13, 2016 at 10:25 PM, Khem Raj wrote: > > not that this problem does not exist right now but this is a dangling > dependency > what happens if I dont have lapack in PACKAGECONFIG but lapack > package is staged > already may be via other deps > What is the proper way to t

Re: [oe] [meta-oe][PATCH 7/8] opencv: Add new PACKAGECONFIG lapack

2016-12-13 Thread Khem Raj
On Tue, Dec 13, 2016 at 1:04 PM, Ricardo Ribalda Delgado wrote: > If lapack is detected there are some extra OpenCV modules that can be > built. Unfortunately they cannot be selected with -DWIDH ... > > Signed-off-by: Ricardo Ribalda Delgado > --- > meta-oe/recipes-support/opencv/opencv_3.1.bb |

[oe] [meta-oe][PATCH 7/8] opencv: Add new PACKAGECONFIG lapack

2016-12-13 Thread Ricardo Ribalda Delgado
If lapack is detected there are some extra OpenCV modules that can be built. Unfortunately they cannot be selected with -DWIDH ... Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/o

[oe] [meta-oe][PATCH 8/8] opencv: Merge dbg packages and Fix QA Issues

2016-12-13 Thread Ricardo Ribalda Delgado
The presence of more than on -dbg file made completely unusable the rest, and there is no big win by having more than one. Also this qa issue is fixed: QA Issue: opencv-samples-dbg: found library in wrong location: /usr/share/OpenCV/java/.debug/libopencv_java310.so [libdir] Signed-off-by: Ricard

[oe] [meta-oe][PATCH 5/8] opencv: Add support for python3

2016-12-13 Thread Ricardo Ribalda Delgado
New PACKAGECONFIG options: python2 and python3. Python3 selectec by default, because it is almost 2017 ;). Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 24 +--- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/meta-oe

[oe] [meta-oe][PATCH 6/8] opencv: Add missing DEPEND for opencl PKGCFG

2016-12-13 Thread Ricardo Ribalda Delgado
OpenCL headers are not enough, we also require a valid icd (.so) Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/ope

[oe] [meta-oe][PATCH 4/8] opencv: Add support for OpenJDK

2016-12-13 Thread Ricardo Ribalda Delgado
Add support for OpenJDK8 and Oracle-java Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.1.bb

[oe] [meta-oe][PATCH 2/8] opencv: Metapkg should not rdepend on -staticdev

2016-12-13 Thread Ricardo Ribalda Delgado
Otherwise the running dependencies will grow considerably. Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/op

[oe] [meta-oe][PATCH 3/8] opencv: Add missing depends

2016-12-13 Thread Ricardo Ribalda Delgado
contrib/modules/sfm depends on glog, gflags and libeigen. The CmakeList does not seem to provide a way to disable/enable its build. Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/

[oe] [meta-oe][PATCH 1/8] opencv: Update repository location

2016-12-13 Thread Ricardo Ribalda Delgado
All opencv repos are now on github.com/opencv Signed-off-by: Ricardo Ribalda Delgado --- meta-oe/recipes-support/opencv/opencv_3.1.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.1.bb b/meta-oe/recipes-support/opencv/opencv_3.

Re: [oe] bitbake dependency question

2016-12-13 Thread Paul Eggleton
Hi Robert, On Tue, 13 Dec 2016 04:47:31 Robert Cagle wrote: > Robert Yang wrote: > > Try something like: > > In recipeD.bb: > > PLUGIN_RECIPES ??= "A" (or b, c) > > DEPENDS = "${PLUGIN_RECIPES} other..." > > > > In local.conf: > > PLUGIN_RECIPES = "A" (or b, c). > > Hi Robert, > Thanks for the r

[oe] OpenJDK 8 is failing to configure ( dylan yocto)

2016-12-13 Thread Srinivasa Rao Ragolu
Hi All, I have taken openjdk-8_72b05 from yocto and tried to build . But somehow autotools configure could not able to find configure script in common/autoconf directory and failing at configure stage. Please provide your inputs to resolve this issue. Log data follows: | DEBUG: Executing python f

[oe] [meta-oe][PATCH] protobuf: switch from mips16 to mips32 due to in-line assembler

2016-12-13 Thread André Draszik
From: Lukasz Nowak | mipsel-poky-linux-musl-libtool: compile: mipsel-poky-linux-musl-g++ -mel -mabi=32 -msoft-float -march=mips32r2 -mips16 -minterlink-compressed -mtune=24kec -mdsp --sysroot= -DHAVE_CONFIG_H -I. -I../../git/src -I.. -Wall -Wwrite-strings -Woverloaded-virtual -Wno-sign-compar