Re: [yocto] RDEPENDS fails to find an existing package

2012-02-16 Thread Khem Raj
On Thursday, February 16, 2012, Autif Khan wrote: >> Hello, >> >> On Thu, 2012-02-16 at 10:26 +0530, Joshua Immanuel wrote: >>> Can you please explain little bit more on what INSANE_SKIP_${PN} = >>> "dev-so" does. I don't find any documentation on it. >> >> I guess, it suppresses the warnings stat

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-16 Thread Autif Khan
> Hello, > > On Thu, 2012-02-16 at 10:26 +0530, Joshua Immanuel wrote: >> Can you please explain little bit more on what INSANE_SKIP_${PN} = >> "dev-so" does. I don't find any documentation on it. > > I guess, it suppresses the warnings stating that an non-dev package > contains symlink. This is th

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-15 Thread Joshua Immanuel
Hello, On Thu, 2012-02-16 at 10:26 +0530, Joshua Immanuel wrote: > Can you please explain little bit more on what INSANE_SKIP_${PN} = > "dev-so" does. I don't find any documentation on it. I guess, it suppresses the warnings stating that an non-dev package contains symlink. This is the warning I

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-15 Thread Joshua Immanuel
Hello Autif, On Wed, 2012-02-15 at 18:23 -0500, Autif Khan wrote: > > Adding FILES_${PN} = "${libdir}/lib*.so" made bitbake to create an > > non-empty libharu package thereby fixing the problem. > > Heads up - if you are using 1.2 M2 - you may have to add the following > line in your recipe: > >

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-15 Thread Autif Khan
> Hello Khem Raj, > > On Wed, 2012-02-15 at 07:28 -0800, Khem Raj wrote: >> the .a files are going into -static package and I guess >> there is .so and not .so.X which means .so goes into >> -dev package and hence your libharu package is empty >> so you have to redirect the files into correct packa

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-15 Thread Joshua Immanuel
Hello Khem Raj, On Wed, 2012-02-15 at 07:28 -0800, Khem Raj wrote: > the .a files are going into -static package and I guess > there is .so and not .so.X which means .so goes into > -dev package and hence your libharu package is empty > so you have to redirect the files into correct package > with

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-15 Thread Khem Raj
On Tue, Feb 14, 2012 at 11:23 PM, Joshua Immanuel wrote: > its latest version libharu_2.2.1.bb. The generated .so, .la and .a files > for this are in the name 'libhpdf'. (I guess this will not cause any > problem.) These files are found in ${WORKDIR}/image/usr/lib > > My custom-image RDEPENDS for

Re: [yocto] RDEPENDS fails to find an existing package

2012-02-15 Thread Joshua Immanuel
Hello all, On Wed, 2012-02-15 at 12:53 +0530, Joshua Immanuel wrote: > While building the custom-image bitbake complains > > | error: Failed dependencies: > | libharu is needed by task-custom-hdb-1.0-r3.ekino > > How do I fix this issue? On further digging (log.d

[yocto] RDEPENDS fails to find an existing package

2012-02-14 Thread Joshua Immanuel
Hello all, I've been trying to package libharu for yocto. So, wrote a recipe for its latest version libharu_2.2.1.bb. The generated .so, .la and .a files for this are in the name 'libhpdf'. (I guess this will not cause any problem.) These files are found in ${WORKDIR}/image/usr/lib My cust