Hello community,

here is the log from the commit of package virt-viewer for openSUSE:Factory 
checked in at 2018-07-06 10:49:34
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/virt-viewer (Old)
 and      /work/SRC/openSUSE:Factory/.virt-viewer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "virt-viewer"

Fri Jul  6 10:49:34 2018 rev:61 rq:621202 version:6.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/virt-viewer/virt-viewer.changes  2017-08-24 
18:53:23.169079992 +0200
+++ /work/SRC/openSUSE:Factory/.virt-viewer.new/virt-viewer.changes     
2018-07-06 10:49:55.966684929 +0200
@@ -1,0 +2,9 @@
+Thu Jul  5 13:05:52 MDT 2018 - [email protected]
+
+- bsc#1100300 - virt-viewer: Build fails because spice-gtk no
+  longer has the spice-controller library
+  140cb84c-remote-viewer-remove--spice-controller.patch
+  bf39970a-virt-viewer.spec.in-fix-build-after-spice-xpi-client-removal.patch
+  virtview-fix-configure-after-spice-controller-removal.patch
+
+-------------------------------------------------------------------

New:
----
  140cb84c-remote-viewer-remove--spice-controller.patch
  bf39970a-virt-viewer.spec.in-fix-build-after-spice-xpi-client-removal.patch
  virtview-fix-configure-after-spice-controller-removal.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ virt-viewer.spec ++++++
--- /var/tmp/diff_new_pack.e6YGDV/_old  2018-07-06 10:49:56.754683956 +0200
+++ /var/tmp/diff_new_pack.e6YGDV/_new  2018-07-06 10:49:56.754683956 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package virt-viewer
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -26,6 +26,9 @@
 Release:        0
 Url:            http://www.virt-manager.org
 Source:         
https://virt-manager.org/download/sources/virt-viewer/%name-%version.tar.gz
+Patch1:         140cb84c-remote-viewer-remove--spice-controller.patch
+Patch2:         
bf39970a-virt-viewer.spec.in-fix-build-after-spice-xpi-client-removal.patch
+Patch3:         virtview-fix-configure-after-spice-controller-removal.patch
 Patch50:        netcat.patch
 Patch51:        virtview-desktop.patch
 Patch52:        virtview-dont-show-Domain-0.patch
@@ -52,6 +55,9 @@
 
 %prep
 %setup -q
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 %patch50 -p1
 %patch51 -p1
 %patch52 -p1

++++++ 140cb84c-remote-viewer-remove--spice-controller.patch ++++++
++++ 660 lines (skipped)

++++++ 
bf39970a-virt-viewer.spec.in-fix-build-after-spice-xpi-client-removal.patch 
++++++
Subject: virt-viewer.spec.in: fix build after spice-xpi-client removal
From: Marc-AndrĂ© Lureau [email protected] Thu Nov 16 18:07:39 2017 
+0100
Date: Fri Nov 17 08:39:14 2017 +0100:
Git: bf39970a1fee99838ee8e59da9c7ca525e035076

This fixes commit 140cb84c2538bf0eab7dea2035dfecc4db74c784, where we
removed the spice-xpi-client-remote-viewer.

Signed-off-by: Marc-AndrĂ© Lureau <[email protected]>
Reviewed-by: Daniel P. Berrange <[email protected]>

diff --git a/virt-viewer.spec.in b/virt-viewer.spec.in
index 44ef92e..54e2121 100644
--- a/virt-viewer.spec.in
+++ b/virt-viewer.spec.in
@@ -89,9 +89,6 @@ autoreconf -if
 %install
 rm -rf $RPM_BUILD_ROOT
 %__make install  DESTDIR=$RPM_BUILD_ROOT
-mkdir -p %{buildroot}%{_libexecdir}
-touch %{buildroot}%{_libexecdir}/spice-xpi-client
-install -m 0755 data/spice-xpi-client-remote-viewer %{buildroot}%{_libexecdir}/
 %find_lang %{name}
 
 %clean
@@ -100,8 +97,6 @@ rm -rf $RPM_BUILD_ROOT
 %post
 /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
 /bin/touch --no-create %{_datadir}/mime/packages &> /dev/null || :
-%{_sbindir}/update-alternatives --install %{_libexecdir}/spice-xpi-client \
-  spice-xpi-client %{_libexecdir}/spice-xpi-client-remote-viewer 25
 /usr/bin/update-desktop-database -q %{_datadir}/applications
 
 %postun
@@ -109,7 +104,6 @@ if [ $1 -eq 0 ] ; then
   /bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null
   /usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
   /usr/bin/update-mime-database %{_datadir}/mime &> /dev/null || :
-  %{_sbindir}/update-alternatives --remove spice-xpi-client 
%{_libexecdir}/spice-xpi-client-remote-viewer
 fi
 /usr/bin/update-desktop-database -q %{_datadir}/applications
 
@@ -127,8 +121,6 @@ fi
 %{_datadir}/applications/remote-viewer.desktop
 %{_datadir}/appdata/remote-viewer.appdata.xml
 %{_datadir}/mime/packages/virt-viewer-mime.xml
-%ghost %{_libexecdir}/spice-xpi-client
-%{_libexecdir}/spice-xpi-client-remote-viewer
 %{_mandir}/man1/virt-viewer.1*
 %{_mandir}/man1/remote-viewer.1*
 
++++++ virtview-fix-configure-after-spice-controller-removal.patch ++++++
++++ 694 lines (skipped)


Reply via email to