r673 - in /trunk/packages/vim: debian/README debian/changelog upstream/patches/7.0.016 upstream/patches/7.0.017

zack at users.alioth.debian.org zack at users.alioth.debian.org
Sat May 13 18:01:11 UTC 2006


Author: zack
Date: Sat May 13 18:01:11 2006
New Revision: 673

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=673
Log:
upstream patches 7.0.01{6,7}

Added:
    trunk/packages/vim/upstream/patches/7.0.016
    trunk/packages/vim/upstream/patches/7.0.017
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=673&op=diff
==============================================================================
--- trunk/packages/vim/debian/README (original)
+++ trunk/packages/vim/debian/README Sat May 13 18:01:11 2006
@@ -37,3 +37,8 @@
   3705  7.0.010  spellfile plugin required typing login name and password
   1989  7.0.011  can't compile with eval feature without folding feature
   2532  7.0.012  matchparen plugin changed cursor column in Insert mode
+  4614  7.0.013  Insert mode completion: CTRL-L jumped back to original text
+  5712  7.0.014  Motif: doesn't compile with Motif 1.2 and earlier
+  4485  7.0.015  Athena: type casts for lvalues
+  1810  7.0.016  recognize encodings "mac-roman", "dec-mcs" and "hp-roman8"
+  2302  7.0.017  (after 7.0.014) Motif: doesn't link with Motif 1.2 and earlier

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=673&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sat May 13 18:01:11 2006
@@ -1,7 +1,7 @@
-vim (1:7.0-015+1) UNRELEASED; urgency=low
+vim (1:7.0-017+1) UNRELEASED; urgency=low
 
   [ Debian Vim Maintainers ]
-  * New upstream patches (011 - 015), see README.gz for details.
+  * New upstream patches (011 - 017), see README.gz for details.
 
   [ Stefano Zacchiroli ]
   * Preliminary support for add-on infrastructure
@@ -19,7 +19,7 @@
   * vim-tiny is ready to enter the base system
     + set vim-tiny priority to Important
 
- -- James Vega <jamessan at debian.org>  Thu, 12 May 2006 13:45:36 -0400
+ -- Stefano Zacchiroli <zack at debian.org>  Sat, 13 May 2006 12:56:11 -0500
 
 vim (1:7.0-010+1) experimental; urgency=low
 

Added: trunk/packages/vim/upstream/patches/7.0.016
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.016?rev=673&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.016 (added)
+++ trunk/packages/vim/upstream/patches/7.0.016 Sat May 13 18:01:11 2006
@@ -1,0 +1,67 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.016
+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.016
+Problem:    Printing doesn't work for "dec-mcs" encoding.
+Solution:   Add "dec-mcs", "mac-roman" and "hp-roman8" to the list of
+	    recognized 8-bit encodings. (Mike Williams)
+Files:	    src/mbyte.c
+
+
+*** ../vim-7.0.015/src/mbyte.c	Wed May 10 15:22:50 2006
+--- src/mbyte.c	Sat May 13 09:12:43 2006
+***************
+*** 311,317 ****
+  
+  #define IDX_MACROMAN	57
+      {"macroman",	ENC_8BIT + ENC_MACROMAN, 0},	/* Mac OS */
+! #define IDX_COUNT	58
+  };
+  
+  /*
+--- 311,321 ----
+  
+  #define IDX_MACROMAN	57
+      {"macroman",	ENC_8BIT + ENC_MACROMAN, 0},	/* Mac OS */
+! #define IDX_DECMCS	58
+!     {"dec-mcs",		ENC_8BIT,		0},	/* DEC MCS */
+! #define IDX_HPROMAN8	59
+!     {"hp-roman8",	ENC_8BIT,		0},	/* HP Roman8 */
+! #define IDX_COUNT	60
+  };
+  
+  /*
+***************
+*** 386,391 ****
+--- 390,396 ----
+      {"950",		IDX_BIG5},
+  #endif
+      {"mac",		IDX_MACROMAN},
++     {"mac-roman",	IDX_MACROMAN},
+      {NULL,		0}
+  };
+  
+*** ../vim-7.0.015/src/version.c	Fri May 12 19:27:55 2006
+--- src/version.c	Sat May 13 09:11:27 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     16,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+135. You cut classes or miss work so you can stay home and browse the web.
+
+ /// 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.017
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/upstream/patches/7.0.017?rev=673&op=file
==============================================================================
--- trunk/packages/vim/upstream/patches/7.0.017 (added)
+++ trunk/packages/vim/upstream/patches/7.0.017 Sat May 13 18:01:11 2006
@@ -1,0 +1,64 @@
+To: vim-dev at vim.org
+Subject: Patch 7.0.017
+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.017 (after 7.0.014)
+Problem:    Linking gui_xmebw.c fails on Dec Alpha Tru64. (Rolfe)
+Solution:   Adjust defines for Motif 1.2 and older.
+Files:	    src/gui_xmebw.c
+
+
+*** ../vim-7.0.016/src/gui_xmebw.c	Fri May 12 19:24:33 2006
+--- src/gui_xmebw.c	Sat May 13 12:55:01 2006
+***************
+*** 47,59 ****
+  #include "gui_xmebwp.h"
+  
+  /* Provide some missing wrappers, which are missed from the LessTif
+!  * implementation.
+   *
+   * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
+   * pixmap will not appear in it's caches properly. We cache the interresting
+   * values in XmEnhancedButtonPart instead ourself.
+   */
+! #ifdef LESSTIF_VERSION
+  # ifndef Lab_IsMenupane
+  #  define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
+  		    Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
+--- 47,59 ----
+  #include "gui_xmebwp.h"
+  
+  /* Provide some missing wrappers, which are missed from the LessTif
+!  * implementation.  Also missing in Motif 1.2 and earlier.
+   *
+   * We neither use XmeGetPixmapData or _XmGetPixmapData, since with LessTif the
+   * pixmap will not appear in it's caches properly. We cache the interresting
+   * values in XmEnhancedButtonPart instead ourself.
+   */
+! #if defined(LESSTIF_VERSION) || (XmVersion <= 1002)
+  # ifndef Lab_IsMenupane
+  #  define Lab_IsMenupane(w) (Lab_MenuType(w) == (int)XmMENU_POPUP || \
+  		    Lab_MenuType(w) == (int)XmMENU_PULLDOWN)
+*** ../vim-7.0.016/src/version.c	Sat May 13 09:16:38 2006
+--- src/version.c	Sat May 13 13:00:03 2006
+***************
+*** 668,669 ****
+--- 668,671 ----
+  {   /* Add new patch number below this line */
++ /**/
++     17,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+141. You'd rather go to http://www.weather.com/ than look out your window.
+
+ /// 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