Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Please unblock package vim vim-lesstif became a transitional package during the Wheezy cycle and didn't properly handle converting /usr/share/doc/vim-lesstif from a symlink to a directory. The 2:7.3.547-7 upload, as shown in the debdiff below, fixes this. unblock vim/2:7.3.547-7 Cheers, James diffstat for vim-7.3.547 vim-7.3.547 changelog | 8 ++++++++ control | 2 +- vim-lesstif.preinst | 10 ++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff -Nru vim-7.3.547/debian/changelog vim-7.3.547/debian/changelog --- vim-7.3.547/debian/changelog 2012-11-22 09:37:54.000000000 -0500 +++ vim-7.3.547/debian/changelog 2013-02-09 18:44:01.000000000 -0500 @@ -1,3 +1,11 @@ +vim (2:7.3.547-7) unstable; urgency=low + + * Add vim-lesstif.preinst to handle transitioning /usr/share/doc/vim-lesstif + from a symlink to a directory. (Closes: #700069) + * Add clarification to short description of vim-nox. (Closes: #699780) + + -- James McCoy <[email protected]> Sat, 09 Feb 2013 18:43:57 -0500 + vim (2:7.3.547-6) unstable; urgency=low * Always enable ACL support. (Closes: #693462) diff -Nru vim-7.3.547/debian/control vim-7.3.547/debian/control --- vim-7.3.547/debian/control 2012-09-15 23:15:05.000000000 -0400 +++ vim-7.3.547/debian/control 2013-02-09 17:20:28.000000000 -0500 @@ -170,7 +170,7 @@ Depends: vim-common (= ${binary:Version}), vim-runtime (= ${source:Version}), ${misc:Depends}, ${shlibs:Depends} Suggests: cscope, vim-doc Provides: vim, editor, vim-perl, vim-python, vim-ruby, vim-tcl, vim-lua -Description: Vi IMproved - enhanced vi editor +Description: Vi IMproved - enhanced vi editor - with scripting languages support Vim is an almost compatible version of the UNIX editor Vi. . Many new features have been added: multi level undo, syntax diff -Nru vim-7.3.547/debian/vim-lesstif.preinst vim-7.3.547/debian/vim-lesstif.preinst --- vim-7.3.547/debian/vim-lesstif.preinst 1969-12-31 19:00:00.000000000 -0500 +++ vim-7.3.547/debian/vim-lesstif.preinst 2013-02-09 17:13:08.000000000 -0500 @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +if [ -L "/usr/share/doc/vim-lesstif" ]; then + rm -f "/usr/share/doc/vim-lesstif" +fi + +#DEBHELPER# + +exit 0 -- System Information: Debian Release: 7.0 APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.7-trunk-amd64 (SMP w/8 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

