This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository antelope.
commit e9bcde8cd5faf6f824caea7f97d8853c2756d3c3 Author: Emmanuel Bourg <[email protected]> Date: Thu Dec 11 16:05:39 2014 +0100 Fixed a build failure with Java 8 (Closes: #748039) --- debian/changelog | 1 + debian/patches/03_fix_javadoc_error.diff | 13 +++++++++++++ debian/patches/series | 1 + 3 files changed, 15 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0cdef6a..ad5b93f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ antelope (3.5.1-3) UNRELEASED; urgency=medium * Team upload. + * Fixed a build failure with Java 8 (Closes: #748039) * debian/control: - Co-maintenance with the Java Team - Added the Vcs-* fields diff --git a/debian/patches/03_fix_javadoc_error.diff b/debian/patches/03_fix_javadoc_error.diff new file mode 100644 index 0000000..9b0fc08 --- /dev/null +++ b/debian/patches/03_fix_javadoc_error.diff @@ -0,0 +1,13 @@ +Description: Fix an ummappable character in UTF-8 breaking the javadoc task with Java 8 +Origin: upstream, http://antelope.tigris.org/source/browse/antelope/trunk/src/ise/antelope/tasks/Op.java?r1=131&r2=171 +--- a/src/ise/antelope/tasks/Op.java ++++ b/src/ise/antelope/tasks/Op.java +@@ -47,7 +47,7 @@ + operation = "subtract"; + else if (op.equals("*") || op.equals("x")) + operation = "multiply"; +- else if (op.equals("/") || op.equals( "�" ) ) ++ else if (op.equals("/") || op.equals("\u00f7") ) + operation = "divide"; + else if (op.equals("%") || op.equals("\\")) + operation = "mod"; diff --git a/debian/patches/series b/debian/patches/series index 2044124..84f04ba 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1,3 @@ 01_also_build_javadoc.diff 02_xsltproc_opts.diff +03_fix_javadoc_error.diff -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/antelope.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

