[yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Anooj Gopi
Yes I am trying to track down the recipe from the rpm file. In my project yocto builds the rpm package "nativesdk-libqt5core-dev-5.2.1-r1.i686_nativesdk.rpm" (by https://github.com/meta-qt5/meta-qt5) but it is not included in my sdk sysroot image. So I would like to see how I could include this int

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Bharath Chandra
Hi Anooj, I guess you are looking at a wrong version of the recipe file, you have to look into version number 5.2.1 and revision r1 as your package name is suggesting but the link which you have mentioned is for 5.3.1 . Kindly, have a look into correct version number of recipe file and if you do n

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Anooj Gopi
Oh sorry the link I sent was wrong. The correct one is https://github.com/meta-qt5/meta-qt5/blob/daisy/recipes-qt/qt5/nativesdk-qtbase_5.2.1.bb Manually searching the bb/inc file did not help until this point. Now I enabled the build history (INHERIT += "buildhistory" BUILDHISTORY_FEATURES = "ima

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Burton, Ross
On 22 July 2014 17:19, Anooj Gopi wrote: > But I'm still not able to find out where in yocto PKG variable is configured > (which changes this rpm file name from the default one). Packages containing libraries get renamed through debian.bbclass. I'm not sure why you need to know the recipe name f

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Bharath Chandra
Hi, you can find it under .inc file here https://github.com/meta-qt5/meta-qt5/blob/daisy/recipes-qt/qt5/nativesdk-qtbase.inc PACKAGES = "${PN}-tools-dbg *${PN}-tools-dev* ${PN}-tools-staticdev ${PN}-tools" Thanks, Bharath On Tue, Jul 22, 2014 at 11:19 AM, Anooj Gopi wrote: > > Oh sorry the

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Anooj Gopi
Hello Bharath, This is already known to me. The confusion mainly here was because of the name of the rpm package. From the recipe expected name was "nativesdk-qtbase-tools-dev-5.2.1-r1.i686_nativesdk.rpm" but generated package name is "nativesdk-libqt5core-dev-5.2.1-r1.i686_nativesdk.rpm" which co

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Anooj Gopi
This package (nativesdk-libqt5core-dev-5.2.1-r1.i686_nativesdk.rpm) is not installed in my sdk sysroot. So I need to add it to TOOLCHAIN_HOST_TASK and see if it gets installed into my sdk sysroot But it fails with below error: Error: nativesdk-qtbase-tools-dev not found in the base feeds (i686_nat

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-22 Thread Anooj Gopi
I would like to generalize my last question A yocto PACKAGE, generates an rpm package, with are different names due to an inherited class setting "PKG " variable. When I try to add such a package to "TOOLCHAIN_HOST_TAS

Re: [yocto] Fwd: How to find the bb file from package name

2014-07-23 Thread Barros Pena, Belen
On 22/07/2014 18:08, "Anooj Gopi" wrote: >Hello Bharath, > >This is already known to me. The confusion mainly here was because of the >name of the rpm package. From the recipe expected name was >"nativesdk-qtbase-tools-dev-5.2.1-r1.i686_nativesdk.rpm" but generated >package name is "nativesdk-l