Your message dated Tue, 13 Dec 2011 06:02:13 +0000
with message-id <e1ralrn-0006xi...@franck.debian.org>
and subject line Bug#651146: fixed in bcel 5.2-9
has caused the Debian Bug report #651146,
regarding bcel: Fix FTBFS with OpenJDK 7
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
651146: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=651146
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: bcel
Version: 5.2-7
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu precise ubuntu-patch

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Dear Maintainer,

In Ubuntu, the attached patch was applied to achieve the following:

  * Fix FTBFS with Java 7 (LP: #888120):
    - d/patches/encoding.patch: Fix encoding for javac and javadoc calls
      to ensure compatibility with Java 7.
    - d/ant.properties: Set Java source and target to 1.5 for backwards
      compatibility.

This patch ensures compatibility with Java 7 which considers encoding
problems to be errors rather than warnings.

Thanks for considering the patch.


- -- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-2-generic (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAEBCAAGBQJO3cxQAAoJEL/srsug59jDIQcP/jArQ18pOzr2ban8kVAVS3Zz
tNZeF2zRsQCR40qz9F/15JBCmA9pPk3OxMQRszMxfBc9jsCRpW72yCOPq5UHD1sO
GODZgkCHaTNDf33iuRwmqNFzBsFKSjmjeEssLrQiXQcErNX9Kj4Ln6ipYF10iYMZ
o5+h13Z4ALpBbApNpJD/uI7dy9HVTd9vm8pdIGvTCOpPTfkUpRpUgNj36o/jnPjQ
NxG/MoPqxlQ5Nt4FoPaliXX9NjGop/1lODQqZ7ribJoDi+NzqG/fxZkAVlsEbc//
lo33G4g2kGLhL0lndBYT4Bthzjj66etxwdyLqhOU2vB0aJD0Jn+ix7PsyoWfgz2d
ZWh+9EC5pu0iCE3G9BCgNHUwSW2omxwVgJ+nhdKbLOgjaRb9pdEUTK7TYyTTkQ7X
DtT9y0+1c2emhNl8nosvoF7rw0XKRkV4/WNpgpJKdDIxb1Gtx24xEUm74+s9joxS
WC/Yj+6BfqWm7CuPUMatZWwAggRgBPcbpbSw3FXAbqi2mXcSX/Z5atkx8oJvl3ld
w9wk+QVOsAuwyRIDYnPvPXFSoaUy6/82JnPhqwS/kpjz/pxha+oJnMFEkQ9dbLYw
bh2+iBT5HbR3v/przA9SIJzG+uA5qWWasw3PhLu+WCrBymJKLH1pzkOcSageOhsE
qA/UC/7zgEXMVNigCldW
=8C0N
-----END PGP SIGNATURE-----
=== added file 'debian/ant.properties'
--- debian/ant.properties	1970-01-01 00:00:00 +0000
+++ debian/ant.properties	2011-12-05 17:50:36 +0000
@@ -0,0 +1,4 @@
+# Ensure that source and target are 1.5
+# For backwards compat on Java 7
+ant.build.javac.source=1.5
+ant.build.javac.target=1.5

=== modified file 'debian/changelog'

=== added file 'debian/patches/encoding.patch'
--- debian/patches/encoding.patch	1970-01-01 00:00:00 +0000
+++ debian/patches/encoding.patch	2011-12-05 17:47:17 +0000
@@ -0,0 +1,33 @@
+Description: Fix encoding of source files for Java 7 compatibility
+Author: James Page <james.p...@ubuntu.com>
+Forwarded: not-needed
+
+Index: bcel/build.xml
+===================================================================
+--- bcel.orig/build.xml	2011-12-05 14:50:45.203906796 +0000
++++ bcel/build.xml	2011-12-05 14:51:00.535956116 +0000
+@@ -39,7 +39,7 @@
+   <target name="compile" description="o Compile the code" depends="get-deps">
+     <mkdir dir="${classesdir}">
+     </mkdir>
+-    <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html">
++    <javac destdir="${classesdir}" deprecation="true" debug="true" optimize="false" excludes="**/package.html" encoding="ISO-8859-1">
+       <src>
+         <pathelement location="src/java">
+         </pathelement>
+@@ -100,7 +100,7 @@
+     </property>
+     <property name="title" value="jakarta-bcel 5.2 API">
+     </property>
+-    <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.bcel.*">
++    <javadoc use="true" private="true" destdir="${javadocdir}" author="true" version="true" sourcepath="src/java" packagenames="org.apache.bcel.*" encoding="ISO-8859-1">
+       <classpath>
+         <path refid="build.classpath">
+         </path>
+@@ -116,4 +116,4 @@
+     <unjar dest="${maven.home}" src="${user.home}/maven-install-latest.jar">
+     </unjar>
+   </target>
+-</project>
+\ No newline at end of file
++</project>


--- End Message ---
--- Begin Message ---
Source: bcel
Source-Version: 5.2-9

We believe that the bug you reported is fixed in the latest version of
bcel, which is due to be installed in the Debian FTP archive:

bcel_5.2-9.debian.tar.gz
  to main/b/bcel/bcel_5.2-9.debian.tar.gz
bcel_5.2-9.dsc
  to main/b/bcel/bcel_5.2-9.dsc
libbcel-java-doc_5.2-9_all.deb
  to main/b/bcel/libbcel-java-doc_5.2-9_all.deb
libbcel-java_5.2-9_all.deb
  to main/b/bcel/libbcel-java_5.2-9_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 651...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
tony mancill <tmanc...@debian.org> (supplier of updated bcel package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Mon, 12 Dec 2011 21:42:34 -0800
Source: bcel
Binary: libbcel-java libbcel-java-doc
Architecture: source all
Version: 5.2-9
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
Changed-By: tony mancill <tmanc...@debian.org>
Description: 
 libbcel-java - Analyze, create, and manipulate (binary) Java class files
 libbcel-java-doc - Documentation for Byte Code Engineering Library (BCEL)
Closes: 634835 651146
Changes: 
 bcel (5.2-9) unstable; urgency=low
 .
   * Team upload.
 .
   [Ludovic Claude]
   * Add version constraint on newer maven-repo-helper
   * d/rules: use mh_install instead of mh_installpoms + mh_installjar
   * Add --has-package-version switch in libbcel-java.poms and other
     options for mh_install
 .
   [tony mancill]
   * Apply patch to address FTBFS on JDK7 (Closes: #651146)
     - Thank you to James Page.
   * Fix Vcs-Browser field (Closes: #634835)
   * Add d/libbcel-java.links (workaround for #651901)
   * Bumped Standards-Version to 3.9.2 - no changes required.
   * Upload to unstable.
Checksums-Sha1: 
 2e8110e98b34c50a6f4187ef5773478d26c43e44 2092 bcel_5.2-9.dsc
 104502d0cf687e406ba68c40b92be03384921ba0 6829 bcel_5.2-9.debian.tar.gz
 57ce69edbdd36a5681b8e0011fd97575d45e1bc6 476772 libbcel-java_5.2-9_all.deb
 934fb3400d969ad262e1b2416d3f6e359bb744eb 1989854 libbcel-java-doc_5.2-9_all.deb
Checksums-Sha256: 
 3bfb7883f4fee48a77e12ce43807aba2b90e3de24c9cbbbb4eca798c83054f2f 2092 
bcel_5.2-9.dsc
 d2f9e9aa1177e4b09da1db1752a57c4a346f226011913c3da0790d63e70a9e16 6829 
bcel_5.2-9.debian.tar.gz
 41f837db325586e702f69363e8d5c90beb5f7de9c8ea21c4fe2ad5a74b771c67 476772 
libbcel-java_5.2-9_all.deb
 07211ade92b019a4c4b72b507b78242430ff917fc28ddd46358443936447dd0d 1989854 
libbcel-java-doc_5.2-9_all.deb
Files: 
 d655b1f78939cc3d6274770847d4a180 2092 java optional bcel_5.2-9.dsc
 fcd1b0e530330e3cbf8855ee0fbcfa96 6829 java optional bcel_5.2-9.debian.tar.gz
 21291130669aacdef12748b804e26fea 476772 java optional 
libbcel-java_5.2-9_all.deb
 1ef589318b9ea7a6e015e55db82db541 1989854 doc optional 
libbcel-java-doc_5.2-9_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBAgAGBQJO5umOAAoJECHSBYmXSz6W9UcP/0ND6o6E7+4GDZeYa7p5TUlw
ZIYks6jVZkgVKRwavWRJqgE3w+G6qf7fuMhKwGKAOwcYa8MzaaO0kkgawoS52bzX
DuPbtoNCF6oWOmnGD/djuaLk21aiqcprPAcHM8uCz5JSCKgwO63jcmA1ZvNCUj2M
23IwMhXy5yQhg33lBiUySFIVYEtyl9zkJV9+8F6ufivFm1UMVYZa0Czuob1GEYxb
8YEeBPSGq+rDO9Vpw8IPjdHz9VxFYmsxTa9sDfydtdFNpdfwTTr04T2Glu+Vi0TC
pMyz7S/Xk/DJ1a8DJ47013G6n/wtR8d819MpCYRtix8OHtQshamTNlj1JCRQ+dE1
u0GwTeq8i5LbZ/SIhqBg9mBgSNCICpfIHNDA7Ae5U2rhdjwxs7aner+YLbKVUATa
fPK2HVLrow5vZe0UI6qSmGehxq740baMCHb0rDE7kLT3058/XN/ZKFLro3lANVaN
YPQnzMZ97Bg0uE2FL7QAdpWK+QRPmPSGqxoX6wAi/Xy8KJz48/jlyOUU/3ooPN83
Qg5u/fNyBnTjRS04y6pTSjggNCOi9mhH4phA1D5ZePJQ0VggOaV7HbKHLPGpu+L7
WTpMEbGndhnCmUtZCwI6qSNeTdJSyRphybBHCfpeOlhOlx0Mgrnut7z0PmY0UKbR
8efGpUhuZyzdqaMXZpwS
=BobS
-----END PGP SIGNATURE-----



--- End Message ---
__
This is the maintainer address of Debian's Java team
<http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-maintainers>. 
Please use
debian-j...@lists.debian.org for discussions and questions.

Reply via email to