r1099 - in /trunk/packages/vim-addon-manager: debian/TODO.Debian debian/changelog src/vim-addons

zack at users.alioth.debian.org zack at users.alioth.debian.org
Thu Nov 29 13:30:00 UTC 2007


Author: zack
Date: Thu Nov 29 13:30:00 2007
New Revision: 1099

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1099
Log:
* remove TODO.Debian, the only item was done in 0.3
* use "status" as the default command when none is given
* fix the license header of the vim-addons main executable to GPL v3

Removed:
    trunk/packages/vim-addon-manager/debian/TODO.Debian
Modified:
    trunk/packages/vim-addon-manager/debian/changelog
    trunk/packages/vim-addon-manager/src/vim-addons

Modified: trunk/packages/vim-addon-manager/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-addon-manager/debian/changelog?rev=1099&op=diff
==============================================================================
--- trunk/packages/vim-addon-manager/debian/changelog (original)
+++ trunk/packages/vim-addon-manager/debian/changelog Thu Nov 29 13:30:00 2007
@@ -1,8 +1,11 @@
-vim-addon-manager (0.4) UNRELEASED; urgency=low
+vim-addon-manager (0.4) unstable; urgency=low
 
   * vim-addons manpage: fix typo, s/linst/list/ (closes: #446527)
+  * remove TODO.Debian, the only item was done in 0.3
+  * use "status" as the default command when none is given
+  * fix the license header of the vim-addons main executable to GPL v3
 
- -- Stefano Zacchiroli <zack at debian.org>  Sun, 14 Oct 2007 13:49:08 +0200
+ -- Stefano Zacchiroli <zack at debian.org>  Thu, 29 Nov 2007 14:26:52 +0100
 
 vim-addon-manager (0.3) unstable; urgency=low
 

Modified: trunk/packages/vim-addon-manager/src/vim-addons
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-addon-manager/src/vim-addons?rev=1099&op=diff
==============================================================================
--- trunk/packages/vim-addon-manager/src/vim-addons (original)
+++ trunk/packages/vim-addon-manager/src/vim-addons Thu Nov 29 13:30:00 2007
@@ -21,7 +21,7 @@
 
 == SYNOPSIS
 
-vim-addons [OPTION ...] COMMAND [ADDON ...]
+vim-addons [OPTION ...] [COMMAND [ADDON ...]]
 
 == DESCRIPTION
 
@@ -65,7 +65,8 @@
 
 :status
   show, one per line, the status of the addons available in the system. If one
-  or more addon arguments are specified only show the status of those addons
+  or more addon arguments are specified only show the status of those addons.
+  This is the default command if nothing is specified.
 
 :install
   install one or more addons under ~/.vim. Requires at least one addon argument
@@ -135,8 +136,8 @@
 Copyright (C) 2007 Stefano Zacchiroli
 
 This program is free software, you can redistribute it and/or modify it under
-the terms of the GNU General Public License version 2 as published by the
-Free Software Foundation; either version 2 of the License, or (at your
+the terms of the GNU General Public License version 3 as published by the
+Free Software Foundation; either version 3 of the License, or (at your
 option) any later version.
 
 =end
@@ -150,9 +151,9 @@
 def die_usage
   print <<EOS
 Usage:
-  vim-addons [OPTION ...] COMMAND [ADDON ...]
+  vim-addons [OPTION ...] [COMMAND [ADDON ...]]
 Commands:
-  list, status, install, remove, disable, amend, files, show
+  list, status (default command), install, remove, disable, amend, files, show
 Options:
   -h, --help          show this usage message and exit
   -q, --query         be quiet and make the output more parseable
@@ -217,7 +218,7 @@
     die_usage
   end
   options[:target_dir] = options[:system_dir] if options[:system_wide]
-  die_usage unless cmd = ARGV.shift
+  cmd = 'status' unless cmd = ARGV.shift
   die_usage unless cmds.member? cmd
   die_usage if req_arg_cmds.member? cmd and ARGV.empty?
   [cmd, ARGV, options]




More information about the pkg-vim-maintainers mailing list