All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libvncserver: Update to latest commit post 0.9.12
@ 2019-01-24  3:57 Randy MacLeod
  0 siblings, 0 replies; 5+ messages in thread
From: Randy MacLeod @ 2019-01-24  3:57 UTC (permalink / raw)
  To: openembedded-devel

Update to latest git HEAD which includes a fix for CVE-2018-15127.

Support for lzo in addition to a bundled minilzo was added so
add a PACKAGECONFIG[lzo] and add it to the default config.

Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
---
 meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
index 25917756f..b789055bb 100644
--- a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
+++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
@@ -5,10 +5,11 @@ PRIORITY = "optional"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
 
-PACKAGECONFIG ??= "gcrypt gnutls jpeg png ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
+PACKAGECONFIG ??= "gcrypt gnutls jpeg png lzo ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
 PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt"
 PACKAGECONFIG[gnutls] = ",,gnutls"
 PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg"
+PACKAGECONFIG[lzo] = ",,lzo"
 PACKAGECONFIG[openssl] = ",,openssl"
 PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng"
 PACKAGECONFIG[systemd] = ",,systemd"
@@ -18,6 +19,6 @@ PACKAGECONFIG[zlib] = ",,zlib"
 inherit cmake
 
 SRC_URI = "git://github.com/LibVNC/libvncserver"
-SRCREV = "f997b5a75fa171d79c5e568b7157fba83c8d8355"
+SRCREV = "c0a23857a5c42b45b6d22ccf7218becd1fa69402"
 
 S = "${WORKDIR}/git"
-- 
2.17.0



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

* Re: [PATCH] libvncserver: Update to latest commit post 0.9.12
  2019-01-24  4:27 ` Randy MacLeod
  2019-01-24 18:15   ` Randy MacLeod
@ 2019-01-24 18:17   ` Khem Raj
  1 sibling, 0 replies; 5+ messages in thread
From: Khem Raj @ 2019-01-24 18:17 UTC (permalink / raw)
  To: Randy MacLeod; +Cc: openembeded-devel

On Wed, Jan 23, 2019 at 11:28 PM Randy MacLeod
<randy.macleod@windriver.com> wrote:
>
> On 1/23/19 10:58 PM, Randy MacLeod wrote:
> > Update to latest git HEAD which includes a fix for CVE-2018-15127.
> >
> > Support for lzo in addition to a bundled minilzo was added so
> > add a PACKAGECONFIG[lzo] and add it to the default config.
> >
> > Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> > ---
> >   meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb | 5 +++--
> >   1 file changed, 3 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
> > index 25917756f..b789055bb 100644
> > --- a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
> > +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
> > @@ -5,10 +5,11 @@ PRIORITY = "optional"
> >   LICENSE = "GPLv2"
> >   LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
> >
> > -PACKAGECONFIG ??= "gcrypt gnutls jpeg png ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
> > +PACKAGECONFIG ??= "gcrypt gnutls jpeg png lzo ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
> >   PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt"
> >   PACKAGECONFIG[gnutls] = ",,gnutls"
> >   PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg"
> > +PACKAGECONFIG[lzo] = ",,lzo"
> >   PACKAGECONFIG[openssl] = ",,openssl"
> >   PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng"
> >   PACKAGECONFIG[systemd] = ",,systemd"
> > @@ -18,6 +19,6 @@ PACKAGECONFIG[zlib] = ",,zlib"
> >   inherit cmake
> >
> >   SRC_URI = "git://github.com/LibVNC/libvncserver"
> > -SRCREV = "f997b5a75fa171d79c5e568b7157fba83c8d8355"
> > +SRCREV = "c0a23857a5c42b45b6d22ccf7218becd1fa69402"
> >
> >   S = "${WORKDIR}/git"
> >
>
> glibc builds are fine,
> musl builds are underway.
>
>
> There are some packaging warnings that I haven't fixed.
>
> It would seem to me that the .so files should be separated
> into:
> libvncserver
> libvncclient
> along with a single -dev/dgb package just like debian does:
>
> $ apt show libvnc<TAB>
> libvncclient1        libvncclient1-dbg    libvncserver1
> libvncserver1-dbg    libvncserver-config  libvncserver-dev
>
> I'm not sure what's in the -config package yet.
>
> I'll make these packaging changes in another commit in a few days
> unless someone objects or beats me to it.
>

I will wait for v2 but give it a shot in local build but this patch
does not apply on master.
> --
> # Randy MacLeod
> # Wind River Linux
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [PATCH] libvncserver: Update to latest commit post 0.9.12
  2019-01-24  4:27 ` Randy MacLeod
@ 2019-01-24 18:15   ` Randy MacLeod
  2019-01-24 18:17   ` Khem Raj
  1 sibling, 0 replies; 5+ messages in thread
From: Randy MacLeod @ 2019-01-24 18:15 UTC (permalink / raw)
  To: openembedded-devel

I missed that there were a couple of updates to libvncserver in flight.
I've rebased noted that the PKGCFG[lzo] needs -DWITH_LZO=OFF
I'll retest and resend.

../Randy


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

* Re: [PATCH] libvncserver: Update to latest commit post 0.9.12
  2019-01-24  3:58 Randy MacLeod
@ 2019-01-24  4:27 ` Randy MacLeod
  2019-01-24 18:15   ` Randy MacLeod
  2019-01-24 18:17   ` Khem Raj
  0 siblings, 2 replies; 5+ messages in thread
From: Randy MacLeod @ 2019-01-24  4:27 UTC (permalink / raw)
  To: openembedded-devel

On 1/23/19 10:58 PM, Randy MacLeod wrote:
> Update to latest git HEAD which includes a fix for CVE-2018-15127.
> 
> Support for lzo in addition to a bundled minilzo was added so
> add a PACKAGECONFIG[lzo] and add it to the default config.
> 
> Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
> ---
>   meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
> index 25917756f..b789055bb 100644
> --- a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
> +++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
> @@ -5,10 +5,11 @@ PRIORITY = "optional"
>   LICENSE = "GPLv2"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
>   
> -PACKAGECONFIG ??= "gcrypt gnutls jpeg png ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
> +PACKAGECONFIG ??= "gcrypt gnutls jpeg png lzo ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
>   PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt"
>   PACKAGECONFIG[gnutls] = ",,gnutls"
>   PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg"
> +PACKAGECONFIG[lzo] = ",,lzo"
>   PACKAGECONFIG[openssl] = ",,openssl"
>   PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng"
>   PACKAGECONFIG[systemd] = ",,systemd"
> @@ -18,6 +19,6 @@ PACKAGECONFIG[zlib] = ",,zlib"
>   inherit cmake
>   
>   SRC_URI = "git://github.com/LibVNC/libvncserver"
> -SRCREV = "f997b5a75fa171d79c5e568b7157fba83c8d8355"
> +SRCREV = "c0a23857a5c42b45b6d22ccf7218becd1fa69402"
>   
>   S = "${WORKDIR}/git"
> 

glibc builds are fine,
musl builds are underway.


There are some packaging warnings that I haven't fixed.

It would seem to me that the .so files should be separated
into:
libvncserver
libvncclient
along with a single -dev/dgb package just like debian does:

$ apt show libvnc<TAB>
libvncclient1        libvncclient1-dbg    libvncserver1 
libvncserver1-dbg    libvncserver-config  libvncserver-dev

I'm not sure what's in the -config package yet.

I'll make these packaging changes in another commit in a few days
unless someone objects or beats me to it.

-- 
# Randy MacLeod
# Wind River Linux


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

* [PATCH] libvncserver: Update to latest commit post 0.9.12
@ 2019-01-24  3:58 Randy MacLeod
  2019-01-24  4:27 ` Randy MacLeod
  0 siblings, 1 reply; 5+ messages in thread
From: Randy MacLeod @ 2019-01-24  3:58 UTC (permalink / raw)
  To: openembedded-devel

Update to latest git HEAD which includes a fix for CVE-2018-15127.

Support for lzo in addition to a bundled minilzo was added so
add a PACKAGECONFIG[lzo] and add it to the default config.

Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
---
 meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
index 25917756f..b789055bb 100644
--- a/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
+++ b/meta-oe/recipes-graphics/libvncserver/libvncserver_git.bb
@@ -5,10 +5,11 @@ PRIORITY = "optional"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=361b6b837cad26c6900a926b62aada5f"
 
-PACKAGECONFIG ??= "gcrypt gnutls jpeg png ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
+PACKAGECONFIG ??= "gcrypt gnutls jpeg png lzo ${@bb.utils.contains('DISTRO_FEATURES','systemd','systemd','',d)} sdl zlib"
 PACKAGECONFIG[gcrypt] = ",,libgcrypt,libgcrypt"
 PACKAGECONFIG[gnutls] = ",,gnutls"
 PACKAGECONFIG[jpeg] = ",-DWITH_JPEG=OFF,jpeg"
+PACKAGECONFIG[lzo] = ",,lzo"
 PACKAGECONFIG[openssl] = ",,openssl"
 PACKAGECONFIG[png] = ",-DWITH_PNG=OFF,libpng,libpng"
 PACKAGECONFIG[systemd] = ",,systemd"
@@ -18,6 +19,6 @@ PACKAGECONFIG[zlib] = ",,zlib"
 inherit cmake
 
 SRC_URI = "git://github.com/LibVNC/libvncserver"
-SRCREV = "f997b5a75fa171d79c5e568b7157fba83c8d8355"
+SRCREV = "c0a23857a5c42b45b6d22ccf7218becd1fa69402"
 
 S = "${WORKDIR}/git"
-- 
2.17.0



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

end of thread, other threads:[~2019-01-24 18:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-24  3:57 [PATCH] libvncserver: Update to latest commit post 0.9.12 Randy MacLeod
2019-01-24  3:58 Randy MacLeod
2019-01-24  4:27 ` Randy MacLeod
2019-01-24 18:15   ` Randy MacLeod
2019-01-24 18:17   ` Khem Raj

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.