[pkg-java] r17867 - in trunk/libfreemarker-java/debian: . patches
Emmanuel Bourg
ebourg-guest at moszumanska.debian.org
Wed Mar 12 10:25:07 UTC 2014
Author: ebourg-guest
Date: 2014-03-12 10:25:07 +0000 (Wed, 12 Mar 2014)
New Revision: 17867
Added:
trunk/libfreemarker-java/debian/patches/fix-unmappable-character.patch
Modified:
trunk/libfreemarker-java/debian/changelog
trunk/libfreemarker-java/debian/patches/series
Log:
Fixed an unmappable character in LocalizedString.java preventing the generation of the Javadoc
Modified: trunk/libfreemarker-java/debian/changelog
===================================================================
--- trunk/libfreemarker-java/debian/changelog 2014-03-12 09:59:58 UTC (rev 17866)
+++ trunk/libfreemarker-java/debian/changelog 2014-03-12 10:25:07 UTC (rev 17867)
@@ -1,5 +1,7 @@
libfreemarker-java (2.3.19-2) UNRELEASED; urgency=medium
+ * Fixed an unmappable character in LocalizedString.java preventing
+ the generation of the Javadoc.
* Switch to debhelper level 9
* Standards-Version updated to 3.9.5 (no changes)
Added: trunk/libfreemarker-java/debian/patches/fix-unmappable-character.patch
===================================================================
--- trunk/libfreemarker-java/debian/patches/fix-unmappable-character.patch (rev 0)
+++ trunk/libfreemarker-java/debian/patches/fix-unmappable-character.patch 2014-03-12 10:25:07 UTC (rev 17867)
@@ -0,0 +1,14 @@
+Description: Fixes an unmappable character for encoding UTF8 that breaks the generation of the Javadoc
+Author: Emmanuel Bourg <ebourg at apache.org>
+Forwarded: no
+--- a/src/freemarker/template/LocalizedString.java
++++ b/src/freemarker/template/LocalizedString.java
+@@ -13,7 +13,7 @@
+ * if "fr".equals(lang)
+ * return "oui";
+ * else if "de".equals(lang)
+- * return "sí";
++ * return "ya";
+ * else
+ * return "yes";
+ * }
Modified: trunk/libfreemarker-java/debian/patches/series
===================================================================
--- trunk/libfreemarker-java/debian/patches/series 2014-03-12 09:59:58 UTC (rev 17866)
+++ trunk/libfreemarker-java/debian/patches/series 2014-03-12 10:25:07 UTC (rev 17867)
@@ -5,3 +5,4 @@
def-jdk-doc.patch
dtd_location.diff
fix-classpath.patch
+fix-unmappable-character.patch
More information about the pkg-java-commits
mailing list