[pkg-java] r3165 - in trunk/jarjar: . debian debian/patches
Arnaud Vandyck
avdyk at alioth.debian.org
Wed Apr 11 11:32:36 UTC 2007
Author: avdyk
Date: 2007-04-11 11:32:35 +0000 (Wed, 11 Apr 2007)
New Revision: 3165
Added:
trunk/jarjar/debian/
trunk/jarjar/debian/ant.properties
trunk/jarjar/debian/changelog
trunk/jarjar/debian/compat
trunk/jarjar/debian/control
trunk/jarjar/debian/copyright
trunk/jarjar/debian/patches/
trunk/jarjar/debian/patches/01_build_classpath.patch
trunk/jarjar/debian/rules
trunk/jarjar/debian/watch
Log:
preliminary work
Property changes on: trunk/jarjar/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: trunk/jarjar/debian/ant.properties
===================================================================
--- trunk/jarjar/debian/ant.properties 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/ant.properties 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,6 @@
+asm-commons.jar /usr/share/java/asm-commons.jar
+asm.jar /usr/share/java/asm.jar
+gnu-regexp.jar /usr/share/java/gnu-regexp.jar
+maven-plugin-api.jar /usr/share/java/maven-plugin-api.jar
+compile.source 1.4
+compile.target 1.4
Added: trunk/jarjar/debian/changelog
===================================================================
--- trunk/jarjar/debian/changelog 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/changelog 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,5 @@
+jarjar (1.0rc3.dfsg.1-1) unstable; urgency=low
+
+ * Initial Release (closes: #417591).
+
+ -- Arnaud Vandyck <avdyk at debian.org> Wed, 11 Apr 2007 10:15:34 +0200
Added: trunk/jarjar/debian/compat
===================================================================
--- trunk/jarjar/debian/compat 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/compat 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1 @@
+4
Added: trunk/jarjar/debian/control
===================================================================
--- trunk/jarjar/debian/control 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/control 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,35 @@
+Source: jarjar
+Section: libs
+Priority: optional
+Maintainer: Debian Java Maintainers <pkg-java-maintainers at lists.alioth.debian.org>
+Uploaders: Arnaud Vandyck <avdyk at debian.org>
+Build-Depends-Indep: debhelper (>= 4.2.30), java-gcj-compat-dev (>= 1.0.69-2), ant, cdbs, libasm-java, libregexp-java
+Standards-Version: 3.7.2
+
+Package: libjarjar-java
+Section: libs
+Architecture: all
+Depends: java-gcj-compat | java2-runtime
+Description: repackage third-party jars
+ Utility that makes it easy to repackage Java libraries and embed them
+ into your own distribution. This is useful for two reasons:
+ .
+ * You can easily ship a single jar file with no external dependencies.
+ * You can avoid problems where your library depends on a specific
+ version of a library, which may conflict with the dependencies of
+ another library.
+
+Package: libjarjar-java-doc
+Section: doc
+Architecture: all
+Suggests: libjarjar-java
+Description: repackage third-party jars
+ Utility that makes it easy to repackage Java libraries and embed them
+ into your own distribution. This is useful for two reasons:
+ .
+ * You can easily ship a single jar file with no external dependencies.
+ * You can avoid problems where your library depends on a specific
+ version of a library, which may conflict with the dependencies of
+ another library.
+ .
+ This package includes the documentation.
Added: trunk/jarjar/debian/copyright
===================================================================
--- trunk/jarjar/debian/copyright 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/copyright 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,27 @@
+This package was debianized by Arnaud Vandyck <avdyk at debian.org> on 3-April-2007.
+The source code was downloaded from http://www.tonicsystems.com/products/jarjar/
+
+Authors:
+
+ Tony <aglenning at users.sourceforge.net>
+ Chris Nokleberg <herbyderby at users.sourceforge.net>
+
+Copyright: (C) 2004 Tonic Systems, Inc.
+
+ 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; see the file COPYING. if not, write to
+ the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ Boston, MA 02111-1307 USA
+
+On Debian systems the full text of the Lesser General Public License,
+LGPL, can be found at /usr/share/common-licenses/GPL-2.
Added: trunk/jarjar/debian/patches/01_build_classpath.patch
===================================================================
--- trunk/jarjar/debian/patches/01_build_classpath.patch 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/patches/01_build_classpath.patch 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,23 @@
+--- build.xml.old 2007-04-11 08:32:34.000000000 +0000
++++ build.xml 2007-04-11 08:36:43.000000000 +0000
+@@ -21,11 +21,19 @@
+
+ <property name="test.jar" value="build/rejar.jar"/>
+
++ <property name="asm-commons.jar" value="lib/asm-commons.jar"/>
++ <property name="asm.jar" value="lib/asm.jar"/>
++ <property name="gnu-regexp.jar" value="lib/gnu-regexp.jar"/>
++ <property name="maven-plugin-api.jar" value="lib/maven-plugin-api.jar"/>
++
+ <target name="init">
+ <echo>bootclasspath ${compile.bootclasspath}</echo>
+ <tstamp/>
+ <path id="path.build">
+- <fileset dir="lib" includes="**/*.jar"/>
++ <pathelement path="${asm-commons.jar}"/>
++ <pathelement path="${asm.jar}"/>
++ <pathelement path="${gnu-regexp.jar}"/>
++ <pathelement path="${maven-plugin-api.jar}"/>
+ </path>
+ <path id="path.run">
+ <path refid="path.build"/>
Added: trunk/jarjar/debian/rules
===================================================================
--- trunk/jarjar/debian/rules 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/rules 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,17 @@
+#!/usr/bin/make -f
+# debian/rules file for c3p0 (uses cdbs)
+
+export VERSION = $(shell head -1 debian/changelog | cut -f2 -d\( | cut -f1 -d\) | cut -f1 -d\-)
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/ant.mk
+#include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+JAVA_HOME := /usr/lib/jvm/java-gcj/
+ANT_HOME := /usr/share/ant
+
+DEB_JARS := asm.jar regexp
+DEB_ANT_BUILD_TARGET := jar javadocs
+
+#clean::
+# -rm -rf build
Property changes on: trunk/jarjar/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: trunk/jarjar/debian/watch
===================================================================
--- trunk/jarjar/debian/watch 2007-04-11 11:32:18 UTC (rev 3164)
+++ trunk/jarjar/debian/watch 2007-04-11 11:32:35 UTC (rev 3165)
@@ -0,0 +1,7 @@
+# watch control file for uscan
+version=2
+# Options
+
+# Site Version Script
+opts=dversionmangle=s/\.dfsg\.\d+$// \
+ http://heanet.dl.sourceforge.net/sourceforge/jarjar/jarjar-src-(.*)\.zip debian uupdate
More information about the pkg-java-commits
mailing list