Your message dated Wed, 31 Oct 2012 11:35:09 +0100
with message-id <[email protected]>
and subject line Re: Bug#691914: unblock: vim-addon-manager/0.5.2
has caused the Debian Bug report #691914,
regarding unblock: vim-addon-manager/0.5.2
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
691914: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=691914
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: [email protected]
Usertags: unblock

Please unblock package vim-addon-manager

The version in unstable fixes one imporant bug (#681870), and also a
regression with the provided bash completion script. I think it is
important to get these fixes in wheezy.

You can find the debdiff between this version and the one in wheezy
attached to this email.

unblock vim-addon-manager/0.5.2

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=pt_BR.utf8, LC_CTYPE=pt_BR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-- 
Antonio Terceiro <[email protected]>
diff -Nru vim-addon-manager-0.5.0/debian/changelog 
vim-addon-manager-0.5.2/debian/changelog
--- vim-addon-manager-0.5.0/debian/changelog    2012-06-05 00:10:40.000000000 
+0200
+++ vim-addon-manager-0.5.2/debian/changelog    2012-10-30 18:52:14.000000000 
+0100
@@ -1,3 +1,21 @@
+vim-addon-manager (0.5.2) unstable; urgency=low
+
+  * New upload to remove `tags` file accidentally included in the source
+    package.
+
+ -- Antonio Terceiro <[email protected]>  Tue, 30 Oct 2012 18:51:40 +0100
+
+vim-addon-manager (0.5.1) unstable; urgency=low
+
+  [ James McCoy ]
+  * Fix calls to override_file and logger.info.  (Closes: #681870)
+
+  [ Antonio Terceiro ]
+  * Fix regression that caused bash completion file to not be installed.
+  * Fix bash completion function to work with alternative program names
+
+ -- Antonio Terceiro <[email protected]>  Tue, 30 Oct 2012 16:39:20 +0100
+
 vim-addon-manager (0.5.0) unstable; urgency=low
 
   * Addons now can now use a new layout: instead of having its files symlinked
diff -Nru vim-addon-manager-0.5.0/debian/gbp.conf 
vim-addon-manager-0.5.2/debian/gbp.conf
--- vim-addon-manager-0.5.0/debian/gbp.conf     1970-01-01 01:00:00.000000000 
+0100
+++ vim-addon-manager-0.5.2/debian/gbp.conf     2012-09-30 22:26:39.000000000 
+0200
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-tag = %(version)s
diff -Nru vim-addon-manager-0.5.0/debian/vim-addon-manager.install 
vim-addon-manager-0.5.2/debian/vim-addon-manager.install
--- vim-addon-manager-0.5.0/debian/vim-addon-manager.install    1970-01-01 
01:00:00.000000000 +0100
+++ vim-addon-manager-0.5.2/debian/vim-addon-manager.install    2012-09-30 
22:27:29.000000000 +0200
@@ -0,0 +1 @@
+etc/bash_completion.d/vim-addon-manager etc/bash_completion.d
diff -Nru vim-addon-manager-0.5.0/etc/bash_completion.d/vim-addon-manager 
vim-addon-manager-0.5.2/etc/bash_completion.d/vim-addon-manager
--- vim-addon-manager-0.5.0/etc/bash_completion.d/vim-addon-manager     
2012-04-09 03:13:18.000000000 +0200
+++ vim-addon-manager-0.5.2/etc/bash_completion.d/vim-addon-manager     
2012-10-30 11:42:19.000000000 +0100
@@ -19,7 +19,7 @@
   any_option=$(echo $options | sed -e 's/\s\+/|/g')
 
   # complete commands
-  if [[ "$prev" == 'vim-addons' ]]; then
+  if [[ "$prev" == 'vim-addons' ]] || [[ "$prev" == 'vim-addon-manager' ]] || 
[[ "$prev" == 'vam' ]]; then
     COMPREPLY=( $( compgen -W "$commands" -- $cur ) )
     return 0
   fi
diff -Nru vim-addon-manager-0.5.0/lib/vim/addon_manager.rb 
vim-addon-manager-0.5.2/lib/vim/addon_manager.rb
--- vim-addon-manager-0.5.0/lib/vim/addon_manager.rb    2012-03-06 
12:31:57.000000000 +0100
+++ vim-addon-manager-0.5.2/lib/vim/addon_manager.rb    2012-09-30 
22:26:39.000000000 +0200
@@ -96,7 +96,7 @@
             logger.info "enabling disabled addon '#{addon}'"
             lines.reject! {|line| addon.is_disabled_by? line}
           else
-            logger "ignoring addon '#{addon}' which is enabled"
+            logger.info "ignoring addon '#{addon}' which is enabled"
           end
         end
       end
@@ -122,7 +122,7 @@
 
     def map_override_lines
       override_lines = []
-      override_file = logger.override_file @target_dir
+      override_file = Vim::AddonManager.override_file @target_dir
       if File.exist? override_file
         File.open(override_file) do |file|
           override_lines += file.to_a

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
On 2012-10-31 11:28, Antonio Terceiro wrote:
> Package: release.debian.org
> Severity: normal
> User: [email protected]
> Usertags: unblock
> 
> Please unblock package vim-addon-manager
> 
> The version in unstable fixes one imporant bug (#681870), and also a
> regression with the provided bash completion script. I think it is
> important to get these fixes in wheezy.
> 
> You can find the debdiff between this version and the one in wheezy
> attached to this email.
> 
> unblock vim-addon-manager/0.5.2
> 
> [...]

Unblocked, thanks.

~Niels

--- End Message ---

Reply via email to