[pkg-java] r5674 - in trunk: . java-common java-wrappers java-wrappers/debian statsvn/debian

fourmond at alioth.debian.org fourmond at alioth.debian.org
Mon Feb 11 19:12:44 UTC 2008


Author: fourmond
Date: 2008-02-11 19:12:43 +0000 (Mon, 11 Feb 2008)
New Revision: 5674

Added:
   trunk/java-wrappers/
   trunk/java-wrappers/debian/
   trunk/java-wrappers/debian/changelog
   trunk/java-wrappers/debian/compat
   trunk/java-wrappers/debian/control
   trunk/java-wrappers/debian/copyright
   trunk/java-wrappers/debian/java-wrappers.install
   trunk/java-wrappers/debian/java-wrappers.manpages
   trunk/java-wrappers/debian/rules
Removed:
   trunk/java-common/wrappers/
Modified:
   trunk/statsvn/debian/copyright
Log:
Moved java-wrappers to a separate package

Copied: trunk/java-wrappers (from rev 5673, trunk/java-common/wrappers)

Added: trunk/java-wrappers/debian/changelog
===================================================================
--- trunk/java-wrappers/debian/changelog	                        (rev 0)
+++ trunk/java-wrappers/debian/changelog	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1,5 @@
+java-wrappers (0.1) unstable; urgency=low
+
+  * Initial release. 
+
+ -- Vincent Fourmond <fourmond at debian.org>  Mon, 11 Feb 2008 20:02:05 +0100

Added: trunk/java-wrappers/debian/compat
===================================================================
--- trunk/java-wrappers/debian/compat	                        (rev 0)
+++ trunk/java-wrappers/debian/compat	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1 @@
+5
\ No newline at end of file

Added: trunk/java-wrappers/debian/control
===================================================================
--- trunk/java-wrappers/debian/control	                        (rev 0)
+++ trunk/java-wrappers/debian/control	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1,16 @@
+Source: java-wrappers
+Section: misc
+Priority: optional
+Maintainer: Debian Java Mailing List <debian-java at lists.debian.org>
+Uploaders: Vincent Fourmond <fourmond at debian.org>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.3
+
+Package: java-wrappers
+Architecture: all
+Description: wrappers for java executables
+ Wrapper script facilities for java executables.
+ . 
+ This package can be used by packagers of java programs to
+ provide java runtime detection, jar lookup and a consistent
+ user interface (debugging, environment variables).
\ No newline at end of file

Added: trunk/java-wrappers/debian/copyright
===================================================================
--- trunk/java-wrappers/debian/copyright	                        (rev 0)
+++ trunk/java-wrappers/debian/copyright	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1,17 @@
+java-wrappers was written and debianized by Vincent Fourmond
+
+Copyright 2007, 2008 by Vincent Fourmond <fourmond at debian.org>
+
+  This library is free software; you can redistribute it and/or
+  modify it under the terms of the GNU Lesser General Public
+  License as published by the Free Software Foundation; either
+  version 2.1 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
+  Lesser General Public License for more details.
+
+  You should have received a copy of the GNU Lesser General Public
+  License along with this library; if not, write to the Free Software
+  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

Added: trunk/java-wrappers/debian/java-wrappers.install
===================================================================
--- trunk/java-wrappers/debian/java-wrappers.install	                        (rev 0)
+++ trunk/java-wrappers/debian/java-wrappers.install	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1 @@
+java-wrappers.sh usr/lib/java-wrappers
\ No newline at end of file

Added: trunk/java-wrappers/debian/java-wrappers.manpages
===================================================================
--- trunk/java-wrappers/debian/java-wrappers.manpages	                        (rev 0)
+++ trunk/java-wrappers/debian/java-wrappers.manpages	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1 @@
+java-wrappers.7
\ No newline at end of file

Added: trunk/java-wrappers/debian/rules
===================================================================
--- trunk/java-wrappers/debian/rules	                        (rev 0)
+++ trunk/java-wrappers/debian/rules	2008-02-11 19:12:43 UTC (rev 5674)
@@ -0,0 +1,46 @@
+#!/usr/bin/make -f
+# MAde with the aid of dh_make, by Craig Small
+# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# Some lines taken from debmake, by Cristoph Lameter.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean
+
+install: install-stamp
+install-stamp: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	touch install-stamp
+
+binary-arch:
+
+# Build architecture-independent files here.
+# Pass -i to all debhelper commands in this target to reduce clutter.
+binary-indep: build install
+	dh_testdir -i
+	dh_testroot -i
+	dh_installdocs -i
+	dh_installexamples -i
+	dh_installman -i
+	dh_install -i
+	dh_installchangelogs  -i
+	dh_link -i
+	dh_compress -i
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: trunk/java-wrappers/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Modified: trunk/statsvn/debian/copyright
===================================================================
--- trunk/statsvn/debian/copyright	2008-02-10 22:25:16 UTC (rev 5673)
+++ trunk/statsvn/debian/copyright	2008-02-11 19:12:43 UTC (rev 5674)
@@ -34,7 +34,7 @@
     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 
 On Debian systems, the complete text of the GNU Lesser General
-Public License can be found in `/usr/share/common-licenses/LGPL'.
+Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
 
 
 The debian packaging is copyright 2008 by Vincent Fourmond,




More information about the pkg-java-commits mailing list