r1060 - in /trunk/packages/vim/debian: changelog vim-full.preinst

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Sat Oct 13 16:47:00 UTC 2007


Author: jamessan
Date: Sat Oct 13 16:47:00 2007
New Revision: 1060

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1060
Log:
* Brown-paper bag bug in vim-full.preinst.  Need to grep for bin/vim.full
  not vim/vim.full.  (Closes: #446462)

Modified:
    trunk/packages/vim/debian/changelog
    trunk/packages/vim/debian/vim-full.preinst

Modified: trunk/packages/vim/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/changelog?rev=1060&op=diff
==============================================================================
--- trunk/packages/vim/debian/changelog (original)
+++ trunk/packages/vim/debian/changelog Sat Oct 13 16:47:00 2007
@@ -1,4 +1,4 @@
-vim (1:7.1-138+1) UNRELEASED; urgency=low
+vim (1:7.1-138+1) unstable; urgency=medium
 
   [ Debian Vim Maintainers ]
   * New upstream patches (136 - 138), see README.gz for details.
@@ -9,8 +9,10 @@
     - Remove a useless command from the variant clean target
     - Clean vim-tiny's generated debhelper files
     - Clean generated vim-policy files
-
- -- James Vega <jamessan at debian.org>  Tue, 09 Oct 2007 12:27:27 -0400
+  * Brown-paper bag bug in vim-full.preinst.  Need to grep for bin/vim.full
+    not vim/vim.full.  (Closes: #446462)
+
+ -- James Vega <jamessan at debian.org>  Sat, 13 Oct 2007 12:45:04 -0400
 
 vim (1:7.1-135+1) unstable; urgency=low
 

Modified: trunk/packages/vim/debian/vim-full.preinst
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim/debian/vim-full.preinst?rev=1060&op=diff
==============================================================================
--- trunk/packages/vim/debian/vim-full.preinst (original)
+++ trunk/packages/vim/debian/vim-full.preinst Sat Oct 13 16:47:00 2007
@@ -23,7 +23,7 @@
 remove_variant_alternative () {
   for i in vi view ex editor rvim rview vimdiff vim; do
     check_and_remove_alternative $i
-    if update-alternatives --list $i | grep -q vim/vim.$variant; then
+    if update-alternatives --list $i | grep -q bin/vim.$variant; then
       update-alternatives --remove $i /usr/bin/vim.$variant
     fi
   done
@@ -33,7 +33,7 @@
 remove_gui_variant_alternative () {
   for i in eview evim gview gvimdiff rgview rgvim gvim; do
     check_and_remove_alternative $i
-    if update-alternatives --list $i | grep -q vim/vim.$variant; then
+    if update-alternatives --list $i | grep -q bin/vim.$variant; then
       update-alternatives --remove $i /usr/bin/vim.$variant
     fi
   done




More information about the pkg-vim-maintainers mailing list