diff --git a/SOURCES/gnome-boxes-disable-3d-acceleration.patch b/SOURCES/gnome-boxes-disable-3d-acceleration.patch new file mode 100644 index 0000000..f9eee2e --- /dev/null +++ b/SOURCES/gnome-boxes-disable-3d-acceleration.patch @@ -0,0 +1,25 @@ +From 932e84eff38302ff7c6b89213a911589cbb06bfe Mon Sep 17 00:00:00 2001 +From: Felipe Borges +Date: Mon, 13 Jul 2020 10:54:41 +0200 +Subject: [PATCH] disable-3d-acceleration + +--- + src/libvirt-machine-properties.vala | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/libvirt-machine-properties.vala b/src/libvirt-machine-properties.vala +index 5f5392e3..aa69fc85 100644 +--- a/src/libvirt-machine-properties.vala ++++ b/src/libvirt-machine-properties.vala +@@ -116,7 +116,7 @@ public string collect_logs () { + add_string_property (ref list, _("Display URL"), machine.display.uri); + } + +- add_3d_acceleration_property (ref list); ++ //add_3d_acceleration_property (ref list); + + break; + +-- +2.26.2 + diff --git a/SPECS/gnome-boxes.spec b/SPECS/gnome-boxes.spec index ca8450e..fdda135 100644 --- a/SPECS/gnome-boxes.spec +++ b/SPECS/gnome-boxes.spec @@ -31,7 +31,7 @@ ExclusiveArch: x86_64 Name: gnome-boxes Version: 3.36.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A simple GNOME 3 application to access remote or virtual systems License: LGPLv2+ @@ -42,6 +42,8 @@ Source0: http://download.gnome.org/sources/%{name}/%{url_ver}/%{name}-%{version} Patch0: gnome-boxes-download-from-url.patch # https://bugzilla.redhat.com/1851043 Patch1: gnome-boxes-dont-be-critical.patch +# https://bugzilla.redhat.com/1856717 +Patch2: gnome-boxes-disable-3d-acceleration.patch BuildRequires: gettext >= 0.19.8 BuildRequires: meson @@ -116,6 +118,7 @@ gnome-boxes lets you easily create, setup, access, and use: %setup -q %patch0 -p1 %patch1 -p1 +%patch2 -p1 %build %meson \ @@ -155,6 +158,10 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/org.gnome.Boxes.deskt %{_datadir}/metainfo/org.gnome.Boxes.appdata.xml %changelog +* Mon Jul 13 2020 Felipe Borges - 3.36.5-5 +- Disable 3D acceleration +- Related: #1856717 + * Tue Jun 30 2020 Felipe Borges - 3.36.5-4 - Don't create a tooltip if the URL for the OS is null - Related: #1851043