* Libvirt and spice [3]
@ 2016-03-29 18:57 Jonatan Schlag
2016-03-29 18:57 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Jonatan Schlag
0 siblings, 1 reply; 5+ messages in thread
From: Jonatan Schlag @ 2016-03-29 18:57 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 251 bytes --]
Hi,
this is the third patch series for spice.
The only difference between this series and the previous one ist that the rootfiles of all build dependencies are moved into config/rootfiles/common.
Everything should build now.
Regards Jonatan
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number.
2016-03-29 18:57 Libvirt and spice [3] Jonatan Schlag
@ 2016-03-29 18:57 ` Jonatan Schlag
0 siblings, 0 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-03-29 18:57 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
lfs/qemu | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/qemu b/lfs/qemu
index a15dccd..804ec26 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -33,9 +33,9 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = i586 x86_64
PROG = qemu
-PAK_VER = 17
+PAK_VER = 18
-DEPS = "sdl"
+DEPS = "sdl spice"
###############################################################################
# Top-level Rules
@@ -81,7 +81,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc \
--enable-kvm --disable-attr \
--target-list="i386-linux-user x86_64-linux-user arm-linux-user i386-softmmu x86_64-softmmu arm-softmmu" \
- --extra-cflags="$(CFLAGS)"
+ --extra-cflags="$(CFLAGS)" --enable-spice
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.1.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Libvirt and spice [2]
@ 2016-03-25 16:03 Jonatan Schlag
2016-03-25 16:03 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Jonatan Schlag
0 siblings, 1 reply; 5+ messages in thread
From: Jonatan Schlag @ 2016-03-25 16:03 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 583 bytes --]
This is the second patch series for spice.
I did a little bit research and changed some things.
1. I changed everything that Michael has written.
2. The packages python-six python-pyparsing and spice-protocol are only built dependencies for libvirt, because of this fact alone opus is still a real dependency
3. All lines in the rootfiles of python-six python-pyparsing and spice-protocol are excluded, because we do not need this files as packages
I hope these second patch series is ok.
Regards Jonatan
PS.: Thanks to for Michael for the review of the first patches.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number.
2016-03-25 16:03 Libvirt and spice [2] Jonatan Schlag
@ 2016-03-25 16:03 ` Jonatan Schlag
0 siblings, 0 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-03-25 16:03 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
lfs/qemu | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/qemu b/lfs/qemu
index a15dccd..804ec26 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -33,9 +33,9 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = i586 x86_64
PROG = qemu
-PAK_VER = 17
+PAK_VER = 18
-DEPS = "sdl"
+DEPS = "sdl spice"
###############################################################################
# Top-level Rules
@@ -81,7 +81,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc \
--enable-kvm --disable-attr \
--target-list="i386-linux-user x86_64-linux-user arm-linux-user i386-softmmu x86_64-softmmu arm-softmmu" \
- --extra-cflags="$(CFLAGS)"
+ --extra-cflags="$(CFLAGS)" --enable-spice
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.1.4
^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <1458668167.2019.0@mail01.ipfire.org>]
* Spice for Libvirt
@ 2016-03-21 18:47 Jonatan Schlag
2016-03-21 18:47 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Jonatan Schlag
0 siblings, 1 reply; 5+ messages in thread
From: Jonatan Schlag @ 2016-03-21 18:47 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 392 bytes --]
This patch series contains all required packages for spice and spice itself.
Spice provides a protocol similar to vnc but is faster and support more options (audio).
I hope these patches are ok so far.
Just as a question how did the project deal with patches?
Should I wait till I get feedback for my first patches or should I send the next patches for libvirt?
Regards Jonatan
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number.
2016-03-21 18:47 Spice for Libvirt Jonatan Schlag
@ 2016-03-21 18:47 ` Jonatan Schlag
0 siblings, 0 replies; 5+ messages in thread
From: Jonatan Schlag @ 2016-03-21 18:47 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
lfs/qemu | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lfs/qemu b/lfs/qemu
index a15dccd..804ec26 100644
--- a/lfs/qemu
+++ b/lfs/qemu
@@ -33,9 +33,9 @@ DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
SUP_ARCH = i586 x86_64
PROG = qemu
-PAK_VER = 17
+PAK_VER = 18
-DEPS = "sdl"
+DEPS = "sdl spice"
###############################################################################
# Top-level Rules
@@ -81,7 +81,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
cd $(DIR_APP) && ./configure --prefix=/usr --sysconfdir=/etc \
--enable-kvm --disable-attr \
--target-list="i386-linux-user x86_64-linux-user arm-linux-user i386-softmmu x86_64-softmmu arm-softmmu" \
- --extra-cflags="$(CFLAGS)"
+ --extra-cflags="$(CFLAGS)" --enable-spice
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
--
2.1.4
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-03-29 18:57 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <1458979912.2015.1@mail01.ipfire.org>
2016-03-29 13:17 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Michael Tremer
2016-03-29 18:57 Libvirt and spice [3] Jonatan Schlag
2016-03-29 18:57 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Jonatan Schlag
-- strict thread matches above, loose matches on Subject: below --
2016-03-25 16:03 Libvirt and spice [2] Jonatan Schlag
2016-03-25 16:03 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Jonatan Schlag
[not found] <1458668167.2019.0@mail01.ipfire.org>
2016-03-22 18:54 ` Matthias Fischer
2016-03-21 18:47 Spice for Libvirt Jonatan Schlag
2016-03-21 18:47 ` [PATCH 7/7] Enable spice support in qemu, add spice as a dependency for qemu and bump qemu version number Jonatan Schlag
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox