Re: [Spice-devel] [PATCH spice-server v2 1/7] smart-channel-client: Remove spicec client reference from comment

2019-10-21 Thread Victor Toso
Hi, On Mon, Oct 14, 2019 at 10:22:11AM +0100, Frediano Ziglio wrote: > spicec is an obsolete client. Should be fine to remove the other last referece (that my grep could find) in this commit too? server/red-channel-client.c:1187: * after spicec disconnect (but not with spice-gtk) repeatedly.

Re: [Spice-devel] [PATCH spice-server v2 1/7] smart-channel-client: Remove spicec client reference from comment

2019-10-21 Thread Frediano Ziglio
- Original Message - > From: "Victor Toso" > To: "Frediano Ziglio" > Cc: spice-devel@lists.freedesktop.org, cferg...@redhat.com > Sent: Monday, 21 October, 2019 9:01:13 AM > Subject: Re: [Spice-devel] [PATCH spice-server v2 1/7] smart-channel-client: > Remove spicec client reference fr

Re: [Spice-devel] [PATCH spice-protocol 3/5] build-sys: Allows spec file to build MingW packages

2019-10-21 Thread Eduardo Lima (Etrunko)
On 10/11/19 6:56 AM, Frediano Ziglio wrote: Add MingW support. This allows to build MingW packages easily with a $ rpmbuild -ta spice-protocol-.tar.bz2 It's possible to disable MingW build using $ rpmbuild --without mingw -ta spice-protocol-.tar.bz2 This is base on some work by

Re: [Spice-devel] [PATCH spice-protocol 3/5] build-sys: Allows spec file to build MingW packages

2019-10-21 Thread Frediano Ziglio
> > On 10/11/19 6:56 AM, Frediano Ziglio wrote: > > Add MingW support. This allows to build MingW packages easily with a > > > >$ rpmbuild -ta spice-protocol-.tar.bz2 > > > > It's possible to disable MingW build using > > > >$ rpmbuild --without mingw -ta spice-protocol-.tar.bz2

[Spice-devel] [PATCH spice-protocol v2 1/5] build-sys: Import spec file from Fedora

2019-10-21 Thread Frediano Ziglio
Will be used by next commits. Signed-off-by: Frediano Ziglio --- spice-protocol.spec.in | 173 + 1 file changed, 173 insertions(+) create mode 100644 spice-protocol.spec.in diff --git a/spice-protocol.spec.in b/spice-protocol.spec.in new file mode 100644

[Spice-devel] [PATCH spice-protocol v2 5/5] build-sys: Requires proper pkg-config for MingW

2019-10-21 Thread Frediano Ziglio
.pc files requires MingW version, not system one. Signed-off-by: Frediano Ziglio --- spice-protocol.spec.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spice-protocol.spec.in b/spice-protocol.spec.in index 54aacfd..2fe940b 100644 --- a/spice-protocol.spec.in +++ b/spice-p

[Spice-devel] [PATCH spice-protocol v2 4/5] build-sys: Update URL in SPEC file

2019-10-21 Thread Frediano Ziglio
Use https instead of http, web server automatically redirects to secure version. Remove slash at the end, not needed. Signed-off-by: Frediano Ziglio --- spice-protocol.spec.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spice-protocol.spec.in b/spice-protocol.spec.in

[Spice-devel] [PATCH spice-protocol v2 3/5] build-sys: Allows spec file to build MingW packages

2019-10-21 Thread Frediano Ziglio
Add MingW support. This allows to build MingW packages easily with a $ rpmbuild -ta spice-protocol-.tar.bz2 This is base on some work by Eduardo Lima adding MingW support to SPEC files. Part of dependencies, description and names came from Fedora SPEC file for mingw-spice-protocol package.

[Spice-devel] [PATCH spice-protocol v2 2/5] build-sys: Provide spec file during build

2019-10-21 Thread Frediano Ziglio
Having the RPM spec file produced by the build is helpful in different situation. Different tools like mock or code scanners accept source RPMs as input. Providing this file allows easily build of the source RPM (and binaries) using a simple command like $ rpmbuild -ta spice-protocol-.tar.bz