import gnome-boxes-3.36.5-5.el8

This commit is contained in:
CentOS Sources 2020-07-28 19:11:11 +00:00 committed by Andrew Lukoshko
parent c0595d6a28
commit 7120fec813
2 changed files with 33 additions and 1 deletions

View File

@ -0,0 +1,25 @@
From 932e84eff38302ff7c6b89213a911589cbb06bfe Mon Sep 17 00:00:00 2001
From: Felipe Borges <felipeborges@gnome.org>
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

View File

@ -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 <feborges@redhat.com> - 3.36.5-5
- Disable 3D acceleration
- Related: #1856717
* Tue Jun 30 2020 Felipe Borges <feborges@redhat.com> - 3.36.5-4
- Don't create a tooltip if the URL for the OS is null
- Related: #1851043