Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-26 Thread Ola x Nilsson
You now have nonstandard library names, which will confuse the package-split and automatic library dependency checker. As a result, a dependency is added from the applibrary on app-dev. But depending on -dev packages is a no-no, hence the QA error. I have no idea whether the renameing of the l

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-08 Thread Alexander Kanavin
On Thu, 8 Aug 2019 at 10:57, JH wrote: > Hi Alex, thanks for your response and kind help. I finally fixed it by > adding a do_package_qa() in my bb file. What will be the consequence > about it? > The consequences are that you have removed all of the standard quality checks on your recipe, so it

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-08 Thread JH
Hi Alex, thanks for your response and kind help. I finally fixed it by adding a do_package_qa() in my bb file. What will be the consequence about it? Thank you. Kind regards, - jh On 8/6/19, Alexander Kanavin wrote: > The right way out of this is to fix the issue: your main package depends on

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-06 Thread Alexander Kanavin
The right way out of this is to fix the issue: your main package depends on the -dev package, and so will always pull it into the target image. I am not telling you how to disable the check, as you're merely hiding a bug that way :) If you provide ls -lR of ${D}, we might be able to understand wha

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-06 Thread JH
Thanks Alex, here is the error in my application build, it used working well: ERROR: app_library-1.0.0-0 do_package_qa: QA Issue: app_library rdepends on app_library-dev [dev-deps] ERROR: app_library-1.0.0-0 do_package_qa: QA run found fatal errors. Please consider fixing them. ERROR: app_library-

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-06 Thread Alexander Kanavin
It may help if you copy-paste the exact error you are getting, and the content of the directory where it happens. Alex On Tue, 6 Aug 2019 at 13:09, JH wrote: > On 8/6/19, Alexander Kanavin wrote: > > You don't; package_qa is reporting real issues with your packaging, so > you > > need to addre

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-06 Thread JH
On 8/6/19, Alexander Kanavin wrote: > You don't; package_qa is reporting real issues with your packaging, so you > need to address them. Well, my first issue is I need to build it, the document said it can be disabled, but did not say how, appreciate anyone helps how to disable it. Thank you >

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-06 Thread Alexander Kanavin
You don't; package_qa is reporting real issues with your packaging, so you need to address them. Alex On Tue, 6 Aug 2019 at 10:40, JH wrote: > Hi, > > According to the latest document: > > "Package QA checks are now performed during a new do_package_qa task > rather than being part of the do_pa

Re: [yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-06 Thread JH
Hi, According to the latest document: "Package QA checks are now performed during a new do_package_qa task rather than being part of the do_package task. This allows more parallel execution. This change is unlikely to be an issue except for highly customized recipes that disable packaging tasks t

[yocto] QA issue applibrary rdepends on app-dev [dev-deps], where is the do_package_qa?

2019-08-04 Thread JH
Hi, I was running my Yocto build fine until I had a minor change to move libapplibrary.so to libapplibrry.so.${PN} and made libapplibrary.so to a symbolic link of libapplibrry.so.${PN}. Now it got an error of QA issue applibrary rdepends on app-dev [dev-deps], QA run found fatal errors, please con