File: control

package info (click to toggle)
commons-exec 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 820 kB
  • sloc: java: 3,358; xml: 1,188; sh: 47; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 1,698 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
32
33
Source: commons-exec
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Peter Collingbourne <peter@pcc.me.uk>, Ramakrishnan Muthukrishnan <rkrishnan@debian.org>,
 Emmanuel Bourg <ebourg@apache.org>
Build-Depends: cdbs, debhelper (>= 9), default-jdk, maven-debian-helper, iputils-ping, junit4
Standards-Version: 3.9.6
Vcs-Browser: http://anonscm.debian.org/cgit/pkg-java/commons-exec.git
Vcs-Git: git://anonscm.debian.org/pkg-java/commons-exec.git
Homepage: http://commons.apache.org/exec/

Package: libcommons-exec-java
Architecture: all
Depends: ${misc:Depends}
Description: Java library to reliably execute external processes from within the JVM
 Executing external processes from Java is a well-known problem
 area. It is inherently platform dependent and requires the developer
 to know and test for platform specific behaviors, for example
 using cmd.exe on Windows or limited buffer sizes causing deadlocks.
 The JRE support for this is very limited, albeit better with the
 new Java SE 1.5 ProcessBuilder class.
 .
 Reliably executing external processes can also require knowledge of
 the environment variables before or after the command is executed. In
 J2SE 1.1-1.4 there is no support for this, since the method,
 System.getenv(), for retrieving environment variables is deprecated.
 .
 There are currently several different libraries that for their own
 purposes have implemented frameworks around Runtime.exec() to handle
 the various issues outlined above. The commons-exec package aims
 at coordinating and learning from these initiatives to create and
 maintain a simple, reusable and well-tested package.