debian/0000775000000000000000000000000012266004102007161 5ustar debian/libcommons-exec-java.poms0000664000000000000000000000322112265770154014102 0ustar # List of POM files for the package # Format of this file is: # [option]* # where option can be: # --ignore: ignore this POM and its artifact if any # --ignore-pom: don't install the POM. To use on POM files that are created # temporarily for certain artifacts such as Javadoc jars. [mh_install, mh_installpoms] # --no-parent: remove the tag from the POM # --package=: an alternative package to use when installing this POM # and its artifact # --has-package-version: to indicate that the original version of the POM is the same as the upstream part # of the version for the package. # --keep-elements=: a list of XML elements to keep in the POM # during a clean operation with mh_cleanpom or mh_installpom # --artifact=: path to the build artifact associated with this POM, # it will be installed when using the command mh_install. [mh_install] # --java-lib: install the jar into /usr/share/java to comply with Debian # packaging guidelines # --usj-name=: name to use when installing the library in /usr/share/java # --usj-version=: version to use when installing the library in /usr/share/java # --no-usj-versionless: don't install the versionless link in /usr/share/java # --dest-jar=: the destination for the real jar. # It will be installed with mh_install. [mh_install] # --classifier=: Optional, the classifier for the jar. Empty by default. # --site-xml=: Optional, the location for site.xml if it needs to be installed. # Empty by default. [mh_install] # pom.xml --no-parent --has-package-version --java-lib debian/changelog0000664000000000000000000000231412266004033011036 0ustar commons-exec (1.2-1) unstable; urgency=medium * New upstream release * Build with maven-debian-helper * Enabled the unit tests * debian/control: - Standards-Version updated to 3.9.5 (no changes) - Use canonical URLs for the Vcs-* fields * Switch to debhelper level 9 -- Emmanuel Bourg Thu, 16 Jan 2014 13:04:06 +0100 commons-exec (1.1-2) unstable; urgency=low * Team upload. * Upload to unstable. -- tony mancill Tue, 07 May 2013 20:02:31 -0700 commons-exec (1.1-1) experimental; urgency=low * Team upload. * New Upstream release * Bumped Standards-Version to 3.9.4 * Converted source to 3.0 (quilt). * Removed the deprecated DMUA flag * Removed the dependency on the JRE * Removed the unused dependency ${shlibs:Depends} from the binary package * debian/copyright: converted to DEP5 format, updated the contributors * debian/rules: the clean target now properly removes the debian/.mh directory -- Emmanuel Bourg Fri, 05 Apr 2013 10:32:09 +0200 commons-exec (1.0.1-1) unstable; urgency=low * Initial release (Closes: #568953) -- Peter Collingbourne Tue, 09 Feb 2010 02:45:32 +0000 debian/maven.ignoreRules0000664000000000000000000000041112265777130012524 0ustar org.apache.maven.plugins maven-antrun-plugin * * * * org.apache.maven.plugins maven-assembly-plugin * * * * org.apache.maven.plugins maven-changes-plugin * * * * org.apache.maven.plugins maven-release-plugin * * * * org.codehaus.mojo findbugs-maven-plugin * * * * debian/source/0000775000000000000000000000000012265770154010501 5ustar debian/source/format0000664000000000000000000000001412265770154011707 0ustar 3.0 (quilt) debian/copyright0000664000000000000000000000247712265770154011146 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: Apache Commons Exec Upstream-Contact: Apache Commons Developers Source: http://commons.apache.org/exec/ Files: * Copyright: 2005-2010, The Apache Software Foundation. License: Apache-2.0 Comment: Upstream authors: Siegfried Goeschl , Sebastian Bazley , Brett Leslie Porter , Niall Kegan Pemberton , Henri Yandell , Niklas Gustavsson , Dennis Lundberg , Trygve Laugstol , Rahul Akolkar , Joerg Schaible , Henri Biestro , Benjamin Bentmann, Marco Ferrante, Jerome Lacoste, Milos Kleint, Pablo Hoertner Files: debian/* License: Apache-2.0 Copyright: 2010, Peter Collingbourne License: Apache-2.0 On Debian systems, the full text of the Apache License can be found in the file `/usr/share/common-licenses/Apache-2.0'. debian/watch0000664000000000000000000000014012265770154010225 0ustar version=3 http://archive.apache.org/dist/commons/exec/source/commons-exec-([\d.]+)-src\.tar\.gz debian/maven.rules0000664000000000000000000000004212265770154011357 0ustar junit junit jar s/3\..*/3.x/ * * debian/rules0000775000000000000000000000044212265770154010261 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/maven.mk JAVA_HOME := /usr/lib/jvm/default-java #DEB_INSTALL_CHANGELOGS_ALL := RELEASE-NOTES.txt get-orig-source: uscan --download-version $(DEB_UPSTREAM_VERSION) --force-download --rename debian/compat0000664000000000000000000000000212265770154010377 0ustar 9 debian/control0000664000000000000000000000323712265770154010611 0ustar Source: commons-exec Section: java Priority: optional Maintainer: Debian Java Maintainers Uploaders: Peter Collingbourne , Ramakrishnan Muthukrishnan , Emmanuel Bourg Build-Depends: cdbs, debhelper (>= 9), default-jdk, maven-debian-helper, iputils-ping Standards-Version: 3.9.5 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=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.