Bug#474977: marked as done (Remove inactive maintainer from Uploaders)

2009-12-21 Thread Debian Bug Tracking System
Your message dated Mon, 21 Dec 2009 10:35:56 +0100
with message-id <20091221093556.ga18...@debian.org>
and subject line Re: Bug#474977: Remove inactive maintainer from Uploaders
has caused the Debian Bug report #474977,
regarding Remove inactive maintainer from Uploaders
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.)


-- 
474977: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474977
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gpsk31 
Severity: wishlist

One of the co-maintainers of this package Carlos Barros 
is apparently not active anymore.  Therefore, please, I am asking you remove 
this maintainer from Uploaders.

Ana



--- End Message ---
--- Begin Message ---
Ana Guerrero  (08/04/2008):
> One of the co-maintainers of this package Carlos Barros
>  is apparently not active anymore.  Therefore,
> please, I am asking you remove this maintainer from Uploaders.

It's fixed, the package was even orphaned.

Mraw,
KiBi.


signature.asc
Description: Digital signature
--- End Message ---


Processing of gpsk31_0.5-3_amd64.changes

2009-12-21 Thread Archive Administrator
gpsk31_0.5-3_amd64.changes uploaded successfully to localhost
along with the files:
  gpsk31_0.5-3.dsc
  gpsk31_0.5-3.diff.gz
  gpsk31_0.5-3_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#557160: marked as done (gpsk31: FTBFS on GNU/kFreeBSD)

2009-12-21 Thread Debian Bug Tracking System
Your message dated Mon, 21 Dec 2009 10:17:10 +
with message-id 
and subject line Bug#557160: fixed in gpsk31 0.5-3
has caused the Debian Bug report #557160,
regarding gpsk31: FTBFS on GNU/kFreeBSD
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.)


-- 
557160: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557160
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gpsk31
Version: 0.5-2
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package FTBFS on GNU/kFreeBSD given there's no MSG_MORE there.
Please find attached a suggestion, keeping MSG_MORE as flag in send()
if it's defined, and passing no flags otherwise. I'm not sure it's
sufficient for this package to work fine, though.

Thanks for considering.

Mraw,
KiBi.
--- gpsk31-0.5.orig/src/socketif.C
+++ gpsk31-0.5/src/socketif.C
@@ -186,7 +186,13 @@
 
 int tcp_send(char *buf, int len) {
int sts;
-   sts = send(stream_fd, buf, len, MSG_MORE);
+   int flags;
+#ifdef MSG_MORE
+   flags = MSG_MORE;
+#else
+   flags = 0;
+#endif
+   sts = send(stream_fd, buf, len, flags);
return sts;
 }
 
--- End Message ---
--- Begin Message ---
Source: gpsk31
Source-Version: 0.5-3

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

gpsk31_0.5-3.diff.gz
  to main/g/gpsk31/gpsk31_0.5-3.diff.gz
gpsk31_0.5-3.dsc
  to main/g/gpsk31/gpsk31_0.5-3.dsc
gpsk31_0.5-3_amd64.deb
  to main/g/gpsk31/gpsk31_0.5-3_amd64.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 557...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated gpsk31 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: SHA1

Format: 1.8
Date: Mon, 21 Dec 2009 10:38:58 +0100
Source: gpsk31
Binary: gpsk31
Architecture: source amd64
Version: 0.5-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: Cyril Brulebois 
Description: 
 gpsk31 - A gtk based psk31
Closes: 557160
Changes: 
 gpsk31 (0.5-3) unstable; urgency=low
 .
   * QA upload.
   * Fix FTBFS on GNU/kFreeBSD (Closes: #557160): only pass MSG_MORE if
 it's defined. It might not be sufficient to get a working package on
 GNU/kFreeBSD, bug reports are (as always) welcome.
   * Tweak config.{guess,sub} handling:
  - Unconditionally copy them before configure (there's autotools-dev
in Build-Depends already).
  - Remove them in the clean target to keep the Debian diff clean.
Checksums-Sha1: 
 22dd44c38d4490e91818508f61f11a3870433136 961 gpsk31_0.5-3.dsc
 affcd9891fa0b3b4194fa5345e7d01c830014b3d 3945 gpsk31_0.5-3.diff.gz
 27e4d890ab1f17c802e0037559fb8f075ab488ae 67726 gpsk31_0.5-3_amd64.deb
Checksums-Sha256: 
 3c716b3898eead19b7c00144abac6299249a2d075008336f9b9e076f05fe59df 961 
gpsk31_0.5-3.dsc
 93ff4050da21c49862101babe6bb046eb8243bc6aa024be01ab4c6a4244fa41e 3945 
gpsk31_0.5-3.diff.gz
 a4bbf71f6a7521807a6549286dcd8baf3489411b7ccd3715cf85b9c9969c97f8 67726 
gpsk31_0.5-3_amd64.deb
Files: 
 0786845e4c8826ab33c3096098130674 961 hamradio optional gpsk31_0.5-3.dsc
 dc0362ad194e9114c97d5c58c7b39a1f 3945 hamradio optional gpsk31_0.5-3.diff.gz
 131bf18d28356595e06e3b8192bad8aa 67726 hamradio optional gpsk31_0.5-3_amd64.deb

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

iEYEARECAAYFAksvRNAACgkQeGfVPHR5Nd3UEACgmVhQ47NOqIyOvr5DZjj9ij1U
UJwAnizDt1OINMfRQML3LgZCxRu8f2MV
=PkNY
-END PGP SIGNATURE-


--- End Message ---


Processing of prokyon3_0.9.6-2_amd64.changes

2009-12-21 Thread Archive Administrator
prokyon3_0.9.6-2_amd64.changes uploaded successfully to localhost
along with the files:
  prokyon3_0.9.6-2.dsc
  prokyon3_0.9.6-2.diff.gz
  prokyon3_0.9.6-2_amd64.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#557950: marked as done (prokyon3: FTBFS on GNU/kFreeBSD)

2009-12-21 Thread Debian Bug Tracking System
Your message dated Mon, 21 Dec 2009 11:19:29 +
with message-id 
and subject line Bug#557950: fixed in prokyon3 0.9.6-2
has caused the Debian Bug report #557950,
regarding prokyon3: FTBFS on GNU/kFreeBSD
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.)


-- 
557950: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=557950
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: prokyon3
Version: 0.9.6-1
Severity: important
Tags: patch
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package FTBFS on GNU/kFreeBSD because $QT_LIBS aren't used on this
platform yet. Please find attached a patch to fix this in acinclude.m4,
you only have to relibtoolize (autoreconf -vfi for example) after having
applied it to get the package almost buildable.

It then chokes this way:
| /usr/bin/install: skipping `././testmusicextras/CVS'

(rough back-translation, I'm not under a C locale)

I'd then suggest getting rid of that CVS directory entirely through an
rm -rf in the clean target. Your package then builds fine.

Thanks for considering.

Mraw,
KiBi.
--- prokyon3-0.9.6.orig/acinclude.m4
+++ prokyon3-0.9.6/acinclude.m4
@@ -381,7 +381,7 @@
 fi
 ;;
 
-*linux*)
+*linux*|*k*bsd*)
 QT_LIBS="$QT_LIB"
 if test $QT_IS_STATIC = yes && test $QT_IS_EMBEDDED = no; then
 #QT_LIBS="$QT_LIBS -L$x_libraries -lXext -lX11 -lm -lSM -lICE -ldl 
-ljpeg"
--- End Message ---
--- Begin Message ---
Source: prokyon3
Source-Version: 0.9.6-2

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

prokyon3_0.9.6-2.diff.gz
  to main/p/prokyon3/prokyon3_0.9.6-2.diff.gz
prokyon3_0.9.6-2.dsc
  to main/p/prokyon3/prokyon3_0.9.6-2.dsc
prokyon3_0.9.6-2_amd64.deb
  to main/p/prokyon3/prokyon3_0.9.6-2_amd64.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 557...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Cyril Brulebois  (supplier of updated prokyon3 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: SHA1

Format: 1.8
Date: Mon, 21 Dec 2009 11:17:29 +0100
Source: prokyon3
Binary: prokyon3
Architecture: source amd64
Version: 0.9.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: Cyril Brulebois 
Description: 
 prokyon3   - A mp3 and ogg/vorbis manager and tag editor
Closes: 557950
Changes: 
 prokyon3 (0.9.6-2) unstable; urgency=low
 .
   * QA upload.
   * Switch for dpatch to quilt:
  - Rename stuff in debian/patches.
  - Use DEP-3 headers to preserve info previously in dpatch headers.
  - Update Build-Depends.
  - Update include in debian/rules.
  - Also patch before running configure instead of only patching before
building, using $(QUILT_STAMPFN).
  - Refresh 10_gcc4x.diff, it was adding a line while being fuzzingly
applied.
   * Fix FTBFS on GNU/kFreeBSD (Closes: #557950):
  - Patch acinclude.m4 to match *k*bsd* the same way as it's done for
*linux*.
  - Relibtoolize accordingly: call “autoreconf -vfi” before configure.
  - Update Build-Depends accordingly: add autoconf, automake, libtool.
   * Fix config.{guess,sub} handling: make it deterministic by adding
 autotools-dev to Build-Depends, and by unconditionally copying those
 files.
   * Fix (upstream) install target by removing the testmusicextras/CVS/
 directory in the (Debian) clean target.
Checksums-Sha1: 
 612ac0e25bcc5baae9305a79fb75861feb16b2f7 1342 prokyon3_0.9.6-2.dsc
 1ea3d2dafaef89d214cef5e5feec71bd7fcc931b 5781 prokyon3_0.9.6-2.diff.gz
 7b7d0a135b29b4804f3654dd464177955d84e2fa 925602 prokyon3_0.9.6-2_amd64.deb
Checksums-Sha256: 
 634b1ec484e6f79d03ff4a31aa0100fe023515157b20cf1b00995fc6fcb0dc87 1342 
prokyon3_0.9.6-2.dsc
 b6fe30831ca85a2360463684447a4a0119c43721b557dbf7ae99f351cc22 5781 
prokyon3_0.9.6-2.diff.gz
 06974495e04f41e78218842b8c59fcdf01e94e1532fa3bc049e5913c61176d69 925602 
prokyon3_0.9.6-2_amd64.deb
Files: 
 4187a262f5baadd8508a953d5b313256 1342 sound optional prokyon3_0.9.6-2.dsc
 7872f2b7784e9c8ce76fbf05aa44cb6b 5781 sound optional prokyon3_0.9.6-2.diff.gz
 8e9415e2fcd6bf3b1f3e7eeea8e19f47 925602 sound opt

Bug#560044: (no subject)

2009-12-21 Thread gisel
Wow, indeed quite a bad bug. Took me quite a while to figure out the problem. 
Thanks a lot, Heikki.

Carsten



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#561693: Same problem with sun-java6-plugin

2009-12-21 Thread Ivan Marin
Hello there,

Same problem here with sun java plugin.

Debian sid amd64
ii  sun-java6-plugin6-17-1 The
Java(TM) Plug-in, Java SE 6
ii  iceweasel   3.5.6-1
 lightweight web browser based on Mozilla

Java Plug-in 1.6.0_17
Using JRE version 1.6.0_17-b04 Java HotSpot(TM) 64-Bit Server VM
User home directory = /home/ispmarin

c:   clear console window
f:   finalize objects on finalization queue
g:   garbage collect
h:   display this help message
l:   dump classloader list
m:   print memory usage
o:   trigger logging
q:   hide console
r:   reload policy configuration
s:   dump system and deployment properties
t:   dump thread list
v:   dump thread stack
x:   clear classloader cache
0-5: set trace level to 



load: class jreCheck.class not found.
java.lang.ClassNotFoundException: jreCheck.class
at
sun.plugin2.applet.Applet2ClassLoader.findClass(Applet2ClassLoader.java:152)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
 at
sun.plugin2.applet.Plugin2ClassLoader.loadCode(Plugin2ClassLoader.java:447)
at sun.plugin2.applet.Plugin2Manager.createApplet(Plugin2Manager.java:2880)
 at
sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Plugin2Manager.java:1397)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.net.ConnectException: Network is unreachable
at java.net.PlainSocketImpl.socketConnect(Native Method)
at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
 at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
 at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
at java.net.Socket.connect(Socket.java:525)
 at sun.net.NetworkClient.doConnect(NetworkClient.java:161)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
 at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
at sun.net.www.http.HttpClient.(HttpClient.java:233)
 at sun.net.www.http.HttpClient.New(HttpClient.java:306)
at sun.net.www.http.HttpClient.New(HttpClient.java:323)
 at
sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:860)
at
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:801)
 at
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:726)
at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1049)
 at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:373)
at
sun.plugin2.applet.Applet2ClassLoader.getBytes(Applet2ClassLoader.java:458)
 at
sun.plugin2.applet.Applet2ClassLoader.access$000(Applet2ClassLoader.java:46)
at sun.plugin2.applet.Applet2ClassLoader$1.run(Applet2ClassLoader.java:126)
 at java.security.AccessController.doPrivileged(Native Method)
at
sun.plugin2.applet.Applet2ClassLoader.findClass(Applet2ClassLoader.java:123)
 ... 6 more
Exception: java.lang.ClassNotFoundException: jreCheck.class
load: class jreVerify.class not found.
java.lang.ClassNotFoundException: jreVerify.class
 at
sun.plugin2.applet.Applet2ClassLoader.findClass(Applet2ClassLoader.java:152)
at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
at
sun.plugin2.applet.Plugin2ClassLoader.loadCode(Plugin2ClassLoader.java:447)
 at sun.plugin2.applet.Plugin2Manager.createApplet(Plugin2Manager.java:2880)
at
sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Plugin2Manager.java:1397)
 at java.lang.Thread.run(Thread.java:619)
Caused by: java.net.ConnectException: Network is unreachable
at java.net.PlainSocketImpl.socketConnect(Native Method)
 at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
 at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
 at java.net.Socket.connect(Socket.java:525)
at sun.net.NetworkClient.doConnect(NetworkClient.java:161)
 at sun.net.www.http.HttpClient.openServer(HttpClient.java:394)
at sun.net.www.http.HttpClient.openServer(HttpClient.java:529)
 at sun.net.www.http.HttpClient.(HttpClient.java:233)
at sun.net.www.http.HttpClient.New(HttpClient.java:306)
 at sun.net.www.http.HttpClient.New(HttpClient.java:323)
at
sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:860)
 at
sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:801)
at
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:726)
 at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1049)
at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:373)
 at
sun.plugin2.applet.Applet2ClassLoader.getBytes(Applet2ClassLoader.java:458)
at
sun.plugin2.apple

Processing of libspiff_1.0.0-3_i386.changes

2009-12-21 Thread Archive Administrator
libspiff_1.0.0-3_i386.changes uploaded successfully to localhost
along with the files:
  libspiff_1.0.0-3.dsc
  libspiff_1.0.0-3.diff.gz
  libspiff4_1.0.0-3_i386.deb
  libspiff-dev_1.0.0-3_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: limit source to libspiff, tagging 504973

2009-12-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #libspiff (1.0.0-3) unstable; urgency=low
> #
> #  * Fix FTBFS with GCC 4.4, thanks to Martin Michlmayr (Closes: #504973)
> #
> limit source libspiff
Limiting to bugs with field 'source' containing at least one of 'libspiff'
Limit currently set to 'source':'libspiff'

> tags 504973 + pending confirmed
Bug #504973 [libspiff] FTBFS with GCC 4.4: missing #include
Added tag(s) confirmed and pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#504973: marked as done (FTBFS with GCC 4.4: missing #include)

2009-12-21 Thread Debian Bug Tracking System
Your message dated Mon, 21 Dec 2009 16:03:29 +
with message-id 
and subject line Bug#504973: fixed in libspiff 1.0.0-3
has caused the Debian Bug report #504973,
regarding FTBFS with GCC 4.4: missing #include
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.)


-- 
504973: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504973
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libspiff
Version: 0.8.3-1
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of libspiff_0.8.3-1 on em64t by sbuild/amd64 0.53
...
>  g++ -DHAVE_CONFIG_H -I. -I.. -I./test/CppTest -I../include -I/usr/include -g 
> -O2 -MT src/SpiffPropsWriter.lo -MD -MP -MF src/.deps/SpiffPropsWriter.Tpo -c 
> ../src/SpiffPropsWriter.cpp  -fPIC -DPIC -o src/.libs/SpiffPropsWriter.o
> ../src/SpiffPropsWriter.cpp: In member function 'void 
> Spiff::SpiffPropsWriter::writeDate()':
> ../src/SpiffPropsWriter.cpp:213: error: '::snprintf' has not been declared
> ../src/SpiffPropsWriter.cpp: In member function 'void 
> Spiff::SpiffPropsWriter::writePlaylistOpen()':
> ../src/SpiffPropsWriter.cpp:278: error: '::snprintf' has not been declared
> make[1]: *** [src/SpiffPropsWriter.lo] Error 1
> make[1]: Leaving directory `/build/tbm/libspiff-0.8.3/obj-x86_64-linux-gnu'
> make: *** [build-stamp] Error 2
> dpkg-buildpackage: failure: debian/rules build gave error exit status 2

--- src/SpiffPropsWriter.cpp~   2008-11-08 08:24:53.0 +
+++ src/SpiffPropsWriter.cpp2008-11-08 08:25:00.0 +
@@ -43,6 +43,7 @@
  * Implementation of SpiffPropsWriter.
  */
 
+#include 
 #include 
 #include 
 #include 
--- src/SpiffWriter.cpp~2008-11-08 08:25:24.0 +
+++ src/SpiffWriter.cpp 2008-11-08 08:25:46.0 +
@@ -43,6 +43,7 @@
  * Implementation of SpiffWriter.
  */
 
+#include 
 #include 
 #include 
 #include 
--- src/SpiffXmlFormatter.cpp~  2008-11-08 08:26:01.0 +
+++ src/SpiffXmlFormatter.cpp   2008-11-08 08:26:08.0 +
@@ -45,6 +45,7 @@
 
 #include 
 #include 
+#include 
 #include 
 using namespace std;
 using namespace Spiff::Toolbox;

-- 
Martin Michlmayr
http://www.cyrius.com/


--- End Message ---
--- Begin Message ---
Source: libspiff
Source-Version: 1.0.0-3

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

libspiff-dev_1.0.0-3_i386.deb
  to main/libs/libspiff/libspiff-dev_1.0.0-3_i386.deb
libspiff4_1.0.0-3_i386.deb
  to main/libs/libspiff/libspiff4_1.0.0-3_i386.deb
libspiff_1.0.0-3.diff.gz
  to main/libs/libspiff/libspiff_1.0.0-3.diff.gz
libspiff_1.0.0-3.dsc
  to main/libs/libspiff/libspiff_1.0.0-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 504...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Paleino  (supplier of updated libspiff 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: SHA1

Format: 1.8
Date: Mon, 21 Dec 2009 16:24:55 +0100
Source: libspiff
Binary: libspiff4 libspiff-dev
Architecture: source i386
Version: 1.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group 
Changed-By: David Paleino 
Description: 
 libspiff-dev - development files for libSpiff
 libspiff4  - library to read/write XSPF, the XML Shareable Playlist Format
Closes: 504973
Changes: 
 libspiff (1.0.0-3) unstable; urgency=low
 .
   * QA upload.
   * Fix FTBFS with GCC 4.4, thanks to Martin Michlmayr (Closes: #504973)
Checksums-Sha1: 
 ae12e9454a1c368c3d387cca3850a598e3b98bc7 1066 libspiff_1.0.0-3.dsc
 be0f4459a08672b9ee10a516d7bc36e580cbe131 3376 libspiff_1.0.0-3.diff.gz
 6dfc39dca15bbfe2efe9b7a60a71e877e11c 91270 libspiff4_1.0.0-3_i386.deb
 43fad628681f6d7cb816cedafa86fe50e51e1215 130054 libspiff-dev_1.0.0-3_i386.deb
Checksums-Sha256: 
 41c21cf1b9cb6a7

graphviz 2.20.2-6 MIGRATED to testing

2009-12-21 Thread Debian testing watch
FYI: The status of the graphviz source package
in Debian's testing distribution has changed.

  Previous version: 2.20.2-3
  Current version:  2.20.2-6

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



rhyme REMOVED from testing

2009-12-21 Thread Debian testing watch
FYI: The status of the rhyme source package
in Debian's testing distribution has changed.

  Previous version: 0.9-6
  Current version:  (not in testing)
  Hint: Package not in unstable

The script that generates this mail tries to extract removal
reasons from comments in the britney hint files. Those comments
were not originally meant to be machine readable, so if the
reason for removing your package seems to be nonsense, it is
probably the reporting script that got confused. Please check the
actual hints file before you complain about meaningless removals.

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



fondu 0.0.20051010-1 MIGRATED to testing

2009-12-21 Thread Debian testing watch
FYI: The status of the fondu source package
in Debian's testing distribution has changed.

  Previous version: 0.0.20050825-1.1
  Current version:  0.0.20051010-1

-- 
This email is automatically generated once a day.  As the installation of
new packages into testing happens multiple times a day you will receive
later changes on the next day.
See http://release.debian.org/testing-watch/ for more information.


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: tagging 504824, tagging 504864, tagging 504902, tagging 504943, tagging 504963, tagging 504970 ...

2009-12-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 504824 pending
Bug #504824 [libnids] FTBFS with GCC 4.4: #elif used instead of #else
Added tag(s) pending.
> tags 504864 pending
Bug #504864 [omnievents] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 504902 pending
Bug #504902 [libofa] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 504943 pending
Bug #504943 [libassa] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 504963 pending
Bug #504963 [libfcgi] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 504970 pending
Bug #504970 [italc] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 504973 pending
Bug #504973 {Done: David Paleino } [libspiff] FTBFS with GCC 
4.4: missing #include
Added tag(s) pending.
> tags 505021 pending
Bug #505021 [passepartout] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 505333 pending
Bug #505333 [gloox] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 505420 pending
Bug #505420 [esteidutil] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 510759 pending
Bug #510759 [log4cxx] FTBFS with GCC 4.4: missing #include
Ignoring request to alter tags of bug #510759 to the same tags previously set
> tags 526151 pending
Bug #526151 [openmovieeditor] FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> tags 551107 pending
Bug #551107 {Done: Ritesh Raj Sarraf } [fusecompress] 
FTBFS with GCC 4.4: missing #include
Added tag(s) pending.
> #
>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: your mail

2009-12-21 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 561011 minor
Bug #561011 [amavis-stats] amavis-stats: spam statistics do not graph, rrd error
Severity set to 'minor' from 'important'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#561011: May not be a bug after all

2009-12-21 Thread jmroth+debbug
severity: minor
thanks

I guess it's really due to much less virii being transmitted to my
machine. What the upgrade to Lenny has to do with that, I do not know. I
have to investigate.

The error message appears if there has not been transmitted any
(recognized) virus in the last 24 hours. I presume it would also happen
to the weekly graph if there was no virus detected in a period of 7
days, although I have not had that yet ;)



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Mejor oferta de trabajo en Espana

2009-12-21 Thread GRUPO ASPEC
¡Gana en vísperas de Navidad con 
Grupo ASPEC!  La empresa busca empleados   cumplidores y 
dinámicos para el trabajo en una oficina (trabajo parcial es 
posible).Beneficios   el trabajo lleva 2-3 horas al día (sin 
  molestar a la actividad principal)  horario flexible  
  2 semanas de   instrucción   plazo de prueba pagado
  crecimiento profesional   trabajo fuera de la oficina 
también es posibleRequisitos 
  carácter   comunicativo  persona resposable, atenta y puntual  
  enseñanza superior   (deseable)  conocimento del 
inglés (nivel básico) acceso al Internet   (24/7) 
PC: MS Word, E-mail (usuario   exprerimentado)  
   Responsabilidadesdespachar el correo 
diarioregistrar encargoscrear una base de clientes  
realizar pagos a cuenta   de la empresa cumplir con 
las instrucciones del ejecutivoPara empezar a trabajar Vd. no 
necesita  ningunas inversiones iniciales. Vd. empieza a ganar dinero con la 
empresa  desde el primer día.Por favor no haga click en REPLY sino 
envíe  su solicitud a la dirección de nuestro departamento de 
personal SEGUN EL LINK  SIGUIENTE: office.aspe...@gmail.com 
 COPYRIGHT © GRUPO ASPEC, 2009  contact e-mail: 
office.aspe...@gmail.comdireccion: Ronda Narciso Monturiol, 7, Planta 2, 
Paterna Valencia 46980, ES 

Processing of gambit_0.2006.01.20-3_i386.changes

2009-12-21 Thread Archive Administrator
gambit_0.2006.01.20-3_i386.changes uploaded successfully to localhost
along with the files:
  gambit_0.2006.01.20-3.dsc
  gambit_0.2006.01.20-3.diff.gz
  gambit_0.2006.01.20-3_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org