r652 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.003 upstream/patches/7.0.004 upstream/patches/7.0.005

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Wed May 10 15:26:35 UTC 2006


Author: jamessan
Date: Wed May 10 15:26:26 2006
New Revision: 652

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=652
Log:
Up to 005 now.  Guess it's a good thing we are working on some packaging cleanups before uploading.

Added:
    trunk/packages/vim/upstream/patches/7.0.003
    trunk/packages/vim/upstream/patches/7.0.004
    trunk/packages/vim/upstream/patches/7.0.005
Modified:
    trunk/packages/vim/debian/README
    trunk/packages/vim/debian/changelog

Modified: trunk/packages/vim/debian/README
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/README?rev=652&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Wed May 10 15:26:26 2006
@@ -27,3 +27,6 @@
   SIZE  NAME     FIXES
   1627  7.0.001  'spellsuggest' could not be added to
   2007  7.0.002  C omni complete has problem with % and # in tags file path
+  1876  7.0.003  GUI: click in tab pages label may warp mouse pointer
+  1596  7.0.004  Compiler warning for debug_saved used before set
+  1579  7.0.005  (extra) Win32: uninstall didn't delete spell and autoload dirs

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=652&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Wed May 10 15:26:26 2006
@@ -1,8 +1,8 @@
-vim (1:7.0-002+1) UNRELEASED; urgency=low
+vim (1:7.0-005+1) UNRELEASED; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream release and patches (7.0.002), see README.gz for details.
-    (closes: #366396)
+  * New upstream release (7.0) and patches (001 - 005), see README.gz for
+    details.  (closes: #366396)
     + CSS syntax highlighting properly handles non-UTF-8 aware environments.
       (closes: #358734)
     + crontab syntax highlighting recognizes % as starting stdin to the
@@ -18,7 +18,7 @@
     + Update debian/rules to use the src/lang/extra tarballs instead of one
       zip file.
 
- -- James Vega <jamessan at debian.org>  Wed, 10 May 2006 09:40:30 -0400
+ -- James Vega <jamessan at debian.org>  Wed, 10 May 2006 11:22:08 -0400
 
 vim (1:6.4+7.0g01-1) experimental; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.0.003
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.003?rev=652&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.003 (added)
+++ trunk/packages/vim/upstream/patches/7.0.003 Wed May 10 15:26:26 2006
@@ -1,0 +1,62 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.003
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.003
+Problem:    GUI: clicking in the lower part of a label in the tab pages line
+	    while 'mousefocus' is set may warp the mouse pointer. (Robert
+	    Webb)
+Solution:   Check for a negative mouse position.
+Files:	    src/gui.c
+
+
+*** ../vim-7.0.002/src/gui.c	Wed May 10 15:22:49 2006
+--- src/gui.c	Mon May  8 16:31:49 2006
+***************
+*** 4603,4613 ****
+      /* Don't move the mouse when it's left or right of the Vim window */
+      if (x < 0 || x > Columns * gui.char_width)
+  	return;
+  # ifdef FEAT_WINDOWS
+!     if (Y_2_ROW(y) >= tabline_height())
+! # else
+!     if (y >= 0)
+  # endif
+  	wp = xy2win(x, y);
+      if (wp != curwin && wp != NULL)	/* If in other than current window */
+      {
+--- 4603,4613 ----
+      /* Don't move the mouse when it's left or right of the Vim window */
+      if (x < 0 || x > Columns * gui.char_width)
+  	return;
++     if (y >= 0
+  # ifdef FEAT_WINDOWS
+! 	    && Y_2_ROW(y) >= tabline_height()
+  # endif
++        )
+  	wp = xy2win(x, y);
+      if (wp != curwin && wp != NULL)	/* If in other than current window */
+      {
+*** ../vim-7.0.002/src/version.c	Wed May 10 15:25:45 2006
+--- src/version.c	Wed May 10 17:12:27 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     3,
+  /**/
+
+-- 
+From "know your smileys":
+ 2B|^2B	  Message from Shakespeare
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.004
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.004?rev=652&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.004 (added)
+++ trunk/packages/vim/upstream/patches/7.0.004 Wed May 10 15:26:26 2006
@@ -1,0 +1,52 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.004
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.004
+Problem:    Compiler warning for debug_saved used before set. (Todd Blumer)
+Solution:   Remove the "else" for calling save_dbg_stuff().
+Files:	    src/ex_docmd.c
+
+
+*** ../vim-7.0.003/src/ex_docmd.c	Wed May 10 15:22:49 2006
+--- src/ex_docmd.c	Mon May  8 16:43:34 2006
+***************
+*** 833,839 ****
+       * If requested, store and reset the global values controlling the
+       * exception handling (used when debugging).
+       */
+!     else if (flags & DOCMD_EXCRESET)
+  	save_dbg_stuff(&debug_saved);
+  
+      initial_trylevel = trylevel;
+--- 833,839 ----
+       * If requested, store and reset the global values controlling the
+       * exception handling (used when debugging).
+       */
+!     if (flags & DOCMD_EXCRESET)
+  	save_dbg_stuff(&debug_saved);
+  
+      initial_trylevel = trylevel;
+*** ../vim-7.0.003/src/version.c	Wed May 10 17:12:51 2006
+--- src/version.c	Wed May 10 17:14:34 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     4,
+  /**/
+
+-- 
+From "know your smileys":
+ :-D	Big smile
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

Added: trunk/packages/vim/upstream/patches/7.0.005
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.005?rev=652&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.005 (added)
+++ trunk/packages/vim/upstream/patches/7.0.005 Wed May 10 15:26:26 2006
@@ -1,0 +1,56 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.005 (extra)
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.0.005 (extra)
+Problem:    Win32: The installer doesn't remove the "autoload" and "spell"
+	    directories. (David Fishburn)
+Solution:   Add the directories to the list to be removed.
+Files:	    nsis/gvim.nsi
+
+
+*** ../vim-7.0.004/nsis/gvim.nsi	Wed May 10 15:22:50 2006
+--- nsis/gvim.nsi	Mon May  8 17:57:28 2006
+***************
+*** 391,396 ****
+--- 391,397 ----
+  	ClearErrors
+  	# Remove everything but *.dll files.  Avoids that
+  	# a lot remains when gvimext.dll cannot be deleted.
++ 	RMDir /r $0\autoload
+  	RMDir /r $0\colors
+  	RMDir /r $0\compiler
+  	RMDir /r $0\doc
+***************
+*** 398,403 ****
+--- 399,405 ----
+  	RMDir /r $0\indent
+  	RMDir /r $0\macros
+  	RMDir /r $0\plugin
++ 	RMDir /r $0\spell
+  	RMDir /r $0\syntax
+  	RMDir /r $0\tools
+  	RMDir /r $0\tutor
+*** ../vim-7.0.004/src/version.c	Wed May 10 17:15:05 2006
+--- src/version.c	Wed May 10 17:24:02 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     5,
+  /**/
+
+-- 
+From "know your smileys":
+ :-&	Eating spaghetti
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\        download, build and distribute -- http://www.A-A-P.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///




More information about the pkg-vim-maintainers mailing list