Your message dated Mon, 16 Jan 2012 04:02:11 +0000
with message-id <[email protected]>
and subject line Bug#652049: fixed in excalibur-logkit 2.0-9
has caused the Debian Bug report #652049,
regarding excalibur-logkit: Fix FTBFS with OpenJDK7 + tidy misc lintian warnings
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 [email protected]
immediately.)
--
652049: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652049
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: excalibur-logkit
Version: 2.0-8
Severity: normal
Tags: patch
User: [email protected]
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 OpenJDK7 (LP: #888124):
- d/patches/01_implement_abstract_methods.patch: add additional
unimplemented abstract methods for Java 7.
* d/copyright: tidied up misc lintian 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-3-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)
iQIcBAEBCAAGBQJO6KlaAAoJEL/srsug59jDo04P/jkcxiOggoYQQd1jLuTDIItx
GBrhBGo+Tr9lfvU4d1IhCxodYMdh+GH4l6V7S84babZM72qxzzXc+QRUY8/lrqWD
Eg146eD2YfaABhv9uQkM8Jbyb2Vlq+ngsaQdJsuxfEciOLm24zGW05D9qNB6lPJr
+hueoUtlJDb6TNwFBJMMMenPfEWXRN9HrxcUlYUQCviRE2sHnfOMSCaJHCSJmlrE
oNIzGme8V+IWyXCmd/eTg/w/8ntxe++qrm3n5NQbhsiVA85jkRQfCjb62nChRqII
660vcxqBP+PrlUn8OwOKqOXDTKgJ5r/4DFPlvur4emmCiImewNdJddHln/fv3Mdz
GklQpP1CydgjYd7vOIIbGag91twKUYDyyOiH1CZyXjjxQqQYU3yRrsIjmmPdXRlK
Bt71OPLYCT1AaQoVefcyXftL5IMqK+p+pEbmym/kvxdxYyPwQSblceL+kq8EEvTM
np1NhLXiJZ4pkJKtN9708zWdjZXqgxrX5Io7vsQAuLide83DKzi5907K0G+o304w
F3vXq8G2vx/ZSTjSI85MaVHcTozKR41/jg71aFoxRMpi3ZzvkBNh45u2+S0saTHN
q0iTTPtX+f4vego1YWr0lFTspHdf20Zny3aKO/Yxd1oH5o/+JdSBzCwEC2d1Uq4G
hdiDvrY4gzzHObX3JR19
=qfO9
-----END PGP SIGNATURE-----
=== modified file 'debian/copyright'
--- debian/copyright 2009-08-12 00:34:29 +0000
+++ debian/copyright 2011-12-14 13:43:41 +0000
@@ -1,6 +1,6 @@
-Format-Specification: http://dep.debian.net/deps/dep5/
-Name: excalibur-logkit
-Maintainer: The Apache Software Foundation
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: excalibur-logkit
+Upstream-Contact: The Apache Software Foundation
Source: http://excalibur.apache.org/
Files: *
=== modified file 'debian/patches/01_implement_abstract_methods.patch'
--- debian/patches/01_implement_abstract_methods.patch 2011-05-29 09:36:55 +0000
+++ debian/patches/01_implement_abstract_methods.patch 2011-12-14 13:40:52 +0000
@@ -1,9 +1,21 @@
Description: Add method stubs to build against current APIs.
Forwarded: not-needed
-Author: Onkar Shinde <[email protected]>
---- a/src/java/org/apache/log/output/db/DefaultDataSource.java 2011-05-29 14:56:35.000000000 +0530
-+++ b/src/java/org/apache/log/output/db/DefaultDataSource.java 2011-05-29 14:56:59.000000000 +0530
-@@ -111,4 +111,14 @@
+Author: Onkar Shinde <[email protected]>, James page <[email protected]>
+
+Index: excalibur-logkit/src/java/org/apache/log/output/db/DefaultDataSource.java
+===================================================================
+--- excalibur-logkit.orig/src/java/org/apache/log/output/db/DefaultDataSource.java 2011-11-25 10:55:37.000000000 +0000
++++ excalibur-logkit/src/java/org/apache/log/output/db/DefaultDataSource.java 2011-11-25 10:59:19.640362541 +0000
+@@ -20,6 +20,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;
+
+ /**
+@@ -111,4 +113,20 @@
{
m_logWriter = logWriter;
}
@@ -17,4 +29,10 @@
+ {
+ throw new UnsupportedOperationException();
+ }
++
++ public Logger getParentLogger() throws SQLFeatureNotSupportedException
++ {
++ throw new SQLFeatureNotSupportedException();
++ }
++
}
=== modified file 'src/java/org/apache/log/output/db/DefaultDataSource.java'
--- src/java/org/apache/log/output/db/DefaultDataSource.java 2010-06-08 17:35:15 +0000
+++ src/java/org/apache/log/output/db/DefaultDataSource.java 2011-12-14 13:42:47 +0000
@@ -20,6 +20,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;
/**
@@ -121,4 +123,10 @@
{
throw new UnsupportedOperationException();
}
+
+ public Logger getParentLogger() throws SQLFeatureNotSupportedException
+ {
+ throw new SQLFeatureNotSupportedException();
+ }
+
}
--- End Message ---
--- Begin Message ---
Source: excalibur-logkit
Source-Version: 2.0-9
We believe that the bug you reported is fixed in the latest version of
excalibur-logkit, which is due to be installed in the Debian FTP archive:
excalibur-logkit_2.0-9.debian.tar.gz
to main/e/excalibur-logkit/excalibur-logkit_2.0-9.debian.tar.gz
excalibur-logkit_2.0-9.dsc
to main/e/excalibur-logkit/excalibur-logkit_2.0-9.dsc
libexcalibur-logkit-java-doc_2.0-9_all.deb
to main/e/excalibur-logkit/libexcalibur-logkit-java-doc_2.0-9_all.deb
libexcalibur-logkit-java_2.0-9_all.deb
to main/e/excalibur-logkit/libexcalibur-logkit-java_2.0-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 [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Miguel Landaeta <[email protected]> (supplier of updated excalibur-logkit
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 [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Tue, 20 Dec 2011 21:47:08 -0430
Source: excalibur-logkit
Binary: libexcalibur-logkit-java libexcalibur-logkit-java-doc
Architecture: source all
Version: 2.0-9
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers
<[email protected]>
Changed-By: Miguel Landaeta <[email protected]>
Description:
libexcalibur-logkit-java - Lightweight and fast designed logging toolkit for
Java
libexcalibur-logkit-java-doc - Lightweight and fast designed logging toolkit
for Java (API docs)
Closes: 652049
Changes:
excalibur-logkit (2.0-9) unstable; urgency=low
.
[ Miguel Landaeta ]
* Team upload.
.
[ James Page ]
* Fix FTBFS with OpenJDK7 (LP: #888124) (Closes: #652049):
- d/patches/01_implement_abstract_methods.patch: add additional
unimplemented abstract methods for Java 7.
* d/copyright: tidied up misc lintian warnings.
Checksums-Sha1:
4f3897132375e59cda3fd7d0b2cfe19279d71448 2335 excalibur-logkit_2.0-9.dsc
5f25354763735d0d129dbc63f6fc3f5dba76bcef 6710
excalibur-logkit_2.0-9.debian.tar.gz
1977bd5eac17953880ea29b3c5223a564eca0ad3 76670
libexcalibur-logkit-java_2.0-9_all.deb
5316ff2f0151be6258330c80f88494b6631f7c64 180292
libexcalibur-logkit-java-doc_2.0-9_all.deb
Checksums-Sha256:
726a804eb1baa037c3d261c7f62dd5249c1f90efdc7bdac3412399a8a5afd400 2335
excalibur-logkit_2.0-9.dsc
9bc651960b3eb9617a20578feba60e953378f90193a41f4197e22167f9b5fae5 6710
excalibur-logkit_2.0-9.debian.tar.gz
8626fee78b699bdd88333f43dbb6fd952e03652e192b16059459548699e7c76e 76670
libexcalibur-logkit-java_2.0-9_all.deb
adef9ba6132fd4f34e86615707ac58a8a7ea11d07279b4f9e2139d7f6d67e2a7 180292
libexcalibur-logkit-java-doc_2.0-9_all.deb
Files:
116d6ae3e526e2699d3426c159b2860d 2335 java optional excalibur-logkit_2.0-9.dsc
a25b9ee0a7f429c36ae1ecba903727e7 6710 java optional
excalibur-logkit_2.0-9.debian.tar.gz
9897c180ca6dc639404b212f22cff19d 76670 java optional
libexcalibur-logkit-java_2.0-9_all.deb
75fa6fb10b5ec065755935b1bd504f3c 180292 doc optional
libexcalibur-logkit-java-doc_2.0-9_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iQIcBAEBAgAGBQJPE53vAAoJECHSBYmXSz6WFXMQAMXLIQHPy+RzBbjC5F8oH+c+
HbbpNiMLGiw48cxoAirTQUUXGQX1vmNEG7pT/JoQJ5eWD1cCc+J7d9mfTET9GjZN
6vK3do+fWRvIWpbJ1GC9OTNv9xmfPtuzM1XS+tzKdsrIYY3x+gxO2Zne0KJCr9Ir
yuWzpRrYvj50RZTBK874q+jylR/2NcdhemjFw2p5J5hJhKAgtatiWqSzVkz3SEky
rSQcKoPluRZ7/nZLmUAKtbEfrZ9pdVw3vI4R/GjNGWlJ05Pm1GO98uupKPhWG6vO
u4KVQ/VcL9GMugIbk8kdCWHbBSsv8eRCkTKnyHNPEkW4MXdm5Zg16JWnwmJZ962e
eZ9++skz4O1Rk0qNTapimvQyFKzoDKHxn2GznmHenizQJOQxZQmxSnhoN1MtIS6B
soqXZtV8Ol5WlhHVA2ttQ9v+wlcZ1d9jC8jZ8ndsxXqkjVJHaxwzT2MaZQ2tBkyk
gu2el8/9WKcHDcS9ohAUsCzx17METese7X375+vUNV4X0ZDjLXLLjFYyYx12FlVf
pyFU9qKF6Sf5AbdygUdZgmMdqa0CCXJvS7tLKJwr4YtW7uiLcnLQdwRkfBLVTtbe
7Ju1cSXEKt6DIcnvQatSqRGA/UdbEVugL/bozm307vTBeQlI/ulkp7i+DyDYJEwU
gJ4AxAe+ho+NlE3lqPi4
=G0A0
-----END PGP SIGNATURE-----
--- End Message ---