CVS commons-daemon/debian

Arnaud Vandyck avdyk@haydn.debian.org
Fri Nov 12 09:56:01 2004


Update of /cvsroot/pkg-java/commons-daemon/debian
In directory haydn:/tmp/cvs-serv15390

Modified Files:
	changelog control 
Log Message:
changed build-dep-indep to build-dep (closes: #280933).

--- /cvsroot/pkg-java/commons-daemon/debian/changelog	2004/10/11 09:01:22	1.1.1.1
+++ /cvsroot/pkg-java/commons-daemon/debian/changelog	2004/11/12 16:55:09	1.2
@@ -1,3 +1,15 @@
+commons-daemon (1.0-3) unstable; urgency=low
+
+  * changed build-dep-indep to build-dep (closes: #280933).
+
+ -- Arnaud Vandyck <avdyk@debian.org>  Fri, 12 Nov 2004 17:48:04 +0100
+
+commons-daemon (1.0-2) unstable; urgency=low
+
+  * improved description for jsvc-dev.
+
+ -- Arnaud Vandyck <avdyk@debian.org>  Fri, 29 Oct 2004 11:57:53 +0200
+
 commons-daemon (1.0-1) unstable; urgency=low
 
   * Initial Release.
--- /cvsroot/pkg-java/commons-daemon/debian/control	2004/10/11 09:01:22	1.1.1.1
+++ /cvsroot/pkg-java/commons-daemon/debian/control	2004/11/12 16:55:09	1.2
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
 Uploaders: Arnaud Vandyck <avdyk@debian.org>
-Build-Depends-Indep: debhelper (>> 4.0.0), sablevm, jikes, kaffe (>= 2:1.1.4), junit, cdbs, libant1.6-java, j2sdk1.4 | java2-compiler, libxerces2-java, libjaxp1.2-java
+Build-Depends: debhelper (>> 4.0.0), sablevm, jikes, kaffe (>= 2:1.1.4), junit, cdbs, libant1.6-java, j2sdk1.4 | java2-compiler, libxerces2-java, libjaxp1.2-java
 Standards-Version: 3.6.1
 
 Package: libcommons-daemon-java
@@ -67,8 +67,25 @@
 Package: jsvc-dev
 Architecture: all
 Depends: jsvc
-Description: header file for jsvc
- See the description of the jsvc package, thanks.
+Description: development files for jsvc
+ Having a single-point of entry is a valid solution for client
+ applications, where interactively a user can command to the application
+ to quit (which can terminate the Virtual Machine process at calling the
+ System  .exit( int  )  method), but in those cases where the
+ application is not interactive (server applications) there is currently
+ no portable way to notify the Virtual Machine of its imminent shutdown.
+ .
+ Most multi-user operating systems already have a way in which server
+ applications are started and stopped, under Unix based operating
+ systems non interactive server applications are called daemons and are
+ controlled by the operating system with a set of specified
+ signals. Under Windows such programs are called services and are
+ controlled by appropriate calls to specific functions defined in the
+ application binary, but although the ways of dealing with the problem
+ are different, in both cases the operating system can notify a server
+ application of its imminent shutdown, and the application has the
+ ability to perform certain tasks before its process of execution is
+ destroyed.
  .
  This is a part of the Apache Jakarta Project.
  Home: <http://jakarta.apache.org/commons/daemon/>