r1887 - in trunk/xml-crimson/debian: . patches
Wolfgang Bär
wbaer-guest at costa.debian.org
Thu Feb 9 21:36:10 UTC 2006
Author: wbaer-guest
Date: 2006-02-09 21:36:09 +0000 (Thu, 09 Feb 2006)
New Revision: 1887
Modified:
trunk/xml-crimson/debian/changelog
trunk/xml-crimson/debian/patches/00_build_xml.patch
Log:
xml-crimson (1:1.1.3-8) unstable; urgency=low
* Adapted build.xml patch to include the definition of a bootclasspath for
compiling the implementation classes as crimson needs an older jaxp
api as included in the free runtimes.
Modified: trunk/xml-crimson/debian/changelog
===================================================================
--- trunk/xml-crimson/debian/changelog 2006-02-09 12:18:45 UTC (rev 1886)
+++ trunk/xml-crimson/debian/changelog 2006-02-09 21:36:09 UTC (rev 1887)
@@ -1,3 +1,11 @@
+xml-crimson (1:1.1.3-8) unstable; urgency=low
+
+ * Adapted build.xml patch to include the definition of a bootclasspath for
+ compiling the implementation classes as crimson needs an older jaxp
+ api as included in the free runtimes.
+
+ -- Wolfgang Baer <WBaer at gmx.de> Thu, 09 Feb 2006 14:29:34 +0100
+
xml-crimson (1:1.1.3-7) unstable; urgency=low
* debian/rules: change the VERSION miniscript to skip the epoch number
Modified: trunk/xml-crimson/debian/patches/00_build_xml.patch
===================================================================
--- trunk/xml-crimson/debian/patches/00_build_xml.patch 2006-02-09 12:18:45 UTC (rev 1886)
+++ trunk/xml-crimson/debian/patches/00_build_xml.patch 2006-02-09 21:36:09 UTC (rev 1887)
@@ -1,30 +1,34 @@
---- build.xml.orig 2005-10-14 16:20:05.000000000 +0200
-+++ build.xml 2005-10-14 16:20:50.000000000 +0200
-@@ -71,8 +71,7 @@
- <property name="api.jar.name" value="jaxp.jar"/>
+--- build.xml.orig 2006-02-09 14:33:03.000000000 +0100
++++ build.xml 2006-02-09 14:28:56.000000000 +0100
+@@ -50,6 +50,8 @@
+ <property name="dist.dir" value="${build.dir}/${dist.file}"/>
+ <property name="distbin.dir" value="${dist.dir}"/>
+ <property name="distsrc.dir" value="${dist.dir}"/>
++ <property name="distsrc.dir" value="${dist.dir}"/>
++ <property name="bootclasspath" value="${build.classes}:${java.home}/lib/rt.jar"/>
- <target name="init">
-- <antstructure output="project.dtd"/>
--
-+
- <available file="${xml-commons.basedir}/build.xml"
- property="xml-commons.present"/>
-
-@@ -125,7 +124,7 @@
+ <!-- Points to tree containing common XML APIs shared between various
+ Apache XML projects. The base directory refers to the sub directory
+@@ -125,7 +127,7 @@
destdir="${build.classes}"
debug="${debug}"
optimize="${optimize}"
- deprecation="off">
-+ deprecation="off" target="1.3">
++ deprecation="off" target="1.3" source="1.3">
<classpath>
<pathelement location="${build.classes}"/>
</classpath>
-@@ -139,7 +138,7 @@
+@@ -135,11 +137,12 @@
+
+ <!-- Compile parser implementation classes -->
+ <target name="compile-impl" depends="prepare">
++ <echo>Using bootclaspath: ${bootclasspath}</echo>
+ <javac srcdir="src"
destdir="${build.classes}"
debug="${debug}"
optimize="${optimize}"
- deprecation="off" >
-+ deprecation="off" target="1.3">
++ deprecation="off" bootclasspath="${bootclasspath}" target="1.3" source="1.3">
<classpath>
<pathelement location="${build.classes}" />
</classpath>
More information about the pkg-java-commits
mailing list