[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#29540] [PATCH] gnu: spice: Update to 0.14.0.
From: |
Andy Patterson |
Subject: |
[bug#29540] [PATCH] gnu: spice: Update to 0.14.0. |
Date: |
Sat, 2 Dec 2017 17:23:27 -0500 |
Hi all,
This patch allows qemu to use OpenGL acceleration in the guest when
certain parameters are configured. I tested it out by running supertux
and supertuxkart in a guest.
I downloaded the sources over https, but I didn't verify them against
the signature provided, since I couldn't figure out where to download
the keys from. Tips on how to find keys in general would be appreciated.
Also - the source needs to use https because connection over http
fails.
Thanks,
--
Andy
From 8d1c8528e46ff7eb24def9181017317b8a7d54ea Mon Sep 17 00:00:00 2001
From: Andy Patterson <address@hidden>
Date: Sat, 2 Dec 2017 16:22:11 -0500
Subject: [PATCH] gnu: spice: Update to 0.14.0.
This is a follow-up to commit 9a187b39b7991463aa6985f5b746fccf69789525.
* gnu/packages/spice.scm (spice): Update to 0.14.0.
[origin]<patches>: Remove them.
<uri>: Use https.
[inputs]: Add orc.
[home-page]: Update to use https.
---
gnu/packages/spice.scm | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm
index 7d49f90be..10f7c6bc5 100644
--- a/gnu/packages/spice.scm
+++ b/gnu/packages/spice.scm
@@ -203,20 +203,15 @@ which allows users to view a desktop computing
environment.")
(define-public spice
(package
(name "spice")
- (version "0.12.8")
+ (version "0.14.0")
(source (origin
(method url-fetch)
(uri (string-append
- "http://www.spice-space.org/download/releases/"
+ "https://www.spice-space.org/download/releases/"
"spice-" version ".tar.bz2"))
(sha256
(base32
- "0za03i77j8i3g5l2np2j7vy8cqsdbkm9wbv4hjnaqq9xhz2sa0gr"))
- (patches
- (search-patches "spice-CVE-2017-7506.patch"
- "spice-CVE-2016-9577.patch"
- "spice-CVE-2016-9578-1.patch"
- "spice-CVE-2016-9578-2.patch"))))
+ "0j5q7cp5p95jk8fp48gz76rz96lifimdsx1wnpmfal0nnnar9nrs"))))
(build-system gnu-build-system)
(propagated-inputs
`(("openssl" ,openssl)
@@ -228,6 +223,7 @@ which allows users to view a desktop computing
environment.")
("libjpeg-turbo" ,libjpeg-turbo)
("lz4" ,lz4)
("opus" ,opus)
+ ("orc" ,orc)
("zlib" ,zlib)))
(native-inputs
`(("pkg-config" ,pkg-config)
--
2.15.0