Your message dated Tue, 29 May 2012 23:33:51 +0000
with message-id <e1szvvd-00071n...@franck.debian.org>
and subject line Bug#675038: fixed in glassfish 1:2.1.1-b31g-3
has caused the Debian Bug report #675038,
regarding glassfish: 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.)


-- 
675038: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=675038
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: glassfish
Version: 1:2.1.1-b31g-2
Severity: normal
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu quantal ubuntu-patch openjdk-7-transition

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

Dear Maintainer,

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

  * Fix FTBFS with openjdk-7 as default-jdk (LP: #888938):
    - d/patches/java7-compat.patch: compatibility patch for compilation
      with Java 7 API's.

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'), (100, 'precise-backports')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-24-generic (SMP w/8 CPU cores)
Locale: LANG=en_US.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)

iQIcBAEBCAAGBQJPxM9LAAoJEL/srsug59jDzRIQAMR3lIsuPiGImq2bDBwzCYZ/
UCfSrPP83AjsNDlG2kTPDn/jVKShaGb7bZ58dRuETitpA2/BdQgQlflkpsyuQHOB
ehCkSaFVDz/daID4TRWsnaYUgj3qpOmUa5Jt7vBw1TarucF6kHWrdLsMaYEjGqr3
yjRB+WoHtkl/ffWtgH9cwIh1g7IIJZ8r5gZkI4q4hi7MdwMhRbAIfo+tT8/bC/N4
1x86WxCvTLJHwrbohLeX/IcpC2E4p3iHtbMrf1wzStUxOEDwPFGiibfqJ7sP9Y/B
NI9wDIOW0wU0lSWhVWTPr6LfPAbdCZlyhRqWlcm+HeIkVxRGr4J2MECrL9W5Qgar
nAMdnQjcYorciP3Nt2effKjb0jdzbz7HiFLWNzCrcSYzWimmtDmuS50cytgNol4u
p8Yz4N61laqPDSFOSXxWxie4n7EiFEMldayVZd6pBld0pHqEW+k4dbqL19P+15Al
6UMRQ+UEeWi9GrgbvXfZSIxsDom5kmMMXfu5YsBjhD6vDRRbEaPFFxV8jhpLKNqH
9ZEwgGEi8+f5TxtnZ+cqzwyKeBQozRlEVMBRj69SoGx/0BIaAbr0JvGhXM4p27vi
FQ+o0rqVVRcgB22beQzHRBIm7oNK5LuTEBsIL5FOgX4Xmv1wWrMdM1BzlDPaMFhz
oyZTfnXgiNcoDOr18las
=swbS
-----END PGP SIGNATURE-----
=== added file 'debian/patches/java7-compat.patch'
--- debian/patches/java7-compat.patch	1970-01-01 00:00:00 +0000
+++ debian/patches/java7-compat.patch	2012-05-29 12:35:32 +0000
@@ -0,0 +1,58 @@
+Description: Compatibility patch for compilation with OpenJDK7 due
+ to changes in the JDBC API.
+ .
+ Also backwards compatibility with OpenJDK6.
+Author: James Page <james.p...@ubuntu.com>
+Forwarded: no
+
+Index: glassfish/entity-persistence/src/java/oracle/toplink/essentials/internal/ejb/cmp3/jdbc/base/DataSourceImpl.java
+===================================================================
+--- glassfish.orig/entity-persistence/src/java/oracle/toplink/essentials/internal/ejb/cmp3/jdbc/base/DataSourceImpl.java	2012-05-29 13:10:41.666234000 +0100
++++ glassfish/entity-persistence/src/java/oracle/toplink/essentials/internal/ejb/cmp3/jdbc/base/DataSourceImpl.java	2012-05-29 13:15:35.752552327 +0100
+@@ -40,6 +40,8 @@
+ import java.sql.Connection;
+ import java.sql.SQLException;
+ import java.sql.DriverManager;
++import java.sql.SQLFeatureNotSupportedException;
++import java.util.logging.Logger;
+ import javax.sql.DataSource;
+ import oracle.toplink.essentials.internal.ejb.cmp3.transaction.base.TransactionManagerImpl;
+ 
+@@ -177,4 +179,11 @@
+     public boolean isWrapperFor(Class<?> iface) throws SQLException {
+         return false;
+     }
++
++    /*
++     * JDBC 4.1
++     */
++    public Logger getParentLogger() throws SQLFeatureNotSupportedException {
++        throw new SQLFeatureNotSupportedException();
++    }
+ }
+Index: glassfish/appserv-jstl/src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java
+===================================================================
+--- glassfish.orig/appserv-jstl/src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java	2012-05-29 13:10:41.666234000 +0100
++++ glassfish/appserv-jstl/src/org/apache/taglibs/standard/tag/common/sql/DataSourceWrapper.java	2012-05-29 13:27:43.078925227 +0100
+@@ -58,7 +58,8 @@
+ import java.sql.Connection;
+ import java.sql.DriverManager;
+ import java.sql.SQLException;
+-
++import java.sql.SQLFeatureNotSupportedException;
++import java.util.logging.Logger;
+ import javax.sql.DataSource;
+ 
+ import org.apache.taglibs.standard.resources.Resources;
+@@ -163,5 +164,10 @@
+         throw new SQLException(Resources.getMessage("NOT_SUPPORTED"));
+     }
+ 
+-
++    /*
++     * JDBC 4.1
++     */
++    public Logger getParentLogger() throws SQLFeatureNotSupportedException {
++        throw new SQLFeatureNotSupportedException();
++    }
+ }

=== modified file 'debian/patches/series'
--- debian/patches/series	2010-05-18 21:31:25 +0000
+++ debian/patches/series	2012-05-29 12:13:33 +0000
@@ -1,3 +1,4 @@
 0001-Fix-appserv-api-build.patch
 0002-Fix-glassfish.root-directory.patch
 0003-Disable-SQL-exceptions.patch
+java7-compat.patch


--- End Message ---
--- Begin Message ---
Source: glassfish
Source-Version: 1:2.1.1-b31g-3

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

glassfish-activation_2.1.1-b31g-3_all.deb
  to main/g/glassfish/glassfish-activation_2.1.1-b31g-3_all.deb
glassfish-appserv_2.1.1-b31g-3_all.deb
  to main/g/glassfish/glassfish-appserv_2.1.1-b31g-3_all.deb
glassfish-javaee_2.1.1-b31g-3_all.deb
  to main/g/glassfish/glassfish-javaee_2.1.1-b31g-3_all.deb
glassfish-jmac-api_2.1.1-b31g-3_all.deb
  to main/g/glassfish/glassfish-jmac-api_2.1.1-b31g-3_all.deb
glassfish-mail_2.1.1-b31g-3_all.deb
  to main/g/glassfish/glassfish-mail_2.1.1-b31g-3_all.deb
glassfish-toplink-essentials_2.1.1-b31g-3_all.deb
  to main/g/glassfish/glassfish-toplink-essentials_2.1.1-b31g-3_all.deb
glassfish_2.1.1-b31g-3.debian.tar.gz
  to main/g/glassfish/glassfish_2.1.1-b31g-3.debian.tar.gz
glassfish_2.1.1-b31g-3.dsc
  to main/g/glassfish/glassfish_2.1.1-b31g-3.dsc



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 675...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Damien Raude-Morvan <draz...@debian.org> (supplier of updated glassfish 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: SHA256

Format: 1.8
Date: Wed, 30 May 2012 01:07:41 +0200
Source: glassfish
Binary: glassfish-activation glassfish-appserv glassfish-jmac-api 
glassfish-mail glassfish-javaee glassfish-toplink-essentials
Architecture: source all
Version: 1:2.1.1-b31g-3
Distribution: sid
Urgency: low
Maintainer: Debian Java Maintainers 
<pkg-java-maintainers@lists.alioth.debian.org>
Changed-By: Damien Raude-Morvan <draz...@debian.org>
Description: 
 glassfish-activation - Open source Java EE 5 Application Server
 glassfish-appserv - Open source Java EE 5 Application Server
 glassfish-javaee - Open source Java EE 5 Application Server
 glassfish-jmac-api - Open source Java EE 5 Application Server
 glassfish-mail - Open source Java EE 5 Application Server
 glassfish-toplink-essentials - Open source Java EE 5 Application Server
Closes: 675038
Changes: 
 glassfish (1:2.1.1-b31g-3) unstable; urgency=low
 .
   [ James Page ]
   * Fix FTBFS with openjdk-7 as default-jdk (LP: #888938):
     - d/patches/java7-compat.patch: compatibility patch for compilation
       with Java 7 API's. (Closes: #675038).
 .
   [ Damien Raude-Morvan ]
   * Upload to unstable.
Checksums-Sha1: 
 104f8eaf2c7cdd3bdf966685a625091bcfdac636 2471 glassfish_2.1.1-b31g-3.dsc
 e5d9897d393a538c43a9e69bc87a8eb31f18c84a 16053 
glassfish_2.1.1-b31g-3.debian.tar.gz
 2d6472355301d7850fbda6fc7e24aeb2e65191db 77448 
glassfish-activation_2.1.1-b31g-3_all.deb
 1c52046487da23fcd3a80e80d49463990262a19f 621772 
glassfish-appserv_2.1.1-b31g-3_all.deb
 d53eadd28393f7e6206b4fdb92af97a46cf43e68 27640 
glassfish-jmac-api_2.1.1-b31g-3_all.deb
 fcbb63950fff3efe15f122d2900dae0dd01794f7 396160 
glassfish-mail_2.1.1-b31g-3_all.deb
 545bbebf316f7778c3e55e8264434bb57fc3838e 1419304 
glassfish-javaee_2.1.1-b31g-3_all.deb
 519d6b341c8bef719c3e7238ba938395748564ab 2418154 
glassfish-toplink-essentials_2.1.1-b31g-3_all.deb
Checksums-Sha256: 
 25d1cd4feb73eae05f03ebabdf009ff0844901c84c90ad2a230a879400647e80 2471 
glassfish_2.1.1-b31g-3.dsc
 da0103251f10c77566d509d38fdec512d4ec6dc6cc9bf0962670cdf5b104a747 16053 
glassfish_2.1.1-b31g-3.debian.tar.gz
 9f788674c69167efec7916bb38cddc4530d6fe81e1e2b72edbd0c42424570423 77448 
glassfish-activation_2.1.1-b31g-3_all.deb
 d66e354dd9a0de4ac5fc0980bf1658e9915035e15c513735a7bdb2836f2d4e75 621772 
glassfish-appserv_2.1.1-b31g-3_all.deb
 8b7be6159b2f26b8e74176d5c82fdef728f4f47306e0e0ef12b363d9720e80b9 27640 
glassfish-jmac-api_2.1.1-b31g-3_all.deb
 7a7a898c6a415d88ff71fd9278867370c8134ef4e82dc606571b7bbd239b27ea 396160 
glassfish-mail_2.1.1-b31g-3_all.deb
 e3dd3aff673ea9feabc08f7d02b16dea071e7c06c39c7d53346bdd7d0d736b83 1419304 
glassfish-javaee_2.1.1-b31g-3_all.deb
 43b4b30eac050104bf8cd908053248266ec2a4059a5b5c903cdbf082319da620 2418154 
glassfish-toplink-essentials_2.1.1-b31g-3_all.deb
Files: 
 667eb57d9a9cc9ec61f870771032c6aa 2471 java optional glassfish_2.1.1-b31g-3.dsc
 89d640de84febd94d5c202291efae38b 16053 java optional 
glassfish_2.1.1-b31g-3.debian.tar.gz
 c973de915f262f3dc48522d0909146fb 77448 java optional 
glassfish-activation_2.1.1-b31g-3_all.deb
 47cd1b3215b58b18f13759493f528eda 621772 java optional 
glassfish-appserv_2.1.1-b31g-3_all.deb
 645cadd926e4b2a1c95b37b65ee3dafc 27640 java optional 
glassfish-jmac-api_2.1.1-b31g-3_all.deb
 b804d30e0cf78115ce88099558b45149 396160 java optional 
glassfish-mail_2.1.1-b31g-3_all.deb
 33d67842bc6db894afa5f14608b3b75b 1419304 java optional 
glassfish-javaee_2.1.1-b31g-3_all.deb
 f9d724c5c2d5c4183fa8f8ec58ad3088 2418154 java optional 
glassfish-toplink-essentials_2.1.1-b31g-3_all.deb

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

iQIcBAEBCAAGBQJPxVk7AAoJEHXiDM0z50n8wTsQAMYfLpFgQDh2ClDW0kLY8LrX
KkhmrGrwqeEriuEBuIgUyLyNLi09GAzVy+l2YOds+OCli6/Jqje2uk7RHAXVTnln
I4HDbo6yT4bmTaFosNFAL0WdeBfot2Ga/RSJh5KRGuBmnvsgd+Y+6e0ZJVWvhVuH
PSlB//0BnLsc/mVM+Al6URtg0Jf9uBASBIjRMZZgNQl7ffed1iGeamsH5+a1hTs8
QlykIhY5/i+86l0j6DRrHkZDtaR6jcPwPDn8LY9ZiZhy77oFReZX2yEybExgVAjo
4HBUCF6Uz0eqM9MnmgsrOI9zy4hkrBNk7DhKSDDMrm2d+qDCs1pECHZK4Ex9yg1f
MbXB2flTfwBbmfMY1RYA/w/x2IwBpHDub/lVHo+kFbmcjonm6VulWCHykCClPefq
gLfWsMTU5GkWGy5464dvDWroMqqRo6CpCgVN6hXikzFhs1yzilLAwr0BqWPkMLl4
6/SxAU9lOa0wGedwOJpGMu637M23dAUVRZR39bQ6eai027/zxD6YAk0p3AQq5Z16
2O76uxizDxN1rQNd05CoCmq2uevZzeXe/axO3jeMtQT7FsdrP9yNl/NX601inp8I
RrkgSHXjP7bG2stD5AP6x9ErWLReA2T6VGJs110t2nHeGdXkRAFeYXSOkalBdw8N
VoKt4LJM9bWLg0EYrBey
=e+fy
-----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