All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH] meta-oe: recipes-graphics: add libvncserver recipe
@ 2015-09-30  7:20 Ioan-Adrian Ratiu
  2015-10-08 10:08 ` Martin Jansa
  2015-10-09  6:58 ` [meta-oe][PATCH v2] " Ioan-Adrian Ratiu
  0 siblings, 2 replies; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-09-30  7:20 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 .../libvncserver/libvncserver_0.9.10.bb              | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb

diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
new file mode 100644
index 0000000..841506a
--- /dev/null
+++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "library for easy implementation of a RDP/VNC server"
+HOMEPAGE = "https://libvnc.github.io"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
+
+DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
+RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
+
+inherit autotools pkgconfig
+
+SRC_URI  = "https://github.com/LibVNC/libvncserver/archive/LibVNCServer-0.9.10.tar.gz"
+
+SRC_URI[md5sum] = "e1b888fae717b06896f8aec100163d27"
+SRC_URI[sha256sum] = "ed10819a5bfbf269969f97f075939cc38273cc1b6d28bccfb0999fba489411f7"
+
+S = "${WORKDIR}/${PN}-LibVNCServer-${PV}"
+
+EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH] meta-oe: recipes-graphics: add libvncserver recipe
  2015-09-30  7:20 [meta-oe][PATCH] meta-oe: recipes-graphics: add libvncserver recipe Ioan-Adrian Ratiu
@ 2015-10-08 10:08 ` Martin Jansa
  2015-10-09  6:58 ` [meta-oe][PATCH v2] " Ioan-Adrian Ratiu
  1 sibling, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2015-10-08 10:08 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1909 bytes --]

On Wed, Sep 30, 2015 at 10:20:00AM +0300, Ioan-Adrian Ratiu wrote:
> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> ---
>  .../libvncserver/libvncserver_0.9.10.bb              | 20 ++++++++++++++++++++
>  1 file changed, 20 insertions(+)
>  create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> 
> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> new file mode 100644
> index 0000000..841506a
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> @@ -0,0 +1,20 @@
> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
> +HOMEPAGE = "https://libvnc.github.io"
> +SECTION = "libs"
> +PRIORITY = "optional"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> +
> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"

It conflicts with x11vnc:
http://errors.yoctoproject.org/Errors/Details/20233/

> +
> +inherit autotools pkgconfig
> +
> +SRC_URI  = "https://github.com/LibVNC/libvncserver/archive/LibVNCServer-0.9.10.tar.gz"

github archives don't have stable SRC_URI checksums, because they can be
re-generated from time to time, use git directly.

> +SRC_URI[md5sum] = "e1b888fae717b06896f8aec100163d27"
> +SRC_URI[sha256sum] = "ed10819a5bfbf269969f97f075939cc38273cc1b6d28bccfb0999fba489411f7"
> +
> +S = "${WORKDIR}/${PN}-LibVNCServer-${PV}"
> +
> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
> -- 
> 2.1.4
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-09-30  7:20 [meta-oe][PATCH] meta-oe: recipes-graphics: add libvncserver recipe Ioan-Adrian Ratiu
  2015-10-08 10:08 ` Martin Jansa
@ 2015-10-09  6:58 ` Ioan-Adrian Ratiu
  2015-10-13 10:53   ` Martin Jansa
  1 sibling, 1 reply; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-09  6:58 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
---
 .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb

diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
new file mode 100644
index 0000000..afa303c
--- /dev/null
+++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
@@ -0,0 +1,19 @@
+DESCRIPTION = "library for easy implementation of a RDP/VNC server"
+HOMEPAGE = "https://libvnc.github.io"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
+
+DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
+RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
+
+RCONFLICTS_${PN} = "x11vnc"
+
+inherit autotools pkgconfig
+
+SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
+
+S = "${WORKDIR}/git"
+
+EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-09  6:58 ` [meta-oe][PATCH v2] " Ioan-Adrian Ratiu
@ 2015-10-13 10:53   ` Martin Jansa
  2015-10-13 12:40     ` Ioan-Adrian Ratiu
  0 siblings, 1 reply; 16+ messages in thread
From: Martin Jansa @ 2015-10-13 10:53 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1886 bytes --]

On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> ---
>  .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
>  create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> 
> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> new file mode 100644
> index 0000000..afa303c
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> @@ -0,0 +1,19 @@
> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
> +HOMEPAGE = "https://libvnc.github.io"
> +SECTION = "libs"
> +PRIORITY = "optional"
> +LICENSE = "GPLv2"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> +
> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
> +
> +RCONFLICTS_${PN} = "x11vnc"

This isn't enough to resolve conflicts with x11vnc in sysroot, this only
prevent installing both packages in the same image.

> +
> +inherit autotools pkgconfig
> +
> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"

Set SRCREV matching with this tag, otherwise bitbake will always use git
ls-remote to convert tag name to git SHA, which won't work for builds
from premirror (possibly without access to network)

> +
> +S = "${WORKDIR}/git"
> +
> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
> -- 
> 2.1.4
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-13 10:53   ` Martin Jansa
@ 2015-10-13 12:40     ` Ioan-Adrian Ratiu
  2015-10-13 13:08       ` Martin Jansa
  0 siblings, 1 reply; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-13 12:40 UTC (permalink / raw)
  To: openembedded-devel

On 13.10.2015 13:53, Martin Jansa wrote:
> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
>> ---
>>   .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
>>   1 file changed, 19 insertions(+)
>>   create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>
>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>> new file mode 100644
>> index 0000000..afa303c
>> --- /dev/null
>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>> @@ -0,0 +1,19 @@
>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
>> +HOMEPAGE = "https://libvnc.github.io"
>> +SECTION = "libs"
>> +PRIORITY = "optional"
>> +LICENSE = "GPLv2"
>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
>> +
>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
>> +
>> +RCONFLICTS_${PN} = "x11vnc"
>
> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
> prevent installing both packages in the same image.
>
>> +
>> +inherit autotools pkgconfig
>> +
>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
>
> Set SRCREV matching with this tag, otherwise bitbake will always use git
> ls-remote to convert tag name to git SHA, which won't work for builds
> from premirror (possibly without access to network)
>

This is easy to fix, however the above x11vnc conflict is not and I have 
to check with upstream developers which might take awhile.

Is it ok to blacklist libvncserver in patch v3 in order to not break 
x11vnc until this is solved?

>> +
>> +S = "${WORKDIR}/git"
>> +
>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
>> --
>> 2.1.4
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>
>



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-13 12:40     ` Ioan-Adrian Ratiu
@ 2015-10-13 13:08       ` Martin Jansa
  2015-10-14 10:53         ` Ioan-Adrian Ratiu
  2015-10-14 14:06         ` Ioan-Adrian Ratiu
  0 siblings, 2 replies; 16+ messages in thread
From: Martin Jansa @ 2015-10-13 13:08 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2833 bytes --]

On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
> On 13.10.2015 13:53, Martin Jansa wrote:
> > On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
> >> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> >> ---
> >>   .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
> >>   1 file changed, 19 insertions(+)
> >>   create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>
> >> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >> new file mode 100644
> >> index 0000000..afa303c
> >> --- /dev/null
> >> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >> @@ -0,0 +1,19 @@
> >> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"

Use SUMMARY for such short description.

> >> +HOMEPAGE = "https://libvnc.github.io"
> >> +SECTION = "libs"
> >> +PRIORITY = "optional"

Drop PRIORITY, we don't use it anywhere.

> >> +LICENSE = "GPLv2"
> >> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> >> +
> >> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> >> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
> >> +
> >> +RCONFLICTS_${PN} = "x11vnc"
> >
> > This isn't enough to resolve conflicts with x11vnc in sysroot, this only
> > prevent installing both packages in the same image.
> >
> >> +
> >> +inherit autotools pkgconfig
> >> +
> >> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
> >
> > Set SRCREV matching with this tag, otherwise bitbake will always use git
> > ls-remote to convert tag name to git SHA, which won't work for builds
> > from premirror (possibly without access to network)
> >
> 
> This is easy to fix, however the above x11vnc conflict is not and I have 
> to check with upstream developers which might take awhile.
> 
> Is it ok to blacklist libvncserver in patch v3 in order to not break 
> x11vnc until this is solved?

I don't want to introduce more blacklisted recipes in meta-oe, so this
won't be merged until it's resolved.

> >> +
> >> +S = "${WORKDIR}/git"
> >> +
> >> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
> >> --
> >> 2.1.4
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> >
> >
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-13 13:08       ` Martin Jansa
@ 2015-10-14 10:53         ` Ioan-Adrian Ratiu
  2015-10-14 14:06         ` Ioan-Adrian Ratiu
  1 sibling, 0 replies; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-14 10:53 UTC (permalink / raw)
  To: openembedded-devel

On 13.10.2015 16:08, Martin Jansa wrote:
> On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
>> On 13.10.2015 13:53, Martin Jansa wrote:
>>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
>>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
>>>> ---
>>>>    .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
>>>>    1 file changed, 19 insertions(+)
>>>>    create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>
>>>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>> new file mode 100644
>>>> index 0000000..afa303c
>>>> --- /dev/null
>>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>> @@ -0,0 +1,19 @@
>>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
>
> Use SUMMARY for such short description.
>
>>>> +HOMEPAGE = "https://libvnc.github.io"
>>>> +SECTION = "libs"
>>>> +PRIORITY = "optional"
>
> Drop PRIORITY, we don't use it anywhere.
>
>>>> +LICENSE = "GPLv2"
>>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
>>>> +
>>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
>>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
>>>> +
>>>> +RCONFLICTS_${PN} = "x11vnc"
>>>
>>> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
>>> prevent installing both packages in the same image.
>>>
>>>> +
>>>> +inherit autotools pkgconfig
>>>> +
>>>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
>>>
>>> Set SRCREV matching with this tag, otherwise bitbake will always use git
>>> ls-remote to convert tag name to git SHA, which won't work for builds
>>> from premirror (possibly without access to network)
>>>
>>
>> This is easy to fix, however the above x11vnc conflict is not and I have
>> to check with upstream developers which might take awhile.
>>
>> Is it ok to blacklist libvncserver in patch v3 in order to not break
>> x11vnc until this is solved?
>
> I don't want to introduce more blacklisted recipes in meta-oe, so this
> won't be merged until it's resolved.
>

This makes sense; it's no rush to get it merged.

Again, thank you for the feedback.

>>>> +
>>>> +S = "${WORKDIR}/git"
>>>> +
>>>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
>>>> --
>>>> 2.1.4
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-devel mailing list
>>>> Openembedded-devel@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>
>>>
>>>
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>
>



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-13 13:08       ` Martin Jansa
  2015-10-14 10:53         ` Ioan-Adrian Ratiu
@ 2015-10-14 14:06         ` Ioan-Adrian Ratiu
  2015-10-14 14:16             ` [oe] " Martin Jansa
  1 sibling, 1 reply; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-14 14:06 UTC (permalink / raw)
  To: martin.jansa; +Cc: openembedded-devel

On 13.10.2015 16:08, Martin Jansa wrote:
> On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
>> On 13.10.2015 13:53, Martin Jansa wrote:
>>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
>>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
>>>> ---
>>>>    .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
>>>>    1 file changed, 19 insertions(+)
>>>>    create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>
>>>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>> new file mode 100644
>>>> index 0000000..afa303c
>>>> --- /dev/null
>>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>> @@ -0,0 +1,19 @@
>>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
>
> Use SUMMARY for such short description.
>
>>>> +HOMEPAGE = "https://libvnc.github.io"
>>>> +SECTION = "libs"
>>>> +PRIORITY = "optional"
>
> Drop PRIORITY, we don't use it anywhere.
>
>>>> +LICENSE = "GPLv2"
>>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
>>>> +
>>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
>>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
>>>> +
>>>> +RCONFLICTS_${PN} = "x11vnc"
>>>
>>> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
>>> prevent installing both packages in the same image.
>>>
>>>> +
>>>> +inherit autotools pkgconfig
>>>> +
>>>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
>>>
>>> Set SRCREV matching with this tag, otherwise bitbake will always use git
>>> ls-remote to convert tag name to git SHA, which won't work for builds
>>> from premirror (possibly without access to network)
>>>
>>
>> This is easy to fix, however the above x11vnc conflict is not and I have
>> to check with upstream developers which might take awhile.
>>
>> Is it ok to blacklist libvncserver in patch v3 in order to not break
>> x11vnc until this is solved?
>
> I don't want to introduce more blacklisted recipes in meta-oe, so this
> won't be merged until it's resolved.

Quick question: Fixing this involves adding a PACKAGECONFIG dependency 
inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.

Should I move libvncserver to oe-core, move x11vnc in meta-oe or should 
I just let them reside in separate layers even though there is this 
dependency?

>
>>>> +
>>>> +S = "${WORKDIR}/git"
>>>> +
>>>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
>>>> --
>>>> 2.1.4
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-devel mailing list
>>>> Openembedded-devel@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>
>>>
>>>
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
>
>



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-14 14:06         ` Ioan-Adrian Ratiu
@ 2015-10-14 14:16             ` Martin Jansa
  0 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2015-10-14 14:16 UTC (permalink / raw)
  To: Ioan-Adrian Ratiu; +Cc: openembedded-devel, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 4146 bytes --]

On Wed, Oct 14, 2015 at 05:06:07PM +0300, Ioan-Adrian Ratiu wrote:
> On 13.10.2015 16:08, Martin Jansa wrote:
> > On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
> >> On 13.10.2015 13:53, Martin Jansa wrote:
> >>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
> >>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> >>>> ---
> >>>>    .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
> >>>>    1 file changed, 19 insertions(+)
> >>>>    create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>>
> >>>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>> new file mode 100644
> >>>> index 0000000..afa303c
> >>>> --- /dev/null
> >>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>> @@ -0,0 +1,19 @@
> >>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
> >
> > Use SUMMARY for such short description.
> >
> >>>> +HOMEPAGE = "https://libvnc.github.io"
> >>>> +SECTION = "libs"
> >>>> +PRIORITY = "optional"
> >
> > Drop PRIORITY, we don't use it anywhere.
> >
> >>>> +LICENSE = "GPLv2"
> >>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> >>>> +
> >>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> >>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
> >>>> +
> >>>> +RCONFLICTS_${PN} = "x11vnc"
> >>>
> >>> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
> >>> prevent installing both packages in the same image.
> >>>
> >>>> +
> >>>> +inherit autotools pkgconfig
> >>>> +
> >>>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
> >>>
> >>> Set SRCREV matching with this tag, otherwise bitbake will always use git
> >>> ls-remote to convert tag name to git SHA, which won't work for builds
> >>> from premirror (possibly without access to network)
> >>>
> >>
> >> This is easy to fix, however the above x11vnc conflict is not and I have
> >> to check with upstream developers which might take awhile.
> >>
> >> Is it ok to blacklist libvncserver in patch v3 in order to not break
> >> x11vnc until this is solved?
> >
> > I don't want to introduce more blacklisted recipes in meta-oe, so this
> > won't be merged until it's resolved.
> 
> Quick question: Fixing this involves adding a PACKAGECONFIG dependency 
> inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.

If such PACKAGECONFIG can be disabled by default, then it's ok.

> Should I move libvncserver to oe-core, move x11vnc in meta-oe or should 
> I just let them reside in separate layers even though there is this 
> dependency?

oe-core (x11vnc) cannot by default depend on meta-oe (libvncserver), it
can be optional dependency, but without looking at the code my guess is
that this won't fix the issue.

Is the PACKAGECONFIG about using external libvncserver instead of
building own version inside x11vnc recipe? If my guess is right, then
oe-core will need to build own and meta-oe will need to remove such
PACKAGECONFIG in order to unblock building separate libvncserver.

If that's the case then moving libvncserver to oe-core or x11vnc to
meta-oe would be easier way forward.

Adding oe-core ML for their opinion.

Regards,
> >
> >>>> +
> >>>> +S = "${WORKDIR}/git"
> >>>> +
> >>>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
> >>>> --
> >>>> 2.1.4
> >>>>
> >>>> --
> >>>> _______________________________________________
> >>>> Openembedded-devel mailing list
> >>>> Openembedded-devel@lists.openembedded.org
> >>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >>>
> >>>
> >>>
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> >
> >
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
@ 2015-10-14 14:16             ` Martin Jansa
  0 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2015-10-14 14:16 UTC (permalink / raw)
  To: Ioan-Adrian Ratiu; +Cc: openembedded-devel, openembedded-core

[-- Attachment #1: Type: text/plain, Size: 4146 bytes --]

On Wed, Oct 14, 2015 at 05:06:07PM +0300, Ioan-Adrian Ratiu wrote:
> On 13.10.2015 16:08, Martin Jansa wrote:
> > On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
> >> On 13.10.2015 13:53, Martin Jansa wrote:
> >>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
> >>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> >>>> ---
> >>>>    .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
> >>>>    1 file changed, 19 insertions(+)
> >>>>    create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>>
> >>>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>> new file mode 100644
> >>>> index 0000000..afa303c
> >>>> --- /dev/null
> >>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>> @@ -0,0 +1,19 @@
> >>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
> >
> > Use SUMMARY for such short description.
> >
> >>>> +HOMEPAGE = "https://libvnc.github.io"
> >>>> +SECTION = "libs"
> >>>> +PRIORITY = "optional"
> >
> > Drop PRIORITY, we don't use it anywhere.
> >
> >>>> +LICENSE = "GPLv2"
> >>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> >>>> +
> >>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> >>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
> >>>> +
> >>>> +RCONFLICTS_${PN} = "x11vnc"
> >>>
> >>> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
> >>> prevent installing both packages in the same image.
> >>>
> >>>> +
> >>>> +inherit autotools pkgconfig
> >>>> +
> >>>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
> >>>
> >>> Set SRCREV matching with this tag, otherwise bitbake will always use git
> >>> ls-remote to convert tag name to git SHA, which won't work for builds
> >>> from premirror (possibly without access to network)
> >>>
> >>
> >> This is easy to fix, however the above x11vnc conflict is not and I have
> >> to check with upstream developers which might take awhile.
> >>
> >> Is it ok to blacklist libvncserver in patch v3 in order to not break
> >> x11vnc until this is solved?
> >
> > I don't want to introduce more blacklisted recipes in meta-oe, so this
> > won't be merged until it's resolved.
> 
> Quick question: Fixing this involves adding a PACKAGECONFIG dependency 
> inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.

If such PACKAGECONFIG can be disabled by default, then it's ok.

> Should I move libvncserver to oe-core, move x11vnc in meta-oe or should 
> I just let them reside in separate layers even though there is this 
> dependency?

oe-core (x11vnc) cannot by default depend on meta-oe (libvncserver), it
can be optional dependency, but without looking at the code my guess is
that this won't fix the issue.

Is the PACKAGECONFIG about using external libvncserver instead of
building own version inside x11vnc recipe? If my guess is right, then
oe-core will need to build own and meta-oe will need to remove such
PACKAGECONFIG in order to unblock building separate libvncserver.

If that's the case then moving libvncserver to oe-core or x11vnc to
meta-oe would be easier way forward.

Adding oe-core ML for their opinion.

Regards,
> >
> >>>> +
> >>>> +S = "${WORKDIR}/git"
> >>>> +
> >>>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
> >>>> --
> >>>> 2.1.4
> >>>>
> >>>> --
> >>>> _______________________________________________
> >>>> Openembedded-devel mailing list
> >>>> Openembedded-devel@lists.openembedded.org
> >>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >>>
> >>>
> >>>
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> >
> >
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-14 14:16             ` [oe] " Martin Jansa
@ 2015-10-14 14:33               ` Ioan-Adrian Ratiu
  -1 siblings, 0 replies; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-14 14:33 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel, openembedded-core

On 14.10.2015 17:16, Martin Jansa wrote:
> On Wed, Oct 14, 2015 at 05:06:07PM +0300, Ioan-Adrian Ratiu wrote:
>> On 13.10.2015 16:08, Martin Jansa wrote:
>>> On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
>>>> On 13.10.2015 13:53, Martin Jansa wrote:
>>>>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
>>>>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
>>>>>> ---
>>>>>>     .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
>>>>>>     1 file changed, 19 insertions(+)
>>>>>>     create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>>>
>>>>>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>>> new file mode 100644
>>>>>> index 0000000..afa303c
>>>>>> --- /dev/null
>>>>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>>> @@ -0,0 +1,19 @@
>>>>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
>>>
>>> Use SUMMARY for such short description.
>>>
>>>>>> +HOMEPAGE = "https://libvnc.github.io"
>>>>>> +SECTION = "libs"
>>>>>> +PRIORITY = "optional"
>>>
>>> Drop PRIORITY, we don't use it anywhere.
>>>
>>>>>> +LICENSE = "GPLv2"
>>>>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
>>>>>> +
>>>>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
>>>>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
>>>>>> +
>>>>>> +RCONFLICTS_${PN} = "x11vnc"
>>>>>
>>>>> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
>>>>> prevent installing both packages in the same image.
>>>>>
>>>>>> +
>>>>>> +inherit autotools pkgconfig
>>>>>> +
>>>>>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
>>>>>
>>>>> Set SRCREV matching with this tag, otherwise bitbake will always use git
>>>>> ls-remote to convert tag name to git SHA, which won't work for builds
>>>>> from premirror (possibly without access to network)
>>>>>
>>>>
>>>> This is easy to fix, however the above x11vnc conflict is not and I have
>>>> to check with upstream developers which might take awhile.
>>>>
>>>> Is it ok to blacklist libvncserver in patch v3 in order to not break
>>>> x11vnc until this is solved?
>>>
>>> I don't want to introduce more blacklisted recipes in meta-oe, so this
>>> won't be merged until it's resolved.
>>
>> Quick question: Fixing this involves adding a PACKAGECONFIG dependency
>> inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.
>
> If such PACKAGECONFIG can be disabled by default, then it's ok.
>
>> Should I move libvncserver to oe-core, move x11vnc in meta-oe or should
>> I just let them reside in separate layers even though there is this
>> dependency?
>
> oe-core (x11vnc) cannot by default depend on meta-oe (libvncserver), it
> can be optional dependency, but without looking at the code my guess is
> that this won't fix the issue.
>
> Is the PACKAGECONFIG about using external libvncserver instead of
> building own version inside x11vnc recipe? If my guess is right, then
> oe-core will need to build own and meta-oe will need to remove such
> PACKAGECONFIG in order to unblock building separate libvncserver.
>
> If that's the case then moving libvncserver to oe-core or x11vnc to
> meta-oe would be easier way forward.

Yes, this is correct (x11vnc's configured --with-system-libvncserver)

>
> Adding oe-core ML for their opinion.
>
> Regards,
>>>
>>>>>> +
>>>>>> +S = "${WORKDIR}/git"
>>>>>> +
>>>>>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
>>>>>> --
>>>>>> 2.1.4
>>>>>>
>>>>>> --
>>>>>> _______________________________________________
>>>>>> Openembedded-devel mailing list
>>>>>> Openembedded-devel@lists.openembedded.org
>>>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-devel mailing list
>>>> Openembedded-devel@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>
>>>
>>>
>>
>



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
@ 2015-10-14 14:33               ` Ioan-Adrian Ratiu
  0 siblings, 0 replies; 16+ messages in thread
From: Ioan-Adrian Ratiu @ 2015-10-14 14:33 UTC (permalink / raw)
  To: Martin Jansa; +Cc: openembedded-devel, openembedded-core

On 14.10.2015 17:16, Martin Jansa wrote:
> On Wed, Oct 14, 2015 at 05:06:07PM +0300, Ioan-Adrian Ratiu wrote:
>> On 13.10.2015 16:08, Martin Jansa wrote:
>>> On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
>>>> On 13.10.2015 13:53, Martin Jansa wrote:
>>>>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
>>>>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
>>>>>> ---
>>>>>>     .../libvncserver/libvncserver_0.9.10.bb               | 19 +++++++++++++++++++
>>>>>>     1 file changed, 19 insertions(+)
>>>>>>     create mode 100644 meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>>>
>>>>>> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>>> new file mode 100644
>>>>>> index 0000000..afa303c
>>>>>> --- /dev/null
>>>>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
>>>>>> @@ -0,0 +1,19 @@
>>>>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
>>>
>>> Use SUMMARY for such short description.
>>>
>>>>>> +HOMEPAGE = "https://libvnc.github.io"
>>>>>> +SECTION = "libs"
>>>>>> +PRIORITY = "optional"
>>>
>>> Drop PRIORITY, we don't use it anywhere.
>>>
>>>>>> +LICENSE = "GPLv2"
>>>>>> +LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
>>>>>> +
>>>>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
>>>>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
>>>>>> +
>>>>>> +RCONFLICTS_${PN} = "x11vnc"
>>>>>
>>>>> This isn't enough to resolve conflicts with x11vnc in sysroot, this only
>>>>> prevent installing both packages in the same image.
>>>>>
>>>>>> +
>>>>>> +inherit autotools pkgconfig
>>>>>> +
>>>>>> +SRC_URI  = "git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10"
>>>>>
>>>>> Set SRCREV matching with this tag, otherwise bitbake will always use git
>>>>> ls-remote to convert tag name to git SHA, which won't work for builds
>>>>> from premirror (possibly without access to network)
>>>>>
>>>>
>>>> This is easy to fix, however the above x11vnc conflict is not and I have
>>>> to check with upstream developers which might take awhile.
>>>>
>>>> Is it ok to blacklist libvncserver in patch v3 in order to not break
>>>> x11vnc until this is solved?
>>>
>>> I don't want to introduce more blacklisted recipes in meta-oe, so this
>>> won't be merged until it's resolved.
>>
>> Quick question: Fixing this involves adding a PACKAGECONFIG dependency
>> inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.
>
> If such PACKAGECONFIG can be disabled by default, then it's ok.
>
>> Should I move libvncserver to oe-core, move x11vnc in meta-oe or should
>> I just let them reside in separate layers even though there is this
>> dependency?
>
> oe-core (x11vnc) cannot by default depend on meta-oe (libvncserver), it
> can be optional dependency, but without looking at the code my guess is
> that this won't fix the issue.
>
> Is the PACKAGECONFIG about using external libvncserver instead of
> building own version inside x11vnc recipe? If my guess is right, then
> oe-core will need to build own and meta-oe will need to remove such
> PACKAGECONFIG in order to unblock building separate libvncserver.
>
> If that's the case then moving libvncserver to oe-core or x11vnc to
> meta-oe would be easier way forward.

Yes, this is correct (x11vnc's configured --with-system-libvncserver)

>
> Adding oe-core ML for their opinion.
>
> Regards,
>>>
>>>>>> +
>>>>>> +S = "${WORKDIR}/git"
>>>>>> +
>>>>>> +EXTRA_OEMAKE_append=" SUBDIRS='libvncserver' "
>>>>>> --
>>>>>> 2.1.4
>>>>>>
>>>>>> --
>>>>>> _______________________________________________
>>>>>> Openembedded-devel mailing list
>>>>>> Openembedded-devel@lists.openembedded.org
>>>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>>>
>>>>>
>>>>>
>>>>
>>>> --
>>>> _______________________________________________
>>>> Openembedded-devel mailing list
>>>> Openembedded-devel@lists.openembedded.org
>>>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>>
>>>
>>>
>>
>



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [OE-core] [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-14 14:33               ` [oe] " Ioan-Adrian Ratiu
@ 2015-10-14 14:41                 ` Paul Eggleton
  -1 siblings, 0 replies; 16+ messages in thread
From: Paul Eggleton @ 2015-10-14 14:41 UTC (permalink / raw)
  To: openembedded-core; +Cc: openembedded-devel

On Wednesday 14 October 2015 17:33:23 Ioan-Adrian Ratiu wrote:
> On 14.10.2015 17:16, Martin Jansa wrote:
> > On Wed, Oct 14, 2015 at 05:06:07PM +0300, Ioan-Adrian Ratiu wrote:
> >> On 13.10.2015 16:08, Martin Jansa wrote:
> >>> On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
> >>>> On 13.10.2015 13:53, Martin Jansa wrote:
> >>>>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
> >>>>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> >>>>>> ---
> >>>>>> 
> >>>>>>     .../libvncserver/libvncserver_0.9.10.bb               | 19
> >>>>>>     +++++++++++++++++++ 1 file changed, 19 insertions(+)
> >>>>>>     create mode 100644
> >>>>>>     meta-oe/recipes-
graphics/libvncserver/libvncserver_0.9.10.bb>>>>>> 
> >>>>>> diff --git
> >>>>>> a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>>>> b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb new
> >>>>>> file mode 100644
> >>>>>> index 0000000..afa303c
> >>>>>> --- /dev/null
> >>>>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>>>> @@ -0,0 +1,19 @@
> >>>>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
> >>> 
> >>> Use SUMMARY for such short description.
> >>> 
> >>>>>> +HOMEPAGE = "https://libvnc.github.io"
> >>>>>> +SECTION = "libs"
> >>>>>> +PRIORITY = "optional"
> >>> 
> >>> Drop PRIORITY, we don't use it anywhere.
> >>> 
> >>>>>> +LICENSE = "GPLv2"
> >>>>>> +LIC_FILES_CHKSUM =
> >>>>>> "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> >>>>>> +
> >>>>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> >>>>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
> >>>>>> +
> >>>>>> +RCONFLICTS_${PN} = "x11vnc"
> >>>>> 
> >>>>> This isn't enough to resolve conflicts with x11vnc in sysroot, this
> >>>>> only
> >>>>> prevent installing both packages in the same image.
> >>>>> 
> >>>>>> +
> >>>>>> +inherit autotools pkgconfig
> >>>>>> +
> >>>>>> +SRC_URI  =
> >>>>>> 
"git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10">>>>> 
> >>>>> Set SRCREV matching with this tag, otherwise bitbake will always use
> >>>>> git
> >>>>> ls-remote to convert tag name to git SHA, which won't work for builds
> >>>>> from premirror (possibly without access to network)
> >>>> 
> >>>> This is easy to fix, however the above x11vnc conflict is not and I
> >>>> have
> >>>> to check with upstream developers which might take awhile.
> >>>> 
> >>>> Is it ok to blacklist libvncserver in patch v3 in order to not break
> >>>> x11vnc until this is solved?
> >>> 
> >>> I don't want to introduce more blacklisted recipes in meta-oe, so this
> >>> won't be merged until it's resolved.
> >> 
> >> Quick question: Fixing this involves adding a PACKAGECONFIG dependency
> >> inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.
> > 
> > If such PACKAGECONFIG can be disabled by default, then it's ok.
> > 
> >> Should I move libvncserver to oe-core, move x11vnc in meta-oe or should
> >> I just let them reside in separate layers even though there is this
> >> dependency?
> > 
> > oe-core (x11vnc) cannot by default depend on meta-oe (libvncserver), it
> > can be optional dependency, but without looking at the code my guess is
> > that this won't fix the issue.
> > 
> > Is the PACKAGECONFIG about using external libvncserver instead of
> > building own version inside x11vnc recipe? If my guess is right, then
> > oe-core will need to build own and meta-oe will need to remove such
> > PACKAGECONFIG in order to unblock building separate libvncserver.
> > 
> > If that's the case then moving libvncserver to oe-core or x11vnc to
> > meta-oe would be easier way forward.
> 
> Yes, this is correct (x11vnc's configured --with-system-libvncserver)

FWIW assuming it works and isn't specially patched, I think for x11vnc we'd 
probably be better off using an external lib we can keep up-to-date rather than 
a bundled one that might be out-of-date; that is to say, if we are to keep 
x11vnc in OE-Core then we might as well also have libvncserver. (One might 
possibly ask if we really need x11vnc there though, I don't have an answer to 
that).

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
@ 2015-10-14 14:41                 ` Paul Eggleton
  0 siblings, 0 replies; 16+ messages in thread
From: Paul Eggleton @ 2015-10-14 14:41 UTC (permalink / raw)
  To: openembedded-core; +Cc: openembedded-devel

On Wednesday 14 October 2015 17:33:23 Ioan-Adrian Ratiu wrote:
> On 14.10.2015 17:16, Martin Jansa wrote:
> > On Wed, Oct 14, 2015 at 05:06:07PM +0300, Ioan-Adrian Ratiu wrote:
> >> On 13.10.2015 16:08, Martin Jansa wrote:
> >>> On Tue, Oct 13, 2015 at 03:40:20PM +0300, Ioan-Adrian Ratiu wrote:
> >>>> On 13.10.2015 13:53, Martin Jansa wrote:
> >>>>> On Fri, Oct 09, 2015 at 09:58:07AM +0300, Ioan-Adrian Ratiu wrote:
> >>>>>> Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com>
> >>>>>> ---
> >>>>>> 
> >>>>>>     .../libvncserver/libvncserver_0.9.10.bb               | 19
> >>>>>>     +++++++++++++++++++ 1 file changed, 19 insertions(+)
> >>>>>>     create mode 100644
> >>>>>>     meta-oe/recipes-
graphics/libvncserver/libvncserver_0.9.10.bb>>>>>> 
> >>>>>> diff --git
> >>>>>> a/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>>>> b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb new
> >>>>>> file mode 100644
> >>>>>> index 0000000..afa303c
> >>>>>> --- /dev/null
> >>>>>> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_0.9.10.bb
> >>>>>> @@ -0,0 +1,19 @@
> >>>>>> +DESCRIPTION = "library for easy implementation of a RDP/VNC server"
> >>> 
> >>> Use SUMMARY for such short description.
> >>> 
> >>>>>> +HOMEPAGE = "https://libvnc.github.io"
> >>>>>> +SECTION = "libs"
> >>>>>> +PRIORITY = "optional"
> >>> 
> >>> Drop PRIORITY, we don't use it anywhere.
> >>> 
> >>>>>> +LICENSE = "GPLv2"
> >>>>>> +LIC_FILES_CHKSUM =
> >>>>>> "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> >>>>>> +
> >>>>>> +DEPENDS += "zlib jpeg libpng gtk+ libgcrypt nettle gnutls gmp"
> >>>>>> +RDEPENDS_${PN} += "libpng gtk+ libgcrypt"
> >>>>>> +
> >>>>>> +RCONFLICTS_${PN} = "x11vnc"
> >>>>> 
> >>>>> This isn't enough to resolve conflicts with x11vnc in sysroot, this
> >>>>> only
> >>>>> prevent installing both packages in the same image.
> >>>>> 
> >>>>>> +
> >>>>>> +inherit autotools pkgconfig
> >>>>>> +
> >>>>>> +SRC_URI  =
> >>>>>> 
"git://github.com/LibVNC/libvncserver.git;tag=LibVNCServer-0.9.10">>>>> 
> >>>>> Set SRCREV matching with this tag, otherwise bitbake will always use
> >>>>> git
> >>>>> ls-remote to convert tag name to git SHA, which won't work for builds
> >>>>> from premirror (possibly without access to network)
> >>>> 
> >>>> This is easy to fix, however the above x11vnc conflict is not and I
> >>>> have
> >>>> to check with upstream developers which might take awhile.
> >>>> 
> >>>> Is it ok to blacklist libvncserver in patch v3 in order to not break
> >>>> x11vnc until this is solved?
> >>> 
> >>> I don't want to introduce more blacklisted recipes in meta-oe, so this
> >>> won't be merged until it's resolved.
> >> 
> >> Quick question: Fixing this involves adding a PACKAGECONFIG dependency
> >> inside x11vnc on libvncserver. x11vnc is in the openembedded-core layer.
> > 
> > If such PACKAGECONFIG can be disabled by default, then it's ok.
> > 
> >> Should I move libvncserver to oe-core, move x11vnc in meta-oe or should
> >> I just let them reside in separate layers even though there is this
> >> dependency?
> > 
> > oe-core (x11vnc) cannot by default depend on meta-oe (libvncserver), it
> > can be optional dependency, but without looking at the code my guess is
> > that this won't fix the issue.
> > 
> > Is the PACKAGECONFIG about using external libvncserver instead of
> > building own version inside x11vnc recipe? If my guess is right, then
> > oe-core will need to build own and meta-oe will need to remove such
> > PACKAGECONFIG in order to unblock building separate libvncserver.
> > 
> > If that's the case then moving libvncserver to oe-core or x11vnc to
> > meta-oe would be easier way forward.
> 
> Yes, this is correct (x11vnc's configured --with-system-libvncserver)

FWIW assuming it works and isn't specially patched, I think for x11vnc we'd 
probably be better off using an external lib we can keep up-to-date rather than 
a bundled one that might be out-of-date; that is to say, if we are to keep 
x11vnc in OE-Core then we might as well also have libvncserver. (One might 
possibly ask if we really need x11vnc there though, I don't have an answer to 
that).

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [OE-core] [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
  2015-10-14 14:41                 ` [oe] " Paul Eggleton
@ 2015-10-14 14:43                   ` Otavio Salvador
  -1 siblings, 0 replies; 16+ messages in thread
From: Otavio Salvador @ 2015-10-14 14:43 UTC (permalink / raw)
  To: OpenEmbedded Devel List; +Cc: Patches and discussions about the oe-core layer

On Wed, Oct 14, 2015 at 11:41 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> FWIW assuming it works and isn't specially patched, I think for x11vnc we'd
> probably be better off using an external lib we can keep up-to-date rather than
> a bundled one that might be out-of-date; that is to say, if we are to keep
> x11vnc in OE-Core then we might as well also have libvncserver. (One might
> possibly ask if we really need x11vnc there though, I don't have an answer to
> that).

I think x11vnc could go to meta-oe. It does not seem to be widely used
and a core component.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [oe] [meta-oe][PATCH v2] meta-oe: recipes-graphics: add libvncserver recipe
@ 2015-10-14 14:43                   ` Otavio Salvador
  0 siblings, 0 replies; 16+ messages in thread
From: Otavio Salvador @ 2015-10-14 14:43 UTC (permalink / raw)
  To: OpenEmbedded Devel List; +Cc: Patches and discussions about the oe-core layer

On Wed, Oct 14, 2015 at 11:41 AM, Paul Eggleton
<paul.eggleton@linux.intel.com> wrote:
> FWIW assuming it works and isn't specially patched, I think for x11vnc we'd
> probably be better off using an external lib we can keep up-to-date rather than
> a bundled one that might be out-of-date; that is to say, if we are to keep
> x11vnc in OE-Core then we might as well also have libvncserver. (One might
> possibly ask if we really need x11vnc there though, I don't have an answer to
> that).

I think x11vnc could go to meta-oe. It does not seem to be widely used
and a core component.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2015-10-14 14:43 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-30  7:20 [meta-oe][PATCH] meta-oe: recipes-graphics: add libvncserver recipe Ioan-Adrian Ratiu
2015-10-08 10:08 ` Martin Jansa
2015-10-09  6:58 ` [meta-oe][PATCH v2] " Ioan-Adrian Ratiu
2015-10-13 10:53   ` Martin Jansa
2015-10-13 12:40     ` Ioan-Adrian Ratiu
2015-10-13 13:08       ` Martin Jansa
2015-10-14 10:53         ` Ioan-Adrian Ratiu
2015-10-14 14:06         ` Ioan-Adrian Ratiu
2015-10-14 14:16           ` Martin Jansa
2015-10-14 14:16             ` [oe] " Martin Jansa
2015-10-14 14:33             ` Ioan-Adrian Ratiu
2015-10-14 14:33               ` [oe] " Ioan-Adrian Ratiu
2015-10-14 14:41               ` [OE-core] " Paul Eggleton
2015-10-14 14:41                 ` [oe] " Paul Eggleton
2015-10-14 14:43                 ` [OE-core] " Otavio Salvador
2015-10-14 14:43                   ` [oe] " Otavio Salvador

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.