Your message dated Wed, 16 Jan 2008 18:58:25 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Fixed in gcj-4.2-4.2.2-7
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: seda
version: 3.0-3
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20080115 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

 > dpkg-source: building seda in seda_3.0-3.dsc
 >  debian/rules build
 > /usr/bin/make -C seda/src
 > make[1]: Entering directory `/build/user/seda-3.0/seda/src'
 > rm -rf `find . -name test`
 > javac `find . -name *.java`
 > ./seda/nbio/NBIOFileDescriptor.java:1: error: The type java.lang.Object 
 > cannot be resolved. It is indirectly referenced from required .class files
 >      /* 
 >      ^
 > ./seda/nbio/NBIOFileDescriptor.java:34: error: Implicit super constructor 
 > Object() is undefined. Must explicitly invoke another constructor
 >      NBIOFileDescriptor() {
 >      ^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NBIOFileDescriptor.java:38: error: Implicit super constructor 
 > Object() is undefined. Must explicitly invoke another constructor
 >      NBIOFileDescriptor(int fd) {
 >      ^^^^^^^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NBIOFileDescriptor.java:58: error: Object cannot be resolved to 
 > a type
 >      public boolean equals(Object o) {
 >                            ^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:1: error: The type 
 > java.lang.String cannot be resolved. It is indirectly referenced from 
 > required .class files
 >      /* 
 >      ^
 > ./seda/nbio/NonblockingDatagramSocket.java:27: error: The import java.io 
 > cannot be resolved
 >      import java.io.*;
 >             ^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:28: error: The import java.net 
 > cannot be resolved
 >      import java.net.*;
 >             ^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:33: error: DatagramSocket cannot 
 > be resolved to a type
 >      public class NonblockingDatagramSocket extends DatagramSocket 
 >                                                     ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:46: error: IOException cannot be 
 > resolved to a type
 >      public NonblockingDatagramSocket() throws IOException {
 >                                                ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:48: error: The constructor 
 > NonblockingDatagramSocket(int, null) is undefined
 >      this(0, null);
 >      ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:54: error: IOException cannot be 
 > resolved to a type
 >      public NonblockingDatagramSocket(int port) throws IOException {
 >                                                        ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:55: error: The constructor 
 > NonblockingDatagramSocket(int, null) is undefined
 >      this(port, null);
 >      ^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:62: error: Implicit super 
 > constructor Object() is undefined. Must explicitly invoke another constructor
 >      public NonblockingDatagramSocket(int port, InetAddress laddr) 
 >     throws IOException {
 >             
 > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:62: error: InetAddress cannot be 
 > resolved to a type
 >      public NonblockingDatagramSocket(int port, InetAddress laddr) 
 >                                                 ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:63: error: IOException cannot be 
 > resolved to a type
 >      throws IOException {
 >             ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:66: error: 
 > IllegalArgumentException cannot be resolved to a type
 >      throw new IllegalArgumentException("port out range: "+port); 
 >                ^^^^^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:76: error: IOException cannot be 
 > resolved to a type
 >      } catch (IOException e) {
 >               ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:78: error: e cannot be resolved
 >      throw e;
 >            ^
 > ./seda/nbio/NonblockingDatagramSocket.java:88: error: IOException cannot be 
 > resolved to a type
 >      } catch (IOException e) {
 >               ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:99: error: InetAddress cannot be 
 > resolved to a type
 >      public void connect(InetAddress address, int port) 
 >                          ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:100: error: 
 > IllegalArgumentException cannot be resolved to a type
 >      throws IllegalArgumentException {
 >             ^^^^^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:102: error: 
 > IllegalArgumentException cannot be resolved to a type
 >      throw new IllegalArgumentException("port out range:"+port); 
 >                ^^^^^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:107: error: IOException cannot be 
 > resolved to a type
 >      } catch (IOException e) {
 >               ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:108: error: System cannot be 
 > resolved
 >      System.err.println("WARNING: NonblockingDatagramSocket.connect() - 
 > connect failed, exception is "+e);
 >      ^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:108: error: e cannot be resolved
 >      System.err.println("WARNING: NonblockingDatagramSocket.connect() - 
 > connect failed, exception is "+e);
 >                                                                              
 >                           ^
 > ./seda/nbio/NonblockingDatagramSocket.java:117: error: String cannot be 
 > resolved to a type
 >      public void connect(String host, int port) throws UnknownHostException 
 > { 
 >                          ^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:117: error: UnknownHostException 
 > cannot be resolved to a type
 >      public void connect(String host, int port) throws UnknownHostException 
 > { 
 >                                                        ^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:118: error: InetAddress cannot be 
 > resolved
 >      connect(InetAddress.getByName(host), port);
 >              ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:128: error: IOException cannot be 
 > resolved to a type
 >      } catch (IOException e) {
 >               ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:140: error: InetAddress cannot be 
 > resolved to a type
 >      public InetAddress getInetAddress() {
 >             ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:142: error: The method 
 > getInetAddress() is undefined for the type NonblockingSocketImpl
 >      return impl.getInetAddress();
 >                  ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:151: error: InetAddress cannot be 
 > resolved to a type
 >      public InetAddress getLocalAddress() {
 >             ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:153: error: InetAddress cannot be 
 > resolved
 >      return InetAddress.getLocalHost();
 >             ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:154: error: Exception cannot be 
 > resolved to a type
 >      } catch (Exception e) {
 >               ^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:188: error: DatagramPacket cannot 
 > be resolved to a type
 >      public int nbReceive(DatagramPacket p) throws IOException {
 >                           ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:188: error: IOException cannot be 
 > resolved to a type
 >      public int nbReceive(DatagramPacket p) throws IOException {
 >                                                    ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:202: error: IOException cannot be 
 > resolved to a type
 >      public int nbReceive(byte[] data, int offset, int length) throws 
 > IOException {
 >                                                                       
 > ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:203: error: DatagramPacket cannot 
 > be resolved to a type
 >      DatagramPacket p = new DatagramPacket(data, offset, length);
 >      ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:203: error: DatagramPacket cannot 
 > be resolved to a type
 >      DatagramPacket p = new DatagramPacket(data, offset, length);
 >                             ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:217: error: DatagramPacket cannot 
 > be resolved to a type
 >      public int nbSend(DatagramPacket p) throws IOException {
 >                        ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:217: error: IOException cannot be 
 > resolved to a type
 >      public int nbSend(DatagramPacket p) throws IOException {
 >                                                 ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:222: error: The method 
 > getInetAddress() is undefined for the type NonblockingSocketImpl
 >      if( (p.getAddress() != null) && 
 > !p.getAddress().equals(impl.getInetAddress()) ) {
 >                                                                  
 > ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:223: error: 
 > IllegalArgumentException cannot be resolved to a type
 >      throw new IllegalArgumentException("DatagramPacket address does not 
 > equal address of connected NonblockingDatagramSocket");
 >                ^^^^^^^^^^^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:239: error: InetAddress cannot be 
 > resolved to a type
 >      public int nbSend(byte[] data, int offset, int length, InetAddress 
 > addr, int port) throws IOException {
 >                                                             ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:239: error: IOException cannot be 
 > resolved to a type
 >      public int nbSend(byte[] data, int offset, int length, InetAddress 
 > addr, int port) throws IOException {
 >                                                                              
 >                   ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:240: error: DatagramPacket cannot 
 > be resolved to a type
 >      return nbSend(new DatagramPacket(data, offset, length, addr, port));
 >                        ^^^^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:254: error: IOException cannot be 
 > resolved to a type
 >      public int nbSend(byte[] data, int offset, int length) throws 
 > IOException {
 >                                                                    
 > ^^^^^^^^^^^
 > ./seda/nbio/NonblockingDatagramSocket.java:255: error: DatagramPacket cannot 
 > be resolved to a type
 >      return nbSend(new DatagramPacket(data, offset, length));
[...]
 > ./seda/util/StatsGatherer.java:162: error: Integer cannot be resolved to a 
 > type
 >      Integer bucket = (Integer)e.nextElement();
 >                        ^^^^^^^
 > ./seda/util/StatsGatherer.java:164: error: Integer cannot be resolved to a 
 > type
 >      int val = ((Integer)histogram.get(bucket)).intValue();
 >                  ^^^^^^^
 > ./seda/util/StatsGatherer.java:164: error: histogram cannot be resolved
 >      int val = ((Integer)histogram.get(bucket)).intValue();
 >                          ^^^^^^^^^
 > ./seda/util/StatsGatherer.java:169: error: Arrays cannot be resolved
 >      Arrays.sort(data);
 >      ^^^^^^
 > 3380 problems (3320 errors, 60 warnings)
 > make[1]: *** [java-stamp] Error 1
 > make[1]: Leaving directory `/build/user/seda-3.0/seda/src'
 > make: *** [build] Error 2
 > dpkg-buildpackage: failure: debian/rules build gave error exit status 2

The full build log is available from:
        http://people.debian.org/~lucas/logs/2008/01/15

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 containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED]             GPG: 1024D/023B3F4F |



--- End Message ---
--- Begin Message ---
These were caused by a dropped patch in gcj-4.2-4.2.2-6, fixed in
gcj-4.2-4.2.2-7.



--- End Message ---

Reply via email to