[Pkg-tcltk-commits] r701 - in tk8.3/trunk/debian: . patches

sgolovan-guest at alioth.debian.org sgolovan-guest at alioth.debian.org
Tue Jul 15 16:29:31 UTC 2008


Author: sgolovan-guest
Date: 2008-07-15 16:29:30 +0000 (Tue, 15 Jul 2008)
New Revision: 701

Added:
   tk8.3/trunk/debian/patches/tk-lastevent.diff
Modified:
   tk8.3/trunk/debian/changelog
   tk8.3/trunk/debian/patches/series
Log:
[tk8.3]
  * Fixed clean target to work with debhelper 7.0 (made dh_clean the last
    command, so debhelper logs are removed now).
  * Added a patch by upstream to mitigate a design bug in Tk event system.


Modified: tk8.3/trunk/debian/changelog
===================================================================
--- tk8.3/trunk/debian/changelog	2008-07-15 16:14:13 UTC (rev 700)
+++ tk8.3/trunk/debian/changelog	2008-07-15 16:29:30 UTC (rev 701)
@@ -1,9 +1,10 @@
-tk8.3 (8.3.5-14) UNRELEASED; urgency=low
+tk8.3 (8.3.5-14) unstable; urgency=low
 
   * Fixed clean target to work with debhelper 7.0 (made dh_clean the last
     command, so debhelper logs are removed now).
+  * Added a patch by upstream to mitigate a design bug in Tk event system.
 
- -- Sergei Golovan <sgolovan at debian.org>  Thu, 01 May 2008 12:29:22 +0400
+ -- Sergei Golovan <sgolovan at debian.org>  Tue, 15 Jul 2008 20:21:43 +0400
 
 tk8.3 (8.3.5-13) unstable; urgency=low
 

Modified: tk8.3/trunk/debian/patches/series
===================================================================
--- tk8.3/trunk/debian/patches/series	2008-07-15 16:14:13 UTC (rev 700)
+++ tk8.3/trunk/debian/patches/series	2008-07-15 16:29:30 UTC (rev 701)
@@ -6,6 +6,7 @@
 canvpoly.diff
 ps-ml.diff
 colors.diff
+tk-lastevent.diff
 pkgindex.diff
 m4quote.diff
 xincludes.diff

Added: tk8.3/trunk/debian/patches/tk-lastevent.diff
===================================================================
--- tk8.3/trunk/debian/patches/tk-lastevent.diff	                        (rev 0)
+++ tk8.3/trunk/debian/patches/tk-lastevent.diff	2008-07-15 16:29:30 UTC (rev 701)
@@ -0,0 +1,29 @@
+Date: Sat Jul 12 09:40:30 PDT 2008
+Files: generic/tk.h
+Bugid: 2010422
+
+--- tk8.3-8.3.5.orig/generic/tk.h
++++ tk8.3-8.3.5/generic/tk.h
+@@ -553,17 +553,15 @@
+  *
+  *---------------------------------------------------------------------------
+  */
+-#define VirtualEvent	    (LASTEvent)
+-#define ActivateNotify	    (LASTEvent + 1)
+-#define DeactivateNotify    (LASTEvent + 2)
+-#define MouseWheelEvent     (LASTEvent + 3)
+-#define TK_LASTEVENT	    (LASTEvent + 4)
++#define VirtualEvent	    (MappingNotify + 1)
++#define ActivateNotify	    (MappingNotify + 2)
++#define DeactivateNotify    (MappingNotify + 3)
++#define MouseWheelEvent     (MappingNotify + 4)
++#define TK_LASTEVENT	    (MappingNotify + 5)
+ 
+ #define MouseWheelMask	    (1L << 28)
+-
+ #define ActivateMask	    (1L << 29)
+ #define VirtualEventMask    (1L << 30)
+-#define TK_LASTEVENT	    (LASTEvent + 4)
+ 
+ 
+ /*




More information about the Pkg-tcltk-commits mailing list