This is an automated email from the git hooks/post-receive script. tmancill pushed a commit to branch master in repository commons-daemon.
commit 99af19610213a9ec17dcc1c581925d6700c4e5af Author: Michael Koch <[email protected]> Date: Sat Jul 1 15:56:17 2006 +0000 Imported Debian patch 1.0.1-2 --- debian/changelog | 8 +++ debian/control | 8 +-- debian/jsvc.1.xml | 156 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ debian/rules | 12 ++--- 4 files changed, 171 insertions(+), 13 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7e9b5bb..8e420c0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +commons-daemon (1.0.1-2) unstable; urgency=low + + * (Builds-)Depends on java-gcj-compat(-dev) instead of kaffe(-dev) + (Closes: #358343). + * Update Standards-Version to 3.7.2. + + -- Michael Koch <[email protected]> Sat, 1 Jul 2006 15:56:17 +0000 + commons-daemon (1.0.1-1) unstable; urgency=low * New upstream release diff --git a/debian/control b/debian/control index 0fc1b6c..6730ae3 100644 --- a/debian/control +++ b/debian/control @@ -2,13 +2,13 @@ Source: commons-daemon Section: libs Priority: optional Maintainer: Debian Java Maintainers <[email protected]> -Uploaders: Arnaud Vandyck <[email protected]>, Wolfgang Baer <[email protected]> -Build-Depends: debhelper (>= 4.2.30), cdbs, kaffe (>= 2:1.1.5-3), kaffe-dev (>= 2:1.1.5-3), junit, ant, libxerces2-java, libjaxp1.2-java, autotools-dev -Standards-Version: 3.6.2 +Uploaders: Arnaud Vandyck <[email protected]>, Wolfgang Baer <[email protected]>, Michael Koch <[email protected]> +Build-Depends: debhelper (>= 4.2.30), cdbs, java-gcj-compat-dev, junit, ant, libxerces2-java, libjaxp1.2-java, autotools-dev +Standards-Version: 3.7.2 Package: libcommons-daemon-java Architecture: all -Depends: kaffe (>= 2:1.1.5-3) | java1-runtime | java2-runtime +Depends: java-gcj-compat | java1-runtime | java2-runtime Suggests: java-virtual-machine Recommends: jsvc Description: Java API to launch java applications as daemons diff --git a/debian/jsvc.1.xml b/debian/jsvc.1.xml new file mode 100644 index 0000000..e076677 --- /dev/null +++ b/debian/jsvc.1.xml @@ -0,0 +1,156 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"> +<refentry id='jsvc1'> + <refmeta> + <refentrytitle>JSVC</refentrytitle> + <manvolnum>1</manvolnum> + <refmiscinfo class='date'>October 2004</refmiscinfo> + <refmiscinfo class='source'>Jsvc version 1.0</refmiscinfo> + <refmiscinfo class='manual'>Jakarta project</refmiscinfo> + </refmeta> + <refnamediv id='name'> + <refname>jsvc</refname> + <refpurpose>application to launch java daemon</refpurpose> + </refnamediv> + <!-- body begins here --> + <refsynopsisdiv id='synopsis'> + <cmdsynopsis> + <command>jsvc</command> + <arg choice='opt'>-jvm <replaceable>JVM name</replaceable></arg> + <arg choice='opt'>-classpath <replaceable>path</replaceable></arg> + <arg choice='opt'>-cp <replaceable>path</replaceable></arg> + <arg choice='opt'>-home <replaceable>directory</replaceable></arg> + <arg choice='opt'>-version</arg> + <arg choice='opt'>-help</arg> + <arg choice='opt'>-?</arg> + <arg choice='opt'>-nodetach</arg> + <arg choice='opt'>-debug</arg> + <arg choice='opt'>-check</arg> + <arg choice='opt'>-user</arg> + <arg choice='opt'>-verbose<replaceable>:class|gc|jni</replaceable></arg> + <arg choice='opt'>-outfile <replaceable>/full/path/to/file</replaceable></arg> + <arg choice='opt'>-errfile <replaceable>/full/path/to/file</replaceable></arg> + <arg choice='opt'>-pidfile <replaceable>/full/path/to/file</replaceable></arg> + <arg choice='opt'>-Dproperty=<replaceable>value</replaceable></arg> + <arg choice='opt'>-X<replaceable>option</replaceable></arg> + <!-- end of the new arguments --> + </cmdsynopsis> + </refsynopsisdiv> + <refsect1 id="description"> + <title>DESCRIPTION</title> + <para><command>jsvc</command> executes <emphasis remap="I">classfile</emphasis> + that implements a Daemon interface.</para> + </refsect1> + + <refsect1 id="options"> + <title>OPTIONS</title> + + <variablelist remap="TP"> + <varlistentry> + <term><option>-jvm</option> JVM name</term> + <listitem> + <para>use a specific Java Virtual Machine.</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-cp/ -classpath</option> directory and zip/jar + files</term> + <listitem> + <para>set search path for service classes and resouces</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-home</option> directory</term> + <listitem> + <para>set the path of your JDK or JRE installation (or set + the JAVA_HOME environment variable) + </para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-version</option></term> + <listitem> + <para>show the current Java environment version (to check + correctness of -home and -jvm. Implies -nodetach)</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-help</option></term> + <listitem> + <para>show this help page (implies -nodetach)</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-nodetach</option></term> + <listitem> + <para>don't detach from parent process and become a daemon</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-debug</option></term> + <listitem> + <para>verbosely print debugging information</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-check</option></term> + <listitem> + <para>only check service (implies -nodetach)</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-user</option></term> + <listitem> + <para>user used to run the daemon (defaults to current user)</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-verbose[:class|gc|jni]</option></term> + <listitem> + <para>enable verbose output</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-outfile</option> /full/path/to/file</term> + <listitem> + <para>Location for output from stdout (defaults to /dev/null). Use + the value '&2' to simulate '1>&2'</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-errfile</option> /full/path/to/file</term> + <listitem> + <para>Location for output from stderr (defaults to /dev/null). Use + the value '&1' to simulate '2>&1'</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-pidfile</option> /full/path/to/file</term> + <listitem> + <para>Location for output from the file containing the pid of jsvc + (defaults to /var/run/jsvc.pid)</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-D</option><name>=<value></term> + <listitem> + <para>set a Java system property</para> + </listitem> + </varlistentry> + <varlistentry> + <term><option>-X</option><option></term> + <listitem> + <para>set Virtual Machine specific option</para> + </listitem> + </varlistentry> + </variablelist> + </refsect1> + + <refsect1 id='author'><title>AUTHOR</title> + <para>JSVC is part of the Jakarta Commons Daemon project. Authors are + Jean-Frederic Clere, Remy Maucherat, Yoav Shapira, Bill Barker. JSVC is + under the Apache License Version 2.0.</para> + </refsect1> + +</refentry> diff --git a/debian/rules b/debian/rules index 01aed0f..20ca623 100755 --- a/debian/rules +++ b/debian/rules @@ -11,10 +11,9 @@ include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/class/ant.mk -JAVA_HOME := /usr/lib/kaffe +JAVA_HOME := /usr/lib/jvm/java-gcj ANT_HOME := /usr/share/ant -DEB_JARS := ${ANT_HOME}/lib/ant-launcher.jar jaxp-1.2 xercesImpl -DEB_ANT_COMPILER := jikes +DEB_JARS := jaxp-1.2 xercesImpl DEB_ANT_BUILD_TARGET := dist LIBRARY=commons-daemon @@ -34,9 +33,4 @@ common-build-arch:: cd src/native/unix ; make install/lib${LIBRARY}-java:: - install -m 644 dist/${LIBRARY}.jar debian/lib${LIBRARY}-java/usr/share/java/${LIBRARY}-${VERSION}.jar - # install lintian overrides - #install -d $(CURDIR)/debian/kaffe-pthreads-profile/usr/share/lintian/overrides/ - #install -m 644 $(CURDIR)/debian/kaffe-pthreads-profile.lintian $(CURDIR)/debian/kaffe-pthreads-profile/usr/share/lintian/overrides/kaffe-pthreads-profile - - + install -m 644 dist/${LIBRARY}.jar debian/lib${LIBRARY}-java/usr/share/java/${LIBRARY}-${VERSION}.jar -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/commons-daemon.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

