[pkg-java] r10492 - trunk/jmp/debian

Michael Koch mkoch at alioth.debian.org
Sun Sep 20 06:54:55 UTC 2009


Author: mkoch
Date: 2009-09-20 06:54:52 +0000 (Sun, 20 Sep 2009)
New Revision: 10492

Modified:
   trunk/jmp/debian/changelog
   trunk/jmp/debian/compat
   trunk/jmp/debian/control
   trunk/jmp/debian/copyright
   trunk/jmp/debian/rules
Log:
jmp (0.51-2) unstable; urgency=low

  * debian/control.
    - Build-Depend on dehelper (>= 5).
    - Updated Standards-Version to 3.8.2.
    - Added Homepage field. 
  * debian/rules: Fix clean rule.
  * debian/copyright: Rewritten.

 -- Michael Koch <konqueror at gmx.de>  Sun, 26 Jul 2009 11:41:57 +0200



Modified: trunk/jmp/debian/changelog
===================================================================
--- trunk/jmp/debian/changelog	2009-09-19 15:19:28 UTC (rev 10491)
+++ trunk/jmp/debian/changelog	2009-09-20 06:54:52 UTC (rev 10492)
@@ -1,3 +1,14 @@
+jmp (0.51-2) unstable; urgency=low
+
+  * debian/control.
+    - Build-Depend on dehelper (>= 5).
+    - Updated Standards-Version to 3.8.2.
+    - Added Homepage field. 
+  * debian/rules: Fix clean rule.
+  * debian/copyright: Rewritten.
+
+ -- Michael Koch <konqueror at gmx.de>  Sun, 26 Jul 2009 11:41:57 +0200
+
 jmp (0.51-1) unstable; urgency=low
 
   * New upstream release. Closes: #381324, #399688.

Modified: trunk/jmp/debian/compat
===================================================================
--- trunk/jmp/debian/compat	2009-09-19 15:19:28 UTC (rev 10491)
+++ trunk/jmp/debian/compat	2009-09-20 06:54:52 UTC (rev 10492)
@@ -1 +1 @@
-4
+5

Modified: trunk/jmp/debian/control
===================================================================
--- trunk/jmp/debian/control	2009-09-19 15:19:28 UTC (rev 10491)
+++ trunk/jmp/debian/control	2009-09-20 06:54:52 UTC (rev 10492)
@@ -3,8 +3,9 @@
 Priority: optional
 Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
 Uploaders: Michael Koch <konqueror at gmx.de>
-Build-Depends: debhelper (>= 4.2.30), kaffe-dev (>= 2:1.1.6-3), pkg-config (>= 0.11.0), libglib2.0-dev (>= 2.0.1), libgtk2.0-dev (>= 2.0.2), libpango1.0-dev (>= 1.0.1), dpatch, chrpath
-Standards-Version: 3.7.2
+Build-Depends: debhelper (>= 5), kaffe-dev (>= 2:1.1.6-3), pkg-config (>= 0.11.0), libglib2.0-dev (>= 2.0.1), libgtk2.0-dev (>= 2.0.2), libpango1.0-dev (>= 1.0.1), dpatch, chrpath
+Standards-Version: 3.8.2
+Homepage: http://www.khelekore.org/jmp/
  
 Package: jmp
 Architecture: any

Modified: trunk/jmp/debian/copyright
===================================================================
--- trunk/jmp/debian/copyright	2009-09-19 15:19:28 UTC (rev 10491)
+++ trunk/jmp/debian/copyright	2009-09-20 06:54:52 UTC (rev 10492)
@@ -3,10 +3,26 @@
 
 It was downloaded from <http://www.khelekore.org/jmp/>.
 
-Upstream Author: 
-	Robert 'Ernimril' Olofsson <robo at khelekore.org>
+Upstream Author: Robert 'Ernimril' Olofsson <robo at khelekore.org>
 
-Copyright:
-JMP is licensed under GPL. You can find completely GPL description at 
-/usr/share/common-licenses/GPL.
+Copyright: (c) 2002-2009 Robert 'Ernimril' Olofsson
 
+License:
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program 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 General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+    MA 02110-1301, USA.
+
+On Debian systems you can find a full copy of the GNU Public License,
+Version 2 or later at /usr/share/common-licenses/GPL.

Modified: trunk/jmp/debian/rules
===================================================================
--- trunk/jmp/debian/rules	2009-09-19 15:19:28 UTC (rev 10491)
+++ trunk/jmp/debian/rules	2009-09-20 06:54:52 UTC (rev 10492)
@@ -1,16 +1,15 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper.
-# GNU copyright 1997 to 1999 by Joey Hess.
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
 export JAVA_HOME=/usr/lib/kaffe
 
 configure: configure-stamp
 configure-stamp:
 	dh_testdir
-	./configure --disable-rpath --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
+	./configure \
+		--disable-rpath \
+		--prefix=/usr \
+		--mandir=/usr/share/man \
+		--infodir=/usr/share/info
 	touch configure-stamp
 
 
@@ -25,7 +24,7 @@
 clean-patched:
 	dh_testdir
 	dh_testroot
-	-$(MAKE) distclean
+	[ ! -f Makefile ] || $(MAKE) distclean
 	rm -f config.log build-stamp configure-stamp jmp/JMPController.class
 	dh_clean
 
@@ -43,6 +42,7 @@
 	install -d $(CURDIR)/debian/jmp/usr/share/lintian/overrides/
 	install -m 644 $(CURDIR)/debian/lintian $(CURDIR)/debian/jmp/usr/share/lintian/overrides/jmp
 
+
 patch: patch-stamp
 patch-stamp:
 	dpatch apply-all
@@ -58,6 +58,7 @@
 binary-indep: build install
 # We have nothing to do by default.
 
+
 # Build architecture-dependent files here.
 binary-arch: build install
 	dh_testdir
@@ -75,5 +76,8 @@
 	dh_md5sums
 	dh_builddeb
 
+
 binary: binary-indep binary-arch
+
+
 .PHONY: build clean binary-indep binary-arch binary install configure




More information about the pkg-java-commits mailing list