[SCM] vim-addon-manager packaging branch, master, updated. eeca559cb690ff13f4db823d7de3bf47f05c7ad4

James Vega jamessan at debian.org
Sat Dec 19 14:16:55 UTC 2009


The following commit has been merged in the master branch:
commit eeca559cb690ff13f4db823d7de3bf47f05c7ad4
Author: James Vega <jamessan at debian.org>
Date:   Thu Dec 17 19:55:27 2009 -0500

    Add the target directory to the install/remove info message.
    
    Closes: #499563
    
    Signed-off-by: James Vega <jamessan at debian.org>

diff --git a/debian/changelog b/debian/changelog
index 418e080..d33139a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,8 @@ vim-addon-manager (0.4.2) UNRELEASED; urgency=low
     command for a little while for people that are used to the old name.
     (Closes: #501439)
   * Remove empty directories left behind when removing addons.
+  * Include the target directory in the install/remove informational messages.
+    (Closes: #499563)
 
  -- James Vega <jamessan at debian.org>  Fri, 24 Jul 2009 19:56:48 +0200
 
diff --git a/src/vim/addon-manager.rb b/src/vim/addon-manager.rb
index 3d87164..1afe833 100644
--- a/src/vim/addon-manager.rb
+++ b/src/vim/addon-manager.rb
@@ -39,11 +39,11 @@ module Vim
 	status = addon.status(@target_dir)
 	case status.status
 	when :broken
-	  Vim.info "installing broken addon '#{addon}'"
+	  Vim.info "installing broken addon '#{addon}' to #{@target_dir}"
 	  status.missing_files.each(&symlink)
 	  installed_files.concat(status.missing_files.to_a)
 	when :not_installed
-	  Vim.info "installing removed addon '#{addon}'"
+	  Vim.info "installing removed addon '#{addon}' to #{@target_dir}"
 	  addon.files.each(&symlink)
 	  installed_files.concat(addon.files.to_a)
 	when :unavailable
@@ -75,11 +75,11 @@ module Vim
 	status = addon.status(@target_dir)
 	case status.status
 	when :installed
-	  Vim.info "removing installed addon '#{addon}'"
+	  Vim.info "removing installed addon '#{addon}' from #{@target_dir}"
 	  addon.files.each(&rmdirs)
 	  removed_files.concat(addon.files.to_a)
 	when :broken
-	  Vim.info "removing broken addon '#{addon}'"
+	  Vim.info "removing broken addon '#{addon}' from #{@target_dir}"
 	  files = (addon.files - status.missing_files)
 	  files.each(&rmdirs)
 	  removed_files.concat(files.to_a)

-- 
vim-addon-manager packaging



More information about the pkg-vim-maintainers mailing list