[Spice-devel] Flatpaking virt-viewer/remote-viewer

2018-05-14 Thread Adrian Lucrèce Céleste
I thought it'd be polite to notify upstream that I've been working on a flatpak for virt-viewer/remote-viewer. My progress can be found here: https://github.com/adriankoshka/flathub/tree/org.virt_manager.virt-viewer I have most functionality of remote-viewer working, such as: - screenshots -

Re: [Spice-devel] Flatpaking virt-viewer/remote-viewer

2018-05-14 Thread Daniel P . Berrangé
On Sun, May 13, 2018 at 05:23:12PM -0400, Adrian Lucrèce Céleste wrote: > I thought it'd be polite to notify upstream that I've been working on a > flatpak for virt-viewer/remote-viewer. > My progress can be found here: > https://github.com/adriankoshka/flathub/tree/org.virt_manager.virt-viewer >

[Spice-devel] [spice-gtk] build-sys: Update gettext 0.18.2 -> 0.19.8

2018-05-14 Thread Victor Toso
From: Victor Toso It was bumped to 0.19.0 by: commit 6195151f943480eecf38029ffad8a86844406659 Author: Marc-André Lureau Date: Tue Mar 28 14:51:04 2017 +0200 build-sys: modernize gettext (...) And then got downgraded to

[Spice-devel] [spice-jhbuild 0/2] moduleset updates

2018-05-14 Thread Victor Toso
From: Victor Toso Hi, * moduleset: Use latest gnome-apps modules 3.18 which is currently used is a it old. Not sure if it makes to not use the latest gnome-apps in a development moduleset. * moduleset: spice repo moved to gitlab To fix url change upstream Victor Toso

[Spice-devel] [spice-jhbuild 1/2] moduleset: Use latest gnome-apps modules

2018-05-14 Thread Victor Toso
From: Victor Toso Signed-off-by: Victor Toso --- modulesets/spice.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulesets/spice.xml b/modulesets/spice.xml index f7c25a4..2e17e83 100644 --- a/modulesets/spice.xml +++

[Spice-devel] [spice-jhbuild 2/2] moduleset: spice repo moved to gitlab

2018-05-14 Thread Victor Toso
From: Victor Toso Signed-off-by: Victor Toso --- modulesets/spice.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulesets/spice.xml b/modulesets/spice.xml index 2e17e83..05a6270 100644 --- a/modulesets/spice.xml +++

[Spice-devel] [spice-space-pages] Don't use absolute URLs for local resources

2018-05-14 Thread Christophe Fergeau
When referencing content hosted on spice-space.org, no need to use the full URL in our HTML pages (ie use /download/ instead of https://www.spice-space.org/download/). --- download.rst | 32 usbredir.rst | 32 2 files changed, 32

[Spice-devel] [spice-space.org] Update asciidoc_reader to latest version

2018-05-14 Thread Christophe Fergeau
It comes from https://github.com/getpelican/pelican-plugins, commit 8d96866a4ec and adds python 3 support. --- plugins/asciidoc_reader/README.rst| 41 ++- plugins/asciidoc_reader/asciidoc_reader.py| 108 +--- plugins/asciidoc_reader/asciidocapi.py| 257

Re: [Spice-devel] [spice-space-pages] Don't use absolute URLs for local resources

2018-05-14 Thread Pavel Grunt
Hi, does it work well with CI? IIRC there's a linter checking for the validity of links. Pavel Dne po 14. 5. 2018 17:18 uživatel Christophe Fergeau napsal: > When referencing content hosted on spice-space.org, no need to use the > full URL in our HTML pages > (ie use

[Spice-devel] [PATCH spice-common 2/4] codegen: Remove duplicate client and server code from ChannelType::resolve

2018-05-14 Thread Frediano Ziglio
Code that handled client and server messages check was the same, just changed some variable names. Instead use a class to store same information and reuse the code. This allows easier extension of the 2 path of code. Signed-off-by: Frediano Ziglio ---

[Spice-devel] [PATCH spice-common 1/4] Fix generation of Smartcard channel

2018-05-14 Thread Frediano Ziglio
The Smartcard channel definition has been always broken. Multiple client messages with the same ID are defined in the channel. This cause on server demarshaller to only have last message defined, while on the client marshaller code all message marshallers are defined but client uses only header

[Spice-devel] [PATCH spice-common 4/4] Check for messages with duplicate values inside a channel

2018-05-14 Thread Frediano Ziglio
Make sure there are not 2 messages with the same value in the same channel. Signed-off-by: Frediano Ziglio --- python_modules/ptypes.py | 8 1 file changed, 8 insertions(+) diff --git a/python_modules/ptypes.py b/python_modules/ptypes.py index 664dd1d..1b05cc6

[Spice-devel] [PATCH spice-common 3/4] Check for messages with duplicate names inside a channel

2018-05-14 Thread Frediano Ziglio
Make sure there are not 2 messages with the same name in the same channel. Signed-off-by: Frediano Ziglio --- python_modules/ptypes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python_modules/ptypes.py b/python_modules/ptypes.py index ef580aa..664dd1d 100644 ---

Re: [Spice-devel] [spice-gtk] build-sys: Update gettext 0.18.2 -> 0.19.8

2018-05-14 Thread Frediano Ziglio
> > From: Victor Toso > > It was bumped to 0.19.0 by: > > commit 6195151f943480eecf38029ffad8a86844406659 > Author: Marc-André Lureau > Date: Tue Mar 28 14:51:04 2017 +0200 > > build-sys: modernize gettext > (...) > >