Bug#660113: rhythmbox: GLib-GObject-CRITICAL **: g_value_get_uint: assertion `G_VALUE_HOLDS_UINT (value)' failed

2012-10-06 Thread Paul Menzel
Control: forwarded -1 https://bugzilla.gnome.org/show_bug.cgi?id=685551
Control: found -1 2.97-2.1


Dear शिरीष,


thank you for taking the time to writing the report.


Am Donnerstag, den 16.02.2012, 19:50 +0530 schrieb shirish शिरीष:

[…]

 While rhythmbox works I get this error every time I play it.
 
 (rhythmbox:3620): GLib-GObject-CRITICAL **: g_value_get_uint: assertion 
 `G_VALUE_HOLDS_UINT (value)' failed

(Please always make sure to *not* wrap pasted lines. Gmail does not
support that, so please use a different program then. I corrected this
for now.)

I am seeing the same error with self-built Rhythmbox 2.98 and created
ticket 685551 in the GNOME Bugzilla [1]. The Debian GNOME maintainers
are unfortunately understaffed and therefore have no time to take care
of such issues. So users can help by forwarding such issues upstream and
in this case we are lucky as the upstream developer is quite active and
responsive.

Could you please subscribe there and add the following information?

$ sudo aptitude install rhythmbox-dbg
$ gdb -q rhythmbox
(gdb) set logging on /tmp/2012-month-day--rhythmbox.bt
(gdb) run -D --debug

[ Do the stuff you do to get the error. If an unrelated error
shows up, press »c« to continue. When the “correct” error shows
up do the following. ]

(gdb) t a a bt f
(gdb) c

[ Quit Rhythmbox normally using the menu or Ctrl + q. ]

Then attach the file `/tmp/2012-month-day--rhythmbox.bt` to the upstream
report.

 Traceback (most recent call last):
   File /usr/lib/rhythmbox/plugins/artsearch/local.py, line 100, 
 in_enum_dir_cb
 self.finished(results)
   File /usr/lib/rhythmbox/plugins/artsearch/local.py, line 76, in finished
 self.store.store_uri(nkey. RB.ExtDBSourceType.USER, uri)
 AttributeError: 'ExtDBKey' object has no attribute 'RB'
 Traceback (most recent call last):
   File /usr/lib/rhythmbox/plugins/artsearch/local.py, line 117, in 
 _enum_dir_cb
 self.finished(results)
   File /usr/lib/rhythmbox/plugins/artsearch/local.py, line 76, in finished
 self.store.store_uri(nkey. RB.ExtDBSourceType.USER, uri)
 AttributeError: 'ExtDBKey' object has no attribute 'RB'

I believe this is a separate issue. Could you please submit a separate
for this if it is still reproducible with Rhythmbox 2.97?

 While it works and responds while quitting I don't understand why it
 shows these errors on the CLI.

Hopefully, we will find out! ;-)


Thanks,

Paul


[1] https://bugzilla.gnome.org/show_bug.cgi?id=685551


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


Bug#689765: unblock: libio-socket-ssl-perl/1.76-2

2012-10-06 Thread Salvatore Bonaccorso
Package: release.debian.org
User: release.debian@packages.debian.org
Usertags: unblock
Severity: normal

Dear Release-Team

I have prepared an update for libio-socket-ssl-perl 1.76-1 which is
found in wheezy and unstable but not yet uploaded. 1.77 was released
upstream to fix[1].

 [1]: https://rt.cpan.org/Public/Bug/Display.html?id=79916

Upstream RT#79916 is marked 'Serverity Critical'. As comment in SSL.pm
we can read, before the _update_peer subroutine:

# called if PeerAddr is not set in ${*$self}{'_SSL_arguments'}
# this can be the case if start_SSL is called with a normal IO::Socket::INET
# so that PeerAddr|PeerPort are not set from args

The following script demostrates the problem, but is not exactly what
the comment suggest. I was not able to reproduce a better example.
Daniel Kahn Gillmor gave me some quidance on #debian-perl.

cut-cut-cut-cut-cut-cut-
#!/usr/bin/perl

use strict;
use warnings;

use IO::Socket::SSL;
use IO::Socket::INET6;

my $sock = IO::Socket::INET6-new(
PeerAddr = '127.0.0.1',
PeerPort = 5556,
Type = SOCK_STREAM,
) or die Cannot construct socket - $@;
use Data::Show;
show $sock;

my $upgraded_sock = IO::Socket::SSL-start_SSL($sock);
use Data::Show;
show $upgraded_sock;
cut-cut-cut-cut-cut-cut-

With PeerAddr set to 127.0.0.1 you get for upgraded_sock:

cut-cut-cut-cut-cut-cut-
==(  $upgraded_sock  )==[ 'test.pl', line 19 ]==

do {
  require Symbol;
  my $a = bless(Symbol::gensym(), IO::Socket::SSL);
  *{$a} = {
_SSL_arguments= {
   PeerAddr   = 127.0.0.1,
   PeerPort   = 5556,
   Proto  = tcp,
   SSL_cert_file  = 
certs/client-cert.pem,
   SSL_check_crl  = 0,
   SSL_honor_cipher_order = 0,
   SSL_key_file   = 
certs/client-key.pem,
   SSL_server = 0,
   SSL_use_cert   = 0,
   SSL_verify_mode= 0,
   SSL_version= SSLv23:!SSLv2,
 },
_SSL_ctx  = bless({ context = 27267440 }, 
IO::Socket::SSL::SSL_Context),
_SSL_fileno   = 3,
_SSL_ioclass_upgraded = IO::Socket::INET6,
_SSL_object   = 27913664,
_SSL_opened   = 1,
io_socket_domain  = 2,
io_socket_proto   = 6,
io_socket_timeout = undef,
io_socket_type= 1,
  };
  $a;
}
cut-cut-cut-cut-cut-cut-

but for '::1' you see that PeerAddr is missing from _SSL_arguments:

cut-cut-cut-cut-cut-cut-
==(  $upgraded_sock  )==[ 'test.pl', line 19 ]==

do {
  require Symbol;
  my $a = bless(Symbol::gensym(), IO::Socket::SSL);
  *{$a} = {
_SSL_arguments= {
   Proto  = tcp,
   SSL_cert_file  = 
certs/client-cert.pem,
   SSL_check_crl  = 0,
   SSL_honor_cipher_order = 0,
   SSL_key_file   = 
certs/client-key.pem,
   SSL_server = 0,
   SSL_use_cert   = 0,
   SSL_verify_mode= 0,
   SSL_version= SSLv23:!SSLv2,
 },
_SSL_ctx  = bless({ context = 14291248 }, 
IO::Socket::SSL::SSL_Context),
_SSL_fileno   = 3,
_SSL_ioclass_upgraded = IO::Socket::INET6,
_SSL_object   = 14937456,
_SSL_opened   = 1,
io_socket_domain  = 10,
io_socket_proto   = 6,
io_socket_timeout = undef,
io_socket_type= 1,
  };
  $a;
}
cut-cut-cut-cut-cut-cut-

but with the patched IO::Socket::SSL:

cut-cut-cut-cut-cut-cut-
==(  $upgraded_sock  )==[ 'test.pl', line 19 ]==

do {
  require Symbol;
  my $a = bless(Symbol::gensym(), IO::Socket::SSL);
  *{$a} = {
_SSL_arguments= {
   PeerAddr   = ::1,
   PeerPort   = 5556,
  

Bug#677201: Rather bug in libwine-unstable

2012-10-06 Thread Adrian Lang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

libwine:i386 provides the name libwine; maybe a similar solution would
fix the issue for libwine-unstable:i386.

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

iF4EAREIAAYFAlBvzPsACgkQn7ywdhTyHh7QKAD9GRnq09vi1fdZwX8MaTklxfhm
y4P1jPf8ZYT7r4vLR7gA/20aUVJ37gMRmHR4G+O+T0Q2Y3SR8R6RHzw9w1WX+nUO
=Wpt2
-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#675379: CVE-request

2012-10-06 Thread Henri Salo
CVE-request for this issue in here: 
http://www.openwall.com/lists/oss-security/2012/10/05/6

- Henri Salo


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



Bug#689766: gnome-keyring asks same SSH passwort several times

2012-10-06 Thread Joachim Breitner
Package: gnome-keyring
Version: 3.4.1-5
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

when several instances of ssh request the same not yet unlocked key
before the password is entered, e.g. when starting several sessions in
mssh at the same time, gnome-keyring will show many prompts for the same
SSH key.

It should, when requested to unlock a key that is not yet unlocked but
where the password prompt is currently open, just wait for this prompt
to finish and use the resulting key, instead of prompting again.

Thanks,
Joachim

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

Kernel: Linux 3.5-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-keyring depends on:
ii  dbus-x11 1.6.8-1
ii  dconf-gsettings-backend [gsettings-backend]  0.12.1-2
ii  gcr  3.4.1-3
ii  libc62.13-35
ii  libcap-ng0   0.6.6-2
ii  libcap2-bin  1:2.22-1.2
ii  libdbus-1-3  1.6.8-1
ii  libgck-1-0   3.4.1-3
ii  libgcr-3-1   3.4.1-3
ii  libgcrypt11  1.5.0-3
ii  libglib2.0-0 2.33.12+really2.32.4-1
ii  libgtk-3-0   3.4.2-4

Versions of packages gnome-keyring recommends:
ii  libpam-gnome-keyring  3.4.1-5

gnome-keyring suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAlBv3MIACgkQ9ijrk0dDIGzUSQCfZenvU4zYw4MWIlIgkqFIaURG
ojIAn1DGQQaN5YvvvqsngwIx+RI1Lx1L
=KKMz
-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#689336: closed by Michael Prokop m...@debian.org (Bug#689336: fixed in initramfs-tools 0.109)

2012-10-06 Thread Samuel Hym
Hi all,

At least for the record, I might mention that in my previous
configuration without console-setup installed, the configuration was
saying KEYMAP=n and still 0.107 was adding the keymap in the initrd.
Admittedly this was a strange behaviour, but the upgrading 0.107 to
the new 0.109 would have failed just the same.

Cheers
Sam


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



Bug#689746: base: GUI switches from tty7, tty8 and tty9

2012-10-06 Thread Holger Levsen
tags 689746 +moreinfo
thanks

On Freitag, 5. Oktober 2012, evan wrote:
 After logging into the GUI on tty7 and logging out the GUI switches to
 tty8. After logging into the GUI on tty8 and logging out the GUI switches
 to tty9. After logging into the GUI on tty9 and logging out the GUI
 switches to tty8. The GUI switches from tty8 to tty9 and vise versa after
 logging out. Thank you for providing and maintaining debian.

Evan, which GUI? which window-manager? Debian has tons of each...


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



Bug#688772: gnome Depends network-manager-gnome

2012-10-06 Thread Josselin Mouette
Le vendredi 05 octobre 2012 à 22:07 -0600, Bdale Garbee a écrit : 
 I personally believe that metapackages should be primarily populated
 with Recommends, with Depends largely reserved for actual technical
 dependencies between real packages.

This point is probably worth discussing because it comes up very often.

I don’t think it is reasonable to do so until metapackages are treated
differently by APT.
1. Removing them should not mark their dependencies autoremove.
2. A major upgrade (which is something that needs defining, especially
for testing/unstable users) should try to reinstall all dependencies or
ask, one way or another, whether the administrator still wants to
exclude them.
Basically this means going back to a tasks system from the current
metapackages situation (whether the implementation is based on packages
or not).

 This is consistent with my belief
 that we should try to empower our users to be able to exercise a
 reasonable amount of choice in configuring and operating their Debian
 systems.

Most of the time packages get removed, it is due to upgrade problems,
with APT not choosing the best solution. Strict dependencies alleviate
most of these problems.

Maybe you are unfamiliar with what clueless newbies do with their
systems. You want to empower users, that’s fine; but GNOME is for all
users. Those who have the technical knowledge to handle their packages
manually should also know how to make it happen without metapackages.

 Thus, my bias is to believe that when there's no strong
 technical need, a Recommends is the appropriate choice, 

The purpose of a metapackage is to install all packages related to a
certain environment or functionality class. Let us not forget that when
choosing technical solutions.

 and any change
 From a Recommends to Depends causes me to want to understand why the
 change was made and what we hope to gain from it.

What has changed since lenny is that NM has been rearchitectured and is
easy to disable. You cannot even treat it like it was the same piece of
software.
Therefore, this change was supposed to happen in squeeze, but we already
delayed it at that time because of upgrades from lenny, and because the
configuration format for system connections was still new and thus
unfamiliar to many.
If we delay it once again, what do we do for jessie?

Cheers,
-- 
 .''`.  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#689767: ruby-eb: search method returns invalid characters \000\000\000\000 at the top

2012-10-06 Thread TODOROKI Shin-ichi
Package: ruby-eb
Version: 2.6-2
Severity: important

Dear Maintainer,

  When I run /usr/share/doc/ruby-eb/examples/test.rb through ruby1.8 after
some modification
for my environment, the first four characters of each output are invisible,
\000\000\000\000, while /usr/bin/eblook runs normally.

This appears on my wheezy PC (3.2.0-3-amd64), but doesn't appear on my squeeze
PC.

The related packages are the following.
ii  ruby-eb 2.6-2   amd64EB library interface for
the Ruby
ii  eblook  1:1.6.1-12  amd64electronic
dictionary search command using EB Library




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

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

Versions of packages ruby-eb depends on:
ii  libc6   2.13-35
ii  libeb16 4.4.3-6
ii  libruby1.8  1.8.7.358-4
ii  zlib1g  1:1.2.7.dfsg-13

ruby-eb recommends no packages.

ruby-eb 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#680034: testing

2012-10-06 Thread Henri Salo
I haven't previously used this package but I am happy to test this after 
upload. I hope new upload also fixed open security issues.

- Henri Salo


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



Bug#689725: alsa-utils: Notable sound delay after pausing the playback

2012-10-06 Thread Frank

On 10/06/2012 01:04 AM, Elimar Riesebieter wrote:

Package: alsa-utils
Version: 1.0.25-3
Severity: important

Dear Maintainer,

When I pause the sound player, whatever the player is, say, mplayer, vlc,
cmus, etc, the sound is ongoing about about 0.2 second before it stops.

This is not reproducible for me.

2 tenth of one second. Uuuh, that is not that important ;-)

I have some friends suffering the same problem. Um, mostly, two tenths 
of one second is not that important (for example, a good music is 
euphonious whether two tenths is missing), but it affects my 
transcription. Well, anyway, I should concede that I chose the wrong level.

Of course not. Please just purge alsa-utils and try again


==
Some outputs of mplayer2:
==

AO: [pulse] Init failed: Connection refused
AO: [alsa] 48000Hz 2ch s16le (2 bytes per sample)
[AO_ALSA] Unable to find simple control 'Master',0.

Your soundcard doesn't seem to be configured very well. Please
delete /var/lib/alsa/asound.state, restart alsa and try again. This
works only if alsa-utils is installed.
Hum, I purged alsa-utils and reinstalled, deleted 
/var/lib/alsa/asound.state and ran

# service alsa-utils restart
But unable to find ... remained.

Postscript: my USB sound card is ugly. I remember somebody (maybe you) 
told me to edit /etc/modprobe.d/alsa-base.conf:

# options snd-usb-audio index=-2
I don't know whether it affects.

Elimar

Sincerely, thanks!
Frank


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



Bug#689768: linux-image-3.2.0-3-amd64: [drm] MTRR allocation failed. Graphics performance may suffer.

2012-10-06 Thread Mathieu Malaterre
Package: src:linux
Version: 3.2.23-1
Severity: important

Hi,

I have installed wheezy on a new DELL/VOSTRO 260 desktop. dmesg currently 
states that:

[8.359238] i915 :00:02.0: PCI INT A - GSI 16 (level, low) - IRQ 16
[8.359245] i915 :00:02.0: setting latency timer to 64
[8.402849] mtrr: type mismatch for c000,1000 old: write-back new: 
write-combining
[8.402851] [drm] MTRR allocation failed.  Graphics performance may suffer.
[8.403049] i915 :00:02.0: irq 45 for MSI/MSI-X
[8.403052] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[8.403053] [drm] Driver supports precise vblank timestamp query.

BIOS is:

$ lshw
(...)
 *-firmware
  description: BIOS
  vendor: Dell Inc.
  physical id: 1
  version: A04
  date: 11/21/2011
  size: 64KiB
  capacity: 4032KiB
  capabilities: pci upgrade shadowing cdboot bootselect socketedrom edd 
int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int9keyboard 
int14serial int17printer acpi usb biosbootspecification


-- Package-specific info:
** Version:
Linux version 3.2.0-3-amd64 (Debian 3.2.23-1) (debian-ker...@lists.debian.org) 
(gcc version 4.6.3 (Debian 4.6.3-8) ) #1 SMP Mon Jul 23 02:45:17 UTC 2012

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-3-amd64 
root=UUID=8f3bcdf0-2614-4620-9c27-f1727b1711d4 ro quiet

** Not tainted

** Kernel log:
[96322.374875] NMI watchdog enabled, takes one hw-pmu counter.
[96322.375125] CPU2 is up
[96322.375477] Booting Node 0 Processor 3 APIC 0x6
[96322.375478] smpboot cpu 3: start_ip = 97000
[96322.386501] Calibrating delay loop (skipped) already calibrated this CPU
[96322.406877] NMI watchdog enabled, takes one hw-pmu counter.
[96322.407199] CPU3 is up
[96322.409648] ACPI: Waking up from system sleep state S3
[96322.409995] i915 :00:02.0: restoring config space at offset 0xf (was 
0x100, writing 0x10b)
[96322.41] i915 :00:02.0: restoring config space at offset 0x1 (was 
0x96, writing 0x900407)
[96322.410016] pci :00:16.0: restoring config space at offset 0xf (was 
0x100, writing 0x10a)
[96322.410028] pci :00:16.0: restoring config space at offset 0x4 (was 
0xfed0e004, writing 0xfe507004)
[96322.410050] ehci_hcd :00:1a.0: restoring config space at offset 0xf (was 
0x100, writing 0x10a)
[96322.410065] ehci_hcd :00:1a.0: restoring config space at offset 0x4 (was 
0x0, writing 0xfe506000)
[96322.410071] ehci_hcd :00:1a.0: restoring config space at offset 0x1 (was 
0x290, writing 0x292)
[96322.410086] ehci_hcd :00:1a.0: wake-up capability disabled by ACPI
[96322.410090] ehci_hcd :00:1a.0: PME# disabled
[96322.410102] snd_hda_intel :00:1b.0: restoring config space at offset 0xf 
(was 0x100, writing 0x105)
[96322.410115] snd_hda_intel :00:1b.0: restoring config space at offset 0x3 
(was 0x0, writing 0x10)
[96322.410120] snd_hda_intel :00:1b.0: restoring config space at offset 0x1 
(was 0x16, writing 0x12)
[96322.410144] pcieport :00:1c.0: restoring config space at offset 0xf (was 
0x100, writing 0x10010a)
[96322.410152] pcieport :00:1c.0: restoring config space at offset 0x9 (was 
0x10001, writing 0x1fff1)
[96322.410156] pcieport :00:1c.0: restoring config space at offset 0x8 (was 
0x0, writing 0xfff0)
[96322.410160] pcieport :00:1c.0: restoring config space at offset 0x7 (was 
0x2000, writing 0x20f0)
[96322.410167] pcieport :00:1c.0: restoring config space at offset 0x3 (was 
0x81, writing 0x810010)
[96322.410171] pcieport :00:1c.0: restoring config space at offset 0x1 (was 
0x10, writing 0x100407)
[96322.410209] pcieport :00:1c.3: restoring config space at offset 0xf (was 
0x400, writing 0x100405)
[96322.410218] pcieport :00:1c.3: restoring config space at offset 0x9 (was 
0x10001, writing 0x1fff1)
[96322.410221] pcieport :00:1c.3: restoring config space at offset 0x8 (was 
0x0, writing 0xfe40fe40)
[96322.410225] pcieport :00:1c.3: restoring config space at offset 0x7 (was 
0x2000, writing 0x20f0)
[96322.410232] pcieport :00:1c.3: restoring config space at offset 0x3 (was 
0x81, writing 0x810010)
[96322.410237] pcieport :00:1c.3: restoring config space at offset 0x1 (was 
0x10, writing 0x100407)
[96322.410273] pcieport :00:1c.4: restoring config space at offset 0xf (was 
0x100, writing 0x10010a)
[96322.410281] pcieport :00:1c.4: restoring config space at offset 0x9 (was 
0x10001, writing 0xd001d001)
[96322.410285] pcieport :00:1c.4: restoring config space at offset 0x8 (was 
0x0, writing 0xfff0)
[96322.410289] pcieport :00:1c.4: restoring config space at offset 0x7 (was 
0x2000, writing 0xe0e0)
[96322.410295] pcieport :00:1c.4: restoring config space at offset 0x3 (was 
0x81, writing 0x810010)
[96322.410300] pcieport :00:1c.4: restoring config space at offset 0x1 (was 
0x10, writing 0x100407)
[96322.410334] ehci_hcd 

Bug#689768:

2012-10-06 Thread Mathieu Malaterre
If that helps:


$ cat /proc/mtrr
reg00: base=0x0 (0MB), size= 8192MB, count=1: write-back
reg01: base=0x0bb80 ( 3000MB), size=8MB, count=1: uncachable
reg02: base=0x0bc00 ( 3008MB), size=   64MB, count=1: uncachable
reg03: base=0x0c000 ( 3072MB), size= 1024MB, count=1: uncachable
reg04: base=0x1bfe0 ( 7166MB), size=2MB, count=1: uncachable
reg05: base=0x1c000 ( 7168MB), size= 1024MB, count=1: uncachable


$ cat /proc/iomem
- : reserved
0001-0009bfff : System RAM
0009c000-0009 : reserved
000a-000b : PCI Bus :00
000c-000d : PCI Bus :00
  000c-000cd9ff : Video ROM
000e-000f : reserved
  000f-000f : System ROM
0010-1fff : System RAM
  0100-01354585 : Kernel code
  01354586-0169367f : Kernel data
  01727000-01805fff : Kernel bss
2000-201f : reserved
2020-3fff : System RAM
4000-401f : reserved
4020-bad88fff : System RAM
bad89000-badd1fff : ACPI Non-volatile Storage
badd2000-badd9fff : ACPI Tables
badda000-badfdfff : reserved
badfe000-badfefff : System RAM
badff000-bae0efff : reserved
bae0f000-bae1cfff : ACPI Non-volatile Storage
bae1d000-bae40fff : reserved
bae41000-bae83fff : ACPI Non-volatile Storage
bae84000-baff : System RAM
bb00-bb7f : RAM buffer
bb80-bf9f : reserved
bfa0- : PCI Bus :00
  c000-cfff : :00:02.0
  d000-d00f : PCI Bus :03
d000-d0003fff : :03:00.0
  d000-d0003fff : r8169
d0004000-d0004fff : :03:00.0
  d0004000-d0004fff : r8169
  e000-efff : PCI MMCONFIG  [bus 00-ff]
e000-efff : pnp 00:01
  fe00-fe3f : :00:02.0
  fe40-fe4f : PCI Bus :02
fe40-fe40 : :02:00.0
  fe40-fe40 : ath9k
  fe50-fe503fff : :00:1b.0
fe50-fe503fff : ICH HD audio
  fe504000-fe5040ff : :00:1f.3
  fe505000-fe5053ff : :00:1d.0
fe505000-fe5053ff : ehci_hcd
  fe506000-fe5063ff : :00:1a.0
fe506000-fe5063ff : ehci_hcd
  fe507000-fe50700f : :00:16.0
  fec0-fec003ff : IOAPIC 0
  fed0-fed003ff : HPET 0
  fed08000-fed08fff : pnp 00:08
  fed1-fed19fff : pnp 00:01
  fed1c000-fed1 : reserved
fed1c000-fed1 : pnp 00:08
  fed2-fed3 : pnp 00:01
  fed9-fed93fff : pnp 00:01
  fee0-fee0 : pnp 00:01
fee0-fee00fff : Local APIC
  ff00- : reserved
ff00- : pnp 00:08
1-1bfdf : System RAM
1bfe0-1bfff : RAM buffer


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



Bug#689769: Ample ships a /var/run/ample folder: Policy 9.3.2

2012-10-06 Thread Thomas Goirand
Package: ample
Version: 0.5.7-6
Severity: serious

/var/run may be a temporary filesystem, so any directories or files needed
/there must be created dynamically at boot time.

Refer to Debian Policy Manual section 9.3.2 (Writing the scripts) for
details.

Cheers,

Thomas Goirand (zigo)


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



Bug#689770: pre-unblock: fbreader/0.12.10dfsg-8

2012-10-06 Thread Eugene V. Lyubimkin
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please pre-approve the attached patch for the package fbreader.

See the background at #689338 and [1].


[1] https://github.com/geometer/FBReader/issues/224

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

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff --git a/zlibrary/core/src/filesystem/ZLInputStreamDecorator.cpp b/zlibrary/core/src/filesystem/ZLInputStreamDecorator.cpp
index b44cf9a..b0b65b9 100644
--- a/zlibrary/core/src/filesystem/ZLInputStreamDecorator.cpp
+++ b/zlibrary/core/src/filesystem/ZLInputStreamDecorator.cpp
@@ -24,7 +24,10 @@ ZLInputStreamDecorator::ZLInputStreamDecorator(shared_ptrZLInputStream decorat
 
 bool ZLInputStreamDecorator::open() {
 	bool result = myBaseStream-open();
-	myBaseOffset = myBaseStream-offset();
+	if (result)
+	{
+		myBaseOffset = myBaseStream-offset();
+	}
 	return result;
 }
 


Bug#689770: pre-unblock: fbreader/0.12.10dfsg-8

2012-10-06 Thread Niels Thykier
Control: tags -1 confirmed

On 2012-10-06 10:05, Eugene V. Lyubimkin wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 Please pre-approve the attached patch for the package fbreader.
 
 See the background at #689338 and [1].
 
 
 [1] https://github.com/geometer/FBReader/issues/224
 
 [...]

Looks reasonable, please go ahead.  Please ping us once the patched
fbreader has been in sid for a couple of days.

~Niels


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



Bug#689771: dancer-ircd uses echo in init.d script

2012-10-06 Thread Thomas Goirand
Package: dancer-ircd
Version: 1.0.36
Severity: serious

dancer-ircd should be using the lsb function in its init script.
Instead, it's using echo. Please fix this and use log_daemon_msg and
friends instead.

Thomas Goirand (zigo)

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

Kernel: Linux 3.2.0-3-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


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



Bug#660113: GLib-GObject-CRITICAL **: g_value_get_uint: assertion `G_VALUE_HOLDS_UINT (value)' failed

2012-10-06 Thread Paul Menzel
Control: reassign -1 python-gi 3.2.2-1
Control: retitle -1 GLib-GObject-CRITICAL **: g_value_get_uint: assertion 
`G_VALUE_HOLDS_UINT (value)' failed
Control: affects -1 rhythmbox
Control: severity -1 minor


Dear Debian folks,


Am Samstag, den 06.10.2012, 08:11 +0200 schrieb Paul Menzel:

[…]

 Am Donnerstag, den 16.02.2012, 19:50 +0530 schrieb shirish शिरीष:
 
 […]
 
  While rhythmbox works I get this error every time I play it.
  
  (rhythmbox:3620): GLib-GObject-CRITICAL **: g_value_get_uint: assertion 
  `G_VALUE_HOLDS_UINT (value)' failed

[…]

  While it works and responds while quitting I don't understand why it
  shows these errors on the CLI.
 
 Hopefully, we will find out! ;-)

The upstream developer Matthew responded in the upstream report [1] that
this is a harmless warning and a bug in pygobject. I am therefore
reassigning this report and update the metadata.


Thanks,

Paul


 [1] https://bugzilla.gnome.org/show_bug.cgi?id=685551


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


Bug#689747: autofs won't install with old autofs5 installation

2012-10-06 Thread Michael Tokarev
Control: tags -1 + moreinfo unreproducible

On 06.10.2012 00:41, David Starner wrote:
 Package: autofs
 Version: 5.0.7-1
 Severity: serious
 
 $ sudo apt-get install autofs udev
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 udev is already the newest version.
 The following NEW packages will be installed:
   autofs

 0 upgraded, 1 newly installed, 0 to remove and 7 not upgraded.

Now this is interesting.  autofs 5.0.7 is declared as breaking
autofs5  5.0.6.  Yes when you ask to install new autofs package,
apt does not offer to update autofs5 at the same time.  Yet you
said you have old autofs5 install in the subject.  However, later
you mention that there's NO autofs5 package installed, according
to the dpkg -l output -- I think it was installed in the past but
not purged.

Now, I wonder which version of old autofs5 did you have installed.
Because when I do that (install+remove) with squeeze version of
autofs5, I can install sid version of autofs just fine.

Can it be that you had lenny version of autofs5 maybe, or even
something older?

 Need to get 720 kB of archives.
 After this operation, 1,649 kB of additional disk space will be used.
 Do you want to continue [Y/n]? y
 Get:1 http://ftp.us.debian.org/debian/ unstable/main autofs amd64
 5.0.7-1 [720 kB]
 Fetched 720 kB in 1s (494 kB/s)
 Selecting previously unselected package autofs.
 (Reading database ... 278805 files and directories currently installed.)
 Unpacking autofs (from .../autofs_5.0.7-1_amd64.deb) ...
 Processing triggers for man-db ...
 fopen: Permission denied
 Setting up autofs (5.0.7-1) ...
 Installing new version of config file /etc/init.d/autofs ...
 ucfr: Attempt from package autofs  to take /etc/auto.master away from
 package autofs5
 ucfr: Aborting.

This is the following code:

  # transfer ownership from old autofs5 package
  case $(ucfq -w /etc/default/autofs) in
*:autofs5:*) force=--force ;;
*) force= ;;
  esac
  for map in master net misc smb; do
ucfr $force autofs /etc/auto.$map
ucf /usr/share/autofs/conffiles/auto.$map /etc/auto.$map
  done
  ucfr $force autofs /etc/default/autofs
  ucf /usr/share/autofs/conffiles/default/autofs /etc/default/autofs

we force-transfer ownership only when it currently belongs
to autofs5.  When old autofs5 is installed, the first ucfq
query above on my system returns this:

 $ ucfq -w /etc/default/autofs
 /etc/default/autofs:autofs5:Yes:No

so it properly uses --force when default/autofs is registered
to autofs5.  But in your case, apparently, default/autofs is
not registered to autofs5, but /etc/auto.master is, and it
stays first on the list to transfer ownership.  Do you know
if there was a version of old autofs which did not register
/etc/default/autofs but registered /etc/auto.master?  Or
maybe it had /etc/default/autofs5 instead of default/autofs?

Please show me the output of

 grep autofs /var/lib/ucf/registry

Meanwhile I'll try to make this code fragment more robust
by querying ownership for every file it touches instead of
just one.

Thank you!

/mjt

 dpkg: error processing autofs (--configure):
  subprocess installed post-installation script returned error exit status 4
 Errors were encountered while processing:
  autofs
 E: Sub-process /usr/bin/dpkg returned an error code (1)
 
 $ dpkg -l autofs\*
 Desired=Unknown/Install/Remove/Purge/Hold
 | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
 |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
 ||/ Name Version
 Architecture  Description
 +++--=-=-=
 iF  autofs   5.0.7-1   amd64
   kernel-based automounter for Linux
 un  autofs5  none
   (no description available)
 
 


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



Bug#668225: colord-sane: segfault with error 6 in libdbus-1.so.3.7.0

2012-10-06 Thread Paul Menzel
Control: affects -1 = colord


Am Mittwoch, den 04.07.2012, 13:04 +0200 schrieb Paul Menzel:
 reassign 668225 libdbus-1-3
 found 668225 1.5.12-1
 tags 668225 upstream
 affects 668225 colord-sane

The binary `colord-sane` is packaged in the Debian package `colord`.

[…]


Thanks,

Paul


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


Bug#689772: unblock: olsrd/0.6.3-5

2012-10-06 Thread Antoine Beaupré
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package olsrd

olsrd-0.6.3-5 ships OLSRd with hardening flags. It also updates OLSR
to the latest stable version upstream, which fixes critical bugs which
are bound to be reported against this package once it is shipped with
a stable Debian release.

The release notes are here:

http://olsr.org/?q=node/55

Note that 0.6.2 was released more than a year ago and it would seem
wrong to ship wheezy with it. 0.6.3 *was* in place in the archive when
the freeze happened, and was blocked only because builds were failing
on Debian/kFreeBSD, which is now fixed.

So please do:

unblock olsrd/0.6.3-5

The debdiff is quite long, so I will not attach it here, but a diffstat:

 CHANGELOG  
|   13
 Makefile   
|  120
 Makefile.inc   
|   28
 README-Olsr-Extensions 
|   43
 android/README 
|   30
 android/regex/Makefile.inc 
|   13
 android/regex/NOTICE   
|  382 +
 android/regex/cclass.h 
|2
 android/regex/cname.h  
|2
 android/regex/engine.c 
|7
 android/regex/re_format.7  
|  756 ---
 android/regex/regcomp.c
|   20
 android/regex/regerror.c   
|8
 android/regex/regex.3  
|  667 --
 android/regex/regexec.c
|2
 android/regex/regfree.c
|1
 android/regex/utils.h  
|2
 contrib/netsimpcap/Makefile
|2
 debian/changelog   
|   37
 debian/control 
|6
 debian/olsrd-adhoc-setup.1 
|   36
 debian/olsrd-default   
|   32
 debian/olsrd.conf  
|  217
 debian/olsrd.conf.funkfeuer
|   34
 debian/olsrd.init  
|9
 debian/olsrd.manpages  
|1
 debian/patches/100-debug_level.patch   
|   11
 debian/patches/230-usr-lib-olsrd.patch 
|6
 debian/patches/260-quagga-plugin-detect-protocol-version.patch 
|   10
 
debian/patches/270-gui-linux-gtk-align-olsr_ip_addr-to-olsr-definition-of-it.patch
 |   33
 debian/patches/280-fix-linux-gtk-build.patch   
|   28
 debian/patches/290-hardcode-etc-olsrd-olsrd-conf.patch 
|  104
 debian/patches/295-update-jsoninfo-plugin.patch
|  674 ++
 debian/patches/295-update-olsrd-adhoc-setup.patch  
|   81
 debian/patches/296-jsoninfo-fix-typo.patch 
|   25
 debian/patches/300-stop-hiding-compile-and-linking-flags.patch 
|  628 ++
 debian/patches/310-hardening-fixes.patch   
|   57
 debian/patches/320-build-tas-plugin-against-debian-lua.patch   
|   21
 debian/patches/series  
|9
 debian/rules   
|   25
 files/olsrd-adhoc-setup
|   76
 files/olsrd.conf.default.full  
|   64
 files/olsrd.conf.default.lq
|   36
 files/olsrd.conf.default.lq-fisheye
|   36
 files/olsrd.conf.default.rfc   
|   17
 gui/linux-gtk/CHANGELOG 

Bug#689773: elib: The package elib should be rebuilt with new debhelper to get trigger support

2012-10-06 Thread Andreas Beckmann
Package: elib
Version: 1.0-11.1
Severity: normal

Hi,

package installation in sid reports:

  The package elib should be rebuilt with new debhelper to get trigger
  support.

A full piuparts log is attached.


Andreas


elib_1.0-11.1.log.gz
Description: GNU Zip compressed data


Bug#689774: vera: The package vera should be rebuilt with new debhelper to get trigger support

2012-10-06 Thread Andreas Beckmann
Package: vera
Version: 1.17-5
Severity: normal

Hi,

package installation in sid reports:

  The package vera should be rebuilt with new debhelper to get trigger
  support

A full piuparts log is attached.

Andreas


vera_1.17-5.log.gz
Description: GNU Zip compressed data


Bug#689651:

2012-10-06 Thread Mathieu Malaterre
severity 689651 grave
thanks

The problem keeps coming back. It can be seen, when switching users
(gdm). Now the message reports:


[161136.118792] gnome-shell[12264]: segfault at 3c0018 ip
7f0d546386c5 sp 7fffd641ec48 error 4 in
libgio-2.0.so.0.3200.3[7f0d54601000+14b000]

This makes wheezy hardly usable with multiple users. thanks


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



Bug#684355: unblock: autofs/5.0.7-2

2012-10-06 Thread Michael Tokarev
Control: retitle -1 unblock: autofs/5.0.7-2

Since the previous email, one more neat way to break
ucf file ownership tansfer when renaming a package
has been found, #689747, which I just fixed.

Initially we queried just one file which is supposed
to be owned by old autofs5 - default/autofs, but it
turned out that each file has to be handled separately,
which is now implemented.

This all is a result of a bugfix in 5.0.6-3, when I
stopped transferring ucf-ownership forcible but started
doing it conditionally, only of previously ownership
belonged to autofs5.  That was a bugfix without a
separate BTS entry.  Initial issue is that I do not
want to transfer ownership of these files if they
currently belong to some other package, if that's
_ever_ possible, so using --force unconditionally
does not look sane.  Maybe I'm wrong here and always
using --force for ucf file registration is okay, but
the current version look more or less robust anyway.

The small debdiff between 5.0.7-1 and 5.0.7-2 follows.

Please consider unblocking the package.

unblock autofs/5.0.7-2

Thank you for your time!

/mjt


diff -Nru autofs-5.0.7/debian/autofs.postinst 
autofs-5.0.7/debian/autofs.postinst
--- autofs-5.0.7/debian/autofs.postinst 2012-09-03 08:52:07.0 +0400
+++ autofs-5.0.7/debian/autofs.postinst 2012-10-06 13:00:26.0 +0400
@@ -2,17 +2,15 @@
 set -e

 if [ $1 = configure ]; then
-  # transfer ownership from old autofs5 package
-  case $(ucfq -w /etc/default/autofs) in
-*:autofs5:*) force=--force ;;
-*) force= ;;
-  esac
-  for map in master net misc smb; do
-ucfr $force autofs /etc/auto.$map
-ucf /usr/share/autofs/conffiles/auto.$map /etc/auto.$map
+  for file in auto.master auto.net auto.misc auto.smb default/autofs; do
+# transfer ownership from old autofs5 package
+case `ucfq -w /etc/$file` in
+  *:autofs5:*) force=--force ;;
+  *) force= ;;
+esac
+ucfr $force autofs /etc/$file
+ucf /usr/share/autofs/conffiles/$file /etc/$file
   done
-  ucfr $force autofs /etc/default/autofs
-  ucf /usr/share/autofs/conffiles/default/autofs /etc/default/autofs
 fi

 # In version 5.0.6 (wheezy), the package has been renamed
diff -Nru autofs-5.0.7/debian/changelog autofs-5.0.7/debian/changelog
--- autofs-5.0.7/debian/changelog   2012-09-26 21:15:05.0 +0400
+++ autofs-5.0.7/debian/changelog   2012-10-06 13:06:37.0 +0400
@@ -1,3 +1,10 @@
+autofs (5.0.7-2) unstable; urgency=low
+
+  * force transfer ucf autofs5=autofs ownership for all ucf-managed
+files (Closes: #689747)
+
+ -- Michael Tokarev m...@tls.msk.ru  Sat, 06 Oct 2012 13:06:37 +0400
+
 autofs (5.0.7-1) unstable; urgency=low

   * new upstream (5.0.7) release.  It brings the following changes:


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



Bug#689691: unblock: php-letodms-core/3.3.9-1

2012-10-06 Thread Niels Thykier
Control: tags -1 moreinfo

On 2012-10-05 10:12, Francisco Manuel Garcia Claramonte wrote:
 Subject: unblock: php-letodms-core/3.3.9-1
 Package: release.debian.org
 User: release.debian@packages.debian.org
 Usertags: unblock
 Severity: normal
 
 Please unblock package php-letodms-core
 
 The current letodms version in testing (3.3.4-1) has some
 important security vulnerabilities. 
 New php-letodms-core-3.3.9-1 fixes all these issues.
 
 
 unblock php-letodms-core/3.3.9-1
 
 Thank you,
 
 Regards,
 Francisco.
 

Can you please attach a debdiff of the actual changes.  Particularly it
would be very useful for us if the changes were not remove all files
from 3.3.4 and add all files in 3.3.9[1].

~Niels

[1] The diff we get is
 33 files changed, 7519 insertions(+), 7376 deletions(-)
and next to useless for us to review.


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



Bug#689734: sysv-rc: can't remove dnsmasq from boot if postfix is installed

2012-10-06 Thread Salvo Tomaselli
 what make you believe this is a bug in update-rc.d and
 not in postfix or dnsmasq? 
I am not sure where the bug belongs, i just took a look at dnsmasq LSB header 
and it looked okay.

I am attaching the output of 
/usr/share/insserv/make-testsuite

-- 
Salvo Tomaselli
set +C
cat 'EOF'  $insconf
$local_fs   +mountall +mountoverflowtmp +umountfs
$network+networking +ifupdown
$named  +named +dnsmasq +lwresd +bind9 +unbound $network
$remote_fs  $local_fs +mountnfs +mountnfs-bootclean +umountnfs +sendsigs
$syslog +rsyslog +sysklogd +syslog-ng +dsyslog +inetutils-syslogd
$time   +hwclock
interactive   glibc udev console-screen keymap keyboard-setup console-setup 
cryptdisks cryptdisks-early checkfs-loop
EOF
set -C

addscript acpid 'EOF'
### BEGIN INIT INFO
# Provides:  acpid
# Required-Start:$remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# X-Start-Before:kdm gdm3 xdm
# X-Stop-After:  kdm gdm3 xdm
# Default-Start: 2 3 4 5
# Default-Stop:  
# Short-Description: Start the Advanced Configuration and Power Interface daemon
# Description:   Provide a socket for X11, hald and others to multiplex
#kernel ACPI events.
### END INIT INFO
EOF

addscript alsa-utils 'EOF'
### BEGIN INIT INFO
# Provides:  alsa-utils
# Required-Start:$local_fs $remote_fs
# Required-Stop: $remote_fs
# Default-Start: S
# Default-Stop:  0 1 6
# Short-Description: Restore and store ALSA driver settings
# Description:   This script stores and restores mixer levels on
#shutdown and bootup.On sysv-rc systems: to
#disable storing of mixer levels on shutdown,
#remove /etc/rc[06].d/K50alsa-utils.  To disable
#restoring of mixer levels on bootup, rename the
#S50alsa-utils symbolic link in /etc/rcS.d/ to
#K50alsa-utils.
### END INIT INFO
EOF

addscript avahi-daemon 'EOF'
### BEGIN INIT INFO
# Provides:  avahi
# Required-Start:$remote_fs dbus
# Required-Stop: $remote_fs dbus
# Should-Start:  $syslog
# Should-Stop:   $syslog
# Default-Start: 2 3 4 5
# Default-Stop:  0 1 6
# Short-Description: Avahi mDNS/DNS-SD Daemon
# Description:   Zeroconf daemon for configuring your network 
#automatically
### END INIT INFO
EOF

addscript bootlogd 'EOF'
### BEGIN INIT INFO
# Provides:  bootlogd
# Required-Start:mountdevsubfs
# X-Start-Before:hostname keymap keyboard-setup procps pcmcia hwclock 
hwclockfirst hdparm hibernate-cleanup lvm2
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: Start or stop bootlogd.
# Description:   Starts or stops the bootlogd log program
#which logs boot messages.
### END INIT INFO
EOF

addscript bootlogs 'EOF'
### BEGIN INIT INFO
# Provides:  bootlogs
# Required-Start:hostname $local_fs
# Required-Stop:
# Should-Start:  $x-display-manager gdm kdm xdm ldm sdm wdm nodm
# Default-Start: 1 2 3 4 5
# Default-Stop:
# Short-Description: Log file handling to be done during bootup.
# Description:   Various things that don't need to be done particularly
#early in the boot, just before getty is run.
### END INIT INFO
EOF

addscript bootmisc.sh 'EOF'
### BEGIN INIT INFO
# Provides:  bootmisc
# Required-Start:$remote_fs
# Required-Stop:
# Should-Start:  udev
# Default-Start: S
# Default-Stop:
# Short-Description: Miscellaneous things to be done during bootup.
# Description:   Some cleanup.  Note, it need to run after 
mountnfs-bootclean.sh.
### END INIT INFO
EOF

addscript checkfs.sh 'EOF'
### BEGIN INIT INFO
# Provides:  checkfs
# Required-Start:checkroot
# Required-Stop:
# Should-Start:  mtab
# Default-Start: S
# Default-Stop:
# X-Interactive: true
# Short-Description: Check all filesystems.
### END INIT INFO
EOF

addscript checkroot-bootclean.sh 'EOF'
### BEGIN INIT INFO
# Provides:  checkroot-bootclean
# Required-Start:checkroot
# Required-Stop:
# Default-Start: S
# Default-Stop:
# Short-Description: bootclean after checkroot.
# Description:   Clean temporary filesystems after
#the root filesystem has been mounted.
#At this point, directories which may be
#masked by future mounts may be cleaned.
### END INIT INFO
EOF

addscript checkroot.sh 'EOF'
### BEGIN INIT INFO
# Provides:  checkroot
# Required-Start:mountdevsubfs hostname
# Required-Stop: 
# Should-Start:  keymap hwclockfirst hdparm bootlogd
# Should-stop:
# Default-Start: S
# Default-Stop:
# X-Interactive: true
# Short-Description: Check to root file system.
### END INIT INFO
EOF

addscript console-setup 'EOF'
### BEGIN INIT INFO
# Provides:  console-setup
# Required-Start:$remote_fs
# Required-Stop:
# Should-Start: 

Bug#689776: tt-rss: includes non-free jsmin

2012-10-06 Thread Jakub Wilk

Source: tt-rss
Version: 1.5.11+dfsg-1
Severity: serious
Justification: Policy §2.2.1

lib/jsmin.php has a license with the following non-free clause:

 * The Software shall be used for Good, not Evil.

--
Jakub Wilk


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



Bug#689268: Intel HD 4000 (Ivy Bridge) graphics freeze

2012-10-06 Thread Ingo
Am 05.10.2012 23:53, schrieb Jonathan Nieder:
 Per Foreby wrote:
 
 So far I'm running whith the default wheezy kernel but with the iGPU memory
 set to 256 MB. My plan was to run with this setting, and if I had another
 crash, try the experimental kernel.
 
 That seems like a good plan.
 

With me all is still fine since 1 week, however that does not mean its
fixed. I am right now trying to stress my machine with high memory loads
and graphics to verify the workaround.

So far we have only 2 common things in all cases:

a) it happens when browsing with iceweasel -  Javier can you also
confirm this?

b) appears to be hardware/BIOS dependent and we all have  4GiB RAM
installed.

There obviously is different memory allocvation/interpretation,
depending from where you gather the information:

physical RAM installed
8GiB = 8.192MiB = 8.388.608 kiB

cat /proc/mtrr
reg00: base=0x0 (0MB), size= 8192MB, count=1: write-back
reg01: base=0x2 ( 8192MB), size=  512MB, count=1: write-back
reg02: base=0x0e000 ( 3584MB), size=  512MB, count=1: uncachable
reg03: base=0x0dc00 ( 3520MB), size=   64MB, count=1: uncachable
reg04: base=0x0db80 ( 3512MB), size=8MB, count=1: uncachable
reg05: base=0x21f80 ( 8696MB), size=8MB, count=1: uncachable
reg06: base=0x21f60 ( 8694MB), size=2MB, count=1: uncachable

cat /proc/meminfo
MemTotal:8095128 kB
MemFree: 7543424 kB
Buffers:   37428 kB
Cached:   285136 kB
SwapCached:0 kB
Active:   178696 kB
Inactive: 280040 kB
Active(anon): 136512 kB
Inactive(anon):68272 kB
Active(file):  42184 kB
Inactive(file):   211768 kB
Unevictable:   0 kB
Mlocked:   0 kB
SwapTotal: 0 kB
SwapFree:  0 kB
Dirty:28 kB
Writeback: 0 kB
AnonPages:136164 kB
Mapped:58996 kB
Shmem: 68620 kB
Slab:  37120 kB
SReclaimable:  16488 kB
SUnreclaim:20632 kB
KernelStack:2096 kB
PageTables:16172 kB
NFS_Unstable:  0 kB
Bounce:0 kB
WritebackTmp:  0 kB
CommitLimit: 4047564 kB
Committed_AS: 712296 kB
VmallocTotal:   34359738367 kB
VmallocUsed:  367656 kB
VmallocChunk:   34359368791 kB
HardwareCorrupted: 0 kB
AnonHugePages: 0 kB
HugePages_Total:   0
HugePages_Free:0
HugePages_Rsvd:0
HugePages_Surp:0
Hugepagesize:   2048 kB
DirectMap4k:   49152 kB
DirectMap2M: 8247296 kB

It would also be interesting whether Javier
gets a mtrr with write-combining with the new kernel and
whether BIOS settings for videoRAM are respected by the i915 module.

Ingo


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



Bug#689651:

2012-10-06 Thread Josselin Mouette
reassign 689651 accountsservice
affects 689651 gnome-shell
forcemerge 689651 688413
thanks

Le samedi 06 octobre 2012 à 11:18 +0200, Mathieu Malaterre a écrit : 
 severity 689651 grave
 thanks
 
 The problem keeps coming back. It can be seen, when switching users
 (gdm). Now the message reports:
 
 
 [161136.118792] gnome-shell[12264]: segfault at 3c0018 ip
 7f0d546386c5 sp 7fffd641ec48 error 4 in
 libgio-2.0.so.0.3200.3[7f0d54601000+14b000]
 
 This makes wheezy hardly usable with multiple users. thanks

Known bug in libaccountsservice. I feel like this package is responsible
for half the crashes happening in gnome 3.4.

-- 
 .''`.  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#689778: havp should maintain /var/run/havp in init script and postrm

2012-10-06 Thread Thomas Goirand
Package: havp
Version: 0.92a-2
Severity: serious

Hi,

The havp postinst does:
chown havp:havp /var/run/havp

however, nothing created this folder. Moreover, this should be only
done in the postinst, and this folder should be removed in the postrm.

Cheers,

Thomas Goirand (zigo)


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



Bug#689779: pptpd: modifies conffiles during squeeze2wheezy upgrade (policy 10.7.3): /etc/pptpd.conf, /etc/init.d/pptpd, /etc/ppp/pptpd-options

2012-10-06 Thread Andreas Beckmann
Package: pptpd
Version: 1.3.4-5
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package modifies conffiles.
This is forbidden by the policy, see
http://www.debian.org/doc/debian-policy/ch-files.html#s-config-files

10.7.3: [...] The easy way to achieve this behavior is to make the
configuration file a conffile. [...] This implies that the default
version will be part of the package distribution, and must not be
modified by the maintainer scripts during installation (or at any
other time).

Note that once a package ships a modified version of that conffile,
dpkg will prompt the user for an action how to handle the upgrade of
this modified conffile (that was not modified by the user).

Further in 10.7.3: [...] must not ask unnecessary questions
(particularly during upgrades) [...]

If a configuration file is customized by a maintainer script after
having asked some debconf questions, it may not be marked as a
conffile. Instead a template could be installed in /usr/share and used
by the postinst script to fill in the custom values and create (or
update) the configuration file (preserving any user modifications!).
This file must be removed during postrm purge.
ucf(1) may help with these tasks.
See also http://wiki.debian.org/DpkgConffileHandling

In https://lists.debian.org/debian-devel/2012/09/msg00412.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

debsums reports modification of the following files,
from the attached log (scroll to the bottom...):

  /etc/pptpd.conf
  /etc/init.d/pptpd
  /etc/ppp/pptpd-options

I couldn't reproduce this on a normal installation, it happens
only on upgrades.


cheers,

Andreas


pptpd_1.3.4-5.log.gz
Description: GNU Zip compressed data


Bug#689780: yate-qt4: modifies conffiles during squeeze2wheezy upgrade (policy 10.7.3): /etc/yate/providers.conf

2012-10-06 Thread Andreas Beckmann
Package: yate-qt4
Version: 4.1.0-1~dfsg-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package modifies conffiles.
This is forbidden by the policy, see
http://www.debian.org/doc/debian-policy/ch-files.html#s-config-files

10.7.3: [...] The easy way to achieve this behavior is to make the
configuration file a conffile. [...] This implies that the default
version will be part of the package distribution, and must not be
modified by the maintainer scripts during installation (or at any
other time).

Note that once a package ships a modified version of that conffile,
dpkg will prompt the user for an action how to handle the upgrade of
this modified conffile (that was not modified by the user).

Further in 10.7.3: [...] must not ask unnecessary questions
(particularly during upgrades) [...]

If a configuration file is customized by a maintainer script after
having asked some debconf questions, it may not be marked as a
conffile. Instead a template could be installed in /usr/share and used
by the postinst script to fill in the custom values and create (or
update) the configuration file (preserving any user modifications!).
This file must be removed during postrm purge.
ucf(1) may help with these tasks.
See also http://wiki.debian.org/DpkgConffileHandling

In https://lists.debian.org/debian-devel/2012/09/msg00412.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

debsums reports modification of the following files,
from the attached log (scroll to the bottom...):

  /etc/yate/providers.conf

This only happens during distupgrades from squeeze to wheezy,
I couldn't reproduce on a plain install.

cheers,

Andreas


yate-qt4_4.1.0-1~dfsg-2.log.gz
Description: GNU Zip compressed data


Bug#598650: Infinite template recursion in svn2cl

2012-10-06 Thread Markus Neteler
Yes, the problem persists in svn2cl 0.13.


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



Bug#689781: slim: wishlist : please add fvwm into slim.conf

2012-10-06 Thread yellowprotoss
Package: slim
Version: 1.3.1-8
Severity: wishlist
File: slim

Hi,

Because of a serious bug, I had to remove SLIM from all the machines available. 
Pitty, it looked awesome.

I just would like to mention that I received a lot of complaints from many 
users due to this change and the use of slim.

The users that have.

(1)
.xinitrc with 
exec fvwm 

+ 
(2)
.dmrc with fvwm into it


cannot log anyhow to their favourite fvwm session.



I may suspect that it is due to /etc/slim.conf that does not contain the fvwm 
line.



Info:
Since time is gold (in some religions), I remove this slim package over the 
network, and I will not be capable to further support with debugging or testing.


Thank you for creating Slim. It looked very promising to me. 

Yours sincerely,
Ch.


-- 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-bigmem (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 slim depends on:
ii  debconf [debconf-2.0] 1.5.36.1   Debian configuration management sy
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libjpeg62 6b1-1  The Independent JPEG Group's JPEG 
ii  libpam0g  1.1.1-6.1+squeeze1 Pluggable Authentication Modules l
ii  libpng12-01.2.44-1+squeeze1  PNG library - runtime
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxmu6   2:1.0.5-2  X11 miscellaneous utility library

Versions of packages slim recommends:
ii  xterm 261-1  X terminal emulator

Versions of packages slim suggests:
ii  scrot 0.8-13 command line screen capture utilit

-- Configuration Files:
/etc/slim.conf changed:
default_path/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
default_xserver /usr/bin/X11/X
xserver_arguments   -nolisten tcp
halt_cmd/sbin/shutdown -h now
reboot_cmd  /sbin/shutdown -r now
console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T Console 
login -e /bin/sh -c /bin/cat /etc/issue.net; exec /bin/login
xauth_path /usr/bin/X11/xauth
authfile   /var/run/slim.auth
login_cmd   exec /bin/bash -login /etc/X11/Xsession %session
sessions
default,startxfce4,openbox,ion3,icewm,wmaker,blackbox,awesome
screenshot_cmd  scrot /root/slim.png
welcome_msg Welcome to %host
shutdown_msg   The system is halting...
reboot_msg The system is rebooting...
current_theme  dotmatrix
lockfile/var/run/slim.lock
logfile /var/log/slim.log


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



Bug#689562: utempter: Allows fake host setting

2012-10-06 Thread paul . szabo
Some relevant discussion:

http://archives.neohapsis.com/archives/linux/lsap/2001-q1/0067.html
   After reading the code, ... utempter
   allow for setting arbitrary ut_host's.
  
   Hm, version 0.5 which is what we're using has this:
  
   if (!getuid()) {
   host = argv[3]; /* either NULL or something real */
   } else {
   host = NULL;
   }
  
   which seems perfectly safe to me.
  
  I didn't notice the UID check. Why would utempter be run
  as root, though? ...
  
  ...
  
   ... Or take ut_host; connecting to your sshd and making the
   reverse lookup return funky stuff definitely has potential as well.
  
  Yes, and I am not sure of where this should be fixed. Maybe the libc
  interface should sanitize the structure contents before writing? But
  then there's not even a return value to indicate the error. Perhaps,
  just log the IP address when the hostname looks bad? (The IP address
  is (should be) also logged separately either way.)

Cheers, Paul

Paul Szabo   p...@maths.usyd.edu.au   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia


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



Bug#689782: slim: Serious very slow keyboard under console tty

2012-10-06 Thread yellowprotoss
Package: slim
Version: 1.3.1-8
Severity: important

Hi,

I have just installed Slim on several machines, with the default and matrix 
theme.

Curiously slim does a bad result on all machines. 

The console tty (alt f1.. alt+f2, ...) after you login results in a very very 
slow reaction of the key pressed.

Please fix this bug. it is impossible to work.

Under x11, the keyboard works well.

Previously I was using XDM, and all machines were flawlessly well working.

Sincerely,
Cha.

-- 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-bigmem (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 slim depends on:
ii  debconf [debconf-2.0] 1.5.36.1   Debian configuration management sy
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libjpeg62 6b1-1  The Independent JPEG Group's JPEG 
ii  libpam0g  1.1.1-6.1+squeeze1 Pluggable Authentication Modules l
ii  libpng12-01.2.44-1+squeeze1  PNG library - runtime
ii  libstdc++64.4.5-8The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxmu6   2:1.0.5-2  X11 miscellaneous utility library

Versions of packages slim recommends:
ii  xterm 261-1  X terminal emulator

Versions of packages slim suggests:
ii  scrot 0.8-13 command line screen capture utilit

-- Configuration Files:
/etc/slim.conf changed:
default_path/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
default_xserver /usr/bin/X11/X
xserver_arguments   -nolisten tcp
halt_cmd/sbin/shutdown -h now
reboot_cmd  /sbin/shutdown -r now
console_cmd /usr/bin/xterm -C -fg white -bg black +sb -T Console 
login -e /bin/sh -c /bin/cat /etc/issue.net; exec /bin/login
xauth_path /usr/bin/X11/xauth
authfile   /var/run/slim.auth
login_cmd   exec /bin/bash -login /etc/X11/Xsession %session
sessions
default,startxfce4,openbox,ion3,icewm,wmaker,blackbox,awesome
screenshot_cmd  scrot /root/slim.png
welcome_msg Welcome to %host
shutdown_msg   The system is halting...
reboot_msg The system is rebooting...
current_theme  dotmatrix
lockfile/var/run/slim.lock
logfile /var/log/slim.log


-- debconf information:
* shared/default-x-display-manager: slim


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



Bug#689783: inkscape: Crashes on saving

2012-10-06 Thread Antonio Marcos López Alonso
Package: inkscape
Version: 0.48.3.1-1.1
Severity: important

Inkscape always crashes on any filetype to be saved. This happens in my work 
box but not at home's. I use the same version in both boxes. Attaching 
backtrace.

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=es_ES@euro, LC_CTYPE=es_ES@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages inkscape depends on:
ii  gconf-service   3.2.5-1+build1
ii  libaspell15 0.60.7~20110707-1
ii  libatk1.0-0 2.4.0-2
ii  libatkmm-1.6-1  2.22.6-1
ii  libc6   2.13-35
ii  libcairo2   1.12.2-2
ii  libcairomm-1.0-11.10.0-1
ii  libfontconfig1  2.9.0-7
ii  libfreetype62.4.9-1
ii  libgc1c21:7.1-9
ii  libgcc1 1:4.7.1-7
ii  libgconf-2-43.2.5-1+build1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.32.3-1
ii  libglibmm-2.4-1c2a  2.32.0-1
ii  libgnomevfs2-0  1:2.24.4-1
ii  libgomp14.7.1-7
ii  libgsl0ldbl 1.15+dfsg-1
ii  libgtk2.0-0 2.24.10-2
ii  libgtkmm-2.4-1c2a   1:2.24.2-1
ii  libgtkspell02.0.16-1
ii  liblcms11.19.dfsg-1.2
ii  libmagick++58:6.7.7.10-4
ii  libmagickcore5  8:6.7.7.10-4
ii  libpango1.0-0   1.30.0-1
ii  libpangomm-1.4-12.28.4-1
ii  libpng12-0  1.2.49-1
ii  libpoppler-glib80.18.4-3
ii  libpoppler190.18.4-3
ii  libpopt01.16-7
ii  libsigc++-2.0-0c2a  2.2.10-0.2
ii  libstdc++6  4.7.1-7
ii  libwpd-0.9-90.9.4-3
ii  libwpg-0.2-20.2.1-1
ii  libx11-62:1.5.0-1
ii  libxml2 2.8.0+dfsg1-5
ii  libxslt1.1  1.1.26-13
ii  zlib1g  1:1.2.7.dfsg-13

Versions of packages inkscape recommends:
ii  aspell   0.60.7~20110707-1
ii  imagemagick  8:6.7.7.10-4
ii  libwmf-bin   0.2.8.4-10
ii  perlmagick   8:6.7.7.10-4
ii  pstoedit 3.60-2+b1

Versions of packages inkscape suggests:
ii  dia  0.97.2-8
ii  libgnomevfs2-extra   1:2.24.4-1
ii  libsvg-perl  2.52-1
ii  libxml-xql-perl  0.68-6
ii  python   2.7.3~rc2-1
ii  python-lxml  2.3.2-1
ii  python-numpy 1:1.6.2-1
ii  python-uniconvertor  1.1.4-1+b2
ii  ruby 4.9
ii  ruby1.8 [ruby]   1.8.7.358-4
pn  skencil  none

-- no debconf information

Thread 5 (Thread 0x7fffe0a56700 (LWP 13113)):
#0  0x7fffef67f64b in pthread_cond_timedwait@@GLIBC_2.3.2 () from 
/lib/x86_64-linux-gnu/libpthread.so.0
No symbol table info available.
#1  0x73765525 in g_cond_wait_until () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#2  0x736ffdb1 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#3  0x7374c4fa in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#4  0x7374bdf5 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#5  0x7fffef67ab50 in start_thread () from 
/lib/x86_64-linux-gnu/libpthread.so.0
No symbol table info available.
#6  0x7fffef3c570d in clone () from /lib/x86_64-linux-gnu/libc.so.6
No symbol table info available.
#7  0x in ?? ()
No symbol table info available.

Thread 1 (Thread 0x77fa4a00 (LWP 12799)):
#0  0x7fffef31f475 in raise () from /lib/x86_64-linux-gnu/libc.so.6
No symbol table info available.
#1  0x7fffef3226f0 in abort () from /lib/x86_64-linux-gnu/libc.so.6
No symbol table info available.
#2  0x7fffefd8d6dd in __gnu_cxx::__verbose_terminate_handler() () from 
/usr/lib/x86_64-linux-gnu/libstdc++.so.6
No symbol table info available.
#3  0x7fffefd8b7e6 in ?? () from /usr/lib/x86_64-linux-gnu/libstdc++.so.6
No symbol table info available.
#4  0x7fffefd8b813 in std::terminate() () from 
/usr/lib/x86_64-linux-gnu/libstdc++.so.6
No symbol table info available.
#5  0x7fffefd8ba3e in __cxa_throw () from 
/usr/lib/x86_64-linux-gnu/libstdc++.so.6
No symbol table info available.
#6  0x76b157bf in Glib::ConvertError::throw_func(_GError*) () from 
/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
No symbol table info available.
#7  0x76b254da in Glib::Error::throw_exception(_GError*) () from 
/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
No symbol table info available.
#8  0x76b15846 in Glib::filename_to_utf8(std::string const) () from 
/usr/lib/x86_64-linux-gnu/libglibmm-2.4.so.1
No symbol table info available.
#9  0x00c41cae in sp_file_save_dialog (parentWindow=..., doc=0x2270f00, 
save_method=Inkscape::Extension::FILE_SAVE_METHOD_INKSCAPE_SVG) at file.cpp:846
newFileName = {static npos = 18446744073709551615, string_ = {static 
npos = optimized out, _M_dataplus = {std::allocatorchar = 
{__gnu_cxx::new_allocatorchar = {No data fields}, 

Bug#689784: network-manager-gnome: Wireless Connection disconnects frequently. Acer Aspire One 756, Atheros AR9462/ath9k

2012-10-06 Thread A. E.
Package: network-manager-gnome
Severity: normal

Wireless Connection disconnects frequently. Acer Aspire One 756, Atheros
AR9462/ath9k. Same bug found here:
https://bugs.launchpad.net/linuxmint/+bug/1040943

This bug makes wlan unusable.



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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=locale: Cannot set 
LC_ALL to default locale: No such file or directory
UTF-8)
Shell: /bin/sh linked to /bin/dash


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



Bug#689786: po4a: [INTL:ru] Russian debconf templates translation update

2012-10-06 Thread Yuri Kozlov
Package: po4a
Version: 0.43-1
Severity: wishlist
Tags: l10n patch

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 ***

Russian debconf templates translation update is attached.

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


ru.po.gz
Description: GNU Zip compressed data


Bug#568109: xfonts-scalable: Utopia has been Free software for a good amount of time

2012-10-06 Thread Christian PERRIER
(dropping individuals from CC list)

Quoting Fabian Greffrath (fab...@greffrath.com):

 Back to topic: We should either take Adobe Utopia from CTAN and add it
 to xfonts-scalable or add a fontconfig file to texlive-fonts-recommended
 that registers this font with fontconfig (that's be five lines of code).
 In both cases we'd have duplicates between xfonts-scalable and
 texlive-fonts-recommended, so what to do with them?


From your summary, I think the ideal move is having X.org upstream
drop this font from their distribution (picking it from CTAN has no
logic: if it lives on CTAN, it should be provided by TeX-related
software, not by X.org).

And, of course, also add the fontconfig file to
texlive-fonts-recommended as you suggest.




signature.asc
Description: Digital signature


Bug#689787: fgfs-atlas: move /usr/share/games/FlightGear/AtlasPalette to /usr/share/games/flightgear/

2012-10-06 Thread Andreas Beckmann
Source: fgfs-atlas
Version: 0.3.1-2
Severity: serious
Tags: sid
Justification: sync directory layout with fgfs-base

Hi,

fgfs-base has renamed /usr/share/games/FlightGear/ to
/usr/share/games/flightgear/, so fgfs-atlas needs to follow.
See also #689785.


Andreas


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



Bug#689788: jh_repack: exits with rmdir errors (in certain conditions) and fails to repack

2012-10-06 Thread Francesco Poli (wintermute)
Package: javahelper
Version: 0.43
Severity: normal
Tags: patch

Hello,
I am trying to use jh_repack, but it fails to work on the case I have
at hand.


Steps to reproduce the bug:

  0) download irclib-1.10.tar.gz from http://moepii.sourceforge.net/

  1) rename it:

   $ mv -i irclib-1.10.tar.gz libirclib_1.10.orig.tar.gz

  2) run jh_repack on it:

   $ jh_repack --upstream-version 1.10 libirclib_1.10.orig.tar.gz
   rmdir: failed to remove `javadoc/.svn/tmp': No such file or directory
   rmdir: failed to remove `src/.svn/tmp': No such file or directory
   rmdir: failed to remove `src/org/schwering/irc/lib/ssl/.svn/tmp': No 
such file or directory
   rmdir: failed to remove `src/org/schwering/irc/lib/.svn/tmp': No such 
file or directory
   rmdir: failed to remove `src/org/schwering/irc/.svn/tmp': No such file 
or directory
   rmdir: failed to remove `src/org/schwering/.svn/tmp': No such file or 
directory
   rmdir: failed to remove `src/org/.svn/tmp': No such file or directory
   $ echo $?
   123
   $ du --si -s /tmp/tmp.*
   701k/tmp/tmp.gYqrH3TEjT

As can be seen, the tar archive was not repacked and the temporary directory
was not removed.


I think I found the cause of the issue.

Line 69 of jh_repack is:

  find * -depth -type d -print0 | xargs -0 rmdir -p --ignore-fail-on-non-empty

The find command prints all the directories in depth-first ordering,
as in

  [...]
  dir/subdir1
  dir/subdir2/subsub
  dir/subdir2
  dir/subdir0
  dir
  [...]

The rmdir -p --ignore-fail-on-non-empty attempts to remove any empty
directory and also all of its empty ancestors afterwards.
Hence, if dir/subdir2/ only contains subsub/ , and the latter is empty,
then line 69 of jh_repack first removes dir/subdir2/subsub/ , then also
removes dir/subdir2/ .
The rmdir command is then asked to remove dir/subdir2/ (if empty),
but dir/subdir2/ no longer exists *at that point* !

The attached trivial patch fixes for the bug for me.

Please apply my patch, if you agree with the reasoning and with the
proposed solution.

Thanks for your time!


Legal details: my patch is so trivial, that I think it is not copyrighted.
Hence, no license from me should be needed in order to incorporate the
fix into the package. In case this turns out to be wrong, please consider
my patch released under the terms of the GNU GPL version 2, as the rest
of javahelper.




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

Kernel: Linux 3.2.0-3-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/bash

Versions of packages javahelper depends on:
ii  bsdmainutils 9.0.3
ii  dctrl-tools  2.22.2
ii  debhelper9.20120909
ii  devscripts   2.12.4
ii  dpkg-dev 1.16.8
ii  libarchive-zip-perl  1.30-6

javahelper recommends no packages.

Versions of packages javahelper suggests:
pn  cvs   none
ii  gawk  1:4.0.1+dfsg-2
ii  tofrodos  1.7.9.debian.1-1

-- no debconf information


jh_repack-fix_rmdir.diff.gz
Description: GNU Zip compressed data


Bug#689789: Initial Czech translation of PO debconf template for lazarus 0.9.30.4-4

2012-10-06 Thread Michal Šimůnek
Package: lazarus
Version: 0.9.30.4-4
Severity: wishlist
Tags: l10n, patch

In attachment there is initial Czech translation of PO debconf
template (cs.po) for package lazarus, please include it.


cs.po
Description: Binary data


Bug#689790: msva-perl: modifies conffiles during upgrade from squeeze (policy 10.7.3): /etc/X11/Xsession.d/70monkeysphere_use-validation-agent

2012-10-06 Thread Andreas Beckmann
Package: msva-perl
Version: 0.8-2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts
Control: found -1 0.9.1-1

Hi,

during a test with piuparts I noticed your package modifies conffiles.
This is forbidden by the policy, see
http://www.debian.org/doc/debian-policy/ch-files.html#s-config-files

10.7.3: [...] The easy way to achieve this behavior is to make the
configuration file a conffile. [...] This implies that the default
version will be part of the package distribution, and must not be
modified by the maintainer scripts during installation (or at any
other time).

Note that once a package ships a modified version of that conffile,
dpkg will prompt the user for an action how to handle the upgrade of
this modified conffile (that was not modified by the user).

Further in 10.7.3: [...] must not ask unnecessary questions
(particularly during upgrades) [...]

If a configuration file is customized by a maintainer script after
having asked some debconf questions, it may not be marked as a
conffile. Instead a template could be installed in /usr/share and used
by the postinst script to fill in the custom values and create (or
update) the configuration file (preserving any user modifications!).
This file must be removed during postrm purge.
ucf(1) may help with these tasks.
See also http://wiki.debian.org/DpkgConffileHandling

In https://lists.debian.org/debian-devel/2012/09/msg00412.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

debsums reports modification of the following files,
from the attached log (scroll to the bottom...):

  /etc/X11/Xsession.d/70monkeysphere_use-validation-agent

I only saw this behavior on upgrades from squeeze, not on normal
installations.

cheers,

Andreas


msva-perl_0.8-2.log.gz
Description: GNU Zip compressed data


Bug#683580: now ibus-pinyin developers has noticed that

2012-10-06 Thread Randy Li
https://code.google.com/p/ibus/issues/detail?id=1195
This issue has been reopened.


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



Bug#689268: Intel HD 4000 (Ivy Bridge) graphics freeze

2012-10-06 Thread Per Foreby

Ingo wrote:


With me all is still fine since 1 week, however that does not mean its
fixed. I am right now trying to stress my machine with high memory loads
and graphics to verify the workaround.


I have also tried the stress tactics, but it doesn't seem to have 
anything to do with load.




a) it happens when browsing with iceweasel -  Javier can you also
confirm this?


Not iceweasel in my case. I like my browsers bleading edge, so I use the 
64-bit version of vanilla firefox. And my freezes have happened on 
various mouse or kbd input, not only klicking a link in the web browser 
(see my original bug report).


/Per


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



Bug#689791: php5-xdebug: modifies conffiles during distupgrade from squeeze (policy 10.7.3): /etc/php5/mods-available/xdebug.ini

2012-10-06 Thread Andreas Beckmann
Package: php5-xdebug
Version: 2.2.1-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package modifies conffiles.
This is forbidden by the policy, see
http://www.debian.org/doc/debian-policy/ch-files.html#s-config-files

10.7.3: [...] The easy way to achieve this behavior is to make the
configuration file a conffile. [...] This implies that the default
version will be part of the package distribution, and must not be
modified by the maintainer scripts during installation (or at any
other time).

Note that once a package ships a modified version of that conffile,
dpkg will prompt the user for an action how to handle the upgrade of
this modified conffile (that was not modified by the user).

Further in 10.7.3: [...] must not ask unnecessary questions
(particularly during upgrades) [...]

If a configuration file is customized by a maintainer script after
having asked some debconf questions, it may not be marked as a
conffile. Instead a template could be installed in /usr/share and used
by the postinst script to fill in the custom values and create (or
update) the configuration file (preserving any user modifications!).
This file must be removed during postrm purge.
ucf(1) may help with these tasks.
See also http://wiki.debian.org/DpkgConffileHandling

In https://lists.debian.org/debian-devel/2012/09/msg00412.html and
followups it has been agreed that these bugs are to be filed with
severity serious.

debsums reports modification of the following files,
from the attached log (scroll to the bottom...):

  /etc/php5/mods-available/xdebug.ini

I only noticed this during distupgrades from squeeze, not during normal
installation.


cheers,

Andreas


php5-xdebug_2.2.1-1.log.gz
Description: GNU Zip compressed data


Bug#689659: mpg123 segfaults on specific file

2012-10-06 Thread Pavel Machek
On Sat 2012-10-06 03:18:55, Thomas Orgis wrote:
 Am Fri, 5 Oct 2012 22:06:49 +0200
 schrieb Pavel Machek pa...@ucw.cz: 
 
  I cut this from the offending file, and it still causes the
  crash. Is it enough for debugging?
 
 Thanks for the data and no, I cannot reproduce a crash on my main
 system (not debian). I get valgrind to complain about overlapping
 memcpy in the ALSA library, but that's not new and not specific to the
 file.

It does crash even if I just let it decode into a file. So that should
not be alsa.

 I checked a i686 chroot, too, no issue. I guess I'd need to whip out a debian
 install/vm to reproduce. I have intentionally very old glibc here;
 before that infamous memcpy optimization ... which we very well might
 be dealing with here. But a test LD_PRELOAD checking for overlapping
 memcpy didn't trigger, neither.

What is the infamous memcpy optimization? I tried brief google, but
nothing. This? http://lwn.net/Articles/417881/ It has no details :-(.

 Can you run under valgrind to check memory issues?

Hopefully I got valgrind right...

pavel@amd:/tmp$ efence mpg123 mp3.bug/cut.mp3 
-bash: efence: command not found
pavel@amd:/tmp$ valgrind mpg123 mp3.bug/cut.mp3 
==18936== Memcheck, a memory error detector
==18936== Copyright (C) 2002-2011, and GNU GPL'd, by Julian Seward et
al.
==18936== Using Valgrind-3.7.0 and LibVEX; rerun with -h for copyright
info
==18936== Command: mpg123 mp3.bug/cut.mp3
==18936== 
High Performance MPEG 1.0/2.0/2.5 Audio Player for Layer 1, 2 and 3.
Version 0.59o (1998/Feb/08). Written and copyrights by Michael Hipp.
Uses code from various people. See 'README' for more!
THIS SOFTWARE COMES WITH ABSOLUTELY NO WARRANTY! USE AT YOUR OWN RISK!
Title  : O SNEHURCE  Artist: IVAN MLADEK   
Album  : POHADKY A JINE POVIDACKYYear: 1994, Genre: 28
Comment:

Directory: mp3.bug/
Playing MPEG stream from cut.mp3 ...
MPEG 1.0 layer III, 128 kbit/s, 44100 Hz joint-stereo
Illegal Audio-MPEG-Header 0xc7ae608a at offset 0x4e3.
Skipped 159 bytes in input.
==18936== 
==18936== Process terminating with default action of signal 11
(SIGSEGV): dumping core
==18936==  Bad permissions for mapped region at address 0x805EFFC
==18936==at 0x4028E3C: memcpy (in
/usr/lib/valgrind/vgpreload_memcheck-x86-linux.so)
==18936==by 0x804D322: ??? (in /usr/local/bin/mpg123)
==18936== Invalid read of size 1
==18936==at 0x4008D11: check_match.8610 (dl-lookup.c:134)
==18936==by 0x400936A: do_lookup_x (dl-lookup.c:273)
==18936==by 0x4009661: _dl_lookup_symbol_x (dl-lookup.c:729)
==18936==by 0x400DC15: _dl_fixup (dl-runtime.c:119)
==18936==by 0x40139BF: _dl_runtime_resolve (dl-trampoline.S:37)
==18936==by 0x4035E0F: ??? (in /tmp/mp3.bug/cut.mp3)
==18936==by 0x804D322: ??? (in /usr/local/bin/mpg123)
==18936==  Address 0x1eb is not stack'd, malloc'd or (recently) free'd
==18936== 
==18936== 
==18936== Process terminating with default action of signal 11
(SIGSEGV)
==18936==  Access not within mapped region at address 0x1EB
==18936==at 0x4008D11: check_match.8610 (dl-lookup.c:134)
==18936==by 0x400936A: do_lookup_x (dl-lookup.c:273)
==18936==by 0x4009661: _dl_lookup_symbol_x (dl-lookup.c:729)
==18936==by 0x400DC15: _dl_fixup (dl-runtime.c:119)
==18936==by 0x40139BF: _dl_runtime_resolve (dl-trampoline.S:37)
==18936==by 0x4035E0F: ??? (in /tmp/mp3.bug/cut.mp3)
==18936==by 0x804D322: ??? (in /usr/local/bin/mpg123)
==18936==  If you believe this happened as a result of a stack
==18936==  overflow in your program's main thread (unlikely but
==18936==  possible), you can try to increase the size of the
==18936==  main thread stack using the --main-stacksize= flag.
==18936==  The main thread stack size used in this run was 8388608.
==18936== 
==18936== HEAP SUMMARY:
==18936== in use at exit: 33,808 bytes in 2 blocks
==18936==   total heap usage: 2 allocs, 0 frees, 33,808 bytes
allocated
==18936== 
==18936== LEAK SUMMARY:
==18936==definitely lost: 0 bytes in 0 blocks
==18936==indirectly lost: 0 bytes in 0 blocks
==18936==  possibly lost: 0 bytes in 0 blocks
==18936==still reachable: 33,808 bytes in 2 blocks
==18936== suppressed: 0 bytes in 0 blocks
==18936== Rerun with --leak-check=full to see details of leaked memory
==18936== 
==18936== For counts of detected and suppressed errors, rerun with: -v
==18936== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 13 from
6)
Segmentation fault



-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) 
http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html


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



Bug#689792: localedef --help: typo: conform - conforming

2012-10-06 Thread Jakub Wilk

Package: libc-bin
Version: 2.13-35
Severity: minor

$ localedef --help | grep -w conform
  --posixBe strictly POSIX conform

It should be s/conform/conforming/.

--
Jakub Wilk


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



Bug#689793: freeciv-client-sdl: ttf-unfonts-core is a transitional package

2012-10-06 Thread Changwoo Ryu
Package: freeciv-client-sdl
Version: 2.3.2-1
Severity: normal

It depends on ttf-unfonts-core which is now a transitional package. Use
newer fonts-unfonts-core instead.


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



Bug#687614: unblock: gdebi/0.8.6 (pre-approval)

2012-10-06 Thread Niels Thykier
Control: tags -1 moreinfo

On 2012-09-14 11:31, Luca Falavigna wrote:
 Package: release.debian.org
 Severity: normal
 User: release.debian@packages.debian.org
 Usertags: unblock
 
 
 Dear Release Team,
 I'd like to upload a new gdebi version in unstable fixing some bugs I
 recently triaged. They were reported on Launchpad, but most of them
 affect Debian too. Here's a description of the changes introduced
 since 0.8.5:
 
 [...]
 
 Other than those, I plan to include new translations in the package,
 I'm currently waiting for Launchpad to finalize them.
 I'm attaching a full debdiff (not including translations, at the
 moment) of the changes I'd like to introduce.
 
 Cheers,
 Luca

The changes are mostly reasonable and I would be okay with them except
the part where GDebiCli.py calls sys.exit(app.install())[0].  I had a
brief look at the code and app.install() (being GDebiCli.install())
appears to return a mix of int and boolean.  Like

@@ -141,9 +141,7 @@
 #os.system(gdebi %s_%s_*.deb % (...))
 pass
 else:
-ret = call([dpkg,...])
-if (ret != 0):
-return False
+return call([dpkg,...])
 ^^^ (ret != 0 suggests int)
 vvv  (clearly boolean)
 return True

In the 0.8.5 code, there are a couple of places where GDebiCli.install
returns False on error[1], which I believe python translates to 0
leading to exit 0 with errors (and I suspect that is not what you wanted).

~Niels

[0] Actually, this also appears in gdebi AFAICT (w. s/app/debi/).

[1] I have marked the first two return False on error I noticed.

def install(self):
# install the dependecnies
(install,remove,unauthenticated) = self._deb.required_changes
if len(install)  0 or len(remove)  0:
fprogress = apt.progress.text.AcquireProgress()
iprogress = apt.progress.base.InstallProgress()
try:
res = self._cache.commit(fprogress,iprogress)
except apt.cache.FetchFailedException, e:
sys.stderr.write(_(Error during install: '%s') % e)
return False

except SystemError, e:
sys.stderr.write(_(Error during install: '%s') % e)
return False

[...]


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



Bug#689794: fvwm: FvwmPager corrupts other windows on redraw

2012-10-06 Thread Vladimir B. Savkin
Package: fvwm
Version: 1:2.5.30.ds-1
Severity: normal

When moving another window above FvwmPager, grid lines are displayed above this
window corrupting the view. Picture of corrupted xterm window is in attachment.

Relevant config lines are below.

Style FvwmPager   NeverFocus

AddToFunc BootFunctionI Exec true
+   I Module FvwmPager 0 0
+   I Wait FvwmPager

# FvwmPager
#
*FvwmPagerBack Grey40
*FvwmPagerFore black
*FvwmPagerFont -rfx-helvetica-bold-r-*-*-10-*-*-*-*-*-*-*
*FvwmPagerHilight #308080
*FvwmPagerGeometry +0+0
*FvwmPagerColumns 1
#*FvwmPagerLabel 0 Petaflop

# Setting the font to 0x0 or nil2 results in no text
#*FvwmPagerSmallFont 0x0
*FvwmPagerSmallFont 5x8-cyrillic



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

Kernel: Linux 3.4.11 (SMP w/2 CPU cores)
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Shell: /bin/sh linked to /bin/bash

Versions of packages fvwm depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.4.2-2.1+squeeze4 FreeType 2 font engine, shared lib
ii  libfribidi0   0.19.2-1   Free Implementation of the Unicode
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface
ii  libice6   2:1.0.6-2  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libpng12-01.2.44-1+squeeze4  PNG library - runtime
ii  libreadline6  6.1-3  GNU readline and history libraries
ii  librplay3 3.3.2-12   rplay network audio system - share
ii  librsvg2-22.26.3-1   SAX-based renderer library for SVG
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libstroke00.5.1-6mouse strokes library -- runtime f
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxcursor1   1:1.1.10-2 X cursor management library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxinerama1  2:1.1-3X11 Xinerama extension library
ii  libxpm4   1:3.5.8-1  X11 pixmap library
ii  libxrender1   1:0.9.6-1  X Rendering Extension client libra
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

Versions of packages fvwm recommends:
ii  fvwm-icons20070101-1 icon *.xpm files from fvwm develop
pn  libx11-protocol-perl  none (no description available)
ii  perl-tk   1:804.029-1+b1 Perl module providing the Tk graph

Versions of packages fvwm suggests:
ii  cpp   4:4.4.5-1  The GNU C preprocessor (cpp)
pn  fvwm-themes   none (no description available)
ii  m41.4.14-3   a macro processing language
ii  menu  2.1.44 generates programs menu for all me
ii  wm-icons  0.4.0-5Themed icon set that is Window Man
attachment: dump.png

Bug#689795: unblock: python-larch/1.20121006-1

2012-10-06 Thread Lars Wirzenius
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

I humbly request that the release team allow the recently uploaded
python-larch package version 1.20121006-1 into wheezy before the
release. It fixes two bugs, one of which was reported to Debian:

* #675818: UnboundLocalError: local variable 'new_node' referenced
  before assignment
- this bug is of normal severity, but could arguably be important
- what happens is that when the fsck feature of Obnam (my backup
  program) is used in fix problems and do not just report them
  mode, the program crashes because of an unknown local variable
  name
- the problem is that I had inadvertently indented a line wrongly:
  the line logs the value of a variable, but is not indented to be
  inside the block in which the variable exists
- the fix is a one-line change to indent the problematic line to
  the correct level
* the unreported problem is that the package is using the cmdtest tool
  during build time to run tests, but is lacking this in the build
  dependencies
- I apologise profusely for not reporting a bug for this myself

I am also upstream of python-larch, and have chosen to make a new
upstream release to include these fixes. I hope that is not a problem
for the release team.

An additional change, apart from a new entry in the NEWS file, is 
that I fixed the spelling of the name of the person who developed the
B-tree variant the python-larch package implements.

The debdiff is below.

I hope the release team is in good health, and that this request of
mine leaves you in good spirits.

diff -Nru python-larch-1.20120527/debian/changelog 
python-larch-1.20121006/debian/changelog
--- python-larch-1.20120527/debian/changelog2012-10-06 11:59:01.0 
+0100
+++ python-larch-1.20121006/debian/changelog2012-10-06 11:59:01.0 
+0100
@@ -1,3 +1,12 @@
+python-larch (1.20121006-1) unstable; urgency=low
+
+  * New upstream release.
+- Fix UnboundLocalError: local variable 'new_node' referenced before
+  assignment (Closes: #675818)
+  * debian/control: Add missing build-dependency on cmdtest.
+
+ -- Lars Wirzenius l...@liw.fi  Sat, 06 Oct 2012 10:27:20 +0100
+
 python-larch (1.20120527-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru python-larch-1.20120527/debian/control 
python-larch-1.20121006/debian/control
--- python-larch-1.20120527/debian/control  2012-10-06 11:59:01.0 
+0100
+++ python-larch-1.20121006/debian/control  2012-10-06 11:59:01.0 
+0100
@@ -5,7 +5,7 @@
 Standards-Version: 3.9.3
 Build-Depends: debhelper (= 7.3.8), python (= 2.6.6-3~), 
 python-coverage-test-runner, python-tracing, python-sphinx,
-python-cliapp (= 0.14), python-ttystatus
+python-cliapp (= 0.14), python-ttystatus, cmdtest
 X-Python-Version: = 2.6
 
 Package: python-larch
diff -Nru python-larch-1.20120527/larch/fsck.py 
python-larch-1.20121006/larch/fsck.py
--- python-larch-1.20120527/larch/fsck.py   2012-05-27 10:44:29.0 
+0100
+++ python-larch-1.20121006/larch/fsck.py   2012-10-06 10:30:43.0 
+0100
@@ -104,7 +104,7 @@
 new_node = larch.IndexNode(node.id, keys, 
[node[k] for k in keys])
 self.fsck.forest.node_store.put_node(new_node)
-tracing.trace('fixed it: %s' % new_node.keys())
+tracing.trace('fixed it: %s' % new_node.keys())
 
 
 class CheckRoot(WorkItem):
diff -Nru python-larch-1.20120527/larch/__init__.py 
python-larch-1.20121006/larch/__init__.py
--- python-larch-1.20120527/larch/__init__.py   2012-05-27 10:44:29.0 
+0100
+++ python-larch-1.20121006/larch/__init__.py   2012-10-06 10:30:43.0 
+0100
@@ -14,7 +14,7 @@
 # along with this program.  If not, see http://www.gnu.org/licenses/.
 
 
-__version__ = '1.20120527'
+__version__ = '1.20121006'
 
 
 class Error(Exception):
diff -Nru python-larch-1.20120527/NEWS python-larch-1.20121006/NEWS
--- python-larch-1.20120527/NEWS2012-05-27 10:44:29.0 +0100
+++ python-larch-1.20121006/NEWS2012-10-06 10:30:43.0 +0100
@@ -2,7 +2,16 @@
 ==
 
 These are the release notes for larch, a Python implementation of a
-copy-on-write B-tree, designed by Odah Rodeh.
+copy-on-write B-tree, designed by Ohad Rodeh.
+
+Version 1.20121006
+--
+
+* Critical bug fix: an indentation problem in the Python code was fixed.
+  A line was intended wrong, resulting it to not be included in the right
+  block, and therefore not having access to the variable created in that
+  block.
+* Bug fix: The Debian packaging was missing a build dependency on cmdtest.
 
 Version 1.20120527, released 2012-05-27
 ---

unblock python-larch/1.20121006-1

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 

Bug#689796: bacula: French debconf templates translation

2012-10-06 Thread Julien Patriarca
Package: bacula
Version: N/A
Severity: wishlist
Tags: patch l10n




*** /home/julien/traductions/po-debconf/patch-translate.txt


Please find attached the french debconf templates translation, proofread by the
debian-l10n-french mailing list contributors.

This file should be put as debian/po/fr.po in your package build tree.



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

Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# Translation of bacula debconf templates to french. 
# Copyright (C) 2012, French l10n team debian-l10n-fre...@lists.debian.org
# This file is distributed under the same license as the bacula package.
# Julien Patriarca patriar...@gmail.com, 2012.
#
msgid 
msgstr 
Project-Id-Version: bacula\n
Report-Msgid-Bugs-To: bac...@packages.debian.org\n
POT-Creation-Date: 2012-10-02 07:10+0200\n
PO-Revision-Date: 2012-10-02 11:34+0100\n
Last-Translator: Julien Patriarca patriar...@gmail.com\n
Language-Team: FRENCH debian-l10n-fre...@lists.debian.org\n
Language: \n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: error
#. Description
#: ../bacula-director-db.templates.in:2001
msgid Unsafe bacula-director password changed
msgstr Changement forcé du mot de passe trop faible pour bacula-director

#. Type: error
#. Description
#: ../bacula-director-db.templates.in:2001
msgid 
This installation of Bacula was still using an unsafe password for access to 
the bacula-director service, as shipped with old versions of Bacula.
msgstr 
Cette installation de Bacula utilisait encore un mot de passe trop faible pour 

accéder au service bacula-director. Ce mot de passe était celui qui était créé 
par défaut avec les 
anciennes versions de Bacula.

#. Type: error
#. Description
#: ../bacula-director-db.templates.in:2001
msgid 
In order to secure this Bacula server, the password in bacula-dir.conf has 
been modified. You will need to change it on clients so that they can still 
access the bacula-director service.
msgstr 
Afin de rendre le serveur Bacula plus sûr, le mot de passe défini dans 
bacula-dir.
conf a été modifié. Il est indispensable de le modifier sur les clients afin 
de préserver 
leur accès au service bacula-director.


Bug#689415: RFS: flvmeta/1.1.0-1 -- Metadata injector for FLV video files

2012-10-06 Thread Bart Martens
Hello Neutron Soutmun,

I had a look at flvmeta at mentors uploaded there on 2012-10-02 11:57.

I see that these files are not identical :

ef98d55ff13f7a347be9c37ef5222e84  flvmeta-1.1.0.tar.gz
a12a28ff24fb556a1a670ec9aa668081  flvmeta_1.1.0.orig.tar.gz

Where did you get flvmeta_1.1.0.orig.tar.gz from ? I got flvmeta-1.1.0.tar.gz
from here :
http://flvmeta.googlecode.com/files/flvmeta-1.1.0.tar.gz

Regards,

Bart Martens


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



Bug#689797: Initial Czech translation of PO debconf template for bacula 5.2.6+dfsg-4

2012-10-06 Thread Michal Šimůnek
Package: bacula
Version: 5.2.6+dfsg-4
Severity: wishlist
Tags: l10n, patch

In attachment there is initial Czech translation of PO debconf
template (cs.po) for package bacula, please include it.


cs.po
Description: Binary data


Bug#689764: icinga-web: includes non-free jsmin

2012-10-06 Thread Markus Frosch
Hi Raphael,
thanks for this bug.

 lib/phing/classes/phing/tasks/ext/jsmin/JsMin.php includes the
 following license clause that makes it non-free:

 The Software shall be used for Good, not Evil.

I was not really aware that this clause exists and does not match with DFSG...

We will discuss this with the upstream project and upload a new
version with a dfsg tarball asap. Current expectations are to remove
this file completely!

Best Regards
Markus

-- 
Markus Frosch
mar...@lazyfrosch.de
http://www.lazyfrosch.de


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



Bug#689798: fvwm: inaccessible windows outside the desktop bounds

2012-10-06 Thread Vladimir B. Savkin
Package: fvwm
Version: 1:2.5.30.ds-1
Severity: important

Some programs, such as browsers, save size and position of their windows on
exit. After restarting the program and restoring its session, a window may be
placed outside of the (virtual) desktop. My relevant settings are:
DeskTopSize 3 3
Style * SmartPlacement
Style * RandomPlacement

If browser crashes when one part of the virtual desktop is displayed and then I
restart the browser and restore its session when viewing another part, all the
windows may appear outside of the desktop. Such windows are present in the
WindowList but cannot receive focus, even for quitting the browser.

I have to kill the process and either try to select another part of the virtual
desktop, or manually edit config file where sessions were saved. So, the window
manager does not perform its core function, this is why I am marking this bug
as Important. I think at the very least, windows should receive focus via
WindowList even when they are way outside of the desktop, and may be some
function to bring them into accessible place should be added.



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

Kernel: Linux 3.4.11 (SMP w/2 CPU cores)
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Shell: /bin/sh linked to /bin/bash

Versions of packages fvwm depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.4.2-2.1+squeeze4 FreeType 2 font engine, shared lib
ii  libfribidi0   0.19.2-1   Free Implementation of the Unicode
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libice6   2:1.0.6-2  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libpng12-01.2.44-1+squeeze4  PNG library - runtime
ii  libreadline6  6.1-3  GNU readline and history libraries
ii  librplay3 3.3.2-12   rplay network audio system - share
ii  librsvg2-22.26.3-1   SAX-based renderer library for SVG
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libstroke00.5.1-6mouse strokes library -- runtime f
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxcursor1   1:1.1.10-2 X cursor management library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxinerama1  2:1.1-3X11 Xinerama extension library
ii  libxpm4   1:3.5.8-1  X11 pixmap library
ii  libxrender1   1:0.9.6-1  X Rendering Extension client libra
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

Versions of packages fvwm recommends:
ii  fvwm-icons20070101-1 icon *.xpm files from fvwm develop
pn  libx11-protocol-perl  none (no description available)
ii  perl-tk   1:804.029-1+b1 Perl module providing the Tk graph

Versions of packages fvwm suggests:
ii  cpp   4:4.4.5-1  The GNU C preprocessor (cpp)
pn  fvwm-themes   none (no description available)
ii  m41.4.14-3   a macro processing language
ii  menu  2.1.44 generates programs menu for all me
ii  wm-icons  0.4.0-5Themed icon set that is Window Man

-- debconf information:
* fvwm/upgrade/pre_2.5.8: true


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



Bug#688772: gnome Depends network-manager-gnome

2012-10-06 Thread Chris Knadle
On Friday, October 05, 2012 23:26:01, Don Armstrong wrote:
 On Sat, 06 Oct 2012, Josselin Mouette wrote:
[…]
   * The affirmation that this will cause undesirable upgrade behavior
 is grossly exaggerated.
 
 From what I understand, nm and wicd are not capable of co-existing.[1]

As it has been mentioned that n-m had design issues that it may no longer 
have, it means that /when/ I was having the issues I cited in the link above 
with n-m may be important.  I looked into my records, and the issues I was 
having with n-m breakage on upgrades, n-m interfering with wicd, and upgrades 
of n-m undoing user-made init script modifications to disable it occurred in 
the Fall of 2009.  Package/metapackage dependencies were also directly related 
to why I was having the issue at the time  too -- I remember trying to remove 
n-m and found the system fighting me on it, and was too busy to work out how 
to immediately get around the dependencies; I had the technical capability to 
do so, but my focus needed to be elsewhere.  Instead I kept having to use the 
field bandage of re-modifying the init script after n-m broke the use of 
wicd on each upgrade.  IIRC I eventually ended up having to compromise and 
remove certain programs I used and liked in order to remove n-m.  wicd at that 
time did not have a wicd-kde package, so I used wicd-gtk and wicd-curses; it 
didn't matter much to me that these didn't integrate with the rest of the 
system, because unlike n-m they didn't break on upgrades.

As I also mentioned [2], recent changes to the task-xfce-desktop package in 
Wheezy pulled in n-m in a VM I run even though wicd had previously been 
installed by default, and at least for the wired interface there didn't seem 
to be a bad interaction.

I think my data on n-m is outdated, so I think more present-day testing of n-m 
and wicd interaction is needed to know if any conflicts exist today.

   * The claim that NM can be replaced by another component without
 functionality loss is preposterous.
 
 Which functionality loss are we talking about? For simple
 configurations, it seems quite possible to replace NM with ifupdown
 with no loss of functionality.

One cited example: Phillip Kern mentioned [3] that n-m supports IPv6 where 
wicd does not, which is why he had to switch back from wicd.



I'm not convinced by the argument of functionality loss compared to another 
component as a reason for the Dependency.  If an alternative works fine for 
the user, I don't see why continuing to use it /shouldn't/ be allowed without 
having to work-around the metapackage.  I agree that n-m /does/ have 
additional features to alternatives (and that it integrates better with 
Gnome), but that still does /not/ mean that every user would want it or need 
it.  For instance there are often features n-m has that a user won't have the 
capability of taking advantage of because they lack the hardware to do so.


I share Colin's concerns about having to work around the metapackage.  Being 
that Debian's mantra is The /Universal/ Operating System, this implies that 
it tries to cater to everyone, including those who my not yet have figured out 
what reverse dependencies are and how to work around the metapackage at their 
own risk.  Removing one package and installing another is generally a 
operation of a lower bar than working around a metapackage is.  An interesting 
situation to consider in this context is accidentily removing the network 
configuration tool on a wireless-only system, and thus not having network 
connectivity to install another one.

In addition my experience it's common to install several Window Managers and 
Development Environments simultaneously on shared systems as well as users 
wishing to try out the various choices; I think the dependency on n-m in the 
gnome metapackage may impact that experience.  It's of course also common to 
run Gnome programs from a different DE or WM than Gnome, too.  For both of 
these reasons, the fact that the gnome metapackage is installed doesn't 
necessarily mean Gnome is the primary environment being used.



I think this issue borders the gap between user experience design and 
allowing user choice by design.  I believe the Gnome maintainers are looking 
more towards the former, and I think the dependency has some impact on the 
latter.  I'm still not sure I understand the ramifications of a focus on the 
latter; that is, what if any negative impact there would be if n-m was a 
Recommends in the gnome metapackage.



 1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681834#215

2: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681834#235

3: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=681834#255

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us


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



Bug#689219: RFS: libcdk5/5.0.20120323-1 [ITA] -- C-based curses widget library

2012-10-06 Thread Bart Martens
Hi Jose,

I had a look at libcdk5 at mentors uploaded there on 2012-10-02 22:31.

I'm not sure about uploading this to unstable, because it has reverse
dependencies, and I'm not sure whether this can be disruptive as meant in the
freeze policy.  Maybe you want it uploaded to experimental instead ?  Or do you
prefer to delay the upload until after wheezy is released ?

Regards,

Bart Martens


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



Bug#689796: bacula: French debconf templates translation

2012-10-06 Thread Alexander Golovko
tags 689796 + pending
--

Hi!

Thank you for your help!

Your translation added into git master branch, next uploaded
version will include this changes.


В Sat, 06 Oct 2012 13:31:12 +0200
Julien Patriarca patriar...@gmail.com пишет:

 Package: bacula
 Version: N/A
 Severity: wishlist
 Tags: patch l10n
 
 
 
 
 *** /home/julien/traductions/po-debconf/patch-translate.txt
 
 
 Please find attached the french debconf templates translation,
 proofread by the debian-l10n-french mailing list contributors.
 
 This file should be put as debian/po/fr.po in your package build tree.
 
 
 
 -- System Information:
 Debian Release: 6.0.6
   APT prefers stable-updates
   APT policy: (500, 'stable-updates'), (500, 'stable')
 Architecture: amd64 (x86_64)
 
 Kernel: Linux 2.6.32-5-amd64 (SMP w/1 CPU core)
 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash


-- 
with best regards,
Alexander Golovko
email: alexan...@ankalagon.ru
xmpp: alexan...@ankalagon.ru


signature.asc
Description: PGP signature


Bug#689797: Initial Czech translation of PO debconf template for bacula 5.2.6+dfsg-4

2012-10-06 Thread Alexander Golovko
tags 689797 + pending
--

Hi!

Thank you for your help!

Your translation added into git master branch, next uploaded
version will include this changes.


В Sat, 6 Oct 2012 13:35:29 +0200
Michal Šimůnek michal.simu...@gmail.com пишет:

 Package: bacula
 Version: 5.2.6+dfsg-4
 Severity: wishlist
 Tags: l10n, patch
 
 In attachment there is initial Czech translation of PO debconf
 template (cs.po) for package bacula, please include it.


-- 
with best regards,
Alexander Golovko
email: alexan...@ankalagon.ru
xmpp: alexan...@ankalagon.ru


signature.asc
Description: PGP signature


Bug#689771: wishlist

2012-10-06 Thread Holger Levsen
severity 689771 wishlist
thanks

Hi Thomas,

from #debian-release:

h01ger is #689771 really serious?
mehdi no

As you write yourself, it _should_ use lsb-functions... :-)
Why do you think this is serious (or even important)?


cheers,
Holger


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



Bug#476284: ITP: bulletphysics -- physics engine for games

2012-10-06 Thread Markus Koschany
Hello Thanatermesis,

i had a look at your debian directory and wondered, what's keeping you
from maintaining bullet within Debian?

I'm interested because libbullet is a requirement for FreeOrion, a
strategy game, which could probably be included in Debian if libbullet was
packaged. 

What's your thoughts on this?

Cheers,
Markus


signature.asc
Description: Digital signature


Bug#689800: nmu: olsrd_0.6.3-5

2012-10-06 Thread Andreas Beckmann
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: binnmu

nmu olsrd_0.6.3-5 . amd64 . -m Rebuild in a clean sid environment.

olsrd/amd64 was not built in a Debian sid environment and has a
unsatisfiable
  Depends: libc6 (= 2.15)
that can be solved by rebuilding in sid.


Andreas


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



Bug#672996: libstdc++6-4.6-dev: Static linking of C++ runtime fails due to relocation problems, recompiling with -fPIC needed.

2012-10-06 Thread Matthias Klose
tags 672996 + moreinfo
thanks

On 15.05.2012 12:47, Flynn Marquardt wrote:
 Package: libstdc++6-4.6-dev
 Version: 4.6.3-1
 Severity: normal
 
 Dear Maintainer,
 
 trying to link the C++-runtime statically with the option -static-libstdc++
 fails for me with following error:
 
 /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.a(ctype.o):
 relocation R_X86_64_32S against `vtable for std::ctypewchar_t' can not
 be used when making a shared object; recompile with -fPIC
 /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.a: could not read symbols:
 Bad value
 
 Please consider building /usr/lib/gcc/x86_64-linux-gnu/4.6/libstdc++.a
 with the Option -fPIC,
 maybe other version of gcc from version 4.5 (introducing the option
 -static-libstdc++) too.

the bug report is missing information how the objects are built and linked.


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



Bug#655106:

2012-10-06 Thread Francesco Muzio

Package: hpijs-ppds
Version: 3.12.6-3

Yes, now I use the latest version available on debian testing (3.12.6-3) 
and the problem still exists


Unfortunately no more news are coming from this page 
https://bugs.launchpad.net/hplip/+bug/934635



--- System information. ---
Architecture: i386
Kernel: Linux 3.2.23

Debian Release: wheezy/sid
500 testing ftp.it.debian.org

--- Package information. ---
Depends (Version) | Installed
==-+-==
printer-driver-hpijs (= 3.12.2-1) |
foomatic-filters (= 3.0.2) | 4.0.17-1


Package's Recommends field is empty.

Package's Suggests field is empty.


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



Bug#688587: gcc-4.6: g++-4.6-10 ice on valid code

2012-10-06 Thread Matthias Klose
reassign 688587 src:feel++
thanks

On 24.09.2012 07:02, Christophe Prud'homme wrote:
 Matthias,
 
 I first wanted to get back to something working for me, i.e. 4.6.3-8.
 I will upload later today (more probably provide some link to) some
 failing preprocessed files.
 
 Best regards
 C.
 
 On Sun, Sep 23, 2012 at 11:49 PM, Matthias Klose d...@debian.org wrote:
 you didn't provide the preprocessed source.

didn't happen yet. reassigning to feel++. Please make sure that you use the same
gcc and g++ versions for your build. there's a separate report about this.


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



Bug#689801: fvwm: ClickToFocus behavior depends on keyboard layout

2012-10-06 Thread Vladimir B. Savkin
Package: fvwm
Version: 1:2.5.30.ds-1
Severity: normal
Tags: l10n

When clicking on window title bar, if English keyboard layout is active, window
gets focus, which is expected and is what earlier versions of fvwm always did.
But when Russian layout is active, window does not get focus. It became broken
since lenny IIRC.

My keyboard configuration from /etc/default/keyboard:
XKBMODEL=pc104
XKBLAYOUT=us,ru
XKBVARIANT=winkeys
XKBOPTIONS=grp:toggle

Relevant configuration from .fvwmrc (Move-or-Raise function works in any
layout, only ClickToFocus is afffected):

Style * ClickToFocus

# Button 1 in Frame or Sides is a resize-or-raise, in Icons is a move or
# de-iconify, and on Top does a move-or-raise
# ButtonContext Modifi  Function
Mouse 1 FS  N   Resize-or-Raise
Mouse 1 I   N   Move-or-Iconify
Mouse 1 T   N   Move-or-Raise

AddToFunc Move-or-Raise I Raise
+   M Move
+   D Lower



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

Kernel: Linux 3.4.11 (SMP w/2 CPU cores)
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Shell: /bin/sh linked to /bin/bash

Versions of packages fvwm depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-2.1  generic font configuration library
ii  libfreetype6  2.4.2-2.1+squeeze4 FreeType 2 font engine, shared lib
ii  libfribidi0   0.19.2-1   Free Implementation of the Unicode
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libice6   2:1.0.6-2  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20100313-5 shared libraries for terminal hand
ii  libpng12-01.2.44-1+squeeze4  PNG library - runtime
ii  libreadline6  6.1-3  GNU readline and history libraries
ii  librplay3 3.3.2-12   rplay network audio system - share
ii  librsvg2-22.26.3-1   SAX-based renderer library for SVG
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libstroke00.5.1-6mouse strokes library -- runtime f
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxcursor1   1:1.1.10-2 X cursor management library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxft2   2.1.14-2   FreeType-based font drawing librar
ii  libxinerama1  2:1.1-3X11 Xinerama extension library
ii  libxpm4   1:3.5.8-1  X11 pixmap library
ii  libxrender1   1:0.9.6-1  X Rendering Extension client libra
ii  zlib1g1:1.2.3.4.dfsg-3   compression library - runtime

Versions of packages fvwm recommends:
ii  fvwm-icons20070101-1 icon *.xpm files from fvwm develop
pn  libx11-protocol-perl  none (no description available)
ii  perl-tk   1:804.029-1+b1 Perl module providing the Tk graph

Versions of packages fvwm suggests:
ii  cpp   4:4.4.5-1  The GNU C preprocessor (cpp)
pn  fvwm-themes   none (no description available)
ii  m41.4.14-3   a macro processing language
ii  menu  2.1.44 generates programs menu for all me
ii  wm-icons  0.4.0-5Themed icon set that is Window Man

-- debconf information:
* fvwm/upgrade/pre_2.5.8: true


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



Bug#689774: vera: The package vera should be rebuilt with new debhelper to get trigger support

2012-10-06 Thread Sven Joachim
Am 06.10.2012 um 11:16 schrieb Andreas Beckmann:

 Package: vera
 Version: 1.17-5
 Severity: normal

 Hi,

 package installation in sid reports:

   The package vera should be rebuilt with new debhelper to get trigger
   support

Note that the package has been orphaned for eight months¹.  Feel free to
prepare a QA upload.

Cheers,
   Sven


¹ http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=659056


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



Bug#689802: openmsx-catapult: needs updating for openmsx 0.9

2012-10-06 Thread Andreas Beckmann
Package: openmsx-catapult
Version: 0.8.2-1
Severity: grave
Tags: sid
Justification: renders package unusable
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package is no longer
installable in sid:

Package: openmsx-catapult
Version: 0.8.2-1
Depends: [...]
 openmsx (= 0.8.2), openmsx ( 0.8.3)

but sid has

Package: openmsx
Version: 0.9.1-1


Cheers,

Andreas


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



Bug#689803: easytag: Maximizing is not possible (using Gnome3)

2012-10-06 Thread Paul Woitaschek

Subject: easytag: Maximizing is not possible (using Gnome3)
Package: easytag
Version: 2.1.7-2
Severity: normal

Hey,

it is not possible to to maximize the windox by double-clicking the
bar or dragging it to the top. (in Gnome 3)
Only way to maximize the window is to dragging it by hand and
extend the size to fullscreen that way.
I'm using GNOME Shell 3.4.2


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

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

Versions of packages easytag depends on:
ii  libatk1.0-0 2.4.0-2
ii  libc6   2.13-35
ii  libcairo2   1.12.2-2
ii  libflac81.2.1-6
ii  libfontconfig1  2.9.0-7
ii  libfreetype62.4.9-1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-02.32.3-1
ii  libgtk2.0-0 2.24.10-2
ii  libid3-3.8.3c2a 3.8.3-15
ii  libid3tag0  0.15.1b-10
ii  libogg0 1.3.0-4
ii  libpango1.0-0   1.30.0-1
ii  libspeex1   1.2~rc1-6
ii  libstdc++6  4.7.1-7
ii  libtag1c2a  1.7.2-1
ii  libtagc01.7.2-1
ii  libvorbis0a 1.3.2-1.3
ii  libvorbisfile3  1.3.2-1.3
ii  libwavpack1 4.60.1-3
ii  zlib1g  1:1.2.7.dfsg-13

easytag recommends no packages.

easytag 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#689717: Patch to replace cpickle with msgpack

2012-10-06 Thread Timothy Arceri
Tags: patch

Patch to replace cpickle with msgpack

0001-Replace-cpickle-with-msgpack-for-serialization-to-fr.patch
Description: Binary data


Bug#688843: licensecheck: detect BSD-3-clause as BSD-2-clause

2012-10-06 Thread Benjamin Drung
retitle 688843 [licensecheck] detects modified BSD license as BSD-2-clause
thanks

Am Mittwoch, den 26.09.2012, 20:37 +1000 schrieb Dmitry Smirnov:
 On Wed, 26 Sep 2012 18:30:50 Adam D. Barratt wrote:
  I think my opinion here is fairly clear at the moment, but I'm also not
  the most active of the maintainers right now, so I'll leave things to
  see if any of the others comment.
  
 
 I see your point. I'm practically convinced but out of curiosity I'd like to 
 see another another response to this. Otherwise please feel free to close at 
 your discretion.

I agree with Adam. The provided license is not a BSD-3-clause license,
but a BSD-2-clause license with an additional clause. A BSD-2-clause
license is not equivalent to a BSD-2-clause license with an additional
clause. This additional clause could specify anything. I consider it a
bug that this license is detected as 'BSD-2-clause'. It should be
detected as 'modified BSD-2-clause' or as 'modified BSD'.

PS: It's called BSD, not BDS. ;)

PPS: Patches are always welcome. :)

-- 
Benjamin Drung
Debian  Ubuntu Developer


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


Bug#688200: fprobe: diff for NMU version 1.1-7.3

2012-10-06 Thread gregor herrmann
tags 688200 + patch
tags 688200 + pending
thanks

Dear maintainer,

I've prepared an NMU for fprobe (versioned as 1.1-7.3) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: DKP: Wann wir schreiten
diff -u fprobe-1.1/debian/changelog fprobe-1.1/debian/changelog
--- fprobe-1.1/debian/changelog
+++ fprobe-1.1/debian/changelog
@@ -1,3 +1,16 @@
+fprobe (1.1-7.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix modifies conffiles (policy 10.7.3): /etc/default/fprobe:
+apply recipe from debconf-devel(7):
+- don't install /etc/defautl/fprobe
+- create it in postinst if it doesn't exist
+- read it in .config
+- remove it in .postinst/purge
+(Closes: #688200)
+
+ -- gregor herrmann gre...@debian.org  Sat, 06 Oct 2012 15:09:30 +0200
+
 fprobe (1.1-7.2) unstable; urgency=low
 
   * Non-maintainer upload.
reverted:
--- fprobe-1.1/debian/default
+++ fprobe-1.1.orig/debian/default
@@ -1,7 +0,0 @@
-#fprobe default configuration file
-
-INTERFACE=eth0
-FLOW_COLLECTOR=localhost:2055	
-
-#fprobe can't distinguish IP packet from other (e.g. ARP)
-OTHER_ARGS=-fip
diff -u fprobe-1.1/debian/config fprobe-1.1/debian/config
--- fprobe-1.1/debian/config
+++ fprobe-1.1/debian/config
@@ -5,6 +5,15 @@
 # Use debconf.
 . /usr/share/debconf/confmodule
 
+# Load config file, if it exists.
+if [ -e /etc/default/fprobe ]; then
+	. /etc/default/fprobe || true
+
+	# Store values from config file into debconf db.
+	db_set fprobe/interface $INTERFACE
+	db_set fprobe/collector $FLOW_COLLECTOR
+fi
+
 
 db_input high fprobe/interface || true
 db_input high fprobe/collector || true
diff -u fprobe-1.1/debian/postinst fprobe-1.1/debian/postinst
--- fprobe-1.1/debian/postinst
+++ fprobe-1.1/debian/postinst
@@ -4,10 +4,30 @@
 # Use debconf.
 . /usr/share/debconf/confmodule
 
-if [ $1 = configure ]  [ -z $2 ]; then 	  
+# generate default file if it doesn't exist
+if [ ! -e /etc/default/fprobe ]; then
+	cat  /etc/default/fprobe -END
+	#fprobe default configuration file
+	
+	INTERFACE=eth0
+	FLOW_COLLECTOR=localhost:2055	
+	
+	#fprobe can't distinguish IP packet from other (e.g. ARP)
+	OTHER_ARGS=-fip
+	END
+fi
+
+if [ $1 = configure ]; then
 db_get fprobe/interface  interface=$RET
 db_get fprobe/collector  collector=$RET
 		
+# If the admin deleted or commented some variables but then set
+# them via debconf, (re-)add them to the conffile.
+test -z $interface || grep -Eq '^ *INTERFACE=' /etc/default/fprobe || \
+	echo INTERFACE=  /etc/default/fprobe
+test -z $flow_collector || grep -Eq '^ *FLOW_COLLECTOR=' /etc/default/fprobe || \
+	echo FLOW_COLLECTOR=  /etc/default/fprobe
+
 sed -i s/^INTERFACE=.*$/INTERFACE=\$interface\/ /etc/default/fprobe
 sed -i s/^FLOW_COLLECTOR=.*$/FLOW_COLLECTOR=\$collector\/ /etc/default/fprobe
 fi	
only in patch2:
unchanged:
--- fprobe-1.1.orig/debian/postrm
+++ fprobe-1.1/debian/postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+if [ $1 = purge ]; then
+	rm -f /etc/default/fprobe
+fi
+
+#DEBHELPER#


signature.asc
Description: Digital signature


Bug#689804: iceweasel-vimperator: not fully funtional with iceweasel 15

2012-10-06 Thread Sebastian Ramacher
Package: iceweasel-vimperator
Version: 3.3-2
Severity: important

With iceweasel installed from experimental (15.0.1-1), vimperator isn't
really usable. For example the completion and follow-hint do not work at
all. Furthermore the command line is spammed with message like TypeError:
can't wrap XML objects.

There is a new upstream release available, that contains compatibility fixes
for versions 13 and above. From the changelog:

2012-08-04:
* version 3.5
* Firefox 13-15 compatibility fixes
...

It'd be great if you could upload the new upstream release to
experimental.

Regards

-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (650, 'unstable'), (601, 'testing'), (600, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.5-trunk-amd64 (SMP w/4 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 iceweasel-vimperator depends on:
ii  iceweasel  15.0.1-1

iceweasel-vimperator recommends no packages.

iceweasel-vimperator suggests no packages.

-- no debconf information
-- 
Sebastian Ramacher


signature.asc
Description: Digital signature


Bug#689805: Should recommend package vlc-plugin-pulse

2012-10-06 Thread Sylvain Archenault

Package: phonon-backend-vlc
Version: 0.6.0-1
Severity: minor

--- Please enter the report below this line. ---
Amarok needs the vlc-plugin-pulse package to be able to play mp3 files 
via phonon with the vlc backend.


So I think phonon-backend-vlc should at least recommend this package, if 
not having it as a dependency.


Sylvain

--- System information. ---
Architecture: amd64
Kernel:   Linux 3.5.4

Debian Release: wheezy/sid
  500 unstablehttp.debian.net
  500 experimentalmozilla.debian.net

--- Package information. ---
Depends  (Version) | Installed
==-+-===
libc6 (= 2.4) | 2.13-35
libphonon4  (= 4:4.6.0.0) | 4:4.6.0.0-2
libqtcore4  (= 4:4.7.0~beta1) | 4:4.8.2+dfsg-2
libqtgui4 (= 4:4.6.0) | 4:4.8.2+dfsg-2
libstdc++6  (= 4.1.1) | 4.7.2-2
libvlc5 (= 2.0.0) | 1:2.0.3-dmo4
libvlccore5 (= 2.0.0) | 1:2.0.3-dmo4
vlc-nox| 2.0.3-3


Recommends  (Version) | Installed
=-+-===
vlc   | 2.0.3-3


Package's Suggests field is empty.


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



Bug#689806: mh-e: package installation creates /root/.gnupg/*

2012-10-06 Thread Andreas Beckmann
Package: mh-e
Version: 8.3-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed that your package creates files in
/root. From the attached log (scroll to the bottom):

1m4.7s ERROR: FAIL: Package purging left files on system:
  /root/.gnupg/  not owned
  /root/.gnupg/gpg.conf  not owned
  /root/.gnupg/pubring.gpg   not owned
  /root/.gnupg/secring.gpg   not owned

Creating stuff in /root is a FHS and policy violation. (And of course
these files should not be deleted by maintainer scripts.)
But it is also an indication that the package operation may depend on
root's .gnupg configuration (and package installation might even fail if
that configuration is broken). That would be a case for configuration
files not in /etc.


Cheers,

Andreas


mh-e_8.3-1.log.gz
Description: GNU Zip compressed data


Bug#689807: gnus-bonus-el: package installation creates /root/.gnupg/*

2012-10-06 Thread Andreas Beckmann
Package: gnus-bonus-el
Version: 35.2
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed that your package creates files in
/root. From the attached log (scroll to the bottom):

1m4.7s ERROR: FAIL: Package purging left files on system:
  /root/.gnupg/  not owned
  /root/.gnupg/gpg.conf  not owned
  /root/.gnupg/pubring.gpg   not owned
  /root/.gnupg/secring.gpg   not owned

Creating stuff in /root is a FHS and policy violation. (And of course
these files should not be deleted by maintainer scripts.)
But it is also an indication that the package operation may depend on
root's .gnupg configuration (and package installation might even fail if
that configuration is broken). That would be a case for configuration
files not in /etc.


Cheers,

Andreas


gnus-bonus-el_35.2.log.gz
Description: GNU Zip compressed data


Bug#689415: RFS: flvmeta/1.1.0-1 -- Metadata injector for FLV video files

2012-10-06 Thread Neutron Soutmun
Hello,

On Sat, Oct 06, 2012 at 11:33:59AM +, Bart Martens wrote:
 Hello Neutron Soutmun,
 
 I had a look at flvmeta at mentors uploaded there on 2012-10-02 11:57.
 
 I see that these files are not identical :
 
 ef98d55ff13f7a347be9c37ef5222e84  flvmeta-1.1.0.tar.gz
 a12a28ff24fb556a1a670ec9aa668081  flvmeta_1.1.0.orig.tar.gz
 
 Where did you get flvmeta_1.1.0.orig.tar.gz from ? I got flvmeta-1.1.0.tar.gz
 from here :
 http://flvmeta.googlecode.com/files/flvmeta-1.1.0.tar.gz

Hello,

On Sat, Oct 6, 2012 at 6:33 PM, Bart Martens ba...@debian.org wrote:
 Hello Neutron Soutmun,

 I had a look at flvmeta at mentors uploaded there on 2012-10-02 11:57.

 I see that these files are not identical :

 ef98d55ff13f7a347be9c37ef5222e84  flvmeta-1.1.0.tar.gz
 a12a28ff24fb556a1a670ec9aa668081  flvmeta_1.1.0.orig.tar.gz

 Where did you get flvmeta_1.1.0.orig.tar.gz from ? I got
 flvmeta-1.1.0.tar.gz
 from here :
 http://flvmeta.googlecode.com/files/flvmeta-1.1.0.tar.gz

I get it using uscan and the debian/watch file is

version=3
http://githubredir.debian.net/github/noirotm/flvmeta 
/v(.+)\.(?:zip|tgz|tbz2|txz|tar\.gz|tar\.bz2|tar\.xz)

As I talked with upstream, he moved the main development and also
the tarball release to github.

The original tarball dir is noirotm-flvmeta-85a06a6/,
therefore I repack it by rename dir to flvmeta-1.1.0/ without any
changes to its contents.

I'm not sure that the repacked tarball as in this case that I do is
allowed or not ?

If it's not allowed, I will prepare the package again with the original
tarball.

Best regards,
Neutron Soutmun


signature.asc
Description: Digital signature


Bug#688205: closed by gregor herrmann gre...@debian.org (Bug#688205: fixed in xsp 2.10-2.2)

2012-10-06 Thread Andreas Beckmann
Control: found -1 2.10-2.2

Hi Gregor,

there seems to be a small error in the .config script. If I have 
piuparts do an --install-remove-install test, the second installation 
(package is in config files remaining state) fails (for both
mono-xsp2, mono-xsp4) with

  Selecting previously unselected package mono-xsp4.
  (Reading database ... 10216 files and directories currently installed.)
  Unpacking mono-xsp4 (from .../mono-xsp4_2.10-2.2_all.deb) ...
  invoke-rc.d: policy-rc.d denied execution of stop.
  Setting up mono-xsp4 (2.10-2.2) ...
  dpkg: error processing mono-xsp4 (--configure):
   subprocess installed post-installation script returned error exit status 20
  Errors were encountered while processing:
   mono-xsp4

entering the chroot I can manually get this debug information:

# DEBIAN_FRONTEND=noninteractive DEBCONF_DEBUG=developer sh -x 
/var/lib/dpkg/info/mono-xsp4.postinst configure
+ set -e
+ . /usr/share/debconf/confmodule
+ [ !  ]
+ PERL_DL_NONLAZY=1
+ export PERL_DL_NONLAZY
+ [  ]
+ exec /usr/share/debconf/frontend /var/lib/dpkg/info/mono-xsp4.postinst 
configure
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LC_TIME = en_DK.UTF-8,
LC_CTYPE = en_US.UTF-8,
LC_COLLATE = POSIX,
LANG = (unset)
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
debconf (developer): frontend started
debconf (developer): frontend running, package name is mono-xsp4
debconf (developer): starting /var/lib/dpkg/info/mono-xsp4.config configure
debconf (developer): -- VERSION 2.0
debconf (developer): -- 0 2.0
debconf (developer): -- CAPB backup
debconf (developer): -- 0 multiselect escape
debconf (developer): -- TITLE XSP4 WebServer
debconf (developer): -- 0
debconf (developer): -- SET xsp4/xsp4_autostart true
debconf (developer): -- 0 value set
debconf (developer): -- SET xsp4/xsp4_bind 0.0.0.0
debconf (developer): -- 0 value set
debconf (developer): -- GET xsp4/xsp4_port 8084
debconf (developer): -- 20 Incorrect number of arguments

Ahh, there it is in .config: needs a s/db_get/db_set/

# get existing values
xsp4_default=/etc/default/mono-xsp4
if [ -e $xsp4_default ]; then
. $xsp4_default || true
db_set xsp4/xsp4_autostart $start_boot
db_set xsp4/xsp4_bind  $address
db_get xsp4/xsp4_port  $port
fi

Andreas


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



Bug#689725: alsa-utils: Notable sound delay after pausing the playback

2012-10-06 Thread Elimar Riesebieter
* Frank eular.fr...@gmail.com [2012-10-06 15:52 +0800]:

 On 10/06/2012 01:04 AM, Elimar Riesebieter wrote:
[...]

 I have some friends suffering the same problem. Um, mostly, two tenths of
 one second is not that important (for example, a good music is euphonious
 whether two tenths is missing), but it affects my transcription. Well,
 anyway, I should concede that I chose the wrong level.

Hmm, I can't regocnize what they are running.

 Of course not. Please just purge alsa-utils and try again

You didn't told me wheter sound works as expected without
alsa-utils?

[...]
 [AO_ALSA] Unable to find simple control 'Master',0.
 Your soundcard doesn't seem to be configured very well. Please
 delete /var/lib/alsa/asound.state, restart alsa and try again. This
 works only if alsa-utils is installed.
 Hum, I purged alsa-utils and reinstalled, deleted /var/lib/alsa/asound.state
 and ran
 # service alsa-utils restart
 But unable to find ... remained.

What?


 Postscript: my USB sound card is ugly. I remember somebody (maybe you) told
 me to edit /etc/modprobe.d/alsa-base.conf:
 # options snd-usb-audio index=-2
 I don't know whether it affects.

What is this information good for? Do you want't to run your usb card or
not?

Elimar

-- 
  Experience is something you don't get until
  just after you need it!


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



Bug#683686: Shouldn't HTTP 404 errors related to Packages files be passed through to the client?

2012-10-06 Thread Andras Korn
[Resending Aug 10 message where I forgot to Cc the bug address.]

On Sun, Aug 05, 2012 at 12:20:07PM +0200, Eduard Bloch wrote:

 * Andras Korn [Thu, Aug 02 2012, 10:16:41PM]:
  Package: apt-cacher-ng
  Version: 0.7.6-1
 
 Seriously? The messages below say that it's 0.7.4, not 0.7.6!

Sorry, I'm filing the bug on one box and running apt-cacher on several
boxes. The problem manifests both with 0.7.4 and 0.7.6.

 And where is the config?

Here is one:

CacheDir: /var/cache/apt-cacher-ng
LogDir: /var/log/apt-cacher-ng
Port:4128
Remap-debrep: file:deb_mirror*.gz file:backends_debian /ftp.debian.org/debian/ 
/cdn.debian.net/debian/ /debian.mirrors.crysys.hu/debian/ /debian ; 
http://ftp.at.debian.org/debian/ http://cdn.debian.net/debian/ 
http://ftp.hu.debian.org/debian/ file:backends_debian ; keyfile=Release 
keyfile=.deb
Remap-uburep: file:ubuntu_mirrors file:backends_ubuntu /ubuntu ; 
http://hu.archive.ubuntu.com/ubuntu/ http://at.archive.ubuntu.com/ubuntu/ 
file:backends_ubuntu ; keyfile=Release keyfile=.deb
Remap-debsec: /security.debian.org/ /ftp.hu.debian.org/debian-security/ 
/debian-security ; http://security.debian.org/ ; keyfile=Release keyfile=.deb 
keyfile=Packages keyfile=Packages.bz2 keyfile=Sources keyfile=Sources.bz2
Remap-debbackports: /backports.org/debian/ /debian-backports ; 
http://backports.org/debian/
Remap-debpeople: /people.debian.org/ /debian-people ; http://people.debian.org/
Remap-debmultimedia: /debian-multimedia file:marillat_mirrors ; 
file:marillat_mirrors
Remap-skype: /download.skype.com/linux/repos/debian /skype ; 
http://download.skype.com/linux/repos/debian/
Remap-opera: /deb.opera.com/opera /opera ; http://deb.opera.com/opera/
Remap-volatile: /volatile.debian.org/debian-volatile/ 
/ftp2.de.debian.org/debian-volatile/ /debian-volatile ; 
http://volatile.debian.org/debian-volatile/ 
http://ftp2.de.debian.org/debian-volatile/
Remap-debsnap: /snapshot.debian.net /debian-snapshot ; 
http://snapshot.debian.net/
Remap-canonical: /archive.canonical.com/ubuntu /canonical ; 
http://archive.canonical.com/ubuntu/
Remap-grml: http://deb.grml.org/ /grml ; http://deb.grml.org/
Remap-igraph: http://cneurocvs.rmki.kfki.hu/ /igraph ; 
http://cneurocvs.rmki.kfki.hu/
Remap-debunofficial: http://ftp.debian-unofficial.org/debian/ 
/debian-unofficial ; http://ftp.debian-unofficial.org/debian/
Remap-backports: http://www.backports.org/debian /backports ; 
http://www.backports.org/debian/
Remap-gosa: http://oss.gonicus.de/debian /gosa ; http://oss.gonicus.de/debian/
Remap-virtualbox: http://download.virtualbox.org/virtualbox/debian /virtualbox 
/vbox ; http://download.virtualbox.org/virtualbox/debian
ReportPage: acng-report.html
ForeGround: 0
ForceManaged: 0
ExTreshold: 5
ExAbortOnProblems: 0
MaxStandbyConThreads: 4
MaxConThreads: 48
LogSubmittedOrigin: 1
NetworkTimeout: 15

On another server, I have the same, except:

-Remap-debrep: file:deb_mirror*.gz file:backends_debian /ftp.debian.org/debian/ 
/cdn.debian.net/debian/ /debian.mirrors.crysys.hu/debian/ /debian ; 
http://ftp.at.debian.org/debian/ http://cdn.debian.net/debian/ 
http://ftp.hu.debian.org/debian/ file:backends_debian ; keyfile=Release 
keyfile=.deb
+Remap-debrep: file:deb_mirror*.gz /ftp.debian.org/debian/ 
/cdn.debian.net/debian/ /debian.mirrors.crysys.hu/debian/ /debian ; 
http://ftp.at.debian.org/debian/ http://cdn.debian.net/debian/ 
http://ftp.hu.debian.org/debian/ http://ftp.at.debian.org/debian/ 
http://ftp.kfki.hu/linux/debian/ http://ftp.externet.hu/debian/ ; 
keyfile=Release keyfile=.deb
-Remap-uburep: file:ubuntu_mirrors file:backends_ubuntu /ubuntu ; 
http://hu.archive.ubuntu.com/ubuntu/ http://at.archive.ubuntu.com/ubuntu/ 
file:backends_ubuntu ; keyfile=Release keyfile=.deb
+Remap-uburep: file:ubuntu_mirrors /ftp.hu.debian.org/ubuntu/ /ubuntu ; 
http://hu.archive.ubuntu.com/ubuntu/ http://at.archive.ubuntu.com/ubuntu/ 
http://ftp.kfki.hu/linux/ubuntu/ ; keyfile=Release keyfile=.deb

  It seems to me that in this case, tools like apt-get and debootstrap would
  try Packages.gz and Packages.bz2 as well (which do exist), but the 500 error
  throws them off.
 
 Your guess is close but I think it's another thing. The Bad mirror
 code is generated by the code that attempts to detect a mirror with
 missing architecture. The skipping of other Packages files would also be
 enforced by that code. But this method only becomes active if you have
 used the keyfile=... keyword in your config. Have you?

Yes, see above.

  Resolving aptcacher (aptcacher)... 192.168.0.254
  Connecting to aptcacher (aptcacher)|192.168.0.254|:3142... connected.
  HTTP request sent, awaiting response...
HTTP/1.1 500 Bad mirror
Content-Length: 144
Content-Type: text/html
Date: Thu Aug  2 19:36:51 2012
Server: Debian Apt-Cacher NG/0.7.6
Connection: Keep-Alive
  2012-08-02 21:36:51 ERROR 500: Bad mirror.
  
  This is what happens when I query it directly instead of going through
  Squid. I suppose Squid discards Bad mirror and 

Bug#689808: avahi-daemon: detection of remote services not correctly restored upon return from hibernate/sleep

2012-10-06 Thread Martin-Éric Racine
Package: avahi-daemon
Version: 0.6.31-1
Severity: important

Detection of remote services (SSH shares in Nautilus, remote PulseAudio
sinks in gnome-control-center's Audio Properties capplet, etc.) are not
correctly restored upon returning from hibernate/sleep. Instead, I have
to input 'sudo invoke-rc.d avahi-daemon restart' manually. This is on a
GNOME desktop.

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

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

Versions of packages avahi-daemon depends on:
ii  adduser3.113+nmu3
ii  bind9-host [host]  1:9.8.1.dfsg.P1-4.2
ii  dbus   1.6.0-1
ii  libavahi-common3   0.6.31-1
ii  libavahi-core7 0.6.31-1
ii  libc6  2.13-35
ii  libcap21:2.22-1.2
ii  libdaemon0 0.14-2
ii  libdbus-1-31.6.0-1
ii  libexpat1  2.1.0-1
ii  lsb-base   4.1+Debian7

Versions of packages avahi-daemon recommends:
ii  libnss-mdns  0.10-3.2

Versions of packages avahi-daemon suggests:
ii  avahi-autoipd  0.6.31-1

-- 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#689809: Content of DESC field not put into meta-description tag

2012-10-06 Thread Daniel Leidert
Package: nanoblogger
Version: 3.4.2-3
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Consider using the --desc switch or putting content into the DESC field of
an entry. The resulting entry file contains an empty tag:

meta name=description content= /

although this tag should contain the content of the DESC field. The bug
has been fixed in 3.5 RC 1. A patch is attached.

Regards, Daniel


- -- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (850, 'unstable'), (700, 'testing'), (560, 'stable'), (110, 
'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages nanoblogger depends on:
ii  bsdmainutils  9.0.3

Versions of packages nanoblogger recommends:
ii  markdown  1.0.1-7
ii  tidy  20091223cvs-1.2

Versions of packages nanoblogger suggests:
ii  epiphany-browser [www-browser]  3.4.2-2
ii  galeon [www-browser]2.0.7-2.1+b1
ii  iceape [www-browser]2.7.7-1
ii  iceweasel [www-browser] 10.0.7esr-2
ii  kazehakase [www-browser]0.5.8-4
ii  links2 [www-browser]2.7-1
ii  lynx-cur [www-browser]  2.8.8dev.14-1
ii  nanoblogger-extra   3.4.2-2
ii  netrik [www-browser]1.16.1-1.1
ii  opera [www-browser] 12.02.1578
ii  w3m [www-browser]   0.5.3-8

- -- no debconf information

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

iEYEARECAAYFAlBwRnQACgkQm0bx+wiPa4w4YwCeNNhYQBRDgMqQa2vqakn+mI9I
tnYAoL6HQZtzvJncKTSWZtpgHa1TLOym
=7G7h
-END PGP SIGNATURE-
Author: n1xt3r
Origin: http://nanoblogger.svn.sourceforge.net/viewvc/nanoblogger/branches/nanoblogger-3.5/
Description: 2011-07-31 21:16  n1xt3r
 * - Bug Fix: Description was not being loaded from entry's
 metadata.

--- a/lib/tools.sh
+++ b/lib/tools.sh
@@ -330,8 +330,8 @@
 		read_metadata DATE $METADATA_FILE; NB_MetaDate=$METADATA
 		NB_EntryDate=$NB_MetaDate;;
 	DESC)
-		NB_EntryDescription=$NB_MetaDescription
-		read_metadata FORMAT $METADATA_FILE; NB_MetaFormat=$METADATA;;
+		read_metadata DESC $METADATA_FILE; NB_MetaDescription=$METADATA
+		NB_EntryDescription=$NB_MetaDescription;;
 	FORMAT)
 		read_metadata FORMAT $METADATA_FILE; NB_MetaFormat=$METADATA
 		NB_EntryFormat=$NB_MetaFormat;;
--- a/nb
+++ b/nb
@@ -746,7 +746,7 @@
 			echo $addweblog_title
 			read -p $NB_PROMPT NB_EntryTitle
 		fi
-		[ ! -z $USR_TEXT ]  NB_EntryBody=$USR_TEXT; USR_TEXT=
+		[ ! -z $USR_TEXT ]  NB_MetaBody=$USR_TEXT; USR_TEXT=
 		[ ! -z $USR_DESC ]  NB_EntryDescription=$USR_DESC
 		# prompt for description interactively
 		if [ -z $NB_EntryDescription ]  [ $DESC_PROMPT != 1 ] 
@@ -770,7 +770,7 @@
 		write_var $USR_METAVAR $USR_SETVAR $IMPORT_FILE
 		cat $IMPORT_FILE  $NB_EditFile
 	fi
-	if [ -z $NB_EntryBody ]; then
+	if [ -z $NB_MetaBody ]; then
 		nb_msg $addweblog_editnew
 		nb_edit -p $NB_EditFile
 		# preserve custom meta variable and data


Bug#689810: jh_repack: should also remove Subversion working copy administrative directories

2012-10-06 Thread Francesco Poli (wintermute)
Package: javahelper
Version: 0.43
Severity: wishlist
Tags: patch

Hello again,
this bug report is a sort of sequel for #689788, so, if you liked the
first one, please enjoy the second!   ;-)

The upstream tarball mentioned in #689788 (irclib-1.10.tar.gz) includes
several Subversion working copy administrative directories (*/.svn).
I think that jh_repack should also remove those directories and their
content.

The attached patch adds this feature to jh_repack.

Please apply my patch, if you agree with the usefulness of the additional
feature and with its implementation. Please remember to update the
documentation (/usr/share/doc/javahelper/tutorial.*) accordingly.

Thanks for your time!


Legal details: to the extent that my patch is covered by my copyright,
I hereby release it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation (same terms as
the rest of javahelper).



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

Kernel: Linux 3.2.0-3-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/bash

Versions of packages javahelper depends on:
ii  bsdmainutils 9.0.3
ii  dctrl-tools  2.22.2
ii  debhelper9.20120909
ii  devscripts   2.12.4
ii  dpkg-dev 1.16.8
ii  libarchive-zip-perl  1.30-6

javahelper recommends no packages.

Versions of packages javahelper suggests:
pn  cvs   none
ii  gawk  1:4.0.1+dfsg-2
ii  tofrodos  1.7.9.debian.1-1

-- no debconf information


jh_repack-also_rm_svn.diff.gz
Description: GNU Zip compressed data


Bug#689811: mp3diags: incorrect debian/copyright and confusing upstream license information

2012-10-06 Thread Bart Martens
Package: mp3diags
Severity: serious
Version: 1.0.11.076-1

The information in debian/copyright is not correct.

For example, src/SerSupport.cpp has license GNU General Public License version
2 as published by the Free Software Foundation, while debian/copyright claims
that it has license GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option) any
later version.

Another example is that the files in src/images/ appear to have license GPL-3
or LGPL-3, see the files src/images/*txt, and that is not mentioned in
debian/copyright.  But when I look in the .svg-files then I see GPL/2.0 and
LGPL/2.1.  It is not clear which license(s) apply.

Also, the upstream source contains these licenses, and it is not clear to which
files these licenses apply:
  license.boost.txt
  license.gplv2.txt
  license.gplv3.txt
  license.lgpl-2.1.txt
  license.lgplv3.txt
  license.zlib.txt
  src/licences/zlib.txt
  src/licences/lgplv3.txt
  src/licences/lgpl-2.1.txt
  src/licences/gplv2.txt
  src/licences/gplv3.txt
  src/licences/boost.txt


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



Bug#689812: biomaj-watcher: deletes shipped files: /usr/share/java/webapps/biomaj-watcher/jobs.*

2012-10-06 Thread Andreas Beckmann
Package: biomaj-watcher
Version: 1.2.0-9
Severity: important
User: debian...@lists.debian.org
Usertags: piuparts


Hi,

during a test with piuparts I noticed your package deletes some of the
files it ships, from the attached log:

0m40.4s ERROR: FAIL: debsums reports modifications inside the chroot:
  debsums: missing file /usr/share/java/webapps/biomaj-watcher/jobs.xml (from 
biomaj-watcher package)
  debsums: missing file /usr/share/java/webapps/biomaj-watcher/jobs.xsd (from 
biomaj-watcher package)

If these are not needed, they shouldn't be shipped at all.


Andreas


biomaj-watcher_1.2.0-9.log.gz
Description: GNU Zip compressed data


Bug#689813: libgraphite2-3: misses Breaks: libgraphite2-2.0.0

2012-10-06 Thread Andreas Beckmann
Package: libgraphite2-3
Version: 1.2.0-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts
Control: affects -1 libgraphite2-dev

Hi,

during a test with piuparts I noticed your package is missing a Breaks
or Conflicts relation with libgraphite2-2.0.0.

Debsums reports errors due to the incomplete replacement of that
package:

0m46.5s ERROR: FAIL: debsums reports modifications inside the chroot:
  /usr/lib/libgraphite2.so.2.0.0


Cheers,

Andreas


libgraphite2-dev_1.2.0-1.log.gz
Description: GNU Zip compressed data


Bug#688059: samba: files not deleted, smbstatus segfaults

2012-10-06 Thread Oxan van Leeuwen

On 02-10-12 06:50, Christian PERRIER wrote:

Quoting Oxan van Leeuwen (o...@oxanvanleeuwen.nl):

On 30-09-12 14:16, Christian PERRIER wrote:
I think it are actually two related bugs, instead of one. The second
patch seems to fix the inability to delete files, and the first
patch fixes the smbstatus segfault caused by that. If it would help
to get this into wheezy, I can create and test a samba 3.6.6-3
package with these two patches applied?


If you have a testcase, I would really appreciate your help, yes. I
have timetoworkon preparing a new package, but much less for testing
andreviewing  the  possible patches.



I've been running a modified 3.6.6-3 with the two patches applied for a few 
days now, and it looks like it solves the problem. Files can be deleted 
without problems and I don't get any smbstatus segfaults.



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



Bug#662103: phonon-backend-vlc: Pausing and resuming in Amarok changes volume

2012-10-06 Thread Mark Cave-Ayland
I was pleasantly surprised to find that phonon-backend-vlc 0.6.0-1 was 
pushed to wheezy during my last set of updates, and I can confirm that 
this new package fixes the issue for me too.


Thank you for all your hard work!


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



Bug#689814: unblock: gnuradio/3.6.1-1

2012-10-06 Thread A. Maitland Bottoms
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

The gnuradio 3.6.1-1 source was accepted into unstable
on 12 June 2012:
http://packages.qa.debian.org/g/gnuradio/news/20120612T181727Z.html

Since that was before the Wheezy freeze, this should apply:
Any packages in unstable before the 19:52 dinstall begins on that day
will be given automatic freeze exceptions (for the specific version in
unstable).

All other architectures built before the freeze, the ia64 binaries
only recently have been uploaded.
(Subject: gnuradio_3.6.1-1_ia64.changes ACCEPTED into unstable
 Date: Sat, 06 Oct 2012 04:17:55 +)

It would be good to release Wheezy with gnuradio 3.6.1

- -Maitland
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.9 http://mailcrypt.sourceforge.net/

iEYEARECAAYFAlBwVCAACgkQkwbJvNrxBUzhAgCfXQ37ln8i8GnpadAcQJeAeJ2T
kGsAn2VVM2qXLucIg3anZw1jCCYLzSnA
=S4F+
-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#688205: closed by gregor herrmann gre...@debian.org (Bug#688205: fixed in xsp 2.10-2.2)

2012-10-06 Thread gregor herrmann
On Sat, 06 Oct 2012 16:11:14 +0200, Andreas Beckmann wrote:

 there seems to be a small error in the .config script. If I have 
 piuparts do an --install-remove-install test, the second installation 
 (package is in config files remaining state) fails (for both
 mono-xsp2, mono-xsp4) with

Oops :/
 
 debconf (developer): -- GET xsp4/xsp4_port 8084
 debconf (developer): -- 20 Incorrect number of arguments
 
 Ahh, there it is in .config: needs a s/db_get/db_set/

Wow, thanks for the detailed debugging.
 
 # get existing values
 xsp4_default=/etc/default/mono-xsp4
 if [ -e $xsp4_default ]; then
 . $xsp4_default || true
 db_set xsp4/xsp4_autostart $start_boot
 db_set xsp4/xsp4_bind  $address
 db_get xsp4/xsp4_port  $port
 fi

How embarrassing, sorry for this silly mistake.

Cheers,
gregor, re-uploading shortly

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Funny Van Dannen: Katzepissepistole


signature.asc
Description: Digital signature


Bug#688319: devscripts: Please consider including the 'yodack' tool

2012-10-06 Thread Benjamin Drung
Am Freitag, den 28.09.2012, 15:07 +0200 schrieb Gergely Nagy:
 Let me know if there's anything I can do to help this script be
 integrated into devscripts!

This is just my opinion: I like to see shunit2 tests for yodack before
integrating it into devscripts. To make yodack testable, it should be
possible to output the command files instead of uploading them. Then you
can compare the command files with the expected content. You can also
test the return value of yodack and test the behavior for invalid input.

-- 
Benjamin Drung
Debian  Ubuntu Developer


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


Bug#689813: libgraphite2-3: misses Breaks: libgraphite2-2.0.0

2012-10-06 Thread Rene Engelhard
Hi,

On Sat, Oct 06, 2012 at 05:29:56PM +0200, Andreas Beckmann wrote:
 during a test with piuparts I noticed your package is missing a Breaks
 or Conflicts relation with libgraphite2-2.0.0.

No, IMHO it isn't. Read the policy 7.6 again.[1]
Replaces: is fully correct for replacing files in older packages.

Yes, you can argue it's a case of 7.6.2, but see below.

 Debsums reports errors due to the incomplete replacement of that
 package:
 
 0m46.5s ERROR: FAIL: debsums reports modifications inside the chroot:
   /usr/lib/libgraphite2.so.2.0.0

Then that's a bug in the checking. Of course the new package replaces
the old file with a symlink. 

And libgraphite2-3 Provides: libgraphite-2.0.0, so a Breaks:/Conflicts: would
need to be versioned, given the whole point of this symlink and the Provides: is
to save a tansition for a library which didn't really change ABI/API (yet).

I am not sure if with a conflicts: it would seamlessly upgrade to libgraphite3-2
even with packages still depending on libgraphite2-2.0.0

Regards,

Rene

[1] yes, it talks about Breaks: but this is for the split, as the old package 
wouldn't
work with the new as the example, which doesn't apply here.


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



Bug#558586: Updated hyperstraier/Hurd patch

2012-10-06 Thread Pino Toscano
found 558586 hyperestraier/1.4.13-7
thanks

Hi,

sorry for reopening the bug, but unfortunately between the hyperestraier 
version against I produced the original patch (1.4.9) and the one it was 
applied (1.4.13) were introduced more usages of PATH_MAX.
Furthermore, openjdk is not available on the Hurd yet, so the Java 
binding has to be excluded on Hurd too (patch debian.diff).
Attached there is an updated version of the hurd-compat-pathmax path, 
which replaces the current version (also simplifying the changes already 
there -- yay cbsprintf); if the new changes are deemed too intrusive, I 
can provide the poor man solution for this (#define PATH_MAX if not 
defined already).

Thanks,
-- 
Pino Toscano
Description: fix the unconditional usage of the PATH_MAX constant.
Origin:  vendor
Author:  Pino Toscano p...@debian.org
Last-Update: 2012-10-06

--- a/estseek.c
+++ b/estseek.c
@@ -1486,14 +1486,14 @@ static void showtop(void){
 static void expandquery(const char *word, CBLIST *result){
   CBLIST *words;
   const char *tmpdir;
-  char oname[PATH_MAX], cmd[PATH_MAX], *ebuf;
+  char *oname, *cmd, *ebuf;
   int i;
   cblistpush(result, word, -1);
   tmpdir = getenv(TMP);
   if(!tmpdir) tmpdir = getenv(TEMP);
   if(!tmpdir) tmpdir = ESTPATHSTR tmp;
-  sprintf(oname, %s%c%s.%08d, tmpdir, ESTPATHCHR, g_scriptname, 
(int)getpid());
-  sprintf(cmd, %s  %s, g_qxpndcmd, oname);
+  oname = cbsprintf(%s%c%s.%08d, tmpdir, ESTPATHCHR, g_scriptname, 
(int)getpid());
+  cmd = cbsprintf(%s  %s, g_qxpndcmd, oname);
   ebuf = cbsprintf(ESTWORD=%s, word);
   putenv(ebuf);
   system(cmd);
@@ -1506,6 +1506,8 @@ static void expandquery(const char *word
 cblistclose(words);
   }
   unlink(oname);
+  cbfree(cmd);
+  cbfree(oname);
 }
 
 
--- a/estscout.c
+++ b/estscout.c
@@ -425,21 +425,29 @@ static void showresult(void){
   CBMAP *rmap;
   CBLIST *list;
   const char *rp;
-  char tmppath[PATH_MAX], *expr;
-  int i, j, num, hnum, max;
+  char *tmppath, *expr;
+  int i, j, num, hnum, max, l;
   struct stat sbuf;
   time_t now;
+  size_t tmppathlen;
   printf(Content-Type: text/plain\r\n);
   printf(Cache-Control: no-cache, must-revalidate, no-transform\r\n);
   printf(Pragma: no-cache\r\n);
   printf(X-Run-Count: %d\r\n, g_runcnt);
   printf(\r\n);
+  tmppath = NULL;
   now = time(NULL);
+  tmppathlen = 0;
   if(*g_tmpdir != '\0'  *g_tmpdir != '@'  g_cclife = 0 
  (now + g_runcnt) % CCPURGEFREQ == 1  (list = cbdirlist(g_tmpdir)) != 
NULL){
 for(i = 0; i  cblistnum(list); i++){
   rp = cblistval(list, i, NULL);
   if(!cbstrbwmatch(rp, CACHESUFFIX)) continue;
+  l = strlen(g_tmpdir) + 1 + strlen(rp) + 1;
+  if (l  tmppathlen){
+tmppath = cbrealloc(tmppath, l);
+tmppathlen = l;
+  }
   sprintf(tmppath, %s%c%s, g_tmpdir, ESTPATHCHR, rp);
   if(stat(tmppath, sbuf) != -1  now - sbuf.st_mtime  g_cclife) 
unlink(tmppath);
 }
@@ -539,6 +547,7 @@ static void showresult(void){
   }
   free(elems);
   cbmapclose(rmap);
+  cbfree(tmppath);
 }
 
 
@@ -553,17 +562,20 @@ static void *procsearch(void *targ){
   CBMAP *rmap, *hints, *umap;
   CBLIST *list;
   const char *rp, *uri;
-  char tmppath[PATH_MAX], *value, *expr, *ord, *enc, *pv, *mp, 
numbuf[NUMBUFSIZ];
+  char *tmppath, *value, *expr, *ord, *enc, *pv, *mp, numbuf[NUMBUFSIZ];
   const int *scores;
-  int i, *res, rnum, snum, check, len, num;
+  int i, *res, rnum, snum, check, len, num, l;
   struct stat sbuf;
   double etime;
   time_t now;
+  size_t tmppathlen;
   argp = (TARGSRCH *)targ;
   db = argp-db;
   cond = argp-cond;
   rmap = argp-rmap;
+  tmppath = NULL;
   now = argp-now;
+  tmppathlen = 0;
   if(!db || (!est_cond_phrase(cond)  !est_cond_attrs(cond))){
 argp-hnum = -1;
 return NULL;
@@ -574,11 +586,20 @@ static void *procsearch(void *targ){
 if(*g_tmpdir == '@'){
   num = dpinnerhash(enc, -1) % 0x100;
   if(g_cclife = 0  (now + g_runcnt) % (CCPURGEFREQ / 16) == 0){
+/* start with 30 characters more, to save allocations below */
+l = strlen(g_tmpdir + 1) + 1 + 2 + 1 + 30 + 1;
+tmppath = cbrealloc(tmppath, l);
+tmppathlen = l;
 sprintf(tmppath, %s%c%02x, g_tmpdir + 1, ESTPATHCHR, num);
 if((list = cbdirlist(tmppath)) != NULL){
   for(i = 0; i  cblistnum(list); i++){
 rp = cblistval(list, i, NULL);
 if(!cbstrbwmatch(rp, CACHESUFFIX)) continue;
+l = strlen(g_tmpdir + 1) + 1 + 2 + 1 + strlen(rp) + 1;
+if (l  tmppathlen){
+  tmppath = cbrealloc(tmppath, l);
+  tmppathlen = l;
+}
 sprintf(tmppath, %s%c%02x%c%s,
 g_tmpdir + 1, ESTPATHCHR, num, ESTPATHCHR, rp);
 if(stat(tmppath, sbuf) != -1  now - sbuf.st_mtime  g_cclife) 
unlink(tmppath);
@@ -586,16 +607,22 @@ static void *procsearch(void *targ){
   cblistclose(list);
 }
   }
+  l = strlen(g_tmpdir + 1) + 1 + 2 + 1 + strlen(enc) + 

Bug#689815: devscripts: [bts] cannot remove all usertags from bug

2012-10-06 Thread Benjamin Drung
Package: devscripts
Version: 2.12.4
Severity: normal

Dear Maintainer,

the man page of bts says: At least one tag must be specified, unless the =
flag is used, where the command

bts usertags bug =

will remove all user tags from the specified bug.

I tried to remove all user tags from one bug with following command:

$ bts usertags 688060 =
bts usertags: set what user tag?

bts throws an error instead of removing all user tags.


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



Bug#689758: mediawiki-math-texvc: try to remove php5-mysqlnd

2012-10-06 Thread Thorsten Glaser
On Sat, 6 Oct 2012, Alf Gaida wrote:

 mediawiki-math-texvc should have php5-mysql|php5-mysqlnd as dependency. It 

No, mediawiki-math-texvc does not depend on *any* database, and
that’s right.

bye,
//mirabilos
-- 
tarent solutions GmbH
Rochusstraße 2-4, D-53123 Bonn • http://www.tarent.de/
Tel: +49 228 54881-393 • Fax: +49 228 54881-314
HRB 5168 (AG Bonn) • USt-ID (VAT): DE122264941
Geschäftsführer: Boris Esser, Sebastian Mancke


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



Bug#689816: devscripts: [bts] crashes if libauthen-sasl-perl isn't installed, but needed

2012-10-06 Thread Benjamin Drung
Package: devscripts
Version: 2.12.4
Severity: minor
User: devscri...@packages.debian.org

Dear Maintainer,

bts crashes if libauthen-sasl-perl isn't installed, but needed. Instead of
showing an obscure error message, it should tell the user to install
the libauthen-sasl-perl package.

$ bts usertags 688060 new
bts: failed to authenticate to smtps://smtp.gmail.com
(Can't locate Authen/SASL.pm in @INC (@INC contains: /usr/share/devscripts 
/etc/perl /usr/local/lib/perl/5.14.2 /usr/local/share/perl/5.14.2 
/usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.14 /usr/share/perl/5.14 
/usr/local/lib/site_perl .) at /usr/share/perl/5.14/Net/SMTP.pm line 117, 
STDIN line 1.
)

--- ~/.devscripts ---
BTS_SMTP_HOST=smtps://smtp.gmail.com


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



  1   2   >