r399 - in branches/vim-tiny/debian: . runtime

Stefano Zacchiroli zack at costa.debian.org
Sat Nov 5 19:03:59 UTC 2005


Author: zack
Date: 2005-11-05 19:03:58 +0000 (Sat, 05 Nov 2005)
New Revision: 399

Modified:
   branches/vim-tiny/debian/changelog
   branches/vim-tiny/debian/runtime/vimrc
Log:
- fix for vimrc: current version inhibit /usr/bin/ex
- filled changelog with latest changes


Modified: branches/vim-tiny/debian/changelog
===================================================================
--- branches/vim-tiny/debian/changelog	2005-11-05 18:25:01 UTC (rev 398)
+++ branches/vim-tiny/debian/changelog	2005-11-05 19:03:58 UTC (rev 399)
@@ -1,14 +1,19 @@
 vim (1:6.4-001+3) UNRELEASED; urgency=low
 
   [ Stefano Zacchiroli ]
+  * Added back vim-tiny package. (closes: #222138)
+  * Reshaped vim packaging: vim-common now contains arch-dependent common
+    files, vim-runtime the vim runtime (arch-independent), vim the standard
+    variant, vim-* the other variants. vim-tiny is a special variant which
+    does not depend on vim-runtime.
   * Added symlink /usr/share/vim/vimcurrent -> vim64, will be kept
     proper in future releases. /etc/vim/vimrc no longer version-aware.
-  * Removed duplicate /usr/share/vim/vimfiles entry in vimrc
-  * au commands in vimrc executed only if has("autocmd")
-  * Drafted vim-tiny proposal in debian/TODO
+  * Removed duplicate /usr/share/vim/vimfiles entry in vimrc.
+  * (Re-)Fixed debian/runtime/vimrc, last version inhibit /usr/bin/ex.
+  * au commands in vimrc executed only if has("autocmd").
   * No longer try to move configuration files from /etc to /etc/vim
-    (ancient preinst, no longer needed to support upgrades from sarge)
-  * Updated Description-s in debian/control
+    (ancient preinst, no longer needed to support upgrades from sarge).
+  * Updated Description-s in debian/control.
 
  -- Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>  Sun, 23 Oct 2005 16:41:04 +0200
 

Modified: branches/vim-tiny/debian/runtime/vimrc
===================================================================
--- branches/vim-tiny/debian/runtime/vimrc	2005-11-05 18:25:01 UTC (rev 398)
+++ branches/vim-tiny/debian/runtime/vimrc	2005-11-05 19:03:58 UTC (rev 399)
@@ -55,11 +55,10 @@
 
 " Set paper size from /etc/papersize if available (Debian-specific)
 if filereadable("/etc/papersize")
-  silent exec "new"
-  silent exec "view /etc/papersize"
-  let s:t = getline(".")
-  silent exec "bd!"
-  let s:papersize = matchstr(s:t, "\\p*")
+  let s:shellbak = &shell
+  let &shell="/bin/sh"
+  let s:papersize = matchstr(system("cat /etc/papersize"), "\\p*")
+  let &shell=s:shellbak
   if strlen(s:papersize)
     let &printoptions = "paper:" . s:papersize
   endif




More information about the pkg-vim-maintainers mailing list