summaryrefslogtreecommitdiff
path: root/gnu/packages/patches
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-03-07 12:02:22 +0100
committerTobias Geerinckx-Rice <me@tobias.gr>2020-03-07 12:48:18 +0100
commitc0dc4179091f85fe4b8a2bbdb07c154a7f0408ed (patch)
tree7f628bc764e5ad322859a6cc431ef422bdb06811 /gnu/packages/patches
parentbeecf815dbd1256c4ffaccebffc2be2024111bbd (diff)
downloadpatches-c0dc4179091f85fe4b8a2bbdb07c154a7f0408ed.tar
patches-c0dc4179091f85fe4b8a2bbdb07c154a7f0408ed.tar.gz
gnu: spice: Update to 0.14.3.
* gnu/packages/spice.scm (spice): Update to 0.14.3. [source]: Remove obsolete patch. * gnu/packages/patches/spice-fix-test-armhf.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Remove it.
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r--gnu/packages/patches/spice-fix-test-armhf.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/gnu/packages/patches/spice-fix-test-armhf.patch b/gnu/packages/patches/spice-fix-test-armhf.patch
deleted file mode 100644
index 5c51bd6ede..0000000000
--- a/gnu/packages/patches/spice-fix-test-armhf.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Fix test failure on armhf and ppc64el:
-https://gitlab.freedesktop.org/spice/spice-server/issues/31
-
-Taken from upstream:
-https://gitlab.freedesktop.org/spice/spice/commit/19f9f454e0777d851f26d14df0c7984267c57015
-
-diff --git a/server/tests/test-qxl-parsing.c b/server/tests/test-qxl-parsing.c
-index 60ca8f88c62441e02577ced21e4f60a08ad4171a..234bdabc9ce619d0799b5136f1d72357b0b2f490 100644
---- a/server/tests/test-qxl-parsing.c
-+++ b/server/tests/test-qxl-parsing.c
-@@ -96,7 +96,7 @@ static void test_memslot_invalid_slot_id(void)
- RedMemSlotInfo mem_info;
- init_meminfo(&mem_info);
-
-- memslot_get_virt(&mem_info, 1 << mem_info.memslot_id_shift, 16, 0);
-+ memslot_get_virt(&mem_info, UINT64_C(1) << mem_info.memslot_id_shift, 16, 0);
- }
-
- static void test_memslot_invalid_addresses(void)