rpms/tigervnc/F-11 tigervnc10-rh495457.patch, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 tigervnc.spec, 1.10, 1.11 tigervnc-bounds.patch, 1.1, NONE tigervnc10-rh497592.patch, 1.1, NONE tigervnc10-rh499401.patch, 1.1, NONE tigervnc10-rh501832.patch, 1.1, NONE

Adam Tkac atkac at fedoraproject.org
Mon Jun 22 12:15:23 UTC 2009


Author: atkac

Update of /cvs/pkgs/rpms/tigervnc/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv30315

Modified Files:
	.cvsignore sources tigervnc.spec 
Added Files:
	tigervnc10-rh495457.patch 
Removed Files:
	tigervnc-bounds.patch tigervnc10-rh497592.patch 
	tigervnc10-rh499401.patch tigervnc10-rh501832.patch 
Log Message:
- update to 0.0.91 (1.0.0 RC1, #503271)
- patches merged
  - tigervnc10-rh499401.patch
  - tigervnc10-rh497592.patch
  - tigervnc10-rh501832.patch
- after discusion in upstream drop tigervnc-bounds.patch
- fix local rendering of cursor (#495457)


tigervnc10-rh495457.patch:

--- NEW FILE tigervnc10-rh495457.patch ---
Index: unix/vncviewer/DesktopWindow.cxx
===================================================================
--- unix/vncviewer/DesktopWindow.cxx	(revision 3832)
+++ unix/vncviewer/DesktopWindow.cxx	(working copy)
@@ -216,6 +216,7 @@
   if (cursorVisible) {
     cursorVisible = false;
     im->imageRect(cursorBackingRect, cursorBacking.data);
+    damageRect(cursorBackingRect);
   }
 }
 
@@ -237,6 +238,7 @@
     im->getImage(cursorBacking.data, cursorBackingRect);
 
     im->maskRect(cursorRect, cursor.data, cursor.mask.buf);
+    damageRect(cursorBackingRect);
   }
 }
 
@@ -355,6 +357,7 @@
         cursorPos = pos;
         showLocalCursor();
       }
+      updateWindow();
     }
   }
 }


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/tigervnc/F-11/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- .cvsignore	5 May 2009 09:41:20 -0000	1.5
+++ .cvsignore	22 Jun 2009 12:14:51 -0000	1.6
@@ -1 +1 @@
-tigervnc-0.0.90.tar.gz
+tigervnc-0.0.91.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/tigervnc/F-11/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- sources	5 May 2009 09:41:20 -0000	1.5
+++ sources	22 Jun 2009 12:14:51 -0000	1.6
@@ -1 +1 @@
-c80b043daae0c723134dbea9d1c06468  tigervnc-0.0.90.tar.gz
+9aff0c8b573f040aeca4560636fa6886  tigervnc-0.0.91.tar.gz


Index: tigervnc.spec
===================================================================
RCS file: /cvs/pkgs/rpms/tigervnc/F-11/tigervnc.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -p -r1.10 -r1.11
--- tigervnc.spec	21 May 2009 12:24:43 -0000	1.10
+++ tigervnc.spec	22 Jun 2009 12:14:51 -0000	1.11
@@ -1,6 +1,6 @@
 Name:		tigervnc
-Version:	0.0.90
-Release:	0.10%{?dist}
+Version:	0.0.91
+Release:	0.11%{?dist}
 Summary:	A TigerVNC remote display system
 
 Group:		User Interface/Desktops
@@ -36,12 +36,9 @@ Provides:	tightvnc = 1.5.0-0.15.20090204
 Obsoletes:	tightvnc < 1.5.0-0.15.20090204svn3586
 
 Patch0:		tigervnc-102434.patch
-Patch1:		tigervnc-bounds.patch
 Patch4:		tigervnc-cookie.patch
 Patch8:		tigervnc-viewer-reparent.patch
-Patch9:		tigervnc10-rh499401.patch
-Patch10:	tigervnc10-rh497592.patch
-Patch11:	tigervnc10-rh501832.patch
+Patch9:		tigervnc10-rh495457.patch
 
 %description
 Virtual Network Computing (VNC) is a remote display system which
@@ -97,12 +94,9 @@ popd
 
 
 %patch0 -p1 -b .102434
-%patch1 -p1 -b .bounds
 %patch4 -p1 -b .cookie
 %patch8 -p1 -b .viewer-reparent
-%patch9 -p0 -b .rh499401
-%patch10 -p1 -b .rh497592
-%patch11 -p1 -b .rh501832
+%patch9 -p0 -b .rh495457
 
 # Use newer gettext
 sed -i 's/AM_GNU_GETTEXT_VERSION.*/AM_GNU_GETTEXT_VERSION([0.17])/' \
@@ -242,6 +236,15 @@ fi
 %{_libdir}/xorg/modules/extensions/libvnc.so
 
 %changelog
+* Mon Jun 22 2009 Adam Tkac <atkac redhat com> 0.0.90-11
+- update to 0.0.91 (1.0.0 RC1, #503271)
+- patches merged
+  - tigervnc10-rh499401.patch
+  - tigervnc10-rh497592.patch
+  - tigervnc10-rh501832.patch
+- after discusion in upstream drop tigervnc-bounds.patch
+- fix local rendering of cursor (#495457)
+
 * Thu May 21 2009 Adam Tkac <atkac redhat com> 0.0.90-10
 - rebuild against 1.6.1.901 X server (#497835)
 - disable i18n, vncviewer is not UTF-8 compatible (#501832)


--- tigervnc-bounds.patch DELETED ---


--- tigervnc10-rh497592.patch DELETED ---


--- tigervnc10-rh499401.patch DELETED ---


--- tigervnc10-rh501832.patch DELETED ---




More information about the fedora-extras-commits mailing list