r736 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.047 upstream/patches/7.0.048 upstream/patches/7.0.049 upstream/patches/7.0.050

nobse at users.alioth.debian.org nobse at users.alioth.debian.org
Wed Aug 9 08:07:38 UTC 2006


Author: nobse
Date: Wed Aug  9 08:07:37 2006
New Revision: 736

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=736
Log:
New upstream patches.

Added:
    trunk/packages/vim/upstream/patches/7.0.047
    trunk/packages/vim/upstream/patches/7.0.048
    trunk/packages/vim/upstream/patches/7.0.049
    trunk/packages/vim/upstream/patches/7.0.050
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=736&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Wed Aug  9 08:07:37 2006
@@ -71,3 +71,7 @@
   5277  7.0.044  Perl: changing a line in a non-current buffer may not work
   1741  7.0.045  (extra) Win32: MSVC 2005 compiler warnings for OLE version
   2318  7.0.046  the matchparen plugin didn't handle parens in single quotes
+  2219  7.0.047  the exit status of the configure script can be wrong
+  2173  7.0.048  the gzip plugin can't handle file names that have a paren
+  2221  7.0.049  some Tcl scripts are not recognized
+  1437  7.0.050  can't properly close a buffer through the NetBeans interface

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=736&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Wed Aug  9 08:07:37 2006
@@ -1,14 +1,14 @@
-vim (1:7.0-042+1) UNRELEASED; urgency=low
+vim (1:7.0-050+1) UNRELEASED; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream patches (036 - 046), see README.gz for details.
+  * New upstream patches (036 - 050), see README.gz for details.
 
   [ James Vega ]
   * Add patches/de.po.diff, which differentiates between "Delete" and
     "Readonly" swap recovery messages for the German translation.
     (closes: #379507)
 
- -- Matthijs Mohlmann <matthijs at cacholong.nl>  Tue,  8 Aug 2006 18:36:35 +0200
+ -- Norbert Tretkowski <nobse at debian.org>  Wed,  9 Aug 2006 10:06:25 +0200
 
 vim (1:7.0-035+1) unstable; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.0.047
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.047?rev=736&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.047 (added)
+++ trunk/packages/vim/upstream/patches/7.0.047 Wed Aug  9 08:07:37 2006
@@ -1,0 +1,64 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.047
+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.047
+Problem:    When running configure the exit status is wrong.
+Solution:   Handle the exit status properly. (Matthew Woehlke)
+Files:	    configure, src/configure
+
+
+*** ../vim-7.0.046/configure	Sun Jun 13 21:32:42 2004
+--- configure	Mon Jul 10 20:26:26 2006
+***************
+*** 3,6 ****
+  # This is just a stub for the Unix configure script, to provide support for
+  # doing "./configure" in the top Vim directory.
+  
+! cd src && ./configure "$@"
+--- 3,6 ----
+  # This is just a stub for the Unix configure script, to provide support for
+  # doing "./configure" in the top Vim directory.
+  
+! cd src && exec ./configure "$@"
+*** ../vim-7.0.046/src/configure	Thu Dec 22 23:38:38 2005
+--- src/configure	Mon Jul 10 20:26:53 2006
+***************
+*** 2,6 ****
+--- 2,10 ----
+  # run the automatically generated configure script
+  CONFIG_STATUS=auto/config.status \
+  	auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
++ result=$?
++ 
+  # Stupid autoconf 2.5x causes this file to be left behind.
+  if test -f configure.lineno; then rm -f configure.lineno; fi
++ 
++ exit $result
+*** ../vim-7.0.046/src/version.c	Tue Aug  8 18:08:54 2006
+--- src/version.c	Tue Aug  8 19:09:54 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     47,
+  /**/
+
+-- 
+The primary purpose of the DATA statement is to give names to constants;
+instead of referring to pi as 3.141592653589793 at every appearance, the
+variable PI can be given that value with a DATA statement and used instead
+of the longer form of the constant.  This also simplifies modifying the
+program, should the value of pi change.
+	-- FORTRAN manual for Xerox Computers
+
+ /// 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.048
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.048?rev=736&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.048 (added)
+++ trunk/packages/vim/upstream/patches/7.0.048 Wed Aug  9 08:07:37 2006
@@ -1,0 +1,71 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.048
+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.048
+Problem:    Writing a compressed file fails when there are parens in the name.
+	    (Wang Jian)
+Solution:   Put quotes around the temp file name.
+Files:	    runtime/autoload/gzip.vim
+
+
+*** ../vim-7.0.047/runtime/autoload/gzip.vim	Wed Apr  5 22:17:15 2006
+--- runtime/autoload/gzip.vim	Wed Jul 19 23:53:52 2006
+***************
+*** 1,6 ****
+  " Vim autoload file for editing compressed files.
+  " Maintainer: Bram Moolenaar <Bram at vim.org>
+! " Last Change: 2006 Mar 31
+  
+  " These functions are used by the gzip plugin.
+  
+--- 1,6 ----
+  " Vim autoload file for editing compressed files.
+  " Maintainer: Bram Moolenaar <Bram at vim.org>
+! " Last Change: 2006 Jul 19
+  
+  " These functions are used by the gzip plugin.
+  
+***************
+*** 127,135 ****
+      let nmt = s:tempname(nm)
+      if rename(nm, nmt) == 0
+        if exists("b:gzip_comp_arg")
+! 	call system(a:cmd . " " . b:gzip_comp_arg . " " . nmt)
+        else
+! 	call system(a:cmd . " " . nmt)
+        endif
+        call rename(nmt . "." . expand("<afile>:e"), nm)
+      endif
+--- 127,135 ----
+      let nmt = s:tempname(nm)
+      if rename(nm, nmt) == 0
+        if exists("b:gzip_comp_arg")
+! 	call system(a:cmd . " " . b:gzip_comp_arg . " '" . nmt . "'")
+        else
+! 	call system(a:cmd . " '" . nmt . "'")
+        endif
+        call rename(nmt . "." . expand("<afile>:e"), nm)
+      endif
+*** ../vim-7.0.047/src/version.c	Tue Aug  8 19:10:35 2006
+--- src/version.c	Tue Aug  8 19:26:51 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     48,
+  /**/
+
+-- 
+A fool learns from his mistakes, a wise man from someone else's.
+
+ /// 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.049
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.049?rev=736&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.049 (added)
+++ trunk/packages/vim/upstream/patches/7.0.049 Wed Aug  9 08:07:37 2006
@@ -1,0 +1,68 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.049
+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.049
+Problem:    Some TCL scripts are not recognized. (Steven Atkinson)
+Solution:   Check for "exec wish" in the file.
+Files:	    runtime/scripts.vim
+
+
+*** ../vim-7.0.048/runtime/scripts.vim	Tue Mar 28 23:07:11 2006
+--- runtime/scripts.vim	Sat Jul  8 22:20:51 2006
+***************
+*** 1,7 ****
+  " Vim support file to detect file types in scripts
+  "
+  " Maintainer:	Bram Moolenaar <Bram at vim.org>
+! " Last change:	2006 Mar 28
+  
+  " This file is called by an autocommand for every file that has just been
+  " loaded into a buffer.  It checks if the type of file can be recognized by
+--- 1,7 ----
+  " Vim support file to detect file types in scripts
+  "
+  " Maintainer:	Bram Moolenaar <Bram at vim.org>
+! " Last change:	2006 Jul 08
+  
+  " This file is called by an autocommand for every file that has just been
+  " loaded into a buffer.  It checks if the type of file can be recognized by
+***************
+*** 52,57 ****
+--- 52,63 ----
+      let s:name = substitute(s:line1, '^#!\s*\([^/\\ ]*\>\).*', '\1', '')
+    else
+      let s:name = substitute(s:line1, '^#!\s*\S*[/\\]\(\i\+\).*', '\1', '')
++   endif
++ 
++   " tcl scripts may have #!/bin/sh in the first line and "exec wish" in the
++   " third line.  Suggested by Steven Atkinson.
++   if getline(3) =~ '^exec wish'
++     let s:name = 'wish'
+    endif
+  
+    " Bourne-like shell scripts: bash bash2 ksh ksh93 sh
+*** ../vim-7.0.048/src/version.c	Tue Aug  8 19:55:06 2006
+--- src/version.c	Tue Aug  8 20:53:58 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     49,
+  /**/
+
+-- 
+I AM THANKFUL...
+...for the piles of laundry and ironing because it means I
+have plenty of clothes to wear.
+
+ /// 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.050
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.050?rev=736&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.050 (added)
+++ trunk/packages/vim/upstream/patches/7.0.050 Wed Aug  9 08:07:37 2006
@@ -1,0 +1,47 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.050
+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.050
+Problem:    After using the netbeans interface close command a stale pointer
+	    may be used.
+Solution:   Clear the pointer to the closed buffer. (Xaview de Gaye)
+Files:	    src/netbeans.c
+
+
+*** ../vim-7.0.049/src/netbeans.c	Sun Apr 23 00:21:07 2006
+--- src/netbeans.c	Fri Aug  4 23:02:54 2006
+***************
+*** 1986,1991 ****
+--- 1986,1993 ----
+  	    if (buf->bufp != NULL)
+  		do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD,
+  						     buf->bufp->b_fnum, TRUE);
++ 	    buf->bufp = NULL;
++ 	    buf->initDone = FALSE;
+  	    doupdate = 1;
+  /* =====================================================================*/
+  	}
+*** ../vim-7.0.049/src/version.c	Tue Aug  8 20:56:11 2006
+--- src/version.c	Tue Aug  8 21:35:25 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     50,
+  /**/
+
+-- 
+From "know your smileys":
+ :-E	Has major dental problems
+
+ /// 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