Bug#596527: gnome: gnome-help problem!

2010-10-18 Thread Eliad Baqerzadegan
On 10/19/2010 10:13 AM, Josselin Mouette wrote:
> Le vendredi 15 octobre 2010 à 13:27 +0330, Eliad Baqerzadegan a écrit : 
>   
>> in lxde when pressing F1 in anjuta, for instance, you get this error:
>>
>> Unable to load page
>> The requested URI
>> "ghelp:///usr/share/gnome/help/anjuta-manual/C/anjuta-manual.xml" is invalid
>> 
> Is gvfs installed?
>
>   
yes

-- 
Eliad Baqerzadegan




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



Bug#600681: Houston... (Debian Abandonware browser Iceweasel 3.5.x actively blocked by major sites now)

2010-10-18 Thread Andreas Mohr
Package: iceweasel
Version: 3.5.13-1
Severity: important
Justification: major user-facing component of a system is unusably outdated 
(missing OFFICIAL support, of security updates etc.)

Keywords: Firefox Iceweasel 3.5 outdated unsupported deprecated


For about 3 weeks now already, bw-bank.de has been actively blocking
online banking access for Firefox versions <= 3.5.x.

The problem is that I'm online with a Debian system as updated as can be
(Debian stable base, security, even plus backports). The version that it offers 
is 3.5.12-2~bpo50+1 .
I know the history of why 3.5.x has been decided to remain in Debian (issues 
with updating of XUL dependencies, as explained in 
http://bugs.debian.org/591500 ).

Mozilla is said to have ceased support for 3.5.x in August 2010 already (see 
http://de.wikipedia.org/wiki/Mozilla_Firefox ).
(the IDIOTIC Mozilla source versioning development has been bitterly and 
thoroughly
complained about in an online article a couple months ago which I cannot locate
any more currently, which pinpointed EXACTLY the major issues that distro 
people would face once security update support was very prematurely closed 
down).
Probably the decision-making at that bank is a sort of reptile-minded "is it a 
vendor-supported version?".
This probably explains why even internet browser ZOMBIE IE6 is still supported
(Secunia statistics of IE8 vs. FF 3.5 vs. IE6 are eye-opening).

So, who is to take the blame?
I'd say it's Mozilla by far. And then we have a very much overly eager 
deprecation by the bank (blocked a mere month after official support ended, for 
a browser version which got introduced on June 30th 2009 only).
But a large share of the problem lies on Debian as well, since NOT EVEN UNSTABLE
has a less-than-historic Firefox version 
(http://packages.debian.org/search?keywords=iceweasel ). And even Backports 
doesn't help either (one needs to go to experimental to even get a glimpse of 
3.6.x!).
Note that an analysis of distrowatch.com package versions shows that usually 
the second-last release version of distros (MEPIS, MINT, openSUSE, Mandriva, 
Fedora) already progressed towards 3.6.x, EXCEPT for Debian. Even the rabidly 
conservative RHEL5.5 (which I have to work with most of the time) is now at 
Firefox 3.6.x (.8, IIRC).

Hence this IMHO critical bug report. We're talking of a major system component 
(some users are spending > 90% of their time with browser use) which is 
starting to be unusably outdated, and even the most conservative other distros 
have updated their packages. IMHO this should serve as a wakeup call.

Now, which direction to go to?
Probably Backports would be the best place to act on this.

Thanks,

Andreas Mohr



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



Bug#600623: unblock: jinja2/2.5.4-1

2010-10-18 Thread Piotr Ożarowski
retitle 600623 unblock: jinja2/2.5.5-1
thanks

[Mehdi Dogguy, 2010-10-19]
> On 10/18/2010 07:48 PM, Piotr Ożarowski wrote:
> > Package: release.debian.org Severity: normal User: 
> > release.debian@packages.debian.org Usertags: freeze-exception
> > 
> > Please unblock package jinja2
> > 
> 
> There is a "_build" directory in the tarball. I assume that its content
> is completely generated (please correct me if I'm wrong). What's the
> reason of having it in the source package? (except making the diff much
> bigger).

ok, I uploaded 2.5.5 (the one without html files in upstream tarball),
yes - I regenerate them at build time


signature.asc
Description: Digital signature


Bug#575917: git-core: --work-tree behaves strangely when called under .git

2010-10-18 Thread Jonathan Nieder
Hi Duy and Clemens,

I keep forgetting the semantics of the setup vars.  Do you remember?
The result can go in Documentation/technical/api-setup.txt.

Frédéric Brière wrote:

>   $ pwd
>   /tmp/git
> 
>   $ git init
>   Initialized empty Git repository in /tmp/git/.git/
>   
>   $ git --work-tree /tmp/git symbolic-ref HEAD
>   refs/heads/master
> 
>   $ cd .git
>   $ git --work-tree /tmp/git symbolic-ref HEAD
>   fatal: ref HEAD is not a symbolic ref
> 
>   $ cp HEAD ..
>   $ git --work-tree /tmp/git symbolic-ref HEAD
>   refs/heads/master

Yagh.  Given: cwd is .git dir, GIT_DIR unset, GIT_WORK_TREE=/tmp/git

run_builtin() runs the repository setup:

 setup_git_directory() ->
  setup_git_directory_gently(NULL) ->
   setup_git_directory_gently_1(NULL) ->
setup_bare_git_dir($GIT_WORK_TREE, strlen(cwd), strlen(cwd), cwd, NULL) ->
 set_git_dir(".")

Result:

 GIT_DIR=.
 GIT_WORK_TREE=/tmp/git
 inside_work_tree = -1
 prefix = NULL
 cwd = /tmp/git

Should the result be rather

 GIT_DIR=/tmp/git/.git
 prefix=.git
 inside_work_tree = 1

?  [The following patch is probably broken.  It's more of a "this is
the code path I am talking about" kind of thing than an actual fix.]

Signed-off-by: Jonathan Nieder 
---
Following up on [1].  Sorry to leave it hanging for so long.
[1] http://thread.gmane.org/gmane.comp.version-control.git/147552/focus=147559

diff --git a/setup.c b/setup.c
index a3b76de..c073e0a 100644
--- a/setup.c
+++ b/setup.c
@@ -313,12 +313,30 @@ const char *read_gitfile_gently(const char *path)
return path;
 }
 
-static const char *setup_explicit_git_dir(const char *gitdirenv,
+static const char *setup_git_dir_with_work_tree(const char *gitdirenv,
const char *work_tree_env, int *nongit_ok)
 {
static char buffer[1024 + 1];
const char *retval;
 
+   if (check_repository_format_gently(nongit_ok))
+   return NULL;
+   retval = get_relative_cwd(buffer, sizeof(buffer) - 1,
+   get_git_work_tree());
+   if (!retval || !*retval)
+   return NULL;
+   set_git_dir(make_absolute_path(gitdirenv));
+   if (chdir(work_tree_env) < 0)
+   die_errno ("Could not chdir to '%s'", work_tree_env);
+   strcat(buffer, "/");
+   return retval;
+}
+
+static const char *setup_explicit_git_dir(const char *gitdirenv,
+   const char *work_tree_env, int *nongit_ok)
+{
+   const char *retval;
+
if (PATH_MAX - 40 < strlen(gitdirenv))
die("'$%s' too big", GIT_DIR_ENVIRONMENT);
if (!is_git_directory(gitdirenv)) {
@@ -328,23 +346,13 @@ static const char *setup_explicit_git_dir(const char 
*gitdirenv,
}
die("Not a git repository: '%s'", gitdirenv);
}
-   if (!work_tree_env) {
-   retval = set_work_tree(gitdirenv);
-   /* config may override worktree */
-   if (check_repository_format_gently(nongit_ok))
-   return NULL;
-   return retval;
-   }
+   if (work_tree_env)
+   return setup_git_dir_with_work_tree(gitdirenv,
+   work_tree_env, nongit_ok);
+   retval = set_work_tree(gitdirenv);
+   /* config may override worktree */
if (check_repository_format_gently(nongit_ok))
return NULL;
-   retval = get_relative_cwd(buffer, sizeof(buffer) - 1,
-   get_git_work_tree());
-   if (!retval || !*retval)
-   return NULL;
-   set_git_dir(make_absolute_path(gitdirenv));
-   if (chdir(work_tree_env) < 0)
-   die_errno ("Could not chdir to '%s'", work_tree_env);
-   strcat(buffer, "/");
return retval;
 }
 
@@ -388,16 +396,19 @@ static const char *setup_bare_git_dir(const char 
*work_tree_env,
int root_len;
 
inside_git_dir = 1;
-   if (!work_tree_env)
-   inside_work_tree = 0;
+   inside_work_tree = work_tree_env ? 1 : 0;
if (offset != len) {
if (chdir(cwd))
die_errno("Cannot come back to cwd");
root_len = offset_1st_component(cwd);
cwd[offset > root_len ? offset : root_len] = '\0';
set_git_dir(cwd);
-   } else
+   } else {
+   if (work_tree_env)
+   return setup_git_dir_with_work_tree(".",
+   work_tree_env, nongit_ok);
set_git_dir(".");
+   }
check_repository_format_gently(nongit_ok);
return NULL;
 }



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



Bug#596527: gnome: gnome-help problem!

2010-10-18 Thread Josselin Mouette
Le vendredi 15 octobre 2010 à 13:27 +0330, Eliad Baqerzadegan a écrit : 
> in lxde when pressing F1 in anjuta, for instance, you get this error:
> 
> Unable to load page
> The requested URI
> "ghelp:///usr/share/gnome/help/anjuta-manual/C/anjuta-manual.xml" is invalid

Is gvfs installed?

-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling


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


Bug#600571: Follow-Up, Sorry for the noise

2010-10-18 Thread Niko Tyni
On Mon, Oct 18, 2010 at 05:11:16PM -0400, James P. Wallen wrote:
> Once I got some time to deal with this I proceeded with the upgrade
> to perl (et al). I tried first on the initial system with no error,
> and then on 18 other systems -- again with no error.

> I'm sorry for the noise. I thought I was going to run into problems
> when I proceeded with the upgrade. (Don't know why -- probably lack
> of coffee or brains or both.)

No problem, thanks for the followup.
-- 
Niko Tyni   nt...@debian.org



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



Bug#599307: unblock: jblas/1.1.1-1

2010-10-18 Thread Julien Cristau
On Mon, Oct 18, 2010 at 22:39:29 +0200, Soeren Sonnenburg wrote:

> I finally got an answer and small patch (attached) from upstream Re this
> issue. Shall I prepare jblas 1.1.1-2 that includes this patch?
> 
Yes.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#600571: perl: Fails to complete unpack during installation

2010-10-18 Thread Niko Tyni
tag 600571 unreproducible
thanks

On Mon, Oct 18, 2010 at 10:33:57AM +0100, Roger Leigh wrote:
> Package: perl
> Version: 5.10.1-15
> Severity: serious
> Justification: Breaks installation
> 
> While dist-upgrading my system today, the perl package failed to 
> unpack/configure 
> (transcript below) and hung for over an hour until I killed the dpkg process. 
>  After 
> running "dpkg --configure -a" and "apt-get -f install" the package then 
> continued to 
> configure correctly.  It looks like it was somehow stuck between unpacking 
> and 
> configuring.  There was no response in the terminal to any keys (I tried 
> hitting enter, 
> but there was no response to the input, so maybe apt-get was doing something 
> odd with 
> termios if this wasn't a deliberate action by the perl maintainer scripts).
> 
> Looking as the ps listing (below), it looks like dpkg was being run on pts/2 
> which 
> wasn't an open pty in any virtual terminal while apt-get was run on pts/1.  
> That's not 
> typical, and may be the cause of the problem if perl was waiting on input due 
> to a 
> conffile change or debconf interaction.  The ps listing doesn't indicate any 
> debconf 
> usage though.
> 
> I'm afraid I can't give much more detail about the issue.  This may well not 
> be a 
> perl-specific bug if perl's pre/postinst isn't doing any messing with ptys.  
> In this 
> case, it may be a bug in apt-get and/or dpkg.

This is very weird. No, the maintainer scripts of the perl package
certainly don't mess with ptys in any way and actually do nothing at
the unpack stage of an upgrade. There are no conffiles and no debconf
usage either.

It looks like the different ptys for dpkg and apt-get are normal behaviour
for apt-get.

I take it /var/log/apt/term.log and /var/log/dpkg.log don't give any clues?

How did you obtain the process listing? Is it possible that it's missing
some maintainer script processes forked by dpkg?

The package seems to work for other people (10 days in unstable without
other reports) and the changes in 5.10.1-15 seem unlikely to cause
something like this.

My best guess is that this is either a problem with your system or some
corner case in apt-get / dpkg interaction but this is all just handwaving.

Tagging as unreproducible, let's wait a while for any other reports. The
package just migrated to squeeze so there should be plenty of people
upgrading in the next few days.
-- 
Niko Tyni   nt...@debian.org



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



Bug#600486: Bug#598132: gdm3: Should beep or permit to configure a beep

2010-10-18 Thread Josselin Mouette
Le dimanche 17 octobre 2010 à 16:58 +0200, Samuel Thibault a écrit : 
> Samuel Thibault, le Sun 17 Oct 2010 16:06:45 +0200, a écrit :
> > Josselin Mouette, le Mon 27 Sep 2010 18:20:38 +0200, a écrit :
> > > I would definitely accept a patch to do that.
> > 
> > Here is the part that adds the beep.
> 
> Here is the part that adds the configuration checkbox in the
> accessibility panel.  That's in the gnome-settings-daemon package, thus
> cloning.

Sorry but this is not going to happen. What use is there for such a
configuration checkbox? Furthermore there is nothing in the patch that
makes the beep actually happen.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling


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


Bug#600648: iceweasel: Not allowed to select helper application

2010-10-18 Thread Mike Hommey
On Mon, Oct 18, 2010 at 11:12:43PM +0200, Anders Boström wrote:
> Package: iceweasel
> Version: 3.6.10-1
> Severity: normal
> 
> When trying to view an wvx-file from
> http://www.trafikverket.se/Privat/Projekt/Stockholm/E20-norra-lanken/Dokument/?tabId=17236
>  ,
> I only get an open-dialog with the options "Cancel" and "Save File",
> I'm not allowed to select application.
> 
> The dialog say:
> 
> --
> You have chosen to open
> 
> felstfilm_liten.wvx
> which is a: Microsoft ASX playlist
> from: http://www.trafikverket.se
> 
> Would you like to save this file?
> 
>Cancel   Save file
> --
> 
> Also, if I open the preferences/Application tab, an entry for
> "Microsoft ASX playlist" exists. I can select an application, for an
> example xine, but I still get the same Cancel/Save file dialog when
> opening an wvx-file.

I think this is because the Content-Type returned by the server is
application/octet-stream instead of the relevant type. Could you try
with a server that returns a video/x-ms-wvx type ?

Mike



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



Bug#598132: gdm3: Should beep or permit to configure a beep

2010-10-18 Thread Josselin Mouette
Le dimanche 17 octobre 2010 à 16:06 +0200, Samuel Thibault a écrit : 
> Hello,
> 
> Josselin Mouette, le Mon 27 Sep 2010 18:20:38 +0200, a écrit :
> > I would definitely accept a patch to do that.
> 
> Here is the part that adds the beep.

I’m not very fond of depending on beep just for that purpose.
Furthermore there is nothing with this approach that guarantees the
login is ready at the time of the beep.

I really think the beep should be emitted by the greeter instead.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling


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


Bug#600623: unblock: jinja2/2.5.4-1

2010-10-18 Thread Mehdi Dogguy
On 10/18/2010 07:48 PM, Piotr Ożarowski wrote:
> Package: release.debian.org Severity: normal User: 
> release.debian@packages.debian.org Usertags: freeze-exception
> 
> Please unblock package jinja2
> 

There is a "_build" directory in the tarball. I assume that its content
is completely generated (please correct me if I'm wrong). What's the
reason of having it in the source package? (except making the diff much
bigger).

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#600646: gnome-terminal: Nautilus Integration

2010-10-18 Thread Josselin Mouette
Le lundi 18 octobre 2010 à 17:39 -0300, Patricio Rojo a écrit :
> Here is my suggestion: Currently, if you are on Nautilus, you can open
> a terminal in the given directory, but not the other way around. It
> would be very useful to have a keyboard shortcut and/or a right-click
> menu that would open a Nautilus windows in the current terminal
> directory.

Given how the terminal works, this would be a bit hackish and
error-prone.

Note that you can simply run “nautilus .” from the shell to make it
happen.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling


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


Bug#591046: status of 2.6.11-2?

2010-10-18 Thread Mehdi Dogguy
On 10/19/2010 02:43 AM, Benoit Mortier wrote:
> 
> Just uploaded 2.6.11-2 to unstable will ask for freeze exception
> tommorow
> 

Good news.

I wonder what's the purpose of such changes:

+-  if (check_command($command)){
++  if (check_command($command) || TRUE){

Is showing an error bad? (the else statement is ignored now).

Cheers,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#600680: iceowl-extension: Cannot reconnect to previously failed calendar with CalDav.

2010-10-18 Thread Alex Opie
Package: iceowl-extension
Version: 1.0~b1+dfsg1-2
Severity: normal
Tags: upstream patch

There are a couple of typos in calDavCalendar.js that trip up the code that 
runs when a temporarily unavailable calendar becomes available again.

Patch attached


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

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

Versions of packages iceowl-extension depends on:
ii  calendar-timezones1.0~b1+dfsg1-2 Timezone Extension for Sunbird/Ice
ii  icedove   3.0.8-1mail/news client with RSS and inte
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.4-14 GCC support library
ii  libnspr4-0d   4.8.4-1NetScape Portable Runtime Library
ii  libstdc++64.4.4-14   The GNU Standard C++ Library v3

Versions of packages iceowl-extension recommends:
pn  calendar-google-provider   (no description available)

Versions of packages iceowl-extension suggests:
pn  latex-xft-fonts(no description available)

-- no debconf information
--- calDavCalendar.js.old	2010-10-19 15:25:00.0 +1300
+++ calDavCalendar.js	2010-09-29 15:09:51.0 +1300
@@ -880,7 +880,7 @@
 } else if (request.responseStatus == 207 && thisCalendar.mDisabled) {
 // Looks like the calendar is there again, check its resouce
 // type first.
-this.checkDavResourceType(aChangelogListener);
+thisCalendar.checkDavResourceType(aChangeLogListener);
 return;
  }
 


Bug#600679: libapache2-mod-passenger: why not support mpm event in Depends:?

2010-10-18 Thread Jay Freeman (saurik)
Package: libapache2-mod-passenger
Severity: normal

I believe this to be a follow-on to bug #556230: mod-passenger should be 
supported with the event mpm. Is there a reason why this package explicitely 
specifies the list of mpms that it supports? Does it actually care?

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

Kernel: Linux 2.6.30-20090625a (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/bash



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



Bug#548327: xword: add an option to output the crossword as a postscript file

2010-10-18 Thread John Sullivan
Hi Derek,

John Sullivan  writes:

> Derek Davies  writes:
>
>> John Sullivan wrote:
>>> Hi Derek,
>>> Derek Davies  writes:
>>>
>>>   
 Hi John,

 The quick answer is that I thought I applied that patch.  Give me a
 day or two and I'll check on that and get back to you.  I don't see
 anything wrong with the patch and think it's fine to put it in.

 I'll get back to you soon.

 
>>>
>>> I checked your git repo, and it's there, so I went ahead and marked this
>>> pending. Sorry for the noise.
>>>
>>> Do you think you'll be doing a release of the new version soon? If you
>>> think it's ready now, let me know what the new version number is and
>>> I'll package it.
>>>
>>>   
>> Oh good!
>>
>> I think it's ready.  At least I haven't had any problems using it
>> daily for NYT crosswords.  I guess I'd say 1.1 for the version, but
>> I'm not entirely certain what the latest version is currently.  I'd
>> say just bump the minor number and that should be fine.
>
> Okay, I'm getting the package together now, but can you go through the
> release motions, like putting an entry for the release in the Changelog
> and tagging it as 1.1 in git?

Any chance you'll get to tagging the release soon?

-- 
-John Sullivan
-http://wjsullivan.net



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



Bug#597887: monkeysphere: improve support for hosts without FQDN

2010-10-18 Thread Vagrant Cascadian
On Thu, Sep 23, 2010 at 01:40:29PM -0700, Vagrant Cascadian wrote:
> if someone types:
> 
>   ssh foo
> 
> and the search domain was example.net, then the monkeysphere proxy would look
> for:
> 
>   gpg --search '=ssh://foo.example.net' 
> 
> and append the key appropriately to known_hosts if it verifies correctly?

here's an ugly hack to at least partially work around this limitation... by
using the following as the ssh ProxyCommand:


#!/bin/sh

case $1 in
*.*) exec monkeysphere ssh-proxycommand "$1" "$2" ;;
*) 
if [ -z "$(ssh-keygen -F $1)" ]; then
# FIXME: deal with multiple lines returned by host
fq=$(host $1 | awk '{print $1}' | head -n 1) 
if [ -n "$fq" ]; then
if monkeysphere update-known_hosts $fq ; then
ssh-keygen -F "$fq" | egrep -v ^# | awk '{print $2" "$3}' | sed 
-e "s,^,$1 ,g" >> ~/.ssh/known_hosts
ssh-keygen -H
# FIXME: clean up known_hosts.old
fi
fi
fi
exec nc "$1" "$2"
;;
esac


seems like it may run into trouble if you switch domains and they have the same
hostnames, not sure if there are other potential problems with this sort of
behavior...


live well,
  vagrant



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



Bug#600678: polipo: does not recognize long literal IPv6 addresses

2010-10-18 Thread Jan Braun
Package: polipo
Version: 1.0.4.1-1.1
Severity: normal
Tags: patch ipv6

Hi,

Polipo does not recognize very long literal IPv6 addresses as such:

| $ wget http://[2001:1AF8:1:F006:0:0:0:6]/
| --2010-10-19 06:13:55--  http://[2001:1af8:1:f006:0:0:0:6]/
| Resolving localhost... ::1, 127.0.0.1
| Connecting to localhost|::1|:8123... connected.
| Proxy request sent, awaiting response... 400 Bad Request
| 2010-10-19 06:13:55 ERROR 400: Bad Request.
| 
| $ wget http://[2001:1AF8:0001:F006:::000:6]/
| --2010-10-19 06:14:40--  http://[2001:1af8:0001:f006:::000:6]/
| Resolving localhost... ::1, 127.0.0.1
| Connecting to localhost|::1|:8123... connected.
| Proxy request sent, awaiting response... 400 Bad Request
| 2010-10-19 06:14:41 ERROR 400: Bad Request.
| 
| $ wget http://[2001:1AF8:0001:F006::::6]/
| --2010-10-19 06:15:24--  http://[2001:1af8:0001:f006::::6]/
| Resolving localhost... ::1, 127.0.0.1
| Connecting to localhost|::1|:8123... connected.
| Proxy request sent, awaiting response... 504 Host 
[2001:1af8:0001:f006::::6] lookup failed: Host not found
| 2010-10-19 06:15:24 ERROR 504: Host [2001:1af8:0001:f006::::6] 
lookup failed: Host not found.

(Don't worry about the Bad Request, that's just www.sixxs.net's ngnix
complaining about the lack of a Host: header or somesuch. The point is
the connection attempt getting past polipo in the first 2 examples, and
polipo trying to resolve the IPv6 address in the 3rd.)

The bug is in rfc2732() in dns.c: It gets the length check wrong, as an
IPv6 Literal in an URL can be up to 41 characters long: 8 groups of 4
hexdigits each, 7 separating semicolons, a leading '[', a trailing ']'.
The obvious patch is attached.

regards,
Jan

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

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

Versions of packages polipo depends on:
ii  dpkg  1.15.8.5   Debian package management system
ii  install-info  4.13a.dfsg.1-5 Manage installed documentation in 
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib

polipo recommends no packages.

polipo suggests no packages.

-- Configuration Files:
/etc/init.d/polipo changed [not included]
/etc/polipo/config changed [not included]

-- no debconf information

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments
--- dns.c.orig	2010-10-19 05:46:03.0 +0200
+++ dns.c	2010-10-19 05:53:05.0 +0200
@@ -445,11 +445,11 @@
 AtomPtr
 rfc2732(AtomPtr name)
 {
-char buf[38];
+char buf[40]; /* 8*4 (hexdigits) + 7 (colons) + 1 ('\0') */
 int rc;
 AtomPtr a = NULL;
 
-if(name->length < 38 && 
+if(name->length < 40+2 && 
name->string[0] == '[' && name->string[name->length - 1] == ']') {
 struct in6_addr in6a;
 memcpy(buf, name->string + 1, name->length - 2);


signature.asc
Description: Digital signature


Bug#592109: please provide VCS fields to ease contribution for sd

2010-10-18 Thread Christine Spang
On Wed, Aug 25, 2010 at 11:50:40PM -0400, Yaroslav Halchenko wrote:
> 
> On Wed, 25 Aug 2010, Christine Spang wrote:
> > SD has Vcs-git and Vcs-Browser fields in the control file in
> > the package's collab-maint Debian git repository, so this is
> > fixed on the next upload. 
> good -- that would be sufficient  to close the bugreport
> 
> > These are for the Debian package
> > and not the upstream repository, though---I wonder, do they
> > actually solve the problem that you're bringing up? What
> > exactly do you want?
> if you recall -- this bugreport was filed during debconf10... during
> your presentation... for live demonstration of sd/debbugs integration
> 
> but on a sidenote -- since upstream is also under git, consider in
> future for your debian packaging just rely not on 'source distribution
> tarballs' but on upstream git repository.  That might provide few
> benefits
> 
> * coherent single git repository, so "Debian package" repository would
>   simply contain upstream repository as well (instead of imported
>   tarballs)
> 
> * as a "side effect" you would be resistant to possible upstream's
>   faults in generating "source distribution" tarball ( if it is not as
>   simple as the output of git archive)
> 
> * easy cherry-picking of necessary commits for fixes

Sure, you make a good point. Do you know of any resources in
particular about workflows for having managing
upstream+debian both in git? A pointer might help me get on
this faster.

Thanks!
Christine



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



Bug#576628: libprophet-perl: uses embedded jquery libraries

2010-10-18 Thread Christine Spang
On Mon, Apr 05, 2010 at 11:19:43PM -0300, David Bremner wrote:
> Package: libprophet-perl
> Version: 0.741-1
> Severity: normal
> 
> 
> The directory
> 
>   /usr/share/perl5/auto/share/dist/Prophet/web/static/jquery/js
> 
> contains several javascript files related to jquery.
> jquery-1.2.6.min.js seems to be an embedded copy of (an older version
> of) the library also available as libjs-jquery.  There are also
> several plugins here, but I don't think these are packaged in Debian.

Update on this bug:

I'm committing a patch upstream that will make Prophet try
loading system javascript/yui libraries first, which would
allow libprophet-perl to stop shipping these files in the
binary package.

I'd like to wait on uploading a fix to Debian until a new
upstream is released, since I have the capability to do both
releases and like keeping the Debian package local-patch-free.

We'll still need to ship our own copies of the jquery
plugins for now, unless they get stable/accepted enough to
be packaged separately.

cheers,
Christine



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



Bug#593134: libprophet-perl: Ships CSS file from YUI not mentioned in copyright file

2010-10-18 Thread Christine Spang
On Sun, Aug 15, 2010 at 07:45:59PM +0200, Olivier Berger wrote:
> Package: libprophet-perl
> Version: 0.743-1
> Severity: minor
> 
> FYI, /usr/share/perl5/auto/share/dist/Prophet/web/static/yui/css/reset.css 
> seems to be distributed under terms that are not exactly MIT license, so 
> deserves a mention in copyright file of the package IMHO.
> 
> Hope this helps.

Hi Olivier,

I've updated Prophet's debian/copyright for this (and all
tho other javascript and css files shipped with Prophet) in
git. Hopefully it will be uploaded soon; I have some other
changes I'd like to get in first though.

Thanks for your report!
Christine



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



Bug#600677: including UseGDCM.cmake sets VTK_VERSION, breaks ITK build

2010-10-18 Thread Steve M. Robbins
Package: libgdcm2-dev
Version: 2.0.16-2
Severity: normal

The ITK CMakeLists.txt contains the following to support
system GDCM:

  IF(ITK_USE_SYSTEM_GDCM)
FIND_PACKAGE(GDCM)
IF(GDCM_FOUND)
  INCLUDE(${GDCM_USE_FILE})

where ${GDCM_USE_FILE} is /usr/lib/gdcm-2.0/UseGDCM.cmake
That file, in turn, contains the following:

  # Use VTK.
  IF(GDCM_USE_VTK)
SET(VTK_DIR ${GDCM_VTK_DIR})
FIND_PACKAGE(VTK)
IF(VTK_FOUND)
  INCLUDE(${VTK_USE_FILE})
ELSE(VTK_FOUND)
  MESSAGE("VTK not found in GDCM_VTK_DIR=\"${GDCM_VTK_DIR}\".")
ENDIF(VTK_FOUND)
  ENDIF(GDCM_USE_VTK)

After this is executed, the variable VTK_VERSION is set, which causes
a problem later on in the ITK build because MetaIO is shared between
ITK and VTK and uses VTK_VERSION to decide when it is built in VTK
source tree.  See Utilities/MetaIO/CMakeLists.txt:

  IF(VTK_VERSION)
SET(METAIO_FOR_VTK 1)
MARK_AS_ADVANCED( METAIO_FOR_VTK )
SET(METAIO_NAMESPACE "vtkmetaio")
  ELSE(VTK_VERSION)
SET(METAIO_FOR_ITK 1)
MARK_AS_ADVANCED( METAIO_FOR_ITK )
SET(METAIO_NAMESPACE "ITKMetaIO")


Not sure what should be done.  On one hand, it was a complete
surprise that INCLUDE(${GDCM_USE_FILE}) set VTK_VERSION, and
that seems a bug to me.  On the other hand, the ITK build
should probably be more robust against this kind of thing, so
maybe MetaIO/CMakeLists.txt is at fault.

Suggestions?
-Steve


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

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

Versions of packages libgdcm2-dev depends on:
ii  libgdcm2.02.0.16-2   Grassroots DICOM runtime libraries

libgdcm2-dev recommends no packages.

libgdcm2-dev 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#600672: python-coverage: new upstream version available, coverage 3.4

2010-10-18 Thread Ben Finney
package python-coverage
block 600672 by 596212
thanks

There should not be any further uploads of new ‘python-coverage’
upstream versions without resolving the Policy violation documented in
Bug#596212.

-- 
 \“I went to the hardware store and bought some used paint. It |
  `\  was in the shape of a house.” —Steven Wright |
_o__)  |
Ben Finney 


signature.asc
Description: Digital signature


Bug#535764: Comments regarding python-coverage_3.2-1_amd64.changes

2010-10-18 Thread Ben Finney
package python-coverage
tags 535764 - pending
fixed 535764 3.2-1
tags 592543 - pending
fixed 592543 3.2-1
thanks

On 18-Oct-2010, Torsten Werner wrote:
> I've accepted your package.

Thank you!

This upload puts ‘python-coverage’ version 3.2-1 into Debian at last.

Now the burden is back to me for version 3.4 (Bug#600672).

-- 
 \ “I have yet to see any problem, however complicated, which, |
  `\  when you looked at it in the right way, did not become still |
_o__)more complicated.” —Paul Anderson |
Ben Finney 


signature.asc
Description: Digital signature


Bug#600676: openopt: new upstream version (0.31)

2010-10-18 Thread Steven G. Johnson
Package: openopt
Severity: wishlist

A new upstream release is now available.

Note that several of the new solvers in this release require the free
NLopt library to be packaged (bug #589692).

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

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



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



Bug#600675: deluge: Doesn't start in active workspace

2010-10-18 Thread Nathan A. Stine
Package: deluge
Version: 1.3.0-1
Severity: minor

I've noticed for awhile now that when I start deluge the UI pops up in the
primary workspace instead of the workspace I'm currently viewing.

It would be nice if Deluge would start in the active workspace rather than
defaulting to the primary one.

Thanks,

Nathan A. Stine



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

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

Versions of packages deluge depends on:
ii  deluge-gtk1.3.0-1bittorrent client written in Pytho
ii  python2.6.6-3interactive high-level object-orie

deluge recommends no packages.

deluge 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#488566: linux-image-2.6.32-5-686 version 2.6.32-25

2010-10-18 Thread Ben Hutchings
On Mon, 2010-10-18 at 11:01 -0300, Fito wrote:
> Haven't been patched yet.

I'm sorry, I'll apply the patch that you said worked.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#596975: ibus-array crashes with libibus2

2010-10-18 Thread Keng-Yu Lin
2010/10/17 Jonathan Nieder :
> Hi,
>
> Keng-Yu Lin wrote:
>
>> (ibus-engine-array:3569): GLib-GObject-CRITICAL **: g_object_unref: assertion
>> `G_IS_OBJECT (object)' failed
>
> Is this reproducible with ibus-array 0.0.2-2?  Can you explain how to
> reproduce it?
>
> Thanks,
> Jonathan
>
>
>

Hi Jonathan:
  This is reproducible with ibus-array 0.0.2-2. It occurs when
switching the input method to ibus-array (using the ctrl+space hotkey)
and input Chinese characters with ibus-array.

  The bug is because libibus API changes. In libibus2,
g_object_unref() is not needed any more.

  Regards,
-kengyu



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



Bug#600656: linux-image-2.6.32-5-amd64: Crash after nullpointer dereference during gparted reading a disk

2010-10-18 Thread Ben Hutchings
On Mon, 2010-10-18 at 23:43 +0200, Andreas Feldner wrote:
> Package: linux-2.6
> Version: 2.6.32-23
> Severity: important
> 
> My system crashes reproducibly during the gparted operation "move /dev/sda1 
> to the right" in the read-only test stage.
> It is very hard to track down as the system freezes (ping is working, no 
> other networking stuff like sshd, screen
> is black, keyboard doesn't react, not even the shift indicator LEDs). After 
> reboot, no indication of the problem
> can be found in the log files anymore.
>
> Running tail -f /var/log/kern.log on a different machine, and running gparted 
> with remote X11 did the trick to
> get to some information. The following lines were the last words to hear from 
> the machine:
> 
> Oct 18 21:44:10 xxx kernel: [88819.864398] BUG: unable to handle kernel 
> NULL pointer dereference at (null)
> Oct 18 21:44:10 xxx kernel: [88819.864413] IP: [] 
> drop_buffers+0x23/0x9d
> Oct 18 21:44:10 xxx kernel: [88819.864429] PGD 7d9c4067 PUD 1f542067 PMD 
> 0 
> Oct 18 21:44:10 xxx kernel: [88819.864439] Oops:  [#1] SMP 
> 
> gparted was attempting to read a 511.94 GiB sized partition on a SATA disk 
> with a block size of 16.00 MiB. The
> crash orccured at 365.60 GiB (in case that matters). The file system on the 
> partition in question is reported
> OK by fsck. A test with dd if=/dev/sda1 of=/dev/null bs=4096 worked out OK 
> (didn't try with 16M block size). 
> SMART status if the hard disk is passed.
> 
> I suspect some rare freezes of the machine to come from the same origin, 
> though I didn't find another way
> to actually reproduce the problem than running the described gparted 
> operation.
> 
> Unfortunately, I have no idea if this bug report contains any useful 
> information, nor how to provide any
> additional.
[...]

It really isn't enough information.  Please use netconsole or a serial
console to capture the full 'oops' message.  Also please test whether
this is reproducible if you don't use the nvidia proprietary driver.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#600299: Openvz kernels appear to log unitialised memory to the console with log_buf_len=XX

2010-10-18 Thread Ben Hutchings
On Mon, 2010-10-18 at 19:34 +0100, Tim Small wrote:
> Package: linux-2.6
> Version: 2.6.32-23
> Severity: normal
> 
> Thanks, tested and confirmed working against svn sid (686), and svn
> lenny (amd64) and applies cleanly to both.
> 
> 
> Tested-By: t...@seoss.co.uk
> 
> Would you like me to check upstream OpenVZ, and open a bug in their
> tracker if relevant?

Thanks, but we can handle that.

> BTW, I fixed up the test-patches script so that it works for patches
> like the one you supplied (i.e. patches which need to be applied only
> when a particular featureset is being built). HTH.

Thanks a lot!

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#600305: forcing dma mode

2010-10-18 Thread dann frazier
On Tue, Oct 19, 2010 at 02:23:26AM +0100, Ben Hutchings wrote:
> On Mon, 2010-10-18 at 17:42 -0600, dann frazier wrote:
> > On Sun, Oct 17, 2010 at 01:03:04AM +, Debian Bug Tracking System wrote:
> > > Processing commands for cont...@bugs.debian.org:
> > > 
> > > > # Automatically generated email from bts, devscripts version 
> > > > 2.10.35lenny7
> > > > tags 600305 + pending
> > > Bug #600305 [linux-image-2.6.32-5-amd64] linux-image-2.6.32-5-amd64: 
> > > MacBookPro 7, 1 mcp89 sata link reset fails, no disks detected during 
> > > install process
> > > Added tag(s) pending.
> > > >
> > > End of message, stopping processing here.
> > > 
> > > Please contact me if you need assistance.
> > 
> > Ben,
> >   Should we include these as well to force on DMA mode?
> 
> Yes, thanks for spotting those.

Committed in r16456.

-- 
dann frazier




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



Bug#600305: forcing dma mode

2010-10-18 Thread Ben Hutchings
On Mon, 2010-10-18 at 17:42 -0600, dann frazier wrote:
> On Sun, Oct 17, 2010 at 01:03:04AM +, Debian Bug Tracking System wrote:
> > Processing commands for cont...@bugs.debian.org:
> > 
> > > # Automatically generated email from bts, devscripts version 2.10.35lenny7
> > > tags 600305 + pending
> > Bug #600305 [linux-image-2.6.32-5-amd64] linux-image-2.6.32-5-amd64: 
> > MacBookPro 7, 1 mcp89 sata link reset fails, no disks detected during 
> > install process
> > Added tag(s) pending.
> > >
> > End of message, stopping processing here.
> > 
> > Please contact me if you need assistance.
> 
> Ben,
>   Should we include these as well to force on DMA mode?

Yes, thanks for spotting those.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#600674: python-coverage: should use system installation of jQuery library

2010-10-18 Thread Ben Finney
Package: python-coverage
Version: 3.2-1
Severity: important
Justification: Policy §4.13 “Convenience copies of code”

The ‘python-coverage’ package includes a duplicate copy of the jQuery
library. That copy should not be installed from this package, and
instead the package should use the Debian installation of the jQuery
library from the ‘libjs-jquery’ package.

-- 
 \“I don't accept the currently fashionable assertion that any |
  `\   view is automatically as worthy of respect as any equal and |
_o__)   opposite view.” —Douglas Adams |
Ben Finney 



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



Bug#588737: Seems to be resolved

2010-10-18 Thread Mike Paul
This problem seems to have been resolved by the recent upload of
genisoimage version 9:1.1.11-1, though it wasn't noted in the changelog.




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



Bug#600446: typo in /lib/udev/rules.d/70-acl.rules: closing double quote in last line missing

2010-10-18 Thread Gianluigi Tiesi
Package: udev
Version: 163-1
Severity: normal

I think a typo, I get:

udevd[158]: GOTO 'acl_end' has no matching label in: 
'/lib/udev/rules.d/70-acl.rules'

..
Synthesizing the initial hotplug events...udevd[159]: GOTO 'acl_end' has no 
matching label in: '/lib/udev/rules.d/70-acl.rules'

udevd[159]: GOTO 'acl_end' has no matching label in: 
'/lib/udev/rules.d/70-acl.rules'


but if I add the missing quote I get no spam

Regards


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

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

Versions of packages udev depends on:
ii  debconf [debconf-2.0]1.5.36  Debian configuration management sy
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libselinux1  2.0.96-1SELinux runtime shared libraries
ii  libudev0 163-1   libudev shared library
ii  libusb-0.1-4 2:0.1.12-16 userspace USB programming library
ii  lsb-base 3.2-26  Linux Standard Base 3.2 init scrip
ii  util-linux   2.17.2-3.3  Miscellaneous system utilities

Versions of packages udev recommends:
ii  pciutils  1:3.1.7-5  Linux PCI Utilities
pn  usbutils   (no description available)

udev suggests no packages.



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



Bug#591046: status of 2.6.11-2?

2010-10-18 Thread Benoit Mortier
Le Monday 18 October 2010 22:58:38 Mehdi Dogguy, vous avez écrit :
> On 09/24/2010 02:57 PM, Benoit Mortier wrote:
> > Le Friday 24 September 2010 13:49:16 Holger Levsen, vous avez écrit :
> >> fixing 591046 seems rather important for me, do you (gosa
> >> maintainers) have an upload prepared? I'd be happy to sponsor it.
> >
> > i will upload an fixed Gosa 2.6.11-2 this saterday that fixes two
> > others remaining bugs
>
> Any news here?

Just uploaded 2.6.11-2 to unstable will ask for freeze exception tommorow

Cheers
-- 
Benoit Mortier
CEO 
OpenSides "logiciels libres pour entreprises" : http://www.opensides.eu/
Promouvoir et défendre le Logiciel Libre http://www.april.org/
Contributor to Gosa Project : http://gosa-project.org/



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



Bug#600673: please convert udev rules to ATTR(S)

2010-10-18 Thread Gianluigi Tiesi
Package: hplip
Version: 3.10.6-1
Severity: minor

Please convert rules to use ATTR or ATTRS instead of sysfs
I get a lot of warns from udev:

udevd[156]: SYSFS{}= will be removed in a future udev version, please use 
ATTR{}= to match the event device, or ATTRS{}= to match a parent device

Regards

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

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

Versions of packages hplip depends on:
ii  adduser 3.112+nmu1   add and remove users and groups
ii  coreutils   8.5-1GNU core utilities
pn  cups   (no description available)
pn  cups-client(no description available)
pn  hplip-cups (no description available)
pn  hplip-data (no description available)
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libcups21.4.4-6  Common UNIX Printing System(tm) - 
ii  libdbus-1-3 1.2.24-3 simple interprocess messaging syst
pn  libhpmud0  (no description available)
pn  libsane(no description available)
pn  libsane-hpaio  (no description available)
ii  libssl0.9.8 0.9.8o-2 SSL shared libraries
ii  lsb-base3.2-26   Linux Standard Base 3.2 init scrip
pn  policykit-1(no description available)
ii  python  2.6.6-3+squeeze1 interactive high-level object-orie
pn  python-dbus(no description available)
pn  python-imaging (no description available)
ii  python-pexpect  2.3-1Python module for automating inter
ii  python-support  1.0.10   automated rebuilding support for P

Versions of packages hplip recommends:
pn  avahi-daemon   (no description available)
pn  sane-utils (no description available)

Versions of packages hplip suggests:
pn  hplip-doc  (no description available)
pn  hplip-gui  (no description available)
pn  kdeprint | gtklp | xpp (no description available)
pn  python-notify  (no description available)



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



Bug#600550: Please consider adding abrowser as a recommends for nips2

2010-10-18 Thread Jay Berkenbilt

> Apart from firefox browser package, there is also an abrowser meta package in
> Ubuntu, representing firefox without the mozilla branding. 
> This is the only difference between Ubuntu and Debian, and as this change does
> not impact Debian, please consider adding an alternative recommends on 
> abrowser,
> so that the recommends line for nips2 becomes: iceweasel | firefox | abrowser 
> | www-browser

Coming right up.  Thanks for keeping me informed so the package can stay
the same across the two distributions.

--Jay



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



Bug#600671: installation-reports: (daily-image 20101017) GRUB-2 failed to install on Intel X-25M 80GB

2010-10-18 Thread Luca Capello
Package: installation-reports
Severity: important

Hi there!

I recently bought an SSD (Intel X-25M 80GB SSDSA2MH080G2C1) and after
having read around the web about the different "tips&tricks for SSD", I
was ready to install Debian GNU/Linux on it.  Unfortunately, the result
was quite far from my expectations (read below).

Please note that this is a new report for the same machine at:

  http://bugs.debian.org/406026

Thx, bye,
Gismo / Luca

-- Package-specific info:

Boot method: multi-arch & hd-media
Image version: 
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/multi-arch/iso-cd/
   http://d-i.debian.org/daily-images/amd64/daily/hd-media/
Date: from 20101016 to 20101018

Machine: IBM/Lenovo ThinkPad X60 (model 1706-GMG with 2x1GB RAM)
Partitions: [upon request]

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

Initial boot:   [O]
Detect network card:[E] -> point 1
Configure network:  [O]
Detect CD:  [ ]
Load installer modules: [E] -> point 1
Detect hard drives: [O]
Partition hard drives:  [E] -> point 2
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [O]
Install boot loader:[E] -> point 3
Overall install:[E] -> point 3

Comments/Problems:


1) the amd64-i386-powerpc-netinst multi-arch image built on
   20101016-08:59 (d-i 20101016-03:54) is useless, given that on both
   amd64 (my laptop) and i386 (a Compaq Deskpro EN SFF PIII-650) after
   the country/language selection there is an error:

 [!!] Load installer components from CD

 No kernel modules were found.  This probably is due to a mismatch
 between the kernel used by this version of the installer and the
 kernel version available in the archive.

 If you're installing from a mirror, you can work around this problem
 by choosing to install a different version of Debian.  The install
 will probably fail to work if you continue without kernel modules.

 Continue the install without loading kernel modules?

  On i386, continuing causes the installer to fail when looking for
  drivers for the network card.

  I thus tested two older multi-arch images I had around:

  a) the image built on 20100912-03:39 (d-i 20100911-21:57) similarly
 fails

  b) the image built on 20100717-15:25 (d-i 20100717-09:54) works OK

  Today I did two more tests:

  c) i386 netinst image built on 20101018-09:15 (d-i 20101018-03:54)
     works OK

  d) multi-arch image built on 20101018-09:25 (d-i 20101018-03:54) fails
 again with the "No kernel modules were found" message on QEMU (both
 amd64 and i386)

  In the end, for my laptop (amd64) I downloaded the hd-media image
  built on 20101017-00:17 and used that for the next steps, together
  with the amd64-businesscard image built on 20101017-08:45 (d-i
  20101017-00:08) and the firmware tarball extracted on the hd-media.


2) first, two things which IMHO are sub-optimized:

   a) my HD was a fresh new one (never used, not even partitioned
  before) and thus it does not require any erasing when creating the
  LUKS volume.

  I know that I can *manually* switch the erasing off (and
  everything is explained in the installation guide, thank you!),
  the major problem is that there is no indication that erasing a
  disk can last quite a lot of time...

   b) given that the installation did not completely finish, I have not
  checked the final result, but it would be a good thing for partman
  to recognize an SSD and add some default options (e.g. noatime).

  *NB*, this is only an idea, not a complaint, so please do not
start flaming on that...

   Then, the real problem: I decided to follow the default Debian guided
   partitioning scheme for LUKS+LVM with a separate /home.  However,
   once I discovered that the filesystem used was ext3 (and not ext4,
   which AFAIK gives better performances with SSDs), I simply went back
   to the partitioning step.  At the same time, I decided that having a
   separate /home was useless, so I removed every automatically-created
   partition.  Finally, following Iustin Pop's advice and also because
   AFAIK dm-crypt can not use TRIM, I decided to leave 5GB of space free
   for the SSD, i.e. not used and not partitioned at all.

   And here the surprise: without rebooting, there is no way to delete
   LUKS+LVM once you have passed the partition step.  Instead, I was
   always answered that the partition (real or encrypted) was in use by
   the LVM subsystem.  As I said, rebooting was the solution and I could
   then continue on.


3) the installation went smoothly (base installation plus tasksel's
   laptop and standard tasks) until the boot loader installation,
   i.e. GRUB-2.

   Here the corresponding output from d-i's syslog:

--8<---

Bug#600672: python-coverage: new upstream version available, coverage 3.4

2010-10-18 Thread Ben Finney
Package: python-coverage
Version: 3.2-1
Severity: wishlist

The Python Package Index page for ‘coverage’
http://pypi.python.org/pypi/coverage> shows version 3.4 is
available, with significant improvements over the version currently in
Debian.

-- 
 \   “… whoever claims any right that he is unwilling to accord to |
  `\ his fellow-men is dishonest and infamous.” —Robert G. |
_o__)   Ingersoll, _The Liberty of Man, Woman and Child_, 1877 |
Ben Finney 



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



Bug#600594: gitk should recommend the font it wants to use

2010-10-18 Thread Jonathan Nieder
Hi Marc,

Marc Haber wrote:

> I have only the bare minimum of fonts installed on my system. This
> causes gitk to offer only an even smaller selection of fonts, most of
> which resolve to a rather ugly monospaced fonts.

I'm guessing this is a combination of two problems:

 1. Debian (and hence gitk) uses tk 8.4 by default, which unfortunately
does not support freetype/fontconfig.  You can work around this by
installing tk from experimental or installing tk8.5 and updating
the "wish" alternative.

 2. gitk uses Helvetica and Courier instead of sans and monospace as
it should.  This is bug 466471 (thanks for the reminder!).

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#387397: screen should support digraphs for RFC1345 two-character mnemonics

2010-10-18 Thread Ben Finney
On 19-Oct-2010, Axel Beckert wrote:
> I still believe we can get both cases where they don't interfere. Of
> course if there are different table entries for each order, they
> should be honoured. But if there's only one entry for a given
> combination, both orders should work.

I don't have an interest in it working that way; but it's compatible
with the behaiour request that motivated this bug report.

Perhaps you could make a patch that takes the table entries, and
auto-generates new entries for each pair reversed, only where there's
no existing entry for that sequence. That way, the table look-up could
be order-dependent, and both ‘a:’ and ‘:a’ would still produce ‘ä’
because both of those sequences would exist in the table that gets
used.

-- 
 \“Pinky, are you pondering what I'm pondering?” “Wuh, I think |
  `\  so, Brain, but how will we get three pink flamingos into one |
_o__) pair of Capri pants?” —_Pinky and The Brain_ |
Ben Finney 


signature.asc
Description: Digital signature


Bug#597334: Sources not in preferred form for modifications

2010-10-18 Thread Lisandro Damián Nicanor Pérez Meyer
As of release 2010.10.12, dpic's sources are the output of p2c, the Pascal-to-
C translator. The original Pascal code has not been made available by upstream 
because he considers that it is too much effort to get the sources compiled, 
as they are not compiled directly. 

As far as I understand, Debian prefers the sources in the preferred form for 
modifications, so this package can not be uploaded as it is.

If this situation ever changes, I will be glad to finish this package.

Any comments are welcomed.

Regards, Lisandro.

-- 
17: Cual es la funcion inicial de un antivirus
* Desarrollar virus para vender el producto
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

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#554919: Patch!

2010-10-18 Thread Alex Valavanis
Sorry, I forgot to attach the patch


02-fix-binutils-gold-build-failure.dpatch
Description: Binary data


Bug#554919: Patch available

2010-10-18 Thread Alex Valavanis
Hi Wolfi,

Here is a patch which fixes the FTBFS for me locally in Ubuntu.
Please test in Debian Wheezy and consider this for the next Debian
package.

Thanks,


Alex



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



Bug#600595: ITP: minitunes -- Minitunes is just another music player, only better.

2010-10-18 Thread Jakob Haufe
Hi Hauke,

On Mon, 18 Oct 2010 21:36:59 +0200
Jan Hauke Rahm  wrote:

> I sent out an ITP for minitunes a few days ago. Apparently, it never
> went through. I do have a working package already now, though. Would you
> like to co-maintain it with me?

I packaged 0.1.1, it's available via HTTP and AFS:

deb http://debian.sur5r.net/minitunes testing main
deb-src http://debian.sur5r.net/minitunes testing main

deb file:/afs/sur5r.net/debian/minitunes testing main
deb-src file:/afs/sur5r.net/debian/minitunes testing main

I'm currently wondering, whether it should go to unstable or maybe to
experimental first, considering it's early development state.

Cheers,
Jakob

-- 
ceterum censeo microsoftem esse delendam.


signature.asc
Description: PGP signature


Bug#600305: forcing dma mode

2010-10-18 Thread dann frazier
On Sun, Oct 17, 2010 at 01:03:04AM +, Debian Bug Tracking System wrote:
> Processing commands for cont...@bugs.debian.org:
> 
> > # Automatically generated email from bts, devscripts version 2.10.35lenny7
> > tags 600305 + pending
> Bug #600305 [linux-image-2.6.32-5-amd64] linux-image-2.6.32-5-amd64: 
> MacBookPro 7, 1 mcp89 sata link reset fails, no disks detected during install 
> process
> Added tag(s) pending.
> >
> End of message, stopping processing here.
> 
> Please contact me if you need assistance.

Ben,
  Should we include these as well to force on DMA mode?

-- 
dann frazier

[Backported to Debian's 2.6.32 by dann frazier ]

commit 1529c69adce1e95f7ae72f0441590c226bbac7fc
Author: Tejun Heo 
Date:   Tue Jun 22 12:27:26 2010 +0200

ata_generic: implement ATA_GEN_* flags and force enable DMA on MBP 7,1

IDE mode of MCP89 on MBP 7,1 doesn't set DMA enable bits in the BMDMA
status register.  Make the following changes to work around the problem.

* Instead of using hard coded 1 in id->driver_data as class code
  match, use ATA_GEN_CLASS_MATCH and carry the matched id in
  host->private_data.

* Instead of matching PCI_VENDOR_ID_CENATEK, use ATA_GEN_FORCE_DMA
  flag in id instead.

* Add ATA_GEN_FORCE_DMA to the id entry of MBP 7,1.

Signed-off-by: Tejun Heo 
Cc: Peer Chen 
Cc: sta...@kernel.org
Reported-by: Anders Østhus 
Reported-by: Andreas Graf 
Reported-by: Benoit Gschwind 
Reported-by: Damien Cassou 
Reported-by: tixet...@juno.com
Signed-off-by: Jeff Garzik 

diff -urpN a/drivers/ata/ata_generic.c b/drivers/ata/ata_generic.c
--- a/drivers/ata/ata_generic.c	2010-10-18 17:18:22.160591155 -0600
+++ b/drivers/ata/ata_generic.c	2010-10-18 17:28:35.700130856 -0600
@@ -32,6 +32,11 @@
  *	A generic parallel ATA driver using libata
  */
 
+enum {
+	ATA_GEN_CLASS_MATCH		= (1 << 0),
+	ATA_GEN_FORCE_DMA		= (1 << 1),
+};
+
 /**
  *	generic_set_mode	-	mode setting
  *	@link: link to set up
@@ -46,13 +51,17 @@
 static int generic_set_mode(struct ata_link *link, struct ata_device **unused)
 {
 	struct ata_port *ap = link->ap;
+	const struct pci_device_id *id = ap->host->private_data;
 	int dma_enabled = 0;
 	struct ata_device *dev;
 	struct pci_dev *pdev = to_pci_dev(ap->host->dev);
 
-	/* Bits 5 and 6 indicate if DMA is active on master/slave */
-	if (ap->ioaddr.bmdma_addr)
+	if (id->driver_data & ATA_GEN_FORCE_DMA) {
+		dma_enabled = 0xff;
+	} else if (ap->ioaddr.bmdma_addr) {
+		/* Bits 5 and 6 indicate if DMA is active on master/slave */
 		dma_enabled = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
+	}
 
 	if (pdev->vendor == PCI_VENDOR_ID_CENATEK)
 		dma_enabled = 0xFF;
@@ -126,7 +135,7 @@ static int ata_generic_init_one(struct p
 	const struct ata_port_info *ppi[] = { &info, NULL };
 
 	/* Don't use the generic entry unless instructed to do so */
-	if (id->driver_data == 1 && all_generic_ide == 0)
+	if ((id->driver_data & ATA_GEN_CLASS_MATCH) && all_generic_ide == 0)
 		return -ENODEV;
 
 	/* Devices that need care */
@@ -155,7 +164,7 @@ static int ata_generic_init_one(struct p
 			return rc;
 		pcim_pin_device(dev);
 	}
-	return ata_pci_sff_init_one(dev, ppi, &generic_sht, NULL);
+	return ata_pci_sff_init_one(dev, ppi, &generic_sht, (void *)id);
 }
 
 static struct pci_device_id ata_generic[] = {
@@ -167,18 +176,21 @@ static struct pci_device_id ata_generic[
 	{ PCI_DEVICE(PCI_VENDOR_ID_HINT,   PCI_DEVICE_ID_HINT_VXPROII_IDE), },
 	{ PCI_DEVICE(PCI_VENDOR_ID_VIA,PCI_DEVICE_ID_VIA_82C561), },
 	{ PCI_DEVICE(PCI_VENDOR_ID_OPTI,   PCI_DEVICE_ID_OPTI_82C558), },
-	{ PCI_DEVICE(PCI_VENDOR_ID_CENATEK,PCI_DEVICE_ID_CENATEK_IDE), },
+	{ PCI_DEVICE(PCI_VENDOR_ID_CENATEK,PCI_DEVICE_ID_CENATEK_IDE),
+	  .driver_data = ATA_GEN_FORCE_DMA },
 	/*
 	 * For some reason, MCP89 on MacBook 7,1 doesn't work with
 	 * ahci, use ata_generic instead.
 	 */
 	{ PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP89_SATA,
-	  PCI_VENDOR_ID_APPLE, 0xcb89, },
+	  PCI_VENDOR_ID_APPLE, 0xcb89,
+	  .driver_data = ATA_GEN_FORCE_DMA },
 	{ PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO), },
 	{ PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO_1), },
 	{ PCI_DEVICE(PCI_VENDOR_ID_TOSHIBA,PCI_DEVICE_ID_TOSHIBA_PICCOLO_2),  },
 	/* Must come last. If you add entries adjust this table appropriately */
-	{ PCI_ANY_ID,		PCI_ANY_ID,			   PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE << 8, 0xFF00UL, 1},
+	{ PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_IDE << 8, 0xFF00UL),
+	  .driver_data = ATA_GEN_CLASS_MATCH },
 	{ 0, },
 };
 
commit 728e0eaf99631d197e5158e21b4a8c4335a39231
Author: Tejun Heo 
Date:   Fri Jul 2 14:41:24 2010 +0200

ata_generic: drop hard coded DMA force logic for CENATEK

Commit 1529c69adc (ata_generic: implement ATA_GEN_* flags and force
enable DMA on MBP 7,1) implemented ATA_GEN_FORCE_DMA for forcing DMA
mode and applied it to CENATEK but forgot to remove the original hard

Bug#387397: screen should support digraphs for RFC1345 two-character mnemonics

2010-10-18 Thread Axel Beckert
Hi Ben,

Ben Finney wrote:
> On 19-Oct-2010, Axel Beckert wrote:
> > This is probably cause by the code at the end of the patch causes
> > that the order of digraphs are no more interchangeable.
> 
> That's necessary, since RFC1345 defines many mnemonics that are only
> distinguished from others by the sequence of characters.
> 
> > Without this hunk, at least the ":a" digraph is working again.
> 
> Without order dependency, there's no way for the input processor to
> distinguish the following pairs:
> 
> {'*', 'X', 0x00d7},   /* MULTIPLICATION SIGN */
> {'X', '*', 0x03a7},   /* GREEK CAPITAL LETTER CHI */
> 
> {'.', ':', 0x2234},   /* THEREFORE */
> {':', '.', 0x2235},   /* BECAUSE */
> 
> and many more.

I know that the change was made because of such digraphs where order
is important, but as I read the code, the change didn't seem
necessary.

Now with your examples I can reproduce that it doesn't work, although
I still don'tunderstand why.

Basically I'd expect that the logic is the following:

If the typed digraph combination is in the table in the typed order,
it of course should use that table entry. If there is no table entry,
it should reverse the order and look it up in the table again. That
should make both cases (order is important like in the examples above,
and both orders should be working if there's only one table entry)
working as expected.

> Someone is going to need to decide which is more important: to allow
> the full range of two-character RFC1345 mnemonics in Screen, or to
> allow the lax character ordering currently in Screen. They are not
> compatible.

I still believe we can get both cases where they don't interfere. Of
course if there are different table entries for each order, they
should be honoured. But if there's only one entry for a given
combination, both orders should work.

> My preference, obviously, is to have the two-character RFC1345
> mnemonics as the authoritative list of digraphs, overruling the
> existing lax ordering. This keeps it consistent with other systems
> that use the full set of two-character RFC1345 mnemonics, such as
> input modes in Emacs, IBus, and others.

Yeah, exactly. Guess from where I'm used to that :a works the same way
as a: does. :-)

Regards, Axel
-- 
 ,''`.  |  Axel Beckert , http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5



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



Bug#387397: screen should support digraphs for RFC1345 two-character mnemonics

2010-10-18 Thread Ben Finney
On 19-Oct-2010, Axel Beckert wrote:
> This is probably cause by the code at the end of the patch causes
> that the order of digraphs are no more interchangeable.

That's necessary, since RFC1345 defines many mnemonics that are only
distinguished from others by the sequence of characters.

> Without this hunk, at least the ":a" digraph is working again.

Without order dependency, there's no way for the input processor to
distinguish the following pairs:

{'*', 'X', 0x00d7},   /* MULTIPLICATION SIGN */
{'X', '*', 0x03a7},   /* GREEK CAPITAL LETTER CHI */

{'.', ':', 0x2234},   /* THEREFORE */
{':', '.', 0x2235},   /* BECAUSE */

and many more.

> So I think enlarging the amount of available digraphs is in general
> a very good idea, but the patch must be modified to _not_ remove any
> previously working digraph. It may IMHO change the result of an
> entered digraph if the currently resulting glyph can be entered with
> another digraph.

Someone is going to need to decide which is more important: to allow
the full range of two-character RFC1345 mnemonics in Screen, or to
allow the lax character ordering currently in Screen. They are not
compatible.

My preference, obviously, is to have the two-character RFC1345
mnemonics as the authoritative list of digraphs, overruling the
existing lax ordering. This keeps it consistent with other systems
that use the full set of two-character RFC1345 mnemonics, such as
input modes in Emacs, IBus, and others.

-- 
 \  “I bought a self learning record to learn Spanish. I turned it |
  `\on and went to sleep; the record got stuck. The next day I |
_o__)   could only stutter in Spanish.” —Steven Wright |
Ben Finney 


signature.asc
Description: Digital signature


Bug#600670: libhpmud0 installs /usr/lib/libhpmud.so.0 /usr/lib/libhpmud.so.0.0.6 but sane needs /usr/lib/libhpmud.so that is in libhpmud-dev, not needed to scan

2010-10-18 Thread Gianluigi Tiesi
Package: hplip
Version: 3.10.6-1
Severity: serious

I'm using saned with an hpaio based scanner, saned needs libhpmud dyn lib
but it searches for .so

Oct 19 01:13:27 wrap saned[718]: scan/sane/marvell.c 66: unable to load 
restricted library: libhpmud.so: cannot open shared object file: No such file 
or direc

while the package installs .so.0 and .so.0.0.6, libhpmud-dev is not needed to 
scan
I known .so are provided by -dev packages, but libhpmud-dev is not actually 
used at all

please forward the bug to sane maintaineris if needed.

Regards


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

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

Versions of packages hplip depends on:
ii  adduser 3.112+nmu1   add and remove users and groups
ii  coreutils   8.5-1GNU core utilities
pn  cups   (no description available)
pn  cups-client(no description available)
pn  hplip-cups (no description available)
pn  hplip-data (no description available)
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libcups21.4.4-6  Common UNIX Printing System(tm) - 
ii  libdbus-1-3 1.2.24-3 simple interprocess messaging syst
pn  libhpmud0  (no description available)
pn  libsane(no description available)
pn  libsane-hpaio  (no description available)
ii  libssl0.9.8 0.9.8o-2 SSL shared libraries
ii  lsb-base3.2-26   Linux Standard Base 3.2 init scrip
pn  policykit-1(no description available)
ii  python  2.6.6-3+squeeze1 interactive high-level object-orie
pn  python-dbus(no description available)
pn  python-imaging (no description available)
ii  python-pexpect  2.3-1Python module for automating inter
ii  python-support  1.0.10   automated rebuilding support for P

Versions of packages hplip recommends:
pn  avahi-daemon   (no description available)
pn  sane-utils (no description available)

Versions of packages hplip suggests:
pn  hplip-doc  (no description available)
pn  hplip-gui  (no description available)
pn  kdeprint | gtklp | xpp (no description available)
pn  python-notify  (no description available)



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



Bug#598619: x11vnc: diff for NMU version 0.9.10-1.1

2010-10-18 Thread diocles
tags 598619 + patch
tags 598619 + pending
thanks

Dear maintainer,

Here's my second attempt.  This certainly has been an educational
experience. :)

I have uploaded it to DELAYED/2 again.

Tim

diff -Nru x11vnc-0.9.10/debian/changelog x11vnc-0.9.10/debian/changelog
--- x11vnc-0.9.10/debian/changelog  2010-06-14 11:28:54.0 +0100
+++ x11vnc-0.9.10/debian/changelog  2010-10-19 00:02:12.0 +0100
@@ -1,3 +1,12 @@
+x11vnc (0.9.10-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: B-D-I on openjdk-6-jdk rather than B-D on default-jdk.
+  * debian/rules: Only rebuild jars in binary and binary-indep targets.
+(Closes: #598619)
+
+ -- Tim Retout   Mon, 18 Oct 2010 23:53:56 +0100
+
 x11vnc (0.9.10-1) unstable; urgency=low
 
   * New upstream release:
diff -Nru x11vnc-0.9.10/debian/control x11vnc-0.9.10/debian/control
--- x11vnc-0.9.10/debian/control2010-06-14 10:36:06.0 +0100
+++ x11vnc-0.9.10/debian/control2010-10-19 00:02:17.0 +0100
@@ -2,10 +2,11 @@
 Section: x11
 Priority: optional
 Maintainer: Fathi Boudra 
-Build-Depends: debhelper (>= 7.4.15), chrpath, automake, libtool, default-jdk,
+Build-Depends: debhelper (>= 7.4.15), chrpath, automake, libtool,
  libavahi-client-dev, libssl-dev, libvncserver-dev (>= 0.9.7),
  libxdamage-dev, libxext-dev, libxfixes-dev, libxinerama-dev, libxrandr-dev,
  libxss-dev, libxtst-dev
+Build-Depends-Indep: openjdk-6-jdk
 Standards-Version: 3.8.4
 Homepage: http://www.karlrunge.com/x11vnc/
 
diff -Nru x11vnc-0.9.10/debian/rules x11vnc-0.9.10/debian/rules
--- x11vnc-0.9.10/debian/rules  2010-06-14 11:21:04.0 +0100
+++ x11vnc-0.9.10/debian/rules  2010-10-19 00:02:07.0 +0100
@@ -3,19 +3,23 @@
 %:
dh $@ --parallel --list-missing
 
+binary binary-indep:
+   dh $@ --parallel --list-missing --until dh_auto_install
+   $(MAKE) -C classes/ssl/src update_jars
+   $(MAKE) -C classes/ssl/src clean
+   dh_auto_install -- -C classes
+   dh $@ --parallel --list-missing --remaining
+
 override_dh_auto_configure:
aclocal
autoheader
automake --add-missing --copy
autoconf
-ifeq ($(DEB_HOST_ARCH_OS),linux)
-  ifneq ($(DEB_HOST_ARCH),hppa)
-   $(MAKE) -C classes/ssl/src update_jars
-   $(MAKE) -C classes/ssl/src clean
-  endif
-endif
dh_auto_configure -- --with-system-libvncserver
 
+override_dh_auto_build:
+   dh_auto_build -- -C x11vnc
+
 override_dh_auto_clean:
dh_auto_clean
rm -rf autom4te.cache
@@ -23,14 +27,10 @@
depcomp install-sh missing \
rfbconfig.h.in rfb/rfbconfig.h rfb/rfbint.h
find . -type f -name Makefile.in -delete
-ifeq ($(DEB_HOST_ARCH_OS),linux)
-  ifneq ($(DEB_HOST_ARCH),hppa)
find . -type f -name '*.jar' -delete
-  endif
-endif
 
 override_dh_auto_install:
-   dh_auto_install
+   dh_auto_install -- -C x11vnc
find debian -type f -name 'x11vnc' | xargs chrpath -d
 
 .PHONY: override_dh_auto_test



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



Bug#600666: xserver-xorg-video-all: wish there was a xserver-xorg-video-recent package

2010-10-18 Thread Cyril Brulebois
Hi.

Russell Coker  (19/10/2010):
> I would like to have a package with a name such as
> xserver-xorg-video-recent which would drag in all the drivers for
> PCIe cards and other video hardware that has been released
> relatively recently.

(I'd be happy to see “relatively recently” defined. Based on recent
threads, that could range from “3 months ago” to “less than 10 years
ago”.)

> There is no realistic possibility that I will be installing a Tseng,
> S3, or Trident video card in one of my 64bit systems.  But it is
> quite likely that I will use a different modern video card at some
> time.

Users are probably either:
 - “end”-users, happy with -all.
 - advanced users, happy to install the appropriate driver.
 - advanced users, unhappy to install the appropriate driver, back to
   square 1.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#600669: unblock: pidgin-sipe/1.9.0-1.1

2010-10-18 Thread Tim Retout
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package pidgin-sipe

 pidgin-sipe (1.9.0-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * src/core/sipe.c: Apply patch from Ubuntu to fix FTBFS.
 (Closes: #582998)

unblock pidgin-sipe/1.9.0-1.1

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.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#600668: unblock: nut/2.4.3-1.1

2010-10-18 Thread Tim Retout
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: unblock

Please unblock package nut

 nut (2.4.3-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * drivers/libhid.c: Apply r2407 from upstream to fix bug with some
 low speed UPS devices. (Closes: #583371)

unblock nut/2.4.3-1.1

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.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#600660: linux-2.6: Please revert patch for USB54Gs wireless device

2010-10-18 Thread Luís Picciochi Oliveira
On Mon, Oct 18, 2010 at 11:45 PM, Ben Hutchings  wrote:

> (...)
> No, it is needed for some other devices (see #576929).  We then found
> that it breaks WUSB54GS.
>

You're right. Tracking so many patches for this and that ends up getting a
little messy.


(...) I think what
> I'll have to do is add a 'quirk' for the specific devices that require
> that change.
>

Just ask if you need me to do any testing with this card.



Best regards,
Pitxyoki


Bug#600505: AttributeError: UnitDisplayDatabasePlugin instance has no attribute 'db'

2010-10-18 Thread Christian Marillat
Stefano Rivera  writes:

> Hi Christian (2010.10.18_13:10:35_+0200)
>> This bug was against gourmet 0.15.2 now we have 0.15.6 and this bug has
>> been fixed.
>> 
>> Search for 'Ignoring sqlalchemy problem' in the source code.
>
> I see that, but that's not the patch that I attached. Is it a fix for
> the same bug, because from a quick glance, it doesn't appear to be?

As I'm saying yes.

Christian



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



Bug#600667: eglibc: cve-2010-3847 dynamic linker expands $ORIGIN in setuid library search path

2010-10-18 Thread Michael Gilbert
package: eglibc
version: 2.11.2-6
severity: grave
tag: patch

an issue has been disclosed in eglibc.  see:
http://seclists.org/fulldisclosure/2010/Oct/257

patch available:
http://sourceware.org/ml/libc-hacker/2010-10/msg7.html

best wishes,
mike



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



Bug#600666: xserver-xorg-video-all: wish there was a xserver-xorg-video-recent package

2010-10-18 Thread Russell Coker
Package: xserver-xorg-video-all
Severity: wishlist

It seems to me that the common cases in driver support where a change of driver
is needed are changes between different relatively new systems and a change
from an old system to a new system.

I would like to have a package with a name such as xserver-xorg-video-recent
which would drag in all the drivers for PCIe cards and other video hardware
that has been released relatively recently.

There is no realistic possibility that I will be installing a Tseng, S3,
or Trident video card in one of my 64bit systems.  But it is quite likely that
I will use a different modern video card at some time.

I am not suggesting removing xserver-xorg-video-all, merely adding a new
package for the convenience of users with modern hardware.



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



Bug#323710: I am requesting for your help reply for more details

2010-10-18 Thread omar hasan


-- 
i am requesting for your help



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



Bug#595265: linux-image-2.6.32-5-686: Nerwork card fails to come up again after suspend

2010-10-18 Thread Eric Dumazet
Le lundi 18 octobre 2010 à 23:45 +0200, Francois Romieu a écrit :
> Ben Hutchings  :
> [...]
> > Arnout Boelens reported that his RTL8111/8168B fails to link-up after
> > suspend and resume, both under Debian's kernel based on 2.6.32 and under
> > 2.6.36-rc6.  Full details are at , though
> > the log isn't very informative:
> > 
> > [31837.396594] PM: Finishing wakeup.
> > [31837.396597] Restarting tasks ... done.
> > [31840.267267] r8169: eth0: link down
> > 
> > Can you suggest how to investigate this further?
> 
> Something like the patch made by Stanislaw at :
> https://bugzilla.redhat.com/show_bug.cgi?id=502974
> 

Seems to be down at this moment, patch is also here (and included in
2.6.36-rc8 ) :

http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=aeb19f6052b5e5c8a24aa444fbff73b84341beac






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



Bug#600665: ikiwiki: Should probably ignore trailing slash in the url setting

2010-10-18 Thread Cyril Brulebois
Package: ikiwiki
Version: 3.20100926
Severity: normal

(Applies to 3.20100504~bpo50+1 as well so probably to 3.20100815
currently in squeeze; I didn't check though, but feel free to mark it
“found” there.)

Hi,

I used to specify that in ikiwiki.setup:
|   url => "http://blog.ikibiki.org/";,

but it turned out that slashes are doubled in the RSS pages, which isn't
exactly nice. [It's trivial to get rid of that trailing slash, RSS pages
get alright but then that generates (temporary) duplicates in feed
readers.]

I guess one could think about something like:
 - Forgetting about the trailing slash entirely if present in the 'url'
   setting.
 - Or squashing '//' into '/' while generating links.

Mraw,
KiBi.

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

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

Versions of packages ikiwiki depends on:
ii  libhtml-parser-perl   3.68-1 collection of modules that parse H
ii  libhtml-scrubber-perl 0.08-4 Perl extension for scrubbing/sanit
ii  libhtml-template-perl 2.9-2  module for using HTML Templates wi
ii  libtext-markdown-perl 1.0.26-1   Markdown and MultiMarkdown markup 
ii  liburi-perl   1.55-1 module to manipulate and access UR
ii  perl  5.10.1-15  Larry Wall's Practical Extraction 
ii  python2.6.6-3interactive high-level object-orie
ii  python-support1.0.10 automated rebuilding support for P

Versions of packages ikiwiki recommends:
ii  bzr2.3.0~beta2-1 easy to use distributed version co
ii  gcc [c-compiler]   4:4.4.5-1 The GNU C compiler
ii  gcc-4.3 [c-compiler]   4.3.5-4   The GNU C compiler
ii  gcc-4.4 [c-compiler]   4.4.5-4   The GNU C compiler
ii  git [git-core] 1:1.7.1-1.1   fast, scalable, distributed revisi
ii  git-core   1:1.7.1-1.1   fast, scalable, distributed revisi
ii  libauthen-passphrase-perl  0.007-1   Perl module encapsulating hashed p
ii  libc6-dev [libc-dev]   2.11.2-6  Embedded GNU C Library: Developmen
ii  libcgi-formbuilder-perl3.05.01-8 Easily generate and process statef
ii  libcgi-session-perl4.41-1persistent session data in CGI app
ii  liblwpx-paranoidagent-perl 1.07-1a "paranoid" subclass of LWP::User
ii  libmail-sendmail-perl  0.79.16-1 Send email from a perl script
ii  libnet-openid-consumer-per 1.03-1library for consumers of OpenID id
ii  libterm-readline-gnu-perl  1.20-1Perl extension for the GNU ReadLin
ii  libtimedate-perl   1.2000-1  collection of modules to manipulat
ii  libxml-simple-perl 2.18-3Perl module for reading and writin
ii  subversion 1.6.12dfsg-2  Advanced version control system

Versions of packages ikiwiki suggests:
pn  dvipng (no description available)
ii  file   5.04-5Determines file type using "magic"
ii  gettext0.18.1.1-3GNU Internationalization utilities
ii  graphviz   2.26.3-5  rich set of graph drawing tools
ii  libcrypt-ssleay-perl   0.57-2Support for https protocol in LWP
pn  libfile-mimeinfo-perl  (no description available)
pn  libhighlight-perl  (no description available)
ii  libhtml-tree-perl  4.0-1 Perl module to represent and creat
ii  liblocale-gettext-perl 1.05-6Using libc functions for internati
ii  libmailtools-perl  2.06-1Manipulate email in perl programs
pn  libnet-amazon-s3-perl  (no description available)
pn  librpc-xml-perl(no description available)
pn  libsearch-xapian-perl  (no description available)
pn  libsort-naturally-perl (no description available)
pn  libsparkline-php   (no description available)
ii  libtext-csv-perl   1.19-1comma-separated values manipulator
pn  libtext-textile-perl   (no description available)
pn  libtext-typography-perl(no description available)
pn  libtext-wikicreole-perl(no description available)
pn  libtext-wikiformat-perl(no description available)
pn  libxml-feed-perl   (no description available)
pn  libyaml-perl   (no description available)
ii  perlmagick 8:6.6.0.4-2.2 Perl interface to the ImageMagick 
ii  po4a   0.40.1-1  tools for helping translation of d
pn  polygen(no description available)
pn  python-docutils(no description available)
pn  texlive(no des

Bug#600664: openjdk-6-jre-lib: unable to remove package (circular dependency on openjdk-6-jre-headless?)

2010-10-18 Thread Michael Gilbert
Package: openjdk-6-jre-lib
Version: 6b18-1.8.2-1
Severity: serious

openjdk-6-jre-lib is currently not removeable on sid.  this may be
because openjdk-6-jre-headless depends on openjdk-6-jre-lib
(>= ${source:Version} and openjdk-6-jre-lib depends on
openjdk-6-jre-headless (>= ${base:Version}).  i get the following
errors when trying to remove the packages:


$ sudo apt-get purge openjdk-6-jre-lib
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 openjdk-6-jre-headless : Depends: openjdk-6-jre-lib (>= 6b18-1.8.2-1) but it 
is not going to be installed
  Depends: ca-certificates-java but it is not going to 
be installed
  Recommends: icedtea-6-jre-cacao (= 6b18-1.8.2-1) but 
it is not going to be installed
E: Broken packages


$ sudo apt-get purge openjdk-6-jre-lib openjdk-6-jre-headless
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
 openjdk-6-jre-headless : Depends: openjdk-6-jre-lib (>= 6b18-1.8.2-1) but it 
is not going to be installed
  Recommends: icedtea-6-jre-cacao (= 6b18-1.8.2-1) but 
it is not going to be installed
E: Broken packages



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



Bug#595265: linux-image-2.6.32-5-686: Nerwork card fails to come up again after suspend

2010-10-18 Thread Ben Hutchings
On Mon, 2010-10-18 at 23:45 +0200, Francois Romieu wrote:
> Ben Hutchings  :
> [...]
> > Arnout Boelens reported that his RTL8111/8168B fails to link-up after
> > suspend and resume, both under Debian's kernel based on 2.6.32 and under
> > 2.6.36-rc6.  Full details are at , though
> > the log isn't very informative:
> > 
> > [31837.396594] PM: Finishing wakeup.
> > [31837.396597] Restarting tasks ... done.
> > [31840.267267] r8169: eth0: link down
> > 
> > Can you suggest how to investigate this further?
> 
> Something like the patch made by Stanislaw at :
> https://bugzilla.redhat.com/show_bug.cgi?id=502974

Thanks.

Arnout, please test the patch
, following the
instructions at
.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#600663: [INTL:sv] Swedish strings for evolution debconf

2010-10-18 Thread Martin Bagge

package: evolution
severity: wishlist
tags: patch l10n

Please consider to add this file to translation of debconf.

-- 
brother
http://sis.bthstuden.se



sv.po
Description: Binary data


Bug#588184: confirm bug on Sid/i386

2010-10-18 Thread Václav Ovsík
Hi,
this bug can be merged with #534314.

I can confirm behaviour described by martin f. krafft. The bug is
probably in the binary /usr/lib/openoffice/program/soffice.bin
witch is called when -no-oosplash option is used.

I have amd64 kernel, but binary architecture i386.

z...@bobek:~$ /usr/lib/openoffice/program/soffice.bin
terminate called after throwing an instance of 
'com::sun::star::uno::RuntimeException'

while

z...@bobek:~$ /usr/lib/openoffice/program/oosplash.bin 
z...@bobek:~$ 

executes normaly.

Regards
-- 
Zito



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



Bug#600660: linux-2.6: Please revert patch for USB54Gs wireless device

2010-10-18 Thread Ben Hutchings
On Mon, 2010-10-18 at 23:17 +0100, Luís Picciochi Oliveira wrote:
> Package: linux-2.6
> Version: 2.6.32-25
> Severity: normal
> 
> Please revert the Debian patch: rndis_host-Poll-status-channel-before-control-
> channel.patch
> 
> This was once necessary for the WUSB54GS wireless adapter to work on recent
> kernels (>2.6.32).

No, it is needed for some other devices (see #576929).  We then found
that it breaks WUSB54GS.

Thanks for reminding that this is still a problem, though.  I think what
I'll have to do is add a 'quirk' for the specific devices that require
that change.

> After the introduction of subsequent patches this one was
> removed from the mainline kernel as it was causing other problems. It is still
> present as a Debian patch for 2.6.32 -- after removing it, I see the issues
> from bug #520468 that are still present get solved.
> 
> You can see here the upstream reversion of this patch:
> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7b00ac51ffcda994ef0839001257be894cc6e5a8

Strangely enough, I am aware of that!

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Bug#600490: debian-installer: If you choose JP106 key layout, you'll be asked keyboard layout again

2010-10-18 Thread Samuel Thibault
reassign 600490 keyboard-configuration
tags 600490 + pending
thanks

Samuel Thibault, le Sun 17 Oct 2010 23:12:09 +0200, a écrit :
> Samuel Thibault, le Sun 17 Oct 2010 23:09:57 +0200, a écrit :
> > Sergey, could you detail a bit why you dropped the models?
> 
> Or put another way, what are they supposed to choose instead of jp106,
> abnt2 and kr106?

Looking more at this, the extra keys of these keyboards simply got
merged into the base model, thus making these models useless as the base
model now supports the corresponding layouts.

I've made keyboard-configuration not use these models any more, and
simply assume the base model provides the support, which is true since
xkb-data 1.6 (thus version dep bump).

Samuel



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



Bug#600229: debian-installer: improve support for English-speaking people in Finland

2010-10-18 Thread Timo Juhani Lindfors
Samuel Thibault  writes:
> I chose English, then other/Europe/Finland, then the Nigerian locale
> (why not), and then I got prompted for the keymap layout.

Ah yes, I didn't proceed after that. Sorry for the noise, this seems
to be a gnu/kfreebsd specific issue. Is there some tag for that? ;-)



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



Bug#535608: Replace git-daemon-run with standard LSB init.d script

2010-10-18 Thread Daniel Baumann
On 10/18/2010 10:49 PM, Sven Joachim wrote:
> I don't think it is necessary or desirable to depend on sysvinit.  The
> init script might just as well be run by upstart or systemd.

then it should be sysvinit | upstart | systemd, but it imho have a
depends because you can actually install upstart and remove sysvinit
(not sure about systemd).

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.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#600662: konqueror: passes literal ipv6 address to HTTP CONNECT proxy

2010-10-18 Thread Jan Braun
Package: konqueror
Version: 4:4.4.5-1
Severity: normal
Tags: ipv6

Hi,
When I try to browse https://www.sixxs.net/ in Konqueror, it issues the
following HTTP CONNECT call to my local http proxy[1]:

| CONNECT 2001:1AF8:1:F006:0:0:0:6:443 HTTP/1.1
| Proxy-Connection: keep-alive
| User-Agent: Mozilla/5.0
| Host: 2001:1AF8:1:F006:0:0:0:6

This fails with

| HTTP/1.1 504 Host 2001:1af8:1:f006:0:0:0:6 lookup failed: Host not found

and Konqueror falls back to IPv4. RFC 2817 says
| The Request-URI portion of the Request-Line is always
| an 'authority' as defined by URI Generic Syntax [RFC 2396]
which I read to mean "IPv6 literals have to be enlosed in square
brackets", and indeed, a telnet session shows polipo honoring the
following:

| CONNECT [2001:1AF8:1:F006:0:0:0:6]:443  HTTP/1.1

However, the IMHO proper solution, which is also what elinks, arora and
iceweasel do, is to pass the hostname on and let the proxy do the
name resolution:

| CONNECT www.sixxs.net:443  HTTP/1.1

This does not only give the proxy more leeway to do its job, it also
prevents DNS information leaks e.g. when using TOR, and it will likely
fix the broken Host: header automatically on the way.

I realize this may not be konqueror's own fault, but of one of its
libraries, please reassign accordingly if so.

regards,
Jan
[1]
Polipo. Konfigured in konqueror via the environment variables.
And yes, I've messed with konqueror's UA string.

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

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

Versions of packages konqueror depends on:
ii  install-info  4.13a.dfsg.1-5 Manage installed documentation in 
ii  kdebase-bin   4:4.4.5-1  core binaries for the KDE base app
ii  kdebase-data  4:4.4.5-1  shared data files for the KDE base
ii  kdebase-runtime   4:4.4.5-1  runtime components from the offici
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib
ii  libkde3support4   4:4.4.5-1  the KDE 3 Support Library for the 
ii  libkdecore5   4:4.4.5-1  the KDE Platform Core Library
ii  libkdesu5 4:4.4.5-1  the Console-mode Authentication Li
ii  libkdeui5 4:4.4.5-1  the KDE Platform User Interface Li
ii  libkhtml5 4:4.4.5-1  the KHTML Web Content Rendering En
ii  libkio5   4:4.4.5-1  the Network-enabled File Managemen
ii  libkonq5  4:4.4.5-1  core libraries for Konqueror
ii  libkonqsidebarplugin4a4:4.4.5-1  konqueror sidebar plugin library
ii  libkparts44:4.4.5-1  the Framework for the KDE Platform
ii  libkutils44:4.4.5-1  various utility classes for the KD
ii  libqt4-dbus   4:4.6.3-1+b1   Qt 4 D-Bus module
ii  libqt4-qt3support 4:4.6.3-1+b1   Qt 3 compatibility library for Qt 
ii  libqt4-xml4:4.6.3-1+b1   Qt 4 XML module
ii  libqtcore44:4.6.3-1+b1   Qt 4 core module
ii  libqtgui4 4:4.6.3-1+b1   Qt 4 GUI module
ii  libstdc++64.4.5-2The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-3  X11 client-side library

Versions of packages konqueror recommends:
pn  dolphin(no description available)
pn  konqueror-nsplugins(no description available)

Versions of packages konqueror suggests:
pn  konq-plugins   (no description available)

-- debconf-show failed

-- 
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments


signature.asc
Description: Digital signature


Bug#600229: debian-installer: improve support for English-speaking people in Finland

2010-10-18 Thread Samuel Thibault
Timo Juhani Lindfors, le Tue 19 Oct 2010 00:42:06 +0300, a écrit :
> Christian PERRIER  writes:
> > Ah, that was kFreeBSD, I didn't notice.
> >
> > I'm not sure that kFreeBSD has a udeb with alternate keyboard layouts,
> > which might explain why you have no prompt for keymap.
> 
> I see the same problem on amd64 too. You can reproduce this with
> 
> $ wget 
> http://d-i.debian.org/daily-images/amd64/20101014-00:17/netboot/mini.iso
> $ dd if=/dev/zero of=root.img bs=1M count=0 seek=4k
> $ qemu-system-x86_64 -hda root.img -cdrom mini.iso
> 
> and answering the questions just like I indicated in the previous mail.

I chose English, then other/Europe/Finland, then the Nigerian locale
(why not), and then I got prompted for the keymap layout.

Samuel



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



Bug#535608: Replace git-daemon-run with standard LSB init.d script

2010-10-18 Thread Daniel Baumann
On 10/18/2010 10:22 PM, Jonathan Nieder wrote:
> Thanks!  I assume you'd be willing to make sure it stays in good
> shape?

i can send patches in case there are updates needed, yes.

>> +++ b/debian/control
> [...]
>> +Conflicts: git-daemon-sysv
>> +Replaces: git-daemon-sysv
> 
> Probably a silly question, but is this Replaces: necessary?

g-d-run and g-d- sysv are truly conflicting since both are shipping
/etc/init.d/git-daemon, therefore, to my understanding, a
conflicts/replaces is needed on both.

>> + git-daemon, as provided by the git package, is a simple server for git
>> + repositories, ideally suited for read-only updates, i.e. pulling from git
>> + repositories through the network.  This package provides a sysvinit service
>> + for running git-daemon permanently.
> 
> I think you mean persistently. :)  (or "as a persistent process".)

this is a copy of the description of g-d-run, if you would like to
improve the package description, that should go in another commit, but
not in the one adding g-d-sysv.

>> +++ b/debian/git-daemon-sysv.postinst
>> @@ -0,0 +1,21 @@
> [...]
>> +# restart git-daemon service if it was running
>> +if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
>> +invoke-rc.d git-daemon start || exit $?
>> +else
>> +etc/init.d/git-daemon start || exit $?
> 
> Missing leading /?

that somehow got stripped out, don't know why.

>> +++ b/debian/git-daemon-sysv.postrm
>> @@ -0,0 +1,10 @@
>> +#!/bin/sh
>> +set -e
>> +
>> +test "$1" = 'purge' || exit 0
>> +
>> +update-rc.d git-daemon remove >/dev/null
>> +
>> +getent passwd gitlog >/dev/null || exit 0
>> +! deluser --version >/dev/null 2>&1 || exec deluser -f gitlog
>> +echo 'deluser program not available, not removing system user "gitlog".' >&2
> 
> 
> Maybe the gitlog user should be removed at deconfigure-time.

this is, apart from the update-rc.d call, a copy of g-d-run.postrm
script. if you would like to improve that script, that should go in
another commit, but not in the one adding g-d-sysv.

>> +++ b/debian/git-daemon/default
> [...]
>> +GIT_DAEMON_ENABLE=false
> 
> Yay. :)
> 
> Maybe a README.Debian to mention this for the perplexed would be
> worthwhile; not sure.

the init script actually lacked the check for GIT_DAEMON_ENABLED=true.
i've added that, will add a note to README.Debian, adjust (some of)
above things, and send an updated patch tomorrow morning.

>> +++ b/debian/git-daemon/sysv
> 
> I'm trusting you about the init script itself.

it's working well for me, and is, on purpose, as minimally as possible
different from the initscript template from dh-make, so i'm pretty sure
it's correct.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.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#600425: cdebconf: text frontend for selection isn't documented enough

2010-10-18 Thread Samuel Thibault
Miguel Figueiredo, le Mon 18 Oct 2010 22:48:48 +0100, a écrit :
> i tried to reproduce it, i booted with DEBIAN_FRONTEND=text but everytime i 
> get:
> 
> Prompt '?' for help, default=1 10>
> 
> tasks 1 and 10 selected by default. 

Well, I'd say that's merely by luck :)
For instance, if you boot in export mode you will get the "additional
locales" question, where the issue is the same (and the default is
empty).  Of course that's just an instance, there are probably a lot
others.

Just a side note: this is actually a bug concerning accessibility, for
the cases where a linear text is way simpler for the screen reader to
follow, and thus using the dialog frontend is not really an option.

Samuel



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



Bug#600661: ntp: Uses /var/lib/ntp/ntp.conf.dhcp regardless!?

2010-10-18 Thread Tim Connors
Package: ntp
Version: 1:4.2.6.p2+dfsg-1
Severity: normal

Because dhcp was once installed on this machine,
/var/lib/ntp/ntp.conf.dhcp exists.

Ntp uses this regardless, completely ignoring /etc/ntp.conf.

Is this in any way sane?

Who generated /var/lib/ntp/ntp.conf.dhcp?  Why wasn't it removed when
dhcp did not bind the interface?  Why would it completely ignore any
settings in /etc/ntp.conf when using dhcp?  Shouldn't it just override
or add to the servers instead of rewriting the entire configuration?




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

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

Versions of packages ntp depends on:
ii  adduser  3.112   add and remove users and groups
ii  dpkg 1.15.8.5Debian package management system
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libcap2  1:2.19-3support for getting/setting POSIX.
ii  libedit2 2.11-20080614-2 BSD editline and history libraries
ii  libopts251:5.10-1.1  automated option processing librar
ii  libssl0.9.8  0.9.8o-2SSL shared libraries
ii  lsb-base 3.2-23.1Linux Standard Base 3.2 init scrip
ii  netbase  4.42Basic TCP/IP networking system

Versions of packages ntp recommends:
ii  perl  5.10.1-14  Larry Wall's Practical Extraction 

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

-- Configuration Files:
/etc/ntp.conf changed:
driftfile /var/lib/ntp/ntp.drift
statsdir /var/log/ntpstats/
statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable
server cbnntp iburst dynamic
server 192.231.167.19 iburst dynamic
restrict -4 default kod notrap nomodify nopeer noquery
restrict -6 default kod notrap nomodify nopeer noquery
restrict 127.0.0.1
restrict ::1


-- no debconf information



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



Bug#600660: linux-2.6: Please revert patch for USB54Gs wireless device

2010-10-18 Thread Luís Picciochi Oliveira
Package: linux-2.6
Version: 2.6.32-25
Severity: normal

Please revert the Debian patch: rndis_host-Poll-status-channel-before-control-
channel.patch

This was once necessary for the WUSB54GS wireless adapter to work on recent
kernels (>2.6.32). After the introduction of subsequent patches this one was
removed from the mainline kernel as it was causing other problems. It is still
present as a Debian patch for 2.6.32 -- after removing it, I see the issues
from bug #520468 that are still present get solved.

You can see here the upstream reversion of this patch:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7b00ac51ffcda994ef0839001257be894cc6e5a8

Best regards,
Luís Picciochi



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

Kernel: Linux 2.6.36-rc7 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.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#600659: python3.2: FTBFS: test_asynchat not terminating within 150 mins

2010-10-18 Thread Philipp Kern
ild/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/test/test_asynchat.py",
>  line 37, in run
> conn, client = self.sock.accept()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/socket.py",
>  line 132, in accept
> fd, addr = self._accept()
> socket.error: [Errno 38] Function not implemented
> 
> Exception in thread Thread-17:
> Traceback (most recent call last):
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/threading.py",
>  line 525, in _bootstrap_inner
> self.run()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/test/test_asynchat.py",
>  line 37, in run
> conn, client = self.sock.accept()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/socket.py",
>  line 132, in accept
> fd, addr = self._accept()
> socket.error: [Errno 38] Function not implemented
> 
> Exception in thread Thread-18:
> Traceback (most recent call last):
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/threading.py",
>  line 525, in _bootstrap_inner
> self.run()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/test/test_asynchat.py",
>  line 37, in run
> conn, client = self.sock.accept()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/socket.py",
>  line 132, in accept
> fd, addr = self._accept()
> socket.error: [Errno 38] Function not implemented
> 
> Exception in thread Thread-19:
> Traceback (most recent call last):
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/threading.py",
>  line 525, in _bootstrap_inner
> self.run()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/test/test_asynchat.py",
>  line 37, in run
> conn, client = self.sock.accept()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/socket.py",
>  line 132, in accept
> fd, addr = self._accept()
> socket.error: [Errno 38] Function not implemented
> 
> Exception in thread Thread-20:
> Traceback (most recent call last):
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/threading.py",
>  line 525, in _bootstrap_inner
> self.run()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/test/test_asynchat.py",
>  line 37, in run
> conn, client = self.sock.accept()
>   File 
> "/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ/python3.2-3.2~a3/Lib/socket.py",
>  line 132, in accept
> fd, addr = self._accept()
> socket.error: [Errno 38] Function not implemented
> 
> Warning -- asyncore.socket_map was modified by test_asynchat
> E: Caught signal 'Terminated': terminating immediately
> make: *** [stamps/stamp-check] Terminated
> test test_asynchat failed -- multiple errors occurred; run in verbose mode 
> for detailsBuild killed with signal TERM after 150 minutes of inactivity
> 
> Build finished at 20101018-2152
> FAILED [dpkg-buildpackage died]
> 
> Purging 
> /var/lib/schroot/mount/sid-experimental-i386-sbuild-64f15807-a284-4791-9b07-155f59e8cdc0/build/buildd-python3.2_3.2~a3-2-i386-2kpriJ
> Not removing build depends: cloned chroot in use
> 
> Finished at 20101018-2152
> Build needed 02:42:54, 219416k disc space


signature.asc
Description: Digital signature


Bug#598841: mercurial fails to verify ssl validity in https connections

2010-10-18 Thread Javi Merino
On 18/10/10 22:32, Moritz Muehlenhoff wrote:
> On Sat, Oct 02, 2010 at 12:26:22PM -0300, Wagner Bruna wrote:
>> Package: mercurial
>> Version: 1.6.2-2
>> Severity: important
>> Tags: security, fixed-upstream, patch
>>
>>
>> Forwarding this upstream security issue:
>>
>> http://mercurial.selenic.com/bts/issue2407
>>
>> A fix is available at:
>>
>> http://selenic.com/repo/hg-stable/rev/f2937d6492c5
>>
>> and included in version 1.6.4.
> 
> Dear Mercurial maintainers,
> this is still unfixed in Squeeze, so this will likely need a
> targeted fix for testing or the 1.6.4 version needs a freeze
> exception. Please get in touch with the release team.

We've contacted the release team and asked them for a freeze exception
on 1.6.4, but haven't got a response yet.

Cheers,
Javi (vicho)



signature.asc
Description: OpenPGP digital signature


Bug#600658: postgresql-8.3-pljava-gcj: copyright file -- source code URL does not exist

2010-10-18 Thread Jari Aalto
Package: postgresql-8.3-pljava-gcj
Version: 1.4.0-1.1
Severity: minor


debian/copyright reads:

  The source code was downloaded from 
.

That URL no longer exists. Please update upstream URL.

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.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#600657: kumofs: FTBFS: configure: error: Can't find zlib library

2010-10-18 Thread Philipp Kern
Source: kumofs
Version: 0.4.12-1
Severity: serious

> 
> sbuild (Debian sbuild) 0.60.0 (23 Feb 2010) on murphy.debian.org
> 
> ╔══╗
> ║ kumofs 0.4.12-1 (i386) 18 Oct 2010 
> 19:06 ║
> ╚══╝
[...]
> checking if g++ supports -c -o file.o... yes
> checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
> checking dynamic linker characteristics... GNU/Linux ld.so
> (cached) (cached) checking how to hardcode library paths into programs... 
> immediate
> appending configuration tag "F77" to libtool
> checking dependency style of gcc... none
> checking whether gcc and cc understand -c and -o together... yes
> checking for __sync_* atomic operations... yes
> checking for inner class friend... yes
> checking if tcbdb is enabled... 
> checking if tcadb is enabled... 
> checking for main in -lstdc++... yes
> checking for pthread_create in -lpthread... yes
> checking for deflate in -lz... no
> configure: error: Can't find zlib library
> make: *** [debian/stamp-autotools] Error 1
> dpkg-buildpackage: error: debian/rules build gave error exit status 2
> 
> Build finished at 20101018-1907
> FAILED [dpkg-buildpackage died]


signature.asc
Description: Digital signature


Bug#600656: linux-image-2.6.32-5-amd64: Crash after nullpointer dereference during gparted reading a disk

2010-10-18 Thread Andreas Feldner
Package: linux-2.6
Version: 2.6.32-23
Severity: important

My system crashes reproducibly during the gparted operation "move /dev/sda1 to 
the right" in the read-only test stage.
It is very hard to track down as the system freezes (ping is working, no other 
networking stuff like sshd, screen
is black, keyboard doesn't react, not even the shift indicator LEDs). After 
reboot, no indication of the problem
can be found in the log files anymore.

Running tail -f /var/log/kern.log on a different machine, and running gparted 
with remote X11 did the trick to
get to some information. The following lines were the last words to hear from 
the machine:

Oct 18 21:44:10 xxx kernel: [88819.864398] BUG: unable to handle kernel 
NULL pointer dereference at (null)
Oct 18 21:44:10 xxx kernel: [88819.864413] IP: [] 
drop_buffers+0x23/0x9d
Oct 18 21:44:10 xxx kernel: [88819.864429] PGD 7d9c4067 PUD 1f542067 PMD 0 
Oct 18 21:44:10 xxx kernel: [88819.864439] Oops:  [#1] SMP 

gparted was attempting to read a 511.94 GiB sized partition on a SATA disk with 
a block size of 16.00 MiB. The
crash orccured at 365.60 GiB (in case that matters). The file system on the 
partition in question is reported
OK by fsck. A test with dd if=/dev/sda1 of=/dev/null bs=4096 worked out OK 
(didn't try with 16M block size). 
SMART status if the hard disk is passed.

I suspect some rare freezes of the machine to come from the same origin, though 
I didn't find another way
to actually reproduce the problem than running the described gparted operation.

Unfortunately, I have no idea if this bug report contains any useful 
information, nor how to provide any
additional.

Best regards,
Andreas.


-- Package-specific info:
** Version:
Linux version 2.6.32-5-amd64 (Debian 2.6.32-23) (da...@debian.org) (gcc version 
4.3.5 (Debian 4.3.5-3) ) #1 SMP Fri Sep 17 21:50:19 UTC 2010

** Command line:
BOOT_IMAGE=/boot/vmlinuz-2.6.32-5-amd64 
root=UUID=cefff7a6-c772-42c0-b4d6-8d610692ae65 ro console=tty0 quiet vga=795 
splash

** Tainted: P (1)
 * Proprietary module has been loaded.

** Kernel log:
[   11.951885]  (Note that use of the override may cause unknown side effects.)
[   11.951904] amd64_edac: probe of :00:18.2 failed with error -22
[   12.098101] Linux video capture interface: v2.00
[   12.130466] em28xx: New device TerraTec Electronic GmbH Cinergy Hybrid T USB 
XS (2882) @ 480 Mbps (0ccd:005e, interface 0, class 0)
[   12.130602] em28xx #0: chip ID is em2882/em2883
[   12.171879] ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 22
[   12.171886] Intel ICH :00:04.0: PCI INT A -> Link[APCJ] -> GSI 22 
(level, low) -> IRQ 22
[   12.171918] Intel ICH :00:04.0: setting latency timer to 64
[   12.305842] em28xx #0: i2c eeprom 00: 1a eb 67 95 cd 0c 5e 00 d0 12 5c 03 9e 
40 de 1c
[   12.305850] em28xx #0: i2c eeprom 10: 6a 34 27 57 46 07 01 00 00 00 00 00 00 
00 00 00
[   12.305857] em28xx #0: i2c eeprom 20: 46 00 01 00 f0 10 31 00 b8 00 14 00 5b 
1e 00 00
[   12.305864] em28xx #0: i2c eeprom 30: 00 00 20 40 20 6e 02 20 10 01 00 00 00 
00 00 00
[   12.305871] em28xx #0: i2c eeprom 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 
00 00 00
[   12.305877] em28xx #0: i2c eeprom 50: 00 00 00 00 00 00 00 00 00 00 00 00 00 
00 00 00
[   12.305884] em28xx #0: i2c eeprom 60: 00 00 00 00 00 00 00 00 00 00 34 03 54 
00 65 00
[   12.305891] em28xx #0: i2c eeprom 70: 72 00 72 00 61 00 54 00 65 00 63 00 20 
00 45 00
[   12.305898] em28xx #0: i2c eeprom 80: 6c 00 65 00 63 00 74 00 72 00 6f 00 6e 
00 69 00
[   12.305904] em28xx #0: i2c eeprom 90: 63 00 20 00 47 00 6d 00 62 00 48 00 00 
00 40 03
[   12.305911] em28xx #0: i2c eeprom a0: 43 00 69 00 6e 00 65 00 72 00 67 00 79 
00 20 00
[   12.305918] em28xx #0: i2c eeprom b0: 48 00 79 00 62 00 72 00 69 00 64 00 20 
00 54 00
[   12.305924] em28xx #0: i2c eeprom c0: 20 00 55 00 53 00 42 00 20 00 58 00 53 
00 20 00
[   12.305931] em28xx #0: i2c eeprom d0: 28 00 32 00 38 00 38 00 32 00 29 00 00 
00 1c 03
[   12.305938] em28xx #0: i2c eeprom e0: 30 00 37 00 30 00 34 00 30 00 32 00 30 
00 30 00
[   12.305944] em28xx #0: i2c eeprom f0: 33 00 31 00 37 00 32 00 00 00 00 00 00 
00 00 00
[   12.305952] em28xx #0: EEPROM ID= 0x9567eb1a, EEPROM hash = 0xe613babe
[   12.305954] em28xx #0: EEPROM info:
[   12.305956] em28xx #0:   AC97 audio (5 sample rates)
[   12.305957] em28xx #0:   500mA max power
[   12.305959] em28xx #0:   Table at 0x27, strings=0x409e, 0x1cde, 0x346a
[   12.306717] em28xx #0: Identified as Terratec Hybrid XS (em2882) (card=55)
[   12.306719] em28xx #0: 
[   12.306720] 
[   12.352445] em28xx #0: The support for this board weren't valid yet.
[   12.375354] em28xx #0: Please send a report of having this working
[   12.397902] em28xx #0: not to V4L mailing list (and/or to other addresses)
[   12.397903] 
[   12.451274] tvp5150 2-005c: chip found @ 0xb8 (em28xx #0)
[   12.456889] tuner 2-0061: chip found @ 0xc2 (em28xx #0)
[   12.478959] xc2028 2-0061: creating new instance
[   12.478963]

Bug#600654: backuppc: reports wrong pool size on main page and in the plots (filesystem % used is correct though)

2010-10-18 Thread Yaroslav Halchenko
more info:

one of the peculiarities of our setup is a symlink  from /var/lib/backuppc to
backuppc on another partition of a different filesystem type -- thought to
mention since it might shine the light ;)  previously everything was working 
just fine

backu...@head2:/etc/backuppc$ ls -l /var/lib/backuppc
lrwxrwxrwx 1 root root 16 Oct 28  2009 /var/lib/backuppc -> /backup/backuppc

backu...@head2:/etc/backuppc$ ls -l /var/lib/backuppc/
total 4
drwxr-x--- 18 backuppc backuppc  134 Oct 17 20:00 cpool
drwxr-x---  2 backuppc backuppc 4096 Oct 18 17:41 log
drwxr-x---  5 backuppc backuppc   51 Oct 14 10:47 pc
drwxr-x---  2 backuppc backuppc6 Oct 27  2009 pool
drwxr-x---  2 backuppc backuppc6 Oct 17 21:23 trash

backu...@head2:/etc/backuppc$ df /var /backup
Filesystem   1K-blocks  Used Available Use% Mounted on
/dev/md6   9775120   2669764   7105356  28% /var
/dev/sda19765388252 4886695744 4878692508  51% /backup

backu...@head2:/etc/backuppc$ mount | grep -e /var -e /backup
/dev/md6 on /var type reiserfs (rw,acl,user_xattr)
/dev/sda1 on /backup type xfs (rw)


On Mon, 18 Oct 2010, Yaroslav Halchenko wrote:

> This is a backport build of 3.2.0 against squeeze which we are now running on
> our little cluster.
-- 
  .-.
=--   /v\  =
Keep in touch// \\ (yoh@|www.)onerussian.com
Yaroslav Halchenko  /(   )\   ICQ#: 60653192
   Linux User^^-^^[17]





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



Bug#600655: scummvm: FTBFS on kfreebsd-*: undefined reference to alsa stuff

2010-10-18 Thread Cyril Brulebois
Source: scummvm
Version: 1.2.0-2
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*, presumably because the
libsalsa emulation layer is no longer sufficient:
| AR   base/libbase.a
| RANLIB   base/libbase.a
| LINK scummvm
| backends/libbackends.a(alsa.o): In function `MidiDriver_ALSA::open()':
| 
/build/buildd-scummvm_1.2.0-2-kfreebsd-amd64-GygMPc/scummvm-1.2.0/backends/midi/alsa.cpp:143:
 undefined reference to `snd_seq_port_info_get_write_use'
| collect2: ld returned 1 exit status

Full build logs:
  https://buildd.debian.org/status/package.php?p=scummvm&suite=unstable

If you need assistance, please contact .

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#600654: backuppc: reports wrong pool size on main page and in the plots (filesystem % used is correct though)

2010-10-18 Thread Yaroslav Halchenko
Package: backuppc
Version: 3.2.0-1~nd60+1
Severity: normal


This is a backport build of 3.2.0 against squeeze which we are now running on
our little cluster.

Recently I have upgraded the cluster to squeeze and decided to upgrade backuppc
to 3.2.0 from 3.1.0-9 since I saw the plethora of fixed bugs in the
upstream changelog.  Although initially everything looked fine, today I have
spotted that plots for Pool Size go down to 0!!! and got a bit freaked out:

front page saied

Other info:

* 0 pending backup requests from last scheduled wakeup,
* 0 pending user backup requests,
* 0 pending command requests,
* Pool is 0.00GB comprising 0 files and 1 directories (as of 10/18 01:00),
* Pool hashing gives 0 repeated files with longest chain 0,
* Nightly cleanup removed 0 files of size 0.00GB (around 10/18 01:00),
* Pool file system was recently at 51% (10/18 17:23), today's max is 51% 
(10/18 01:00) and yesterday's max was 51%. 

latest backups (incrementals) seems proceeded fine, size of the cpool is
reasonable (>2TB), so I guess backuppc is looking in the wrong place for the
*pool to report or may be looks only at pool (empty) and ignores cpool?

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

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

Versions of packages backuppc depends on:
ii  adduser   3.112  add and remove users and groups
ii  apache2   2.2.16-2   Apache HTTP Server metapackage
ii  apache2-mpm-worker [httpd 2.2.16-2   Apache HTTP Server - high speed th
ii  bzip2 1.0.5-6high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.35 Debian configuration management sy
ii  dpkg  1.15.8.5   Debian package management system
ii  exim4 4.72-1 metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail- 4.72-1 lightweight Exim MTA (v4) daemon
ii  iputils-ping  3:20100418-2   Tools to test the reachability of 
ii  libarchive-zip-perl   1.30-3 Perl module for manipulation of ZI
ii  libcompress-zlib-perl 2.024-1Transitional dummy package for Com
ii  libio-compress-perl [libc 2.024-1bundle of IO::Compress modules
ii  libtime-modules-perl  2006.0814-2Various Perl modules for time/date
ii  perl [libdigest-md5-perl] 5.10.1-14  Larry Wall's Practical Extraction 
ii  perl-suid 5.10.1-14  runs setuid Perl scripts
ii  samba-common-bin  2:3.5.5~dfsg-1 common files used by both the Samb
ii  smbclient 2:3.5.5~dfsg-1 command-line SMB/CIFS clients for 
ii  tar   1.23-2.1   GNU version of the tar archiving u
ii  ucf   3.0025+nmu1Update Configuration File: preserv

Versions of packages backuppc recommends:
ii  libfile-rsyncp-perl  0.68-1.1+b1 A perl based implementation of an 
ii  libio-dirent-perl0.04-2+b1   Perl module for accessing dirent s
ii  openssh-client [ssh-client]  1:5.5p1-4   secure shell (SSH) client, for sec
ii  rrdtool  1.4.3-1 time-series data storage and displ
ii  rsync3.0.7-2 fast remote file copy program (lik

Versions of packages backuppc suggests:
ii  epiphany-browser [www-browser 2.30.6-1   Intuitive GNOME web browser
ii  iceweasel [www-browser]   3.5.13-1   Web browser based on Firefox
ii  par2  0.4-11 Parity Archive Volume Set, for che
ii  w3m [www-browser] 0.5.2-9WWW browsable pager with excellent

-- Configuration Files:
/etc/backuppc/apache.conf changed:
Alias /backuppc /usr/share/backuppc/cgi-bin/

AllowOverride None  

# Uncomment the line below to ensure that nobody can sniff importanti
# info from network traffic during editing of the BackupPC config or
# when browsing/restoring backups.
# Requires that you have your webserver set up for SSL (https) access.
SSLRequireSSL

Options ExecCGI FollowSymlinks
AddHandler cgi-script .cgi
DirectoryIndex index.cgi
AuthGroupFile /etc/backuppc/htgroup
AuthUserFile /etc/backuppc/htpasswd
AuthType basic
AuthName "BackupPC admin"
require valid-user


/etc/backuppc/config.pl changed:
$ENV{'PATH'} = '/bin:/usr/bin';
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
$Conf{ServerHost} = `hostname`;
chomp($Conf{ServerHost});
$Conf{ServerPort} = -1;
$Conf{ServerMesgSecret} = '';
$Conf{MyPath} = '/bin';
$Conf{UmaskMode} = 027;
$Conf{WakeupSchedule} = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 
17, 18, 19, 20, 21, 22, 23];
$Conf

Bug#600425: cdebconf: text frontend for selection isn't documented enough

2010-10-18 Thread Miguel Figueiredo
Hi,

i tried to reproduce it, i booted with DEBIAN_FRONTEND=text but everytime i 
get:

Prompt '?' for help, default=1 10>

tasks 1 and 10 selected by default. 
After entering 8 9 10 at the prompt d-i installed the 3 tasks.

As the default suggests tasks are entered separated by spaces.
Mentioning that in the help would, indeed, be an improvement. 

Wishlist?

-- 
Melhores cumprimentos/Best regards,

Miguel Figueiredo
http://www.DebianPT.org
A Domingo 17 Outubro 2010 02:59:10 Samuel Thibault você escreveu:
> Package: cdebconf
> Version: 0.150
> Severity: normal
> 
> Hello,
> 
> When using the text frontend for e.g. tasksel, the way to select items
> is really clear: what is displayed is
> 
> Choose software to install:
>  1. Graphical desktop environment 5. File server 9. Laptop
>  2. Web server 6. Mail server 10. Standard system utilities [*]
>  3. Print server 7. SQL database
>  4. DNS server 8. SSH server
> Prompt: '?' for help, default 10
> 
> '?' gives
> 
> KEYSTROKES:
>  ? Display this help message
>  ! Select an empty entry
> 
> This doesn't explain how to select several items at a time.
> 
> Samuel
> 
> -- System Information:
> Debian Release: squeeze/sid
>   APT prefers testing
>   APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1,
> 'experimental') Architecture: amd64 (x86_64)
> 
> Kernel: Linux 2.6.35 (SMP w/2 CPU cores)
> Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
> Shell: /bin/sh linked to /bin/bash



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



Bug#600653: libprojectm2: setter methods needed to change values of some private attributes (patch included)

2010-10-18 Thread Thomas PIERSON
Package: libprojectm2
Version: 2.0.1+dfsg-3
Severity: normal
Tags: patch

Hi,

I currently work on Clementine packaging in Debian [1] . Clementine is a music
player [2] which use the libprojectm library.

Clementine use a patched version of libprojectm because two setter are missing 
to access to some private class attributes in this library. Therefore, these 
modifications are mandatory to make clementine compiling.

So, I join you these two small patches and hope you will agree to include it 
in the libprojectm package.

Regards,
Thomas PIERSON

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579859
[2] http://www.clementine-player.org/

Index: projectm-2.0.1+dfsg/src/libprojectM/projectM.cpp
===
--- projectm-2.0.1+dfsg.orig/src/libprojectM/projectM.cpp	2010-10-15 20:32:50.717456717 +
+++ projectm-2.0.1+dfsg/src/libprojectM/projectM.cpp	2010-10-15 20:35:51.629456716 +
@@ -898,3 +898,12 @@
 }
 
 
+void projectM::changeTextureSize(int size) {
+  _settings.textureSize = size;
+
+  delete renderer;
+  renderer = new Renderer(_settings.windowWidth, _settings.windowHeight,
+  _settings.meshX, _settings.meshY,
+  _settings.textureSize, beatDetect, _settings.presetURL,
+  _settings.titleFontURL, _settings.menuFontURL);
+}
Index: projectm-2.0.1+dfsg/src/libprojectM/projectM.hpp
===
--- projectm-2.0.1+dfsg.orig/src/libprojectM/projectM.hpp	2010-10-15 20:35:58.809456716 +
+++ projectm-2.0.1+dfsg/src/libprojectM/projectM.hpp	2010-10-15 20:36:53.469456717 +
@@ -153,8 +153,7 @@
 
   virtual ~projectM();
 
-
-
+  void changeTextureSize(int size);
 
 
   const Settings & settings() const {
Index: projectm-2.0.1+dfsg/src/libprojectM/TimeKeeper.hpp
===
--- projectm-2.0.1+dfsg.orig/src/libprojectM/TimeKeeper.hpp	2010-10-15 20:55:31.549456718 +
+++ projectm-2.0.1+dfsg/src/libprojectM/TimeKeeper.hpp	2010-10-15 20:56:15.177456716 +
@@ -37,6 +37,8 @@
 
   double sampledPresetDuration();
 
+  void ChangePresetDuration(int seconds) { _presetDuration = seconds; }
+
 #ifndef WIN32
   /* The first ticks value of the application */
   struct timeval startTime;
Index: projectm-2.0.1+dfsg/src/libprojectM/projectM.cpp
===
--- projectm-2.0.1+dfsg.orig/src/libprojectM/projectM.cpp	2010-10-15 20:55:31.561456716 +
+++ projectm-2.0.1+dfsg/src/libprojectM/projectM.cpp	2010-10-15 20:56:47.921456714 +
@@ -907,3 +907,7 @@
   _settings.textureSize, beatDetect, _settings.presetURL,
   _settings.titleFontURL, _settings.menuFontURL);
 }
+
+void projectM::changePresetDuration(int seconds) {
+  timeKeeper->ChangePresetDuration(seconds);
+}
Index: projectm-2.0.1+dfsg/src/libprojectM/projectM.hpp
===
--- projectm-2.0.1+dfsg.orig/src/libprojectM/projectM.hpp	2010-10-15 20:55:31.573456716 +
+++ projectm-2.0.1+dfsg/src/libprojectM/projectM.hpp	2010-10-15 20:57:20.233456715 +
@@ -154,7 +154,7 @@
   virtual ~projectM();
 
   void changeTextureSize(int size);
-
+  void changePresetDuration(int seconds);
 
   const Settings & settings() const {
 		return _settings;


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


Bug#600229: debian-installer: improve support for English-speaking people in Finland

2010-10-18 Thread Timo Juhani Lindfors
Christian PERRIER  writes:
> Ah, that was kFreeBSD, I didn't notice.
>
> I'm not sure that kFreeBSD has a udeb with alternate keyboard layouts,
> which might explain why you have no prompt for keymap.

I see the same problem on amd64 too. You can reproduce this with

$ wget http://d-i.debian.org/daily-images/amd64/20101014-00:17/netboot/mini.iso
$ dd if=/dev/zero of=root.img bs=1M count=0 seek=4k
$ qemu-system-x86_64 -hda root.img -cdrom mini.iso

and answering the questions just like I indicated in the previous mail.

(Btw, do you agree to remove that wontfix now?)




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



Bug#600652: qtcreator: FTBFS on kfreebsd-*: expected unqualified-id before 'int'

2010-10-18 Thread Cyril Brulebois
Source: qtcreator
Version: 2.1.0~beta1-1
Severity: serious
Justification: FTBFS
User: debian-...@lists.debian.org
Usertags: kfreebsd

Hi,

your package no longer builds on kfreebsd-*:
| g++ -c -pipe -g -O2 -fvisibility=hidden -fvisibility-inlines-hidden -Wall -W 
-D_REENTRANT -fPIC -DQMLJS_BUILD_DIR -DQT_CREATOR 
-DIDE_LIBRARY_BASENAME=\"lib\" -DQT_NO_CAST_TO_ASCII 
-DQT_USE_FAST_OPERATOR_PLUS -DQT_USE_FAST_CONCATENATION -DQMLJS_BUILD_DIR 
-DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED 
-I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore 
-I/usr/include/qt4/QtGui -I/usr/include/qt4 -I../../libs 
-I/build/buildd-qtcreator_2.1.0~beta1-1-kfreebsd-amd64-0J3cO1/qtcreator-2.1.0~beta1/tools
 -Iparser -I../../libs -I.moc/release-shared -o 
.obj/release-shared/qmljspropertyreader.o qmljspropertyreader.cpp
| In file included from ../../libs/qmljs/qmljsinterpreter.h:35,
|  from ../../libs/qmljs/qmljscheck.h:34,
|  from qmljspropertyreader.cpp:33:
| ../../libs/qmljs/qmljscomponentversion.h:49: error: expected unqualified-id 
before 'int'
| ../../libs/qmljs/qmljscomponentversion.h:49: error: expected ')' before 'int'
| ../../libs/qmljs/qmljscomponentversion.h:49: error: expected ')' before 'int'
| ../../libs/qmljs/qmljscomponentversion.h:51: error: expected unqualified-id 
before 'int'
| ../../libs/qmljs/qmljscomponentversion.h:51: error: expected ')' before 'int'
| ../../libs/qmljs/qmljscomponentversion.h:51: error: expected ')' before 'int'
| make[5]: *** [.obj/release-shared/qmljspropertyreader.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=qtcreator&suite=experimental

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#598740: [rt01.prestus.com.br #4] Resolvido: Bug#598740: Info received (request-tracker3.8: [request-tracker-maintainers] Bug#598740: Preferences/Settings dialog cannot be saved)

2010-10-18 Thread Prestus Clube de Servicos
De acordo com nossos registros, sua solicitação foi resolvida. Se tiver mais
alguma dúvida ou pergunta, por favor responda esta mensagem.

Prestus. É um prazer servir!



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



Bug#598831: closed by Chrissie Caulfield (Bug#598831: fixed in dnprogs 2.55)

2010-10-18 Thread Cyril Brulebois
reopen 598831
found 598831 2.55
thanks

Debian Bug Tracking System  (05/10/2010):
>* Build against version 25 of FUSE
>  Closes: #598831

Sorry for the lag, but still failing to build:
| g++ -g -O2 -fno-rtti -fno-exceptions -pipe -fdollars-in-identifiers 
-fsigned-char -Wall -Wno-unused -Wno-uninitialized -I../libdap -I../include 
-DVERSION=\"2.55\" -D_XOPEN_SOURCE -D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE 
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DSHADOW_PWD  -O2 -fno-rtti 
-fno-exceptions -pipe -fdollars-in-identifiers -fsigned-char -Wall -Wno-unused 
-Wno-uninitialized -I../libdap -I../include -DVERSION=\"2.55\" -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_GNU_SOURCE -D_SVID_SOURCE -D_LARGEFILE_SOURCE 
-D_FILE_OFFSET_BITS=64 -DSHADOW_PWD  -O2   -c -o dapfs_dap.o dapfs_dap.cc
| In file included from /usr/include/fuse/fuse.h:26,
|  from /usr/include/fuse.h:9,
|  from dapfs_dap.cc:19:
| /usr/include/fuse/fuse_common.h:266:8: error: #error On FreeBSD API version 
25 or greater must be used
| make[2]: *** [dapfs_dap.o] Error 1

Full build logs:
  https://buildd.debian.org/status/package.php?p=dnprogs&suite=unstable

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#598841: mercurial fails to verify ssl validity in https connections

2010-10-18 Thread Moritz Muehlenhoff
On Sat, Oct 02, 2010 at 12:26:22PM -0300, Wagner Bruna wrote:
> Package: mercurial
> Version: 1.6.2-2
> Severity: important
> Tags: security, fixed-upstream, patch
> 
> 
> Forwarding this upstream security issue:
> 
> http://mercurial.selenic.com/bts/issue2407
> 
> A fix is available at:
> 
> http://selenic.com/repo/hg-stable/rev/f2937d6492c5
> 
> and included in version 1.6.4.

Dear Mercurial maintainers,
this is still unfixed in Squeeze, so this will likely need a
targeted fix for testing or the 1.6.4 version needs a freeze
exception. Please get in touch with the release team.

Cheers,
Moritz



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



Bug#599941: /usr/bin/xset: xset dpms etc seems to operate on all screens rather than just those provided such as :0.1, in X zaphod mode

2010-10-18 Thread Tim Connors
reopen 599941
thanks

On Tue, 12 Oct 2010, Julien Cristau wrote:

> On Wed, Oct 13, 2010 at 03:13:24 +1100, Tim Connors wrote:
>
> > Package: x11-xserver-utils
> > Version: 7.3+5
> > Severity: normal
> > File: /usr/bin/xset
> >
> > My xorg.conf is set up to have dpms enabled on one screen (:0.1 -- I'm
> > using zaphod mode, so :0.0 is a separate screen to :0.1), but disable
> > on another screen (:0.0, a status screen that must always remain on).
> >
> > This works, as is expected.  However, if I say:
> >
> > DISPLAY=:0.1 xset dpms 1200 2400 3600
> >
> > Then it affects :0.0 as well (even though xorg.conf says that screen
> > has DPMS disabled!).  It should only affect the asked for display.
> > Perhaps it should affect all displays if I was trying to talk to :0
> > rather than :0.0.
> >
> > Those not using zaphod mode, but using xinerama mode instead,
> > obviously would have only the one DISPLAY, and thus xset should affect
> > them all.
> >
> The dpms timeouts are global to the X server, not per screen.
> Similarly, DPMSEnabled is a global boolean flag.  I don't think there's
> a bug here.

Well, it's a regression.

You used to be able to say:

Section "ServerFlags"
Option "Xinerama" "0"

# no blank because want right hand display to be lit all the time
#Option  "BlankTime" "60"
Option  "BlankTime" "0"
Option  "StandbyTime" "120"
Option  "SuspendTime" "180"
Option  "OffTime" "240"
EndSection

#the "aatxth" mimic display (not to be DPMS blanked)
Section "Monitor"
# HorizSync source: edid, VertRefresh source: edid
Identifier "Monitor0"
...
Option "DPMS" "false"
EndSection

#the night assistant's terminal (to be DPMS blanked)
Section "Monitor"
# HorizSync source: edid, VertRefresh source: edid
Identifier "Monitor1"
...
Option "DPMS" "true"
EndSection

(perhaps combined with
DISPLAY=:0.0 xset s off
in .xsession - at least, that's the setup I ended up with on and old
system here)

And have Monitor1 DPMS blank after 2 hours, and have the Monitor0 stay
on and remain unblank.

The best I can do now with the above xorg.conf is to have Monitor1 DPMS
blank after 2 hours, and Monitor0 to remain DPMS on, but go blank.  (so
dpms isn't global, as it shouldn't be, because it is should be legal to
plug different monitors with different capabilities in at the same time).

So it looks to me that Xorg now blanks all screens when the server reaches
the DPMS timeout.  It should have blanked when it reached the screenblank
timeout, which is disabled here, and shouldn't have blanked when it
reached the dpms timeout, instead disabling the appropriate sync signals
on the appropriately enabled monitors (not a global flag.  Never has
been, never should be).

-- 
TimC
However, my preamp still has a meat-driven knob. -- A. de Boer in ASR



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



Bug#600387: pcmanfm: symbol lookup error: pcmanfm: undefined symbol: fm_path_new

2010-10-18 Thread mrmonkey
Package: pcmanfm
Version: 0.9.7-1
Severity: normal

I have the same problem on my Eeepc 900 after the last udev package upgrade.

Thanks a lot!!!



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

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

Versions of packages pcmanfm depends on:
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib
ii  libcairo2 1.8.10-6   The Cairo 2D vector graphics libra
ii  libfm-gtk00.1.14-1   file management support - GTK+ GUI
ii  libfm00.1.14-1   file management support - core lib
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libpango1.0-0 1.28.1-1   Layout and rendering of internatio
ii  libx11-6  2:1.3.3-3  X11 client-side library

Versions of packages pcmanfm recommends:
ii  gnome-icon-theme  2.30.3-1   GNOME Desktop icon theme
ii  gvfs-backends 1.6.4-2userspace virtual filesystem - bac
pn  gvfs-fuse  (no description available)

pcmanfm 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#598619: x11vnc: diff for NMU version 0.9.10-1.1

2010-10-18 Thread Tim Retout
tags 598619 - patch pending
thanks

On 18 October 2010 18:43, Julien Cristau  wrote:
> I think it's not going to work.

Hmm, in that case I agree. I've canceled the upload - I'll try again
with a manually overridden binary-indep target, I think.

Thanks,

-- 
Tim Retout 



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



Bug#588095: Should be grave?

2010-10-18 Thread Ivan Jager
severity 588095 grave
thanks

I believe this should have been severity grave, on the basis that
it "makes the package in question unusable or mostly so".

I'd say mostly so in this case, since everything in
/usr/share/doc/libcore-ocaml-doc/html/core-api/ is useless,
although at least some of the files for the extended-api seems to
have content. (Although presumably if you're using the extended
API you're also using the core API...)

If I am wrong, feel free to change it back. I don't mean to step
on any toes, but this bug should at least get some attention
before the release.

Thanks,
Ivan



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



Bug#600650: libxml-tidy-perl: Warning messages during build process

2010-10-18 Thread Nicholas Bamber
Package: libxml-tidy-perl
Version: 1.2.54HJnFa-1
Severity: minor
Tags: upstream


When doing a './Build test', we get the following errors:
"Unsuccessful stat on on filename containing a newline at [...]Tidy.pm line 58".
I investigated and found that the filename is actually a piece of
raw XML to which a raw "-r" is being applied.
Looking at the documentation it seems that the first argument should
always be a keyword like 'filename', 'binary' etc and not raw XML 
as it appears to be in this case.

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

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

Versions of packages libxml-tidy-perl depends on:
ii  libmath-basecnv-perl   1.6.A6FGHKE-1 set of fast functions to convert b
ii  libxml-xpath-perl  1.13-7Perl module for processing XPath
ii  perl   5.10.1-15 Larry Wall's Practical Extraction 

libxml-tidy-perl recommends no packages.

libxml-tidy-perl 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#600651: tripwire : [INTL:pt] Updated Portuguese translation for debconf messages

2010-10-18 Thread "Traduz" - Portuguese Translation Team

Package: tripwire
Version: 2.4.2-7
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for tripwire's debconf messages.
Translator: Rui Branco 
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team .


--
Best regards,

Rui Branco
"Traduz" - Portuguese Translation Team
http://www.DebianPT.org










# Portuguese translation of tripwire's debconf messages.
# Rui Branco , 2005, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: tripwire 2.4.2-7\n"
"Report-Msgid-Bugs-To: tripw...@packages.debian.org\n"
"POT-Creation-Date: 2010-10-17 16:41+0200\n"
"PO-Revision-Date: 2010-10-18 22:14+0100\n"
"Last-Translator: Rui Branco \n"
"Language-Team: Portuguese \n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Do you wish to upgrade?"
msgstr "Deseja actualizar?"

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"The format of the Tripwire database and configuration files have changed "
"substantially between previous versions and this release."
msgstr ""
"O formato da base de dados do Tripwire e dos seus ficheiros de configuração "
"foram substancialmente modificados entre as versões anteriores e este "
"lançamento."

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"To ensure your system remains secure, the upgrade process keeps a copy of "
"the old version of Tripwire and the old configuration file along with any "
"old databases that may exist.  You will find a detailed explanation for "
"using the old version of Tripwire in /usr/share/doc/tripwire/README.Debian."
msgstr ""
"Para assegurar que o seu sistema permanece seguro, o processo de "
"actualização manterá uma cópia da versão antiga do Tripwire e do ficheiro de "
"configuração antigo, juntamente com antigas bases de dados que possam "
"existir.  Encontrará uma explicação detalhada de como usar a versão antiga "
"do Tripwire em /usr/share/doc/tripwire/README.Debian."

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"However, as no conversion of the old configuration file and database is "
"attempted, you may prefer not to upgrade."
msgstr ""
"Contudo, como não é tentada nenhuma conversão do ficheiro antigo de "
"configuração e da base de dados, pode preferir não actualizar."

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"Due to the way Debian handles configuration files, if you choose to upgrade "
"you must accept the new version of /etc/cron.daily/tripwire for regular "
"reporting to occur.  The cron job associated with the previous version will "
"continue to run regardless."
msgstr ""
"Devido ao modo como o Debian manipula os ficheiros de configuração, se optar "
"por actualizar para que ocorra o relato regularmente terá que aceitar a nova "
"versão de /etc/cron.daily/tripwire.  A tarefa cron associada à antiga versão "
"continuará no entanto a correr apesar disso."

#. Type: boolean
#. Description
#: ../templates:2001
msgid "Do you wish to create/use your site key passphrase during installation?"
msgstr "Deseja criar/utilizar a sua frase-chave do site durante a instalação?"

#. Type: boolean
#. Description
#: ../templates:2001
#| msgid ""
#| "Tripwire uses a pair of keys to sign various files, thus ensuring their "
#| "unaltered state.  By accepting here, you will be prompted for the "
#| "passphrase for the first of those keys, the site key, during the "
#| "installation.  You are also agreeing to create of a site key if one "
#| "doesn't exist already.  Tripwire uses the site key to sign files that may "
#| "be common to multiple systems, e.g. the configuration & policy files.  "
#| "See twfiles(5) for more information."
msgid ""
"Tripwire uses a pair of keys to sign various files, thus ensuring their "
"unaltered state.  By accepting here, you will be prompted for the passphrase "
"for the first of those keys, the site key, during the installation.  You are "
"also agreeing to create a site key if one doesn't exist already.  Tripwire "
"uses the site key to sign files that may be common to multiple systems, e.g. "
"the configuration & policy files.  See twfiles(5) for more information."
msgstr ""
"O tripwire utiliza um par de chaves para assinar diversos ficheiros, "
"assegurando assim a sua inalterabilidade.  Ao aceitar, ser-lhe-á pedida "
"durante a instalação, a frase-chave para a primeira dessas chaves, a frase-"
"chave do site. Estará também a concordar com a criação de uma chave do site "
"se esta ainda não existir.  O tripwire utiliza a chave do site para assinar "
"ficheiros que possam ser comuns a vários sistemas, e.g. os ficheiros de "
"configuração e de política de sistema.  Veja twfiles(5) para mais informação."

#. Type: boolean
#. Description
#. Type: boolean
#. Description
#: ../templates:2001 ../templates:3001
msgid ""
"Unfortunately,

Bug#600648: iceweasel: Not allowed to select helper application

2010-10-18 Thread Anders Boström
Package: iceweasel
Version: 3.6.10-1
Severity: normal

When trying to view an wvx-file from
http://www.trafikverket.se/Privat/Projekt/Stockholm/E20-norra-lanken/Dokument/?tabId=17236
 ,
I only get an open-dialog with the options "Cancel" and "Save File",
I'm not allowed to select application.

The dialog say:

--
You have chosen to open

felstfilm_liten.wvx
which is a: Microsoft ASX playlist
from: http://www.trafikverket.se

Would you like to save this file?

   Cancel   Save file
--

Also, if I open the preferences/Application tab, an entry for
"Microsoft ASX playlist" exists. I can select an application, for an
example xine, but I still get the same Cancel/Save file dialog when
opening an wvx-file.

/ Anders

-- Package-specific info:

-- Extensions information
Name: Adblock Plus
Location: 
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
Package: xul-ext-adblock-plus
Status: enabled

Name: It's All Text!
Location: 
/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/itsallt...@docwhat.gerf.org
Package: xul-ext-itsalltext
Status: enabled

Name: Standard
Location: /usr/lib/iceweasel/extensions/{972ce4c6-7e08-4474-a285-3208198ce6fd}
Package: iceweasel
Status: enabled

Name: Svenska (SE) Language Pack
Location: /usr/lib/iceweasel/extensions/langpack-sv...@firefox.mozilla.org
Package: iceweasel-l10n-sv-se
Status: enabled

-- Plugins information
Name: DivX® Web Player
Location: /usr/lib/mozilla/plugins/libtotem-mully-plugin.so
Package: totem-mozilla
Status: enabled

Name: Java(TM) Plug-in 1.6.0_22
Location: /usr/lib/jvm/java-6-sun-1.6.0.22/jre/lib/amd64/libnpjp2.so
Package: sun-java6-bin
Status: enabled

Name: Nexus Personal
Location: /usr/lib/nspluginwrapper/plugins/npwrapper.libplugins.so
Status: enabled

Name: QuickTime Plug-in 7.6.6
Location: /usr/lib/mozilla/plugins/libtotem-narrowspace-plugin.so
Package: totem-mozilla
Status: enabled

Name: Shockwave Flash
Location: /usr/lib/flashplugin-nonfree/libflashplayer.so
Status: enabled

Name: VLC Multimedia Plugin (compatible Totem 2.30.2)
Location: /usr/lib/mozilla/plugins/libtotem-cone-plugin.so
Package: totem-mozilla
Status: enabled

Name: Windows Media Player Plug-in 10 (compatible; Totem)
Location: /usr/lib/mozilla/plugins/libtotem-gmp-plugin.so
Package: totem-mozilla
Status: enabled

Name: iTunes Application Detector
Location: /usr/lib/mozilla/plugins/librhythmbox-itms-detection-plugin.so
Package: rhythmbox-plugins
Status: enabled


-- Addons package information
ii  iceweasel  3.6.10-1   Web browser based on Firefox
ii  iceweasel-l10n 1:3.6.10+debia Swedish (Sweden) language package for Icewea
ii  rhythmbox-plug 0.12.8-2   plugins for rhythmbox music player
ii  sun-java6-bin  6.22-1 Sun Java(TM) Runtime Environment (JRE) 6 (ar
ii  totem-mozilla  2.30.2-5   Totem Mozilla plugin
ii  xul-ext-adbloc 1.2.1-1Advertisement blocking extension for web bro
ii  xul-ext-itsall 1.4.1-1Iceweasel/Firefox extension to edit textarea

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

Kernel: Linux 2.6.32.15 (SMP w/2 CPU cores)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to sv_SE.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages iceweasel depends on:
ii  debianutils  3.4 Miscellaneous utilities specific t
ii  fontconfig   2.8.0-2.1   generic font configuration library
ii  libc62.11.2-6Embedded GNU C Library: Shared lib
ii  libglib2.0-0 2.24.2-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-1+b1 The GTK+ graphical user interface 
ii  libnspr4-0d  4.8.4-2 NetScape Portable Runtime Library
ii  libstdc++6   4.4.5-2 The GNU Standard C++ Library v3
ii  procps   1:3.2.8-9   /proc file system utilities
ii  xulrunner-1.9.2  1.9.2.10-1  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts 1.6.7-1  TrueType versions of some TeX font
ii  libgssapi-krb5-21.8.3+dfsg-2 MIT Kerberos runtime libraries - k
ii  mathematica-fonts [ttf-math 12   Installer of Mathematica fonts
pn  mozplugger (no description available)
ii  ttf-lyx 1.6.7-1  TrueType versions of some TeX font
ii  xfonts-mathml   4Type1 Symbol font for MathML
pn  xprint (no description available)

Versions of packages xulrunner-1.9.2 depends on:
ii  libasound2  1.0.23-2 shared library for AL

Bug#600571: Follow-Up, Sorry for the noise

2010-10-18 Thread James P. Wallen
Once I got some time to deal with this I proceeded with the upgrade to 
perl (et al). I tried first on the initial system with no error, and 
then on 18 other systems -- again with no error.


These are all Debian GNU/Linux initial Squeeze install with repositories 
now set to testing, with absolutely no "outside" software installations. 
They are slightly divergent in configuration but largely the same with 
Xfce as the DE on all systems.


I'm sorry for the noise. I thought I was going to run into problems when 
I proceeded with the upgrade. (Don't know why -- probably lack of coffee 
or brains or both.)


I hope this information can be of some small help.



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



Bug#600075: usb hung tasks

2010-10-18 Thread Gorel's'kiy Sergiy
Maybe i was wrong, but now (kernel 2.6.32-25) this bug is only for dkpg 
(apt).
When i reproduce transfer data to usb flash, hungs only dpkg task. Other 
tasks (xarchiver, ftp download) works properly.


--
Best regards, Sergiy!




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



  1   2   3   4   >