[pkg-java] r10378 - trunk/libgetopt-java/debian
Michael Koch
mkoch at alioth.debian.org
Tue Sep 15 09:42:15 UTC 2009
Author: mkoch
Date: 2009-09-15 09:42:15 +0000 (Tue, 15 Sep 2009)
New Revision: 10378
Modified:
trunk/libgetopt-java/debian/changelog
trunk/libgetopt-java/debian/compat
trunk/libgetopt-java/debian/control
trunk/libgetopt-java/debian/copyright
trunk/libgetopt-java/debian/rules
Log:
libgetopt-java (1.0.11-3) unstable; urgency=low
* (Build-)Depends on default-jdk.
* Build-Depends on debhelper >= 7.
* Use dh_prep instead of dh_clean -k.
* Clarified debian/copyright.
* Moved package to section 'java'
* Moved Build-Depends-Indep to Build-Depends.
* Let package Depends on ${misc:Depends}.
* Clarified debian/copyright.
* Removed Wolfgang and added myself to uploaders.
* Updated Standards-Version to 3.8.3.
-- Michael Koch <konqueror at gmx.de> Tue, 15 Sep 2009 08:13:13 +0200
Modified: trunk/libgetopt-java/debian/changelog
===================================================================
--- trunk/libgetopt-java/debian/changelog 2009-09-15 06:11:30 UTC (rev 10377)
+++ trunk/libgetopt-java/debian/changelog 2009-09-15 09:42:15 UTC (rev 10378)
@@ -1,3 +1,18 @@
+libgetopt-java (1.0.11-3) unstable; urgency=low
+
+ * (Build-)Depends on default-jdk.
+ * Build-Depends on debhelper >= 7.
+ * Use dh_prep instead of dh_clean -k.
+ * Clarified debian/copyright.
+ * Moved package to section 'java'
+ * Moved Build-Depends-Indep to Build-Depends.
+ * Let package Depends on ${misc:Depends}.
+ * Clarified debian/copyright.
+ * Removed Wolfgang and added myself to uploaders.
+ * Updated Standards-Version to 3.8.3.
+
+ -- Michael Koch <konqueror at gmx.de> Tue, 15 Sep 2009 08:13:13 +0200
+
libgetopt-java (1.0.11-2) unstable; urgency=low
* Removed Takashi Okamoto from the uploaders (closes: #352986).
Modified: trunk/libgetopt-java/debian/compat
===================================================================
--- trunk/libgetopt-java/debian/compat 2009-09-15 06:11:30 UTC (rev 10377)
+++ trunk/libgetopt-java/debian/compat 2009-09-15 09:42:15 UTC (rev 10378)
@@ -1 +1 @@
-4
+7
Modified: trunk/libgetopt-java/debian/control
===================================================================
--- trunk/libgetopt-java/debian/control 2009-09-15 06:11:30 UTC (rev 10377)
+++ trunk/libgetopt-java/debian/control 2009-09-15 09:42:15 UTC (rev 10378)
@@ -1,14 +1,14 @@
Source: libgetopt-java
-Section: devel
+Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
-Uploaders: Arnaud Vandyck <avdyk at debian.org>, Wolfgang Baer <WBaer at gmx.de>
-Build-Depends-Indep: debhelper (>= 4.2.30), kaffe (>= 2:1.1.5-3)
-Standards-Version: 3.6.2
+Uploaders: Arnaud Vandyck <avdyk at debian.org>, Michael Koch <konqueror at gmx.de>
+Build-Depends: debhelper (>= 7), default-jdk
+Standards-Version: 3.8.3
Package: libgetopt-java
Architecture: all
-Depends: kaffe (>= 2:1.1.5-3) | java1-runtime | java2-runtime
+Depends: default-jdk | java1-runtime | java2-runtime, ${misc:Depends}
Description: GNU getopt - Java port
The GNU Java getopt classes support short and long argument parsing
in a manner 100% compatible with the version of GNU getopt in glibc
Modified: trunk/libgetopt-java/debian/copyright
===================================================================
--- trunk/libgetopt-java/debian/copyright 2009-09-15 06:11:30 UTC (rev 10377)
+++ trunk/libgetopt-java/debian/copyright 2009-09-15 09:42:15 UTC (rev 10378)
@@ -6,7 +6,23 @@
Upstream Author: Aaron M. Renn <arenn at urbanophile.com>
-Copyright:
+Copyright: (c) 2001-2009 Aaron M. Renn
-GNU Library Public License Version 2.
-See /usr/share/common-licenses/LGPL2.
+License:
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
+
+On Debian systems the full text of the GNU Library Public License, can be
+found in the file /usr/share/common-licenses/LGPL.
Modified: trunk/libgetopt-java/debian/rules
===================================================================
--- trunk/libgetopt-java/debian/rules 2009-09-15 06:11:30 UTC (rev 10377)
+++ trunk/libgetopt-java/debian/rules 2009-09-15 09:42:15 UTC (rev 10378)
@@ -7,7 +7,7 @@
export LIBRARY=gnu-getopt.jar
export VERSION=1.0.11
-export JAVA_HOME=/usr/lib/kaffe
+export JAVA_HOME=/usr/lib/jvm/default-java
export JAVA=$(JAVA_HOME)/bin/java
export JAR=$(JAVA_HOME)/bin/jar
export JAVAC=$(JAVA_HOME)/bin/javac
@@ -18,7 +18,7 @@
build-stamp:
dh_testdir
mkdir classes
- ${JAVAC} -target 1.3 -d classes -classpath ${CLASSPATH} gnu/getopt/*.java
+ ${JAVAC} -target 1.3 -source 1.3 -d classes -classpath ${CLASSPATH} gnu/getopt/*.java
cp gnu/getopt/*.properties classes/gnu/getopt
touch build-stamp
@@ -32,7 +32,7 @@
install: build
dh_testdir
dh_testroot
- dh_clean -k
+ dh_prep
dh_installdirs
(cd classes; ${JAR} cvf ../debian/libgetopt-java/usr/share/java/gnu-getopt-${VERSION}.jar gnu)
mkdir -p debian/libgetopt-java/usr/share/doc/libgetopt-java/api
More information about the pkg-java-commits
mailing list