Bug#548800: plasma-scriptengines: the README contains just a single, mangled line of text

2009-09-28 Thread Flavio Stanchina
Package: plasma-scriptengines
Version: 4:4.3.1-1
Severity: minor

The /usr/share/doc/plasma-scriptengines/README file contains just a single,
mangled line of text. Same fo other plasma-scriptengine-* packages.

-- System Information:
Debian Release: squeeze/sid
  APT prefers stable
  APT policy: (500, 'stable'), (400, 'testing'), (300, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30.7-athlon
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages plasma-scriptengines depends on:
they're all version 4:4.3.1-1

-- no debconf information



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



[bts-link] source package kdebase-workspace

2009-09-28 Thread bts-link-upstream
#
# bts-link upstream status pull for source package kdebase-workspace
# see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
#

user bts-link-upstr...@lists.alioth.debian.org

# remote status report for #410123 (http://bugs.debian.org/410123)
#  * http://bugs.kde.org/show_bug.cgi?id=142882
#  * remote status changed: UNCONFIRMED -> RESOLVED
#  * remote resolution changed: (?) -> FIXED
#  * closed upstream
tags 410123 + fixed-upstream
usertags 410123 - status-UNCONFIRMED
usertags 410123 + status-RESOLVED resolution-FIXED

thanks


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



Processed: [bts-link] source package kdebase-workspace

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

> #
> # bts-link upstream status pull for source package kdebase-workspace
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user bts-link-upstr...@lists.alioth.debian.org
Setting user to bts-link-upstr...@lists.alioth.debian.org (was 
bts-link-de...@lists.alioth.debian.org).
> # remote status report for #410123 (http://bugs.debian.org/410123)
> #  * http://bugs.kde.org/show_bug.cgi?id=142882
> #  * remote status changed: UNCONFIRMED -> RESOLVED
> #  * remote resolution changed: (?) -> FIXED
> #  * closed upstream
> tags 410123 + fixed-upstream
Bug #410123 [klipper] klipper: clearing the clipboard does not clear the 
clipboard history
Added tag(s) fixed-upstream.
> usertags 410123 - status-UNCONFIRMED
Bug#410123: klipper: clearing the clipboard does not clear the clipboard history
Usertags were: status-UNCONFIRMED.
Usertags are now: .
> usertags 410123 + status-RESOLVED resolution-FIXED
Bug#410123: klipper: clearing the clipboard does not clear the clipboard history
There were no usertags set.
Usertags are now: status-RESOLVED resolution-FIXED.
> 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-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#548708: FTBFS with GCC 4.4: #elif is missing defined()

2009-09-28 Thread Ana Guerrero
On Mon, Sep 28, 2009 at 10:35:52AM +0100, Martin Michlmayr wrote:
> Package: wv2
> Version: 0.4.0.dfsg-1
> User: debian-...@lists.debian.org
> Usertags: ftbfs-gcc-4.4
> Tags: patch
>

Fixed upstream already:
http://wvware.svn.sourceforge.net/viewvc/wvware/wv2-trunk/src/ustring.cpp?r1=2&r2=36&pathrev=36

So it will be in the next upstream release.

Ana



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



Bug#548708: FTBFS with GCC 4.4: #elif is missing defined()

2009-09-28 Thread Martin Michlmayr
Package: wv2
Version: 0.4.0.dfsg-1
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.4
Tags: patch

This package fails to build with GCC 4.4 which has introduced better
checks in the preprocessor.  Your code does something like:

 #ifdef A
 #elif B
 #endif

but the #elif is wrong: #elif requires a condition whereas you're
trying to test whether B is defined.  You therefore have to use:
 #elif defined(B)

You can reproduce this problem with gcc-4.4/g++-4.4 from unstable.

> Automatic build of wv2_0.4.0.dfsg-1 on em64t by sbuild/amd64 0.53
...
> [ 41%] Building CXX object src/CMakeFiles/wv2.dir/ustring.cpp.o
> cd /build/tbm/wv2-0.4.0.dfsg/obj-x86_64-linux-gnu/src && /usr/bin/c++   
> -Dwv2_EXPORTS -DHAVE_CONFIG_H -g -O2  -fPIC -I/usr/include/glib-2.0 
> -I/usr/lib/glib-2.0/include -I/usr/include/libgsf-1 
> -I/build/tbm/wv2-0.4.0.dfsg/src 
> -I/build/tbm/wv2-0.4.0.dfsg/obj-x86_64-linux-gnu   -o 
> CMakeFiles/wv2.dir/ustring.cpp.o -c /build/tbm/wv2-0.4.0.dfsg/src/ustring.cpp
> /build/tbm/wv2-0.4.0.dfsg/src/ustring.cpp:81:23: error: #elif with no 
> expression
> /build/tbm/wv2-0.4.0.dfsg/src/ustring.cpp:94:23: error: #elif with no 
> expression
> make[3]: *** [src/CMakeFiles/wv2.dir/ustring.cpp.o] Error 1
> make[3]: Leaving directory `/build/tbm/wv2-0.4.0.dfsg/obj-x86_64-linux-gnu'
> make[2]: *** [src/CMakeFiles/wv2.dir/all] Error 2
> make[2]: Leaving directory `/build/tbm/wv2-0.4.0.dfsg/obj-x86_64-linux-gnu'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/build/tbm/wv2-0.4.0.dfsg/obj-x86_64-linux-gnu'
> dh_auto_build: make returned exit code 2
> make: *** [build] Error 1
> dpkg-buildpackage: error: debian/rules build gave error exit status 2

--- src/ustring.cpp~2009-09-28 09:27:00.0 +
+++ src/ustring.cpp 2009-09-28 09:27:59.0 +
@@ -78,9 +78,9 @@
 {
 #if defined(HAVE_FUNC_ISINF)
   return (isinf(d) == 1);
-#elif HAVE_FUNC_FINITE
+#elif defined(HAVE_FUNC_FINITE)
   return finite(d) == 0 && d == d; // ### can we distinguish between + and - ?
-#elif HAVE_FUNC__FINITE
+#elif defined(HAVE_FUNC__FINITE)
   return _finite(d) == 0 && d == d; // ###
 #else
   return false;
@@ -91,9 +91,9 @@
 {
 #if defined(HAVE_FUNC_ISINF)
   return (isinf(d) == -1);
-#elif HAVE_FUNC_FINITE
+#elif defined(dHAVE_FUNC_FINITE)
   return finite(d) == 0 && d == d; // ###
-#elif HAVE_FUNC__FINITE
+#elif defined(HAVE_FUNC__FINITE)
   return _finite(d) == 0 && d == d; // ###
 #else
   return false;

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



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