Bug#645831: shinken-core: auto-discovery fails because nmap_discovery_runner.py is not searched at the right place

2011-10-24 Thread Arthur Gautier
On Tue, Oct 18, 2011 at 10:10:15PM +, Raphael Enrici wrote:
 Package: shinken-core
 Version: 0.6.5-2
 Severity: normal
 
 Hi,
 
 while running shinken-discovery -o /etc/shinken/objects/discovery -r nmap
 after a fresh install of shinken packages, the discovery fails with the
 following message:
 Debug : Error in launching command: 
 /usr/lib64/nagios/plugins/nmap_discovery_runner.py -t localhost 
 172.16.40.0/24 [Errno 2] No such file or directory False
 
 I rechecked and the nmap_discovery_runner.py is installed in
 /usr/lib/shinken/plugins
 and the debian/config-files/etc/shinken/commands.cfg refers to $USER1$
 defined in debian/config-gile/etc/shinken/resource.cfg which points to
 /usr/lib64/nagios/plugins/.
 
 The problem can be solved by adding a $USERSHINKEN1$ variable to resource.cfg
 and modifying commands.cfg so that shinken specific plugins use this variable.
 (I'm not sure this is the right way to fix that...Maybe shinken should install
 files in the another location?)
 
 Attached is a patch that should fix this and make the autodiscovery work after
 a fresh install of the package.
 
 Please note that I also modified calls to the check.sh and check_dummy.sh as 
 they
 are installed by shinken. I did not test these particular ones, feel free to 
 ignore
 this part of the patch if you feel like it's stupid.
 
 Regards,
 Rapha??l
 

Hi, i've been working on a refactoring of packaging this weekend (change
of owner, and other things). It's not complete yet, but your bug is fixed in
this version, thanks for the bug report.

I'll be shipping an updated version of the package as soon as possible.


-- 
Arthur Gautier



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



Bug#646422: postler: FTBFS: Checking for function vasprintf : no

2011-10-24 Thread Nobuhiro Iwamatsu
Source: postler
Version: 0.1.1-1
Severity: seriouos
Justification: fails to build from source
Tags: patch

Hi,

postler FTBFS on armel, armhf, alpha and sh4.


https://buildd.debian.org/status/fetch.php?pkg=postlerarch=armelver=0.1.1-1stamp=1319178797
http://buildd.debian-ports.org/status/package.php?p=postlersuite=sid

-
Checking for program intltool-merge : /usr/bin/intltool-merge
Checking for header locale.h: yes
Checking for gio-2.0 = 2.26.0  : yes
Checking for unique-1.0 = 0.9  : yes
Checking for gtk+-2.0 = 2.18.0 : yes
Checking for webkit-1.0 = 1.1.18   : yes
Checking for libnotify =   : yes
Checking for libcanberra = : yes
Checking for indicate-0.5 =: yes
Checking for header sys/filio.h : not found
Checking for function vasprintf : no
/build/buildd-postler_0.1.1-1-armel-g8g2HG/postler-0.1.1/wscript:137:
error: the configuration failed (see
'/build/buildd-postler_0.1.1-1-armel-g8g2HG/postler-0.1.1/_build_/config.log')
make[1]: *** [override_dh_auto_configure] Error 1
make[1]: Leaving directory
`/build/buildd-postler_0.1.1-1-armel-g8g2HG/postler-0.1.1'
make: *** [build] Error 2
-

It is because this is wrong in the check of vasprintf.
The 3rd argument of vasprintf is not pointer of char but va_list.

-
$ cat wscript
..
131 # isync
132 conf.check (header_name='sys/filio.h')
133 conf.check (fragment='#define _GNU_SOURCE\n#include stdio.h\n' \
134 'int main(char** argv, int argc)\n' \
135 '{ char* a;\nvasprintf(a, %s, ); return 0; }', \
136 define_name='HAVE_VASPRINTF', msg='Checking for function
vasprintf', \
137 mandatory=True)
138 check_function ('socket', 'sys/socket.h')
139 if conf.env['DEST_OS'] == 'freebsd':
-

I made patch to fix this problem. Could you check and apply this patch?

Best regards,
 Nobuhiro
-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6
diff --git a/wscript b/wscript
index db8dbba..4af9bc6 100644
--- a/wscript
+++ b/wscript
@@ -132,7 +132,7 @@ def configure (conf):
 conf.check (header_name='sys/filio.h')
 conf.check (fragment='#define _GNU_SOURCE\n#include stdio.h\n' \
 'int main(char** argv, int argc)\n' \
-'{ char* a;\nvasprintf(a, %s, ); return 0; }', \
+'{ char* a;\nva_list ap\nvasprintf(a, %s, ap); return 0; }', \
 define_name='HAVE_VASPRINTF', msg='Checking for function vasprintf', \
 mandatory=True)
 check_function ('socket', 'sys/socket.h')


Bug#646423: kst: FTBFS: src/libkstapp/mainwindow.cpp:599:77: error: no matching function for call to 'QPrinter::getPageMargins(double*, double*, double*, double*, QPrinter::Unit)'

2011-10-24 Thread Nobuhiro Iwamatsu
Source: kst
Version: 2.0.3-1
Severity: serious
Justification: fails to build from source

Hi,

kst FTBFS on armel and armhf.
  
https://buildd.debian.org/status/fetch.php?pkg=kstarch=armelver=2.0.3-1stamp=1319042843
  
http://buildd.debian-ports.org/status/fetch.php?pkg=kstarch=armhfver=2.0.3-1stamp=1319072909

-
/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/src/libkstapp/mainwindow.cpp:
In member function 'void
Kst::MainWindow::savePrinterDefaults(QPrinter*)':
/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/src/libkstapp/mainwindow.cpp:599:77:
error: no matching function for call to
'QPrinter::getPageMargins(double*, double*, double*, double*,
QPrinter::Unit)'
/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/src/libkstapp/mainwindow.cpp:599:77:
note: candidate is:
/usr/include/qt4/QtGui/qprinter.h:260:10: note: void
QPrinter::getPageMargins(qreal*, qreal*, qreal*, qreal*,
QPrinter::Unit) const
/usr/include/qt4/QtGui/qprinter.h:260:10: note:   no known conversion
for argument 1 from 'double*' to 'qreal* {aka float*}'
make[4]: *** 
[src/libkstapp/CMakeFiles/kst2app.dir/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/src/libkstapp/mainwindow.cpp.o]
Error 1
make[4]: Leaving directory
`/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/obj-arm-linux-gnueabi'
make[3]: *** [src/libkstapp/CMakeFiles/kst2app.dir/all] Error 2
make[2]: *** [all] Error 2
dh_auto_build: make -j1 returned exit code 2
make[1]: *** [override_dh_auto_build] Error 2
make[3]: Leaving directory
`/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/obj-arm-linux-gnueabi'
make[2]: Leaving directory
`/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3/obj-arm-linux-gnueabi'
make[1]: Leaving directory `/build/buildd-kst_2.0.3-1-armel-7qyMMx/kst-2.0.3'
make: *** [build] Error 2
-

Could you check your pakcage?

Best regards,
 Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6



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



Bug#646424: foobnix: Unable to run either .mp3 or .wav files

2011-10-24 Thread shirish शिरीष
Package: foobnix
Version: 2.5.26-0.0
Severity: important

Dear Maintainer,
 I was trying to use foobnix and came with the following issue :-

$ foobnix stage\ comp\ 1.3\ \(no\ dupe\).mp3
Gtk-Message: Failed to load module pk-gtk-module
start program
('**Foobnix run in', 4.851496934890747, ' seconds**')
/usr/bin/foobnix:47: GtkWarning:
IA__gtk_tree_view_column_set_fixed_width: assertion `fixed_width  0'
failed
  gtk.main()

Trying to append a file to the folder I get the following exception :-

Exception in thread Thread-1:
Traceback (most recent call last):
  File /usr/lib/python2.7/threading.py, line 552, in __bootstrap_inner
self.run()
  File /usr/lib/python2.7/threading.py, line 505, in run
self.__target(*self.__args, **self.__kwargs)
  File /usr/lib/pymodules/python2.7/foobnix/regui/treeview/navigation_tree.py,
line 200, in task
for i, path in enumerate(paths):
TypeError: 'NoneType' object is not iterable

At the end I'm not able to listen to the music. I also tried using
.wav files but without any success :(

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'),
(1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages foobnix depends on:
ii  gstreamer0.10-ffmpeg1:0.10.12-0.0
ii  gstreamer0.10-plugins-bad   0.10.22-3
ii  gstreamer0.10-plugins-ugly  0.10.18-3
ii  python  2.7.2-9
ii  python-chardet  2.0.1-2
ii  python-dbus 0.84.0-2
ii  python-gst0.10  0.10.21-2.1
ii  python-gtk2 2.24.0-2
ii  python-keybinder0.2.2-3
ii  python-mutagen  1.20-1
ii  python-notify   0.1.1-3
ii  python-simplejson   2.2.0-1
ii  python-support  1.0.14

Versions of packages foobnix recommends:
ii  ffmpeg 5:0.8.5-0.0
ii  fuseiso20070708-2
ii  python-setuptools  0.6.24-1

foobnix suggests no packages.

-- no debconf information

-- 
          Regards,
          Shirish Agarwal  शिरीष अग्रवाल
  My quotes in this email licensed under CC 3.0
http://creativecommons.org/licenses/by-nc/3.0/
http://flossexperiences.wordpress.com
065C 6D79 A68C E7EA 52B3  8D70 950D 53FB 729A 8B17



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



Bug#614760: [PATCH] plug conversion descriptor leak in unac.c::convert() error path

2011-10-24 Thread Kartik Mistry
On Wed, Oct 12, 2011 at 12:36 PM, Jean-Francois Dockes j...@dockes.org wrote:
 The iconv_close() leak was fixed in recoll 1.16 (incidentally to another
 change), but it is present in 1.13, 1.14, and 1.15 (same unac.c file).

   The following patch fixed my problem. VSZ peaks around 160 MB.

 The original patch needed --ignore-whitespace to apply, I am attaching one
 with the same changes, but which should apply cleanly (if Kartik can make
 use of it).

Sorry for late reply. Since this patch is already applied in version
we've in Wheezy and Sid, and not in Sqeeze, I need to update package
for Stable update. Or do you want me to backport current version to
Squeeze?

(This is specially for Ersek Laszlo :)).

-- 
Kartik Mistry | IRC: kart_
{0x1f1f, kartikm}.wordpress.com



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



Bug#631912: job offer for you

2011-10-24 Thread jennifergates48

Hello,

 new job offer for you http://www.universfreeads.com/job.php?job=41264 


..



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



Bug#646425: start-stop-daemon: allow to save messages written to stdout/err from daemons

2011-10-24 Thread Sandro Tosi
Package: dpkg
Version: 1.15.8.8
Severity: important

Hello,
there are some daemons that write messages only to stdout/err (so they don't
have any logging capabilities by themselves).

With the current classic execution line:

  start-stop-daemon --start --quiet --background --exec $DAEMON -- $DAEMON_OPTS

those messages are lost, and they are the only form of debugging the daemon
gives, without them we're forced to start it by-hand (hence the quite high
severity).

Do you think it's feasable to add an option to redirect those messages to a
file? something like --output /path/to/logfile , so we can look there for
important msgs.

Thanks for considering,
Sandro

PS: I checked the manpage for the presence of any option interesting, but found
nothing. I didn't check the source code (so it might be hidden there?).

-- System Information:
Debian Release: 6.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores)
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 dpkg depends on:
ii  coreutils8.5-1   
ii  libbz2-1.0   1.0.5-6 
ii  libc62.13-21 
ii  libselinux1  2.0.96-1
ii  xz-utils 5.0.0-2 
ii  zlib1g   1:1.2.3.4.dfsg-3

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt  0.8.15.8

-- no debconf information



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



Bug#646145: [request-tracker-maintainers] Bug#646145: request-tracker3.8: Problem with interaction with postgresql database

2011-10-24 Thread Michael Rubashenkov
Here you are.

23.10.2011, 00:30, Dominic Hargreaves d...@earth.li:
 tags 646145 +moreinfo
 thanks

 On Fri, Oct 21, 2011 at 09:42:20PM +0300, Michael Rubashenkov wrote:

  At almost all restarts of Apache web server's processes can't interact with 
 database properly. They can't
  get or set data and in database log there are a lot of messages like 
 following:

 Please could you provide your Apache configuration (files in /etc/apache2)
 and RT configuration (files in /etc/request-tracker3.8; remove the
 password in RT_SiteConfig.pm first) so that we can attempt to reproduce
 this problem or determine whether this is a configuration problem.

 Thanks,
 Dominic.

 --
 Dominic Hargreaves | http://www.larted.org.uk/~dom/
 PGP key 5178E2A5 from the.earth.li (keyserver,web,email)

-- 
Best Regards,
Michael Rubashenkov

rt.tar.gz
Description: Binary data


Bug#614760: [PATCH] plug conversion descriptor leak in unac.c::convert() error path

2011-10-24 Thread Jean-Francois Dockes
Kartik Mistry writes:
  On Wed, Oct 12, 2011 at 12:36 PM, Jean-Francois Dockes j...@dockes.org 
  wrote:
   The iconv_close() leak was fixed in recoll 1.16 (incidentally to another
   change), but it is present in 1.13, 1.14, and 1.15 (same unac.c file).
  
     The following patch fixed my problem. VSZ peaks around 160 MB.
  
   The original patch needed --ignore-whitespace to apply, I am attaching one
   with the same changes, but which should apply cleanly (if Kartik can make
   use of it).
  
  Sorry for late reply. Since this patch is already applied in version
  we've in Wheezy and Sid, and not in Sqeeze, I need to update package
  for Stable update. Or do you want me to backport current version to
  Squeeze?
  
  (This is specially for Ersek Laszlo :)).

Just my 2 cents about the problem, as this is really an issue between the
kind packager and Debian users :) :

 - The problem has been reported at least by another user (on Ubuntu), so
   it's probably relatively common.

 - As far as I can see, it can mostly (or only) be triggered by members
   inside zip archives, because of the way the transcoding is (not) handled
   for these.

Cheers,

jf



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



Bug#645412: cupt: Pin from apt-listbugs does not prevent package install/upgrade

2011-10-24 Thread Eugene V. Lyubimkin
  In the concept I have in the mind all pin stanzas will not be final, so
  I think this check can be totally disabled in cupt mode.
 
 This looks problematic to me.
 I mean: I don't think that apt-listbugs should have distinct modes
 depending on the package manager the user wants to use.
[...]
 But, obviously, the primary goal is supporting apt(itude).
 It's *apt*-listbugs, after all!

Makes sense.

 The user should have (approximately) equivalent pins for both package
 managers.

That's impossible if there are different pin priority systems.

 As I said above, I am under the impression that apt-listbugs needs to
 *simultaneously* take care of each different scheme that must be
 supported.
 Currently, only one scheme is supported and everything is simple.
 Adding support for a second scheme requires code which is able to
 figure out how to handle weird situations that may arise when the two
 configuration files disagree on something.

I was under impression that it's possible not to mix modes. Different
schemes are inconsistent from the very beginning, they disagree on
almost everything even if there would be no configuration files. I
imagined it as 'if apt is installed, run in apt mode, forget about any
non-apt schemes as if they don't exist', 'if say (cupt) is installed, run
in cupt mode, forget about any non-cupt schemes as if they don't exist'.

 It's not much lack of willingness to implement the changes, even though
 I may admit that time is a bit scarce down here, and I would prefer to
 consume it in fixing apt-listbugs own bugs, rather than in adding code
 that could create more problems than the ones it is intended to
 solve...

Of course.

I understand your position. Things will don't change until the 
archive freeze, let's see if I can figure something by that time.

For the design point of view, it could be so that utilities like
apt-listbugs work with the own state file with an own format in a
package-manager-agnostic way, and for each package manager there is a
tiny submodule which converts that file/data to a
package-manager-specific configuration file every time the state
file/data changes. For that to work, utilities should not change its
behavior depending on the other (user) preferences, which I believe
would be better. But that's my humble opinion.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Developer



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



Bug#645941: missed this one

2011-10-24 Thread Thierry Randrianiriana
Hi,

Sorry, I upload it asap.

Cheers,

-- 
Thierry Randrianiriana



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



Bug#614760: [PATCH] plug conversion descriptor leak in unac.c::convert() error path

2011-10-24 Thread Ersek, Laszlo

Hi Kartik,

On Mon, 24 Oct 2011, Kartik Mistry wrote:


Sorry for late reply. Since this patch is already applied in version
we've in Wheezy and Sid, and not in Sqeeze, I need to update package
for Stable update. Or do you want me to backport current version to
Squeeze?

(This is specially for Ersek Laszlo :)).


if Jean-Francois agrees with it from the technical aspect, I think 
patching the current Squeeze version would be more close to the spirit of 
stable. It should mean less work for you too, I guess.


Currently I run a locally built .deb that consists of the Squeeze source 
plus the patch.


Thanks!
Laszlo



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



Bug#644018: binutils-gold: fails for trivial programs (internal error in operator(), at ../../gold/common.cc:124)

2011-10-24 Thread Dmitri Gribenko
Package: binutils-gold
Followup-For: Bug #644018

Dear Maintainer,

The bug has disappeared (again) for me in binutils-gold 2.21.90.20111019-3.

Best regards,
Dmitri Gribenko

-- System Information:
Debian Release: wheezy/sid
  APT prefers unreleased
  APT policy: (500, 'unreleased'), (500, 'unstable')
Architecture: armhf (armv7l)

Kernel: Linux 2.6.38-ac2-ac100 (SMP w/2 CPU cores)
Locale: LANG=ru_UA.UTF-8, LC_CTYPE=ru_UA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages binutils-gold depends on:
ii  binutils  2.21.90.20111019-3

binutils-gold recommends no packages.

binutils-gold suggests no packages.

-- no debconf information



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



Bug#645813: interface aliases ignored in recent ifupdown

2011-10-24 Thread Andrew Shadura
Hello,

On Sun, 23 Oct 2011 16:46:49 -0600
Bob Proulx b...@proulx.com wrote:

  ifupdown 0.7~alpha5+really0.6.15 properly brings up both eth0 and
  eth0:0 when doing ifup -a, after upgrading to ifupdown 0.7~beta1,
  eth0:only eth0 is up.

 That isn't quite true.  What really happens is that ifconfig isn't
 displaying the information to you.  In order to see it you will need
 to use the 'ip' command from the 'iproute' package.

Bob, is it okay if I unconditionally add 'label %iface%' to 'ip addr
add' calls in ifupdown? Testing shows it appears to do what's intended,
but please confirm if it really true.

-- 
WBR, Andrew


signature.asc
Description: PGP signature


Bug#645919: unattended-upgrades: Unattended-upgrade in progress during shutdown, sleeping for 5s

2011-10-24 Thread Michael Vogt
On Thu, Oct 20, 2011 at 08:44:24PM +0300, Teodor MICU wrote:
 2011/10/19 michael.v...@gmail.com michaelv...@imap.cc:
  Could you please attach the logs from /var/log/unattended-upgrade*
 
 Done.
 
  Was this upgrade done itself with unattended-upgrade?
 
 Yes. I tried to kill u-a-shutdown but it respawn itself. I disabled
 Unattended-Upgrade::Automatic-Reboot in config file and I guess this
 made the difference. Afterwards I upgraded u-a manually, the only
 package left behind (not upgraded).

Yes for the logs and the deailed explaination what was happening, this
is fixed in my bzr tree now and it will be part of the next upload.

Thanks,
 Michael



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



Bug#646284: job offer for you

2011-10-24 Thread jennifergates48

Hello,

 new job offer for you http://www.universfreeads.com/job.php?job=41264 


..



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



Bug#646246: Tests passed

2011-10-24 Thread noreply


31, 32, 39 failed before and after patching:
 

t/31_ocropus.t . 1/? Using ocroscript with recognize.
tesslanguage=eng ocroscript recognize test.png

#   Failed test 'Ocropus returned sensible text'
#   at t/31_ocropus.t line 32.
#   '!DOCTYPE html
# PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
# http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
# html xmlns=http://www.w3.org/1999/xhtml;headmeta content=ocr_line 
ocr_page name=ocr-capabilities/meta content=en name=ocr-langs/meta 
content=Latn name=ocr-scripts/meta content= name=ocr-
microformats/titleOCR Output/title/head
# bodydiv class=ocr_page title=bbox 0 0 450 58; image test.pngspan 
class=ocr_line title=bbox 8 11 449 57The- quick brown fox
# /span/div/body/html
# '
# doesn't match '(?-xism:The quick brown fox)'
# Looks like you failed 1 test of 2.
t/31_ocropus.t . Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/2 subtests



t/32_ocropus_in_thread.t ... 1/2 Using ocroscript with recognize.
Getting info for test.png
Format Portable Network Graphics
New page filename test.png, format Portable Network Graphics
Added /tmp/7xDAZbRAcgb.png at page 1 with resolution 300
Using ocroscript with recognize.
tesslanguage=eng ocroscript recognize /tmp/7xDAZbRAcgb.png
unlink0: /tmp/7xDAZbRAcgb.png is gone already at 
/usr/share/perl5/Gtk2/Ex/Simple/TiedCommon.pm line 65
t/32_ocropus_in_thread.t ... 2/2
#   Failed test 'Ocropus returned sensible text'
#   at t/32_ocropus_in_thread.t line 43.
#   '!DOCTYPE html
# PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
# http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
# html xmlns=http://www.w3.org/1999/xhtml;headmeta content=ocr_line 
ocr_page name=ocr-capabilities/meta content=en name=ocr-langs/meta 
content=Latn name=ocr-scripts/meta content= name=ocr-
microformats/titleOCR Output/title/head
# bodydiv class=ocr_page title=bbox 0 0 450 58; image 
/tmp/7xDAZbRAcgb.pngspan class=ocr_line title=bbox 8 11 449 57The- 
quick brown fox
# /span/div/body/html
# '
# doesn't match '(?-xism:The quick brown fox)'
# Looks like you failed 1 test of 2.
t/32_ocropus_in_thread.t ... Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/2 subtests


t/39_gocr.t  Getting info for test.pnm
Format Portable anymap
New page filename test.pnm, format Portable anymap
Added /tmp/UISp1CHodSo.pnm at page 1 with resolution 72
gocr /tmp/UISp1CHodSo.pnm
unlink0: /tmp/UISp1CHodSo.pnm is gone already at 
/usr/share/perl5/Gtk2/Ex/Simple/TiedCommon.pm line 65
t/39_gocr.t  1/1
#   Failed test 'gocr returned sensible text'
#   at t/39_gocr.t line 42.
#   'TJ7e quic_ brown fox
# '
# doesn't match '(?-xism:The quick brown fox)'
# Looks like you failed 1 test of 1.
t/39_gocr.t  Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests



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



Bug#646298: Tested patch for font-embeding

2011-10-24 Thread noreply

tests failed with old patch (111_sav...)
because empty option-font was
passed in tests. now working.

fixed patch attached.

31, 32, 39 failed before and after patching:
 

t/31_ocropus.t . 1/? Using ocroscript with recognize.
tesslanguage=eng ocroscript recognize test.png

#   Failed test 'Ocropus returned sensible text'
#   at t/31_ocropus.t line 32.
#   '!DOCTYPE html
# PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
# http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
# html xmlns=http://www.w3.org/1999/xhtml;headmeta content=ocr_line 
ocr_page name=ocr-capabilities/meta content=en name=ocr-langs/meta 
content=Latn name=ocr-scripts/meta content= name=ocr-
microformats/titleOCR Output/title/head
# bodydiv class=ocr_page title=bbox 0 0 450 58; image test.pngspan 
class=ocr_line title=bbox 8 11 449 57The- quick brown fox
# /span/div/body/html
# '
# doesn't match '(?-xism:The quick brown fox)'
# Looks like you failed 1 test of 2.
t/31_ocropus.t . Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/2 subtests



t/32_ocropus_in_thread.t ... 1/2 Using ocroscript with recognize.
Getting info for test.png
Format Portable Network Graphics
New page filename test.png, format Portable Network Graphics
Added /tmp/7xDAZbRAcgb.png at page 1 with resolution 300
Using ocroscript with recognize.
tesslanguage=eng ocroscript recognize /tmp/7xDAZbRAcgb.png
unlink0: /tmp/7xDAZbRAcgb.png is gone already at 
/usr/share/perl5/Gtk2/Ex/Simple/TiedCommon.pm line 65
t/32_ocropus_in_thread.t ... 2/2
#   Failed test 'Ocropus returned sensible text'
#   at t/32_ocropus_in_thread.t line 43.
#   '!DOCTYPE html
# PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN
# http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
# html xmlns=http://www.w3.org/1999/xhtml;headmeta content=ocr_line 
ocr_page name=ocr-capabilities/meta content=en name=ocr-langs/meta 
content=Latn name=ocr-scripts/meta content= name=ocr-
microformats/titleOCR Output/title/head
# bodydiv class=ocr_page title=bbox 0 0 450 58; image 
/tmp/7xDAZbRAcgb.pngspan class=ocr_line title=bbox 8 11 449 57The- 
quick brown fox
# /span/div/body/html
# '
# doesn't match '(?-xism:The quick brown fox)'
# Looks like you failed 1 test of 2.
t/32_ocropus_in_thread.t ... Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/2 subtests


t/39_gocr.t  Getting info for test.pnm
Format Portable anymap
New page filename test.pnm, format Portable anymap
Added /tmp/UISp1CHodSo.pnm at page 1 with resolution 72
gocr /tmp/UISp1CHodSo.pnm
unlink0: /tmp/UISp1CHodSo.pnm is gone already at 
/usr/share/perl5/Gtk2/Ex/Simple/TiedCommon.pm line 65
t/39_gocr.t  1/1
#   Failed test 'gocr returned sensible text'
#   at t/39_gocr.t line 42.
#   'TJ7e quic_ brown fox
# '
# doesn't match '(?-xism:The quick brown fox)'
# Looks like you failed 1 test of 1.
t/39_gocr.t  Dubious, test returned 1 (wstat 256, 0x100)
Failed 1/1 subtests

--- Gscan2pdf.pm	2011-08-27 07:00:41.0 +0200
+++ Gscan2pdf.pm	2011-10-24 09:23:48.959012706 +0200
@@ -434,12 +434,18 @@
  my ( $self, $path, $list_of_pages, $metadata, $options, $pidfile ) = @_;
 
  my $page = 0;
+ my %fonthash = ();
 
  # Create PDF with PDF::API2
  $self-{message} = $d-get('Setting up PDF');
  my $pdf = PDF::API2-new( -file = $path );
  $pdf-info($metadata) if defined($metadata);
 
+ if( defined( $options-{font} ) ){ 
+   $fonthash{ $options-{font} } = $pdf-ttfont( $options-{font}, -unicodemap = 1 );
+ }
+ $fonthash{ 'Times-Roman' } = $pdf-corefont('Times-Roman');
+
  foreach my $pagedata ( @{$list_of_pages} ) {
   ++$page;
   $self-{progress} = $page / ( $#{$list_of_pages} + 2 );
@@ -578,10 +584,10 @@
for my $box ( $pagedata-boxes ) {
 my ( $x1, $y1, $x2, $y2, $txt ) = @$box;
 if ( $txt =~ /[[:^ascii:]]/ and defined( $options-{font} ) ) {
- $font = $pdf-ttfont( $options-{font}, -unicodemap = 1 );
+ $font = $fonthash{ $options-{font} };
 }
 else {
- $font = $pdf-corefont('Times-Roman');
+ $font = $fonthash{'Times-Roman'};
 }
 ( $x2, $y2 ) = ( $w * $resolution, $h * $resolution )
   if ( $x1 == 0 and $y1 == 0 and not defined($x2) );


Bug#646426: fancy.so: undefined symbol: webkit_web_view_get_selected_text

2011-10-24 Thread Teodor
Package: claws-mail-fancy-plugin
Version: 3.7.10-2+b1
Severity: grave
Justification: renders package unusable

Hi,

When I try to load 'fancy.so' plugin, it gives this error:
| The following error occurred while loading fancy.so :
|
| /usr/lib/claws-mail/plugins/fancy.so: undefined
| symbol: webkit_web_view_get_selected_text

Thanks


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

Kernel: Linux 3.0.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages claws-mail-fancy-plugin depends on:
ii  claws-mail  3.7.10-2  
ii  libatk1.0-0 2.2.0-2   
ii  libc6   2.13-21   
ii  libcairo2   1.10.2-6.1
ii  libcurl3-gnutls 7.21.7-3  
ii  libfontconfig1  2.8.0-3   
ii  libfreetype62.4.7-1   
ii  libgdk-pixbuf2.0-0  2.24.0-1  
ii  libglib2.0-02.28.8-1  
ii  libgtk2.0-0 2.24.7-1  
ii  libpango1.0-0   1.29.4-2  
ii  libsoup-gnome2.4-1  2.36.0-1  
ii  libsoup2.4-12.36.0-1  
ii  libwebkitgtk-1.0-0  1.6.1-3   

claws-mail-fancy-plugin recommends no packages.

claws-mail-fancy-plugin suggests no packages.

-- no debconf information



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



Bug#646400: [git-buildpackage/experimental] gbp-pq: Properly check for start of signature

2011-10-24 Thread Guido Günther
tag 646400 pending
thanks

Date:   Mon Oct 24 09:47:23 2011 +0200
Author: Guido Günther a...@sigxcpu.org
Commit ID: bf397fc879753a3bfe5925ad9f60fcb36577d818
Commit URL: 
http://git.debian.org/?p=users/agx/git-buildpackage.git;a=commitdiff;h=bf397fc879753a3bfe5925ad9f60fcb36577d818
Patch URL: 
http://git.debian.org/?p=users/agx/git-buildpackage.git;a=commitdiff_plain;h=bf397fc879753a3bfe5925ad9f60fcb36577d818

gbp-pq: Properly check for start of signature

Closes: #646400
  



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



Bug#646400: git-buildpackage: qbp-pq truncates a valid patch

2011-10-24 Thread Guido Günther
On Sun, Oct 23, 2011 at 11:29:07PM +0200, Robert Luberda wrote:
 Package: git-buildpackage
 Version: 0.5.32
 Severity: important
 
 gbp-pq command contains the following code:
   if in_patch:
 if line.startswith('-- '):
 # Found final signature, we're done:
 tmp.write(line)
 break
 
 The assumption written in the comment is incorrect. '-- ' can be a part
 of a valid patch, e.g.:
 -- original text
 +- patched text 

Signatures start with '-- \n', I've fixed this.

 In such a case the above code incorrectly truncates the file it
 generates.
 
 
 For a real-life example please do the following:
 
 gbp-clone git://anonscm.debian.org/users/robert/manpages-pl.git
 cd manpages-pl
 gbp-pq import
 gbp-pq export
 quilt push -a # this fails
 
 (Also note that gpp-pq renames `file.patch' into `file.patch.patch'.
 I belive it could work smarter, but it's another issue, quite a minor
 one).

I've fixed this as well on experimental/.
Cheers,
 -- Guido

 
 Regards,
 robert
 
 
 
 
 -- System Information:
 Debian Release: wheezy/sid
   APT prefers unstable
   APT policy: (990, 'unstable'), (200, 'testing')
 Architecture: i386 (i686)
 
 Kernel: Linux 2.6.38-2-686 (SMP w/1 CPU core)
 Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)
 Shell: /bin/sh linked to /bin/dash
 
 Versions of packages git-buildpackage depends on:
 ii  devscripts   2.11.1   
 ii  git [git-core]   1:1.7.7-2
 ii  git-core 1:1.7.7-2
 ii  python   2.7.2-9  
 ii  python-dateutil  1.5-1
 ii  python2.62.6.7-4  
 ii  python2.72.7.2-6  
 
 Versions of packages git-buildpackage recommends:
 ii  cowbuilder0.65
 ii  pristine-tar  1.15
 
 Versions of packages git-buildpackage suggests:
 ii  python-notify  0.1.1-3
 ii  unzip  6.0-5  
 
 -- Configuration Files:
 /etc/git-buildpackage/gbp.conf changed [not included]
 
 -- no debconf information
 
 



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



Bug#646427: Fail to generate graph image with dot in filename

2011-10-24 Thread Pavel Shramov
Package: python-pyrrd
Version: 0.0.7-1
Severity: normal

Exception is raised if  Graph is called with filename containing more
than one dot in whole path. Bug is reported to upstream and already fixed
there [1].

-- 
[1] http://code.google.com/p/pyrrd/issues/detail?id=22

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.32-5-686
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to ru_RU.UTF-8)

Versions of packages python-pyrrd depends on:
ii  python-support1.0.14 automated rebuilding support for P
ii  rrdtool   1.3.1-4Time-series data storage and displ

python-pyrrd recommends no packages.

-- no debconf information



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



Bug#646428: [gajim] Gajim should not disconnect when network manager finds a new network

2011-10-24 Thread Riccardo Magliocchetti

Package: gajim
Version: 0.14.4-2
Severity: minor

--- Please enter the report below this line. ---

Hello,

i have a mixed network configuration where ethernet is managed by 
/etc/network/interfaces and the wifi by network manager. The problem is 
that when i'm connected with the cable and network manager finds a new 
network gajim disconnects, even before i can type the password. I won't 
argue if gajim would reconnect _after_ network manager established a new 
connection but current behaviour is very annoying.


thanks,
Riccardo Magliocchetti


--- System information. ---
Architecture: i386
Kernel:   Linux 3.1.0-rc10+

Debian Release: wheezy/sid
  500 unstableftp.de.debian.org
1 experimentalftp.de.debian.org

--- Package information. ---
Depends (Version) | Installed
=-+-==
python  (= 2.6.6-7~) | 2.6.7-3
python-gtk2   (= 2.16.0) | 2.24.0-2
dnsutils  | 1:9.7.3.dfsg-1+b1


Recommends (Version) | Installed
-+-===
dbus | 1.4.16-1
python-dbus  | 0.84.0-2
notification-daemon  | 0.7.3-1
python-gnupginterface| 0.3.2-9.1
python-openssl  (= 0.9) | 0.13-1
python-crypto| 2.3-3


Suggests(Version) | Installed
=-+-===
python-gconf  | 2.28.1-3
python-gnome2 | 2.28.1-3
nautilus-sendto   |
avahi-daemon  | 0.6.30-5
python-avahi  |
network-manager   | 0.8.4.0-2
libgtkspell0  | 2.0.16-1
aspell-en | 7.1-0-1
python-gnomekeyring   |
gnome-keyring | 3.0.3-2
python-kerberos  (= 1.1) |
texlive-latex-base|
dvipng|
python-farsight   |
gstreamer0.10-plugins-ugly| 0.10.18-3







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



Bug#646334: freetype: FTBFS: error: 'levels' may be used uninitialized in this function

2011-10-24 Thread Thorsten Glaser
Steve Langasek dixit:

This is only the correct severity for a build failure when it happens on a
release architecture.  The latest freetype package has built successfully on
all release architectures, per https://buildd.debian.org/freetype.

Tell that reportbug.

I see (and disagree with, but it’s not my package) your reasoning;
would it be possible to enable -Werror only for release architectures
then? (Hey, that’s a good idea, let dpkg provide the set of release
architectures in a query.)

bye,
//mirabilos
-- 
dileks ch: good, you corrected yourself. ppl tend to tweet such news
immediately, sth. like grml devs seem to be buyablech dileks: we
_are_. if you throw enough money in our direction, things will happen
mika everyone is buyable, it's just a matter of price   mrud and now
comes [mira] and uses this as a signature ;0   -- they asked for it…



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



Bug#646418: gpivtools: Please update Depends: on MPI Python packages

2011-10-24 Thread Gerber van der Graaf
Thanks for the patch. I will include it in the next release. Gerber

On Sun, 2011-10-23 at 20:00 -0700, Nicholas Breen wrote:
 mpipython | openmpipython | mpich2python, 




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



Bug#646366: Quadrapassel: un-clickable menus make the game unplayable

2011-10-24 Thread Josselin Mouette
Le dimanche 23 octobre 2011 à 17:55 +0200, Camaleón a écrit : 
 Package: quadrapassel
 Version: 1:3.0.2-2
 Severity: important
 
 When I open quadrapassel, none of the menus (game, settings, help) can be
 clicked.

What are your graphics hardware and driver?

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-




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



Bug#645997: no space on device when installing kernel (lvm+btrfs)

2011-10-24 Thread Philipp Kern
Hi.

On Sun, Oct 23, 2011 at 09:55:54PM +0100, Miguel Figueiredo wrote:
 i have installed a virtual machine using a daily businesscard image where i 
 selected lvm (no encription) with btrfs and when it got to the part where 
 kernel was about to installed it failed with the same error, no space left on 
 device although the mounted filesystems are not full.

Could you do a btrfsctl -i dev when that condition is reached?

Is not full is… special with btrfs, as it leaves tons of disk space
for (duplicated) metadata.

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Bug#646429: linux-image-2.6.39-bpo.2-686-pae: CPU lockup on bogus values in alarmclock

2011-10-24 Thread leo weppelman
Package: linux-2.6
Version: 2.6.39-3~bpo60+1
Severity: normal
Tags: patch

*** Please type your report below this line ***
On a kernel upgrade on an ML350-G6, I got the following kernel error:

[7.934275] input: AT Translated Set 2 keyboard as
/devices/platform/i8042/serio0/input/input0
[   74.314403] BUG: soft lockup - CPU#1 stuck for 61s! [swapper:1]
[   74.347143] Modules linked in:
[   74.362226] Modules linked in:
[   74.377593]
[   74.386567] Pid: 1, comm: swapper Tainted: GW
2.6.39-bpo.2-686-pae #1 HP ProLiant ML350 G6
[   74.430973] EIP: 0060:[c11f8e0c] EFLAGS: 0246 CPU: 1
[   74.462417] EIP is at is_leap_year+0x24/0x2d
[   74.485874] EAX: 004cd64f EBX: 0190 ECX: 780edc9f EDX: 012f
[   74.521801] ESI: 001f EDI: 0003 EBP: f5b0cc00 ESP: f585be34
[   74.557730]  DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[   74.588674] Process swapper (pid: 1, ti=f585a000 task=f5859900
task.ti=f585a000)
[   74.632074] Stack:
[   74.637621]  0004 c11f8e27 f585bed0 0022 c11f8f7a f585becc
 c11fa0ef
[   74.672621]  f585be64 f585be88 f585bed0 f5b0cd74 003a 000a
000a 0012
[   74.695438]  0009 006f    003a
000a 000a
[   74.726187] Call Trace:
[   74.739904]  [c11f8e27] ? rtc_month_days+0x12/0x2c
[   74.768326]  [c11f8f7a] ? rtc_valid_tm+0x26/0x45
[   74.794273]  [c11fa0ef] ? __rtc_read_alarm+0x1df/0x200
[   74.819230]  [c11f9313] ? rtc_device_register+0x196/0x267
[   74.851234]  [c11fb6df] ? cmos_do_probe+0x116/0x326
[   74.880106]  [c11b06b6] ? pnp_device_probe+0x79/0x96
[   74.910540]  [c11e8ea9] ? driver_probe_device+0x8c/0x110
[   74.937018]  [c11e8f6d] ? __driver_attach+0x40/0x5b
[   74.961949]  [c11e8705] ? bus_for_each_dev+0x37/0x5f
[   74.991395]  [c11e8d5f] ? driver_attach+0x11/0x13
[   75.014842]  [c11e8f2d] ? driver_probe_device+0x110/0x110
[   75.043326]  [c11e8a80] ? bus_add_driver+0x87/0x1bb
[   75.071736]  [c11550f4] ? kset_find_obj_hinted+0x43/0x7d
[   75.104169]  [c144c2a2] ? rtc_sysfs_init+0x8/0x8
[   75.126702]  [c11e93ac] ? driver_register+0x7a/0xd9
[   75.152575]  [c144c2a2] ? rtc_sysfs_init+0x8/0x8
[   75.175534]  [c144c2ad] ? cmos_init+0xb/0x5a
[   75.202004]  [c1003068] ? do_one_initcall+0x68/0x10f
[   75.226450]  [c1420271] ? kernel_init+0xb8/0x12f
[   75.253500]  [c14201b9] ? parse_early_options+0x18/0x18
[   75.284824]  [c12b7c3e] ? kernel_thread_helper+0x6/0x10
[   75.311271] Code: ff 5a 5b 5e 5f c3 90 a8 03 89 c1 53 75 12 31 d2
bb 64 00 00 00 f7 f3 b8 01 00 00 00 85 d2 75 12 31 d2 bb 90 01 00 00
89 c8 f7 f3
[   75.333012] Call Trace:
[   75.334143]  [c11f8e27] ? rtc_month_days+0x12/0x2c
[   75.355696]  [c11f8f7a] ? rtc_valid_tm+0x26/0x45
[   75.383129]  [c11fa0ef] ? __rtc_read_alarm+0x1df/0x200
[   75.407087]  [c11f9313] ? rtc_device_register+0x196/0x267
[   75.439018]  [c11fb6df] ? cmos_do_probe+0x116/0x326
[   75.466985]  [c11b06b6] ? pnp_device_probe+0x79/0x96
[   75.496914]  [c11e8ea9] ? driver_probe_device+0x8c/0x110
[   75.523859]  [c11e8f6d] ? __driver_attach+0x40/0x5b
[   75.552812]  [c11e8705] ? bus_for_each_dev+0x37/0x5f
[   75.582743]  [c11e8d5f] ? driver_attach+0x11/0x13
[   75.610170]  [c11e8f2d] ? driver_probe_device+0x110/0x110
[   75.636651]  [c11e8a80] ? bus_add_driver+0x87/0x1bb
[   75.665599]  [c11550f4] ? kset_find_obj_hinted+0x43/0x7d
[   75.697586]  [c144c2a2] ? rtc_sysfs_init+0x8/0x8
[   75.720487]  [c11e93ac] ? driver_register+0x7a/0xd9
[   75.749417]  [c144c2a2] ? rtc_sysfs_init+0x8/0x8
[   75.776371]  [c144c2ad] ? cmos_init+0xb/0x5a
[   75.799312]  [c1003068] ? do_one_initcall+0x68/0x10f
[   75.829771]  [c1420271] ? kernel_init+0xb8/0x12f
[   75.851644]  [c14201b9] ? parse_early_options+0x18/0x18
[   75.882168]  [c12b7c3e] ? kernel_thread_helper+0x6/0x10

The problem turned out to be illegal data in the mdays field of the alarm
timer. The value was 2E (bcd) or 34 (decimal). The value was accepted by
the code in rtc-cmos.c - which checks for 'value = 0x31'. While this check
is misleading, the biggest problem looks to be in drivers/rtc/interface.c
where an attempt is made to guess the year. This loop is endless when one
of the date/time values is out of range.
The following patch fixes this:
--- a/drivers/rtc/interface.c   2011-10-24 10:02:52.0 +0200
+++ b/drivers/rtc/interface.c   2011-10-24 10:05:21.0 +0200
@@ -283,9 +283,14 @@
/* Year rollover ... easy except for leap years! */
case year:
dev_dbg(rtc-dev, alarm rollover: %s\n, year);
-   do {
-   alarm-time.tm_year++;
-   } while (rtc_valid_tm(alarm-time) != 0);
+   if (rtc_valid_tm(now)) {
+   do {
+   alarm-time.tm_year++;
+   } while (rtc_valid_tm(alarm-time) != 0
+   
alarm-time.tm_year  (now.tm_year + 10));
+   }
+   if (rtc_valid_tm(alarm-time) != 0)
+   

Bug#644948: nfs-common: Wrong uid/gid with latest version using NFSv4

2011-10-24 Thread Stephan Windmüller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 24.10.2011 00:58, Jamie Heilman wrote:

 In my configuration both domains (client and server) are
 correctly set, but this is not the issue: passwd and group data
 is fetched from ldap as set in nsswitch.conf, but idmapd does not
 seem to respect these settings.
 Then to figure out the issue you face we'll need a good deal more 
 information about your setup I wager.  You say you downgraded to 
 nfs-common 1.2.2 and it fixed things ...

No, the client is running squeeze so 1.2.2 was the only version I used.

 was that on the client, the server, or both?

The server is running Solaris 10.

 You're using ldap, how do you have libnfsidmap configured?

The [Translation] section has one entry:

Method = nsswitch

 Looking at your ldap server logs, are the lookups related to the 
 translation quereies even making to the server?

Not if I am using idmapd. If I disable it, the server gets the following
queries:

- -

fd=31 ACCEPT from IP=[...] (IP=0.0.0.0:389)
op=0 BIND dn= method=128
op=0 RESULT tag=97 err=0 text=
op=1 SRCH base=[...] scope=2 deref=0
filter=((objectClass=posixAccount)(uidNumber=-2))
op=1 SRCH attr=userPassword cn gidNumber uidNumber loginShell
objectClass gecos uid homeDirectory
op=1 SEARCH RESULT tag=101 err=0 nentries=0 text=

fd=32 ACCEPT from IP=[...] (IP=0.0.0.0:389)
op=0 BIND dn= method=128
op=0 RESULT tag=97 err=0 text=
op=1 SRCH base=[...] scope=2 deref=0
filter=((objectClass=posixGroup)(gidNumber=-2))
op=1 SRCH attr=cn userPassword memberUid gidNumber uniqueMember
op=1 SEARCH RESULT tag=101 err=0 nentries=0 text=

- -

What seems odd here is the -2 for uid and gid. An ls on the client
shows 4294967294 for both values (it's a 64bit client).

When I enable idmapd, in /etc/default/nfs-common there are no queries
like the above.

 Have you tried to strace rpc.idmapd to determine what values it's
 using during the lookups?

No, I did not try that.

 Were your kernels built with CONFIG_NFS_USE_NEW_IDMAPPER=y

It is the standard kernel of squeeze (2.6.32-5-amd64) and according to
the config file this option does not exist.

Regards
 Stephan
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAk6lIA8ACgkQi8rkj8W4fFV/IQCfb78Jy6rSJKNP6YyVyo4Z//6s
7rEAoI4Csz7g+xr/6ubaVh4XrUkBvQlw
=qFuv
-END PGP SIGNATURE-



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



Bug#646366: Quadrapassel: un-clickable menus make the game unplayable

2011-10-24 Thread Camaleón
El 2011-10-24 a las 10:12 +0200, Josselin Mouette escribió:

 Le dimanche 23 octobre 2011 à 17:55 +0200, Camaleón a écrit : 
  Package: quadrapassel
  Version: 1:3.0.2-2
  Severity: important
  
  When I open quadrapassel, none of the menus (game, settings, help) can be
  clicked.
 
 What are your graphics hardware and driver?

It's an Intel N10 Family Integrated Video Controller using i915 driver.

I filled a profile for this netbook into Debian's HCL:

http://kmuto.jp/debian/hcl/Compaq/Mini+Q10-520ES

-- 
Camaleón 



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



Bug#646430: qemu-kvm: Cannot create domain (/usr/bin/kvm exit status 1)

2011-10-24 Thread FladischerMichael
Package: qemu-kvm
Version: 0.15.1+dfsg-1
Severity: normal

Dear Maintainer,

I'm trying to load/create a domain that already worked for more than 1
month but now it fails:

virsh # create /etc/libvirt/qemu/Windows.xml
error: Failed to create domain from /etc/libvirt/qemu/Windows.xml
error: internal error Child process (LC_ALL=C 
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin HOME=/root 
USER=root LOGNAME=root /usr/bin/kvm -device ? -device pci-assign,? -device 
virtio-blk-pci,? -device virtio-net-pci,?) status unexpected: exit status 1

I'v attached the Windows.xml file. Please let me know if you need further 
information to investigate this.


-- Package-specific info:


/proc/cpuinfo:

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 42
model name  : Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz
stepping: 7
cpu MHz : 800.000
cache size  : 4096 KB
physical id : 0
siblings: 4
core id : 0
cpu cores   : 2
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf pni 
pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 
sse4_2 x2apic popcnt aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dts 
tpr_shadow vnmi flexpriority ept vpid
bogomips: 5381.73
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 1
vendor_id   : GenuineIntel
cpu family  : 6
model   : 42
model name  : Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz
stepping: 7
cpu MHz : 800.000
cache size  : 4096 KB
physical id : 0
siblings: 4
core id : 0
cpu cores   : 2
apicid  : 1
initial apicid  : 1
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf pni 
pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 
sse4_2 x2apic popcnt aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dts 
tpr_shadow vnmi flexpriority ept vpid
bogomips: 5382.31
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 2
vendor_id   : GenuineIntel
cpu family  : 6
model   : 42
model name  : Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz
stepping: 7
cpu MHz : 800.000
cache size  : 4096 KB
physical id : 0
siblings: 4
core id : 1
cpu cores   : 2
apicid  : 2
initial apicid  : 2
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf pni 
pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 
sse4_2 x2apic popcnt aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dts 
tpr_shadow vnmi flexpriority ept vpid
bogomips: 5382.32
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 3
vendor_id   : GenuineIntel
cpu family  : 6
model   : 42
model name  : Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz
stepping: 7
cpu MHz : 800.000
cache size  : 4096 KB
physical id : 0
siblings: 4
core id : 1
cpu cores   : 2
apicid  : 3
initial apicid  : 3
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts nopl xtopology nonstop_tsc aperfmperf pni 
pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 
sse4_2 x2apic popcnt aes xsave avx lahf_lm ida arat epb xsaveopt pln pts dts 
tpr_shadow vnmi flexpriority ept vpid
bogomips: 5382.33
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:




-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: 

Bug#645813: interface aliases ignored in recent ifupdown

2011-10-24 Thread Bob Proulx
Andrew Shadura wrote:
 Bob, is it okay if I unconditionally add 'label %iface%' to 'ip addr
 add' calls in ifupdown? Testing shows it appears to do what's intended,
 but please confirm if it really true.

I believe that is true.  I believe that you should always be able to
add a label to the interface when doing 'ip addr add'.  And that when
deleting the interface with 'ip addr del' it should always be okay
(but not required) to use the same option arguments used as when it
was added.  If a label is provided then it must match.

But I don't want to misrepresent myself.  I have no special knowledge
of the ip and kernel internals.  I am just a long time user of them.
Here I can only act as a second brain and reviewer.  I think always
adding a label is a good way to maintain backward compatibility with
the previous behavior and the expectations from it.

If a new version is made available I will be happy to test it.

Bob


signature.asc
Description: Digital signature


Bug#646431: libjai-core-java: Description suggesting a -source package

2011-10-24 Thread Jerome Robert
Package: libjai-core-java
Version: 1.1.4-1
Severity: minor

Dear Maintainer,

The description of the packages says that it contains the source code
while it's not. I guess that it should be This project contains the core
Java Advanced Imaging API 

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages libjai-core-java depends on:
ii  libc6  2.13-21

libjai-core-java recommends no packages.

libjai-core-java suggests no packages.

-- no debconf information



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



Bug#646424: foobnix: Unable to run either .mp3 or .wav files

2011-10-24 Thread Gergely Nagy
shirish शिरीष shirisha...@gmail.com writes:

 Package: foobnix
 Version: 2.5.26-0.0
 Severity: important

I can't find foobnix in Debian. Did you get it from a third party
source, such as the launchpad repo[0]?

The version number suggests so.

If that is the case, then I'd like to close this bug, and suggest you to
open a ticket in launchpad instead.

 [0] https://launchpad.net/~foobnix-player/+archive/foobnix/+packages




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



Bug#646215: gnome-shell doesn't seem to start

2011-10-24 Thread Anthony Bourguignon

Is the fallback mode then started correctly?
You should get that error message if you hardware does not support
gnome-shell (which requires 3D and certain extensions)


I've been using gnome 3 since it has been uploaded to experimental. I'm 
using the radeon drivers which are working well.


 What was the exact error message there?

 Do you have gnome-session and gnome-session-fallback installed? 
gnome-core?


These three packages are installed. As I said, gnome3 was working well 
since then.


The error message is this one : 
http://25.media.tumblr.com/tumblr_llb0ez6GrO1qzi8iao1_500.jpg .


 Do you use gdm3 or any other kind of display manager?
 Is the problem reproducible after a reboot or with a fresh user account?
 Could you attach your ~/.xsession-errors after a failed login attempt
 (you probably need to switch to CTRL+ALT+F1 and make a copy before you
 login again with some other WM, as it will be overwritten).
 Running gnome-session with --debug would be helpful, too. This will
 log much more details to ~/.xsession-errors.

I'm using gdm3. The problem was reproducible after several reboots. I 
successfully restarted gnome after rollbacking the package 
gnome-session-canberra to version 0.28-2.


I'll make more tests later (upgrading the package canberra again).



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



Bug#646432: override: ttf-levien-typoscript:oldlibs/None ttf-lg-aboriginal:oldlibs/None ttf-liberation:oldlibs/None ttf-linex:oldlibs/None ttf-mgopen:oldlibs/None

2011-10-24 Thread Christian Perrier
Package: ftp.debian.org
Severity: normal

These packages are now transitional package after renaming source and
binary packages.



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



Bug#646264: gnome-commander: FTBFS with -Werror=format-security

2011-10-24 Thread Michael Vogt
On Sat, Oct 22, 2011 at 08:38:22PM +0200, Julian Taylor wrote:
 Source: gnome-commander
 Version: 1.2.8.14-1
 Severity: normal
 User: debian...@lists.debian.org
 Usertags: hardening-format-security hardening
 
 the package gnome-commander fails to compile with the new hardened compiler
 flags dpkg-buildflag outputs [0].
 The problematic flag is: -Werror=format-security
 See the ubuntu buildlog:

https://launchpadlibrarian.net/83136730/buildlog_ubuntu-precise-i386.gnome-commander_1.2.8.14-1_FAILEDTOBUILD.txt.gz


Thanks for your bugreport.

Attached is a patch that fixes the issue.

Cheers,
 Michael 


Index: gnome-commander-1.2.8.13/libgcmd/libgcmd-widget-factory.cc
===
--- gnome-commander-1.2.8.13.orig/libgcmd/libgcmd-widget-factory.cc	2011-10-24 10:44:57.678108798 +0200
+++ gnome-commander-1.2.8.13/libgcmd/libgcmd-widget-factory.cc	2011-10-24 10:45:11.237407452 +0200
@@ -652,7 +652,7 @@
 va_end (argptr);
 
 dialog = gtk_message_dialog_new (GTK_WINDOW (main_win_widget), GTK_DIALOG_MODAL,
- GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, string);
+ GTK_MESSAGE_ERROR, GTK_BUTTONS_OK, %s, string);
 
 gtk_signal_connect (GTK_OBJECT (dialog), response, GTK_SIGNAL_FUNC (on_response), dialog);
 
@@ -673,7 +673,7 @@
 
 dialog = gtk_message_dialog_new (
 GTK_WINDOW (main_win_widget), GTK_DIALOG_MODAL,
-GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, msg);
+GTK_MESSAGE_WARNING, GTK_BUTTONS_OK, %s, msg);
 
 gtk_signal_connect (GTK_OBJECT (dialog), response,
 GTK_SIGNAL_FUNC (on_response), dialog);


Bug#644876: initramfs-tools: Boot failure from software RAID1 + LVM2 by timing

2011-10-24 Thread Jort Koopmans
On Sun, 2011-10-23 at 14:05 +0300, Touko Korpela wrote:
[..]
 madduck called testing for experimental version of mdadm. where it can be
 downloaded?

My bad, I missed the initscripts package from sid (instead of testing).
I must note that none of the involved packages are available in
experimental (and mdadm and debianutils are equal in testing and
unstable atm).

Upgraded initscripts;
initscripts [2.88dsf-13.11 - 2.88dsf-13.12]

Reinstalled mdadm (from sid, but same version), generated a new initrd
just to be safe.
But again that didnt fix the problem.

---
@Touko, you get packages from the repositories. Add the following lines
to /etc/apt/sources.list

deb http://ftp.debian.org/debian/ sid main contrib
deb-src http://ftp.debian.org/debian/ sid main contrib

then run;
apt-get update
apt-get -t unstable install packagename

I'd also suggest you look into apt-pinning to keep the rest of your
system at stable (or w/e your running).
---

Best regards,
Jort Koopmans








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



Bug#644034: libgdata: FTBFS

2011-10-24 Thread Michael Biebl
retitle 644034 libgdata: FTBFS if libgtk-3-dev is installed
severity 644034 important
thanks

Please note, that demos/scrapbook/scrapbook is only built if GTK 3 is
installed (which is not in the list of b-deps). So downgrading the severity.


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#646412: linux-image-3.0.0-2-powerpc does not load pata_macio from the initramfs, cannot find root filesystem

2011-10-24 Thread Ben Hutchings
On Sun, 2011-10-23 at 20:19 -0400, Daniel Kahn Gillmor wrote:
 Package: linux-2.6
 Version: 3.0.0-5
 Severity: important
 
 This powermac G4 cube has been running fine with 2.6.38 + squeeze
 for a while.  I just upgraded to 3.0.0 from sid, and found that
 booting the machine fails by dropping into an initramfs shell, unable
 to find the root filesystem.

I think this is the same problem as #641210.

 from the initramfs shell, i can work around this by doing:
 
  modprobe pata_macio
  exit
 
 at which point, the boot proceeds as usual.
 
 It seems to me that this module should be auto-loaded (or at least
 somehow detected for this particular hardware).
[...]

So far as I am aware, we can't auto-load it.  Instead we have to make it
built-in.

Ben.

-- 
Ben Hutchings
Reality is just a crutch for people who can't handle science fiction.


signature.asc
Description: This is a digitally signed message part


Bug#646433: ITP: gadap -- GrADS support package for access to OpenDAP station data

2011-10-24 Thread Alastair McKinstry
Package: wnpp
Severity: wishlist
Owner: Alastair McKinstry mckins...@debian.org

* Package name: gadap
  Version : 2.0 
  Upstream Author : Institute of Global Environment and Society (IGES)
* URL : http://www.iges.org/grads/gadoc/supplibs.html
* License : GPL
  Programming Lang: C++
  Description : GrADS support package for access to in-situ OpenDAP data
 This package enables access to OpenDAP data via OpeNDAP for the GrADS
 climate data analysis package.



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



Bug#645160: [RFR] templates://qpid-cpp/{qpidd.templates}

2011-10-24 Thread Cajus Pollmeier

Am 21.10.2011 10:05, schrieb Cajus Pollmeier:

Am 21.10.2011 06:00, schrieb Christian PERRIER:

Quoting Cajus Pollmeier (ca...@naasa.net):


But, ok. Its now lowercase. Not adding the diff this time. The
latest and greatest version is here:

https://github.com/cajus/qpid-cpp-debian/blob/master/debian/control


I'd just suggest s/This package contains/This package provides (we
tend to standardize on this over all reviews).

Ok. I've fixed that.

Here are the current patch/infos.
diff -u qpid-cpp-debian.orig/debian/changelog qpid-cpp-debian/debian/changelog
--- qpid-cpp-debian.orig/debian/changelog   2011-09-29 08:28:53.0 
+0200
+++ qpid-cpp-debian/debian/changelog2011-10-20 09:19:02.984957927 +0200
@@ -1,3 +1,18 @@
+qpid-cpp (0.12-2) unstable; urgency=low
+
+  [ Cajus Pollmeier ]
+  * Updated valgrind dependencies to allow builds on architectures
+not supported by valgrind.
+  * Fixed compilation error on armel.
+  * Added accidently missing qpid-doc package.
+
+  [ Christian Perrier ]
+  * Debconf templates and debian/control reviewed by the debian-l10n-
+english team as part of the Smith review project. Closes: #645160
+  * [Debconf translation updates]
+
+ -- Cajus Pollmeier ca...@debian.org  Mon, 10 Oct 2011 16:25:38 +0200
+
 qpid-cpp (0.12-1) unstable; urgency=low
 
   * Initial release. (Closes: #640497)
diff -u qpid-cpp-debian.orig/debian/control qpid-cpp-debian/debian/control
--- qpid-cpp-debian.orig/debian/control 2011-10-05 15:58:52.0 +0200
+++ qpid-cpp-debian/debian/control  2011-10-21 10:04:56.496957757 +0200
@@ -12,362 +12,362 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, libsasl2-modules, 
sasl2-bin
 Replaces: qpid-broker
 Conflicts: qpid-broker
-Description: Apache qpid AMQP broker
- Apache Qpid is a cross-platform Enterprise Messaging system which implements
+Description: enterprise messaging system - AMQP broker
+ Apache Qpid is a cross-platform enterprise messaging system which implements
  the Advanced Message Queuing Protocol (AMQP), providing message brokers
  written in C++ and Java, along with clients for C++, Java JMS, .Net, Python,
  and Ruby.
  .
- This package contains the AMQP broker.
+ This package provides the AMQP broker.
 
 Package: qpid-client
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Apache qpid AMQP client
- Apache Qpid is a cross-platform Enterprise Messaging system which implements
+Description: enterprise messaging system - AMQP client
+ Apache Qpid is a cross-platform enterprise messaging system which implements
  the Advanced Message Queuing Protocol (AMQP), providing message brokers
  written in C++ and Java, along with clients for C++, Java JMS, .Net, Python,
  and Ruby.
  .
- This package contains the AMQP client support.
+ This package provides the AMQP client support.
 
 Package: libqmf1
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Apache qpid AMQP libraries
- Apache Qpid is a cross-platform Enterprise Messaging system which implements
+Description: enterprise messaging system - QMF libraries
+ Apache Qpid is a cross-platform enterprise messaging system which implements
  the Advanced Message Queuing Protocol (AMQP), providing message brokers
  written in C++ and Java, along with clients for C++, Java JMS, .Net, Python,
  and Ruby.
  .
- This package contains the QMF libraries.
+ This package provides the Qpid Management Framework libraries.
 
 Package: libqmf-dev
 Architecture: any
 Section: libdevel
 Depends: ${misc:Depends}
-Description: Apache qpid AMQP develpment files
- Apache Qpid is a cross-platform Enterprise Messaging system which implements
+Description: enterprise messaging system - QMF development files
+ Apache Qpid is a cross-platform enterprise messaging system which implements
  the Advanced Message Queuing Protocol (AMQP), providing message brokers
  written in C++ and Java, along with clients for C++, Java JMS, .Net, Python,
  and Ruby.
  .
- This package contains the QMF development files.
+ This package provides the Qpid Management Framework development files.
 
 Package: libqmf2-1
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Apache qpid AMQP libraries
- Apache Qpid is a cross-platform Enterprise Messaging system which implements
+Description: enterprise messaging system - QMF2 libraries
+ Apache Qpid is a cross-platform enterprise messaging system which implements
  the Advanced Message Queuing Protocol (AMQP), providing message brokers
  written in C++ and Java, along with clients for C++, Java JMS, .Net, Python,
  and Ruby.
  .
- This package contains the QMF2 libraries.
+ This package provides the QMF2 libraries.
 
 Package: libqmf2-dev
 Architecture: any
 Section: libdevel
 Depends: ${misc:Depends}
-Description: Apache qpid AMQP develpment files
- Apache Qpid is a cross-platform Enterprise Messaging system which implements
+Description: enterprise messaging system - QMF2 development files

Bug#645621: ITP: libnet-ssh-perl-perl -- Perl module implementing

2011-10-24 Thread Salvador Fandino
Nowadays there are alternatives to Net::SSH::Perl with out dependencies
on non-free packages:

- Net::SSH2 (already packed for debian)
- Net::OpenSSH
- Net::OpenSSH::Compat::Perl (providing the same API as Net::SSH::Perl)






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



Bug#646434: python-gps cannot find function isotime()

2011-10-24 Thread Dietrich Feist
Package: python-gps
Version: 2.95-8

When I use python-gps to talk to gpsd with the stream method, I never
get a GPS fix. The reason is that gps.py cannot find its function
isotime() and therefore chokes on various GPS packets.

Here is an example. I use the following code:

---
from gps import *
session = gps(host = gpshost)
session.stream(WATCH_ENABLE|WATCH_NEWSTYLE)

while True:
try:
session.next()
except NameError:
import sys
print ERROR:
print sys.exc_info()
print session.response
---

The output is:

ERROR:
(type 'exceptions.NameError', NameError(global name 'isotime' is not
defined,), traceback object at 0xb7235694)
GPSD,O=RMC 1319446769.750 0.005 50.910340 11.568682 ? 12.80 ? 49.0100
0.000 ? ? 102.40 ? 2

ERROR:
(type 'exceptions.NameError', NameError(global name 'isotime' is not
defined,), traceback object at 0xb7235914)
GPSD,O=GGA 1319446769.750 0.005 50.910340 11.568682 212.10 12.80 8.00
49.0100 0.000 0.000 ? 102.40 ? 3

ERROR:
(type 'exceptions.NameError', NameError(global name 'isotime' is not
defined,), traceback object at 0xb72357d4)
GPSD,O=GSA 1319446769.750 0.005 50.910340 11.568682 212.10 12.80 8.00
49.0100 0.000 0.000 ? 102.40 ? 3

ERROR:
(type 'exceptions.NameError', NameError(global name 'isotime' is not
defined,), traceback object at 0xb72357ac)
GPSD,O=GLL 1319446769.750 0.005 50.910340 11.568682 212.10 12.80 8.00
49.0100 0.000 0.000 ? 102.40 ? 3

The fix is simple. Just change the beginning of
/usr/share/pyshared/gps/gps.py to:

...
import time
from client import *
from misc import *
...

The last line is currently missing in 2.95-8 but isotime() is contained
in misc.py.
attachment: dfeist.vcf

Bug#646435: tango-db: problem during upgrade

2011-10-24 Thread Frederic-Emmanuel PICCA
Package: tango-db
Version: 7.2.6+dfsg-12
Severity: important

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

*** End of the template - remove these lines ***

the last upgrade failed due to init.d scripts

tango_admin --ping-database 6 was not responding.

So set important to avoid tango migration to testing.

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

Kernel: Linux 3.0.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tango-db depends on:
ii  dbconfig-common1.8.47  
ii  debconf [debconf-2.0]  1.5.41  
ii  libc6  2.13-21 
ii  libcos4-1  4.1.5-2 
ii  libgcc11:4.6.1-16  
ii  liblog4tango4  7.2.6+dfsg-12   
ii  libmysqlclient16   5.1.58-1
ii  libomniorb4-1  4.1.5-2 
ii  libomnithread3c2   4.1.5-2 
ii  libstdc++6 4.6.1-16
ii  libtango-tools 7.2.6+dfsg-12   
ii  libtango7  7.2.6+dfsg-12   
ii  lsb-base   3.2-28  
ii  zlib1g 1:1.2.3.4.dfsg-3

tango-db recommends no packages.

tango-db suggests no packages.

-- debconf information:
  tango-db/db/dbname: tango
  tango-db/db/app-user: tango
  tango-db/upgrade-backup: true
  tango-db/dbconfig-reinstall: false
  tango-db/database-type: mysql
  tango-db/mysql/method: unix socket
  tango-db/dbconfig-remove:
* tango-db/dbconfig-install: true
  tango-db/upgrade-error: abort
  tango-db/mysql/admin-user: root
  tango-db/remote/port:
  tango-db/remote/newhost:
  tango-db/purge: false
  tango-db/missing-db-package-error: abort
  tango-db/remove-error: abort
  tango-db/internal/reconfiguring: false
  tango-db/internal/skip-preseed: false
  tango-db/passwords-do-not-match:
  tango-db/dbconfig-upgrade: true
  tango-db/remote/host:
  tango-db/install-error: abort



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



Bug#646436: smplayer: doesn't respond to keyboard in full screen when used with xfce

2011-10-24 Thread Mike Day
Package: smplayer
Version: 0.6.9-4
Severity: normal

In XFCE Desktop Environment after switching into fullscreen mode and when
playlist is docked to smplayer window, smplayer sometimes doesn't respond to
keyboard shortcuts. After pressing Alt+Tab and choosing smplayer window, it
starts to respond again.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-1-686-pae (SMP w/1 CPU core)
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 smplayer depends on:
ii  libc6   2.13-21
ii  libgcc1 1:4.6.1-4
ii  libqt4-network  4:4.7.3-5
ii  libqt4-xml  4:4.7.3-5
ii  libqtcore4  4:4.7.3-5
ii  libqtgui4   4:4.7.3-5
ii  libstdc++6  4.6.1-4
ii  mplayer 2:1.0~rc4.dfsg1+svn33713-2
ii  zlib1g  1:1.2.3.4.dfsg-3

Versions of packages smplayer recommends:
ii  smplayer-themes    0.1.20+dfsg-1
ii  smplayer-translations  0.6.9-4

smplayer suggests no packages.

-- no debconf information



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



Bug#646437: phpunit: wrong dbunit man page

2011-10-24 Thread Bekir Dogan
Package: phpunit
Version: 3.4.14-1
Severity: minor


In phpunit package dbunit man page is same with phpunit man page but the they
should have different man pages.

$ diff /usr/share/man/man1/phpunit.1.gz /usr/share/man/man1/dbunit.1.gz
$ (no output, so the files are same)


-- System Information:
Debian Release: 6.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-vserver-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) (ignored: LC_ALL 
set to tr_TR.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages phpunit depends on:
ii  php-benchmark   1.2.7-5  Framework to benchmark PHP scripts
ii  php-pear5.3.3-7+squeeze3 PEAR - PHP Extension and Applicati
ii  php5-cli5.3.3-7+squeeze3 command-line interpreter for the p

phpunit recommends no packages.

Versions of packages phpunit suggests:
pn  phpunit-doc   none (no description available)

-- no debconf information

--
Bekir Dogan



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



Bug#646438: syslinux-live contains isolinux.cfg instead of syslinux.cfg

2011-10-24 Thread sferriol


Package: syslinux
Version: 2:4.04+dfsg-5
Severity: normal

Dear Maintainer,
After building hdd image with live-build, it can not boot
because the binary/syslinux directory contains isolinux.cfg file,
not syslinux.cfg
The bug is in /usr/share/syslinux/themes/*/syslinux-live directory

thanks
sylvain


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages syslinux depends on:
ii  libc62.13-21
ii  syslinux-common  2:4.04+dfsg-5

syslinux recommends no packages.

Versions of packages syslinux suggests:
ii  dosfstools  3.0.9-1
ii  mtools  4.0.12-1
ii  os-prober   1.49

-- no debconf information




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



Bug#646439: mirror submission for ftp.tsukuba.wide.ad.jp

2011-10-24 Thread Kohei Takahashi
Package: mirrors
Severity: wishlist

Submission-Type: new
Site: ftp.tsukuba.wide.ad.jp
Type: leaf
Archive-architecture: ALL amd64 arm armel hurd-i386 i386 ia64 kfreebsd-amd64 
kfreebsd-i386 mips mipsel powerpc s390 sparc 
Archive-http: /Linux/debian/
Archive-rsync: debian/
IPv6: yes
Archive-upstream: ftp2.jp.debian.org
Updates: lessoften
Maintainer: Kohei Takahashi tsukuba-ftp-serv...@tsukuba.wide.ad.jp
Country: JP Japan
Location: Tsukuba
Comment: Update frequency: 4 times a day
 Bandwidth: 1Gbps



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



Bug#514893: cmp: please allow comparing multiple files (fwd)

2011-10-24 Thread Jim Meyering
Santiago Vila wrote:
 A long time ago, I received this from the Debian bug system.

 [ I realize that this is unlikely to be implemented, but I am supposed
 to forward upstream bugs upstream in either case ].

Thanks for forwarding that.
However, I'll bet you can do something similar with od and a program
that can show differences in 3 files.  Here's how you can come close
using only two inputs with sdiff:

$ f() { od -Anone -w1 -v -tc $@; }
$ sdiff -w14 (printf 'a\x06\xff\n'|f) (printf 'a\x05\xff\n'|f)
   a   a
 006  |  005
 377 377
  \n  \n
[Exit 1]

 -- Forwarded message --
 From: Michael Stransky qmysjwxb8zhc...@temporaryinbox.com
 To: Debian Bug Tracking System sub...@bugs.debian.org
 Date: Wed, 11 Feb 2009 19:26:52 +0100
 Subject: cmp: please allow comparing multiple files

 Package: diff
 Version: 2.8.1-11
 Severity: wishlist


 It would be great if cmp could handle more then 2 files.
 cmp -c file1 file2 file3 would output for example:
 (byte file1 file2 file3)
 1 100 101 102
 2 100 100 101
 7 100 101 102
 cmp: EOF on file2.
 9 100 102
 cmp: EOF on file3.



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



Bug#646440: virtinst should depend on libvirt-bin

2011-10-24 Thread Wouter van Bommel
Package: virtinst
Version: 0.500.3-2
Severity: important

Without libvirt-bin available the following stackdump will occure when 
installing a new os.
This kind of defeats the purpose of virtinst

Starting install...
Retrieving file .treeinfo...
 |  826 B 00:00 ...
Retrieving file vmlinuz...  
 | 4.3 MB 00:01 ...
Retrieving file initrd.img...   
 |  20 MB 00:07 ...
Creating domain...  
 |0 B 00:02
ERROR[Errno 2] No such file or directory
Domain installation does not appear to have been
 successful.  If it was, you can restart your domain
 by running 'virsh start nagios.internal.vanbommelonline.nl'; otherwise, please
 restart your installation.
ERROR[Errno 2] No such file or directory
Traceback (most recent call last):
  File /usr/bin/virt-install, line 1033, in module
main()
  File /usr/bin/virt-install, line 915, in main
start_time, guest.start_install)
  File /usr/bin/virt-install, line 957, in do_install
dom = install_func(conscb, progresscb, wait=(not wait))
  File /usr/lib/pymodules/python2.6/virtinst/Guest.py, line 973, in 
start_install
return self._do_install(consolecb, meter, removeOld, wait)
  File /usr/lib/pymodules/python2.6/virtinst/Guest.py, line 1038, in 
_do_install
install)
  File /usr/lib/pymodules/python2.6/virtinst/Guest.py, line 1019, in 
_create_guest
self._consolechild) = self._wait_and_connect_console(consolecb)
  File /usr/lib/pymodules/python2.6/virtinst/Guest.py, line 1062, in 
_wait_and_connect_console
child = consolecb(dom)
  File /usr/bin/virt-install, line 876, in show_console
return txt_console(dom, options.connect)
  File /usr/bin/virt-install, line 776, in txt_console
os.execvp(args[0], args)
  File /usr/lib/python2.6/os.py, line 344, in execvp
_execvpe(file, args)
  File /usr/lib/python2.6/os.py, line 368, in _execvpe
func(file, *argrest)
OSError: [Errno 2] No such file or directory


-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-xen-686 (SMP w/2 CPU cores)
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 virtinst depends on:
ii  python 2.6.6-3+squeeze6  interactive high-level object-orie
ii  python-libvirt 0.8.3-5+squeeze2  libvirt Python bindings
ii  python-libxml2 2.7.8.dfsg-2+squeeze1 Python bindings for the GNOME XML 
ii  python-support 1.0.10automated rebuilding support for P
ii  python-urlgrabber  3.9.1-4   A high-level cross-protocol url-gr

Versions of packages virtinst recommends:
ii  qemu   0.12.5+dfsg-3squeeze1 fast processor emulator
ii  virt-viewer0.2.1-1   Displaying the graphical console o

virtinst suggests no packages.

-- no debconf information



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



Bug#607479: libfcgi-perl/CVE-2011-2766 authentication bypass

2011-10-24 Thread Damyan Ivanov
-=| Moritz Muehlenhoff, 14.10.2011 17:54:44 +0200 |=-
 On Wed, Oct 12, 2011 at 12:03:50PM +0300, Damyan Ivanov wrote:
 
   Hello Damyan, are you planning to do this or do you need someone 
   else to take over? IMO this one warrants a DSA.
  
  Thanks for the nudge. I have pushed the squeeze branch of 
  http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfcgi-perl.git;a=summary
  with the changes so others can take over for the actual uploading if I am 
  away.
  
  The squeeze version still has Vcs-Svn in its control file. Would it be 
  acceptable to change that too?
 
 Yes. Please upload to security-master. Note that it needs to be build
 with -sa, since libfcgi-perl is new in stable-security.

Done. Sorry about the delay. Interdiff and debdiff follow:

== interdiff 
diff -Nru libfcgi-perl-0.71/debian/changelog libfcgi-perl-0.71/debian/changelog
--- libfcgi-perl-0.71/debian/changelog  2010-04-01 20:30:50.0 +0300
+++ libfcgi-perl-0.71/debian/changelog  2011-10-24 13:06:30.0 +0300
@@ -1,3 +1,14 @@
+libfcgi-perl (0.71-1+squeeze1) stable-security; urgency=high
+
+  * Team upload
+
+  * Add patch from upstream bug tracker fixing CVE-2011-2766
+Closes: #607479. Thaks to Ferdinand for reporting, Russ Allbery for the
+analysis and chansen for the patch.
+  * control: update Vcs-* fields to point to Git
+
+ -- Damyan Ivanov d...@debian.org  Mon, 24 Oct 2011 13:06:17 +0300
+
 libfcgi-perl (0.71-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru libfcgi-perl-0.71/debian/control libfcgi-perl-0.71/debian/control
--- libfcgi-perl-0.71/debian/control2010-04-01 20:30:50.0 +0300
+++ libfcgi-perl-0.71/debian/control2011-10-24 12:59:14.0 +0300
@@ -8,8 +8,8 @@
  Krzysztof Krzyżaniak (eloy) e...@debian.org
 Standards-Version: 3.8.4
 Homepage: http://search.cpan.org/dist/FCGI/
-Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfcgi-perl/
-Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfcgi-perl/
+Vcs-Git: git://git.debian.org/pkg-perl/packages/libfcgi-perl.git
+Vcs-Browser: 
http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libfcgi-perl.git
 
 Package: libfcgi-perl
 Architecture: any
diff -Nru libfcgi-perl-0.71/debian/patches/cve-2011-2766.patch 
libfcgi-perl-0.71/debian/patches/cve-2011-2766.patch
--- libfcgi-perl-0.71/debian/patches/cve-2011-2766.patch1970-01-01 
02:00:00.0 +0200
+++ libfcgi-perl-0.71/debian/patches/cve-2011-2766.patch2011-10-24 
13:02:33.0 +0300
@@ -0,0 +1,42 @@
+Description: replace testing of hash value with hash reference
+ %hash is false if the hash hasn't been assigned to, *or* if the hash is simply
+ empty. This causes the environment from the *second* request (that is, the
+ environment produced by the first request) to be saved as default if the first
+ request had empty environment. This way, request after the first can get
+ access to credentials set up by the first request. badbadbad
+ This is CVE-2011-2766.
+Author: chan...@cpan.org
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=68380
+Bug-Debian: http://bugs.debian.org/607479
+
+--- a/FCGI.PL
 b/FCGI.PL
+@@ -294,14 +294,14 @@ sub Request(;***$*$) {
+ 
+ sub accept() {
+ warn accept called as a method; you probably wanted to call Accept if 
@_;
+-if (%FCGI::ENV) {
+-  %ENV = %FCGI::ENV;
++if ( defined($FCGI::ENV) ) {
++  %ENV = %$FCGI::ENV;
+ } else {
+-  %FCGI::ENV = %ENV;
++  $FCGI::ENV = {%ENV};
+ }
+ my $rc = Accept($global_request);
+-for (keys %FCGI::ENV) {
+-  $ENV{$_} = $FCGI::ENV{$_} unless exists $ENV{$_};
++for (keys %$FCGI::ENV) {
++  $ENV{$_} = $FCGI::ENV-{$_} unless exists $ENV{$_};
+ }
+ 
+ # not SFIO
+@@ -313,7 +313,7 @@ sub accept() {
+ 
+ sub finish() {
+ warn finish called as a method; you probably wanted to call Finish if 
@_;
+-%ENV = %FCGI::ENV if %FCGI::ENV;
++%ENV = %$FCGI::ENV if defined($FCGI::ENV);
+ 
+ # not SFIO
+ if (tied (*STDIN)) {
diff -Nru libfcgi-perl-0.71/debian/patches/series 
libfcgi-perl-0.71/debian/patches/series
--- libfcgi-perl-0.71/debian/patches/series 2010-01-15 23:05:14.0 
+0200
+++ libfcgi-perl-0.71/debian/patches/series 2011-10-12 11:49:36.0 
+0300
@@ -1 +1,2 @@
 fix-pod-spelling.patch
+cve-2011-2766.patch


== debdiff =
$ debdiff libfcgi-perl_0.71-1_amd64.deb libfcgi-perl_0.71-1+squeeze1_amd64.deb  
   
File lists identical (after any substitutions)

Control files: lines which differ (wdiff format)

Depends: perl (= [-5.10.1-11),-] {+5.10.1-17squeeze2),+} perlapi-5.10.1, libc6 
(= 2.4)
Version: [-0.71-1-] {+0.71-1+squeeze1+}



signature.asc
Description: Digital signature


Bug#646441: monajat-applet: App fails to start and crashes with a traceback.

2011-10-24 Thread Noufal Ibrahim
Package: monajat-applet
Version: 2.6.1-3
Severity: grave
Justification: renders package unusable

monajat on Debian is configured to use python2.6. The funtools package on
python2.6 doesn't contain the cmp_to_key function so the app crashes like so.

noufal@sanitarium% monajat-applet
Traceback (most recent call last):
  File /usr/bin/monajat-applet, line 6, in module
from monajat.applet import applet_main
  File /usr/lib/python2.6/dist-packages/monajat/applet.py, line 16, in
module
from functools  import cmp_to_key
ImportError: cannot import name cmp_to_key


If I manually try running with python2.7, I get this

noufal@sanitarium% python2.7 $(which monajat-applet)
{'v': u'1'}
3.0 0
Traceback (most recent call last):
  File /usr/bin/monajat-applet, line 7, in module
applet_main()
  File /usr/lib/python2.7/dist-packages/monajat/applet.py, line 638, in
applet_main
a=applet()
  File /usr/lib/python2.7/dist-packages/monajat/applet.py, line 254, in
__init__
locale.setlocale(locale.LC_MESSAGES, l)
  File /usr/lib/python2.7/locale.py, line 540, in setlocale
return _setlocale(category, locale)
locale.Error: unsupported locale setting


So, while there is a Debian issue (wrong version of Python used), the upstream
seems to be broken as well.



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.38-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages monajat-applet depends on:
ii  python   2.6.7-3 interactive high-level object-orie
ii  python-eggtrayicon   2.25.3-10.1 Python module to display icons in 
ii  python-gtk2  2.24.0-2Python bindings for the GTK+ widge
ii  python-monajat   2.6.1-3 Islamic supplications backend
ii  python-notify0.1.1-3 Python bindings for libnotify
ii  python2.62.6.7-3 An interactive high-level object-o
ii  python2.72.7.2-5 An interactive high-level object-o

Versions of packages monajat-applet recommends:
ii  islamic-menus 1.0.4-1Islamic menu categories for applic
ii  python-dbus   0.84.0-2   simple interprocess messaging syst

monajat-applet suggests no packages.

-- no debconf information



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



Bug#644948: nfs-common: Wrong uid/gid with latest version using NFSv4

2011-10-24 Thread Anders Boström
 SW == Stephan Windmüller wi...@white-hawk.de writes:

 SW On 23.10.2011 13:49, Jamie Heilman wrote:
  Chances are you all have your nfsidmap Domain mismatched between
  client and server; check your user.* syslog logs on the client for
  messages like: nfsidmap: nss_getpwnam: name 'foo@bar' does not map
  into domain 'baz'

 SW In my configuration both domains (client and server) are correctly set,
 SW but this is not the issue: passwd and group data is fetched from ldap as
 SW set in nsswitch.conf, but idmapd does not seem to respect these settings.

And in my configuration, both domains (client and server) are also
correctly set. And the only messages from nfsidmap in syslog is a
message stating that the correct domain is used. In my case, NIS is
used for passwd and group data.

The server is using nfs-common 1:1.2.2-4 . Switching back to 1:1.2.4-1
on the client solves the problem.

/ Anders



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



Bug#646442: bino: FTBFS: conftest.cpp:40: undefined reference to `clock_gettime'

2011-10-24 Thread Mònica Ramírez Arceda
Source: bino
Version: 1.2.1-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++: fatal error: no input files
 compilation terminated.
 configure:4984: $? = 4
 configure:4988: checking whether we are using the GNU C++ compiler
 configure:5007: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 
 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 
 conftest.cpp 5
 configure:5007: $? = 0
 configure:5016: result: yes
 configure:5025: checking whether g++ accepts -g
 configure:5045: g++ -c -g -D_FORTIFY_SOURCE=2 conftest.cpp 5
 configure:5045: $? = 0
 configure:5086: result: yes
 configure:5111: checking dependency style of g++
 configure:5221: result: none
 configure:5280: checking for ranlib
 configure:5296: found /usr/bin/ranlib
 configure:5307: result: ranlib
 configure:5329: checking whether ln -s works
 configure:5333: result: yes
 configure:5347: checking whether byte ordering is bigendian
 configure:5362: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 
 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 
 conftest.cpp 5
 conftest.cpp:27:9: error: expected unqualified-id before 'not' token
 configure:5362: $? = 1
 configure: failed program was:
 | /* confdefs.h */
 | #define PACKAGE_NAME Bino
 | #define PACKAGE_TARNAME bino
 | #define PACKAGE_VERSION 1.2.1
 | #define PACKAGE_STRING Bino 1.2.1
 | #define PACKAGE_BUGREPORT bino-l...@nongnu.org
 | #define PACKAGE_URL http://bino3d.org/;
 | #define STDC_HEADERS 1
 | #define HAVE_SYS_TYPES_H 1
 | #define HAVE_SYS_STAT_H 1
 | #define HAVE_STDLIB_H 1
 | #define HAVE_STRING_H 1
 | #define HAVE_MEMORY_H 1
 | #define HAVE_STRINGS_H 1
 | #define HAVE_INTTYPES_H 1
 | #define HAVE_STDINT_H 1
 | #define HAVE_UNISTD_H 1
 | #define __EXTENSIONS__ 1
 | #define _ALL_SOURCE 1
 | #define _GNU_SOURCE 1
 | #define _POSIX_PTHREAD_SEMANTICS 1
 | #define _TANDEM_SOURCE 1
 | #define PACKAGE bino
 | #define VERSION 1.2.1
 | /* end confdefs.h.  */
 | #ifndef __APPLE_CC__
 |not a universal capable compiler
 |  #endif
 |  typedef int dummy;
 | 
 configure:5407: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 
 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 
 conftest.cpp 5
 configure:5407: $? = 0
 configure:5425: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 
 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 
 conftest.cpp 5
 conftest.cpp: In function 'int main()':
 conftest.cpp:33:8: error: 'big' was not declared in this scope
 conftest.cpp:33:12: error: expected ';' before 'endian'
 configure:5425: $? = 1
 configure: failed program was:
 | /* confdefs.h */
 | #define PACKAGE_NAME Bino
 | #define PACKAGE_TARNAME bino
 | #define PACKAGE_VERSION 1.2.1
 | #define PACKAGE_STRING Bino 1.2.1
 | #define PACKAGE_BUGREPORT bino-l...@nongnu.org
 | #define PACKAGE_URL http://bino3d.org/;
 | #define STDC_HEADERS 1
 | #define HAVE_SYS_TYPES_H 1
 | #define HAVE_SYS_STAT_H 1
 | #define HAVE_STDLIB_H 1
 | #define HAVE_STRING_H 1
 | #define HAVE_MEMORY_H 1
 | #define HAVE_STRINGS_H 1
 | #define HAVE_INTTYPES_H 1
 | #define HAVE_STDINT_H 1
 | #define HAVE_UNISTD_H 1
 | #define __EXTENSIONS__ 1
 | #define _ALL_SOURCE 1
 | #define _GNU_SOURCE 1
 | #define _POSIX_PTHREAD_SEMANTICS 1
 | #define _TANDEM_SOURCE 1
 | #define PACKAGE bino
 | #define VERSION 1.2.1
 | /* end confdefs.h.  */
 | #include sys/types.h
 | #include sys/param.h
 | 
 | int
 | main ()
 | {
 | #if BYTE_ORDER != BIG_ENDIAN
 |  not big endian
 | #endif
 | 
 |   ;
 |   return 0;
 | }
 configure:5553: result: no
 configure:5807: checking whether optreset is declared
 configure:5807: g++ -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 
 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 
 conftest.cpp 5
 conftest.cpp: In function 'int main()':
 conftest.cpp:66:10: error: 'optreset' was not declared in this scope
 configure:5807: $? = 1
 configure: failed program was:
 | /* confdefs.h */
 | #define PACKAGE_NAME Bino
 | #define PACKAGE_TARNAME bino
 | #define PACKAGE_VERSION 1.2.1
 | #define PACKAGE_STRING Bino 1.2.1
 | #define PACKAGE_BUGREPORT bino-l...@nongnu.org
 | #define PACKAGE_URL http://bino3d.org/;
 | #define STDC_HEADERS 1
 | #define HAVE_SYS_TYPES_H 1
 | #define HAVE_SYS_STAT_H 1
 | #define HAVE_STDLIB_H 1
 | #define HAVE_STRING_H 1
 | #define HAVE_MEMORY_H 1
 | #define HAVE_STRINGS_H 1
 | #define HAVE_INTTYPES_H 1
 | #define HAVE_STDINT_H 1
 | #define HAVE_UNISTD_H 1
 | #define __EXTENSIONS__ 1
 | #define _ALL_SOURCE 1
 | #define _GNU_SOURCE 1
 | #define _POSIX_PTHREAD_SEMANTICS 1
 | #define _TANDEM_SOURCE 1
 | #define PACKAGE bino
 | #define VERSION 1.2.1
 | #define PLATFORM x86_64-pc-linux-gnu
 | #define NDEBUG 1
 | /* end 

Bug#646443: bulletml: FTBFS: y.tab.c:1583:24: error: invalid conversion from 'const char*' to 'char*' [-fpermissive]

2011-10-24 Thread Mònica Ramírez Arceda
Source: bulletml
Version: 0.0.6-4
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -c -g -Wall -ansi -pedantic -O2 -I. -I../d_cpp calc.cpp
 y.tab.c: In function 'int yyparse()':
 y.tab.c:1583:24: error: invalid conversion from 'const char*' to 'char*' 
 [-fpermissive]
 y.tab.c:1698:35: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 make[1]: *** [calc.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/bulletml_0.0.6-4_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.



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



Bug#646444: gpointing-device-settings: wheel scrolling emulation stopped working after upgrading to gnome3

2011-10-24 Thread Alberto Maurizi
Package: gpointing-device-settings
Version: 1.5.1-5
Severity: important

Dear Maintainer,

As mentioned in the subject, scrolling emulation does not work anymore.
I'm using the gnome-fallback environment.


-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gpointing-device-settings depends on:
ii  gconf2  2.32.4-1  
ii  libatk1.0-0 2.2.0-2   
ii  libc6   2.13-21   
ii  libcairo2   1.10.2-6.1
ii  libdbus-1-3 1.4.16-1  
ii  libdbus-glib-1-20.98-1
ii  libfontconfig1  2.8.0-3   
ii  libfreetype62.4.7-1   
ii  libgconf2-4 2.32.4-1  
ii  libgdk-pixbuf2.0-0  2.24.0-1  
ii  libglib2.0-02.28.8-1  
ii  libgpds01.5.1-5   
ii  libgtk2.0-0 2.24.7-1  
ii  libpango1.0-0   1.29.4-2  
ii  libxi6  2:1.4.3-3 

gpointing-device-settings recommends no packages.

gpointing-device-settings suggests no packages.

-- no debconf information



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



Bug#646445: clutter-gesture: FTBFS: test-events.c:280:16: error: ignoring return value of 'clutter_init', declared with attribute warn_unused_result [-Werror=unused-result]

2011-10-24 Thread Mònica Ramírez Arceda
Source: clutter-gesture
Version: 0.0.2.1-3
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 gcc -DHAVE_CONFIG_H -I. -I.. -I../clutter-gesture/   -pthread 
 -I/usr/include/clutter-1.0 -I/usr/include/cogl -I/usr/include/atk-1.0 
 -I/usr/include/pango-1.0 -I/usr/include/libdrm -I/usr/include/gdk-pixbuf-2.0 
 -I/usr/include/libpng12 -I/usr/include/pixman-1 -I/usr/include/freetype2 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/cairo 
 -I/usr/include/json-glib-1.0   -Wall -Werror 
 -Wno-error=unused-but-set-variable -Wno-error=unused-but-set-parameter -fPIC 
 -g3 -O0 -ggdb -DPKGDATADIR=\/usr/share/cluttergesture\ -g -O2 
 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
 -Werror=format-security -Wall -c -o test-test-events.o `test -f 
 'test-events.c' || echo './'`test-events.c
 test-events.c: In function 'main':
 test-events.c:280:16: error: ignoring return value of 'clutter_init', 
 declared with attribute warn_unused_result [-Werror=unused-result]
 cc1: all warnings being treated as errors
 
 make[3]: *** [test-test-events.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/clutter-gesture_0.0.2.1-3_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.



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



Bug#646446: gpsdrive: FTBFS: mapnik.cpp:33:15: error: 'mapnik::Image32' has not been declared

2011-10-24 Thread Mònica Ramírez Arceda
Source: gpsdrive
Version: 2.10~pre4-6.dfsg-5.1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I.. 
 -DLOCALEDIR=\/usr/share/locale\ -DDATADIR=\/usr/share\ 
 -DLIBDIR=\/usr/lib\ -DFRIENDSSERVERVERSION=\2\   -DMAPNIK -I/usr/include/ 
 -I/usr/local/include -I/opt/boost_1_35/include/boost-1_35 
 -I/usr/local/include/freetype2 -I/usr/include/freetype2 -I. -L/usr/local/lib 
 -I. -I. -I.. -pthread -I/usr/include/dbus-1.0 
 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include   -DDBUS_API_SUBJECT_TO_CHANGE=1-g -O2  -MT 
 mapnik.o -MD -MP -MF .deps/mapnik.Tpo -c -o mapnik.o mapnik.cpp; \
   then mv -f .deps/mapnik.Tpo .deps/mapnik.Po; else rm -f 
 .deps/mapnik.Tpo; exit 1; fi
 mapnik.cpp:33:15: error: 'mapnik::Image32' has not been declared
 mapnik.cpp:35:15: error: 'mapnik::Layer' has not been declared
 mapnik.cpp:36:15: error: 'mapnik::Envelope' has not been declared
 mapnik.cpp: In function 'void mapnik::render_mapnik()':
 mapnik.cpp:346:5: error: 'Envelope' was not declared in this scope
 mapnik.cpp:346:14: error: expected primary-expression before 'double'
 mapnik.cpp:346:14: error: expected ';' before 'double'
 mapnik.cpp:351:23: error: 'class mapnik::Map' has no member named 'zoomToBox'
 mapnik.cpp:351:33: error: 'box' was not declared in this scope
 mapnik.cpp:353:5: error: 'Image32' was not declared in this scope
 mapnik.cpp:353:13: error: expected ';' before 'buf'
 mapnik.cpp:354:33: error: type/value mismatch at argument 1 in template 
 parameter list for 'templateclass T class mapnik::agg_renderer'
 mapnik.cpp:354:33: error:   expected a type, got 'Image32'
 mapnik.cpp:354:38: error: invalid type in declaration before '(' token
 mapnik.cpp:354:57: error: 'buf' was not declared in this scope
 mapnik.cpp:354:60: error: expression list treated as compound expression in 
 initializer [-fpermissive]
 mapnik.cpp:355:9: error: request for member 'apply' in 'ren', which is of 
 non-class type 'int'
 mapnik.cpp:357:53: error: 'class mapnik::Map' has no member named 
 'getCurrentExtent'
 mapnik.cpp:367:5: error: 'Envelope' is not a member of 'mapnik'
 mapnik.cpp:367:22: error: expected primary-expression before 'double'
 mapnik.cpp:367:22: error: expected ';' before 'double'
 mapnik.cpp:368:26: error: 'ext' was not declared in this scope
 make[4]: *** [mapnik.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/gpsdrive_2.10~pre4-6.dfsg-5.1_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.



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



Bug#644876: initramfs-tools: Boot failure from software RAID1 + LVM2 by timing

2011-10-24 Thread Touko Korpela
On Mon, Oct 24, 2011 at 11:01:01AM +0200, Jort Koopmans wrote:
 On Sun, 2011-10-23 at 14:05 +0300, Touko Korpela wrote:
 [..]
  madduck called testing for experimental version of mdadm. where it can be
  downloaded?
 
 My bad, I missed the initscripts package from sid (instead of testing).
 I must note that none of the involved packages are available in
 experimental (and mdadm and debianutils are equal in testing and
 unstable atm).
 
 Upgraded initscripts;
 initscripts [2.88dsf-13.11 - 2.88dsf-13.12]
 
 Reinstalled mdadm (from sid, but same version), generated a new initrd
 just to be safe.
 But again that didnt fix the problem.

I know difference between sid and experimental. Is there more recent version
of mdadm available than is in sid now? (experimental suite doesn't have it)



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



Bug#646447: graphthing: FTBFS: gt-bison.tab.cc:1596:24: error: invalid conversion from 'const char*' to 'char*' [-fpermissive]

2011-10-24 Thread Mònica Ramírez Arceda
Source: graphthing
Version: 1.3.2-3
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[2]: Entering directory `/build/graphthing-ULK58F/graphthing-1.3.2/src'
 aboutbox.cc - aboutbox.o
 In file included from aboutbox.cc:19:0:
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 logo_sc.xpm:84:51: warning: deprecated 

Bug#644876: initramfs-tools: Boot failure from software RAID1 + LVM2 by timing

2011-10-24 Thread Jort Koopmans
On Mon, 2011-10-24 at 14:03 +0300, Touko Korpela wrote:
[..]
 
 I know difference between sid and experimental. Is there more recent version
 of mdadm available than is in sid now? (experimental suite doesn't have it)

Not that I know of. As you mention, experimental does not contain a
newer version atm.





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



Bug#646448: libexosip2: FTBFS: eXutils.c:1378:3: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: libexosip2
Version: 3.3.0-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  gcc -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I../include -I/usr/include 
 -I/usr/include -Wall -Wcast-align -Wchar-subscripts -Wformat -Winline 
 -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wpointer-arith 
 -DSRV_RECORD -DOSIP_MT -pedantic -DENABLE_DEBUG -g -DENABLE_TRACE -g 
 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
 -Werror=format-security -Wall -pthread -g -fstack-protector 
 --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
 -Wall -c eXutils.c  -fPIC -DPIC -o .libs/eXutils.o
 eXutils.c: In function '_eXosip_srv_lookup':
 eXutils.c:920:7: warning: variable 'port' set but not used 
 [-Wunused-but-set-variable]
 eXutils.c: In function 'eXosip_get_naptr':
 eXutils.c:1378:3: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 eXutils.c:1378:3: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 eXutils.c:1365:8: warning: variable 'ttl' set but not used 
 [-Wunused-but-set-variable]
 eXutils.c:1364:19: warning: variable 'aclass' set but not used 
 [-Wunused-but-set-variable]
 eXutils.c: In function 'eXosip_get_srv_record':
 eXutils.c:1597:3: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 eXutils.c:1597:3: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 eXutils.c:1584:8: warning: variable 'ttl' set but not used 
 [-Wunused-but-set-variable]
 eXutils.c:1583:19: warning: variable 'aclass' set but not used 
 [-Wunused-but-set-variable]
 cc1: some warnings being treated as errors
 
 make[2]: *** [eXutils.lo] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/libexosip2_3.3.0-1_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.



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



Bug#646449: libosip2: FTBFS: osip_message_parse.c:850:5: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: libosip2
Version: 3.3.0-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I../../include -Wall -Wcast-align 
 -Wchar-subscripts -Wformat -Winline -Wmissing-declarations 
 -Wmissing-prototypes -Wnested-externs -Wpointer-arith -g -fstack-protector 
 --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
 -Wall -DUSE_GPERF -pedantic -g -DENABLE_TRACE -g -fstack-protector 
 --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
 -Wall -c osip_message_parse.c  -fPIC -DPIC -o .libs/osip_message_parse.o
 osip_message_parse.c: In function 'msg_osip_body_parse':
 osip_message_parse.c:800:15: warning: format '%i' expects argument of type 
 'int', but argument 3 has type 'size_t' [-Wformat]
 osip_message_parse.c:850:5: error: format not a string literal and no format 
 arguments [-Werror=format-security]
 cc1: some warnings being treated as errors
 
 make[4]: *** [osip_message_parse.lo] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/libosip2_3.3.0-1_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.



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



Bug#646450: librasterlite: FTBFS: rasterlite_load.c:889:27: error: 'GAIA_WAVELET_BLOB' undeclared (first use in this function)

2011-10-24 Thread Mònica Ramírez Arceda
Source: librasterlite
Version: 1.1~svn11-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 gcc -DPACKAGE_NAME=\librasterlite\ -DPACKAGE_TARNAME=\librasterlite\ 
 -DPACKAGE_VERSION=\1.1\ -DPACKAGE_STRING=\librasterlite\ 1.1\ 
 -DPACKAGE_BUGREPORT=\a.furieri\ @\ lqt.it\ -DPACKAGE_URL=\\ 
 -DPACKAGE=\librasterlite\ -DVERSION=\1.1\ -DSTDC_HEADERS=1 
 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 
 -DHAVE_UNISTD_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STDIO_H=1 -DHAVE_STRING_H=1 
 -DHAVE_MEMORY_H=1 -DHAVE_MATH_H=1 -DHAVE_FLOAT_H=1 -DHAVE_FCNTL_H=1 
 -DHAVE_INTTYPES_H=1 -DHAVE_STDDEF_H=1 -DHAVE_STDINT_H=1 -DHAVE_SYS_TIME_H=1 
 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\.libs/\ 
 -DTIME_WITH_SYS_TIME=1 -DLSTAT_FOLLOWS_SLASHED_SYMLINK=1 
 -DLSTAT_FOLLOWS_SLASHED_SYMLINK=1 -DHAVE_STRFTIME=1 -DHAVE_MEMSET=1 
 -DHAVE_STRCASECMP=1 -DHAVE_STRERROR=1 -DHAVE_STRNCASECMP=1 -DHAVE_STRSTR=1 
 -DHAVE_FDATASYNC=1 -DHAVE_FTRUNCATE=1 -DHAVE_GETCWD=1 -DHAVE_GETTIMEOFDAY=1 
 -DHAVE_LOCALTIME_R=1 -DHAVE_MEMMOVE=1 -DHAVE_STRERROR=1 -I. -g -O2 
 -I../headers -I/usr/include/ -I/usr/include/geotiff/   -D_LARGE_FILE=1 
 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1 -g -O2 -c rasterlite_load.c
 rasterlite_load.c: In function 'load_file':
 rasterlite_load.c:889:27: error: 'GAIA_WAVELET_BLOB' undeclared (first use in 
 this function)
 rasterlite_load.c:889:27: note: each undeclared identifier is reported only 
 once for each function it appears in
 rasterlite_load.c: In function 'main':
 rasterlite_load.c:1506:19: error: 'GAIA_WAVELET_BLOB' undeclared (first use 
 in this function)
 make[2]: *** [rasterlite_load.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/librasterlite_1.1~svn11-1_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.



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



Bug#646451: mapnik-viewer: FTBFS: mapwidget.hpp:51:5: error: 'Envelope' in namespace 'mapnik' does not name a type

2011-10-24 Thread Mònica Ramírez Arceda
Source: mapnik-viewer
Version: 0.0~svn2521-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -c -m64 -pipe -ansi -Wall -ftemplate-depth-100 -DLINUX 
 -DMAPNIK_THREADSAFE -O2 -finline-functions -Wno-inline -DNDEBUG 
 -Wno-missing-field-initializers -g -D_REENTRANT -Wall -W -DQT_GUI_LIB 
 -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++-64 -I. 
 -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4 
 -I/usr/include -I/usr/include/boost -I/usr/include/mapnik 
 -I/usr/include/freetype2 -I. -Idebug -I. -o debug/main.o main.cpp
 In file included from mainwindow.hpp:31:0,
  from main.cpp:27:
 mapwidget.hpp:51:5: error: 'Envelope' in namespace 'mapnik' does not name a 
 type
 mapwidget.hpp:69:28: error: 'mapnik::Envelope' has not been declared
 mapwidget.hpp:69:36: error: expected ',' or '...' before '' token
 In file included from main.cpp:27:0:
 mainwindow.hpp:108:5: error: 'Envelope' in namespace 'mapnik' does not name a 
 type
 make[3]: *** [debug/main.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/mapnik-viewer_0.0~svn2521-1_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.



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



Bug#646452: monav: FTBFS: mapnikrenderer.cpp:267:4: error: 'Image32' is not a member of 'mapnik'

2011-10-24 Thread Mònica Ramírez Arceda
Source: monav
Version: 0.3-5
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -c -m64 -pipe -g -O3 -Wno-unused-function -fopenmp 
 -I/usr/include/freetype2 -fPIC -Wall -W -D_REENTRANT -fPIC -DNOGUI 
 -DQT_NO_DEBUG -DQT_STATICPLUGIN -DQT_PLUGIN -DQT_CORE_LIB -DQT_SHARED 
 -I/usr/share/qt4/mkspecs/linux-g++-64 -I. -I/usr/include/qt4/QtCore 
 -I/usr/include/qt4 -I../.. -I. -o mapnikrenderer.o mapnikrenderer.cpp
 mapnikrenderer.cpp: In member function 'virtual bool 
 MapnikRenderer::Preprocess(IImporter*, QString)':
 mapnikrenderer.cpp:267:4: error: 'Image32' is not a member of 'mapnik'
 mapnikrenderer.cpp:267:20: error: expected ';' before 'image'
 mapnikrenderer.cpp:291:5: error: 'Envelope' is not a member of 'mapnik'
 mapnikrenderer.cpp:291:22: error: expected primary-expression before 'double'
 mapnikrenderer.cpp:291:22: error: expected ';' before 'double'
 mapnikrenderer.cpp:292:9: error: 'class mapnik::Map' has no member named 
 'zoomToBox'
 mapnikrenderer.cpp:292:20: error: 'boundingBox' was not declared in this scope
 mapnikrenderer.cpp:293:26: error: 'Image32' is not a member of 'mapnik'
 mapnikrenderer.cpp:293:26: error: 'Image32' is not a member of 'mapnik'
 mapnikrenderer.cpp:293:41: error: template argument 1 is invalid
 mapnikrenderer.cpp:293:51: error: invalid type in declaration before '(' token
 mapnikrenderer.cpp:293:58: error: 'image' was not declared in this scope
 mapnikrenderer.cpp:293:64: error: expression list treated as compound 
 expression in initializer [-fpermissive]
 mapnikrenderer.cpp:294:14: error: request for member 'apply' in 'renderer', 
 which is of non-class type 'int'
 mapnikrenderer.cpp:302:26: error: 'ImageData32' is not a member of 'mapnik'
 mapnikrenderer.cpp:302:26: error: 'ImageData32' is not a member of 'mapnik'
 mapnikrenderer.cpp:302:45: error: template argument 1 is invalid
 mapnikrenderer.cpp:302:52: error: invalid type in declaration before '=' token
 mapnikrenderer.cpp:264:14: warning: unused variable 'metaTileSize' 
 [-Wunused-variable]
 make[4]: *** [mapnikrenderer.o] Error 1

The full build log is available from:
   http://people.debian.org/~lucas/logs/2011/10/22/monav_0.3-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.



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



Bug#646453: noiz2sa: FTBFS: y.tab.c:1582:24: error: invalid conversion from 'const char*' to 'char*' [-fpermissive]

2011-10-24 Thread Mònica Ramírez Arceda
Source: noiz2sa
Version: 0.51a-8
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -c -Wall -g -O2 -I/usr/include calc.cpp
 y.tab.c: In function 'int yyparse()':
 y.tab.c:1582:24: error: invalid conversion from 'const char*' to 'char*' 
 [-fpermissive]
 calc.yy:20:5: error:   initializing argument 1 of 'int yyerror(char*)' 
 [-fpermissive]
 y.tab.c:1697:35: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 In file included from calc.yy:18:0:
 formula-variables.h: In member function 'Val_ ParamVal_::value() const 
 [with Val_ = double]':
 calc.yy:162:1:   instantiated from here
 formula-variables.h:38:3: warning: comparison between signed and unsigned 
 integer expressions [-Wsign-compare]
 make[1]: *** [calc.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/noiz2sa_0.51a-8_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.



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



Bug#646454: pgadmin3: FTBFS: ../pgadmin/include/utils/sysLogger.h:62:1: error: expected initializer before 'ATTRIBUTE_PRINTF_1'

2011-10-24 Thread Mònica Ramírez Arceda
Source: pgadmin3
Version: 1.14.0-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I..  
 -DDATA_DIR=\/usr/share/pgadmin3/\ -I../pgadmin/include   
 -I/usr/include/postgresql/9.1/server -I/usr/include/postgresql 
 -I/usr/include/postgresql/9.1/server -I/usr/include/postgresql -DSSL 
 -DHAVE_CONNINFO_PARSE -I/usr/lib/wx/include/gtk2-unicode-release-2.8 
 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ 
 -DEMBED_XRC -I/usr/include/libxml2 -I/usr/include/libxml2  -Wall -O2 -c -o 
 ctlCheckTreeView.o `test -f './ctl/ctlCheckTreeView.cpp' || echo 
 './'`./ctl/ctlCheckTreeView.cpp
 In file included from ../pgadmin/include/utils/sysSettings.h:15:0,
  from ../pgadmin/include/pgAdmin3.h:37,
  from ./agent/pgaStep.cpp:16:
 ../pgadmin/include/utils/sysLogger.h:62:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:63:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:64:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:65:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:66:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 In file included from ../pgadmin/include/utils/sysSettings.h:15:0,
  from ../pgadmin/include/pgAdmin3.h:37,
  from ./ctl/calbox.cpp:12:
 ../pgadmin/include/utils/sysLogger.h:62:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:63:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:64:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:65:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:66:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 In file included from ../pgadmin/include/utils/sysSettings.h:15:0,
  from ../pgadmin/include/pgAdmin3.h:37,
  from ./agent/dlgStep.cpp:13:
 ../pgadmin/include/utils/sysLogger.h:62:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:63:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:64:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:65:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:66:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 In file included from ../pgadmin/include/utils/sysSettings.h:15:0,
  from ../pgadmin/include/pgAdmin3.h:37,
  from ./agent/dlgJob.cpp:14:
 ../pgadmin/include/utils/sysLogger.h:62:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:63:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:64:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:65:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/utils/sysLogger.h:66:1: error: expected initializer before 
 'ATTRIBUTE_PRINTF_1'
 ../pgadmin/include/images/step.pngc:86:16: warning: 'wxIcon* step_png_ico()' 
 defined but not used [-Wunused-function]
 ../pgadmin/include/images/steps.pngc:96:16: warning: 'wxIcon* 
 steps_png_ico()' defined but not used [-Wunused-function]
 make[4]: *** [pgaStep.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/pgadmin3_1.14.0-1_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.



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



Bug#646440: [Pkg-libvirt-maintainers] Bug#646440: virtinst should depend on libvirt-bin

2011-10-24 Thread Guido Günther
severity 646440 normal
reassigne 646440 python-libvirt
thanks

On Mon, Oct 24, 2011 at 12:25:07PM +0200, Wouter van Bommel wrote:
 Package: virtinst
 Version: 0.500.3-2
 Severity: important
 
 Without libvirt-bin available the following stackdump will occure when 
 installing a new os.
 This kind of defeats the purpose of virtinst
...if you use which connection URI? The above is proably true for
qemu:/// but not for other HV. If so adding this to python-libvirt as
suggests or recommends makes more sense.
Cheers,
 -- Guido



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



Bug#646455: flare segfaults when leaving a game

2011-10-24 Thread hennr
Package: flare
Version: 0.14.1-3
Severity: normal
Tags: upstream

If the player leaves a game flare stops with a segmentation fault.

This is a known problem and already fixed upstream.
It will be gone with the next packaged release of flare (most likely 0.15)



-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable'), (500, 'stable-updates'), 
(500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-1-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages flare depends on:
ii  flare-data   0.14.1-3 
ii  libc62.13-21  
ii  libgcc1  1:4.6.1-15   
ii  libsdl-image1.2  1.2.10-2.1+b1
ii  libsdl-mixer1.2  1.2.8-6.4
ii  libsdl1.2debian  1.2.14-6.4   
ii  libstdc++6   4.6.1-15 

flare recommends no packages.

flare suggests no packages.

-- no debconf information



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



Bug#646456: singular: FTBFS: feread.cc:308:22: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: singular
Version: 3-0-4-3.dfsg-3.1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
 -Wformat-security -Werror=format-security -Wall -fPIC --no-rtti 
 --no-exceptions --no-rtti -pipe -fno-implicit-templates --no-exceptions -I. 
 -I/build/singular-5NaXZs/singular-3-0-4-3.dfsg/debian/tmp//usr/include/singular/
  
 -I/build/singular-5NaXZs/singular-3-0-4-3.dfsg/debian/tmp//usr/include/singular/
   -DNDEBUG -DOM_NDEBUG -Dx86_64_Linux -DHAVE_CONFIG_H -c feread.cc
 feread.cc: In function 'char* fe_fgets_stdin_rl(char*, char*, int)':
 feread.cc:211:8: warning: deprecated conversion from string constant to 
 'char*' [-Wwrite-strings]
 feread.cc: In function 'char* fe_fgets(char*, char*, int)':
 feread.cc:308:22: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 cc1plus: some warnings being treated as errors
 
 make[2]: *** [feread.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/singular_3-0-4-3.dfsg-3.1_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.



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



Bug#613016: dbunit package is not needed

2011-10-24 Thread Bekir Dogan
This bug is unnecessary because phpunit package includes dbunit.

We should close this bug.
--
Bekir Dogan



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



Bug#646457: sundials: FTBFS: ./cvode.c:4131:5: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: sundials
Version: 2.4.0-3
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  cc -I./../../include -I../../include -g -O2 -fstack-protector 
 --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
 -Wall -c ./cvode.c  -fPIC -DPIC -o .libs/cvode.o
 ./cvode.c: In function 'CVProcessError':
 ./cvode.c:4131:5: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 cc1: some warnings being treated as errors
 
 make[2]: *** [cvode.lo] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/sundials_2.4.0-3_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.



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



Bug#645971: unattended-upgrades: dpkg-reconfigure fails to remove or modify 20auto-upgrades

2011-10-24 Thread Michael Vogt
On Wed, Oct 19, 2011 at 09:38:50PM -0400, Mike Eldridge wrote:
 Package: unattended-upgrades
 Version: 0.62.2
 Severity: important

Thanks for your bugreport. 
 
 I'm building a number of preseeds for a large deployment I'll soon be
 undertaking.  As part of the deployment, I'm looking at employing this
 package for automated security updates.  When using dpkg-reconfigure to
 enable the upgrades, I see output indicating that 20auto-upgrades has
 been created in /etc/apt.conf/d.  The contents of that file are:
 
   APT::Periodic::Update-Package-Lists 1;
   APT::Periodic::Unattended-Upgrade 1;
 
 If I execute dpkg-reconfigure and select to NOT automatically install
 updates, this file is unmodified.  If I remove the package, the file
 remains as well.  Only a purge removes the file.  I'm not sure if that
 is a problem or not; I suspect that the missing unattended-upgrade
 script would prevent the update.
[..]

The debconf question was originally designed to have a starting point
configuration. But I agree that its not really intuitive so I added
support for disabling into bzr now. This will be part of the next
update and enable/disable should work.

Cheers,
 Michael



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



Bug#646458: sofia-sip: FTBFS: ./sofia-sip/sip_extra.h:2:1: error: expected identifier or '(' before '}' token

2011-10-24 Thread Mònica Ramírez Arceda
Source: sofia-sip
Version: 1.12.11+20110422-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 make[5]: Entering directory 
 `/build/sofia-sip-8fH4z2/sofia-sip-1.12.11+20110422/objs/libsofia-sip-ua/sip'
LTCOMPILE sip_parser.lo
LTCOMPILE sip_header.lo
LTCOMPILE sip_util.lo
LTCOMPILE sip_pref_util.lo
LTCOMPILE sip_basic.lo
LTCOMPILE sip_extra.lo
LTCOMPILE sip_feature.lo
LTCOMPILE sip_mime.lo
LTCOMPILE sip_security.lo
LTCOMPILE sip_event.lo
 In file included from ../../../libsofia-sip-ua/sip/sip_extra.c:44:0:
 ./sofia-sip/sip_extra.h:2:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:7:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:12:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:17:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:22:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:27:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:32:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:37:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:42:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:47:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:52:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:57:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:62:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:67:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:72:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:77:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:82:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:87:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:92:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:97:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:102:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:107:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:112:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:117:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:122:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:127:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:132:1: error: expected identifier or '(' before '}' 
 token
 ./sofia-sip/sip_extra.h:252:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:252:47: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:318:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:318:53: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:323:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:323:53: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:362:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:362:54: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:367:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:367:54: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:393:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:397:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h: In function 'sip_refer_sub_make':
 ./sofia-sip/sip_extra.h:399:11: error: 'sip_refer_sub_t' undeclared (first 
 use in this function)
 ./sofia-sip/sip_extra.h:399:11: note: each undeclared identifier is reported 
 only once for each function it appears in
 ./sofia-sip/sip_extra.h:399:28: error: expected expression before ')' token
 ./sofia-sip/sip_extra.h: At top level:
 ./sofia-sip/sip_extra.h:425:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h:429:1: error: unknown type name 'sip_refer_sub_t'
 ./sofia-sip/sip_extra.h: In function 'sip_refer_sub_format':
 ./sofia-sip/sip_extra.h:438:11: error: 'sip_refer_sub_t' undeclared (first 
 use in this function)
 ./sofia-sip/sip_extra.h:438:28: error: expected expression before ')' token
 ./sofia-sip/sip_extra.h: At top level:
 ./sofia-sip/sip_extra.h:506:36: error: expected ')' before 'const'
 ./sofia-sip/sip_extra.h:509:37: error: expected ')' before 'const'
 ./sofia-sip/sip_extra.h:598:1: error: unknown type name 'sip_alert_info_t'

Bug#503461: libgksu l10n update

2011-10-24 Thread Michael Biebl
Hi,

Am 24.10.2011 12:52, schrieb Hideki Yamane:
 libgksu (2.0.13~pre1-5) unstable; urgency=low

   * Switch to dpkg source format 3.0 (quilt).
   * debian/control.in:
 - Wrap dependencies.
 - Remove obsolete versioned Build-Depends on dpkg-dev.
 - Add ${misc:Depends} to libgksu2-dev.
 - Bump Standards-Version to 3.9.2. No further changes.
 - Remove obsolete Conflicts/Replaces.
   * debian/patches/02_format-security.patch:
 - Fix build failure with [-Werror=format-security]. Closes: #643423
   * debian/patches/28_ld_no_as_needed.patch:
 - Fix build failures with binutils-gold. Thanks Matthias Klose for the
   patch. Closes: #555180
   * Bump debhelper compatibility level to 8.
 - Update Build-Depends on debhelper.
 - Strip debian/tmp/ from .install files and simplify them a bit.

  -- Michael Biebl bi...@debian.org  Mon, 24 Oct 2011 02:43:21 +0200
 
  I also want l10n update for libgksu, sent patch and wait it for _3 years_
  see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=503461
 
  It's important for l10n, and I don't want to hear someone says hey, Debian 
  is not well localized, there's just English message. But Ubuntu is good, so 
  we encourage you to use Ubuntu, not Debian... anymore.

I don't see how Ubuntu is relevant here, tbh.
That said I don't see them shipping this patch either.

  Please consider to apply it (or should I do NMU for that?)

I'm not really the maintainer of libgksu. I just did some housekeeping
and keep the package building, ie. fix RC bugs only.

Looking at other l10n updates, kov did handle that via upstream releases
from what I can see, so I didn't want to divert from that.
That said, libgksu is ttbomk pretty much dead upstream so I don't know
how kov want's to deal with that.

kov?

Cheers,
Michael


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#646459: libmimetic0: license mentioned in description is different

2011-10-24 Thread TANIGUCHI Takaki
Package: libmimetic0
Version: 0.9.7-1
Severity: minor

Description says ...
 mimetic is a *GPL* MIME library written in C++ designed to be easy to use and

But debian/copyright says MIT.

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-2-amd64 (SMP w/6 CPU cores)
Locale: LANG=ja_JP.utf8, LC_CTYPE=ja_JP.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libmimetic0 depends on:
ii  libc6   2.13-21   
ii  libgcc1 1:4.6.1-16
ii  libstdc++6  4.6.1-16  

libmimetic0 recommends no packages.

libmimetic0 suggests no packages.

-- no debconf information



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



Bug#646460: fail2ban: fails to monitorize some files, i.e. /var/log/mail.log

2011-10-24 Thread J.L. Fernandez Jambrina
Package: fail2ban
Version: 0.8.4-3
Severity: normal

fail2ban fails to monitorize some files to find bad logins.
It was unable to find bad squirrelmail login atempts from /var/log/mail.log but 
just changing the jail logpath option from /var/log/mail.log to /var/log/syslog 
makes it work.

access rights for both files are identical:
www:~# ls -l /var/log/syslog /var/log/mail.log
-rw-r- 1 root adm   20691 oct 24 13:04 /var/log/mail.log
-rw-r- 1 root adm 4039078 oct 24 13:08 /var/log/syslog

and fail2ban names seems to understand both names:
www:~# tail -n 1000  /var/log/fail2ban.log | grep logfile  
2011-10-24 12:07:52,471 fail2ban.filter : INFO   Added logfile = 
/var/log/auth.log
2011-10-24 12:07:52,728 fail2ban.filter : INFO   Added logfile = 
/var/log/mail.log
2011-10-24 12:41:11,795 fail2ban.filter : INFO   Added logfile = 
/var/log/auth.log
2011-10-24 12:41:12,042 fail2ban.filter : INFO   Added logfile = /var/log/syslog
2011-10-24 12:50:16,020 fail2ban.filter : INFO   Added logfile = 
/var/log/auth.log

Thanks,



-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages fail2ban depends on:
ii  lsb-base3.2-23.2squeeze1 Linux Standard Base 3.2 init scrip
ii  python  2.6.6-3+squeeze6 interactive high-level object-orie
ii  python-central  0.6.16+nmu1  register and build utility for Pyt

Versions of packages fail2ban recommends:
ii  iptables  1.4.8-3administration tools for packet fi
ii  whois 5.0.10 an intelligent whois client

Versions of packages fail2ban suggests:
ii  bsd-mailx [mailx]  8.1.2-0.20100314cvs-1 simple mail user agent
pn  python-gamin   none(no description available)

-- Configuration Files:
/etc/fail2ban.conf changed:
[DEFAULT]
background = true
verbose = 1
debug = false
logtargets = /var/log/fail2ban.log
syslog-target = /dev/log
syslog-facility = 1
pidlock = /var/run/fail2ban.pid
maxfailures = 5
bantime = 600
findtime = 600
ignoreip = 
cmdstart = 
cmdend = 
polltime = 1
reinittime = 10
maxreinits = 1000
protocol = tcp
fwchain = INPUT
fwstart = iptables -N fail2ban-%(__name__)s
  iptables -A fail2ban-%(__name__)s -j RETURN
  iptables -I %(fwchain)s -p %(protocol)s --dport %(port)s -j 
fail2ban-%(__name__)s
fwend = iptables -D %(fwchain)s -p %(protocol)s --dport %(port)s -j 
fail2ban-%(__name__)s
iptables -F fail2ban-%(__name__)s
iptables -X fail2ban-%(__name__)s
fwcheck = iptables -L %(fwchain)s | grep -q fail2ban-%(__name__)s
fwban = iptables -I fail2ban-%(__name__)s 1 -s ip -j DROP
fwunban = iptables -D fail2ban-%(__name__)s -s ip -j DROP
[MAIL]
enabled = true
host = localhost
port = 25
user = 
password = 
from = fail2ban@www
to = root@localhost
localtime = true
subject = [Fail2Ban] section: Banned ip
message = Hi,br
  The IP ip has just been banned by Fail2Ban after
  failures attempts against section.br
  Regards,br
  Fail2Ban
[SASL]
enabled = false
port = smtp
logfile = /var/log/mail.log
timeregex = \S{3}\s{1,2}\d{1,2} \d{2}:\d{2}:\d{2}
timepattern = %%b %%d %%H:%%M:%%S
failregex = : warning: [-._\w]+\[(?Phost[.\d]+)\]: SASL 
(?:LOGIN|PLAIN|(?:CRAM|DIGEST)-MD5) authentication failed$
[Apache]
enabled = false
logfile = /var/log/apache/error.log
port = http
timeregex = \S{3} \S{3} \d{2} \d{2}:\d{2}:\d{2} \d{4}
timepattern = %%a %%b %%d %%H:%%M:%%S %%Y
failregex = [[]client (?Phost\S*)[]] user .*(?:: authentication failure|not 
found)
[ApacheAttacks]
enabled = false
logfile = /var/log/apache/access.log
port = http
maxfailures = 2
timeregex = \d{2}/\S{3}/\d{4}:\d{2}:\d{2}:\d{2}
timepattern = %%d/%%b/%%Y:%%H:%%M:%%S
failregex = ^(?Phost\S*) -.*GET 
.*(?:awstats\.pl\?configdir=|index2\.php\?_REQUEST\[option\].*)\|echo.*
[VSFTPD]
enabled = false
logfile = /var/log/vsftpd.log
port = ftp
timeregex = \S{3}\s{1,2}\d{1,2} \d{2}:\d{2}:\d{2}
timepattern = %%b %%d %%H:%%M:%%S
failregex = \[.+\] FAIL LOGIN: Client (?Phost\S+)$
[PROFTPD]
enabled = false
logfile = /var/log/proftpd/proftpd.log
port = ftp
timeregex = \S{3}\s{1,2}\d{1,2} \d{2}:\d{2}:\d{2}
timepattern = %%b %%d %%H:%%M:%%S
failregex = USER \S+: no such user found from \S* ?\[(?Phost\S+)\] to \S+\s*$
[SSH]
enabled = true
logfile = /var/log/auth.log
port = ssh
timeregex = \S{3}\s{1,2}\d{1,2} \d{2}:\d{2}:\d{2}
timepattern = %%b %%d %%H:%%M:%%S
failregex = : (?:(?:Authentication failure|Failed [-/\w+]+) for(?: 
[iI](?:llegal|nvalid) user)?|[Ii](?:llegal|nvalid) user|ROOT LOGIN REFUSED) 
.*(?: from|FROM) (?:::f{4,6}:)?(?Phost\S*)


-- no debconf information



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


Bug#646461: /usr/bin/run-mailcap: cannot view HTML files

2011-10-24 Thread Michal Suchanek
Package: mime-support
Version: 3.48-1
Severity: important
File: /usr/bin/run-mailcap


Hello,

I was wondering why my email client cannot view HTML messages.

It turns out applications relying on mime-support cannot view HTML.

$ /usr/bin/run-mailcap --action=view 'text/html:'Vyzva_k_uhrade.htm 
Couldn't find a suitable web browser!
Set the BROWSER environment variable to your desired browser.
Warning: program returned non-zero exit code #1



-- System Information:
Debian Release: 6.0.3
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'oldstable'), (500, 'unstable'), (500, 
'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash

mime-support depends on no packages.

Versions of packages mime-support recommends:
ii  file  5.04-5 Determines file type using magic

mime-support suggests no packages.

-- no debconf information



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



Bug#646462: mime-support: Runs notepad to view text files

2011-10-24 Thread Michal Suchanek
Package: mime-support
Version: 3.48-1
Severity: normal

Hello,

since I installed wine every application trying to use an external
program to view text files runs notepad.

-- System Information:
Debian Release: wheezy/sid
  APT prefers stable
  APT policy: (900, 'stable'), (500, 'testing'), (410, 'unstable'), (200, 
'experimental'), (111, 'oldstable'), (107, 'natty-updates'), (107, 'natty')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-kmscur1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash

mime-support depends on no packages.

Versions of packages mime-support recommends:
ii  file  5.04-5

mime-support suggests no packages.

-- no debconf information



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



Bug#646208: RFH: apache2 -- Apache HTTP Server

2011-10-24 Thread Stefan Fritsch
On Saturday 22 October 2011, Arno Töll wrote:
 On 22.10.2011 12:56, Stefan Fritsch wrote:
  Hi Arno, hi Sandro,
  
  it would be great to have you on board.
 
 I will try my best to support you and the rest of the team. By the
 way: I can see lots of people in the Alioth packaging group, but
 apparently many are inactive since you filed a RFH bug. Maybe
 that's an opportunity to clean up the list a bit?

Yes, I will do that in a bit.

 
  There are a few more todos which just came to my mind:
  
  - Use dpkg-buildflags in apache2, apr, apr-util
 
 Unless this is something urgent I will have a look on this soon. I
 made all of my packages ready for dpkg 1.16.1 recently.

We already add hardening flags manually. So, it's not urgent at all.

Cheers,
Stefan



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



Bug#646215: Update Gnome-Shell to 3.0.2-6 for amd64 or better yet, 3.2.0

2011-10-24 Thread Josselin Mouette
Le dimanche 23 octobre 2011 à 22:17 -0700, Marc J. Driftmeyer a écrit :
 If you want people to bang on this release you're gonna have to do
 better getting the entire dependency tree updated before you start
 hitting Experimental with updates. Otherwise, it's nothing but a bunch
 of angry testers losing interest in testing Gnome 3.x.

I’m not sure I understand well: are you actually complaining of broken
packages in *experimental* ?

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-




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



Bug#517915: RFP: oneswarm -- friend-to-friend client

2011-10-24 Thread Bertrand Marc
Hi,

I keep working on OneSwarm so I take over the bug, and I hope to get
it in Debian some day. Right now I need to get a few build-deps into
the archive. I'll start by Apache derby, but there are a lot of deps
to work on. Help will always be welcome.

Thanks,
Bertrand



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



Bug#646463: spatialite-gui: FTBFS: ResultSetView.cpp:432:34: error: 'GAIA_WAVELET_BLOB' was not declared in this scope

2011-10-24 Thread Mònica Ramírez Arceda
Source: spatialite-gui
Version: 1.2.1-2
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -c ResultSetView.cpp -I/usr/lib/wx/include/gtk2-unicode-release-2.8 
 -I/usr/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ 
 -pthread  -Wall -Wextra -Wno-ctor-dtor-privacy -fno-strict-aliasing 
 -I/usr/include -D_LARGE_FILE=1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE=1
 ResultSetView.cpp: In member function 'bool 
 MyResultSetView::ExecuteSql(wxString, int, bool)':
 ResultSetView.cpp:432:34: error: 'GAIA_WAVELET_BLOB' was not declared in this 
 scope
 ResultSetView.cpp: In member function 'void 
 MyResultSetView::OnCmdBlobIn(wxCommandEvent)':
 ResultSetView.cpp:1243:20: error: 'GAIA_WAVELET_BLOB' was not declared in 
 this scope
 ResultSetView.cpp: In member function 'void 
 MyResultSetView::OnCmdBlobOut(wxCommandEvent)':
 ResultSetView.cpp:1325:12: error: 'GAIA_WAVELET_BLOB' was not declared in 
 this scope
 ResultSetView.cpp:1372:16: error: 'GAIA_WAVELET_BLOB' was not declared in 
 this scope
 ResultSetView.cpp:1395:23: error: 'GAIA_WAVELET_BLOB' was not declared in 
 this scope
 make[2]: *** [ResultSetView.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/spatialite-gui_1.2.1-2_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.



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



Bug#646464: smc: FTBFS: audio/../core/../objects/../objects/../video/video.h:26:62: fatal error: RendererModules/OpenGLGUIRenderer/openglrenderer.h: No such file or directory

2011-10-24 Thread Mònica Ramírez Arceda
Source: smc
Version: 1.9-4
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -DHAVE_CONFIG_H -I. -I..  -DDATA_DIR=\/usr/share/games/smc\ 
 -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/SDL   -I/usr/include/CEGUI   
 -Wall -Wpointer-arith -g -O2 -fstack-protector --param=ssp-buffer-size=4 
 -Wformat -Wformat-security -Werror=format-security -Wall -c -o audio.o `test 
 -f 'audio/audio.cpp' || echo './'`audio/audio.cpp
 In file included from audio/../core/../objects/../objects/sprite.h:21:0,
  from audio/../core/../objects/movingsprite.h:19,
  from audio/../core/game_core.h:19,
  from audio/audio.cpp:17:
 audio/../core/../objects/../objects/../video/video.h:26:62: fatal error: 
 RendererModules/OpenGLGUIRenderer/openglrenderer.h: No such file or directory
 compilation terminated.
 make[3]: *** [audio.o] Error 1

The full build log is available from:
   http://people.debian.org/~lucas/logs/2011/10/22/smc_1.9-4_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.



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



Bug#646465: xxxterm: FTBFS: libjavascriptcoregtk-1.0.so.0: could not read symbols: Invalid operation

2011-10-24 Thread Mònica Ramírez Arceda
Source: xxxterm
Version: 1.518-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 /usr/bin/ld: note: 'JSEvaluateScript' is defined in DSO 
 /usr/lib/libjavascriptcoregtk-1.0.so.0 so try adding it to the linker command 
 line
 /usr/lib/libjavascriptcoregtk-1.0.so.0: could not read symbols: Invalid 
 operation
 collect2: ld returned 1 exit status

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/xxxterm_1.518-1_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.



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



Bug#646466: syrthes: FTBFS: lecture_med.c:59:27: error: 'MED_LECTURE' undeclared (first use in this function)

2011-10-24 Thread Mònica Ramírez Arceda
Source: syrthes
Version: 3.4.3-dfsg1-4
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 cc  -o convert2syrthes -O -DMED -I. -I/usr/include/openmpi ecriture_syr.c 
 lecture_neu.c lecture_msh.c lecture_med.c convert2syrthes.c -lmedC 
 lecture_med.c: In function 'ouvrir_med':
 lecture_med.c:59:27: error: 'MED_LECTURE' undeclared (first use in this 
 function)
 lecture_med.c:59:27: note: each undeclared identifier is reported only once 
 for each function it appears in
 lecture_med.c:60:29: warning: cast to pointer from integer of different size 
 [-Wint-to-pointer-cast]
 lecture_med.c: In function 'fermer_med':
 lecture_med.c:127:18: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c: In function 'lire_entete_med':
 lecture_med.c:139:17: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c:143:12: error: 'MED_TAILLE_NOM' undeclared (first use in this 
 function)
 lecture_med.c:144:13: error: 'MED_TAILLE_DESC' undeclared (first use in this 
 function)
 lecture_med.c:145:3: error: unknown type name 'med_maillage'
 lecture_med.c:170:15: error: 'MED_NON_STRUCTURE' undeclared (first use in 
 this function)
 lecture_med.c:176:45: error: 'MED_COOR' undeclared (first use in this 
 function)
 lecture_med.c:176:54: error: 'MED_NOEUD' undeclared (first use in this 
 function)
 lecture_med.c:184:36: error: 'MED_CONN' undeclared (first use in this 
 function)
 lecture_med.c:184:45: error: 'MED_MAILLE' undeclared (first use in this 
 function)
 lecture_med.c:278:28: error: 'MED_TAILLE_LNOM' undeclared (first use in this 
 function)
 lecture_med.c: In function 'lire_coord_med':
 lecture_med.c:309:17: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c:313:12: error: 'MED_TAILLE_NOM' undeclared (first use in this 
 function)
 lecture_med.c:318:17: error: 'MED_TAILLE_PNOM' undeclared (first use in this 
 function)
 lecture_med.c:323:3: error: unknown type name 'med_repere'
 lecture_med.c:326:13: error: 'MED_TAILLE_DESC' undeclared (first use in this 
 function)
 lecture_med.c:327:3: error: unknown type name 'med_maillage'
 lecture_med.c:338:54: error: 'MED_ALL' undeclared (first use in this function)
 lecture_med.c:344:14: error: 'MED_CART' undeclared (first use in this 
 function)
 lecture_med.c: In function 'lire_noeuds_colores_med':
 lecture_med.c:394:17: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c:395:12: error: 'MED_TAILLE_NOM' undeclared (first use in this 
 function)
 lecture_med.c:396:13: error: 'MED_TAILLE_DESC' undeclared (first use in this 
 function)
 lecture_med.c:397:3: error: unknown type name 'med_maillage'
 lecture_med.c:415:70: error: 'MED_NOEUD' undeclared (first use in this 
 function)
 lecture_med.c: In function 'lire_elem_med':
 lecture_med.c:427:17: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c:431:12: error: 'MED_TAILLE_NOM' undeclared (first use in this 
 function)
 lecture_med.c:432:12: error: 'MED_TAILLE_PNOM' undeclared (first use in this 
 function)
 lecture_med.c:434:13: error: 'MED_TAILLE_DESC' undeclared (first use in this 
 function)
 lecture_med.c:435:3: error: unknown type name 'med_maillage'
 lecture_med.c:457:73: error: 'MED_MAILLE' undeclared (first use in this 
 function)
 lecture_med.c:457:96: error: 'MED_NOD' undeclared (first use in this function)
 lecture_med.c: In function 'lire_zones_med':
 lecture_med.c:538:17: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c:542:12: error: 'MED_TAILLE_NOM' undeclared (first use in this 
 function)
 lecture_med.c:543:13: error: 'MED_TAILLE_DESC' undeclared (first use in this 
 function)
 lecture_med.c:544:3: error: unknown type name 'med_maillage'
 lecture_med.c:567:76: error: 'MED_MAILLE' undeclared (first use in this 
 function)
 lecture_med.c: In function 'lire_cl_med':
 lecture_med.c:624:17: warning: cast from pointer to integer of different size 
 [-Wpointer-to-int-cast]
 lecture_med.c:628:12: error: 'MED_TAILLE_NOM' undeclared (first use in this 
 function)
 lecture_med.c:629:12: error: 'MED_TAILLE_PNOM' undeclared (first use in this 
 function)
 lecture_med.c:631:13: error: 'MED_TAILLE_DESC' undeclared (first use in this 
 function)
 lecture_med.c:632:3: error: unknown type name 'med_maillage'
 lecture_med.c:686:73: error: 'MED_MAILLE' undeclared (first use in this 
 function)
 lecture_med.c:686:94: error: 'MED_NOD' undeclared (first use in this function)
 make[2]: *** [exe] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/syrthes_3.4.3-dfsg1-4_lsid64.buildlog

A list of current common problems and possible solutions is 

Bug#617425: ITP: derby -- an open source relational database implemented entirely in Java

2011-10-24 Thread Bertrand Marc
Hello,

I am currently working on a package depending on derby (see [1]). Are
you succeeding in packaging derby ? Do you need any help ?

Regards,
Bertrand

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=517915



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



Bug#646461: /usr/bin/run-mailcap: cannot view HTML files

2011-10-24 Thread Brian White
run-mailcap is doing the right thing here and calling sensible-browser to
view the file.  That program is the one claiming that there is now known
browser on your system.

  Brian
  bcwh...@pobox.com
-
Treat someone as they are and they will remain that way.
Treat someone as they can be and they will become that way.


Bug#646467: stalonetray: FTBFS: debug.c:31:2: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: stalonetray
Version: 0.8.0-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 gcc -DHAVE_CONFIG_H -I.   -DFEATURE_LIST='XPM:yes DEBUG:yes KDE:yes'  -g 
 -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
 -Werror=format-security -Wall -g -c debug.c
 debug.c: In function 'print_message_to_stderr':
 debug.c:31:2: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 debug.c: In function 'print_trace_header':
 debug.c:40:15: warning: unused variable 'pid' [-Wunused-variable]
 cc1: some warnings being treated as errors
 
 make[3]: *** [debug.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/stalonetray_0.8.0-1_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.



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



Bug#646468: thoggen: FTBFS: th-app-window.c:1140:44: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: thoggen
Version: 0.7.1-1
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 gcc -DHAVE_CONFIG_H -I. -I. -I.. -pthread -I/usr/include/gtk-2.0 
 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 
 -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 
 -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 
 -I/usr/include/libglade-2.0 -I/usr/include/libxml2 -I/usr/include/cairo 
 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include   -pthread -I/usr/include/gstreamer-0.10 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2   
 -DDBUS_API_SUBJECT_TO_CHANGE -I/usr/include/dbus-1.0 
 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include -I/usr/include/hal   -pthread 
 -I/usr/include/dbus-1.0 -I/usr/lib/x86_64-linux-gnu/dbus-1.0/include 
 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include-pthread 
 -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 
 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2   
 -DDATADIR=\/usr/share/thoggen\ -DLOCALEDIR=\/usr/share/locale/\ 
 -DISO_639_XML_PATH=\/usr/share/xml/iso-codes/iso_639.xml\ 
 -DISO_639_DOMAIN=\iso_639\-Wall -g -O2 -fstack-protector 
 --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security 
 -Wall -c th-app-window.c
 th-app-window.c: In function 'app_window_check_free_disk_space':
 th-app-window.c:1140:44: error: format not a string literal and no format 
 arguments [-Werror=format-security]
 cc1: some warnings being treated as errors
 
 make[5]: *** [th-app-window.o] Error 1

The full build log is available from:
   
http://people.debian.org/~lucas/logs/2011/10/22/thoggen_0.7.1-1_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.



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



Bug#646469: torcs: FTBFS: maintexmapper.cpp:106:17: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: torcs
Version: 1.3.1-6
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 g++ -I/build/torcs-SH1Xov/torcs-1.3.1/build-tree/torcs-1.3.1/export/include 
 -I/build/torcs-SH1Xov/torcs-1.3.1/build-tree/torcs-1.3.1 -g -O2 
 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security 
 -Werror=format-security -Wall -Wall -fPIC -fno-strict-aliasing -O2 
 -DUSE_RANDR_EXT -DGL_GLEXT_PROTOTYPES -Wall -fPIC -fno-strict-aliasing -O2 
 -DUSE_RANDR_EXT -DGL_GLEXT_PROTOTYPES  -D_SVID_SOURCE -D_BSD_SOURCE -DSHM 
 -DHAVE_CONFIG_H  -c maintexmapper.cpp
 maintexmapper.cpp: In function 'void print_mat4(char*, float (*)[4])':
 maintexmapper.cpp:106:17: error: format not a string literal and no format 
 arguments [-Werror=format-security]
 maintexmapper.cpp: In function 'void init_graphics()':
 maintexmapper.cpp:223:20: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:224:20: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp: In function 'void load_params()':
 maintexmapper.cpp:550:49: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:553:45: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:555:52: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:563:77: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:566:79: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:567:79: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:568:79: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:569:78: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:570:78: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:571:78: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:572:52: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:572:52: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:590:41: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp: In function 'void init_args(int, char**)':
 maintexmapper.cpp:656:18: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:665:19: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:669:18: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 maintexmapper.cpp:685:17: warning: deprecated conversion from string constant 
 to 'char*' [-Wwrite-strings]
 cc1plus: some warnings being treated as errors
 
 make[5]: *** [maintexmapper.o] Error 1

The full build log is available from:
   http://people.debian.org/~lucas/logs/2011/10/22/torcs_1.3.1-6_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.



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



Bug#646470: t1lib: FTBFS: objects.c:960:8: error: format not a string literal and no format arguments [-Werror=format-security]

2011-10-24 Thread Mònica Ramírez Arceda
Source: t1lib
Version: 5.1.2-3
Severity: serious
Tags: wheezy sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20111022 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
  gcc -c -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
 -Wformat-security -Werror=format-security -Wall -DT1LIB_IDENT=\5.1.2\ 
 -DGLOBAL_CONFIG_DIR=\/usr/share/t1lib\ -DT1_AA_TYPE16=short 
 -DT1_AA_TYPE32=int -DT1_AA_TYPE64=long objects.c  -fPIC -DPIC -o 
 .libs/objects.o
 objects.c: In function 't1_TypeErr':
 objects.c:960:8: error: format not a string literal and no format arguments 
 [-Werror=format-security]
 cc1: some warnings being treated as errors
 
 make[3]: *** [objects.lo] Error 1

The full build log is available from:
   http://people.debian.org/~lucas/logs/2011/10/22/t1lib_5.1.2-3_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.



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



Bug#503461: libgksu l10n update

2011-10-24 Thread Gustavo Noronha Silva
On Mon, 2011-10-24 at 13:33 +0200, Michael Biebl wrote:
 I'm not really the maintainer of libgksu. I just did some housekeeping
 and keep the package building, ie. fix RC bugs only.
 
 Looking at other l10n updates, kov did handle that via upstream releases
 from what I can see, so I didn't want to divert from that.
 That said, libgksu is ttbomk pretty much dead upstream so I don't know
 how kov want's to deal with that.

Yeah, upstream would be best, but with the advent of policykit I think
the need for libgksu has been mostly covered by a better solution, so I
want to have gksu disappear in its current form ASAP. For wheezy I want
to have gksu-polkit take over to cover those remaining use cases that
did not migrate to policykit proper, though, and I plan to work on that.
But feel free to divert and update the package with the translation
meanwhile if you think it's worth it - I am sorry I neglected this patch
so much, but it may not be worth it anymore =(.

Cheers,

-- 
Gustavo Noronha Silva k...@debian.org
Debian


signature.asc
Description: This is a digitally signed message part


Bug#623438: On packaging EFLWebKit

2011-10-24 Thread Gustavo Noronha Silva
Hey,

The problem we currently have with WebKit is we have several source
packages that are essentially several copies of the same code base
(WebCore, essentially). It's hard to make them one because each port has
different release schedules and WebCore itself does not have a public
API.

Packaging EFLWebKit currently means adding yet another copy of WebCore
and its cairo/soup/gstreamer backends into the archive. I personally
don't have the time nor the motivation to try such a thing, but I can
help someone who does. It would be great to have some coordination
between QtWebKit, EFLWebKit and WebKitGTK+ regarding releases - having a
single tarball for all of those would rock.

Cheers,

-- 
Gustavo Noronha Silva k...@debian.org
Debian


signature.asc
Description: This is a digitally signed message part


Bug#646471: openoffice.org-calc: Serious sorting problem

2011-10-24 Thread Loïc Jouanique
Package: openoffice.org-calc
Version: 1:3.2.1-11+squeeze4
Severity: important
Tags: upstream

Having done some small testing, what appears to be not working are :
- Vertical sorting for words (the first one stays in place; the rest is sorted)
- Horizontal sorting for anything (doesn't sort at all : if there is only one
line, one would wish to sort the cells, not consider that it's sorting with
only one element)

Sorting's either the ascending or descending version.
The only thing that seems to work is vertical sorting for numbers ... most used
thing, through not the only one.



-- System Information:
Debian Release: 6.0.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages openoffice.org-calc depends on:
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libstlport4.6 4.6.2-7STLport C++ class library
ii  lp-solve  5.5.0.13-7 Solve (mixed integer) linear progr
ii  openoffice.or 1:3.2.1-11+squeeze4office productivity suite -- share
ii  openoffice.or 1:3.2.1-11+squeeze4office productivity suite -- arch-
ii  ure   1.6.1+OOo3.2.1-11+squeeze4 OpenOffice.org UNO runtime environ

openoffice.org-calc recommends no packages.

openoffice.org-calc suggests no packages.

Versions of packages openoffice.org-core depends on:
ii  fontconfig2.8.0-2.1  generic font configuration library
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libcurl3-gnut 7.21.0-2   Multi-protocol file transfer libra
ii  libdb4.8  4.8.30-2   Berkeley v4.8 Database Libraries [
ii  libexpat1 2.0.1-7XML parsing C library - runtime li
ii  libfreetype6  2.4.2-2.1+squeeze1 FreeType 2 font engine, shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgraphite3  1:2.3.1-0.2SILGraphite - a smart font rende
ii  libgstreamer- 0.10.30-1  GStreamer libraries from the base
ii  libgstreamer0 0.10.30-1  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libhunspell-1 1.2.11-1   spell checker and morphological an
ii  libhyphen02.5-1  ALTLinux hyphenation library - sha
ii  libice6   2:1.0.6-2  X11 Inter-Client Exchange library
ii  libicu44  4.4.1-7International Components for Unico
ii  libjpeg62 6b1-1  The Independent JPEG Group's JPEG 
ii  libmythes-1.2 2:1.2.1-1  simple thesaurus library
ii  libneon27-gnu 0.29.3-3   An HTTP and WebDAV client library 
ii  libnspr4-0d   4.8.6-1NetScape Portable Runtime Library
ii  libnss3-1d3.12.8-1+squeeze3  Network Security Service libraries
ii  librdf0   1.0.10-3   Redland Resource Description Frame
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libssl0.9.8   0.9.8o-4squeeze3   SSL shared libraries
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libstlport4.6 4.6.2-7STLport C++ class library
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxaw7   2:1.0.7-1  X11 Athena Widget library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxinerama1  2:1.1-3X11 Xinerama extension library
ii  libxml2   2.7.8.dfsg-2+squeeze1  GNOME XML library
ii  libxrandr22:1.3.0-3  X11 RandR extension library
ii  libxrender1   1:0.9.6-1  X Rendering Extension client libra
ii  libxslt1.11.1.26-6   XSLT 1.0 processing library - runt
ii  libxt61:1.0.7-1  X11 toolkit intrinsics library
ii  openoffice.or 1:3.2.1-11+squeeze4office productivity suite -- arch-
ii  ttf-opensymbo 1:3.2.1-11+squeeze4OpenSymbol TrueType font
ii  ure   1.6.1+OOo3.2.1-11+squeeze4 OpenOffice.org UNO runtime environ
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

-- no debconf information



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



Bug#646466: syrthes: FTBFS: lecture_med.c:59:27: error: 'MED_LECTURE' undeclared (first use in this function)

2011-10-24 Thread David Monfort
Hi,

Just for the record, the API of MED has changed in version 3.0 and thus is
not compatible anymore with SYRTHES 3.4 series.
AFAIK, a new version of SYRTHES (version 4) is supposed to be released later
this year (probably in december) with a proper MED 3 support.

You should probably disable MED support in this package until the next
version is released.

Kind regards,
David


2011/10/24 Mònica Ramírez mon...@probeta.net

 Source: syrthes
 Version: 3.4.3-dfsg1-4
 Severity: serious
 Tags: wheezy sid
 User: debian...@lists.debian.org
 Usertags: qa-ftbfs-20111022 qa-ftbfs
 Justification: FTBFS on amd64

 Hi,

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

 Relevant part:
  cc  -o convert2syrthes -O -DMED -I. -I/usr/include/openmpi ecriture_syr.c
 lecture_neu.c lecture_msh.c lecture_med.c convert2syrthes.c -lmedC
  lecture_med.c: In function 'ouvrir_med':
  lecture_med.c:59:27: error: 'MED_LECTURE' undeclared (first use in this
 function)
  lecture_med.c:59:27: note: each undeclared identifier is reported only
 once for each function it appears in
  lecture_med.c:60:29: warning: cast to pointer from integer of different
 size [-Wint-to-pointer-cast]
  lecture_med.c: In function 'fermer_med':
  lecture_med.c:127:18: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c: In function 'lire_entete_med':
  lecture_med.c:139:17: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c:143:12: error: 'MED_TAILLE_NOM' undeclared (first use in
 this function)
  lecture_med.c:144:13: error: 'MED_TAILLE_DESC' undeclared (first use in
 this function)
  lecture_med.c:145:3: error: unknown type name 'med_maillage'
  lecture_med.c:170:15: error: 'MED_NON_STRUCTURE' undeclared (first use in
 this function)
  lecture_med.c:176:45: error: 'MED_COOR' undeclared (first use in this
 function)
  lecture_med.c:176:54: error: 'MED_NOEUD' undeclared (first use in this
 function)
  lecture_med.c:184:36: error: 'MED_CONN' undeclared (first use in this
 function)
  lecture_med.c:184:45: error: 'MED_MAILLE' undeclared (first use in this
 function)
  lecture_med.c:278:28: error: 'MED_TAILLE_LNOM' undeclared (first use in
 this function)
  lecture_med.c: In function 'lire_coord_med':
  lecture_med.c:309:17: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c:313:12: error: 'MED_TAILLE_NOM' undeclared (first use in
 this function)
  lecture_med.c:318:17: error: 'MED_TAILLE_PNOM' undeclared (first use in
 this function)
  lecture_med.c:323:3: error: unknown type name 'med_repere'
  lecture_med.c:326:13: error: 'MED_TAILLE_DESC' undeclared (first use in
 this function)
  lecture_med.c:327:3: error: unknown type name 'med_maillage'
  lecture_med.c:338:54: error: 'MED_ALL' undeclared (first use in this
 function)
  lecture_med.c:344:14: error: 'MED_CART' undeclared (first use in this
 function)
  lecture_med.c: In function 'lire_noeuds_colores_med':
  lecture_med.c:394:17: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c:395:12: error: 'MED_TAILLE_NOM' undeclared (first use in
 this function)
  lecture_med.c:396:13: error: 'MED_TAILLE_DESC' undeclared (first use in
 this function)
  lecture_med.c:397:3: error: unknown type name 'med_maillage'
  lecture_med.c:415:70: error: 'MED_NOEUD' undeclared (first use in this
 function)
  lecture_med.c: In function 'lire_elem_med':
  lecture_med.c:427:17: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c:431:12: error: 'MED_TAILLE_NOM' undeclared (first use in
 this function)
  lecture_med.c:432:12: error: 'MED_TAILLE_PNOM' undeclared (first use in
 this function)
  lecture_med.c:434:13: error: 'MED_TAILLE_DESC' undeclared (first use in
 this function)
  lecture_med.c:435:3: error: unknown type name 'med_maillage'
  lecture_med.c:457:73: error: 'MED_MAILLE' undeclared (first use in this
 function)
  lecture_med.c:457:96: error: 'MED_NOD' undeclared (first use in this
 function)
  lecture_med.c: In function 'lire_zones_med':
  lecture_med.c:538:17: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c:542:12: error: 'MED_TAILLE_NOM' undeclared (first use in
 this function)
  lecture_med.c:543:13: error: 'MED_TAILLE_DESC' undeclared (first use in
 this function)
  lecture_med.c:544:3: error: unknown type name 'med_maillage'
  lecture_med.c:567:76: error: 'MED_MAILLE' undeclared (first use in this
 function)
  lecture_med.c: In function 'lire_cl_med':
  lecture_med.c:624:17: warning: cast from pointer to integer of different
 size [-Wpointer-to-int-cast]
  lecture_med.c:628:12: error: 'MED_TAILLE_NOM' undeclared (first use in
 this function)
  lecture_med.c:629:12: error: 'MED_TAILLE_PNOM' undeclared (first use in
 this function)
  lecture_med.c:631:13: error: 'MED_TAILLE_DESC' undeclared (first use in
 this 

Bug#646472: remmina-plugin-vnc: Crash vith new version of libvncserver0

2011-10-24 Thread Jean-Jacques Doti
Package: remmina-plugin-vnc
Version: 0.9.2-3
Severity: important

Since last update of libvncserver0, remmina crashes  when I try to connect to a
VNC server. I think this is someting related to bug #644455.

Rebuilding remmina-plugin-vnc from the sources (remmina-plugins) solves the
problem.



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 3.0.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages remmina-plugin-vnc depends on:
ii  libatk1.0-0  2.2.0-2   
ii  libc62.13-21   
ii  libcairo21.10.2-6.1
ii  libfontconfig1   2.8.0-3   
ii  libfreetype6 2.4.7-1   
ii  libgdk-pixbuf2.0-0   2.24.0-1  
ii  libglib2.0-0 2.28.8-1  
ii  libgnutls26  2.12.12-1 
ii  libgtk2.0-0  2.24.7-1  
ii  libjpeg8 8c-2  
ii  libpango1.0-01.29.4-2  
ii  libvncserver00.9.8.1-1 
ii  remmina  0.9.3-3   
ii  remmina-plugin-data  0.9.2-3   
ii  zlib1g   1:1.2.5.dfsg-1

remmina-plugin-vnc recommends no packages.

remmina-plugin-vnc suggests no packages.

-- no debconf information



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



Bug#503461: libgksu l10n update

2011-10-24 Thread Hideki Yamane
Hi,

 Thank you for your reply.
 # Um, sorry I've drunk beer too much ;)

On Mon, 24 Oct 2011 13:33:57 +0200
Michael Biebl bi...@debian.org wrote:
 I don't see how Ubuntu is relevant here, tbh.
 That said I don't see them shipping this patch either.

 They have language-pack-xx package, it contains translation and overwrite 
 existing applications without updating them. It's Ubuntu specific package.
 So, Ubuntu users can see localized message but Debian users can't. It seems 
 to be useful for users, but I think this approach is a bit problematic, and 
 prefer to update upstream source or package itself.


   Please consider to apply it (or should I do NMU for that?)
 
 I'm not really the maintainer of libgksu. I just did some housekeeping
 and keep the package building, ie. fix RC bugs only.
 
 Looking at other l10n updates, kov did handle that via upstream releases
 from what I can see, so I didn't want to divert from that.
 That said, libgksu is ttbomk pretty much dead upstream so I don't know
 how kov want's to deal with that.
 
 kov?

 please help to close 3 years old bug report.


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane



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



  1   2   3   4   >