Bug#675701: RFS: ptop/3.6.2-7

2012-07-28 Thread Bart Martens
Hi Bas,

I see that the package at mentors is still the one uploaded there on 2012-06-23
20:07, so there are comments on the RFS that are not yet processed.  Are you
still working on this, or can this RFS be closed ?

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#674446: Bug confirmed

2012-07-28 Thread Grześ Andruszkiewicz
Hi,

I can confirm that I am affected by this bug as well. Dolphin seems to
read a lot of stuff from the hard drive at the start and the UI gets
locked for a long time (>15s in my case). It only occurs during the
first time I open it after starting the computer.

Regards,
Grzegorz


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



Bug#659991: RFS: hpfall/2.6.38-1 [ITP] -- HP 3D DriveGuard daemon for HP/Compaq laptops

2012-07-28 Thread Bart Martens
Hi Bas,

Ansgar Burchardt commented on 15 February 2012 on RFS 659991 that the build
status page doesn't qualify as a useful URL for the package.  But I see now
that your package at mentors uploaded there on 2012-06-09 09:07 still uses that
URL as the homepage in debian/control.  Are you still working on this package,
or can this RFS be closed ?

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#652443: ioprio_get(2): document who==0

2012-07-28 Thread Michael Kerrisk (man-pages)
[CCing Jens because of the discussion below about IOPRIO_WHO_USER
below; he may have a comment]
[CCing Марк, who independently noted the lack of documentation for
IOPRIO_WHO_PROCESS, who==0 .]
[CCing Colin McCabe who sent other recent fixes for the ioprio_set.2 page]

On Sat, Dec 17, 2011 at 11:26 PM, Kalle Olavi Niemitalo  wrote:
> Package: manpages-dev
> Version: 3.32-0.2
> Severity: wishlist
> File: /usr/share/man/man2/ioprio_get.2.gz
>
> The ioprio_get(2) manual page describes the meanings of the which
> and who parameters:
>
>> IOPRIO_WHO_PROCESS
>>        who is a process ID identifying a single process.
>>
>> IOPRIO_WHO_PGRP
>>        who is a process group ID identifying all the members of
>>        a process group.
>>
>> IOPRIO_WHO_USER
>>        who is a user ID identifying all of the processes that
>>        have a matching real UID.
>
> The manual page should mention that IOPRIO_WHO_PROCESS and
> IOPRIO_WHO_PGRP also allow who==0.

Yes.

> As implemented in
> fs/ioprio.c, who==0 means the calling process or its process
> group.  The ioprio program in util-linux already uses the
> feature.  This is worth documenting separately because
> e.g. tcsetpgrp does not treat pgrp==0 in that way.

Agreed, this should be documented since various APIs interpret pgrp==0
differently. Some (e.g., killpg(2)) are like this syscall, others are
not.

> For IOPRIO_WHO_USER, the situation is more complex: who==0 means
> the root user in ioprio_set but the current user (I think the
> real UID of the calling process) in ioprio_get.  (That
> inconsistency might even be a bug.)

So, I'm not sure I'm following the kernel code too well here...
@Jens, your comments would be very welovem.

In ioprio_get() (Linux 3.5 kernel source file fs/ioprio.c), I see the following:

case IOPRIO_WHO_USER:
uid = make_kuid(current_user_ns(), who);
if (!who)
user = current_user();
else
user = find_user(uid);

if (!user)
break;

do_each_thread(g, p) {
if (!uid_eq(task_uid(p), user->uid))
continue;
tmpio = get_task_ioprio(p);
if (tmpio < 0)
continue;
if (ret == -ESRCH)
ret = tmpio;
else
ret = ioprio_best(ret, tmpio);
} while_each_thread(g, p);

if (who)
free_uid(user);
break;

In ioprio_set(), I see:

case IOPRIO_WHO_USER:
uid = make_kuid(current_user_ns(), who);
if (!uid_valid(uid))
break;
if (!who)
user = current_user();
else
user = find_user(uid);

if (!user)
break;

do_each_thread(g, p) {
if (!uid_eq(task_uid(p), uid))
continue;
ret = set_task_ioprio(p, ioprio);
if (ret)
goto free_uid;
} while_each_thread(g, p);
free_uid:
if (who)
free_uid(user);
break;

This suggests to me that you are right Kalle, in your interpretation
of who==0 for the IOPRIO_WHO_USER, since ioprio_get() uses
current_iser()->uid for its scan while ioprio_get() uses the UID
returned by make_kuid() (So, to be precise, I think who==0 in this
case means "the UID of the uer who is thye super user in this user
namespace"). If that's correct, it does of course need to be
documented. I'd be happy to get confirmation from Jens on this point.

I suppose that the differing meaning of who==0 for IOPRIO_WHO_USER in
ioprio_get() versus ioprio_set() is by design. But if so, like you
Kalle, I agree that it's a design point that is likely to surprise
users (and surprises here might have security implications). Again,
I'd like to get input from Jens.

In the meantime, I've applied the patch below to cover the other two cases.

Thanks,

Michael

--- a/man2/ioprio_set.2
+++ b/man2/ioprio_set.2
@@ -56,10 +56,16 @@ is interpreted, and has one of the following values:
 .B IOPRIO_WHO_PROCESS
 .I who
 is a process ID or thread ID identifying a single process or thread.
+If
+.I who
+is 0, then operate on the calling thread.
 .TP
 .B IOPRIO_WHO_PGRP
 .I who
 is a process group ID identifying al

Bug#683144: memcached: cannot use # in /etc/memcached_*.conf

2012-07-28 Thread Clint Byrum
Package: memcached
Version: 1.4.13-0.1
Severity: normal
Tags: upstream patch

Dear Maintainer,

This bug was originally reported in Ubuntu:

https://bugs.launchpad.net/ubuntu/+source/memcached/+bug/1005821

it was also forwarded upstream:

http://code.google.com/p/memcached/issues/detail?id=283

--- quoting original bug ---
memcached daemon has an option to specify custom character as the
delimeter between key prefixes and IDs. # character cannot be used because
of limitation of /usr/share/memcached/scripts/start-memcached. This
startup script parses /etc/memcached_*.conf files and treats every line
with # sign as a comment, which is wrong in case of line like below: -D #

Simple patch attached. I know it's not perfect but it works :)
--- end quoting ---

The patch is sound, requiring that # be the *first* non-whitespace
character in the line to be considered a comment.

-- System Information:
Debian Release: wheezy/sid
  APT prefers precise-updates
  APT policy: (500, 'precise-updates'), (500, 'precise-security'), (500, 
'precise'), (100, 'precise-backports')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-27-generic (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
--- /usr/share/memcached/scripts/start-memcached	2012-04-04 18:49:46.0 +0200
+++ start-memcached	2012-05-29 11:13:28.181568485 +0200
@@ -62,7 +62,7 @@
 foreach my $line (<$etchandle>)
 {
 $line ||= "";
-$line =~ s/\#.*//g;
+$line =~ s/^\s*\#.*//g;
 $line =~ s/\s+$//g;
 $line =~ s/^\s+//g;
 next unless $line;



Bug#682818: Fwd: Bug#682818: gscan2pdf: Presets aren't working

2012-07-28 Thread Jeffrey Ratcliffe
On 29 July 2012 04:11, John Goerzen  wrote:
> One more bug: I have to manually change the backend from libsane-perl to
> scanimage-perl each time I run it.  My preference no longer saves, and

That's not a bug - it's a feature. I wrote scanimage-perl as a way of
debugging the libsane-perl module by direct comparison to the
scanimage CLI tool. Please use the scanimage frontend instead.

> libsane-perl doesn't even show the presets at all, and shows tons more
> options than I want in lots of tabs.

I've implemented profiles for the libsane-perl frontend in my
development version, which I think is stable enough to be released
with 1.0.7 - obviously, this won't make wheezy, and I won't upload it
to unstable until after wheezy is released in case we need to fix more
bugs in 1.0.4.

Not presenting all the available options (which is basically what
gscan2pdf does with the CLI frontends) is on my list of things to do.
I'll probably put something in Edit/Preferences to select which
options to present.

Regards

Jeff


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



Bug#683143: ITP: brise -- Rime Schema Repository

2012-07-28 Thread Qijiang Fan
Package: wnpp
Severity: wishlist
Owner: Qijiang Fan 

* Package name: brise
  Version : 0+git20120727
  Upstream Author : GONG Chen 
* URL : http://github.com/lotem/brise
* License : GPL
  Programming Lang: None
  Description : Rime Schema Repository

This is the schema data of RIME Input Method Engine.


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



Bug#683103: mkdir: cannot create directory `/run/shm': File exists

2012-07-28 Thread Steve Langasek
Roger,

> Actually, just seen it myself, and I have:

> % ls -ld /dev /dev/shm /run /run/shm
> drwxr-xr-x 13 root root 3680 Jul 28 22:57 /dev
> lrwxrwxrwx  1 root root8 Jul 28 11:45 /dev/shm -> /run/shm
> drwxr-xr-x 21 root root  840 Jul 28 22:57 /run
> drwxrwxrwt  2 root root   40 Jul 28 11:45 /run/shm

The code in the maintainer script calls 'mkdir -p /run/shm', which should
succeed if the directory already exists.  Are you really seeing the same
error?

This whole section should probably be guarded with a version check, since it
should only be applied as a one-time upgrade fix-up.  But that doesn't get
to the root of why this should ever have failed on upgrade to begin with.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org


signature.asc
Description: Digital signature


Bug#683142: unblock: bdii/5.2.12-1

2012-07-28 Thread Mattias Ellert
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: freeze-exception

unblock bdii/5.2.12-1

Hi!

The bdii package was removed from testing due to an RC bug, together
with the packages that depends on it. The 5.2.12-1 update fixes the RC
bug (bug #663444). I would like to request a freeze exception for this
update to allow the bdii package and the packages depending on it to be
part of the release.

Mattias



smime.p7s
Description: S/MIME cryptographic signature


Bug#555620: install-info: ginstall-info produces somehow broken utf-8 output

2012-07-28 Thread Ian Zimmerman

Oops, I realize I was lying about ada-mode.  Nonetheless, even after
purging the package containing that info-file (namely,
emacs23-common-non-dfsg) the same problem persists: any invocation of
update-info-dir corrupts the dir file.

A few random tries running ginstall-info on a single info file, starting
with a "good" dir file, does not produce the same problem.

-- 
Ian Zimmerman
gpg public key: 1024D/C6FF61AD
fingerprint: 66DC D68F 5C1B 4D71 2EE5  BD03 8A00 786C C6FF 61AD
http://www.gravatar.com/avatar/c66875cda51109f76c6312f4d4743d1e.png
Rule 420: All persons more than eight miles high to leave the court.


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



Bug#683141: libpam-krb5: Graphical applications don't behave correctly

2012-07-28 Thread Olivier Diotte
Package: libpam-krb5
Version: 4.3-1
Severity: normal

Seems related to https://bugzilla.redhat.com/show_bug.cgi?id=509092 .
When password is non-expired, everything works correctly.
When I expire the Kerberos password on the KDC,
I can still 'su - user' from the console and get asked for a new 
password. However, when I log in from KDM (on Squeeze), I get a pop-up
telling me my password is expired. After hitting 'OK', the window
disappears and I get to the desktop. Subsequent logins will work with the
old password and won't get the pop-up.

Additional informations: GDM and lightdm on Ubuntu Unity also have problems
with an expired Kerberos password (they won't let me get to the desktop
however).

P.S.: Sorry for the previous bogus bug report.

Regards,
Olivier


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

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

Versions of packages libpam-krb5 depends on:
ii  krb5-config 2.2  Configuration files for Kerberos V
ii  libc6   2.11.3-4 Embedded GNU C Library: Shared lib
ii  libkrb5-3   1.8.3+dfsg-4squeeze5 MIT Kerberos runtime libraries
ii  libpam-runtime  1.1.1-6.1+squeeze1   Runtime support for the PAM librar
ii  libpam0g1.1.1-6.1+squeeze1   Pluggable Authentication Modules l

libpam-krb5 recommends no packages.

libpam-krb5 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#683140: libpam-krb5: Graphical applications don't behave correctly when presented with an expired Kerberos password

2012-07-28 Thread Olivier Diotte
Package: libpam-krb5
Version: 4.3-1
Severity: normal



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

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

Versions of packages libpam-krb5 depends on:
ii  krb5-config 2.2  Configuration files for Kerberos V
ii  libc6   2.11.3-4 Embedded GNU C Library: Shared lib
ii  libkrb5-3   1.8.3+dfsg-4squeeze5 MIT Kerberos runtime libraries
ii  libpam-runtime  1.1.1-6.1+squeeze1   Runtime support for the PAM librar
ii  libpam0g1.1.1-6.1+squeeze1   Pluggable Authentication Modules l

libpam-krb5 recommends no packages.

libpam-krb5 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#683036: qt4-x11: FTBFS on a multiarch system

2012-07-28 Thread Lisandro Damián Nicanor Pérez Meyer
On Vie 27 Jul 2012 20:11:13 Neil Williams escribió:
> Source: qt4-x11
> Version: 4:4.8.2-1
> Severity: normal
> 
> I was trying to investigate #679874 (as I suspect I've seen similar
> problems with the FTBFS bug against qmf) but I am also developing
> Qt applications for armel on the same machine, so I have
> the following multiarch variants installed:
> 
> ii  libqt4-dbus:armel
> ii  libqt4-sql:armel
> ii  libqt4-sql-sqlite:armel
> ii  libqt4-xml:armel
> ii  libqtcore4:armel
> ii  libqtgui4:armel
[snip]

Hi Neil! First of all, it's late in the night here so I probably shouldn't be 
answering bugs, but when I read your report I saw that you didn't mention 
which version of libqt4-dev you have installed. Please note that the headers 
are not arch-independent.

I may be missing some point here, if so, please feel free to point me out.

Kinds regards, Lisandro.

-- 
Evite los parámetros estáticos. Si son inevitables, haga que el emisor
y el receptor negocien un valor.
  Andrew S. Tanenbaum, de su libro "Computer Networks"

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#682050: fails to connect to server using non default port

2012-07-28 Thread Jeremy T. Bouse
I would tend to agree with your assessment of the situation. I need to
go back and evaluate it all as I wasn't the one that added the patch, it
was done by an NMU without my involvement which is why I dislike NMUs
being done on my packages as they tend to introduce more issues than solve.

On 07/28/2012 08:00 PM, Josh Triplett wrote:
> Package: python-paramiko
> Version: 1.7.7.1-3
> Followup-For: Bug #682050
> 
> As far as I can tell, no "original issue" exists.  Bug 668239 seems to
> complain that paramiko distinguishes between host keys for different
> ports on the same server.  That's not a bug, that's a feature, and
> removing it results in this bug.  The correct fix (which I've just
> tested) involves dropping hostkey.patch entirely.
> 
> - Josh Triplett
> 
> -- System Information:
> Debian Release: wheezy/sid
>   APT prefers unstable
>   APT policy: (500, 'unstable'), (1, 'experimental')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
> Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/dash
> 
> Versions of packages python-paramiko depends on:
> ii  python 2.7.3-2
> ii  python-crypto  2.6-2
> 
> python-paramiko recommends no packages.
> 
> python-paramiko 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#682818: Fwd: Bug#682818: gscan2pdf: Presets aren't working

2012-07-28 Thread John Goerzen

Thanks, Jeffrey.  I applied the patch, which seems to fix it.

One more bug: I have to manually change the backend from libsane-perl to 
scanimage-perl each time I run it.  My preference no longer saves, and 
libsane-perl doesn't even show the presets at all, and shows tons more 
options than I want in lots of tabs.


Not sure if that's related.  I can send a separate report if you like.

-- John

On 07/28/2012 04:14 PM, Jeffrey Ratcliffe wrote:

tags 682818 patch
severity 682818 serious
thanks

Oh. That's a nasty one, too.

Please try this.



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



Bug#665520: adding tag pending

2012-07-28 Thread Josue Abarca
tags 665520 pending
thanks

Thanks for the bug report.

This is fixed in git since 665520.


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



Bug#683138: pnp4nagios-web: crashes immediately due to debian/patches/adjust-template-path

2012-07-28 Thread Christoph Anton Mitterer
Package: pnp4nagios-web
Version: 0.6.16-1
Severity: grave
Justification: renders package unusable


Hi.

The support for /etc/pnp4nagios/templates.d seems to be buggy:
When /etc/pnp4nagios/templates.d is empty (in the sense of no subdirs),
all I get from pnp4nagios is:
>Please check the documentation for information about the following error.
>
>Invalid argument supplied for foreach()
>file [line]:
>
>/etc/pnp4nagios/config.php [234]:

Guess the reason is that the glob("/etc/pnp4nagios/templates.d/*", GLOB_ONLYDIR)
returns nothing and then one has a syntax error?!


Adding a empty dir or removing the foreach in conf.php solves the issue.


Cheers,
Chris.


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



Bug#678519: after about a month, routing gets wedged

2012-07-28 Thread Henrique de Moraes Holschuh
On Sat, 28 Jul 2012, Rudy Zijlstra wrote:
> stopping aiccu, rmmod sit and tunnel4 and then reloading and
> restarting aiccu did solve it
> 
> Next time i will start with restarting aiccu, and not rmmoding the
> related modules

Hmm, okay.  That should help narrow it down a lot.

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh


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



Bug#683137: Translated manpages are not shipped in the package

2012-07-28 Thread David Prévot
Package: schroot
Version: 1.6.3-1
Severity: wishlist
Tags: l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Roger,

Thanks for taking care of including the French man pages in your
package, but they don't seem to be actually part of it. While building
the package, the translated files don't seem to be generated at all
(missing po4a call during the build maybe) and they don't seem build
(from the *.man files) nor included (according to
debian/dchroot.install.in).

It's probably related to the issues you pointed with srcdir and destdir
, maybe the
po stuff should also end in the build repository in order to be built
properly?

Regards

David

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

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

Versions of packages schroot depends on:
ii  libboost-filesystem1.49.0   1.49.0-3.1
ii  libboost-iostreams1.49.01.49.0-3.1
ii  libboost-program-options1.49.0  1.49.0-3.1
ii  libboost-regex1.49.01.49.0-3.1
ii  libboost-system1.49.0   1.49.0-3.1
ii  libc6   2.13-35
ii  libgcc1 1:4.7.1-5
ii  liblockdev1 1.0.3-1.5
ii  libpam0g1.1.3-7.1
ii  libstdc++6  4.7.1-5
ii  libuuid12.20.1-5.1
ii  schroot-common  1.6.3-1

schroot recommends no packages.

Versions of packages schroot suggests:
pn  aufs-modules | unionfs-modules  
pn  btrfs-tools 
ii  debootstrap 1.0.42
ii  lvm22.02.95-4
pn  qemu-user-static

- -- no debconf information

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

iQIcBAEBCAAGBQJQFJ7CAAoJELgqIXr9/gny8e8P/AwuNdfZ6z45GYd2fuIFwaP4
EqdmqkaQy2iJ2U3dnJpy6sGB2AHbhEFCmXGgLL/YsMsFhJlaMhByJa9YbCVazBXW
qmjCyWgJwdGvnKcMGSvWSqQ1uqBH0SLguHyOOqHc0aj6NHPOUwXYlLOAY7sA4cID
p7auQe76F4gN+74ZEwIW+rcqgJPD80mvsZKD3Mf6MVgNJAlVR3JoK504oG/MKeyI
11ZIaU7YFBnYrvZ8M1OcwdU1fKIhK0Cci+mK2jL2jm3kwqQgyj33NjHEpISO+W1A
0ymk5mYf3CinAtXlQT0H/l9CNnUdNKdSVmfESkF6Kh6WvATXsaJ1chTEKa3hIQ4l
XN0BZ0tzWgxCk30B+1wu3K5a2NSsxeQb87Hgok9x+4N/NTzPsuz8PfSjoVPjlczZ
Q7uZ5RKoK0fegJpv25c5tYdaGHKxf57YK/BVIiAP19uOY5bLxyX7bINSSA9tdBh/
LwlMF0GAHhta1zzOTMmhHg34Faz3N/OPEcCKDhYJ/utcZdg/eSX5va1ooFe4Z3Vt
BJJndnVa5YZLHn5EZBCLm/Bqxdg1ILOxd58TtjFdq4FBN87WNypCWqVaBJv6jp2O
w+XtKGAUpSI8eSgJCQiAH5JoUk2Ozv46gVlx4DR3jY/KiDMd0AXwhIoqFnQRKFFO
qnljGV+Bnqipq7sCRMVR
=j/YZ
-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#682921: [Pkg-samba-maint] Bug#682921: samba: slow samba performance (both network and disk)

2012-07-28 Thread Christian PERRIER
forwarded 682921 https://bugzilla.samba.org/show_bug.cgi?id=9070
thanks

Quoting Florin Iucha (flo...@iucha.net):
> On Sat, Jul 28, 2012 at 03:06:33PM -0600, Christian PERRIER wrote:
> > tags 682921 wontfix
> > severity 682921 normal
> > 
> > You really should forget about these parameters. I know you can ind
> > some references here or there about "socket options"but the Samba Team
> > themselves discourages using them.
> 
> OK.  With or without, it makes no difference.
> 
> > Apart from that, I think that such performance issues should really be
> > discussed with upstream, and probably not as a bug report. There are
> > way too many parameters that can be involved that there is zero chance
> > that one of the maintainers of samba in Debian really can help you.
> 
> Fair enough: https://bugzilla.samba.org/show_bug.cgi?id=9070
> 
> Thanks for your comment and your work on Debian!


Hence linking both bug reports.




signature.asc
Description: Digital signature


Bug#683122: debianutils: [INTL:fr] updated French man pages translation

2012-07-28 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Clint,

Le 28/07/2012 20:16, Clint Adams a écrit :
> On Sat, Jul 28, 2012 at 06:48:37PM -0400, David Prévot wrote:

>> It looks like the man pages were updated without any call for
>> translation update, and sent to the archive just before the freeze.
>> I'd be happy to send a call for translation update (Spanish and Slovak
>> translation could be updated) on your behalf, in order to have fully
> 
> Please do!

Just sent, with a ten-days deadline. It looks like the PO files are not
automatically updated in the package, that won't help to keep them up to
date. Could you please add, e.g. in a dist-hook: or clean: rule from the
po4a directory, the following call to avoid the current status?

po4a --no-backups --no-translations po4a.conf

Regards

David

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

iQIcBAEBCAAGBQJQFJeJAAoJELgqIXr9/gnyfoEP/igtV114kpEUa5Ej4x/vWbjk
+kMIqzlIQSitQ1Zq8QEGAys59ElOvXWNeXiKfQAKYqUeXKDu11LsCW90rDJEtuMi
3O98aptCKdC5dW3gCbsfvwYT/YEZjjoTI3YGm8MFSf7F3i046dn8JZzMQq/MwWij
5w2v+ugETJO6NjuKcjUslCwgkQ2OwYh13HYEB3haoSk5P8S7kyu9M3s6pg2ehJBj
t0twEpAJfWb6RCbks5C5wXvFCCGj1E8kJWRoZojtR0aT+hcBr2fb9zjLLV0EHPP1
tSOg9wsY9r8rwBlrtwJTGxvR0aU2jJMXCxZySStffjghzwV7AxyUzfCUwWLqjrWR
UANqH4yRC0uwoYQW/3UjQTXfxyTThHadkiVmMjf18TiDSPiSFkYTZMic6oK4kJXs
OpIfdtZ8i8o0zozxBzwQiYLP5FVbcdVwlODjlXkDtvKN6+ooQzQVZxPLF5NEWC5l
qyy1qbezSAskFy0HRSBTKV9mEs0IdE8wybeNrGV3KIJEPn5j6HzMXKOF1OpAHHXZ
rJbpEF0MXrwpVxogtH1Vabr8uowU1wL4WxoRq433Gicztsgfqhq94VOuL9GfRgPa
93QSErAyd9r0mRtslEbtt+6veOAB1cJH052hZg24s3OTnDvfHFNdbUspjRAH3o7q
SDA8MvmvV6zzcW+zPDw4
=tvlM
-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#675345: gnome-shell: Gnome shell froze

2012-07-28 Thread Cortman
Package: gnome-shell
Version: 3.4.1-8
Followup-For: Bug #675345

Dear Maintainer,

Gnome shell froze completely for no apparent reason. Apps open at the time:

- gnome-tweak-tool
- terminator w/ mutt and htop
- nautilus
- iceweasel, 7 tabs open
- docky

Since htop was open, I have system stats at the time of the freeze as well:

CPU: 2 cores at 14.6 % and 12.5%
RAM: 916 MB of 3836 used
Uptime: 26 hrs, 52 min, 58 sec

The shell froze and would not respond to any mouse clicks or keystrokes; 
although I could still move the cursor around. Using Ctrl+Alt+F2 brought me to 
tty2, in which I was able to kill the gnome-shell process. It instantly 
restarted itself, and upon returning to tty7 gnome shell was functioning 
normally again.



-- 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=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-shell depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.12.1-2
ii  gconf-service3.2.5-1
ii  gir1.2-accountsservice-1.0   0.6.21-6
ii  gir1.2-atk-1.0   2.4.0-2
ii  gir1.2-caribou-1.0   0.4.2-2
ii  gir1.2-clutter-1.0   1.10.8-1
ii  gir1.2-cogl-1.0  1.10.2-6
ii  gir1.2-coglpango-1.0 1.10.2-6
ii  gir1.2-folks-0.6 0.6.9-1+b1
ii  gir1.2-freedesktop   1.32.1-1
ii  gir1.2-gconf-2.0 3.2.5-1
ii  gir1.2-gcr-3 3.4.1-3
ii  gir1.2-gdesktopenums-3.0 3.4.2-1
ii  gir1.2-gdkpixbuf-2.0 2.26.1-1
ii  gir1.2-gee-1.0   0.6.4-2
ii  gir1.2-gkbd-3.0  3.4.0.2-1
ii  gir1.2-glib-2.0  1.32.1-1
ii  gir1.2-gmenu-3.0 3.4.2-3
ii  gir1.2-gnomebluetooth-1.03.4.2-1
ii  gir1.2-gtk-3.0   3.4.2-2
ii  gir1.2-json-1.0  0.14.2-1
ii  gir1.2-mutter-3.03.4.1-5
ii  gir1.2-networkmanager-1.00.9.4.0-5
ii  gir1.2-pango-1.0 1.30.0-1
ii  gir1.2-polkit-1.00.105-1
ii  gir1.2-soup-2.4  2.38.1-2
ii  gir1.2-telepathyglib-0.120.18.1-2
ii  gir1.2-telepathylogger-0.2   0.4.0-1
ii  gir1.2-upowerglib-1.00.9.17-1
ii  gjs  1.32.0-2
ii  gnome-bluetooth  3.4.2-1
ii  gnome-icon-theme-symbolic3.4.0-2
ii  gnome-settings-daemon3.4.2-3
ii  gnome-shell-common   3.4.1-8
ii  gnome-themes-standard3.4.2-1
ii  gsettings-desktop-schemas3.4.2-1
ii  libatk1.0-0  2.4.0-2
ii  libc62.13-33
ii  libcairo-gobject21.12.2-2
ii  libcairo21.12.2-2
ii  libcanberra0 0.28-4
ii  libclutter-1.0-0 1.10.8-1
ii  libcogl-pango0   1.10.2-6
ii  libcogl9 1.10.2-6
ii  libcroco30.6.5-1
ii  libdbus-1-3  1.6.0-1
ii  libdbus-glib-1-2 0.100-1
ii  libebook-1.2-13  3.4.3-1
ii  libecal-1.2-11   3.4.3-1
ii  libedataserver-1.2-163.4.3-1
ii  libedataserverui-3.0-1   3.4.3-1
ii  libffi5  3.0.10-3
ii  libfolks25   0.6.9-1+b1
ii  libgck-1-0   3.4.1-3
ii  libgconf-2-4 3.2.5-1
ii  libgcr-3-1   3.4.1-3
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libgee2  0.6.4-2
ii  libgirepository-1.0-11.32.1-1
ii  libgjs0b [libgjs0-libmozjs185-1.0]   1.32.0-2
ii  libgl1-mesa-glx [libgl1] 8.0.3-1
ii  libglib2.0-0 2.32.3-1
ii  libgnome-keyring03.4.1-1
ii  libgnome-menu-3-03.4.2-3
ii  libgstreamer0.10-0   0.10.36-1
ii  libgtk-3-0   3.4.2-2
ii  libical0 0.48-2
ii  libjson-glib-1.0-0   0.14.2-1
ii  libmozjs185-1.0   

Bug#682449: [PATCH] German man page translation update from Helge Kreutzmann. closes: #682449.

2012-07-28 Thread David Prévot
---
 po4a/po/de.po |  113 ++---
 1 file changed, 60 insertions(+), 53 deletions(-)

diff --git a/po4a/po/de.po b/po4a/po/de.po
index 8d9b299..9a6940c 100644
--- a/po4a/po/de.po
+++ b/po4a/po/de.po
@@ -1,12 +1,12 @@
 # Translation of debianutils man page template to German
-# Copyright (C) Helge Kreutzmann , 2011.
+# Copyright (C) Helge Kreutzmann , 2011, 2012.
 # This file is distributed under the same license as the debianutils package.
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: debianutils man page\n"
-"POT-Creation-Date: 2011-05-30 10:57-0300\n"
-"PO-Revision-Date: 2011-05-31 09:18+0200\n"
+"POT-Creation-Date: 2012-06-27 21:51-0300\n"
+"PO-Revision-Date: 2012-07-22 22:28+0200\n"
 "Last-Translator: Helge Kreutzmann \n"
 "Language-Team: de \n"
 "Language: de\n"
@@ -161,7 +161,7 @@ msgid "ISCHROOT"
 msgstr "ISCHROOT"
 
 #. type: TH
-#: ../ischroot.1:2 ../tempfile.1:2
+#: ../ischroot.1:2
 #, no-wrap
 msgid "30 May 2011"
 msgstr "30. Mai 2011"
@@ -231,7 +231,7 @@ msgstr ""
 "das Skript nicht als Root ausgeführt wird)"
 
 #. type: SH
-#: ../ischroot.1:22 ../run-parts.8:46 ../savelog.8:92 ../tempfile.1:46
+#: ../ischroot.1:22 ../run-parts.8:47 ../savelog.8:92 ../tempfile.1:46
 #: ../which.1:14
 #, no-wrap
 msgid "OPTIONS"
@@ -336,10 +336,10 @@ msgid "RUN-PARTS"
 msgstr "RUN-PARTS"
 
 #. type: TH
-#: ../run-parts.8:8
+#: ../run-parts.8:8 ../tempfile.1:2
 #, no-wrap
-msgid "14 Nov 2010"
-msgstr "14. Nov. 2010"
+msgid "27 Jun 2012"
+msgstr "27. Jun. 2012"
 
 #. type: Plain text
 #: ../run-parts.8:11
@@ -411,23 +411,25 @@ msgstr ""
 "wurde."
 
 #. type: Plain text
-#: ../run-parts.8:45
+#: ../run-parts.8:46
 msgid ""
-"Files are run in the lexical sort order of their names unless the --reverse "
-"option is given, in which case they are run in the opposite order."
+"Files are run in the lexical sort order (according to the C/POSIX locale "
+"character collation rules) of their names unless the --reverse option is "
+"given, in which case they are run in the opposite order."
 msgstr ""
-"Dateien werden in der lexikalisch sortierten Reihenfolge ihrer Namen "
-"ausgeführt, es sei denn, die Option »--reverse« ist angegeben, in diesem "
-"Fall werden sie in der umgekehrten Reihenfolge ausgeführt."
+"Dateien werden in der lexikalisch sortierten Reihenfolge (gemäß den C/POSIX-"
+"Locale-Sortierregeln) ihrer Namen ausgeführt, es sei denn, die Option »--"
+"reverse« ist angegeben, in diesem Fall werden sie in der umgekehrten "
+"Reihenfolge ausgeführt."
 
 #. type: TP
-#: ../run-parts.8:47
+#: ../run-parts.8:48
 #, no-wrap
 msgid "B<--test>"
 msgstr "B<--test>"
 
 #. type: Plain text
-#: ../run-parts.8:51
+#: ../run-parts.8:52
 msgid ""
 "print the names of the scripts which would be run, but don't actually run "
 "them."
@@ -436,13 +438,13 @@ msgstr ""
 "findet aber nicht statt."
 
 #. type: TP
-#: ../run-parts.8:51
+#: ../run-parts.8:52
 #, no-wrap
 msgid "B<--list>"
 msgstr "B<--list>"
 
 #. type: Plain text
-#: ../run-parts.8:55
+#: ../run-parts.8:56
 msgid ""
 "print the names of the all matching files (not limited to executables), but "
 "don't actually run them. This option cannot be used with --test."
@@ -452,24 +454,24 @@ msgstr ""
 "mit »--test« verwandt werden."
 
 #. type: TP
-#: ../run-parts.8:55
+#: ../run-parts.8:56
 #, no-wrap
 msgid "B<-v, --verbose>"
 msgstr "B<-v, --verbose>"
 
 #. type: Plain text
-#: ../run-parts.8:58
+#: ../run-parts.8:59
 msgid "print the name of each script to stderr before running."
 msgstr "gibt vor der Ausführung jedes Skriptes den Namen auf Stderr aus."
 
 #. type: TP
-#: ../run-parts.8:58
+#: ../run-parts.8:59
 #, no-wrap
 msgid "B<--report>"
 msgstr "B<--report>"
 
 #. type: Plain text
-#: ../run-parts.8:63
+#: ../run-parts.8:64
 msgid ""
 "similar to B<--verbose>, but only prints the name of scripts which produce "
 "output.  The script's name is printed to whichever of stdout or stderr the "
@@ -481,48 +483,48 @@ msgstr ""
 "ausgibt."
 
 #. type: TP
-#: ../run-parts.8:63
+#: ../run-parts.8:64
 #, no-wrap
 msgid "B<--reverse>"
 msgstr "B<--reverse>"
 
 #. type: Plain text
-#: ../run-parts.8:66
+#: ../run-parts.8:67
 msgid "reverse the scripts' execution order."
 msgstr "invertiert die Reihenfolge der Ausführung."
 
 #. type: TP
-#: ../run-parts.8:66
+#: ../run-parts.8:67
 #, no-wrap
 msgid "B<--exit-on-error>"
 msgstr "B<--exit-on-error>"
 
 #. type: Plain text
-#: ../run-parts.8:69
+#: ../run-parts.8:70
 msgid "exit as soon as a script returns with a non-zero exit code."
 msgstr ""
 "beenden, sobald ein Skript mit einem von Null verschiedenen Exit-Code "
 "zurückkehrt."
 
 #. type: TP
-#: ../run-parts.8:69
+#: ../run-parts.8:70
 #, no-wrap
 msgid "B<--lsbsysinit>"
 msgstr "B<--lsbsysinit>"
 
 #. type: Plain text
-#: ../run-parts.8:72
+#: ../run-parts.8:73
 msgid "use LSB namespaces instead of classical behavior."
 msgstr "LSB-Namensräume statt des klassischen Verhaltens verwenden."
 
 #. type: TP
-#: ../run-parts.8:72
+#

Bug#683026: [debian-kernel-handbook] deb-pkg builds amd64 image package on i386

2012-07-28 Thread Jonathan Nieder
Hi Filipus,

Filipus Klutiero wrote:

> I followed the procedure for "Building a custom kernel from Debian
> kernel source" on an i386 wheezy install. The resulting package is
> targetted at the amd64 Debian architecture and cannot be installed
> on my system (which is physically x86-64):

Yes, the instructions in the kernel handbook left out the following
step:

dpkg --add-architecture amd64

Hope that helps,
Jonathan


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



Bug#683136: rxvt-unicode{,-256color}: tight regexp in matcher

2012-07-28 Thread gregor herrmann
Package: rxvt-unicode-256color,rxvt-unicode
Version: 9.15-2
Severity: minor
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

The matcher extension has a tight default regexp for matching URLs.
"a-zA-Z0-9" doesn't match non-ascii chars which might be a nuisance
but exist in URLs.

Using \w seems that work for me; quick patch (I haven't really
thought where \w makes more sense and where not ...):

#v+
- --- /usr/lib/urxvt/perl/matcher 2012-06-30 18:16:46.0 +0200
+++ /home/gregoa/.urxvt/matcher 2012-07-29 03:02:55.358499702 +0200
@@ -6,10 +6,10 @@
 my $url =
qr{
   (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)
- -  [a-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27,~#]*
+  [\w\-\@;\/?:&=%\$_.+!*\x27,~#]*
   (
- - \([a-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27,~#]*\)| # Allow a pair of 
matched parentheses
- - [a-zA-Z0-9\-\@;\/?:&=%\$_+*~]  # exclude some trailing characters 
(heuristic)
+ \([\w\-\@;\/?:&=%\$_.+!*\x27,~#]*\)| # Allow a pair of matched 
parentheses
+ [\w\-\@;\/?:&=%\$_+*~]  # exclude some trailing characters (heuristic)
   )+
}x;
 
#v-


Cheers,
gregor


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

Kernel: Linux 3.4-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=de_AT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages rxvt-unicode-256color depends on:
ii  base-passwd   3.5.26
ii  libc6 2.13-35
ii  libfontconfig12.9.0-7
ii  libgcc1   1:4.7.1-5
ii  libgdk-pixbuf2.0-02.26.1-1
ii  libglib2.0-0  2.32.3-1
ii  libperl5.14   5.14.2-12
ii  libstartup-notification0  0.12-1
ii  libx11-6  2:1.5.0-1
ii  libxft2   2.3.1-1
ii  libxrender1   1:0.9.7-1
ii  ncurses-term  5.9-10

Versions of packages rxvt-unicode-256color recommends:
pn  fonts-vlgothic | fonts-japanese-gothic  
ii  ttf-dejavu  2.33-2

rxvt-unicode-256color suggests no packages.

- -- no debconf information

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

iQIcBAEBCAAGBQJQFI39AAoJELs6aAGGSaoGRSAQAItwTUPHtrJrNNOKTKEMjWNT
tiBrtEYzBvju1GneqCWVZS8UhaDbCDQGuPGMtdkJnIFe5FjfE+XOI8PbfynPTX5S
ygZSYdeMaD+ZZhv6uNxDYdnXduE5nS2ajHpEEfHJT68uxnYlAAbn2Dy/UCZ3KK/4
4hD6KZm0GyH5xe6Z8vtIDq+xLkRcew1pXKKcaKR1vp3lRSVKi+6HXoloVUxnIrgJ
1jaRaYgIYPakdK7nbHYcOfZJOV1m8yPr5ZvGIVFXtOIRAreoWWqsruJet4JNZMuN
I6bzycOTck1+3Y48AjnUqf9Skdj41VMN1REgJoynQLD2cIxZRMzU5X354f5n2b4x
N0ab+NspbwQrFsn268Dj6ykQnQRcltrctGEQ5n47jTwbPUbvficn0f3U4sYtKZL7
7Nn3Qpi/moDgMF0LqJR12+Bd301Y8n8Gep8P9rXTwdW8fxwYeVmmxXwVNGcxIeXC
G2V7barwm+ZncadzNHvNXJ0BCvMghv1HXUbM2zQwVKmhVkP+OWOd1Vss7zKwdzYH
mpJBPH6WgPdonUHgkQEylO2F1Fj14SIRfEIx5MYEPxAfQMZon1xjfeaLWbS9M0l0
rPTDcHFYgGJ+iCQF6ZnZ/zjxrFicEtj47Tb8EGbN6l7tjL83AAx+pN0OGtUazjfr
lnODFvDUJKGV9GLzsX1K
=i09M
-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#683135: plplot FTBFS on Alpha: Missing -fPIC causes link error.

2012-07-28 Thread Michael Cree
Source: plplot
Version: 5.9.9-4
Severity: normal
User: debian-al...@lists.debian.org
Usertags: alpha
X-Debbugs-CC: debian-al...@lists.debian.org

plplot FTBFS on Alpha with:

Linking Ada shared library libplplotadad.so
/usr/bin/ld: CMakeFiles/plplotadad.dir/plplot.o: gp-relative relocation
against dynamic symbol plplot__default_label_string_array
[...plus many more relocation errors...]
/usr/bin/ld: final link failed: Nonrepresentable section on output
collect2: ld returned 1 exit status

Full build log at:
http://buildd.debian-ports.org/status/fetch.php?pkg=plplot&arch=alpha&ver=5.9.9-4&stamp=1342695982

The link fails because a shared library is being built and -fPIC has not
been used in the compilation of the contributing object files.  Building
with VERBOSE=1 reveals that -fPIC is used by the C++ compiler, but it is
not used with the Ada compiler.  -fPIC should also be passed to
gnatgcc/gnatmake when building object files for the shared library on Alpha.

Cheers
Michael.


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



Bug#682705: gimp 2nd level dialogs freeze

2012-07-28 Thread Iain Mac Donald
Hello Ari,

On Sat, 28 Jul 2012 19:12:10 -0400
Ari Pollak  wrote:

> Are the freezing dialogs always file-related? 

No. It also happens with, for example, Colours/Levels or Image/Scale.

> Does it only happen when
> they're open to a specific directory? 

The opened files can be anywhere in my $HOME which is a local disc or a
remote system mounted using gvfs/fuse.

> Could you attach the output of
> the "mount" command?

See attached file "mount.txt".

Thanks and regards,
Iain.udev on /dev type devtmpfs (rw,relatime,size=515648k,nr_inodes=128912,mode=755)
devpts on /dev/pts type devpts 
(rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=103380k,mode=755)
/dev/disk/by-uuid/e7d9fdb8-8450-4d19-a6b7-3e33ec41fb54 on / type ext3 
(rw,relatime,errors=remount-ro,barrier=0,data=ordered)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime,size=206760k)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /run/shm type tmpfs (rw,nosuid,nodev,relatime,size=206760k)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
gvfs-fuse-daemon on /home/iain/.gvfs type fuse.gvfs-fuse-daemon 
(rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)

Bug#683134: fglrx-driver: [INTL:ja] initial Japanese debconf translation

2012-07-28 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: fglrx-driver
Severity: wishlist
Version: 1:12-6-2
Tags: l10n patch

Hi,

I translated debconf messages into Japanese (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
km...@debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.9 

iQIcBAEBCgAGBQJQFIOQAAoJEB0hyD3EUuD8KpEP/Au+3PworzC5A2kdemva/yS5
lpGY3WFc6gA05GtFbKa8oG4m9XnQeKY9/PwzRW74ZiBRY0aUgJ3jNT0NZVD9csCk
bNup/gnrEk5JultTibq7ShSORMtVPOmdWJLJKuYgphsqHKZwjqss+7TpavadmEKV
OEmQhK8nicxFW/g/5AscjEovZHbt/CN6lqwRSIxjshtw3d+3GPP/LdEiJCTbNi5P
5Uijvr1NbfozcZ0cSBQIbwFvYimX2YS882Bu4pAPDfwzEUm1L5JTt8GmpRgj5CPo
wFOtAty0R3vJZx2wh/b5ZPz2eqiJfJB2QY4j6FAcAsHX4mXWHSF5ABB46OUhNHvJ
Y/rk9BEJCfV04GOe77VfbMRGE62sJrUjlVJeo43NJoIPOPoeLGBeI//Oaw38kHNX
eV3eTEBsTx8wnMDGmSJJ0j+0Obkm1gktfNbW465LPwydOx2INgk8UOogElghEkqr
72JYTNgyKXJem9mFJjf+nt0EJosVi9kcVdzB7AsypGBHtixfWd7n6EABK/9BsEgu
Rv6Um8rTzzGwvcT9Y1gZTW+uRFkpZsyasgzePqKkSuW0k/D8RoQ/h6ux0g3ypEu2
w57Vwy6BwOTKHZh+bRvVuwSRNN4wtFBM+WHpk+ugt4Yntj2t+ceB21uIQb/UfxR7
zI1aPdzMhS3FilelFIA+
=JKYA
-END PGP SIGNATURE-


ja.po
Description: Binary data


Bug#683133: xpra: robustify cython version parsing: otherwise would fail to build against beta releases of cython

2012-07-28 Thread Yaroslav Halchenko
Package: xpra
Version: 0.3.4+dfsg-1
Severity: normal

Testing the build against beta release of cython in experimental, and it fails 
with

Traceback (most recent call last):
  File "setup.py", line 225, in 
"xtst", "xfixes", "xcomposite", "xdamage", "xrandr")
  File "setup.py", line 215, in cython_add
cython_version_check()
  File "setup.py", line 203, in cython_version_check
cython_version = [int(part) for part in cython_version_string.split(".")]
ValueError: invalid literal for int() with base 10: 'beta1'
dh_auto_clean: python2.6 setup.py clean -a returned exit code 1
make: *** [clean] Error 1


-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (900, 'stable'), (700, 'testing'), (600, 'unstable'), (300, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-vserver-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


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



Bug#683122: debianutils: [INTL:fr] updated French man pages translation

2012-07-28 Thread Clint Adams
On Sat, Jul 28, 2012 at 06:48:37PM -0400, David Prévot wrote:
> Package: debianutils
> Version: 4.3.2
> Severity: wishlist
> Tags: patch l10n
> 
> -BEGIN PGP SIGNED MESSAGE-
> Please find attached the updated French man pages translation
> (po4a/po/fr.po) as agreed with the current translator (Christian
> Perrier).

Thanks, updated in git.

> It looks like the man pages were updated without any call for
> translation update, and sent to the archive just before the freeze.
> I'd be happy to send a call for translation update (Spanish and Slovak
> translation could be updated) on your behalf, in order to have fully

Please do!


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



Bug#683131: pyamf: FTBFS with freshier releases of cython (i.e. 0.17.beta1 in experimental)

2012-07-28 Thread Yaroslav Halchenko
Package: pyamf
Version: 0.6.1+dfsg-3
Severity: normal
Tags: upstream

I have rebuilt all packages depending on cython against the beta of upcoming
new version in experimental and pyamf unfortunately FTBFS.  See full log
attached for the full build log

Cheers


-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (900, 'stable'), (700, 'testing'), (600, 'unstable'), (300, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-vserver-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
I: Running in no-targz mode
I: using fakeroot in build.
I: Current time: Fri Jul 27 01:59:49 EDT 2012
I: pbuilder-time-stamp: 1343368789
I: copying local configuration
I: mounting /proc filesystem
I: mounting /dev/pts filesystem
I: Mounting 
/home/brain/debs/cython/0.17~beta1-2/cython_0.17~beta1-2_amd64.testrdepends.debian-sid
I: Mounting /var/cache/pbuilder/ccache
I: policy-rc.d already exists
I: Obtaining the cached apt archive contents
I: Setting up ccache
I: Installing the build-deps
I: user script /home/neurodebian/build/cow.25094/tmp/hooks/D00add_custom_repo 
starting
Ign file: ./ InRelease
Ign file: ./ Release.gpg
Ign file: ./ Release
Ign file: ./ Translation-en
Get:1 http://10.0.0.1 sid InRelease [249 kB]
Ign http://10.0.0.1 sid/main amd64 Packages/DiffIndex
Ign http://10.0.0.1 sid/contrib amd64 Packages/DiffIndex
Ign http://10.0.0.1 sid/non-free amd64 Packages/DiffIndex
Get:2 http://10.0.0.1 sid/contrib Translation-en/DiffIndex [5335 B]
Get:3 http://10.0.0.1 sid/main Translation-en/DiffIndex [7876 B]
Hit http://10.0.0.1 sid/non-free Translation-en/DiffIndex
Get:4 http://10.0.0.1 sid/contrib 2012-07-26-2014.42.pdiff [40 B]
Get:5 http://10.0.0.1 sid/contrib 2012-07-26-2014.42.pdiff [40 B]
Get:6 http://10.0.0.1 sid/main 2012-07-26-0816.10.pdiff [390 B]
Get:7 http://10.0.0.1 sid/main 2012-07-26-0816.10.pdiff [390 B]
Get:8 http://10.0.0.1 sid/main amd64 Packages [8119 kB]
Get:9 http://10.0.0.1 sid/contrib amd64 Packages [56.2 kB]
Get:10 http://10.0.0.1 sid/non-free amd64 Packages [106 kB]
Get:11 http://10.0.0.1 sid/main 2012-07-26-2014.42.pdiff [64 B]
Get:12 http://10.0.0.1 sid/main 2012-07-26-2014.42.pdiff [64 B]
Get:13 http://10.0.0.1 sid/main 2012-07-27-0214.51.pdiff [43 B]
Get:14 http://10.0.0.1 sid/main 2012-07-27-0214.51.pdiff [43 B]
Fetched 8544 kB in 4s (1773 kB/s)
Reading package lists...
I: user script /home/neurodebian/build/cow.25094/tmp/hooks/D00add_custom_repo 
finished
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team 
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: cython-dbg (>= 0.13), debhelper (>= 8.1.0~), python-all-dbg (>= 
2.6.6-3~), python-all-dev (>= 2.6.6-3~), python-django (>= 0.96), python-elixir 
(>= 0.7.1), python-lxml, python-setuptools (>= 0.6c9), python-sqlalchemy (>= 
0.4), python-pysqlite2, python-twisted-core, python-twisted-web, 
python-unittest2
dpkg-deb: building package `pbuilder-satisfydepends-dummy' in 
`/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'.
Selecting previously unselected package pbuilder-satisfydepends-dummy.
(Reading database ... 11952 files and directories currently installed.)
Unpacking pbuilder-satisfydepends-dummy (from 
.../pbuilder-satisfydepends-dummy.deb) ...
dpkg: pbuilder-satisfydepends-dummy: dependency problems, but configuring 
anyway as you requested:
 pbuilder-satisfydepends-dummy depends on cython-dbg (>= 0.13); however:
  Package cython-dbg is not installed.
 pbuilder-satisfydepends-dummy depends on debhelper (>= 8.1.0~); however:
  Package debhelper is not installed.
 pbuilder-satisfydepends-dummy depends on python-all-dbg (>= 2.6.6-3~); however:
  Package python-all-dbg is not installed.
 pbuilder-satisfydepends-dummy depends on python-all-dev (>= 2.6.6-3~); however:
  Package python-all-dev is not installed.
 pbuilder-satisfydepends-dummy depends on python-django (>= 0.96); however:
  Package python-django is not installed.
 pbuilder-satisfydepends-dummy depends on python-elixir (>= 0.7.1); however:
  Package python-elixir is not installed.
 pbuilder-satisfydepends-dummy depends on python-lxml; however:
  Package python-lxml is not installed.
 pbuilder-satisfydepends-dummy depends on python-setuptools (>= 0.6c9); however:
  Package python-setuptools is not i
Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ...
Reading package lists...
Building dependency tree...
Reading state information...
Initializing package states...
Writing extended state information...
The following NEW packages will be installed:
  bsdmainutils{a} cython{a} cython-dbg{a} debhelper{a} file{a} gettext{a} 
  gettext-b

Bug#683130: bzr: would FTBFS whenever cython's version has alphabetic portion (e.g. beta)

2012-07-28 Thread Yaroslav Halchenko
Package: bzr
Version: 2.6.0~bzr6526-1
Severity: minor

you might like to patch/report upstream to make bzr cython version checking 
more robust.  Currently it FTBFS with version (0.17.beta1) in experimental:

make[1]: Entering directory `/tmp/buildd/bzr-2.6.0~bzr6526'
dh_auto_clean
Traceback (most recent call last):
  File "setup.py", line 205, in 
pyrex_version_info = tuple(map(int, pyrex_version.rstrip("+").split('.')))
ValueError: invalid literal for int() with base 10: 'beta1'
[21314 refs]
dh_auto_clean: python2.6-dbg setup.py clean -a returned exit code 1
make[1]: *** [override_dh_auto_clean] Error 1

just in case -- attaching full build log

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (900, 'stable'), (700, 'testing'), (600, 'unstable'), (300, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-vserver-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
I: Running in no-targz mode
I: using fakeroot in build.
I: Current time: Thu Jul 26 23:57:16 EDT 2012
I: pbuilder-time-stamp: 1343361436
I: copying local configuration
I: mounting /proc filesystem
I: mounting /dev/pts filesystem
I: Mounting 
/home/brain/debs/cython/0.17~beta1-2/cython_0.17~beta1-2_amd64.testrdepends.debian-sid
I: Mounting /var/cache/pbuilder/ccache
I: policy-rc.d already exists
I: Obtaining the cached apt archive contents
I: Setting up ccache
I: Installing the build-deps
I: user script /home/neurodebian/build/cow.24906/tmp/hooks/D00add_custom_repo 
starting
Ign file: ./ InRelease
Ign file: ./ Release.gpg
Ign file: ./ Release
Ign file: ./ Translation-en
Get:1 http://10.0.0.1 sid InRelease [249 kB]
Get:2 http://10.0.0.1 sid/main amd64 Packages/DiffIndex [7876 B]
Ign http://10.0.0.1 sid/contrib amd64 Packages/DiffIndex
Get:3 http://10.0.0.1 sid/non-free amd64 Packages/DiffIndex [7819 B]
Get:4 http://10.0.0.1 sid/contrib Translation-en/DiffIndex [5335 B]
Get:5 http://10.0.0.1 sid/main Translation-en/DiffIndex [7876 B]
Hit http://10.0.0.1 sid/non-free Translation-en/DiffIndex
Get:6 http://10.0.0.1 sid/main amd64 2012-07-24-2014.43.pdiff [3147 B]
Get:7 http://10.0.0.1 sid/main amd64 2012-07-24-2014.43.pdiff [3147 B]
Get:8 http://10.0.0.1 sid/non-free amd64 2012-07-27-0214.51.pdiff [242 B]
Get:9 http://10.0.0.1 sid/contrib 2012-07-26-2014.42.pdiff [40 B]
Get:10 http://10.0.0.1 sid/main 2012-07-26-0816.10.pdiff [390 B]
Err http://10.0.0.1 sid/contrib amd64 Packages
  
Err http://10.0.0.1 sid/contrib amd64 Packages
  
Get:11 http://10.0.0.1 sid/contrib amd64 Packages [56.2 kB]
Get:12 http://10.0.0.1 sid/non-free amd64 2012-07-27-0214.51.pdiff [242 B]
Get:13 http://10.0.0.1 sid/main amd64 2012-07-25-0215.10.pdiff [4080 B]
Get:14 http://10.0.0.1 sid/contrib 2012-07-26-2014.42.pdiff [40 B]
Get:15 http://10.0.0.1 sid/main 2012-07-26-0816.10.pdiff [390 B]
Get:16 http://10.0.0.1 sid/main amd64 2012-07-25-0215.10.pdiff [4080 B]
Get:17 http://10.0.0.1 sid/main 2012-07-26-2014.42.pdiff [64 B]
Get:18 http://10.0.0.1 sid/main 2012-07-26-2014.42.pdiff [64 B]
Get:19 http://10.0.0.1 sid/main amd64 2012-07-25-0815.59.pdiff [692 B]
Get:20 http://10.0.0.1 sid/main amd64 2012-07-25-0815.59.pdiff [692 B]
Get:21 http://10.0.0.1 sid/main 2012-07-27-0214.51.pdiff [43 B]
Get:22 http://10.0.0.1 sid/main 2012-07-27-0214.51.pdiff [43 B]
Get:23 http://10.0.0.1 sid/main amd64 2012-07-25-1414.36.pdiff [1970 B]
Get:24 http://10.0.0.1 sid/main amd64 2012-07-25-1414.36.pdiff [1970 B]
Get:25 http://10.0.0.1 sid/main amd64 2012-07-25-2014.28.pdiff [9826 B]
Get:26 http://10.0.0.1 sid/main amd64 2012-07-25-2014.28.pdiff [9826 B]
Get:27 http://10.0.0.1 sid/main amd64 2012-07-26-0214.37.pdiff [5725 B]
Get:28 http://10.0.0.1 sid/main amd64 2012-07-26-0214.37.pdiff [5725 B]
Get:29 http://10.0.0.1 sid/main amd64 2012-07-26-0816.10.pdiff [2177 B]
Get:30 http://10.0.0.1 sid/main amd64 2012-07-26-0816.10.pdiff [2177 B]
Get:31 http://10.0.0.1 sid/main amd64 2012-07-26-1414.12.pdiff [1899 B]
Get:32 http://10.0.0.1 sid/main amd64 2012-07-26-1414.12.pdiff [1899 B]
Get:33 http://10.0.0.1 sid/main amd64 2012-07-26-2014.42.pdiff [6097 B]
Get:34 http://10.0.0.1 sid/main amd64 2012-07-26-2014.42.pdiff [6097 B]
Get:35 http://10.0.0.1 sid/main amd64 2012-07-27-0214.51.pdiff [3567 B]
Get:36 http://10.0.0.1 sid/main amd64 2012-07-27-0214.51.pdiff [3567 B]
Fetched 374 kB in 13s (26.8 kB/s)
Reading package lists...
I: user script /home/neurodebian/build/cow.24906/tmp/hooks/D00add_custom_repo 
finished
 -> Attempting to satisfy build-dependencies
 -> Creating pbuilder-satisfydepends-dummy package
Package: pbuilder-satisfydepends-dummy
Version: 0.invalid.0
Architecture: amd64
Maintainer: Debian Pbuilder Team 
Description: Dummy package to satisfy dependencies with aptitude - created by 
pbuilder
 This package was created automatically by pbuilder to satisfy the
 build-dependencies of the package being currently built.
Depends: cython-dbg | python-pyrex, ca-certificates, debhe

Bug#683123: lxc: [INTL:ja] initial Japanese debconf translation

2012-07-28 Thread Daniel Baumann
tag 683123 pending
thanks

On 07/29/2012 01:04 AM, Kenshi Muto wrote:
> I translated debconf messages into Japanese (ja.po).

thanks, fixed in git.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


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



Bug#682050: fails to connect to server using non default port

2012-07-28 Thread Josh Triplett
Package: python-paramiko
Version: 1.7.7.1-3
Followup-For: Bug #682050

As far as I can tell, no "original issue" exists.  Bug 668239 seems to
complain that paramiko distinguishes between host keys for different
ports on the same server.  That's not a bug, that's a feature, and
removing it results in this bug.  The correct fix (which I've just
tested) involves dropping hostkey.patch entirely.

- Josh Triplett

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

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

Versions of packages python-paramiko depends on:
ii  python 2.7.3-2
ii  python-crypto  2.6-2

python-paramiko recommends no packages.

python-paramiko 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#683129: general: Please consider packaging libopencv-nonfree2.4.

2012-07-28 Thread Zane Tu
Package: general
Severity: wishlist

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

   * What led up to the situation?
I need libopencv-nonfree2.4 to get my opencv code working. Reference:
http://docs.opencv.org/modules/nonfree/doc/nonfree.html
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
N/A
   * What was the outcome of this action?
I could not find libopencv-nonfree2.4 on snapshot.debian.org.
   * What outcome did you expect instead?
I hope the package libopencv-nonfree2.4 can be packaged, just like the one in
the following link.
https://launchpad.net/~philip5/+archive/extra/+build/3654668

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



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (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/dash


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



Bug#683128: Followup-For: Bug #511896

2012-07-28 Thread Matt Ford
Package: debian-installer
Followup-For: Bug #511896

Dear Maintainer,

I see a similar issue when trying to re-install over an all ready
existing Debian Wheezy install.

In my case a full disk encrypted LVM was all ready present.  From a USB
net-install the partitioning step hangs at 39%.  The system is still
responsive and shells work.

A `ps' shows `mdadm' running and not stopping.  Manually running mdadm
from a shell results in an uninterruptible hang of that program.

Scrubbing the the partition table on the hard-disk with the existing
installation (via `dd if=/dev/zero of=/dev/sda bs=1M count=10') allows
the installer and mdadm when next run to complete and things to proceed.

Hope this helps!

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


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



Bug#683127: texlive-base: [INTL:ja] initial Japanese debconf translation

2012-07-28 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: texlive-base
Version: 2012.20120611-3
Severity: wishlist
Tags: l10n patch

Hi,

I translated debconf messages into Japanese (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
km...@debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.9 

iQIcBAEBCgAGBQJQFHkxAAoJEB0hyD3EUuD8EEQQAJUAYeSN/Lw+h5LAHC+wLN7m
87q3pFCxXYaCac1mPIssLB5/AbQv5B1o7ZemP5zi1hnP9Ubb20cHiKfECmeXLGRm
She4tgJq15xMYf4iyeaRDoMKms59Yy9V0JnJnr8NkCdjezHkbzOlJUxblxGtLyZP
kqtdeNhb27rhTT51MVbqQvFtkPJU743XJqNKnlypGDJ+xA0xeYVmfman/uOdcs9w
SuHrs9Z5OyWuW5XNV7sVpFoYhYVHo9QCalQhB/bhl552YJdJuZM2LJcj1UIT27Q1
ibBkxBhIlE+hCdshXUtlcvGDApyFmnvchrYsoU+tP7Y96g5/le0LMU82xgDpQS86
3xpj+hdzVRn4rQIAMOa6bTnUKjkRZfgvuh92RilrvwOwYsFGNhuxldD/stk8Hx6Q
rCCKbKF/5cJ78NDxdrccvT13SPvFpFFkSmrm9CFaqfJydWLLBCTcTKeGG5SbQ7BC
v/NCiVL4N52dg1gPeMm+PZV6W4Wr+EEmr2rUXPofJcujHFPixMsfdfrKJHS/fa3v
f5BR8gwU1UtSKGw1obYPt2j6j3L1HjDms8TO3z/qjTa0Uc4WGNR8a/3psno7Z3Na
ziE8cRSkApD+jjKsE/bfWI+h7OCAhqEUbLQ4C8NebOeRtOne+1iY453e6bkHFX01
ns+etl0Id9wu3MdHGwOM
=Xi1s
-END PGP SIGNATURE-


ja.po
Description: Binary data


Bug#683126: icinga-web: simplify RewriteRules

2012-07-28 Thread Christoph Anton Mitterer
Package: icinga-web
Version: 1.7.1-2
Severity: wishlist
Tags: upstream


Hi.

I've already reported this upstream, but given that you already
got rid of the .htaccess files ( :-) )... it could easily happen that you
oversee it, when upstream accepts this so have a look at:
https://dev.icinga.org/issues/2915

Cheers,
Chris.


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



Bug#618771: NMUing

2012-07-28 Thread Scott Kitterman
I think both these proposed changes are clearly correct and address RC bugs, 
so, since there's been no maintainer reaction, I'm going to upload an NMU for 
both.  NMU diff attached.

Scott Kdiff -Nru frontaccounting-2.2.10/debian/changelog frontaccounting-2.2.10/debian/changelog
--- frontaccounting-2.2.10/debian/changelog	2010-10-29 11:44:31.0 -0400
+++ frontaccounting-2.2.10/debian/changelog	2012-07-28 19:11:53.0 -0400
@@ -1,3 +1,19 @@
+frontaccounting (2.2.10-3.1) unstable; urgency=medium
+
+  [ Scott Kitterman ]
+  * Non-maintainer upload
+  * Urgency medium for grave data loss bug fix
+
+  [ Evgeni Golov ]
+  * Use ENGINE=x instead of TYPE=x which was deprecated since MySQL 4.1
+and removed in 5.4.4.
+Closes: #682249
+
+  [ Jamie McClelland ]
+  * Fix postinst variable quoting Closes: #618771
+
+ -- Scott Kitterman   Sat, 28 Jul 2012 19:08:31 -0400
+
 frontaccounting (2.2.10-3) unstable; urgency=low
 
   * Fix pending l10n issues. Debconf translations:
diff -Nru frontaccounting-2.2.10/debian/patches/series frontaccounting-2.2.10/debian/patches/series
--- frontaccounting-2.2.10/debian/patches/series	2010-02-21 01:09:02.0 -0500
+++ frontaccounting-2.2.10/debian/patches/series	2012-07-28 19:08:22.0 -0400
@@ -1,3 +1,4 @@
 config.default.php.patch
 remove-files.patch
 debian-changes-2.2.6-1
+use_engine_instead_of_type.patch
diff -Nru frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch
--- frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch	1969-12-31 19:00:00.0 -0500
+++ frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch	2012-07-28 19:08:22.0 -0400
@@ -0,0 +1,1521 @@
+Description: Use ENGINE=x instead of TYPE=x
+ It was deprecated since MySQL 4.1 and removed in 5.4.4.
+Author: Evgeni Golov 
+Bug-Debian: http://bugs.debian.org/682249
+Last-Update: 2012-07-21
+
+--- frontaccounting-2.2.10.orig/sql/alter2.2.sql
 frontaccounting-2.2.10/sql/alter2.2.sql
+@@ -70,7 +70,7 @@ CREATE TABLE `0_audit_trail` (
+   `gl_seq` int(11) unsigned default NULL,
+PRIMARY KEY (`id`),
+   KEY (`fiscal_year`, `gl_seq`)
+-) TYPE=InnoDB  ;
++) ENGINE=InnoDB  ;
+ 
+ ALTER TABLE `0_stock_master` ADD COLUMN `no_sale` tinyint(1) NOT NULL default '0';
+ ALTER TABLE `0_currencies` ADD COLUMN `auto_update` tinyint(1) NOT NULL default '1';
+@@ -93,7 +93,7 @@ CREATE TABLE `0_security_roles` (
+   `inactive` tinyint(1) NOT NULL default '0',
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY `role` (`role`)
+-) TYPE=MyISAM AUTO_INCREMENT=1;
++) ENGINE=MyISAM AUTO_INCREMENT=1;
+ 
+ ALTER TABLE `0_company` ADD COLUMN `login_tout` SMALLINT(6) NOT NULL DEFAULT '600';
+ ALTER TABLE `0_users` CHANGE COLUMN `full_access` `role_id` int(11) NOT NULL default '1';
+@@ -119,7 +119,7 @@ CREATE TABLE `0_tags` (
+   `inactive` tinyint(1) NOT NULL default '0',
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY(`type`,`name`)
+-) TYPE=MyISAM AUTO_INCREMENT=1;
++) ENGINE=MyISAM AUTO_INCREMENT=1;
+ 
+ DROP TABLE IF EXISTS `0_tag_associations`;
+ 
+@@ -127,7 +127,7 @@ CREATE TABLE `0_tag_associations` (
+   `record_id` varchar(11) NOT NULL,
+   `tag_id` int(11) NOT NULL,
+   UNIQUE KEY(`record_id`,`tag_id`)
+-) TYPE=MyISAM;
++) ENGINE=MyISAM;
+ 
+ DROP TABLE IF EXISTS `0_useronline` ;
+ 
+@@ -138,7 +138,7 @@ CREATE TABLE `0_useronline` (
+ 	`file` varchar(100) NOT NULL default '',
+ 	PRIMARY KEY `id` (`id`) ,
+ 	KEY (`timestamp`) 
+-) TYPE=MYISAM AUTO_INCREMENT=1;
++) ENGINE=MYISAM AUTO_INCREMENT=1;
+ 
+ ALTER TABLE `0_suppliers` ADD COLUMN `phone2` varchar(30) NOT NULL default '' AFTER `phone`;
+ ALTER TABLE `0_cust_branch` ADD COLUMN `phone2` varchar(30) NOT NULL default '' AFTER `phone`;
+--- frontaccounting-2.2.10.orig/sql/alter2.2rc.sql
 frontaccounting-2.2.10/sql/alter2.2rc.sql
+@@ -12,4 +12,4 @@ CREATE TABLE `0_useronline` (
+ 	`file` varchar(100) NOT NULL default '',
+ 	PRIMARY KEY `id` (`id`) ,
+ 	KEY (`timestamp`) 
+-) TYPE=MYISAM AUTO_INCREMENT=1;
++) ENGINE=MYISAM AUTO_INCREMENT=1;
+--- frontaccounting-2.2.10.orig/sql/alter2.1.sql
 frontaccounting-2.2.10/sql/alter2.1.sql
+@@ -25,7 +25,7 @@ CREATE TABLE `0_attachments` (
+   `filetype` varchar(60) NOT NULL default '',
+   PRIMARY KEY  (`id`),
+   KEY `type_no` (`type_no`,`trans_no`)
+-) TYPE=MyISAM AUTO_INCREMENT=1 ;
++) ENGINE=MyISAM AUTO_INCREMENT=1 ;
+ 
+ DROP TABLE IF EXISTS `0_groups`;
+ 
+@@ -35,7 +35,7 @@ CREATE TABLE `0_groups` (
+   `inactive` tinyint(1) NOT NULL default 0,
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY `description` (`description`)
+-) TYPE=MyISAM AUTO_INCREMENT=1 ;
++) ENGINE=MyISAM AUTO_INCREMENT=1 ;
+ 
+ INSERT INTO `0_groups` VALUES ('1', 'Small', '0');
+ INSERT INTO `0_groups` VALUES ('2', 'Medium', '0');
+@@ -56,7 +56,7 @@ CREATE TABLE `0_recurrent_invoices` (
+   `last_sent` date NOT NULL default '-00-00',
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY `description` (`description`)
+-) TYPE=InnoDB AUTO_

Bug#683125: unblock: frontaccounting/2.2.10-3.1

2012-07-28 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package frontaccounting

Fixes RC bugs #618771 and # 682249.

unblock frontaccounting/2.2.10-3.1
diff -Nru frontaccounting-2.2.10/debian/changelog frontaccounting-2.2.10/debian/changelog
--- frontaccounting-2.2.10/debian/changelog	2010-10-29 11:44:31.0 -0400
+++ frontaccounting-2.2.10/debian/changelog	2012-07-28 19:11:53.0 -0400
@@ -1,3 +1,19 @@
+frontaccounting (2.2.10-3.1) unstable; urgency=medium
+
+  [ Scott Kitterman ]
+  * Non-maintainer upload
+  * Urgency medium for grave data loss bug fix
+
+  [ Evgeni Golov ]
+  * Use ENGINE=x instead of TYPE=x which was deprecated since MySQL 4.1
+and removed in 5.4.4.
+Closes: #682249
+
+  [ Jamie McClelland ]
+  * Fix postinst variable quoting Closes: #618771
+
+ -- Scott Kitterman   Sat, 28 Jul 2012 19:08:31 -0400
+
 frontaccounting (2.2.10-3) unstable; urgency=low
 
   * Fix pending l10n issues. Debconf translations:
diff -Nru frontaccounting-2.2.10/debian/patches/series frontaccounting-2.2.10/debian/patches/series
--- frontaccounting-2.2.10/debian/patches/series	2010-02-21 01:09:02.0 -0500
+++ frontaccounting-2.2.10/debian/patches/series	2012-07-28 19:08:22.0 -0400
@@ -1,3 +1,4 @@
 config.default.php.patch
 remove-files.patch
 debian-changes-2.2.6-1
+use_engine_instead_of_type.patch
diff -Nru frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch
--- frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch	1969-12-31 19:00:00.0 -0500
+++ frontaccounting-2.2.10/debian/patches/use_engine_instead_of_type.patch	2012-07-28 19:08:22.0 -0400
@@ -0,0 +1,1521 @@
+Description: Use ENGINE=x instead of TYPE=x
+ It was deprecated since MySQL 4.1 and removed in 5.4.4.
+Author: Evgeni Golov 
+Bug-Debian: http://bugs.debian.org/682249
+Last-Update: 2012-07-21
+
+--- frontaccounting-2.2.10.orig/sql/alter2.2.sql
 frontaccounting-2.2.10/sql/alter2.2.sql
+@@ -70,7 +70,7 @@ CREATE TABLE `0_audit_trail` (
+   `gl_seq` int(11) unsigned default NULL,
+PRIMARY KEY (`id`),
+   KEY (`fiscal_year`, `gl_seq`)
+-) TYPE=InnoDB  ;
++) ENGINE=InnoDB  ;
+ 
+ ALTER TABLE `0_stock_master` ADD COLUMN `no_sale` tinyint(1) NOT NULL default '0';
+ ALTER TABLE `0_currencies` ADD COLUMN `auto_update` tinyint(1) NOT NULL default '1';
+@@ -93,7 +93,7 @@ CREATE TABLE `0_security_roles` (
+   `inactive` tinyint(1) NOT NULL default '0',
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY `role` (`role`)
+-) TYPE=MyISAM AUTO_INCREMENT=1;
++) ENGINE=MyISAM AUTO_INCREMENT=1;
+ 
+ ALTER TABLE `0_company` ADD COLUMN `login_tout` SMALLINT(6) NOT NULL DEFAULT '600';
+ ALTER TABLE `0_users` CHANGE COLUMN `full_access` `role_id` int(11) NOT NULL default '1';
+@@ -119,7 +119,7 @@ CREATE TABLE `0_tags` (
+   `inactive` tinyint(1) NOT NULL default '0',
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY(`type`,`name`)
+-) TYPE=MyISAM AUTO_INCREMENT=1;
++) ENGINE=MyISAM AUTO_INCREMENT=1;
+ 
+ DROP TABLE IF EXISTS `0_tag_associations`;
+ 
+@@ -127,7 +127,7 @@ CREATE TABLE `0_tag_associations` (
+   `record_id` varchar(11) NOT NULL,
+   `tag_id` int(11) NOT NULL,
+   UNIQUE KEY(`record_id`,`tag_id`)
+-) TYPE=MyISAM;
++) ENGINE=MyISAM;
+ 
+ DROP TABLE IF EXISTS `0_useronline` ;
+ 
+@@ -138,7 +138,7 @@ CREATE TABLE `0_useronline` (
+ 	`file` varchar(100) NOT NULL default '',
+ 	PRIMARY KEY `id` (`id`) ,
+ 	KEY (`timestamp`) 
+-) TYPE=MYISAM AUTO_INCREMENT=1;
++) ENGINE=MYISAM AUTO_INCREMENT=1;
+ 
+ ALTER TABLE `0_suppliers` ADD COLUMN `phone2` varchar(30) NOT NULL default '' AFTER `phone`;
+ ALTER TABLE `0_cust_branch` ADD COLUMN `phone2` varchar(30) NOT NULL default '' AFTER `phone`;
+--- frontaccounting-2.2.10.orig/sql/alter2.2rc.sql
 frontaccounting-2.2.10/sql/alter2.2rc.sql
+@@ -12,4 +12,4 @@ CREATE TABLE `0_useronline` (
+ 	`file` varchar(100) NOT NULL default '',
+ 	PRIMARY KEY `id` (`id`) ,
+ 	KEY (`timestamp`) 
+-) TYPE=MYISAM AUTO_INCREMENT=1;
++) ENGINE=MYISAM AUTO_INCREMENT=1;
+--- frontaccounting-2.2.10.orig/sql/alter2.1.sql
 frontaccounting-2.2.10/sql/alter2.1.sql
+@@ -25,7 +25,7 @@ CREATE TABLE `0_attachments` (
+   `filetype` varchar(60) NOT NULL default '',
+   PRIMARY KEY  (`id`),
+   KEY `type_no` (`type_no`,`trans_no`)
+-) TYPE=MyISAM AUTO_INCREMENT=1 ;
++) ENGINE=MyISAM AUTO_INCREMENT=1 ;
+ 
+ DROP TABLE IF EXISTS `0_groups`;
+ 
+@@ -35,7 +35,7 @@ CREATE TABLE `0_groups` (
+   `inactive` tinyint(1) NOT NULL default 0,
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY `description` (`description`)
+-) TYPE=MyISAM AUTO_INCREMENT=1 ;
++) ENGINE=MyISAM AUTO_INCREMENT=1 ;
+ 
+ INSERT INTO `0_groups` VALUES ('1', 'Small', '0');
+ INSERT INTO `0_groups` VALUES ('2', 'Medium', '0');
+@@ -56,7 +56,7 @@ CREATE TABLE `0_recurrent_invoices` (
+   `last_sent` date NOT NULL default '-00-00',
+   PRIMARY KEY  (`id`),
+   UNIQUE KEY `description` (`descr

Bug#675190: I am Mrs Edna Etters, i have an offer for you please contact me Please email me :(mrsednaethe...@yahoo.com.hk) for more details thanks...

2012-07-28 Thread Jill Chadwick
Jill Chadwick
Executive Media Liaison
University of Kansas Hospital
913-588-5013 (o)
913-223-3974 (c)
913-917-9970 (p)



Bug#683124: debian-installer: incomplete serial console configuration

2012-07-28 Thread christian mock
Package: debian-installer
Severity: normal


The installer, when run with a serial console, does configure some
parts of the system to account for this, but not all.

When I run the installer (from debian-6.0.5-i386-businesscard.iso) and
edit the installer's kernel command line to include
"console=ttyS0,9600n8", the installed system then has a getty on ttyS0
configured in inittab, and "GRUB_TERMINAL=serial" plus
"GRUB_SERIAL_COMMAND" in /etc/default/grub, so the installed system
works with that serial console.

What is missing, however, is the matching "console=ttyS0..." parameter
in "GRUB_CMDLINE_LINUX", so the boot messages go to the VGA console
and (if the boot suceeds) the next thing I see on the serial console
is the login prompt.

regards,

cm.


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



Bug#683123: lxc: [INTL:ja] initial Japanese debconf translation

2012-07-28 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Package: lxc
Severity: wishlist
Tags: l10n patch
Version: 0.8.0~rc1-8

Hi,

I translated debconf messages into Japanese (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
km...@debian.org
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.9 

iQIcBAEBCgAGBQJQFHANAAoJEB0hyD3EUuD8omUP/R2Hxdc80B+2SlpN7sQecLv4
b7VEfmNLjUIQSUJlXZ6Y3Zptge1RCReNBv/5Fa0/YRSiiK3v9aBMUQX3R9VzZhge
B9VHYuJngnXsNMtg633bI7Qr5VWP23dJoWnV4gRpprBPkJSzMXSfe9b4oASPudGf
X8246LMid6yF5LBtWCHwtcq/MuOJsntByYxjqm3eJAuvVNtY/z5w6wzNQ93qn/51
wn09uvDri7TUQ8hnH2ky8yHv/fcN27jCQH5H3ESdrSSMgXTVCRPgpvhP053yF/WY
0RjUKzAIUFZhWVB58BV74P9FgEFMsovxHv5K0MXS0hSRPTtYtH6CbbZpTzJNEOuk
l9Wp+75iIPVSjLud1HUlg2KZh49pl6kpn8JG4WYg1pTaIpvpqpOf4viHc0NHRT4k
ZFiDGcMGoB+o+ixn0YCK8+OiS3UJSd0EibEdPWcjNLo1XCbBqybzsG/a+HH+AzEv
iJvk2F1zKzoikt1vYsUFdBR/bACOPtJ8BIgX6PWWPxq3H/PRPhJvlT0q5Ia+BHHN
4XBLWX3IUXFafJJEyC8q5uljLR5NgEYxha8K5Sv1jQKAG2APTOZ3mcznJnPFh/8J
5HCP2iYD8KH0NmWXJJ9vVVXkKO/70olugeIUwm1HXmP7G/FWHBxGC/joFIlEqivr
LFk0NJ00/sCQ75EuAkw2
=dWq+
-END PGP SIGNATURE-


ja.po
Description: Binary data


Bug#682705: gimp 2nd level dialogs freeze

2012-07-28 Thread Ari Pollak
Are the freezing dialogs always file-related? Does it only happen when
they're open to a specific directory? Could you attach the output of the
"mount" command?


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



Bug#618771: Severity: Grave

2012-07-28 Thread Scott Kitterman
grave
.. causes data loss ...


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



Bug#682921: [Pkg-samba-maint] Bug#682921: samba: slow samba performance (both network and disk)

2012-07-28 Thread Florin Iucha
On Sat, Jul 28, 2012 at 03:06:33PM -0600, Christian PERRIER wrote:
> tags 682921 wontfix
> severity 682921 normal
> 
> You really should forget about these parameters. I know you can ind
> some references here or there about "socket options"but the Samba Team
> themselves discourages using them.

OK.  With or without, it makes no difference.

> Apart from that, I think that such performance issues should really be
> discussed with upstream, and probably not as a bug report. There are
> way too many parameters that can be involved that there is zero chance
> that one of the maintainers of samba in Debian really can help you.

Fair enough: https://bugzilla.samba.org/show_bug.cgi?id=9070

Thanks for your comment and your work on Debian!

Regards,
florin

-- 
Beware of software written by optimists!


signature.asc
Description: Digital signature


Bug#683122: debianutils: [INTL:fr] updated French man pages translation

2012-07-28 Thread David Prévot
Package: debianutils
Version: 4.3.2
Severity: wishlist
Tags: patch l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Hi Clint,

Please find attached the updated French man pages translation
(po4a/po/fr.po) as agreed with the current translator (Christian
Perrier).

It looks like the man pages were updated without any call for
translation update, and sent to the archive just before the freeze.
I'd be happy to send a call for translation update (Spanish and Slovak
translation could be updated) on your behalf, in order to have fully
translated man pages in the upcoming Wheezy (documentation and
translation updated can be granted freeze exception).

Regards

David

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

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

Versions of packages debianutils depends on:
ii  libc6   2.13-35
ii  sensible-utils  0.0.7

debianutils recommends no packages.

debianutils suggests no packages.

- -- no debconf information

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

iQIcBAEBCAAGBQJQFGxBAAoJELgqIXr9/gnyylAP/RKcpsrC8VrquDKVN7iCxv74
mPnYBtybhAei3BPgZSSAOrt8/31Jrd6PACVx0BvhVMweJJ03/xd7cLPzKEH5WI04
1FaWMfy+xWbOtGdzqEAMiXnJyLgv9dgIJ2HZxwgyO/3JBuZShgfuqpNxARq+LnLR
G3ChNL9nhkUfC7qmd76/XReLia12IWkgcA8vBLU3xGyY6X74XrV5f8a3b3MR5ust
12KqgWI/aHfL/LSfLoJa1YXrEykObyFXZahVD9Tp/c8o0nCdFJplsaYnZS6/fenR
L8IqaBJ4ZcXOg/cra2RKy7Yghjoxo/aZ/RV+ubEqEuZf7SDkuWhl9fEZpso8FBYk
/llW7+YZq0qsfJ6AM13nPwt9a5Mnc7AcHvXg5aiJbkcJMouiMaR9FyD0lFnnHfwa
aTS+Hcg9CZyV3Vkjuv0EKG3MVxMV57rK6+XqKJGGBNAmlUDkikrDnfOCz9N78cst
A2nG1tfObPyfRTAuLakCEERKKFEUXmrkYPRVY9oev12+ZoBphQ/6PrK1phqoZK4z
K8m4l5vUDdC+DwduDaJIGwRSKR8CPjIk9kv5X27iJv6jtSmQKfsam4uxwPpkgK92
dw6EtcJxkuFd/ZgKPF6F8JKm4gc7DWeY5onLt6GVcnOSC9LlYLRWh9mlefQW46cF
n2Q9tPH+jpXrmbbpvO+C
=HMYa
-END PGP SIGNATURE-
# French translation of the debianutils' man pages
# Traduction des pages de manuel du paquet debianutils
#
# Copyright (C) 2004-2011 Software in the Public Interest
# This file is distributed under the same license as the debianutils package.
#
# Reprise des traduction originelles de which.1 (Laëtitia Groslong)
# 20 avril 2010 - Traduction des messages « untranslated » et traitement des « fuzzy » 
#
# Nicolas FRANÇOIS , 2004.
# et savelog.8 (Antoine Gémis, 13 janvier 2003).
# Christian Perrier , 2010, 2011.
# David Prévot , 2012.
msgid ""
msgstr ""
"Project-Id-Version: debianutils\n"
"POT-Creation-Date: 2012-06-27 21:51-0300\n"
"PO-Revision-Date: 2012-07-28 18:33:19-0400\n"
"Last-Translator: Christian Perrier \n"
"Language-Team: French \n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 1.2\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

# type: TH
#. type: TH
#: ../add-shell.8:1
#, no-wrap
msgid "ADD-SHELL"
msgstr "ADD-SHELL"

# type: TH
#. type: TH
#: ../add-shell.8:1
#, no-wrap
msgid "12 May 2011"
msgstr "12 mai 2011"

# type: SH
#. type: SH
#: ../add-shell.8:2 ../installkernel.8:2 ../ischroot.1:3 ../remove-shell.8:2
#: ../run-parts.8:9 ../savelog.8:3 ../tempfile.1:3 ../which.1:3
#, no-wrap
msgid "NAME"
msgstr "NOM"

# type: Plain text
#. type: Plain text
#: ../add-shell.8:4
msgid "add-shell - add shells to the list of valid login shells"
msgstr ""
"add-shell - ajoute des interpréteurs à la liste des interpréteurs initiaux "
"valables"

# type: SH
#. type: SH
#: ../add-shell.8:4 ../installkernel.8:4 ../ischroot.1:5 ../remove-shell.8:4
#: ../run-parts.8:11 ../savelog.8:5 ../tempfile.1:5 ../which.1:5
#, no-wrap
msgid "SYNOPSIS"
msgstr "SYNOPSIS"

# type: Plain text
#. type: Plain text
#: ../add-shell.8:8
msgid "B I [I...]"
msgstr "B I [I...]"

# type: SH
#. type: SH
#: ../add-shell.8:8 ../installkernel.8:6 ../ischroot.1:8 ../remove-shell.8:8
#: ../run-parts.8:20 ../savelog.8:9 ../tempfile.1:9 ../which.1:7
#, no-wrap
msgid "DESCRIPTION"
msgstr "DESCRIPTION"

# type: Plain text
#. type: Plain text
#: ../add-shell.8:13
msgid ""
"B copies I to I, adds the given "
"shells to this file if they are not already present, and copies this "
"temporary file back to I."
msgstr ""
"B copie I dans I, ajoute les "
"interpréteurs de commandes (« shell ») à ce fichier s'il n'y est pas déjà, "
"puis copie ce fichier temporaire dans I."

# type: Plain text
#. type: Plain text
#: ../add-shell.8:15
msgid "The shells must be provided by their full pathnames."
msgstr "Le chemin complet des interpréteurs doit être fourni."

# type: SH
#. type: SH
#: ../add-shell.8:15 ../remove-shell.8:13 ../savelog.8:158 ../tempfile.1:90
#, no-wrap
msgid "SEE ALSO"
msgstr "VOIR AUSSI"

# type: Plain text
#. type: Plain text
#: ../add-shell.8:16 ../remove-shell.8:14
msgid "B(5)"
msgstr "B(5)"

# type: TH
#. type:

Bug#683104: [INTL:pl] Updated Polish translations

2012-07-28 Thread Guillem Jover
On Sat, 2012-07-28 at 23:33:06 +0200, Michał Kułach wrote:
> Many thanks, and sorry for those problems, but it was a quite large update.

Yeah, perfectly understandable, after that amount of work this kind of
small issues are normal. :)

I also just noticed and fixed some issues with missing POD markup in the
man page translations. To spot these kind of problems you might want to
run «make update-po» in the future, which should do basic sanity checks
on the general formatting.

> Dnia 28-07-2012 o 23:08:51 Guillem Jover  napisał:
> >The following string seems to have not been translated, could you send
> >the translation?
> >
> > * "bad binary-only value: %s"
> 
> "nieprawidłowa wartość tylko binarna: %s"

Thanks!

regards,
guillem


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



Bug#683103: mkdir: cannot create directory `/run/shm': File exists

2012-07-28 Thread Roger Leigh
On Sat, Jul 28, 2012 at 11:12:52PM +0100, Roger Leigh wrote:
> On Sat, Jul 28, 2012 at 09:42:53PM +0200, Cyril Brulebois wrote:
> > Package: initscripts
> > Version: 2.88dsf-13.1+squeeze1
> > Severity: serious
> > Justification: fails to upgrade
> > 
> > Hi,
> > 
> > during the sid chroot dist-upgrade on harris.debian.org, initscripts
> > failed to upgrade due to:
> > | Setting up initscripts (2.88dsf-29) ...
> > | mkdir: cannot create directory `/run/shm': File exists
> > | dpkg: error processing initscripts (--configure):
> > |  subprocess installed post-installation script returned error exit status 
> > 1
> > | Errors were encountered while processing:
> > |  initscripts
> > | E: Sub-process /usr/bin/dpkg returned an error code (1)
> > 
> > Not fun…
> 
> Hmm, that's due to vorlon's recent change, I think.  Is this inside
> a chroot?  If so, it's this logic failing:
> 
>   # Symlink /dev/shm from /run/shm
>   # Note that it's really /var/run/shm
>   if mountpoint -q /dev && mountpoint -q /dev/shm; then
>   compat_link /dev/shm /run/shm
>   else
>   [ -d /run/shm ] || mkdir -p /run/shm
>   mountpoint -q /dev || compat_link /run/shm /dev/shm
>   fi
> 
> What is the output of
>   % ls -ld /dev /dev/shm /run /run/shm
> on this system?

Actually, just seen it myself, and I have:

% ls -ld /dev /dev/shm /run /run/shm
drwxr-xr-x 13 root root 3680 Jul 28 22:57 /dev
lrwxrwxrwx  1 root root8 Jul 28 11:45 /dev/shm -> /run/shm
drwxr-xr-x 21 root root  840 Jul 28 22:57 /run
drwxrwxrwt  2 root root   40 Jul 28 11:45 /run/shm

So that's all set up correctly.  Unless my shell-fu is missing
something tonight, I'm not sure what's causing the mkdir to be
run here, given that the directory already exists.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


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



Bug#683103: mkdir: cannot create directory `/run/shm': File exists

2012-07-28 Thread Roger Leigh
On Sat, Jul 28, 2012 at 09:42:53PM +0200, Cyril Brulebois wrote:
> Package: initscripts
> Version: 2.88dsf-13.1+squeeze1
> Severity: serious
> Justification: fails to upgrade
> 
> Hi,
> 
> during the sid chroot dist-upgrade on harris.debian.org, initscripts
> failed to upgrade due to:
> | Setting up initscripts (2.88dsf-29) ...
> | mkdir: cannot create directory `/run/shm': File exists
> | dpkg: error processing initscripts (--configure):
> |  subprocess installed post-installation script returned error exit status 1
> | Errors were encountered while processing:
> |  initscripts
> | E: Sub-process /usr/bin/dpkg returned an error code (1)
> 
> Not fun…

Hmm, that's due to vorlon's recent change, I think.  Is this inside
a chroot?  If so, it's this logic failing:

# Symlink /dev/shm from /run/shm
# Note that it's really /var/run/shm
if mountpoint -q /dev && mountpoint -q /dev/shm; then
compat_link /dev/shm /run/shm
else
[ -d /run/shm ] || mkdir -p /run/shm
mountpoint -q /dev || compat_link /run/shm /dev/shm
fi

What is the output of
  % ls -ld /dev /dev/shm /run /run/shm
on this system?


Thanks,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


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



Bug#683053: unblock: python2.7/2.7.3-2

2012-07-28 Thread Scott Kitterman
On Saturday, July 28, 2012 02:31:50 PM Julien Cristau wrote:
> On Sat, Jul 28, 2012 at 03:39:51 -0400, Scott Kitterman wrote:
> > As far as I know, the only issue that's come up with the 2.7.3-2 is the
> > urlparse module where they simplified it and dropped some options which
> > gave some packages a bit of trouble.  It appears jwilk did a systematic
> > sweep for packages that were affected by this (I say it seems because I
> > haven't caught him online recently to ask, but everywhere I found the
> > issue, he'd already filed a bug).
> 
> FWIW I think this is a major failure on the part of python upstream, and
> would rather see this change reverted.

One additional data point on this issue.  I finally caught up with jwilk and he 
did do a comprehensive search on this issue:

 ScottK: I believe I hunted down everything that had such a bug in 
unstable on Jun 17.

I agree it's an upstream failing, but I still think it's better to just fix the 
remaining three packages.

Scott K


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



Bug#683121: uniutils: 'man uniname' typo: "apprpriate"

2012-07-28 Thread A. Costa
Package: uniutils
Version: 2.27-1
Severity: minor
Tags: patch

Dear Maintainer,

Found a typo in '/usr/share/man/man1/uniname.1.gz', see attached '.diff'.

Hope this helps...

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

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

Versions of packages uniutils depends on:
ii  ascii2binary  2.14-1
ii  libc6 2.13-35

uniutils recommends no packages.

uniutils suggests no packages.

-- no debconf information
--- uniname.1	2009-02-22 10:42:49.0 -0500
+++ /tmp/uniname.1	2012-07-28 01:39:36.999438290 -0400
@@ -70,7 +70,7 @@
 there is no guarantee that the byte sequence beginning at an arbitrary byte will be
 valid Unicode. This option is provided for use where other programs generate only
 byte offsets or where it is necessary to skip over damaged Unicode. In most circumstances
-use of a character offset will be more apprpriate. If a byte offset is used, the character
+use of a character offset will be more appropriate. If a byte offset is used, the character
 offsets shown are with respect to the beginning of the section of the file
 examined rather than the beginning of the file.
 .IP "-u"


Bug#683117: lxc-create -t debian creates unusable setup

2012-07-28 Thread Daniel Baumann
severity 683117 normal
retitle 683117 add missing live-debconfig preseeding
tag 683117 - patch
tag 683117 pending
forcemerge 683117  680469
thanks

On 07/28/2012 10:53 PM, Sebastian Schmidt wrote:
> There are three possible solutions I can think of:

[...]

neither; the container support package is not (yet) setup properly by
lxc-debconf.

-- 
Address:Daniel Baumann, Donnerbuehlweg 3, CH-3012 Bern
Email:  daniel.baum...@progress-technologies.net
Internet:   http://people.progress-technologies.net/~daniel.baumann/


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



Bug#683108: [Python-modules-team] Bug#683108: ipython: python3 shebangs

2012-07-28 Thread Yaroslav Halchenko
my guess is that it needs overrides for dh_python* calls like I did
recently for cython:

override_dh_python2:
dh_python2 -pcython

override_dh_python3:
dh_python3 -pcython3


On Sat, 28 Jul 2012, Jakub Wilk wrote:

> Package: ipython
> Version: 0.13-1
> Severity: serious

> If you rebuild ipython in an up-to-date sid chroot, the following
> scripts end up with "#! /usr/bin/python3" shebangs:

> /usr/bin/ipcluster
> /usr/bin/ipcontroller
> /usr/bin/ipengine
> /usr/bin/iplogger
> /usr/bin/ipython
> /usr/bin/irunner
> /usr/bin/pycolor
-- 
Yaroslav O. Halchenko
Postdoctoral Fellow,   Department of Psychological and Brain Sciences
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


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



Bug#683120: RFS: yadifa-1.0.1-1/2116-1

2012-07-28 Thread martijn cielen
Package: sponsorship-requests
  Severity: normal

  Dear mentors,

  I am looking for a sponsor for my package "yadifa-1.0.1-1"

 * Package name: yadifa-1.0.1-1
   Version : 2116-1
   Upstream Author : yadifa.eu
 * URL : yadifa.eu
 * License : BSD
   Section : net

  It builds those binary packages:

yadifa-1.0.1 - lightweight authoritative Name Server w DNSSEC capabilities

  To access further information about this package, please visit the
following URL:

  http://mentors.debian.net/package/yadifa-1.0.1-1


  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/y/yadifa-1.0.1-1/yadifa-1.0.1-1_2116-1.dsc

  More information about hello can be obtained from http://yadifa.eu.

  Changes since the last upload:

initial upload


Bug#678519: after about a month, routing gets wedged

2012-07-28 Thread Rudy Zijlstra

On 08-07-12 03:02, Jonathan Nieder wrote:

Rudy Zijlstra wrote:


Still using it. Its my firewall. Sorry for missing the questions.

Yes, sorry about the clutter in my message.

[...]

1/ always behaved this way
Not certain.

[...]

2/ how many times?
at least twice. Its well possible that earlier cases were  masked by
reboots from other reasons. And it has taken me some time before i
linked particular slow network behaviour to a firewall problem

3/ how stable is the 1 month gestation time?
no certainty on this one.

OK, problem is back. About 3 days more then 1 month.

IPv4 browsing is very slow, IPv6 routing is down. I can no longer ping6 
ipv6.google.com. It gets the  record, but no responses. Not even 
when doing it on the firewall itself.


output on June 25:
== IPv6 ==
ip -f inet6 neigh show
2001:610:73e:0:f53f:5d0e:28cc:3479 dev eth2 lladdr f0:4d:a2:fa:5c:67 
REACHABLE
2001:610:73e:0:225:64ff:fea4:928e dev eth2 lladdr 00:25:64:a4:92:8e 
REACHABLE
2001:610:73e:0:d6be:d9ff:fe12:73f0 dev eth2 lladdr d4:be:d9:12:73:f0 
REACHABLE
2001:610:73e:0:206:5bff:fef7:45e5 dev eth2 lladdr 00:06:5b:f7:45:e5 
REACHABLE

fe80::208:2ff:fea3:d56b dev eth2 lladdr 00:08:02:a3:d5:6b router STALE
ip -f inet6 route list cache
2001:610:73e:0:206:5bff:fef7:45e5 via 2001:610:73e:0:206:5bff:fef7:45e5 
dev eth2  metric 0

cache  mtu 1500 advmss 1440 hoplimit 0
2001:610:73e:0:225:64ff:fea4:928e via 2001:610:73e:0:225:64ff:fea4:928e 
dev eth2  metric 0

cache  mtu 1500 advmss 1440 hoplimit 0
2001:610:73e:0:d6be:d9ff:fe12:73f0 via 
2001:610:73e:0:d6be:d9ff:fe12:73f0 dev eth2  metric 0

cache  mtu 1500 advmss 1440 hoplimit 0
2001:610:73e:0:f53f:5d0e:28cc:3479 via 
2001:610:73e:0:f53f:5d0e:28cc:3479 dev eth2  metric 0

cache  mtu 1500 advmss 1440 hoplimit 0


Current output:
# ip -f inet6 neigh show
2001:610:73e:0:21b:21ff:fe22:b647 dev eth2 lladdr 00:1b:21:22:b6:47 STALE
2001:610:73e::15 dev eth2 lladdr 00:25:64:a4:92:8e REACHABLE
fe80::208:2ff:fea3:d56b dev eth2 lladdr 00:08:02:a3:d5:6b router STALE
fe80::21b:21ff:fe22:b647 dev eth2 lladdr 00:1b:21:22:b6:47 DELAY
# ip -f inet6 route list cache
2001:610:73e::15 via 2001:610:73e::15 dev eth2  metric 0
cache  mtu 1500 advmss 1440 hoplimit 0
2001:610:73e:0:21b:21ff:fe22:b647 via 2001:610:73e:0:21b:21ff:fe22:b647 
dev eth2  metric 0

cache  mtu 1500 advmss 1440 hoplimit 0


"ip -f inet6 route flush" makes no difference. Neither flushing the 
neighbor cache


ifdown / ifup of the external ethernet port makes no difference

"rmmod tg3" removed both interfaces (so the driver does indeed handle 
those ports) followed by "modprobe tg3" made no difference either.


package firmware-linux-nonfree is current.

stopping aiccu, rmmod sit and tunnel4 and then reloading and restarting 
aiccu did solve it


Next time i will start with restarting aiccu, and not rmmoding the 
related modules


Cheers,


Rudy


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



Bug#681567: opennebula: diff for NMU version 3.4.1-3.1

2012-07-28 Thread gregor herrmann
tags 681567 + pending
thanks

Dear maintainer,

I've prepared an NMU for opennebula (versioned as 3.4.1-3.1) 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: Aretha Franklin: There Is A Fountain
diff -Nru opennebula-3.4.1/debian/changelog opennebula-3.4.1/debian/changelog
--- opennebula-3.4.1/debian/changelog	2012-06-03 19:18:27.0 +0200
+++ opennebula-3.4.1/debian/changelog	2012-07-28 23:38:06.0 +0200
@@ -1,3 +1,13 @@
+opennebula (3.4.1-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "fails to install, purge, and install again":
+opennebula-common.postinst: make sure that the homedir of the oneadmin
+user exists.
+(Closes: #681567)
+
+ -- gregor herrmann   Sat, 28 Jul 2012 23:38:02 +0200
+
 opennebula (3.4.1-3) unstable; urgency=low
 
   * Add support for noVNC to SelfService and Sunstone UI:
diff -Nru opennebula-3.4.1/debian/opennebula-common.postinst opennebula-3.4.1/debian/opennebula-common.postinst
--- opennebula-3.4.1/debian/opennebula-common.postinst	2012-06-03 19:18:27.0 +0200
+++ opennebula-3.4.1/debian/opennebula-common.postinst	2012-07-28 18:15:52.0 +0200
@@ -19,6 +19,8 @@
 ONEHOME=`getent passwd $ONE_USER | cut -f6 -d:`
 	# Renable user (give him a shell)
 usermod --shell /bin/bash $ONE_USER
+# Make sure ONEHOME exists, might have been removed on previous purge
+mkdir -p $ONEHOME
 fi
 }
 


signature.asc
Description: Digital signature


Bug#683119: unblock: mlt/0.8.0-3

2012-07-28 Thread Patrick Matthäi
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package mlt

I had to disable the --luma-compress option on mips, so that
building the package does not time out anymore.
With enabled luma-compressing, the luma files are also processed
by /usr/bin/convert, which seems to not work and just consuming CPU
cycles in this case on mips. Compressing is not necessary.

unblock mlt/0.8.0-3

-- 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=de_DE.UTF-8, LC_CTYPE=de_DE.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#681567: [Pkg-opennebula-devel] Bug#681567: opennebula-common: fails to install, purge, and install again

2012-07-28 Thread gregor herrmann
On Sat, 28 Jul 2012 23:21:16 +0200, Damien Raude-Morvan wrote:

> >Since there's already a codepath to deal with an exisiting user, I
> >suggest to (re)create the directory there --> attached patch.
> >Any comments before I NMU?
> I haven't had time, yet, to work on opennebula package recently but
> your patch seems fine. Go fo NMU! I'll merge it back latter into git
> repository.

Thanks for your quick feedback!

Building and uploading shortly.


Cheers,
gregor
 
-- 
 .''`.  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: Cássia Eller: Por Enquanto


signature.asc
Description: Digital signature


Bug#679735: developers-reference: typo: Freenodes -> Freenode

2012-07-28 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Control: tags -1 pending

Le 01/07/2012 04:44, Jakub Wilk a écrit :

> $ zcat developers-reference.txt.gz | grep Freenode
> key in the Debian keyring. Please see Freenodes documentation for
> 
> It should be s/Freenodes/Freenode/.

Thanks Jakub, fixed in Subversion and trivially unfuzzied too.

Regards

David

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

iQIcBAEBCAAGBQJQFFMQAAoJELgqIXr9/gnyU24P/RY0h37acfuDh6GJRcpjzcch
Vgg+yse/5migGjgGb0U1FcP7MqdPIwItsuLwG3fgYvLjDy6HaAJ33K1RtjZj4X16
xCNjeGrLij0TI54OUTjj/of/uxOiMyX7/5G8Am+N9mf+vaPCNUtt6FTH1oqbH3p3
hvHG9NsdvhpmfVk8SDEFrNskofHufFXZ3GAPxnLDStCZ9I1vFDKSgrGgSi9c7IDD
Nkv4bgDBr25jmFw17GGRBYJtQ88wng/iurha+ynheMZnB2tQ1EAguRhJpmJyGYcY
fEbuZo9vy7P5al/XnxnInfntfO7F19reR86MX8utUab1A5gP06IoJ2Ud2pvvUj8O
xgtTguBRs3yutNbxPbzUG57VKbXDAcBoow0JNdYrBZ8wYiJKmsMgivkfV6pVTQGk
h9dyza9u9HE0zJ8tnZlTFqP4znlgtbWe1nZmsSQwzSBq97exgCCXK6oEizbsoTsZ
hvR2QXCqUmYgrcS+pxxIf1VEr/ZTZ7WjpGybm9vbGHo6jSnUNH3wDG2yy2LjpZ+2
GoDdA/jkUpcKbDlPyIL5VxAkmPBQyABHQTcbZfWCKn4BzZJgFsvNtRzsrH1cDJxA
6ss8Gdvbz+4yxxKdtMt+oLQk6qQ2J9JV1cyZHT4Ru96bHjXhdjdLkLTIrXKz5QS1
jKEv6GrCdzMRSANdSXZH
=xqvd
-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#679432: python-apt: typos: the the -> the

2012-07-28 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Control: tag -1 pending

Le 28/06/2012 11:50, Jakub Wilk a écrit :

> Please see the attached patch.

Thanks, applied:

http://anonscm.debian.org/loggerhead/apt/python-apt/debian-sid/revision/632

Regards

David

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

iQIcBAEBCAAGBQJQFFcnAAoJELgqIXr9/gnytKsP/RgfIV3Q2ERmekEXtroTpm1N
Qx9u23v7Iijmmd2sdOETAq36YYr4lzDZ08Cn7UuZp5Mvws/vZLjkSrntgNx6aPTQ
IW/UQ3/Fj92Udo3YirF7F5BGmAETP5VVZHC0g9/eIVbbEvuZxSV7RdrjAtv+HQUT
wIPtOPTpqaRcWHflwchYMVy+oUWBZfi/+jELkvGl8OSI1HD8WmpeL/EJ9wfDyHSW
d/WuwY+dvQpDW19mNKDt/uGn/kib/tYykIGj1qiCeYd00f/s53SLWDPJdjEDbOT6
k6+G69DnSayGCBnKPG++WSu/Rwbden4ZKKgWCtZHjZ4O4qN6nZkZuJFLQAPOwbo2
ddD6ejPsMI4pOSs5iIyRfEsN5v4kPVI2ThbQvuPfFHjOXcMIvz0vEXt6G/dG5nIV
kLkevxnOIdvN9mgRBT8O//GsiNNbK+oMj3DmQikFQ9/gxtmh8OseseHWV4c6NbFK
L/42HDLS6mmlgXkx5iCLcQCbeEXP56mMcGjsAM72vc/CZ0db/n3x6a+Cki+xp55h
Lne+obDPe6Z6ZZPyLj7/uSR0P6aiamTpa7Q18AVk2+XtI70Vsoj61IBf8upkcoYd
lg05coXBCYOxYv32gjaruJ2Luf1qiyox6rCxmyYFTzOKtINS5GuLC8JieBu/qkmX
qMtvHYOVFr6IsV9lMXCw
=VNfM
-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#683104: [INTL:pl] Updated Polish translations

2012-07-28 Thread Michał Kułach

Many thanks, and sorry for those problems, but it was a quite large update.

Dnia 28-07-2012 o 23:08:51 Guillem Jover  napisał:

The following string seems to have not been translated, could you send
the translation?

 * "bad binary-only value: %s"


"nieprawidłowa wartość tylko binarna: %s"

Thanks,
--
Michał Kułach


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



Bug#681567: [Pkg-opennebula-devel] Bug#681567: opennebula-common: fails to install, purge, and install again

2012-07-28 Thread Damien Raude-Morvan

Hi gregor,

Le 28/07/2012 18:23, gregor herrmann a écrit :

Control: tag 681567 + patch

On Sat, 14 Jul 2012 12:42:03 +0200, Andreas Beckmann wrote:


during a test with piuparts I noticed your package failed to install,
remove+purge, and install again.



This is often a problem with the home directory of a system user:
the user is not deleted during purge (which is fine), but the home
directory is removed. Since the user already exists on the next
installation, adduser won't recreate the home.


That's exactly the case here: in postrm/purge the user account is not
deleted but just disabled; but the home directory is deleted. So at
the second install the directory is not created.

Since there's already a codepath to deal with an exisiting user, I
suggest to (re)create the directory there --> attached patch.

Any comments before I NMU?


I haven't had time, yet, to work on opennebula package recently but your 
patch seems fine. Go fo NMU! I'll merge it back latter into git repository.


Cheers,
--
Damien


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



Bug#683117: lxc-create -t debian creates unusable setup

2012-07-28 Thread Sebastian Schmidt
Package: lxc
Version: 0.8.0~rc1-8
Severity: important
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

when creating an lxc container with the debian template the setup
generated is not working:

# lxc-create -n foo -t debian
[Hitting Return several times]
# lxc-start -n foo
Mount failed for selinuxfs on /selinux:  Operation not permitted
INIT: version 2.88 booting
[...]
Starting OpenBSD Secure Shell server: sshdCould not load host key:
/etc/ssh/ssh_host_rsa_key
Could not load host key: /etc/ssh/ssh_host_dsa_key
.

In another console:
# lxc-console -n foo

Type  to exit the console,  to enter Ctrl+a
itself

And nothing happens because getty can't acquire any tty (because none is
there):
# ls -l /var/lib/lxc/foo/rootfs/dev/tty*
crw-rw-rw- 1 root root 5, 0 Jul 28 15:40 /var/lib/lxc/foo/rootfs/dev/tty
#

Running lxc-start with -l DEBUG -o /dev/stderr reveals:
lxc-start 1343507262.616 INFO lxc_conf - console has been setup
lxc-start 1343507262.616 WARN lxc_conf - failed to mount 
'/dev/pts/3'->'/usr/lib/i386-linux-gnu/lxc/dev/tty1'
lxc-start 1343507262.616 WARN lxc_conf - failed to mount 
'/dev/pts/10'->'/usr/lib/i386-linux-gnu/lxc/dev/tty2
lxc-start 1343507262.616 WARN lxc_conf - failed to mount 
'/dev/pts/12'->'/usr/lib/i386-linux-gnu/lxc/dev/tty3
lxc-start 1343507262.616 WARN lxc_conf - failed to mount 
'/dev/pts/13'->'/usr/lib/i386-linux-gnu/lxc/dev/tty4
lxc-start 1343507262.616 WARN lxc_conf - failed to mount 
'/dev/pts/14'->'/usr/lib/i386-linux-gnu/lxc/dev/tty5
lxc-start 1343507262.616 WARN lxc_conf - failed to mount 
'/dev/pts/15'->'/usr/lib/i386-linux-gnu/lxc/dev/tty6
lxc-start 1343507262.616 INFO lxc_conf - 6 tty(s) has been setup

mount failes because of ENOENT. There are three possible solutions I can
think of:

a) In setup_tty() in the else branch call creat() like it is done in
   the 'if (ttydir)' branch.
b) touch or mknod $rootfs/dev/tty[1-6] in the template
c) Set lxc.devttydir in the config.

a) seems the most elegant solution to me although it requires patching
upstream code. Maybe this can be forwarded to upstream anyway. c) should
be the least invasive one.

I have attached a patch for a) and one for c).

TIA, HTH, HAND,
 Sebastian

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

iD8DBQFQFFFevBVic1oTsEgRAi8RAJ4gOcup1cSC7hvNaF4q/yLRLgpypQCfSZ8O
iE/Xky4curDRQVqsMuvHxZk=
=k5mp
-END PGP SIGNATURE-
diff -Nru lxc-0.8.0~rc1/debian/patches/13-lxc-create-tty-mountpoint.patch lxc-0.8.0~rc1.ttycreat/debian/patches/13-lxc-create-tty-mountpoint.patch
--- lxc-0.8.0~rc1/debian/patches/13-lxc-create-tty-mountpoint.patch	1970-01-01 01:00:00.0 +0100
+++ lxc-0.8.0~rc1.ttycreat/debian/patches/13-lxc-create-tty-mountpoint.patch	2012-07-28 22:45:15.248840054 +0200
@@ -0,0 +1,17 @@
+Author: Sebastian Schmidt 
+Description: create mountpoint for tty bind mounts
+
+--- lxc-0.8.0~rc1.orig/src/lxc/conf.c
 lxc-0.8.0~rc1/src/lxc/conf.c
+@@ -563,6 +563,11 @@ static int setup_tty(const struct lxc_ro
+ return -1;
+ 			}
+ 		} else {
++			ret = creat(path, 0660);
++			if (ret==-1 && errno != EEXIST) {
++SYSERROR("error creating %s\n", path);
++return -1;
++			}
+ 			if (mount(pty_info->name, path, "none", MS_BIND, 0)) {
+ WARN("failed to mount '%s'->'%s'",
+ 		pty_info->name, path);
diff -Nru lxc-0.8.0~rc1/debian/patches/series lxc-0.8.0~rc1.ttycreat/debian/patches/series
--- lxc-0.8.0~rc1/debian/patches/series	2012-06-29 23:14:41.0 +0200
+++ lxc-0.8.0~rc1.ttycreat/debian/patches/series	2012-07-28 22:45:15.248840054 +0200
@@ -10,3 +10,4 @@
 10-lxc-clone-trap-name.patch
 11-lxc-console-escape.patch
 12-lxc-create-rootfs.patch
+13-lxc-create-tty-mountpoint.patch
diff -Nru lxc-0.8.0~rc1/debian/local/lxc-debconf lxc-0.8.0~rc1.devttypath/debian/local/lxc-debconf
--- lxc-0.8.0~rc1/debian/local/lxc-debconf	2012-06-30 14:06:33.0 +0200
+++ lxc-0.8.0~rc1.devttypath/debian/local/lxc-debconf	2012-07-28 22:52:04.858871194 +0200
@@ -576,6 +576,7 @@
 cat >> "${_PATH}/config" << EOF
 #lxc.console= /var/log/lxc/${_NAME}.console
 lxc.tty = 6
+lxc.devttydir   = lxc
 lxc.pts = 1024
 
 ## Capabilities


Bug#682921: [Pkg-samba-maint] Bug#682921: samba: slow samba performance (both network and disk)

2012-07-28 Thread Christian PERRIER
tags 682921 wontfix
severity 682921 normal
thanks


Quoting Florin Iucha (flo...@iucha.net):

> Other than the test, the boxes are completely idle.
> 
> The only changes to the [global] section in smb.conf are:
> 
>socket options = TCP_NODELAY SO_RCVBUF=131072 SO_SNDBUF=131072
>min receivefile size = 16384


You really should forget about these parameters. I know you can ind
some references here or there about "socket options"but the Samba Team
themselves discourages using them.

Apart from that, I think that such performance issues should really be
discussed with upstream, and probably not as a bug report. There are
way too many parameters that can be involved that there is zero chance
that one of the maintainers of samba in Debian really can help you.



signature.asc
Description: Digital signature


Bug#682818: Fwd: Bug#682818: gscan2pdf: Presets aren't working

2012-07-28 Thread Jeffrey Ratcliffe
tags 682818 patch
severity 682818 serious
thanks

Oh. That's a nasty one, too.

Please try this.


0001-Fix-applying-default-settings-to-widgets-in-scanimag.patch
Description: Binary data


Bug#683104: [INTL:pl] Updated Polish translations

2012-07-28 Thread Guillem Jover
Hi!

On Sat, 2012-07-28 at 21:53:49 +0200, Michał Kułach wrote:
> Package: dpkg
> Severity: wishlist
> Tags: l10n patch

> Please apply an attached patch, which updates Polish translations for
> scripts/, man/ and dselect/.

Thanks! I've queued it locally with some minor changes on top:

 * Removed spaces between dpkg-architecture options and arguments.
 * Merged the last option description line fo dpkg-gensymbols -c into
   the previous one.
 * Split the 'This is free software; ...' translation so that it fits
   into standard 80 character terminal lines.

The following string seems to have not been translated, could you send
the translation?

 * "bad binary-only value: %s"

thanks,
guillem


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



Bug#682808: pu: package spip/2.1.1-3squeeze4

2012-07-28 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Le 28/07/2012 15:40, Adam D. Barratt a écrit :
> Control: tags 682808 + squeeze confirmed
> 
> On Wed, 2012-07-25 at 16:16 -0400, David Prévot wrote:
>> The spip package currently in stable is vulnerable to some security
>> issues (#677290, #672961, #680118), the last one being pretty nasty…
[…]

> Please s/-security// and drop the NMU comment.
[…]
> The alignment of the Closes: item here looks slightly odd, imho (as do
> the others).

Changelog fixed according to your feedback, thanks.

> Please go ahead; thanks.

Uploaded.

Regards

David


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

iQIcBAEBCAAGBQJQFFFfAAoJELgqIXr9/gny+MgQAIhFrw6ry5xsfnBHch24sr+d
5NpL49y3JAFiIgstU58PR6XU26XwByVRxKcBCQz79OwN63TKN5VDXNCf320T38mM
f7zybN2X8Nj1KMSjBfY7Id39QsIYqRElJo3xbOafqQmIzVEBQ/dodvIPawWgkDJy
rgXZzhPts9ogdhWSEkRiCoN4tjOaZN1i/mC2RAOGpr0ngnRJ+AOYcMFWd0tMCp/P
aTkF9nrgM/dzLK28mUCW1DrfPqq9Dl8KNdeC9+GvYutw+dsNxnon8ZDFcg/tA4E5
/vM36PBjnL1jt8MAu4acD5WajsoMgCzTm4nMu0IhKRBKH4x24fdVGB8yOvUhuHrB
nS/sgTw8hDvTbmFxLdsjU8RhgCexnTUD94y7J4msLPyxD9EhsQK5gSA4yMaZrO71
4CLe53HkZMgfBMfM3GB0KCiS3uRa+Iyjzxh2h95uZl6xUSSRIvM7ll6BnyMIuAqO
RCGxmqFRGu0Ff5F/bDqbEqs+wwPGt0ieKWN8ZG6Gttmm8HzLg3bVP71f2dd3Z7mP
gjSRyF3YcNdULwp42QTLJFvK6/rK3fOpqESj8e2AQVAUNM6O/HOB67Pvs/FwNjSh
faPi5EiuomK651vYImgpWN36sSL5qwrQw4cAQ2wO/Up1l/BQbl+KJT0NJyr1bpXF
S7BhaAj/LUPc0AOW0ovO
=bKMF
-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#683028: unblock: libsbsms/2.0.1-1

2012-07-28 Thread Benjamin Drung
Am Samstag, den 28.07.2012, 14:59 +0100 schrieb Adam D. Barratt:
> On Sat, 2012-07-28 at 00:39 +0200, Benjamin Drung wrote:
> > Please unblock package libsbsms
> > 
> > The new upstream release 2.0.1 contains just one bug fix (found by the
> > Audacity developers). This bug fix touches src/buffer.cpp and
> > src/buffer.h [1]. All other changes are just visual clutter and have
> > no effect on the package.
> 
> What happened to test/*?  The entire tree seems to have vanished.

Yes. It's not shipped in the source any more, but we didn't use the
tests.

-- 
Benjamin Drung
Debian & Ubuntu Developer


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


Bug#683115: O: subcommander -- Graphical client for Subversion

2012-07-28 Thread Robert Luberda
Package: wnpp
Severity: normal

I intend to orphan the subcommander package, as I no longer use it.

The package description is:
 Graphical client for Subversion
 Subcommander is a graphical client for Subversion which supports most
 Subversion features. Its tight integration of repository browser and
 working copy status allows one to switch quickly between these views.
 Subcommander also contains submerge, a visual diff and merge tool for
 text files.
 This package contains the subcommander and submerge applications.
 Homepage: http://subcommander.tigris.org/
 uitoolkit::qt, x11::application

I've already uploaded a version (2.0.0~b5p2-5) with maintainer set to Debian QA 
Group.


Regards,
robert


signature.asc
Description: Digital signature


Bug#683116: reportbug: Fails to include description in wnpp bugs

2012-07-28 Thread Robert Luberda
Package: reportbug
Version: 6.4
Severity: minor

Hi,

Reportbug fails to include full description for wnpp bugs, e.g.:

  Package: wnpp
  Severity: normal

  I intend to orphan the subcommander package.

  The package description is:
   uitoolkit::qt, x11::application

apt-cache switch some time ago from Description to  Description-??, and
I think this is the cause of the bug:
  [18]/tmp> apt-cache show subcommander | grep Description
  Description-en: Graphical client for Subversion
  Description-md5: 1b1931be84332c697ecb94b0d2ed2637
  Description-en: Graphical client for Subversion

Regards,
robert



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

Kernel: Linux 3.2.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/dash

Versions of packages reportbug depends on:
ii  apt   0.9.7.3
ii  python2.7.3-2
ii  python-reportbug  6.4

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  claws-mail   
ii  debconf-utils1.5.45
ii  debsums  2.0.52
ii  dlocate  1.02
pn  emacs22-bin-common | emacs23-bin-common  
ii  file 5.11-2
ii  gnupg1.4.12-4+b1
ii  pgpgpg [pgp] 0.13-9
ii  postfix [mail-transport-agent]   2.9.3-2+b1
ii  python-gtk2  2.24.0-3
pn  python-gtkspell  
ii  python-urwid 1.0.2-1
ii  python-vte   1:0.28.2-5
ii  xdg-utils1.1.0~rc1+git20111210-6

Versions of packages python-reportbug depends on:
ii  apt   0.9.7.3
ii  python2.7.3-2
ii  python-debian 0.1.21
ii  python-debianbts  1.11
ii  python-support1.0.15

python-reportbug suggests no packages.

-- Configuration Files:
/etc/reportbug.conf changed [not included]

-- no debconf information


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



Bug#683114: mirror submission for debian.insacom.cl

2012-07-28 Thread Sandro Rossi
Package: mirrors
Severity: wishlist

Submission-Type: new
Site: debian.insacom.cl
Type: leaf
Archive-architecture: amd64 i386 
Archive-ftp: /debian/
Archive-http: /debian/
IPv6: no
Archive-upstream: ftp.us.debian.org
Updates: twice
Maintainer: Sandro Rossi 
Country: CL Chile
Sponsor: Insacom http://insacom.cl
Comment: Bandwidth: 50 Mbps


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



Bug#460209: dig: broken on squeeze also, and +nocmd does not work either

2012-07-28 Thread Anonymous
Package: dnsutils
Version: 1:9.7.3.dfsg-1~squeeze5
Severity: normal
File: /usr/bin/dig

Still broken in squeeze:

  $ dig google.com MX +noall +answer +nocmd

  ; <<>> DiG 9.7.3 <<>> google.com MX +noall +answer +nocmd
  ;; global options: +cmd
  google.com. 600 IN  MX  10 aspmx.l.google.com.
  google.com. 600 IN  MX  20 alt1.aspmx.l.google.com.
  google.com. 600 IN  MX  30 alt2.aspmx.l.google.com.
  google.com. 600 IN  MX  40 alt3.aspmx.l.google.com.
  google.com. 600 IN  MX  50 alt4.aspmx.l.google.com.


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

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

Versions of packages dnsutils depends on:
ii  bind9-host [host 1:9.7.3.dfsg-1~squeeze5 Version of 'host' bundled with BIN
ii  host 1:9.7.3.dfsg-1~squeeze5 Transitional package
ii  libbind9-60  1:9.7.3.dfsg-1~squeeze5 BIND9 Shared Library used by BIND
ii  libc62.11.3-3Embedded GNU C Library: Shared lib
ii  libcap2  1:2.19-3support for getting/setting POSIX.
ii  libdns69 1:9.7.3.dfsg-1~squeeze5 DNS Shared Library used by BIND
ii  libgssapi-krb5-2 1.8.3+dfsg-4squeeze5MIT Kerberos runtime libraries - k
ii  libisc62 1:9.7.3.dfsg-1~squeeze5 ISC Shared Library used by BIND
ii  libisccfg62  1:9.7.3.dfsg-1~squeeze5 Config File Handling Library used 
ii  liblwres60   1:9.7.3.dfsg-1~squeeze5 Lightweight Resolver Library used 
ii  libssl0.9.8  0.9.8o-4squeeze13   SSL shared libraries
ii  libxml2  2.7.8.dfsg-2+squeeze4   GNOME XML library

dnsutils recommends no packages.

Versions of packages dnsutils suggests:
pn  rblcheck   (no description available)

-- 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#683113: unblock: insighttoolkit/3.20.1+git20120521-3

2012-07-28 Thread Mathieu Malaterre
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock


Please unblock package insighttoolkit.

Once again, please unblock insighttoolkit. This last upload fixes an issue with 
signalling NaN behavior on gcc 4.7 on i386 platform.
This allowed running successfully the test suite of the plastimatch package 
(and thus fixes symptoms of #645101).
For more details see #682805

Thanks

unblock insighttoolkit/3.20.1+git20120521-3

-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable'), (200, 'testing'), (100, 
'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.39-bpo.2-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (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#683112: munin: default apache.conf includes outdated references to mod_fastcgi

2012-07-28 Thread Helmut Grohne
Package: munin
Version: 2.0.2-1
Severity: normal

Debian attempts to ship a nice default configuration for apache which is
great. However these defaults target ancient apache versions and are no
longer useful. Instead they may mislead users who assume that things
would just work.

| # Enables fastcgi for munin-cgi-graph if present
| 
| 
| SetHandler fastcgi-script
| 
| 
| 
| 
| 
| SetHandler fastcgi-script
| 
| 

So who would assume that after aptitude install libapache2-mod-fcgid
things will not just work?

Thing is there is no mod_fastcgi in Debian (anymore), so these snippets
will never have any effect. Maybe s/fastcgi/fcgid/ to make them actually
useful?

Helmut


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



Bug#683111: linux-image-3.2.0-3-686-pae: kerneloops at genhd.c:1573 disk_clear_events+0xa7/0xd6()

2012-07-28 Thread ael
Package: src
Version: 3.2.21-3
Severity: normal

kerneloops with details included in the (automatic) logs below.

This looks as if it happened after hot plugging a usb stick. This same
usb drive is in regular use (hot plugging) and has not caused problems
before.

-

-- Package-specific info:
** Version:
Linux version 3.2.0-3-686-pae (Debian 3.2.21-3) 
(debian-ker...@lists.debian.org) (gcc version 4.6.3 (Debian 4.6.3-8) ) #1 SMP 
Thu Jun 28 08:56:46 UTC 2012

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.2.0-3-686-pae 
root=UUID=b0e0725b-0ebb-4a27-964d-75eb6e73e069 ro elevator=noop 
enable_mtrr_cleanup

** Tainted: W (512)
 * Taint on warning.

** Kernel log:
[5.102296] Registered led device: ath5k-phy0::rx
[5.102401] Registered led device: ath5k-phy0::tx
[5.102439] ath5k phy0: Atheros AR2425 chip found (MAC: 0xe2, PHY: 0x70)
[5.194918] i801_smbus :00:1f.3: PCI INT B -> GSI 17 (level, low) -> IRQ 
17
[5.225612] cfg80211: World regulatory domain updated:
[5.230158] cfg80211: (start_freq - end_freq @ bandwidth), 
(max_antenna_gain, max_eirp)
[5.234784] snd_hda_intel :00:1b.0: PCI INT A -> GSI 16 (level, low) -> 
IRQ 16
[5.234932] snd_hda_intel :00:1b.0: irq 45 for MSI/MSI-X
[5.234998] snd_hda_intel :00:1b.0: setting latency timer to 64
[5.240783] cfg80211: (2402000 KHz - 2472000 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[5.246249] atkbd serio0: Spurious NAK on isa0060/serio0. Some program might 
be trying access hardware directly.
[5.251748] cfg80211: (2457000 KHz - 2482000 KHz @ 2 KHz), (300 mBi, 
2000 mBm)
[5.257212] cfg80211: (2474000 KHz - 2494000 KHz @ 2 KHz), (300 mBi, 
2000 mBm)
[5.262559] cfg80211: (517 KHz - 525 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[5.267919] cfg80211: (5735000 KHz - 5835000 KHz @ 4 KHz), (300 mBi, 
2000 mBm)
[5.304918] input: HDA Digital PCBeep as 
/devices/pci:00/:00:1b.0/input/input8
[5.321331] input: HDA Intel Mic as 
/devices/pci:00/:00:1b.0/sound/card0/input9
[5.328278] input: HDA Intel Headphone as 
/devices/pci:00/:00:1b.0/sound/card0/input10
[5.444060] psmouse serio2: synaptics: Advanced gesture mode init failed.
[6.257307] input: PS/2 Synaptics TouchPad as 
/devices/platform/i8042/serio2/input/input11
[6.556673] EXT4-fs (sda1): re-mounted. Opts: (null)
[7.422742] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[7.496649] device-mapper: uevent: version 1.0.3
[7.500764] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: 
dm-de...@redhat.com
[7.760765] loop: module loaded
[9.637697] EXT4-fs (mmcblk0p1): mounted filesystem without journal. Opts: 
(null)
[   10.847127] RPC: Registered named UNIX socket transport module.
[   10.850790] RPC: Registered udp transport module.
[   10.854408] RPC: Registered tcp transport module.
[   10.858020] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   10.882933] FS-Cache: Loaded
[   10.917937] FS-Cache: Netfs 'nfs' registered for caching
[   10.937952] Installing knfsd (copyright (C) 1996 o...@monad.swb.de).
[   11.431238] fuse init (API version 7.17)
[   13.765447] input: ACPI Virtual Keyboard Device as 
/devices/virtual/input/input12
[   17.168772] microcode: CPU0 sig=0x106c2, pf=0x4, revision=0x208
[   17.183496] microcode: CPU1 sig=0x106c2, pf=0x4, revision=0x208
[   17.199047] microcode: Microcode Update Driver: v2.00 
, Peter Oruba
[   17.356010] microcode: CPU0 updated to revision 0x218, date = 2009-04-10
[   17.364848] microcode: CPU1 updated to revision 0x218, date = 2009-04-10
[   17.905074] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery 
directory
[   17.909371] NFSD: starting 90-second grace period
[   18.985582] r8169 :02:00.0: PME# enabled
[   19.496466] ata2.00: configured for UDMA/100
[   19.503404] ata2: EH complete
[   19.511257] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[   53.240305] r8169 :02:00.0: PME# disabled
[  108.628100] usb 1-2: new high-speed USB device number 3 using ehci_hcd
[  108.763693] usb 1-2: New USB device found, idVendor=090c, idProduct=1000
[  108.763714] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  108.763728] usb 1-2: Product: USB 2.0 Flash Drive
[  108.763738] usb 1-2: Manufacturer: Super Talent Flash
[  108.763749] usb 1-2: SerialNumber: 13005672
[  108.795534] usbcore: registered new interface driver uas
[  108.805971] Initializing USB Mass Storage driver...
[  108.806334] scsi2 : usb-storage 1-2:1.0
[  108.806641] usbcore: registered new interface driver usb-storage
[  108.806650] USB Mass Storage support registered.
[  109.805263] scsi 2:0:0:0: Direct-Access Flash/SM Super Talent 2.0 2040 
PQ: 0 ANSI: 0 CCS
[  109.814369] sd 2:0:0:0: [sdb] 1014784 512-byte logical blocks: (519 MB/495 
MiB)
[  109.815359] sd 2:0:0:0: [sdb] W

Bug#683030: unblock: vlc/2.0.3-1

2012-07-28 Thread Jonas Smedegaard
On 12-07-28 at 04:47pm, Adam D. Barratt wrote:
> - this change looks slightly odd:
> 
>   * Do not run doxygen if it is not installed.
> 
> doxygen is in B-D-Indep and only appears to be used when building the 
> arch:all -doc package.  On that basis, why would it not always be 
> installed when required?

I did not apply this change but recognize it from Emdebian sprint: 
Reason is, I believe, to ease bootstrapping new architectures by 
suppressing build of arch-all packages.


 - Jonas

-- 
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: Digital signature


Bug#683110: gphoto2: gphoto fails on USB 3.0 port

2012-07-28 Thread Gene Cash
Package: gphoto2
Version: 2.4.14-1
Severity: normal

Dear Maintainer,

I am running gphoto on my HP laptop with my Canon camera.

Running gphoto2 --get-all-files --filename "%:"
succeeds just fine, but the subsequent
gphoto2 --recurse --delete-all-files
fails with "An error occurred in the io-library ('Unspecified error'): No error 
description available"

It works fine on the USB 2.0 port.

When I plug the camera in the 3.0 port, I get the following messages in the 
kernel log:
Jul 28 15:42:10 laptop kernel: [   71.203480] usb 2-2: new high-speed USB 
device number 2 using xhci_hcd
Jul 28 15:42:10 laptop kernel: [   71.222197] xhci_hcd :05:00.0: WARN: 
short transfer on control ep
Jul 28 15:42:10 laptop kernel: [   71.222694] xhci_hcd :05:00.0: WARN: 
short transfer on control ep
Jul 28 15:42:10 laptop kernel: [   71.223179] xhci_hcd :05:00.0: WARN: 
short transfer on control ep
Jul 28 15:42:10 laptop kernel: [   71.223968] xhci_hcd :05:00.0: WARN: 
short transfer on control ep
Jul 28 15:42:10 laptop kernel: [   71.224100] usb 2-2: New USB device found, 
idVendor=04a9, idProduct=318d
Jul 28 15:42:10 laptop kernel: [   71.224105] usb 2-2: New USB device strings: 
Mfr=1, Product=2, SerialNumber=3
Jul 28 15:42:10 laptop kernel: [   71.224108] usb 2-2: Product: Canon Digital 
Camera
Jul 28 15:42:10 laptop kernel: [   71.224110] usb 2-2: Manufacturer: Canon Inc.
Jul 28 15:42:10 laptop kernel: [   71.224113] usb 2-2: SerialNumber: 
1EF8D70C03F5438E9ECF20AA171D4D6A
Jul 28 15:42:10 laptop kernel: [   71.224225] usb 2-2: ep 0x81 - rounding 
interval to 32768 microframes, ep desc says 0 microframes
Jul 28 15:42:10 laptop kernel: [   71.224228] usb 2-2: ep 0x2 - rounding 
interval to 32768 microframes, ep desc says 0 microframes
Jul 28 15:42:41 laptop kernel: [  102.805200] usb 2-2: USB disconnect, device 
number 2
Jul 28 15:44:56 laptop kernel: [  237.353538] usb 4-1.2: USB disconnect, device 
number 3
Jul 28 15:44:56 laptop acpid: input device has been disconnected, fd 9

I don't get the "short transfer" or "rounding interval" messages when I plug it 
into the 2.0 port.


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

Kernel: Linux 3.2.0-2-686-pae (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 gphoto2 depends on:
ii  libc6 2.13-33
ii  libcdk5   5.0.20060507-4
ii  libexif12 0.6.20-3
ii  libgphoto2-2  2.4.14-2
ii  libgphoto2-port0  2.4.14-2
ii  libncurses5   5.9-10
ii  libpopt0  1.16-7
ii  libreadline6  6.2-8

gphoto2 recommends no packages.

Versions of packages gphoto2 suggests:
pn  gthumb  
pn  gtkam   

-- 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#683108: ipython: python3 shebangs

2012-07-28 Thread Jakub Wilk

Package: ipython
Version: 0.13-1
Severity: serious

If you rebuild ipython in an up-to-date sid chroot, the following 
scripts end up with "#! /usr/bin/python3" shebangs:


/usr/bin/ipcluster
/usr/bin/ipcontroller
/usr/bin/ipengine
/usr/bin/iplogger
/usr/bin/ipython
/usr/bin/irunner
/usr/bin/pycolor

--
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#681969: unblock: xorg-server/2:1.12.3-1

2012-07-28 Thread Adam D. Barratt
On Wed, 2012-07-18 at 11:06 +0200, Julien Cristau wrote:

> Please unblock package xorg-server.  1.12.3 is a bugfix release made
> from upstream's stable branch.  The debdiff contains a lot of irrelevant
> changes to autotools/yacc/lex-generated files, which we delete and
> regenerate on build anyway, so you'll find something hopefully more
> usable below.

Unblocked, but it'll need a udeb ack before it'll migrate.

Regards,

Adam


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



Bug#683107: bpython: python3 shebang after rebuild

2012-07-28 Thread Jakub Wilk

Package: bpython
Version: 0.11-1
Severity: serious

If you rebuild bpython in an up-to-date sid chroot, /usr/bin/bpython 
ends up with "#! /usr/bin/python3" shebang.


--
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#683106: RFP: tegra-linux -- Driver package for the Nvidia Tegra GPU

2012-07-28 Thread Thomas Maass
Package: wnpp
Severity: wishlist

Package name: tegra-linux
Version : R15.1.0
Upstream Author : Nvidia Corporation
URL : http://www.nvidia.com/content/devzone/linux-for-tegra.html
License : Proprietary
Programming Lang: Binary
Description : Driver package for the Nvidia Tegra2+3 GPU
 Harmony and Ventana are for the Tegra2 platform. Cardhu is for Tegra3.
 The armhf driver of Ventana has to be used for Harmony, as there is
 no special armhf driver for Harmony.


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



Bug#681104: debian-faq: [INTL:ru] Russian debconf templates translation update

2012-07-28 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Control: tags -1 pending

Hi,

Le 10/07/2012 12:48, Yuri Kozlov a écrit :

> Russian debconf templates translation update is attached.

Thanks Yuri, I updated the DDP Subversion repository, but I
unfortunately can't send an updated version to the archive, since the
previous version is waiting on the BYHAND queue [0] for over four months.

0: http://ftp-master.debian.org/new.html

Dear ftp-masters, is there anything we can do to ease the processing of
this package? I'd be happy to send a more up-to-date version (including
translation improvements) instead of the one currently in the queue, how
could I proceed?

Regards

David

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

iQIcBAEBCAAGBQJQFD9eAAoJELgqIXr9/gny0GEP/jthVPNuvFTahU4WcHGhiYDQ
LfvsnhQDo5fgAZfuQ/Nch6WXX1jyPz+p7nWGKDyEEWbFUobeW7yXiEygj+W3gNjQ
P7LerPXfiQKzUdECtmdnpxW7fIUbV5SHcw5//nqemDBUy7crjIg8fzooCDo/dKYr
X3zwTKTPThX4NqjLwy+XGPyXMMNCVuagcEhyxoUd7Zdiy+a9wd0qC8W3lFGTDZUR
p70OPmTWGr/+KxIgms4ZweMZfEkDsGTym9lyvGcslZade+I+w+ovWfuGCwEIPlBO
4LjAYoOt7hYjeGrAee8mP0wzRxfcfqfYMbLEvMTC1dgqh4cw2cHvoeka7q5EP6yd
WpZW77fjgH+AJBJ53Hb6u6/Ef9Jedgr/Lu+WHXt7rILFYDMTOU5LFZk0IX/3K+hI
BkjT/AlP2h/up4ctgZOLc31V1vHdw9A+pQWegRMFjkFX3yznPhsCQ7ahhpWQPszF
Wr1m8pBOZz4LiydkOXec0tlgonIAhNiUhMJhhVyoQeT/p4QxF5yDP4gjalSeuFqs
QL6hzZm0b9Q4NUwqL2DQqsHNf3jcnW0oA7dTCm2U9QMzI90WZkLryn7aj38ejQIU
/CJPwvKnkwIW7rPXkfmmqIJ5MavNX+mVT6CTeY9SOkUIF1mjTVEH4Sf+V6+BIh9z
Arh64UnUlBK8VMtDgyv5
=vyfr
-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#683105: libavg: please consider supporting other architectures

2012-07-28 Thread Peter Green
package: libavg
version: 1.7.1-1
severity: important
tags: patch

Afaict prior to it's removal and reintroduction libavg was available on most 
architectures. The changelog entries gave no inidication of this support being 
dropped yet the package was marked as only being suitable for i386 and amd64. 
I've been running a derivative distribution and one of my users asked for this 
package so I took a look.

It seemed the only thing stopping it building on other architectures was a tiny 
peice of inline assembler that appeared to be designed to cause a break when 
running in a debugger. I added a fallback for this of deliberately segfaulting 
(which should cause a break in most debuggers).

debdiff is at http://plugwash.raspbian.org/libavg.debdiff


Bug#630893:

2012-07-28 Thread shawn

> + *  3. Neither the name of the University nor the names of its
contributors
> + * may be used to endorse or promote products derived from this
software
> + * without specific prior written permission.

Jeff is not a "University"
-- 
-Shawn Landden


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



Bug#612743: [PHP-DEV] Re: [php-maint] Bug#612743: php5: PHP is compiled with LFS support, but this can not be detected by extensions

2012-07-28 Thread Ferenc Kovacs
On Fri, Mar 18, 2011 at 5:08 PM, Derick Rethans wrote:

> On Fri, 18 Mar 2011, Ondřej Surý wrote:
>
> > On Thu, Feb 10, 2011 at 13:37, Ondřej Surý  wrote:
> >
> > > On Thu, Feb 10, 2011, Derick wrote:
> > >
> > >> I know it doesn't; I was asking for making it detectable. Perhaps
> > >> instead of LFS, you could use DEBIAN as "ZEND_BUILD_EXTRA"
> > >> instead then? Or perhaps include flags with that, that show all the
> > >> different Debian flags/options/or perhaps a debian specific version nr
> > >> as well; such as DEBIAN1, DEBIAN2 etc...
> > >
> > > Seems reasonable to me, but I am not sure if we don't break other
> > > stuff by introducing this. But right now it's a right time to do it,
> > > since the new development cycle has just started.
> >
> > I have tested your patch, but since this changes the ability to load
> > existing modules, there's a need to plan a transition and coordinate
> > it with the release team. It would probably also be good thing to
> > coordinate this either with other major distributions (so the LFS flag
> > is same everywhere) or move this logic directly to PHP upstream.
>
> Yes, that makes sense.
>
> > What do you (and other pkg-php maintainers) think? My guess would be
> > that best solution would be to move this to upstream, so it's
> > consistent even for local custom builds with _FILE_OFFSET_BITS == 64.
>
> I think this makes sense to me. Adding LFS to out ZEND_BUILDIN_EXTRA
> stuff alongside with the ZTS and DEBUG flags makes a lot of sense.
> I am cc-ing php internals here. As a reference, this is the issue:
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612743
>
> regards,
> Derick
>
> --
> http://derickrethans.nl | http://xdebug.org
> Like Xdebug? Consider a donation: http://xdebug.org/donate.php
> twitter: @derickr and @xdebug
>
> --
> PHP Internals - PHP Runtime Development Mailing List
> To unsubscribe, visit: http://www.php.net/unsub.php
>

is this still something that we want to pursue?

-- 
Ferenc Kovács
@Tyr43l - http://tyrael.hu


Bug#634930: Dependencies [Was: gpa: GPA unusable due to "General Assuan error"]

2012-07-28 Thread Ian Zimmerman

One rather disconcerting thing about gpa is that it has both gnupg and
gnupg2 in its dependency graph.  I wonder if that might account for some
of the weird problems.

What is the purpose of having gnupg v1 around anyway?  Can the remaining
packages depending on it not be ported over?

-- 
Ian Zimmerman
gpg public key: 1024D/C6FF61AD
fingerprint: 66DC D68F 5C1B 4D71 2EE5  BD03 8A00 786C C6FF 61AD
http://www.gravatar.com/avatar/c66875cda51109f76c6312f4d4743d1e.png
Rule 420: All persons more than eight miles high to leave the court.


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



Bug#682808: pu: package spip/2.1.1-3squeeze4

2012-07-28 Thread Adam D. Barratt
Control: tags 682808 + squeeze confirmed

On Wed, 2012-07-25 at 16:16 -0400, David Prévot wrote:
> The spip package currently in stable is vulnerable to some security
> issues (#677290, #672961, #680118), the last one being pretty nasty…
> 
> Having no answer from the security team, I hereby propose this update
> via the upcoming point release. As in #680381, the attached debdiff is
> pretty thin: most of the changes, in the security screen file, are due
> to rewritten comments.

+spip (2.1.1-3squeeze4) stable-security; urgency=low
+
+  * Non-maintainer upload by the Security Team.

Please s/-security// and drop the NMU comment.

+  * Updated security screen to 1.1.3. Prevent cross site scripting on referer
+(addresses missing bits of [CVE-2012-2151]), cross site scripting and PHP
+injections in internal functions.
+  Closes: #680118

The alignment of the Closes: item here looks slightly odd, imho (as do
the others).

Please go ahead; thanks.

Regards,

Adam


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



Bug#683103: mkdir: cannot create directory `/run/shm': File exists

2012-07-28 Thread Cyril Brulebois
Package: initscripts
Version: 2.88dsf-13.1+squeeze1
Severity: serious
Justification: fails to upgrade

Hi,

during the sid chroot dist-upgrade on harris.debian.org, initscripts
failed to upgrade due to:
| Setting up initscripts (2.88dsf-29) ...
| mkdir: cannot create directory `/run/shm': File exists
| dpkg: error processing initscripts (--configure):
|  subprocess installed post-installation script returned error exit status 1
| Errors were encountered while processing:
|  initscripts
| E: Sub-process /usr/bin/dpkg returned an error code (1)

Not fun…

Mraw,
KiBi.


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



Bug#683102: installation-reports: installation-report Debian Wheezy 7/15/2012 xfce

2012-07-28 Thread Brandon Bigam
Package: installation-reports
Severity: wishlist

Dear Maintainer,

-- Package-specific info:

Boot method: CD
Image version: 
http://cdimage.debian.org/cdimage/weekly-builds/amd64/iso-cd/debian-testing-amd64-xfce+lxde-CD-1.iso
 7/12/2012
Date: 7/15/2012

Machine: MacBook Pro 8,1 late 2011
Partitions: 
Model: ATA TOSHIBA MK5065GS (scsi)
Disk /dev/sda: 500GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt

Number  Start   EndSizeFile system Name  Flags
 1  20.5kB  210MB  210MB   fat32   EFI System Partition  boot
 2  210MB   120GB  120GB   hfs+Customer
 3  120GB   121GB  650MB   hfs+Recovery HD
 4  121GB   247GB  126GB   ext4
 8  247GB   373GB  126GB   ext4
 5  394GB   394GB  1000kBbios_grub
 6  394GB   496GB  102GB   ext4
 7  496GB   500GB  4201MB  linux-swap(v1)


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [0 ]
Detect network card:[0 ]
Configure network:  [E ]
Detect CD:  [0 ]
Load installer modules: [0 ]
Clock/timezone setup:   [0 ]
User/password setup:[0 ]
Detect hard drives: [0 ]
Partition hard drives:  [0 ]
Install base system:[0 ]
Install tasks:  [0 ]
Install boot loader:[0 ]
Overall install:[0 ]

Comments/Problems:
I was installing from CD without a network connection, and it was tedious
having to allow the installer to try to connect to the network before 
being given the option to proceed without a network connection.  I was
then able to boot successfully and most things worked, but I was disappointed
that no GUI web browser was installed, nor any GUI package manager such as
Synaptic (I know that Synaptic has since been added to the Xfce desktop task).
My wireless card (BCM4331) did not have the needed firmware, but I expected
that since it is proprietary, and the installer did suggest it.
Also, my sources.list was not configured except to install from the CD.
Thank you for your hard work on Debian!
-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
DISTRIB_RELEASE="7.0 (wheezy) - installer build 20120712"
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux Bigam-MacBookPro-Debian 3.2.0-3-amd64 #1 SMP Thu Jun 28 
09:07:26 UTC 2012 x86_64 GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 2nd Generation Core 
Processor Family DRAM Controller [8086:0104] (rev 09)
lspci -knn: Subsystem: Apple Inc. Device [106b:00db]
lspci -knn: Kernel driver in use: agpgart-intel
lspci -knn: 00:01.0 PCI bridge [0604]: Intel Corporation Xeon E3-1200/2nd 
Generation Core Processor Family PCI Express Root Port [8086:0101] (rev 09)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:01.1 PCI bridge [0604]: Intel Corporation Xeon E3-1200/2nd 
Generation Core Processor Family PCI Express Root Port [8086:0105] (rev 09)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation 2nd 
Generation Core Processor Family Integrated Graphics Controller [8086:0126] 
(rev 09)
lspci -knn: Subsystem: Apple Inc. Device [106b:00db]
lspci -knn: 00:16.0 Communication controller [0780]: Intel Corporation 6 
Series/C200 Series Chipset Family MEI Controller #1 [8086:1c3a] (rev 04)
lspci -knn: Subsystem: Intel Corporation Device [8086:7270]
lspci -knn: 00:1a.0 USB controller [0c03]: Intel Corporation 6 Series/C200 
Series Chipset Family USB Universal Host Controller #5 [8086:1c2c] (rev 05)
lspci -knn: Subsystem: Intel Corporation Device [8086:7270]
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: 00:1a.7 USB controller [0c03]: Intel Corporation 6 Series/C200 
Series Chipset Family USB Enhanced Host Controller #2 [8086:1c2d] (rev 05)
lspci -knn: Subsystem: Intel Corporation Device [8086:7270]
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: 00:1b.0 Audio device [0403]: Intel Corporation 6 Series/C200 Series 
Chipset Family High Definition Audio Controller [8086:1c20] (rev 05)
lspci -knn: Subsystem: Intel Corporation Device [8086:7270]
lspci -knn: 00:1c.0 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series 
Chipset Family PCI Express Root Port 1 [8086:1c10] (rev b5)
lspci -knn: Kernel driver in use: pcieport
lspci -knn: 00:1c.1 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series 
Chipset Family PCI Express Root Por

Bug#683101: unblock: pyspf/2.0.7-3

2012-07-28 Thread Scott Kitterman
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pyspf

Fixes RC bug 683098.

unblock pyspf/2.0.7-3
diff -u pyspf-2.0.7/debian/changelog pyspf-2.0.7/debian/changelog
--- pyspf-2.0.7/debian/changelog
+++ pyspf-2.0.7/debian/changelog
@@ -1,3 +1,10 @@
+pyspf (2.0.7-3) unstable; urgency=low
+
+  * override dh_python3 to not act on spf-tools-python so that its shebangs
+don't get rewritten to /usr/bin/python3 (Closes: #683098)
+
+ -- Scott Kitterman   Sat, 28 Jul 2012 14:53:59 -0400
+
 pyspf (2.0.7-2) unstable; urgency=low
 
   * Add debian/patches/catch_unicode_spf to correctly raise errors when SPF
diff -u pyspf-2.0.7/debian/rules pyspf-2.0.7/debian/rules
--- pyspf-2.0.7/debian/rules
+++ pyspf-2.0.7/debian/rules
@@ -49,0 +50,3 @@
+
+override_dh_python3:
+	dh_python3 -N spf-tools-python


Bug#683097: bug already reported

2012-07-28 Thread Mauro Di Domenico
Hi,
I am experiencing the same problem, but the installer hangs even without
searching for security updates.
However, this bug was already reported: Bug#682952

Bye,
Mauro Di Domenico.


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



Bug#683084: Make invoke-rc.d/update-rc.d systemd-aware

2012-07-28 Thread Roger Leigh
tags 683084 + pending
thanks

On Sat, Jul 28, 2012 at 04:13:57PM +0200, Michael Stapelberg wrote:
> Just like invoke-rc.d and update-rc.d can properly deal with a system
> using upstart, it should support systemd as well.
> 
> The attached patches make invoke-rc.d and update-rc.d systemd aware.

Thanks for that.

These have been committed to the "jessie-pending" branch in the
git repository.  Note that it's in collab-maint, so you will have
commit access should you wish to make any additional changes,
though since we're frozen, I would appreciate it if they were
done on the jessie-pending branch until we're ready to merge it
back into master.


Thanks,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


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



Bug#681656: Bug 681656

2012-07-28 Thread dmitry Gmax
Hello,

Same problem.
Wheezy installer stops at Detecting Network Hardware.
Installer doesn't try to detect any network hardware.
No progress bar.

I have an Intel 82562ET/EZ/GT/GZ network
card.

The installer I used: debian-testing-i386-netinst.iso  28-Jul-2012 17:27

Dmitry


Bug#683098: spf-tools-python: python3 shebangs (after rebuild)

2012-07-28 Thread Scott Kitterman
On Saturday, July 28, 2012 02:45:36 PM I wrote:

> Since that's linked to a file that will only run in python (it would import
> the wrong modules to run in python3), ...

Actually that's not right.  It also needs python3 to be installed, so i's 
slightly worse  If python3 and the python3 equivalent depends were installed 
it would run, but leaving a package so that if it's rebuilt it requires 
packages is doesn't depend on to work is definitely too much of a time bomb.

Scott K


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



Bug#681737: Bug#682960: unblock (pre-approval): gnome-shell/3.4.2-1

2012-07-28 Thread Michael Biebl
Am 28.07.2012 15:23, schrieb Mike Miller:
> On Sat, Jul 28, 2012 at 11:51:06AM +0200, Laurent Bigonville wrote:
>> Le Fri, 27 Jul 2012 19:47:41 -0400,

>> I think both should be done as some VPN modules (like nm-strongswan)
>> are already using a full path.

Yep, I think doing both is sensible and for jessie we will certainly
update affected packages to use absolute paths.

As for wheezy using /usr/lib/NetworkManager is the easiest way to
address this issue with the least amount of churn.

>> +path = 
>> GLib.build_filenamev(['/usr/lib/NetworkManager/VPN', path]);
> 
> Except the Debian path is /usr/lib/NetworkManager without the VPN part.
> 
> Fix that, and this looks good to me. Thanks!

Yeah, please fix that to use /usr/lib/NetworkManager

Cheers,
Michael


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



signature.asc
Description: OpenPGP digital signature


Bug#683100: pnp4nagios-web: libjs-jquery-ui (>= 1.8.14) may be not enough

2012-07-28 Thread Christoph Anton Mitterer
Package: pnp4nagios-web
Version: 0.6.16-1
Severity: grave
Justification: renders package unusable


Hi.

Marking this grave, because it may be required for wheezy.

In pnp4nagios-web, you made a dependency:
libjs-jquery-ui (>= 1.8.14)
so I guess, versions below really don't work.

Now libjs-jquery-ui has some strange versioning:
stable: 1.8.dfsg-3
testing: 1.8.ooops.21+dfsg-2

So I guess, the stable version is too old (i.e. 1.8.0) and the testing
version should be 1.8.21 (recent enough).

But "1.8.dfsg-3" seems to fulful >= 1.8.14 already.


If I'm wrong, just close the bug :)


Cheers,
Chris.


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



Bug#664767: Brcmsmac driver woes, possible regression?

2012-07-28 Thread Jonathan Nieder
Camaleón wrote:
> 2012/7/25 Jonathan Nieder :

>> Hmm.  What happens if you try all 23 together again?
>
> Compiled today with all the patches and it happens that I get the
> usual reconnects... I'm completely baffled.

Thanks for the quick feedback.  If you don't authenticate with
network-manager quickly enough, does gnome-shell still crash?

Curious,
Jonathan


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



Bug#683099: gnome-packagekit: updates packages although they were put on hold by aptitude

2012-07-28 Thread Markus Koschany
Package: gnome-packagekit
Version: 3.4.2-1
Severity: normal

Dear Maintainer,

gnome-packagekit ignores my aptitude settings and updates packages
which i have put on hold.

I would have expected that either the package in question, libcairo2,
is grayed out, not available for an upgrade or perhaps that
gnome-packagekit presents some alternative ways to unhold/hold the
package or to inform the user about possible consequences.

---How you can reproduce the bug---

1. Downgrade libcairo2 1.12 to version 1.10 in squeeze-backports.
2. aptitude hold libcairo2
3. Open gnome-packagekit.
4. If you perform an upgrade even packages on hold will be upgraded.

The interesting part is gnome-packagekit installs a newer version of
libcairo2 but still puts the package on hold. Depending on how
important the package in question is this could lead to surprising
effects.

I have found a three year old upstream bug report which describes the
same issue. [1] Perhaps you should consider to reopen it.

Kind regards
Markus Koschany

[1] https://bugs.freedesktop.org/show_bug.cgi?id=24795


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

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 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-packagekit depends on:
ii  dconf-gsettings-backend [gsettings-backend]  0.12.1-2
ii  gnome-packagekit-data3.4.2-1
ii  gnome-settings-daemon3.4.2-3
ii  libatk1.0-0  2.4.0-2
ii  libc62.13-33
ii  libcairo-gobject21.12.2-2
ii  libcairo21.10.2-7~bpo60+1
ii  libcanberra-gtk3-0   0.28-4
ii  libcanberra0 0.28-4
ii  libdbus-1-3  1.6.0-1
ii  libdbus-glib-1-2 0.100-1
ii  libfontconfig1   2.9.0-6
ii  libgdk-pixbuf2.0-0   2.26.1-1
ii  libglib2.0-0 2.32.3-1
ii  libgtk-3-0   3.4.2-2
ii  libnotify4   0.7.5-1
ii  libpackagekit-glib2-14   0.7.5-2
ii  libpango1.0-01.30.0-1
ii  libsqlite3-0 3.7.13-1
ii  libupower-glib1  0.9.17-1
ii  libx11-6 2:1.5.0-1
ii  packagekit   0.7.5-2

gnome-packagekit recommends no packages.

gnome-packagekit 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#683098: spf-tools-python: python3 shebangs (after rebuild)

2012-07-28 Thread Scott Kitterman
On Saturday, July 28, 2012 08:19:14 PM Jakub Wilk wrote:
> Package: spf-tools-python
> Version: 2.0.7-2
> Severity: important
> 
> If you rebuild pyspf in an up-to-date sid chroot, shebangs of
> /usr/bin/pyspf-type99 and /usr/bin/spfquery.pyspf become
> "#! /usr/bin/python3".

Since that's linked to a file that will only run in python (it would import the 
wrong modules to run in python3), such a rebuild would render the package non-
functional.  I think that's too much of a time bomb to release with.  Thanks 
for finding it.

Scott K


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



  1   2   3   >