[pkg-java] r10449 - trunk/commons-daemon/debian
Michael Koch
mkoch at alioth.debian.org
Thu Sep 17 21:12:20 UTC 2009
Author: mkoch
Date: 2009-09-17 21:12:20 +0000 (Thu, 17 Sep 2009)
New Revision: 10449
Modified:
trunk/commons-daemon/debian/changelog
trunk/commons-daemon/debian/compat
trunk/commons-daemon/debian/control
trunk/commons-daemon/debian/copyright
trunk/commons-daemon/debian/rules
trunk/commons-daemon/debian/watch
Log:
commons-daemon (1.0.2~svn20061127-10) unstable; urgency=low
* Build-Depends on libcap2-dev (Closes: #506548).
* Added kfreebsd-* support to src/native/unix/support/apsupport.m4
(Closes: #498376).
* Point stdout and stderr to /dev/null for the daemon process
(Closes: #491500, #507968).
* Build-Depends on debhelper >= 7.
* Replace dh_clean -k with dh_prep.
* Moved package to section 'java'.
* Rewrote debian/copyright to refer to
/usr/share/common-licenses/Apache-2.0.
* Updated to Standards-Version 3.8.3.
-- Michael Koch <konqueror at gmx.de> Thu, 17 Sep 2009 22:54:55 +0200
Modified: trunk/commons-daemon/debian/changelog
===================================================================
--- trunk/commons-daemon/debian/changelog 2009-09-17 21:09:45 UTC (rev 10448)
+++ trunk/commons-daemon/debian/changelog 2009-09-17 21:12:20 UTC (rev 10449)
@@ -1,3 +1,19 @@
+commons-daemon (1.0.2~svn20061127-10) unstable; urgency=low
+
+ * Build-Depends on libcap2-dev (Closes: #506548).
+ * Added kfreebsd-* support to src/native/unix/support/apsupport.m4
+ (Closes: #498376).
+ * Point stdout and stderr to /dev/null for the daemon process
+ (Closes: #491500, #507968).
+ * Build-Depends on debhelper >= 7.
+ * Replace dh_clean -k with dh_prep.
+ * Moved package to section 'java'.
+ * Rewrote debian/copyright to refer to
+ /usr/share/common-licenses/Apache-2.0.
+ * Updated to Standards-Version 3.8.3.
+
+ -- Michael Koch <konqueror at gmx.de> Thu, 17 Sep 2009 22:54:55 +0200
+
commons-daemon (1.0.2~svn20061127-9) unstable; urgency=low
* Added patch to handle old capabilities version in jsvc-unix.c.
Modified: trunk/commons-daemon/debian/compat
===================================================================
--- trunk/commons-daemon/debian/compat 2009-09-17 21:09:45 UTC (rev 10448)
+++ trunk/commons-daemon/debian/compat 2009-09-17 21:12:20 UTC (rev 10449)
@@ -1 +1 @@
-5
+7
Modified: trunk/commons-daemon/debian/control
===================================================================
--- trunk/commons-daemon/debian/control 2009-09-17 21:09:45 UTC (rev 10448)
+++ trunk/commons-daemon/debian/control 2009-09-17 21:12:20 UTC (rev 10449)
@@ -1,12 +1,12 @@
Source: commons-daemon
-Section: libs
+Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
Uploaders: Arnaud Vandyck <avdyk at debian.org>, Michael Koch <konqueror at gmx.de>, Marcus Better <marcus at better.se>
-Build-Depends: debhelper (>= 5), autoconf, autotools-dev, java-gcj-compat-dev, xsltproc, docbook-xsl, ant
+Build-Depends: debhelper (>= 7), autoconf, autotools-dev, java-gcj-compat-dev, xsltproc, docbook-xsl, ant
Build-Conflicts: autoconf2.13
-Standards-Version: 3.7.3
-Homepage: http://commons.apache.org/daemon/
+Standards-Version: 3.8.3
+Homepage: http://jakarta.apache.org/commons/daemon/
Vcs-Svn: svn://svn.debian.org/pkg-java/trunk/commons-daemon
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/commons-daemon/
@@ -16,7 +16,7 @@
Suggests: java-virtual-machine
Recommends: jsvc
Description: library to launch Java applications as daemons
- The Daemon package from Apache Commons can be used to implement Java
+ The Daemon package from Jakarta Commons can be used to implement Java
applications which can be launched as daemons. For example the
program will be notified about a shutdown so that it can perform
cleanup tasks before its process of execution is destroyed by the
Modified: trunk/commons-daemon/debian/copyright
===================================================================
--- trunk/commons-daemon/debian/copyright 2009-09-17 21:09:45 UTC (rev 10448)
+++ trunk/commons-daemon/debian/copyright 2009-09-17 21:12:20 UTC (rev 10449)
@@ -1,20 +1,30 @@
This package was debianized by Arnaud Vandyck <avdyk at debian.org> on
Sam, 09 Oct 2004 17:46:48 +0200.
-It was downloaded from <http://commons.apache.org/daemon>.
+It was downloaded from <http://jakarta.apache.org/commons/daemon>.
-Upstream Authors: Mladen Turk,
- Jean-Frederic Clere <jfclere at apache.org>,
- Remy Maucherat <remm at apache.org>,
- Yoav Shapira <yoavs at apache.org>,
- Bill Barker <billbarker at apache.org>
+Upstream authors: Bill Barker, Jean-Frederic Clere, Mladen Turk, Remy
+Maucherat, Pier Fumagalli, Yoav Shapira.
+
+commons-daemon is Copyright (C) 1999-2005 The Apache Software
+Foundation.
-Copyright: © 2003-2008 The Apache Software Foundation
+The Debian packaging is Copyright (C) 2006 Marcus Better (and others)
+and licensed under the same license as commons-daemon itself.
-License: Apache 2.0
+License:
-On Debian systems the full text of the Apache License can be found
-in `/usr/share/common-licenses/Apache-2.0'.
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
-The Debian packaging is Copyright (C) 2006 Marcus Better (and others)
-and licensed under the same license as commons-daemon itself.
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+On Debian system you can find the complete text of the Apache License,
+Version 2, in the file '/usr/share/common-licenses/Apache-2.0'.
Modified: trunk/commons-daemon/debian/rules
===================================================================
--- trunk/commons-daemon/debian/rules 2009-09-17 21:09:45 UTC (rev 10448)
+++ trunk/commons-daemon/debian/rules 2009-09-17 21:12:20 UTC (rev 10449)
@@ -84,7 +84,7 @@
install-indep: build-indep
dh_testdir
dh_testroot
- dh_clean -k -i
+ dh_prep -i
dh_installdirs -i
dh_install -i
install -m 644 dist/$(PKGNAME).jar $(JAVALIBDIR)/$(PKGNAME)-$(VERSION).jar
@@ -95,7 +95,7 @@
install-arch: build-arch
dh_testdir
dh_testroot
- dh_clean -k -a
+ dh_prep -a
dh_installdirs -a
dh_install -a
dh_installdocs -a
Modified: trunk/commons-daemon/debian/watch
===================================================================
--- trunk/commons-daemon/debian/watch 2009-09-17 21:09:45 UTC (rev 10448)
+++ trunk/commons-daemon/debian/watch 2009-09-17 21:12:20 UTC (rev 10449)
@@ -1,3 +1,3 @@
version=3
opts="dversionmangle=s/1.0.2\~svn.*$/1.0.1/" \
-http://www.apache.org/dist/commons/daemon/source/daemon-(.*)\.tar\.gz
+http://www.apache.org/dist/jakarta/commons/daemon/source/daemon-(.*)\.tar\.gz
More information about the pkg-java-commits
mailing list