Author: ebourg-guest
Date: 2013-08-26 15:39:57 +0000 (Mon, 26 Aug 2013)
New Revision: 17168

Added:
   trunk/libxmpcore-java/debian/patches/01-compilation-settings.patch
   trunk/libxmpcore-java/debian/patches/series
Modified:
   trunk/libxmpcore-java/debian/changelog
Log:
Added a patch to fix the unmappable character errors with Java 7 and generate 
Java 6 compatible bytecode (Closes: #719404)



Modified: trunk/libxmpcore-java/debian/changelog
===================================================================
--- trunk/libxmpcore-java/debian/changelog      2013-08-26 10:37:21 UTC (rev 
17167)
+++ trunk/libxmpcore-java/debian/changelog      2013-08-26 15:39:57 UTC (rev 
17168)
@@ -1,6 +1,8 @@
 libxmpcore-java (5.1.2-2) UNRELEASED; urgency=low
 
   * Use canonical URLs for the Vcs-* fields
+  * Added a patch to fix the unmappable character errors with Java 7
+    and generate Java 6 compatible bytecode (Closes: #719404)
 
  -- Emmanuel Bourg <[email protected]>  Mon, 26 Aug 2013 10:53:05 +0200
 

Added: trunk/libxmpcore-java/debian/patches/01-compilation-settings.patch
===================================================================
--- trunk/libxmpcore-java/debian/patches/01-compilation-settings.patch          
                (rev 0)
+++ trunk/libxmpcore-java/debian/patches/01-compilation-settings.patch  
2013-08-26 15:39:57 UTC (rev 17168)
@@ -0,0 +1,14 @@
+Description: Set the compiler settings to fix the unmappable character errors 
with Java 7
+Author: Emmanuel Bourg <[email protected]>
+Forwarded: no
+--- a/XMPCore/build.xml
++++ b/XMPCore/build.xml
+@@ -65,7 +65,7 @@
+ 
+       <target name="javac">
+               <mkdir dir="${intermediate.dir}/${path}" />
+-              <javac debug="${debug}" destdir="${intermediate.dir}/${path}">
++              <javac debug="${debug}" destdir="${intermediate.dir}/${path}" 
source="1.6" target="1.6" encoding="iso-8859-1">
+                       <src path="${src.dir}" />
+               </javac>
+       </target>

Added: trunk/libxmpcore-java/debian/patches/series
===================================================================
--- trunk/libxmpcore-java/debian/patches/series                         (rev 0)
+++ trunk/libxmpcore-java/debian/patches/series 2013-08-26 15:39:57 UTC (rev 
17168)
@@ -0,0 +1 @@
+01-compilation-settings.patch


_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to