Re: [yocto] yocto package naming

2016-01-06 Thread Alejandro del Castillo
On 12/22/2015 03:40 AM, Simon Ruetzler wrote: > Hello, > I want to create different packages from one recipe. > > This is working except for one package. > I addes this package with > PACKAGES += " ${PN}-demo" > and I expected that it is named with the recipe name and demo. In this case > rumo-c

Re: [yocto] yocto package naming

2015-12-22 Thread Simon Ruetzler
Hello, thanks for the help. I think the solution is as you mention to put the lib in an extra package. Regards Simon Am 22.12.2015 um 12:03 schrieb Ioan-Adrian Ratiu: On Tue, 22 Dec 2015 11:45:33 +0100 Simon Ruetzler wrote: Hello, the demo package is the first package. I clear the list with

Re: [yocto] yocto package naming

2015-12-22 Thread Burton, Ross
On 22 December 2015 at 12:03, Simon Ruetzler wrote: > I added INHERIT_remove = "debian" to my local.conf but it's still the same. > Where is the debian.bbclass enabled? I couldn't find it. It this the > default? > INHERIT_DISTRO is where it comes from. If you have an old release _remove won't w

Re: [yocto] yocto package naming

2015-12-22 Thread Simon Ruetzler
Hello, I added INHERIT_remove = "debian" to my local.conf but it's still the same. Where is the debian.bbclass enabled? I couldn't find it. It this the default? Regards Simon Am 22.12.2015 um 12:12 schrieb Burton, Ross: On 22 December 2015 at 09:40, Simon Ruetzler mailto:sruetz...@arigo-so

Re: [yocto] yocto package naming

2015-12-22 Thread Ioan-Adrian Ratiu
Hi On Tue, 22 Dec 2015 10:40:18 +0100 Simon Ruetzler wrote: > Hello, > I want to create different packages from one recipe. > > This is working except for one package. > I addes this package with > PACKAGES += " ${PN}-demo" > and I expected that it is named with the recipe name and demo. In thi

Re: [yocto] yocto package naming

2015-12-22 Thread Burton, Ross
On 22 December 2015 at 09:40, Simon Ruetzler wrote: > Why is the demo package created with the libscom name? How can I disable > this? > Because the default configuration enables debian.bbclass, which renames packages if they contain just a library to be the soname of the library. If you don't

Re: [yocto] yocto package naming

2015-12-22 Thread Ioan-Adrian Ratiu
On Tue, 22 Dec 2015 11:45:33 +0100 Simon Ruetzler wrote: > Hello, > the demo package is the first package. I clear the list with PACKAGES = "" > They package should contain this files, this is not the problem. > The problem is the resulting package name. The name should be > rumo-cpp-demo-1.0rc.

Re: [yocto] yocto package naming

2015-12-22 Thread Simon Ruetzler
Hello, the demo package is the first package. I clear the list with PACKAGES = "" They package should contain this files, this is not the problem. The problem is the resulting package name. The name should be rumo-cpp-demo-1.0rc... and not libscom1-1.0-rc... Regards Simon Am 22.12.2015 um 11:38

[yocto] yocto package naming

2015-12-22 Thread Simon Ruetzler
Hello, I want to create different packages from one recipe. This is working except for one package. I addes this package with PACKAGES += " ${PN}-demo" and I expected that it is named with the recipe name and demo. In this case rumo-cpp-demo-1.0-rc... But the name is libscom1-1.0-rc.. The demo