Processing of gcj-4.2_4.2.1-2_multi.changes

2007-08-05 Thread Archive Administrator
gcj-4.2_4.2.1-2_multi.changes uploaded successfully to localhost along with the files: libgcj8-dev_4.2.1-2_powerpc.deb libgcj-doc_4.2.1-2_all.deb gcj-4.2-base_4.2.1-2_powerpc.deb gcj-4.2_4.2.1-2.dsc libgcj8-1_4.2.1-2_powerpc.deb libgcj8-1_4.2.1-2_sparc.deb libgcj8-dbg_4.2.1-2_amd64.de

gcj-4.2_4.2.1-2_multi.changes is NEW

2007-08-05 Thread Debian Installer
gappletviewer-4.2_4.2.1-2_amd64.deb to pool/main/g/gcj-4.2/gappletviewer-4.2_4.2.1-2_amd64.deb gappletviewer-4.2_4.2.1-2_i386.deb to pool/main/g/gcj-4.2/gappletviewer-4.2_4.2.1-2_i386.deb gappletviewer-4.2_4.2.1-2_powerpc.deb to pool/main/g/gcj-4.2/gappletviewer-4.2_4.2.1-2_powerpc.deb gapple

Processing of gcc-4.2_4.2.1-2_multi.changes

2007-08-05 Thread Archive Administrator
gcc-4.2_4.2.1-2_multi.changes uploaded successfully to localhost along with the files: protoize_4.2.1-2_i386.deb libstdc++6-4.2-dbg_4.2.1-2_sparc.deb gcc-4.2-locales_4.2.1-2_all.deb libstdc++6_4.2.1-2_sparc.deb libgcc1_4.2.1-2_i386.deb lib64gcc1_4.2.1-2_sparc.deb libffi4-dev_4.2.1-2_s

gcc-4.2_4.2.1-2_multi.changes ACCEPTED

2007-08-05 Thread Debian Installer
Accepted: cpp-4.2-doc_4.2.1-2_all.deb to pool/main/g/gcc-4.2/cpp-4.2-doc_4.2.1-2_all.deb cpp-4.2_4.2.1-2_i386.deb to pool/main/g/gcc-4.2/cpp-4.2_4.2.1-2_i386.deb cpp-4.2_4.2.1-2_powerpc.deb to pool/main/g/gcc-4.2/cpp-4.2_4.2.1-2_powerpc.deb cpp-4.2_4.2.1-2_sparc.deb to pool/main/g/gcc-4.2/

Bug#433539: marked as done (gcc-4.1: profiling support on hurd)

2007-08-05 Thread Debian Bug Tracking System
Your message dated Sun, 05 Aug 2007 21:32:15 + with message-id <[EMAIL PROTECTED]> and subject line Bug#433539: fixed in gcc-4.2 4.2.1-2 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 yo

Bug#422469: marked as done (gjdoc: upgrade fails with "invalid pointer" when /proc not mounted)

2007-08-05 Thread Debian Bug Tracking System
Your message dated Sun, 05 Aug 2007 21:32:15 + with message-id <[EMAIL PROTECTED]> and subject line Bug#422469: fixed in gcc-4.2 4.2.1-2 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 yo

Bug#434937: marked as done (gcc-4.2: Profiling on Hurd procudes a non-working executable)

2007-08-05 Thread Debian Bug Tracking System
Your message dated Sun, 05 Aug 2007 21:32:15 + with message-id <[EMAIL PROTECTED]> and subject line Bug#434937: fixed in gcc-4.2 4.2.1-2 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 yo

Bug#435053: marked as done (gcj-4.2: FTBFS on kfreebsd-amd64)

2007-08-05 Thread Debian Bug Tracking System
Your message dated Sun, 05 Aug 2007 21:32:15 + with message-id <[EMAIL PROTECTED]> and subject line Bug#435053: fixed in gcc-4.2 4.2.1-2 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 yo

Bug#436175: streambuf inheritance problem.

2007-08-05 Thread Amos Jeffries
Package: g++ Version: 4.1.3 20070718 (prerelease) Creating two classes that inherit from std::ostream and std::streambuf. When used with setw and characters: child << "some text" << std::setw(4) << "!"; only ever stores "some text" However numerics work: child << "some text" << std::setw(4)

Bug#436175:

2007-08-05 Thread Amos Jeffries
oops, Forgot to include the streambuf child class details. class StoreEntryStreamBuf : public std::streambuf { public: StoreEntryStreamBuf(StoreEntry *anEntry) : anEntry(anEntry); ~StoreEntryStreamBuf(); protected: virtual char overflow(char aChar = traits_type::eof()); virtual in