Your message dated Sat, 28 Jan 2012 21:19:56 +0000
with message-id <e1rrfgi-0005nm...@franck.debian.org>
and subject line Bug#652771: fixed in jodconverter 2.2.2-6
has caused the Debian Bug report #652771,
regarding jodconverter: FTBFS: package com.sun.star.frame does not exist
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.)
--
652771: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652771
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: jodconverter
Version: 2.2.2-5
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111220 qa-ftbfs
Justification: FTBFS on amd64
Hi,
During a rebuild of all packages in sid, your package failed to build on
amd64.
Relevant part:
> debian/rules build
> dh_testdir
> ( \
> cd src/main/java && \
> javac -classpath
> /usr/share/java/ridl.jar:/usr/lib/libreoffice/basis3.3/program/classes/unoil.jar:/usr/share/java/juh.jar:/usr/share/java/slf4j-api.jar:/usr/share/java/commons-io.jar:/usr/share/java/xstream.jar
> `find . -name \*.java` && \
> javadoc -d api com.artofsolving.jodconverter && \
> jar c `find . -name \*.class -o -name \*.xml -o -name \*.MF` >
> jodconverter-2.2.2.jar ; \
> )
> StreamOpenOfficeDocumentConverter.java:34: package com.sun.star.frame does
> not exist
> import com.sun.star.frame.XComponentLoader;
> ^
> StreamOpenOfficeDocumentConverter.java:35: package com.sun.star.frame does
> not exist
> import com.sun.star.frame.XStorable;
> ^
> AbstractOpenOfficeDocumentConverter.java:35: cannot find symbol
> symbol : class XRefreshable
> location: package com.sun.star.util
> import com.sun.star.util.XRefreshable;
> ^
> OpenOfficeConnection.java:21: package com.sun.star.frame does not exist
> import com.sun.star.frame.XComponentLoader;
> ^
> OpenOfficeConnection.java:23: package com.sun.star.ucb does not exist
> import com.sun.star.ucb.XFileIdentifierConverter;
> ^
> OpenOfficeConnection.java:40: cannot find symbol
> symbol : class XComponentLoader
> location: interface
> com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection
> public XComponentLoader getDesktop();
> ^
> OpenOfficeConnection.java:45: cannot find symbol
> symbol : class XFileIdentifierConverter
> location: interface
> com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection
> public XFileIdentifierConverter getFileContentProvider();
> ^
> OpenOfficeDocumentConverter.java:36: package com.sun.star.frame does not exist
> import com.sun.star.frame.XComponentLoader;
> ^
> OpenOfficeDocumentConverter.java:37: package com.sun.star.frame does not exist
> import com.sun.star.frame.XStorable;
> ^
> OpenOfficeDocumentConverter.java:40: cannot find symbol
> symbol : class ErrorCodeIOException
> location: package com.sun.star.task
> import com.sun.star.task.ErrorCodeIOException;
> ^
> OpenOfficeDocumentConverter.java:41: package com.sun.star.ucb does not exist
> import com.sun.star.ucb.XFileIdentifierConverter;
> ^
> OpenOfficeDocumentConverter.java:43: cannot find symbol
> symbol : class CloseVetoException
> location: package com.sun.star.util
> import com.sun.star.util.CloseVetoException;
> ^
> OpenOfficeDocumentConverter.java:44: cannot find symbol
> symbol : class XCloseable
> location: package com.sun.star.util
> import com.sun.star.util.XCloseable;
> ^
> AbstractOpenOfficeConnection.java:33: package com.sun.star.frame does not
> exist
> import com.sun.star.frame.XComponentLoader;
> ^
> AbstractOpenOfficeConnection.java:38: package com.sun.star.ucb does not exist
> import com.sun.star.ucb.XFileIdentifierConverter;
> ^
> AbstractOpenOfficeConnection.java:123: cannot find symbol
> symbol : class XComponentLoader
> location: class
> com.artofsolving.jodconverter.openoffice.connection.AbstractOpenOfficeConnection
> public XComponentLoader getDesktop() {
> ^
> AbstractOpenOfficeConnection.java:128: cannot find symbol
> symbol : class XFileIdentifierConverter
> location: class
> com.artofsolving.jodconverter.openoffice.connection.AbstractOpenOfficeConnection
> public XFileIdentifierConverter getFileContentProvider() {
> ^
> AbstractOpenOfficeDocumentConverter.java:127: cannot find symbol
> symbol : class XRefreshable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.AbstractOpenOfficeDocumentConverter
> XRefreshable refreshable = (XRefreshable)
> UnoRuntime.queryInterface(XRefreshable.class, document);
> ^
> AbstractOpenOfficeDocumentConverter.java:127: cannot find symbol
> symbol : class XRefreshable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.AbstractOpenOfficeDocumentConverter
> XRefreshable refreshable = (XRefreshable)
> UnoRuntime.queryInterface(XRefreshable.class, document);
> ^
> AbstractOpenOfficeDocumentConverter.java:127: cannot find symbol
> symbol : class XRefreshable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.AbstractOpenOfficeDocumentConverter
> XRefreshable refreshable = (XRefreshable)
> UnoRuntime.queryInterface(XRefreshable.class, document);
>
> ^
> StreamOpenOfficeDocumentConverter.java:100: cannot find symbol
> symbol : class XComponentLoader
> location: class
> com.artofsolving.jodconverter.openoffice.converter.StreamOpenOfficeDocumentConverter
> XComponentLoader desktop = openOfficeConnection.getDesktop();
> ^
> StreamOpenOfficeDocumentConverter.java:121: cannot find symbol
> symbol : class XStorable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.StreamOpenOfficeDocumentConverter
> XStorable storable = (XStorable)
> UnoRuntime.queryInterface(XStorable.class, document);
> ^
> StreamOpenOfficeDocumentConverter.java:121: cannot find symbol
> symbol : class XStorable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.StreamOpenOfficeDocumentConverter
> XStorable storable = (XStorable)
> UnoRuntime.queryInterface(XStorable.class, document);
> ^
> StreamOpenOfficeDocumentConverter.java:121: cannot find symbol
> symbol : class XStorable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.StreamOpenOfficeDocumentConverter
> XStorable storable = (XStorable)
> UnoRuntime.queryInterface(XStorable.class, document);
>
> ^
> OpenOfficeDocumentConverter.java:116: cannot find symbol
> symbol : class XFileIdentifierConverter
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XFileIdentifierConverter fileContentProvider =
> openOfficeConnection.getFileContentProvider();
> ^
> OpenOfficeDocumentConverter.java:128: cannot find symbol
> symbol : class ErrorCodeIOException
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> } catch (ErrorCodeIOException errorCodeIOException) {
> ^
> OpenOfficeDocumentConverter.java:141: cannot find symbol
> symbol : class ErrorCodeIOException
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> } catch (ErrorCodeIOException errorCodeIOException) {
> ^
> OpenOfficeDocumentConverter.java:149: cannot find symbol
> symbol : class XComponentLoader
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XComponentLoader desktop = openOfficeConnection.getDesktop();
> ^
> OpenOfficeDocumentConverter.java:155: cannot find symbol
> symbol : class XStorable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XStorable storable = (XStorable)
> UnoRuntime.queryInterface(XStorable.class, document);
> ^
> OpenOfficeDocumentConverter.java:155: cannot find symbol
> symbol : class XStorable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XStorable storable = (XStorable)
> UnoRuntime.queryInterface(XStorable.class, document);
> ^
> OpenOfficeDocumentConverter.java:155: cannot find symbol
> symbol : class XStorable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XStorable storable = (XStorable)
> UnoRuntime.queryInterface(XStorable.class, document);
>
> ^
> OpenOfficeDocumentConverter.java:158: cannot find symbol
> symbol : class XCloseable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XCloseable closeable = (XCloseable)
> UnoRuntime.queryInterface(XCloseable.class, document);
> ^
> OpenOfficeDocumentConverter.java:158: cannot find symbol
> symbol : class XCloseable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XCloseable closeable = (XCloseable)
> UnoRuntime.queryInterface(XCloseable.class, document);
> ^
> OpenOfficeDocumentConverter.java:158: cannot find symbol
> symbol : class XCloseable
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> XCloseable closeable = (XCloseable)
> UnoRuntime.queryInterface(XCloseable.class, document);
>
> ^
> OpenOfficeDocumentConverter.java:162: cannot find symbol
> symbol : class CloseVetoException
> location: class
> com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter
> } catch (CloseVetoException closeVetoException) {
> ^
> AbstractOpenOfficeConnection.java:124: cannot find symbol
> symbol : class XComponentLoader
> location: class
> com.artofsolving.jodconverter.openoffice.connection.AbstractOpenOfficeConnection
> return (XComponentLoader)
> UnoRuntime.queryInterface(XComponentLoader.class,
> ^
> AbstractOpenOfficeConnection.java:124: cannot find symbol
> symbol : class XComponentLoader
> location: class
> com.artofsolving.jodconverter.openoffice.connection.AbstractOpenOfficeConnection
> return (XComponentLoader)
> UnoRuntime.queryInterface(XComponentLoader.class,
> ^
> AbstractOpenOfficeConnection.java:129: cannot find symbol
> symbol : class XFileIdentifierConverter
> location: class
> com.artofsolving.jodconverter.openoffice.connection.AbstractOpenOfficeConnection
> return (XFileIdentifierConverter)
> UnoRuntime.queryInterface(XFileIdentifierConverter.class,
> ^
> AbstractOpenOfficeConnection.java:129: cannot find symbol
> symbol : class XFileIdentifierConverter
> location: class
> com.artofsolving.jodconverter.openoffice.connection.AbstractOpenOfficeConnection
> return (XFileIdentifierConverter)
> UnoRuntime.queryInterface(XFileIdentifierConverter.class,
> ^
> Note: Some input files use unchecked or unsafe operations.
> Note: Recompile with -Xlint:unchecked for details.
> 39 errors
> make: *** [build-stamp] Error 1
The full build log is available from:
http://people.debian.org/~lucas/logs/2011/12/20/jodconverter_2.2.2-5_lsid64.buildlog
A list of current common problems and possible solutions is available at
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!
About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot. Internet was not
accessible from the build systems.
--- End Message ---
--- Begin Message ---
Source: jodconverter
Source-Version: 2.2.2-6
We believe that the bug you reported is fixed in the latest version of
jodconverter, which is due to be installed in the Debian FTP archive:
jodconverter_2.2.2-6.debian.tar.gz
to main/j/jodconverter/jodconverter_2.2.2-6.debian.tar.gz
jodconverter_2.2.2-6.dsc
to main/j/jodconverter/jodconverter_2.2.2-6.dsc
libjodconverter-java-doc_2.2.2-6_all.deb
to main/j/jodconverter/libjodconverter-java-doc_2.2.2-6_all.deb
libjodconverter-java_2.2.2-6_all.deb
to main/j/jodconverter/libjodconverter-java_2.2.2-6_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 652...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Samuel Thibault <sthiba...@debian.org> (supplier of updated jodconverter
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: SHA512
Format: 1.8
Date: Tue, 24 Jan 2012 00:21:25 +0100
Source: jodconverter
Binary: libjodconverter-java libjodconverter-java-doc
Architecture: source all
Version: 2.2.2-6
Distribution: unstable
Urgency: low
Maintainer: Samuel Thibault <sthiba...@debian.org>
Changed-By: Samuel Thibault <sthiba...@debian.org>
Description:
libjodconverter-java - Office formats converter - Library
libjodconverter-java-doc - Office formats converter - Library documentation
Closes: 652771 657069
Changes:
jodconverter (2.2.2-6) unstable; urgency=low
.
* Bump Standards-Version to 3.9.2 (no change needed)
* Fix libreoffice build path (Closes: Bug#652771).
* Depend on libreoffice, not openoffice.org, and fix description
(Closes: Bug#657069).
* Add build-{indep,arch} rules.
* Drop jre dependency.
Checksums-Sha1:
b45f06aae90d2c4a4fd35e865d5aa86c58d19194 1543 jodconverter_2.2.2-6.dsc
78aedb6d5cc9949ce48005045ac750c55ee4ad70 3526
jodconverter_2.2.2-6.debian.tar.gz
6fc8ac8b2cfd67cc6e55a4f68e665446196699e3 26500
libjodconverter-java_2.2.2-6_all.deb
32bfbe573472e4cbb97e591b438120fd36687a12 16898
libjodconverter-java-doc_2.2.2-6_all.deb
Checksums-Sha256:
37bee0a2ae66628ce17affc2a275825d4bfaffd467d08fb6de59a251821bd562 1543
jodconverter_2.2.2-6.dsc
84390ff1b412e336d07c164e630b8d07ca2c4b90c839ba3e429e3ae26ce634bb 3526
jodconverter_2.2.2-6.debian.tar.gz
5f7156b213ebfc65e9507e7595e355579ea8eb0f7823efb6fe858168af94f11e 26500
libjodconverter-java_2.2.2-6_all.deb
d8c46395d46dbfb36c8df1661e4a1e1d231481c227db802db615a7e212d03022 16898
libjodconverter-java-doc_2.2.2-6_all.deb
Files:
ed0b47e43c39677ac4e79cecad7326a5 1543 java extra jodconverter_2.2.2-6.dsc
1d84785c7b4e1215732bc102b54d43c2 3526 java extra
jodconverter_2.2.2-6.debian.tar.gz
5e86831d0731c61b7bd88282bf717e91 26500 java extra
libjodconverter-java_2.2.2-6_all.deb
77b45541248dd3559e548b8be8723195 16898 doc extra
libjodconverter-java-doc_2.2.2-6_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
iF4EAREKAAYFAk8kYgYACgkQa6Lp0s/HjrMQmgEAkamyGbt6JdzPoFW/+v0BGIqV
C80zzTRTbkqSVFrUTgQA/jmv3PaGHQ7OggRQKnRrn3zEM+XX3epH+gs9KFJQhtfE
=lrtR
-----END PGP SIGNATURE-----
--- End Message ---