commons-exec 1.3-2 source package in Ubuntu

Changelog

commons-exec (1.3-2) unstable; urgency=medium

  [ tony mancill ]
  * Remove Ramakrishnan Muthukrishnan from Uploaders (Closes: #859287)

  [ Emmanuel Bourg ]
  * Remove Peter Collingbourne from Uploaders (Closes: #740322)
  * Build with the DH sequencer instead of CDBS
  * Standards-Version updated to 4.5.1
  * Switch to debhelper level 13
  * Use salsa.debian.org Vcs-* URLs
  * Use secure URIs

 -- Emmanuel Bourg <email address hidden>  Wed, 03 Feb 2021 22:51:08 +0100

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
java
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe java
Noble release universe java
Mantic release universe java
Lunar release universe java
Jammy release universe java

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
commons-exec_1.3-2.dsc 2.0 KiB a73034771b1e223c3f829b6f8269922a407b94da4dbd5a15835bd0cbc2c06aa4
commons-exec_1.3.orig.tar.gz 149.8 KiB db0742fa59b7d69375e5d99e827aee0bf06ac527aa6def63618950e40c24cb9f
commons-exec_1.3-2.debian.tar.xz 3.2 KiB 866597477d1c5f92b1edbe65d7d5c4727121d27e5be446c2ca69583034a31e7f

Available diffs

No changes file available.

Binary packages built by this source

libcommons-exec-java: 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.