File: control

package info (click to toggle)
libcommons-cli-java 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 884 kB
  • ctags: 782
  • sloc: java: 6,631; xml: 1,897; makefile: 4; sh: 1
file content (31 lines) | stat: -rw-r--r-- 1,271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Source: libcommons-cli-java
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Ludovic Claude <ludovic.claude@laposte.net>,
 tony mancill <tmancill@debian.org>,
 Emmanuel Bourg <ebourg@apache.org>
Build-Depends: debhelper (>= 10),
 default-jdk,
 maven-debian-helper (>= 2.2~),
 junit4
Standards-Version: 3.9.8
Vcs-Git: https://anonscm.debian.org/git/pkg-java/libcommons-cli-java.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/libcommons-cli-java.git
Homepage: http://commons.apache.org/cli/

Package: libcommons-cli-java
Architecture: all
Depends: ${misc:Depends}
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 Foo)
  *  Short options with value attached (ie. gcc -O2 foo.c)
  *  long options with single hyphen (ie. ant -projecthelp)