This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository libcommons-cli-java.
commit 3531dcb82fd046e4a649bf14f73895d36f342d1b Author: Emmanuel Bourg <[email protected]> Date: Tue Dec 15 12:46:10 2015 +0100 Improved the package description --- debian/changelog | 1 + debian/control | 15 ++++++++++++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index ed65c7d..df4edd1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ libcommons-cli-java (1.3.1-3) UNRELEASED; urgency=medium * Build with the DH sequencer instead of CDBS * Removed the unused dependency on commons-lang (Closes: #800148) * Removed the build dependencies on the antrun and assembly plugins + * Improved the package description -- Emmanuel Bourg <[email protected]> Tue, 15 Dec 2015 12:11:08 +0100 diff --git a/debian/control b/debian/control index 559c853..91f22cb 100644 --- a/debian/control +++ b/debian/control @@ -17,6 +17,15 @@ Homepage: http://commons.apache.org/cli/ Package: libcommons-cli-java Architecture: all Depends: ${misc:Depends} -Description: API for working with the command line arguments and options - You define arguments you want to parse, parse arguments the user - entered and then you can retrieve them like properties +Description: Command line arguments and options parsing library + The Apache Commons CLI library provides an API for parsing command line options + passed to programs. It's also able to print help messages detailing the options + available for a command line tool. + . + Commons CLI supports different types of options: + . + * POSIX like options (ie. tar -zxvf foo.tar.gz) + * GNU like long options (ie. du --human-readable --max-depth=1) + * Java like properties (ie. java -Djava.awt.headless=true -Djava.net.useSystemProxies=true Foo) + * Short options with value attached (ie. gcc -O2 foo.c) + * long options with single hyphen (ie. ant -projecthelp) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/libcommons-cli-java.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

