Bug#592203: ITP: sugar-jukebox-activity --Jukebox is the media player to play different kinds of audio and video files.

2010-08-07 Thread Ishan Bansal
Package: wnpp
Severity: wishlist
Owner: Ishan Bansal 

* Package name: sugar-jukebox-activity
  Version   : 19
  Upstream Author : Jonas Smedegaard 
* URL   :
http://wiki.laptop.org/go/Activites/Jukebox_%28latest%29
* License  : GPL-2+
  Programming Lang: Python
  Description: Sugar jukebox activity

Sugar is a graphical user interface aimed at children.

Originating as intregral part of the OLPC "XO" a.k.a. the $100 laptop,
Sugar has since grown into a more widely usable low-resource desktop
environment for kids.

Jukebox is the media player to play different kinds of audio and video
files.
Jukebox is the media player to play different
kinds of audio and video files
 including online
streams. It also supports playlists like .m3u and .pls.


Bug#591076: [Pkg-ime-devel] Bug#591076: Bug#591076: opencc: FTBFS: Segmentation fault while calling ./opencc_dict

2010-08-07 Thread LI Daobing
tags 591076 help
thanks

On Sun, Aug 1, 2010 at 21:55, LI Daobing  wrote:
> Hello,
>
> I have no powerpc and can't reproduct this bug in amd64,
>
> can you help make a backtrace for this?
>
> thanks.
>
> On Sun, Aug 1, 2010 at 01:29, Philipp Kern  wrote:
>> Source: opencc
>> Version: 0.1.0-1
>> Severity: serious
>>
>>> ╔══╗
>>> ║ opencc 0.1.0-1 (powerpc)                                   31 Jul 2010 
>>> 16:53 ║
>>> ╚══╝
>> [...]
>>>   CC     opencc_dict-opencc_dictionary_text.o
>>> gcc -DHAVE_CONFIG_H -I. -I..    -DPKGDATADIR=\"/usr/share/opencc\" 
>>> -DLOCALEDIR=\"/usr/share/locale\"   -g -O2 -c -o 
>>> opencc_dict-opencc_dictionary_text.o `test -f 
>>> 'dictionary/opencc_dictionary_text.c' || echo 
>>> './'`dictionary/opencc_dictionary_text.c
>>>   CCLD   opencc_dict
>>>   GEN    simp_to_trad.ocd
>>> /bin/bash: line 1:  4898 Segmentation fault      ./opencc_dict -i 
>>> ../data/simp_to_trad.txt -o simp_to_trad.ocd
>>> make[3]: *** [simp_to_trad.ocd] Error 139
>>> make[2]: *** [all-recursive] Error 1
>>> make[1]: *** [all] Error 2
>>> make[3]: Leaving directory 
>>> `/build/buildd-opencc_0.1.0-1-powerpc-vvKJpS/opencc-0.1.0/src'
>>> make[2]: Leaving directory 
>>> `/build/buildd-opencc_0.1.0-1-powerpc-vvKJpS/opencc-0.1.0'
>>> make[1]: Leaving directory 
>>> `/build/buildd-opencc_0.1.0-1-powerpc-vvKJpS/opencc-0.1.0'
>>> dh_auto_build: make -j1 returned exit code 2
>>> make: *** [build] Error 2
>>> dpkg-buildpackage: error: debian/rules build gave error exit status 2
>>> 
>>> Build finished at 20100731-1655
>>> FAILED [dpkg-buildpackage died]
>>

mips sounds has a similar with powerpc:
https://buildd.debian.org/build.php?arch=mips&pkg=opencc&ver=0.1.0-1

but I still can not reproduce this bug on my mips machine[1].

build log in attachment.

mark this bug as need help.

thanks.

[1]
$ uname -a
Linux Loong 2.6.27.1 #421 Tue Aug 4 08:52:39 CST 2009 mips64 GNU/Linux

-- 
Best Regards
LI Daobing


opencc_0.1.0-1_mipsel.build
Description: Binary data


Bug#592202: desproxy-socksserver has been broken

2010-08-07 Thread Daniel Burr

Package: desproxy
Version: 0.1.0~pre3-3
Severity: important
Tags: patch

The 20-compile-fixes.patch (originating from #561389) had the
unfortunate side-effect of breaking the desproxy-socksserver
program.  The reason for this is that it changed the type of
'buffer' from unsigned char to char.  A number of places in
desproxy-socksserver.c assume that it is not signed, for example when
extracting the remote host IP from the buffer:

 sprintf (remote_host, "%d.%d.%d.%d", buffer[2], buffer[3], buffer[4],
   buffer[5]);

If any of buffer[2] - buffer[5] are > 127 then this will result in some
strange looking IP addresses containing negative numbers!

The approach that I took to fix this problem was to change 'buffer' back
from char to unsigned char and fix the original warnings.  I believe
that this is a safer approach than just changing the "%d"s to "%u"s in
the sprintf because there might be any number of other parts of the code
which also work on the assumption that the variable is unsigned.



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

Kernel: Linux 2.6.32-trunk-686 (SMP w/1 CPU core)
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages desproxy depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: 
Shared lib


desproxy recommends no packages.

desproxy suggests no packages.

-- no debconf information

Confidentiality Notice:  This message (including attachments) is a private communication solely for use of the intended recipient(s).  
If you are not the intended recipient(s) or believe you received this message in error, notify the sender immediately and then delete this 
message.  Any other use, retention, dissemination or copying is prohibited and may be a violation of law, including the Electronic 
Communication Privacy Act of 1986."
Only in desproxy-0.1.0-pre3.fixed/: config.log
Only in desproxy-0.1.0-pre3.fixed/: config.status
Only in desproxy-0.1.0-pre3.fixed/: Makefile
diff -ru desproxy-0.1.0-pre3.orig//src/desproxy-dns.c 
desproxy-0.1.0-pre3.fixed//src/desproxy-dns.c
--- desproxy-0.1.0-pre3.orig//src/desproxy-dns.c2004-06-11 
06:51:40.0 +1000
+++ desproxy-0.1.0-pre3.fixed//src/desproxy-dns.c   2010-08-08 
15:38:04.0 +1000
@@ -57,6 +57,7 @@
   int count;
   int htons_size;
   char buffer[MAXREQUESTLEN + 2];
+  unsigned short int* ptr;
 
   debug_printf (">answer_request(%d,%d)\n", connection, size);
   if (connection == UDP_CONNECTION)
@@ -98,7 +99,8 @@
   perror ("read");
   return (-3);
 }
-  size = ntohs (*((unsigned short int *) buffer));
+  ptr = (unsigned short int*)buffer;
+  size = ntohs (*ptr);
   debug_printf ("size=%d\n", size);
   if ((count = read (proxy_socket[connection], &buffer[2], size)) == -1)
 {
@@ -258,10 +260,8 @@
requests[connection].bib + count;
  if (requests[connection].bib > 2) // if at least 2 bib 
(Bytes In Buffer), we have request size
{
- requests[connection].size =
-   htons (*
-  ((unsigned short int *)
-   &requests[connection].buffer[0]));
+ unsigned short int* ptr = (unsigned short 
int*)&requests[connection].buffer[0];
+ requests[connection].size = htons (*ptr);
  if (requests[connection].size ==
  requests[connection].bib - 2)
{
diff -ru desproxy-0.1.0-pre3.orig//src/desproxy.h 
desproxy-0.1.0-pre3.fixed//src/desproxy.h
--- desproxy-0.1.0-pre3.orig//src/desproxy.h2010-08-08 15:35:26.0 
+1000
+++ desproxy-0.1.0-pre3.fixed//src/desproxy.h   2010-08-08 15:34:15.0 
+1000
@@ -84,7 +84,7 @@
 char console_line[256];
 char HTTP_return_code[4];
 char string[256];
-char buffer[BUFFER_SIZE];
+unsigned char buffer[BUFFER_SIZE];
 unsigned char client_socket_is_free[MAX_CONNECTIONS];
 
 fd_set mask, rmask;
diff -ru desproxy-0.1.0-pre3.orig//src/desproxy-socksserver.c 
desproxy-0.1.0-pre3.fixed//src/desproxy-socksserver.c
--- desproxy-0.1.0-pre3.orig//src/desproxy-socksserver.c2003-09-17 
19:55:01.0 +1000
+++ desproxy-0.1.0-pre3.fixed//src/desproxy-socksserver.c   2010-08-08 
15:26:08.0 +1000
@@ -238,7 +238,7 @@
  EOC (connection);
  return;
}
- strncat (remote_host, buffer, 1);
+ strncat (remote_host, (char*)buffer, 1);
}
   strncat (remote_host, "\x00", 1);
   debug_printf ("remote_host %s\n", remote_host);
Only in desproxy-0.1.0-pre3.fixed//src: Makefile


Bug#591016: flash-kernel: /usr/share/initramfs-tools/hooks/flash_kernel_set_root mis-detects root filesystems for systems using ubifs

2010-08-07 Thread Martin Michlmayr
* Daniel Kahn Gillmor  [2010-07-30 19:32]:
> Warning: /etc/fstab parse error; guessing that the root device is /dev/sda2

Please show me what your /etc/fstab looks like.
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#591016: flash-kernel: /usr/share/initramfs-tools/hooks/flash_kernel_set_root mis-detects root filesystems for systems using ubifs

2010-08-07 Thread Martin Michlmayr
* Daniel Kahn Gillmor  [2010-07-31 10:34]:
> i also note that there is no command in flash-kernel for the guruplug to
> actually write the kernel to NAND storage -- it generates uImage and
> uInitrd, but does not store them to /dev/mtd1 as i'd expect something like:
>  nandwrite /dev/mtd1 /boot/uImage

Right.  The reason my initial response to your bug report was "maybe"
was because I'm not sure at this moment how we should handle
installations to NAND.  There are at leat three options:

 - Creating a combined uboot image (i.e. kernel plus ramdisk) and writing
   that to NAND.  There's probably not enough space in mtd1 for this,
   though.

 - Given that ubifs support is built in, we could just write the kernel
   to NAND.

 - A third alternative is to simply generate the uKernel and uInitrd
   files on "disk" (i.e. ubifs in this case) and use u-boot to load
   them from ubifs (u-boot from mainline has support for this).

I'm sort of leaning towards the last option since it's imho the
cleanest variant. (The first one probably doesn't work because of
size constraints and the second assumes that ubifs is built in, which
I won't guarantee will be the case in the future.)

But this is a slightly different issue than the one you reported in
this bug.  In any case, given that I'm leaning towards the third
alternative, I should definitely fix the bug you reported, not just
"maybe". ;-)
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#592201: shared-mime-info: Please do not print blank line between the 'unknown media type' warnings

2010-08-07 Thread Petter Reinholdtsen

Package: shared-mime-info
Version: 0.71-3
Severity: minor
Tags: patch

When installing packages in Squeeze, messages like this show up in the
installation log.  Notice the blank line between the warnings:

Aug  7 10:40:31 in-target: Behandler utløsere for shared-mime-info ...
Aug  7 10:40:32 in-target: Unknown media type in type 'all/all'
Aug  7 10:40:32 in-target:
Aug  7 10:40:32 in-target: Unknown media type in type 'all/allfiles'
Aug  7 10:40:32 in-target:
Aug  7 10:40:32 in-target: Unknown media type in type 'uri/mms'
Aug  7 10:40:32 in-target:
Aug  7 10:40:32 in-target: Unknown media type in type 'uri/mmst'
Aug  7 10:40:32 in-target:
Aug  7 10:40:32 in-target: Unknown media type in type 'uri/mmsu'

Can the output be changed to not have a blank line between these
warnings?  After installing a few packages, quite a lot of these
messages start to show up, and this make the log a bit harder to
follow when tracing the installation.

I checked the source, and the code in question use g_warning to print
these messages.  The g_warning() call seem to insert its own newline
in addition to the one already in the message, causing the double
newlines.

I tested this theory using this small C code:

  #include 
  int main(int argc, char *argv[]) {
g_warning("test1");
g_warning("test2\n");
g_warning("test3");
  }

Its output when compiled with glib 2.1 is:


  ** WARNING **: test1

  ** WARNING **: test2


  ** WARNING **: test3

Based on this, I believe it should be safe to drop the newline from
the calls to g_warning(), and propose this patch:

--- shared-mime-info-0.71/update-mime-database.c2009-10-07 
12:54:22.0 +0200
+++ shared-mime-info-0.71-pere/update-mime-database.c   2010-08-08 
07:58:59.0 +0200
@@ -250,7 +250,7 @@
return type;
}

-   g_warning("Unknown media type in type '%s'\n", name);
+   g_warning("Unknown media type in type '%s'", name);

return type;
 }

Happy hacking,
-- 
Petter Reinholdtsen



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



Bug#592200: O: lilo -- LInux LOader - The Classic OS loader can load Linux and others

2010-08-07 Thread Joachim Wiedorn
Package: wnpp
Severity: normal

I am orphaning lilo.

The current maintainer William Pitcock  have 
no interest for a long time for maintaining lilo (see links). From 
co-maintainer Matt Arnold  I know he have not 
enough time for maintaining lilo, but he would like to provide a new 
maintainer.

For more information see here:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=587886 (07/2010)
http://lists.debian.org/debian-devel/2010/05/msg00769.html  (05/2010)
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504733#15  (11/2008)
http://lists.debian.org/debian-devel/2008/06/msg00400.html  (06/2008)

And the newest RC bug says that this package is not prepared for the next
stable release (squeeze):
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=590022

Maintaining a package requires time and skills. Please only adopt this
package if you will have enough time and attention to work on it.

If you want to be the new maintainer, please see
http://www.debian.org/devel/wnpp/index.html#howto-o 
for detailed instructions how to adopt a package properly.

Some information about this package:

Source: lilo
Binary: lilo, lilo-doc
Architecture: amd64 i386 ia64 all
Version: 1:22.8-8.1
Maintainer: William Pitcock 
Uploaders: Matt Arnold 
Standards-Version: 3.8.1
Vcs-Browser: http://svn.debian.org/viewsvn/collab-maint/ext-maint/lilo/trunk/
Vcs-Svn: svn://svn.debian.org/collab-maint/ext-maint/lilo/trunk/
Build-Depends: debhelper (>= 5.0), transfig, texlive-latex-base,
 bin86 (>= 0.16), sharutils, po-debconf (>= 0.5.0), libdevmapper-dev,
 quilt
Files: 
 3111b5f52cc0dc96ebe8903702a9d29f 449315 lilo_22.8.orig.tar.gz
 d2b4d8aafb8e8ca7b5db2493c8aebfa9 233665 lilo_22.8-8.1.diff.gz

Package: lilo
Version: 1:22.8-8.1
Architecture: amd64
Maintainer: William Pitcock 
Installed-Size: 1124
Depends: mbr, debconf (>= 1.2.9) | debconf-2.0, libc6 (>= 2.3),
 libdevmapper1.02.1 (>= 2:1.02.20) Suggests: lilo-doc
Conflicts: manpages (<< 1.29-3)
Section: admin
Priority: optional
Description: LInux LOader - The Classic OS loader can load Linux and others
 This package contains lilo (the installer) and boot-record-images to
 install Linux, OS/2, DOS and generic Boot Sectors of other OSes.
 .
 You can use LILO to manage your Master Boot Record (with a simple text
screen, text menu or colorful splash graphics) or call LILO from other
Boot-Loaders to jump-start the Linux kernel.


signature.asc
Description: PGP signature


Bug#592165: doc-rfc: depend on doc-rfc-experimental

2010-08-07 Thread Iustin Pop
On Sun, Aug 08, 2010 at 12:18:45AM +0200, Christoph Anton Mitterer wrote:
> Package: doc-rfc
> Version: 20100731-1
> Severity: wishlist
> 
> 
> Hi.
> 
> I guess doc-rfc should also depend on doc-rfc-experimental.
> Or even better, as doc-rfc is just kind of a meta-package, as far as I can 
> see,
> replace all the depends with recommends. Wouldn't that be more flexible?

Depends on what you're actually trying to do. As the description says,
feel free to remove the metapackage and install the rfcs that you need.
It's there just to help initial users who don't exactly know what RFCs
they want, as as starting point.

What exactly do you think it's not flexible in the current setup?

Another option would be to list only a subset of the RFC packages as
depends, and all others as recommends (not everyone runs with
Apt::Install-Recommends set to 1, so moving all to Recommends would be
bad IMHO).

thanks!
iustin


signature.asc
Description: Digital signature


Bug#592199: fls: not recursive to Ext4 images

2010-08-07 Thread Joao Eriberto Mota Filho
Package: sleuthkit
Version: 3.1.3-1
Severity: normal

The fls command doesn't work recursively with images using Ext4 filesystem.
I tested it in images using Ext3 and partitions (e.g. /dev/sda1) using Ext3/4
filesystem and the fls worked fine. The problem is with Ext4 images only.

Thanks in advance.

Regards,

Eriberto - Brazil


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

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

Versions of packages sleuthkit depends on:
ii  file  5.04-4 Determines file type using "magic"
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libdate-manip-perl6.11-1 module for manipulating dates
ii  libgcc1   1:4.4.4-7  GCC support library
ii  libstdc++64.4.4-7The GNU Standard C++ Library v3
ii  libtsk3-3 3.1.3-1library for forensics analysis on 

sleuthkit recommends no packages.

sleuthkit 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#585796: #585796: local-debbugs: Cannot search

2010-08-07 Thread Jonathan Nieder
Don Armstrong wrote:

>* Various changes to make debbugs-local work better (Closes: #585796)

That does help a lot.

Now I’ve tried:

echo src:git >~/.debbugs/bugs_to_get
local-debbugs -M
local-debbugs --daemon --no-detach

and in another VT:

w3m http://localhost:8080/542709

The resulting output from the daemon:

configuration file '/etc/debbugs/config' doesn't exist; skipping 
itUnable to locate template 
/usr/share/debbugs/templates/en_US/cgi/no_such_bug.tmpl
Unable to find template cgi/no_such_bug with language en_US at 
/usr/share/perl5/Debbugs/Text.pm line 154.

If I instead try

local-debbugs --show 542709

then I still get “error reading from socket” from the browser, but this way
there is no new output from the local-debbugs daemon.

Will investigate more.  Thanks.



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



Bug#592198: Updated README for lekhonee-gnome

2010-08-07 Thread Raghavendra Belapure
Package: lekhonee-gnome
Version: 0.11
Severity: wishlist

Hi,
This patch for README describes how to install dependencies on Ubuntu or
Debian Systems.
We configured and built the package from its source during the Mini-Debconf
India Workshop at COEP. We thought it would help the other people installing
the same package.

Regds,
Raghavendra Belapure
diff -ruN lekhonee-gnome-0.11.orig/README lekhonee-gnome-0.11/README
--- lekhonee-gnome-0.11.orig/README	2010-08-08 10:13:25.302128544 +0530
+++ lekhonee-gnome-0.11/README	2010-08-08 10:26:53.421999790 +0530
@@ -10,4 +10,16 @@
 gtksourceview2
 gtkspell2
 webkit-1.0
+libgee
 
+On Debian and Ubuntu systems run the following command to install the dependencies:
+
+sudo apt-get install libxml2-dev libsoup2.4-dev \
+libgtksourceview2.0-dev libwebkit-dev libgtkspell-dev \
+libgee-dev
+
+To build the package, do the following in the lekhonee-gnome- directory:
+
+./configure
+make
+sudo make install


Bug#592197: ITP: libterm-twiddle-perl -- Twiddles a thingy while-u-wait

2010-08-07 Thread Carlo Segre
Package: wnpp
Severity: wishlist
Owner: Carlo Segre 


* Package name: libterm-twiddle-perl
  Version : 2.71
  Upstream Author : Scott Wiersdorf 
* URL : http://search.cpan.org/dist/Term-Twiddle/
* License : Artistic
  Programming Lang: Perl
  Description : Twiddles a thingy while-u-wait

 Always fascinated by the spinner during FreeBSD's loader bootstrap, I wanted
 to capture it so I could view it any time I wanted to--and I wanted to make
 other people find that same joy I did. Now, anytime you or your users have to
 wait for something to finish, instead of twiddling their thumbs, they can
 watch the computer twiddle its thumbs.



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



Bug#579397: STAT_FAIL to debian for SM_MON of 192.168.120.254, No canonical hostname found for 192.168.120.254

2010-08-07 Thread Ben Hutchings
On Tue, 2010-07-06 at 13:05 -0400, Chuck Lever wrote:
> On 06/ 9/10 10:41 AM, Steven Shiau wrote:
> >
> >
> > On 2010年06月06日 04:29, Ben Hutchings wrote:
> >> On Thu, 2010-06-03 at 17:08 -0400, Chuck Lever wrote:
> >>> On 05/24/10 11:22 AM, Chuck Lever wrote:
> >> [...]
>  We can probably remove the reverse mapping constraint for presentation
>  addresses. A simple fix might be to change statd_canonical_name() from:
> 
>  freeaddrinfo(ai);
>  if (!result)
>  return NULL;
> 
>  to
> 
>  freeaddrinfo(ai);
>  if (!result)
>  return strdup(hostname);
> 
>  Let me know if this works.
> >>> Any update? I have a patch ready for nfs-utils to fix this regression,
> >>> but I need confirmation that it addresses your problem.
> >> Steven originally had this problem, not me. Steven, do you need me to
> >> build a new package with this change?
> >>
> >> Ben.
> >>
> > Ben,
> > Yes, please.
> > Thanks.
> 
> Any progress on this?

I've heard nothing from Steven but one positive report from another
user.  In any case we'll include this in our package.

We now have a git repository of the nfs-utils package at
; currently our changes are
kept in a quilt patch series in debian/patches.

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#592196: Does not use first-time-entered debconf value for hesiod/rhs

2010-08-07 Thread Daniel Richard G.
Package: libhesiod0
Version: 3.0.2-20
Severity: important

When libhesiod0 is installed with debconf at low priority, it queries
the user for hesiod/rhs, with a default value that uses the system's
currently configured DNS domain. If I enter a different value, this
value is not used---debconf and the /etc/hesiod.conf file show the
original default value after package installation has completed.

If I dpkg-reconfigure the package afterward, and enter my desired
different value a second time, only then does it take.

I suspect this issue is related to Bug #578241.



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



Bug#579397: Patch works for me

2010-08-07 Thread Ben Hutchings
On Thu, 2010-08-05 at 13:53 +0800, Steven Wilton wrote:
> I was seeing the same issues on both the client and server, and I can 
> confirm that the patch fixes the bug for me.

Good!

> Do you want me to open a new bug report so you can apply the patch to 
> the package?

No, there is no need for that.  This patch will be included in the next
upload.

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#591523: Additional Information

2010-08-07 Thread Ben Hutchings
On Thu, 2010-08-05 at 10:22 +0200, mbo...@gmx.net wrote:
> To work arround the problem, we installed Open Suse 11.3 on one of the
> Servers. The problem does not appear on this OS. I can see that the
> bnx driver and firmware are newer versions:
> 
> linux-vyse:~ # ethtool -i eth0
> driver: bnx2
> version: 2.0.9
> firmware-version: 5.2.7 bc 5.2.2 NCSI 2.0.8
> bus-info: :02:00.0
> 
> Linux linux-vyse 2.6.34-12-desktop #1 SMP PREEMPT 2010-06-29 02:39:08 +0200 
> x86_64 x86_64 x86_64 GNU/Linux
> 
> Is there a way to update debian to the same versions?

Linux 2.6.35 is in the 'experimental' suite.  You'll need to copy the
driver-loaded firmware from openSUSE (from the /lib/firmware/bnx2/
directory) as we haven't yet packaged the version required by 2.6.35.

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#592170: [Debconf-team] Bug#592170: please add debconf delegates to intro/organisation

2010-08-07 Thread Anthony Towns
On Sat, Aug 7, 2010 at 20:58, Michael Schultheiss  wrote:
> Holger Levsen wrote:
>> Marga remembered that she, Ganneff and me (and probably others (*))
>> were delegates, but I couldnt find such a mail from aj to
>> d-d-a now, which is no surprise to me, given that DebConf
>> has just ended.
> I found AJ's delegation at:
> http://lists.debian.org/debian-project/2006/06/msg00265.html
> http://lists.debconf.org/lurker/message/20060622.150218.0fd6bc26.en.html

Technically that was restricted to a venue decision for 2007 and was
revoked later anyway [0] as part of making the decision using public
criteria and an open IRC discussion (which aiui has only improved
since). Personally, I'd suggest just getting Stefano to do a new
delegation of some active/key debconf people and ignore the old stuff.

[0] http://lists.debian.org/debian-project/2006/07/msg00041.html

Just my 2c, FWIW, HTH, etc.

Cheers,
aj

-- 
Anthony Towns 



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



Bug#592195: debian-changelog-warning-face not defined in Emacs 23

2010-08-07 Thread Trent W. Buck
Package: dpkg-dev-el
Version: 34.1
Severity: minor
File: /usr/share/emacs/site-lisp/dpkg-dev-el/debian-changelog-mode.el

In my emacs, (Closes: #123456) has a cyan "Closes", but the bug number
changed from red to white some time ago.  Investigating, I find that

debian-changelog-warning-face

has all attributes set to "unspecified".  If I manually re-evaluate
its definition:

(cond
 ((and (fboundp 'facep)
   (facep 'font-lock-warning-face))
  (copy-face 'font-lock-warning-face 'debian-changelog-warning-face))
 ((fboundp 'defface)
  (defface debian-changelog-warning-face
'class grayscale)(background light))(:foreground "DimGray" :bold t))
  (((class grayscale)(background dark))(:foreground "LightGray" :bold 
t))
  (((class color)(background light))(:foreground "red" :bold t ))
  (((class color)(background dark))(:foreground "red" :bold t ))
  (t (:bold t)))
"Face for debian-changelog important strings."
:group 'debian-changelog-faces))
 (t
  ;;; XEmacs19:
  (make-face 'debian-changelog-warning-face
 "Face to use for important keywords.in debian-changelog-mode")
  (make-face-bold 'debian-changelog-warning-face)
  ;; XEmacs uses a tag-list thingy to determine if we are using color
  ;;  or mono (and I assume a dark background).
  (set-face-foreground 'debian-changelog-warning-face
   "red" 'global nil 'append)))

...then the first clause succeeds and the bug number immediately
becomes red.

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

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

Versions of packages dpkg-dev-el depends on:
ii  debian-el 34.1   Emacs helpers specific to Debian u
ii  emacs [emacsen]   23.2+1-2   The GNU Emacs editor (metapackage)
ii  emacs23-nox [emacsen] 23.2+1-2   The GNU Emacs editor (without X su

Versions of packages dpkg-dev-el recommends:
ii  wget  1.12-2 retrieves files from the web

Versions of packages dpkg-dev-el suggests:
ii  dpkg-dev  1.15.7.2   Debian package development tools

-- 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#592183: linphone does not start (undefined symbol in /usr/lib/liblinphone.so.3)

2010-08-07 Thread Mark Purcell
On Sunday 08 August 2010 10:45:42 Y. Wei wrote:
> linphonec: symbol lookup error: /usr/lib/liblinphone.so.3: undefined symbol: 
> ortp_file_exist
[...]
> ii  libortp8   3.2.1-2   Real-time Transport Protocol 
> stack

Yichun,

This symbol is introduced into the later versions of libortp8.

The workaround is to manually upgrade to the correct version of libortp8

The simple fix is to introduce version information for shlibs, which I will do 
with the next upload.

The proper fix is to introduce a symbols file to track specific versions 
against symbols.

Mark


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


Bug#592142: ctemplate: FTBFS on sparc: 10 of 20 tests failed

2010-08-07 Thread Mark Purcell
On Sunday 08 August 2010 04:42:21 Cyril Brulebois wrote:
> | 10 of 20 tests failed

KiBi,

Thanks for the report.

This is a pain as we have turned on the check tests target in -2, and it is 
only failing on sparc with a bus error, so I suspect it isn't the code, but 
rather the stress of the tests. I have forwarded to google to see if they have 
a view.

Should I disable tests for sparc only?

Mark


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


Bug#592183: linphone does not start (undefined symbol in /usr/lib/liblinphone.so.3)

2010-08-07 Thread Mark Purcell
On Sunday 08 August 2010 10:45:42 Y. Wei wrote:
> ii  libortp8   3.2.1-2   Real-time Transport Protocol 
> stack

Looks like you need to manually upgrade to a more recent libortp8, version 
3.3.2-1 is available in both squeeze and sid.  However this should be 
automatically enabled by the package, so there is an error there...

Mark


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


Bug#591628: FTBFS for mlterm

2010-08-07 Thread أحمد المحمودي
On Sun, Aug 08, 2010 at 05:43:28AM +0200, Rolf Leggewie wrote:
> After reading the wiki and the thread in the mailing list it's my
> understanding that there's currently nothing I can do.  I cannot drop
> the la-file.
---end quoted text---

I think you can empty the dependency_libs field in .la file, as 
mentioned in the wiki. That too fixes the FTBFS (just tried it now)

-- 
 ‎أحمد المحمودي (Ahmed El-Mahmoudy)
  Digital design engineer
 GPG KeyID: 0xEDDDA1B7
 GPG Fingerprint: 8206 A196 2084 7E6D 0DF8  B176 BC19 6A94 EDDD A1B7


signature.asc
Description: Digital signature


Bug#591775: firmware-ipw2x00: WEP does not work with ipw2200 firmware v3.1

2010-08-07 Thread Ben Hutchings
On Thu, 2010-08-05 at 07:46 -0500, Ryan J Nicholson wrote:
> Package: firmware-ipw2x00
> Version: 0.26
> 
> Package `firmware-ipw2x00' contains a firmware version that breaks WEP on
> the Intel Pro Wireless 2200 in my ThinkPad T43.
> 
> Module ipw2200 loads and detects the interface, but does not connect to
> WEP networks (when configured with iwconfig, or using NetworkManager
> applet). The card works on unencrypted networks. (I was not able to test
> on a WPA-secured network.)
> 
> The package description claims to contain v3.0 firmware. However, taking
> the mdsum shows that `firmware-ipw2x00' contains v3.1 firmware.
[...]

I don't know why the version in the description was not updated, but
this change was made quite some time ago:

> r13279 | maks | 2009-03-27 16:37:41 + (Fri, 27 Mar 2009) | 3 lines
> 
> Update Intel Pro 2200/2915 firwmare, version 3.1
> 
> license didn't change yet, no changelog for firmware changes..

I find it hard to believe that this version breaks the use of WEP in
general, as this would surely have been noticed earlier.

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#591628: 591628 blocking on other bugs

2010-08-07 Thread Rolf Leggewie
block 591628 by 590410 590385 590392
thank you

RC bugs for scim-canna, scim-skk and scim-prime have already been filed.
 Blocking on them.



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



Bug#591628: FTBFS for mlterm

2010-08-07 Thread Rolf Leggewie
On 08.08.2010 04:45, أحمد المحمودي wrote:
> [1] http://wiki.debian.org/ReleaseGoals/LAFileRemoval


Ahmed,

thank you for the quick reply and the pointer to the wiki.

After reading the wiki and the thread in the mailing list it's my
understanding that there's currently nothing I can do.  I cannot drop
the la-file.

http://alius.ayous.org/~aba/la-view.txt:
scim: dependency_libs depended-on (scim-anthy scim-canna scim-prime
scim-skk)

scim-anthy has already been fixed, I know that much.  But the others
still have their la-files.

http://packages.debian.org/sid/i386/scim-canna/filelist
http://packages.debian.org/sid/i386/scim-prime/filelist
http://packages.debian.org/sid/i386/scim-skk/filelist

Regards

Rolf



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



Bug#591970: Debian package available

2010-08-07 Thread Adam Mishcon
Thomas,

I didn't realize that. We'd like to get you all the support we can, as long as 
it mask sense.  Let me check with the team. It's definitely important to us to 
do what we can. 

~ Adam

On Aug 7, 2010, at 5:43 AM, "Thomas Goirand"  wrote:

> 
>> Thomas,
>> 
>> Because of the nature of contemporary cross-browser support, we often
>> address version support with fixes that are rolled into updated versions.
>> It's really not possible for us to continue version support for each
>> subversion independently.
>> 
>> ~ Adam
> 
> Adam,
> 
> What you just said above is truth only for windows platforms, in Debian,
> browsers will NOT evolved, and software are fixed with a single version
> for the life of the distribution. In the case of Debian, you can
> reasonably expect Squeeze to last for something like 3 years. Now, if
> you are telling me that you will NOT bring any support if there's an
> issue that needs to be fixed, then I'll reverse and remove the
> libjs-extjs package from Debian. Please let me know, this is very
> important!
> 
> It has been announce yesterday at the Debconf 10 in NYC that Squeeze
> has been frozen: no new version of any software can get in now.
> 
> Now, to illustrate what I just wrote above, we got a first issue to
> address with version 3.0.3, and I cannot upgrade to 3.2.1, as Squeeze
> is frozen. Please visit this URL:
> 
> http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=libjs-extjs
> 
> I didn't spot it, but your app is embedding SWFUpload.
> 
> First of all, I have to say that embedding a foreign library that is
> with a different license and author is a very bad practice. I would
> push you to REMOVE it from future release. But that's not my point
> here. I wanted to ask if it was ok if I remove completely the folder
> from the Debian package. FYI, I'm talking about what is in
> examples/image-organizer/SWFUpload/. As this is in the example folder,
> I guess that it is ok to just delete the full folder. I might work on
> packaging SWFUpload separately, but that's another story.
> 
> Do you know if there are anything of the same kind in your software?
> I really wouldn't like if this happened again. Your example folder
> is quite big, and it would be a big task to search for anything
> else. As it is right now, if you can't tell me 100% that there is
> no other things that were imported, that's ok, but I really got to
> know so that I can either remove them or list them in
> debian/copyright.
> 
> Best Regards,
> 
>Thomas Goirand
> 
> -- 
> Thomas Goirand
> GPLHost CEO
> Phone numbers: +1 302 213 1611 (USA) / +33 177 62 77 34 (France)
> +44 8449 108 864 (UK) / +61 28061 7698 (Australia)
> Web: http://www.gplhost.com
> GPLHost:>_ Open source hosting worldwide
> Web spaces featuring GPL control panel and Xen VPS
> Locations in Singapore, Sydney, Seattle, Florida, Paris, London,
> Barcelona, Israel and Malaysia
> 
> ==[ NOTE ]==
> 
> To enable our company to support you effectively and promptly, please:
> 1- If you are our existing customer, please use our support ticket
>   system as much as possible.
> 2- Get in touch with any of us using instant messenger at
>   http://www.gplhost.com/gplhost-contact.html
> 3- Please write to support at gplhost.com and not to any other email
>   address, so any email request will be managed as a support ticket
>   by our system. The old info at gplhost.com email is not to be used
>   anymore.
> 
> 



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



Bug#592194: chmsee: New upstream version 1.2.0

2010-08-07 Thread Julian Moreno Patiño
Package: chmsee
Version: 1.1.0-1
Severity: wishlist
Tags: squeeze

Hi,

There's a new upstream version 1.2.0.



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

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

Versions of packages chmsee depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libchm1 2:0.40-3 library for dealing with Microsoft
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.0-2  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.4.4-7GCC support library
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libnspr4-0d 4.8.4-2  NetScape Portable Runtime Library
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libstdc++6  4.4.4-7  The GNU Standard C++ Library v3
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  xulrunner-1.9.1 1.9.1.10-1   XUL + XPCOM application runner

chmsee recommends no packages.

chmsee 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#541044: RM: migemo-perl -- RoQA; unmaintained, low popcon, replaced by migemo

2010-08-07 Thread Ansgar Burchardt
reassign 541044 ftp.debian.org
retitle  541044 RM: migemo-perl -- RoQA; unmaintained, low popcon, replaced by 
migemo
user ftp.debian@packages.debian.org
usertag  541044 + remove
thanks

Hi,

please remove migemo-perl from Debian.  It has been orphaned for almost
a year, is replaced by migemo (a newer implementation in ruby) and does
have a low popcon: 16 for migemo-perl and 35 for
liblingua-romkan-perl. vote is even lower: only 1 (6).

Regards,
Ansgar



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



Bug#592193: ITP: libdevice-usb-perl -- Perl module to access USB devices using libusb

2010-08-07 Thread Tim Retout
Package: wnpp
Owner: Tim Retout 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org,debian-p...@lists.debian.org

* Package name: libdevice-usb-perl
  Version : 0.35
  Upstream Author : G. Wade Johnson 
* URL : http://search.cpan.org/dist/Device-USB/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module to access USB devices using libusb

Device::USB provides a Perl interface to the C library libusb. This library
supports a relatively full set of functionality to access a USB device. In
addition, Device::USB provides a few convenience features that are intended
to produce a more Perl-ish interface.



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



Bug#591628: FTBFS for mlterm

2010-08-07 Thread أحمد المحمودي
On Sun, Aug 08, 2010 at 02:07:07AM +0200, Rolf Leggewie wrote:
> thank you for reporting this issue.  Is the FTBFS particular to an AMD64
> build host?  I'm sorry, I don't have access to one and as the maintainer
> of scim, I cannot reproduce the problem on my 32bit build host.  Your
> help is appreciated.
---end quoted text---

I got the FTBFS on i386 too. Removing the .la file fixed it. The reason 
I tried removing the .la file is that it is a release goal [1]

[1] http://wiki.debian.org/ReleaseGoals/LAFileRemoval

-- 
 ‎أحمد المحمودي (Ahmed El-Mahmoudy)
  Digital design engineer
 GPG KeyID: 0xEDDDA1B7
 GPG Fingerprint: 8206 A196 2084 7E6D 0DF8  B176 BC19 6A94 EDDD A1B7


signature.asc
Description: Digital signature


Bug#592187: Bug#576838: virtio network crashes again

2010-08-07 Thread Ben Hutchings
This is not the same bug as was originally reported, which is that
virtio_net failed to retry refilling its RX buffer ring.  That is
definitely fixed.  So I'm treating this as a new bug report, #592187.

On Sat, 2010-08-07 at 18:17 +0200, Lukas Kolbe wrote:
> Am Samstag, den 07.08.2010, 12:18 +0100 schrieb Ben Hutchings:
> > On Sat, 2010-08-07 at 11:21 +0200, Lukas Kolbe wrote:
> > > Hi,
> > > 
> > > I sent this earlier today but the bug was archived so it didn't appear
> > > anywhere, hence the resend.
> > > 
> > > I believe this issue is not fixed at all in 2.6.32-18. We have seen this
> > > behaviour in various kvm guests using virtio_net with the same kernel in
> > > the guest only minutes after starting the nightly backup (rdiff-backup
> > > to an nfs-volume on a remote server), eventually leading to a
> > > non-functional network. Often, the machines even do not reboot and hang
> > > instead. Using the rtl8139 instead of virtio helps, but that's really
> > > only a clumsy workaround.
> > [...]
> > 
> > I think you need to give your guests more memory.
> 
> They all have between 512M and 2G - and it happens to all of them using
> virtio_net, and none of them using rtl8139 as a network driver,
> reproducibly.

The RTL8139 hardware uses a single fixed RX DMA buffer.  The virtio
'hardware' allows the host to write into RX buffers anywhere in guest
memory.  This results in very different allocation patterns.

Please try specifying 'e1000' hardware, i.e. an Intel gigabit
controller.  I think the e1000 driver will have a similar allocation
pattern to virtio_net, so you can see whether it also triggers
allocation failures and a network stall in the guest.

Also, please test Linux 2.6.35 in the guest.  This is packaged in the
'experimental' suite.

[...]
> If it would be an OOM situation, wouldn't the OOM-killer be supposed to
> kick in?
[...]

The log you sent shows failure to allocate memory in an 'atomic' context
where there is no opportunity to wait for pages to be swapped out.  The
OOM killer isn't triggered until the system is running out of memory
despite swapping out pages.

Also, I note that following the failure of virtio_net to refill its RX
buffer ring, I see failures to allocate buffers for sending TCP ACKs.
So the guest drops the ACKs, and that TCP connection will stall
temporarily (until the peer re-sends the unacknowledged packets).

I also see 'nfs: server fileserver.backup.TechFak.Uni-Bielefeld.DE not
responding, still trying'.  This suggests that the allocation failure in
virtio_net has resulted in dropping packets from the NFS server.  And it
just makes matters worse as it becomes impossible to free memory by
flushing out buffers over NFS!

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#591805: gitk: old version in unstable is not installable

2010-08-07 Thread Jonathan Nieder
reassign 591805 ftp.debian.org
retitle 591805 RM: git-core [all] -- NVIU
quit

Hi FTP team,

Ralf Treinen wrote:

> gitk in version 1:1.7.0.4-1 is not installable in sid on any
> architecture at least since June 21.

That is from the source package rename.

Gerrit is on vacation now (see debian-private) but this removal is
almost certainly the right thing to do.

gitk 1.7.1 (which should be left alone) is in unstable with a
different source package name.



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



Bug#592192: rheolef-runtime: ..tries to overwrite '/usr/bin/proj' in package proj-bin 4.7.0-1

2010-08-07 Thread Arnt Karlsen
Package: rheolef-runtime
Version: 5.89-1_i386
Severity: normal


...aptitude loop:
Press return to continue.

(Reading database ... 478639 files and directories currently installed.)
Unpacking rheolef-runtime (from .../rheolef-runtime_5.89-1_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/rheolef-runtime_5.89-1_i386.deb 
(--unpack):
 trying to overwrite '/usr/bin/proj', which is also in package proj-bin 4.7.0-1
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/rheolef-runtime_5.89-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Press return to continue.

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

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

Versions of packages rheolef-runtime depends on:
ii  gnuplot   4.4.0-1A command-line driven interactive 
ii  graphicsmagick-imagemagick-co 1.3.12-1   image processing tools providing I
ii  libamd2.2.0   1:3.4.0-2  approximate minimum degree orderin
ii  libatlas3gf-base [libblas.so. 3.8.3-24   Automatically Tuned Linear Algebra
ii  libblas3gf [libblas.so.3gf]   1.2-7  Basic Linear Algebra Reference imp
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.4-8  GCC support library
ii  librheolef5.895.89-1 Rheolef: shared library
ii  libumfpack5.4.0   1:3.4.0-2  sparse LU factorization library
ii  vtk-tcl   5.4.2-7+b1 Tcl bindings for VTK

Versions of packages rheolef-runtime recommends:
ii  ffmpeg4:0.5.2-2  multimedia player, server and enco
pn  librheolef-dev (no description available)
ii  librheolef-doc5.89-1 Rheolef: documentation
pn  mayavi (no description available)
ii  mayavi2   3.3.2-3A scientific visualization package
ii  paraview  3.8.0-1dynamic libraries for Paraview
pn  plotmtv(no description available)

rheolef-runtime 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#592191: libluminate-dev: Depends on non-existent libpetsc3.1.0-dev

2010-08-07 Thread Adam D. Barratt
Package: libluminate-dev
Version: 0.11.0-6
Severity: serious

Hi,

libluminate-dev depends on libpetsc3.1.0-dev, which does not exist in the
archive; presumably this should be libpetsc3.1-dev.

Regards,

Adam




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



Bug#542521: bug update

2010-08-07 Thread Roberto C . Sánchez
On Thu, Aug 05, 2010 at 06:14:13PM -0400, Paul Wouters wrote:
>
> The reason for not enabling USE_KERNEL, is that when they merged the
> pppol2tp kernel module into the mainline kernel, they changed it
> enough that it needs fixing in xl2tpd.
>
Paul,

Thanks for commenting on this issue.  Hopefully it will be resolved in a
future release of xl2tpd.

Regards,

-Roberto

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Bug#592190: ITP: libterm-sk-perl -- Perl extension for displaying a progress indicator on a terminal

2010-08-07 Thread Carlo Segre
Package: wnpp
Severity: wishlist
Owner: Carlo Segre 


* Package name: libterm-sk-perl
  Version : 0.06
  Upstream Author : Klaus Eichner 
* URL : http://search.cpan.org/dist/Term-Sk/
* License : Artistic
  Programming Lang: Perl
  Description : Perl extension for displaying a progress indicator on a 
terminal

 Term::Sk is a class to implement a progress indicator ("Sk" is a short form
 for "Show Key").  This is used to provide immediate feedback for long
 running processes.



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



Bug#592189: kdelibs-data: ..tries to overwrite '/usr/share/doc/kde/HTML/en/common/6.png' in package kdelibs5-data 4:4.4.5-1

2010-08-07 Thread Arnt Karlsen
Package: kdelibs-data
Version: 4:3.5.10.dfsg.1-4
Severity: normal


...apt aptitude loop:
Press return to continue.

(Reading database ... 450398 files and directories currently installed.)
Preparing to replace kdelibs-data 4:3.5.10.dfsg.1-3 (using 
.../kdelibs-data_4%3a3.5.10.dfsg.1-4_all.deb) ...
Unpacking replacement kdelibs-data ...
dpkg: error processing 
/var/cache/apt/archives/kdelibs-data_4%3a3.5.10.dfsg.1-4_all.deb (--unpack):
 trying to overwrite '/usr/share/doc/kde/HTML/en/common/6.png', which is also 
in package kdelibs5-data 4:4.4.5-1
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Processing triggers for gnome-menus ...
Processing triggers for desktop-file-utils ...
Errors were encountered while processing:
 /var/cache/apt/archives/kdelibs-data_4%3a3.5.10.dfsg.1-4_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Press return to continue.



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
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 kdelibs-data depends on:
ii  hicolor-icon-theme0.11-1 default fallback theme for FreeDes

kdelibs-data recommends no packages.

kdelibs-data 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#592188: [I18N:es] Updated spanish translation

2010-08-07 Thread Javier Fernandez-Sanguino Pen~a
Package: console-data
Version: 2:1.10-4
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I'm attaching a *reviewed* version of the PO translation of this package into
Spanish. It seems that this translation was taken over by a different
translator a while back (in version 2:1.07, year 2008) without me noticing. 

That translator did not send his translation for review to the Spanish mailing
list and, upon review, there are quite some inconsistencies that I would
appreciate if they were fixed.

As I currently manage the translation of iso-codes I'm setting myself as
translator.  I would appreciate, when adding updated translations from
new translators that are *not* the last-translator either the last-translator
was notified to prevent unreviewed translations to creeping into the
system.

Best regards


Javier

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

iD8DBQFMXg+lsandgtyBSwkRApqnAJwLEXWn5sZdKP0Jt0zQu/GYRBEvUACfRdlm
rK2EpjPSts/hLegfsTQKZzU=
=iY09
-END PGP SIGNATURE-
#
# console-data translation to Spanish
# Copyright (C) 2004 Software in the Public Interest
# This file is distributed under the same license as the console-data package.
#
# Changes:
# - Initial translation
#   Carlos Valdivia Yagüe , 2003
# - Revision
#   Javier Fernandez-Sanguino Peña , 2004
#   Diego Lucio D'Onofrio , 2008
#
#  Traductores, si no conoce el formato PO, merece la pena leer la
#  documentación de gettext, especialmente las secciones dedicadas a este
#  formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
#   http://www.debian.org/intl/spanish/coordinacion
#   especialmente las notas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: console-data\n"
"Report-Msgid-Bugs-To: console-d...@packages.debian.org\n"
"POT-Creation-Date: 2009-05-08 10:47+0200\n"
"PO-Revision-Date: 2010-08-08 03:55+0200\n"
"Last-Translator: Javier Fernández-Sanguino \n"
"Language-Team: Debian L10n Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-amiga.templates:1001
#: ../console-keymaps-at.templates:1001
#: ../console-keymaps-atari.templates:1001
#: ../console-keymaps-sun.templates:1001 ../console-keymaps-usb.templates:1001
#: ../console-keymaps-dec.templates:1001
msgid "American English"
msgstr "Inglés estadounidense"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Belarusian"
msgstr "Bielorruso"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001 ../console-keymaps-usb.templates:1001
msgid "Belgian"
msgstr "Belga"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Brazilian (ABNT2 layout)"
msgstr "Brasileño (variante ABNT2)"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Brazilian (EUA layout)"
msgstr "Brasileño (variante EUA)"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
#: ../console-keymaps-atari.templates:1001
#: ../console-keymaps-sun.templates:1001 ../console-keymaps-usb.templates:1001
msgid "British English"
msgstr "Inglés británico"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Bulgarian"
msgstr "Búlgaro"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Canadian Multilingual"
msgstr "Canadiense multilingüe"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Croatian"
msgstr "Croata"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001 ../console-keymaps-sun.templates:1001
msgid "Czech"
msgstr "Checo"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001 ../console-keymaps-usb.templates:1001
msgid "Danish"
msgstr "Danés"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001
msgid "Dutch"
msgstr "Holandés"

#. Type: select
#. Choices
#: ../console-keymaps-acorn.templates:1001
#: ../console-keymaps-at.templates:1001 ../console-keymaps-usb.templates:1001
msgid "Dvorak"
msgstr "Dvorak"

#. Type: select

Bug#592186: iso-codes: Updated Spanish translation

2010-08-07 Thread Javier Fernández-Sanguino Peña

Package: iso-codes
Version: 3.17-1
Priority: wishlist 

Please find attached an updated translation of the iso_3166 PO file into
Spanish.

Please commit it to the GIT repo and use it in your next package upload.

Regards

Javier

# Translation of ISO-3166 (country names) to Spanish
#
# This file is distributed under the same license as the iso-codes package.
#
# Copyright (C)
#   Free Software Foundation, Inc., 2001,2003,2004
#   Juan Manuel García Molina , 2001.
#   Alastair McKinstry , 2001.
#   Javier Fernández-Sanguino , 2004-2008, 2010
#
msgid ""
msgstr ""
"Project-Id-Version: iso_3166 3.19\n"
"Report-Msgid-Bugs-To: Debian iso-codes team \n"
"POT-Creation-Date: 2010-02-26 08:22+0100\n"
"PO-Revision-Date: 2010-08-08 03:41+0200\n"
"Last-Translator: Javier Fernández-Sanguino \n"
"Language-Team: Debian Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.3.1\n"
"Plural-Forms: Plural-Forms: nplurals=2; plural=n>1;\n"

#. name for AFG
msgid "Afghanistan"
msgstr "Afganistán"

#. official_name for AFG
msgid "Islamic Republic of Afghanistan"
msgstr "República Islámica de Afganistán"

#. name for ALA
msgid "Åland Islands"
msgstr "Islas Äland"

#. name for ALB
msgid "Albania"
msgstr "Albania"

#. official_name for ALB
msgid "Republic of Albania"
msgstr "República de Albania"

#. name for DZA
msgid "Algeria"
msgstr "Algeria"

#. official_name for DZA
msgid "People's Democratic Republic of Algeria"
msgstr "República Democrática Popular de Argelia"

#. name for ASM
msgid "American Samoa"
msgstr "Samoa Americana"

#. name for AND
msgid "Andorra"
msgstr "Andorra"

#. official_name for AND
msgid "Principality of Andorra"
msgstr "Principado de Andorra"

#. name for AGO
msgid "Angola"
msgstr "Angola"

#. official_name for AGO
msgid "Republic of Angola"
msgstr "República de Angola"

#. name for AIA
msgid "Anguilla"
msgstr "Anguila"

#. name for ATA
msgid "Antarctica"
msgstr "Antártida"

#. name for ATG
msgid "Antigua and Barbuda"
msgstr "Antigua y Barbuda"

#. name for ARG
msgid "Argentina"
msgstr "Argentina"

#. official_name for ARG
msgid "Argentine Republic"
msgstr "República Argentina"

#. name for ARM
msgid "Armenia"
msgstr "Armenia"

#. official_name for ARM
msgid "Republic of Armenia"
msgstr "República de Armenia"

#. name for ABW
msgid "Aruba"
msgstr "Aruba"

#. name for AUS
msgid "Australia"
msgstr "Australia"

#. name for AUT
msgid "Austria"
msgstr "Austria"

#. official_name for AUT
msgid "Republic of Austria"
msgstr "República de Austria"

#. name for AZE
msgid "Azerbaijan"
msgstr "Azerbayán"

#. official_name for AZE
msgid "Republic of Azerbaijan"
msgstr "República de Azerbaiyán"

#. name for BHS
msgid "Bahamas"
msgstr "Bahamas"

#. official_name for BHS
msgid "Commonwealth of the Bahamas"
msgstr "Commonwealth de las Bahamas"

#. name for BHR
msgid "Bahrain"
msgstr "Bahrein"

#. official_name for BHR
msgid "Kingdom of Bahrain"
msgstr "Reino de Bahrain"

#. name for BGD
msgid "Bangladesh"
msgstr "Bangladesh"

#. official_name for BGD
msgid "People's Republic of Bangladesh"
msgstr "República Popular de Bangladesh"

#. name for BRB
msgid "Barbados"
msgstr "Barbados"

#. name for BLR
msgid "Belarus"
msgstr "Bielorrusia"

#. official_name for BLR
msgid "Republic of Belarus"
msgstr "República de Bielorrusia"

#. name for BEL
msgid "Belgium"
msgstr "Bélgica"

#. official_name for BEL
msgid "Kingdom of Belgium"
msgstr "Reino de Bélgica"

#. name for BLZ
msgid "Belize"
msgstr "Belice"

#. name for BEN
msgid "Benin"
msgstr "Benín"

#. official_name for BEN
msgid "Republic of Benin"
msgstr "República de Benín"

#. name for BMU
msgid "Bermuda"
msgstr "Islas Bermudas"

#. name for BTN
msgid "Bhutan"
msgstr "Bhután"

#. official_name for BTN
msgid "Kingdom of Bhutan"
msgstr "Reino de Bután"

#. name for BOL
msgid "Bolivia, Plurinational State of"
msgstr "Bolivia, Estado plurinacional de"

#. official_name for BOL
msgid "Plurinational State of Bolivia"
msgstr "Estado plurinacional de Bolivia"

#. common_name for BOL
msgid "Bolivia"
msgstr "Bolivia"

#. name for BIH
msgid "Bosnia and Herzegovina"
msgstr "Bosnia y Herzegovina"

#. official_name for BIH
msgid "Republic of Bosnia and Herzegovina"
msgstr "República de Bosnia y Hercegovina"

#. name for BWA
msgid "Botswana"
msgstr "Botsuana"

#. official_name for BWA
msgid "Republic of Botswana"
msgstr "República de Botsuana"

#. name for BVT
msgid "Bouvet Island"
msgstr "Isla Bouvet"

#. name for BRA
msgid "Brazil"
msgstr "Brasil"

#. official_name for BRA
msgid "Federative Republic of Brazil"
msgstr "República Federativa de Brasil"

#. name for IOT
msgid "British Indian Ocean Territory"
msgstr "Británico del Océano Índico, Territorio"

#. name for BRN
msgid "Brunei Darussalam"
msgstr "Brunei Darussalam"

#. name for BGR
msgid "Bulgaria"
msgstr "Bulgaria"

#. official_name for BGR
msgid "Republic of Bulgaria"
msgstr "República de Bulgaria"

#. name for BFA
ms

Bug#592068: deborphan multiarch issue

2010-08-07 Thread Michael Gilbert
On Sat, 7 Aug 2010 21:34:10 -0400 Michael Gilbert wrote:

> severity 592068 normal
> thanks
> 
> deborphan doesn't actually remove anything.  it's up to the user to
> make an informed decision based on its output.

yikes, this is your package.  i should defer to your judgment on
severity.  please change it back if you really think this is serious.

mike



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



Bug#592068: deborphan multiarch issue

2010-08-07 Thread Michael Gilbert
severity 592068 normal
thanks

deborphan doesn't actually remove anything.  it's up to the user to
make an informed decision based on its output.

mike



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



Bug#561762: many webkit vulnerabilities

2010-08-07 Thread Michael Gilbert
severity 561762 important
thanks

even though kde4libs really needs to be checked against these webkit
issues, it isn't a reason to hold up the release.

mike



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



Bug#592185: adduser: Updated Spanish translation

2010-08-07 Thread Javier Fernández-Sanguino Peña

Package: adduser
Version: 3.112
Priority: wishlist
Tags: patch l10n

Attached is an updated Spanish translation of adduser.

Please use this file for your next package upload.

Javier

# adduer po-debconf translation to Spanish
# This file is distributed under the same license as the adduser package.
#
# Changes:
# - Initial translation
#* Nicolás Lichtmaier
#
# - Revision and update
#   Javier Fernández-Sanguino , 2008, 2010
#
#
#  Traductores, si no conoce el formato PO, merece la pena leer la 
#  documentación de gettext, especialmente las secciones dedicadas a este
#  formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
#   http://www.debian.org/intl/spanish/
#   especialmente las notas y normas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Si tiene dudas o consultas sobre esta traducción consulte con el último
# traductor (campo Last-Translator) y ponga en copia a la lista de
# traducción de Debian al español ()
#
msgid ""
msgstr ""
"Project-Id-Version: adduser\n"
"Report-Msgid-Bugs-To: adduser-de...@lists.alioth.debian.org\n"
"POT-Creation-Date: 2007-01-17 21:50+0100\n"
"PO-Revision-Date: 2010-08-08 03:23+0200\n"
"Last-Translator: Javier Fernández-Sanguino \n"
"Language-Team: Debian Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POFile-SpellExtra: LASTUID all force home Copyright adduser share\n"
"X-POFile-SpellExtra: Bauerschmidt apt system disabled Ian SIG ingroup\n"
"X-POFile-SpellExtra: FIRSTSYSUID LASTSYSGID licenses FIRSTUID Hajek find\n"
"X-POFile-SpellExtra: Murdock uid Maor SHELL group UID copyright\n"
"X-POFile-SpellExtra: FIRSTSYSGID LASTSYSUID create get help intntelo Free\n"
"X-POFile-SpellExtra: perl to only gid usr version LASTGID getprnam\n"
"X-POFile-SpellExtra: FIRSTGID if delgroup Roland fork shell install conf\n"
"X-POFile-SpellExtra: Foundation passwd empty NAMEREGEX PATH GID crontab\n"
"X-POFile-SpellExtra: Guy password lastuid GPL backup mount Ted quiet\n"
"X-POFile-SpellExtra: remove badname deluser miguel gecos common addgroup\n"
"X-POFile-SpellExtra: GECOS firstuid root\n"

#. everyone can issue "--help" and "--version", but only root can go on
#: ../adduser:135
msgid "Only root may add a user or group to the system.\n"
msgstr "Sólo root puede añadir un usuario o un grupo al sistema.\n"

#: ../adduser:158 ../deluser:129
msgid "Only one or two names allowed.\n"
msgstr "Sólo se permiten uno o dos nombres.\n"

#. must be addusertogroup
#: ../adduser:163
msgid "Specify only one name in this mode.\n"
msgstr "Especifique sólo un nombre en este modo.\n"

#: ../adduser:179
msgid "The --group, --ingroup, and --gid options are mutually exclusive.\n"
msgstr "Las opciones --group, --ingroup y --gid son mutuamente excluyentes.\n"

#: ../adduser:184
msgid "The home dir must be an absolute path.\n"
msgstr "El directorio personal debe ser una ruta absoluta.\n"

#: ../adduser:188
msgid "Warning: The home dir you specified already exists.\n"
msgstr "Aviso: El directorio personal que especificó ya existe.\n"

#: ../adduser:190
msgid "Warning: The home dir you specified does not exist.\n"
msgstr "Aviso: El directorio personal que especificó no existe.\n"

#: ../adduser:252
#, perl-format
msgid "The group `%s' already exists as a system group. Exiting.\n"
msgstr "El grupo `%s' ya existe como grupo del sistema. Saliendo.\n"

#: ../adduser:258 ../adduser:268
#, perl-format
msgid "The group `%s' already exists and is not a system group.\n"
msgstr "El grupo `%s' ya existe y no es un grupo del sistema.\n"

#: ../adduser:264
#, perl-format
msgid "The group `%s' already exists, but has a different GID. Exiting.\n"
msgstr "El grupo `%s' ya existe, pero tiene un GID distinto. Saliendo.\n"

#: ../adduser:270 ../adduser:300
#, perl-format
msgid "The GID `%s' is already in use.\n"
msgstr "Ya se está utilizando el GID `%s'.\n"

#: ../adduser:278
#, perl-format
msgid ""
"No GID is available in the range %d-%d (FIRST_SYS_GID - LAST_SYS_GID).\n"
msgstr ""
"No hay un GID disponible en el rango %d-%d (FIRST_SYS_GID - LAST_SYS_GID).\n"

#: ../adduser:279 ../adduser:309
#, perl-format
msgid "The group `%s' was not created.\n"
msgstr "No se ha creado el grupo `%s'.\n"

#: ../adduser:284 ../adduser:313
#, perl-format
msgid "Adding group `%s' (GID %d) ...\n"
msgstr "Añadiendo el grupo `%s' (GID %d) ...\n"

#: ../adduser:289 ../adduser:318 ../adduser:350 ../deluser:333 ../deluser:369
#: ../deluser:406
msgid "Done.\n"
msgstr "Hecho.\n"

#: ../adduser:298 ../adduser:749
#, perl-format
msgid "The group `%s' already exists.\n"
msgstr "El grupo `

Bug#592055: xpdf: freeze exception

2010-08-07 Thread Osamu Aoki
Hi,

On Sat, Aug 07, 2010 at 07:23:26PM +0100, Neil McGovern wrote:
> Now I'm kinda confused. 3.02-9 is in freeze-exceptions and will be
> entering testing shortly. Additionally, the patch provided by Michael
> Gilbert seems fine.

Thanks.

I see "Ignoring block request by freeze, due to unblock request by
freeze-exception".
 
> However, the large diff as produced on the git repo won't be ok.

I should have posted to BUG list 

$ git diff -r osamu/debian/3.02-9..master|diffstat|tail -1
 23 files changed, 214 insertions(+), 186 deletions(-)

The tag for actual 3.02-9 release was osamu/debian/3.02-9.

This was because I had to follow:
 * Michael's direction not to change/rebase existing git repo 
   contents/history.
 * Michael only had debian directory content in this git repo.
 * I had normal full source + pristine tar locally in my git
   which I created to review for sponsoring.
 * Michael asked me to commit over existing repo.
 * I renamed local debian/3.02-9 to osamu/debian/3.02-9 and committed.

> Does that make more sense?

I hope now it makes sense to you.  Thank you for your patience.

I also hope that Michael agrees that git repo should not be a simple
unmanaged commit history but something for people to review changes in
meaningful way.  If trying something, we should use topic branch.  main
should be kept clean by merging only clean history.  I think bad broken
commits to a small exposure git repo like xpdf can be rebased to ease
future review after mail exchanges among users.

Osamu




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



Bug#591652: Rebuild will fix, but not yet

2010-08-07 Thread Scott Kitterman
Rebuilding with the current dh_python3 will fix this, but there's no point in 
binNMU since a sourceful upload is needed to fix 591957.


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


Bug#592183: linphone does not start (undefined symbol in /usr/lib/liblinphone.so.3)

2010-08-07 Thread Y. Wei
Package: linphone
Version: 3.3.2-1
Severity: important
Tags: sid squeeze


Hi,

This package doesn't seem to be packaged right. When starting the error message
is:

$ linphonec
ALSA lib conf.c:4600:(snd_config_expand) Unknown parameters 0
ALSA lib control.c:902:(snd_ctl_open_noupdate) Invalid CTL default:0
linphonec: symbol lookup error: /usr/lib/liblinphone.so.3: undefined symbol: 
ortp_file_exist


regards,
-yichun


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

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

Versions of packages linphone depends on:
ii  libasound2 1.0.22-2  shared library for ALSA applicatio
ii  libatk1.0-01.30.0-1  The ATK accessibility toolkit
ii  libavcodec52   5:0.6~svn20100726-0.0 library to encode decode multimedi
ii  libc6  2.10.2-6  Embedded GNU C Library: Shared lib
ii  libcairo2  1.8.10-4  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.8.0-2.1 generic font configuration library
ii  libfreetype6   2.3.11-1  FreeType 2 font engine, shared lib
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.24.1-1  The GLib library of C routines
ii  libgsm11.0.13-3  Shared libraries for GSM speech co
ii  libgtk2.0-02.20.1-1  The GTK+ graphical user interface
ii  liblinphone3   3.3.2-1   linphone's shared library part (su
ii  libmediastreamer0  3.3.2-1   linphone web phone's media library
ii  libogg01.2.0~dfsg-1  Ogg bitstream library
ii  libortp8   3.2.1-2   Real-time Transport Protocol stack
ii  libpango1.0-0  1.28.0-1  Layout and rendering of internatio
ii  libsdl1.2debian1.2.14-6  Simple DirectMedia Layer
ii  libspeex1  1.2~rc1-1 The Speex codec runtime library
ii  libspeexdsp1   1.2~rc1-1 The Speex extended runtime library
ii  libswscale05:0.6~svn20100726-0.0 ffmpeg video scaling library
ii  libtheora0 1.1.1+dfsg.1-3The Theora Video Compression Codec
ii  libx11-6   2:1.3.3-3 X11 client-side library
ii  libxml22.7.7.dfsg-2  GNOME XML library
ii  linphone-nox   3.3.2-1   SIP softphone - console-only clien

linphone recommends no packages.

Versions of packages linphone suggests:
ii  yelp 2.30.1+webkit-1 Help browser for GNOME

-- 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#580806: linphonec does not start

2010-08-07 Thread Y. Wei
Package: linphone-nox
Version: 3.3.2-1
Severity: normal


Hi,

This package doesn't seems to be packaged/compiled completely.

regards,


$ linphonec
ALSA lib conf.c:4600:(snd_config_expand) Unknown parameters 0
ALSA lib control.c:902:(snd_ctl_open_noupdate) Invalid CTL default:0
linphonec: symbol lookup error: /usr/lib/liblinphone.so.3: undefined symbol:
ortp_file_exist


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

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

Versions of packages linphone-nox depends on:
ii  bind9-host [host]  1:9.7.0.dfsg.P1-1 Version of 'host' bundled with BIN
ii  libc6  2.10.2-6  Embedded GNU C Library: Shared lib
ii  liblinphone3   3.3.2-1   linphone's shared library part (su
ii  libmediastreamer0  3.3.2-1   linphone web phone's media library
ii  libncurses55.7+20100313-2shared libraries for terminal hand
ii  libortp8   3.2.1-2   Real-time Transport Protocol stack
ii  libosip2-4 3.3.0-1   Session Initiation Protocol (SIP)
ii  libreadline6   6.1-1 GNU readline and history libraries
ii  libspeex1  1.2~rc1-1 The Speex codec runtime library
ii  linphone-common3.3.2-1   Shared components of the linphone

linphone-nox recommends no packages.

linphone-nox 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#592170: [Debconf-team] Bug#592170: please add debconf delegates to intro/organisation

2010-08-07 Thread Michael Schultheiss
Holger Levsen wrote:
> Marga remembered that she, Ganneff and me (and probably others (*))
> were delegates, but I couldnt find such a mail from aj to 
> d-d-a now, which is no surprise to me, given that DebConf
> has just ended. 

I found AJ's delegation at:

http://lists.debian.org/debian-project/2006/06/msg00265.html
http://lists.debconf.org/lurker/message/20060622.150218.0fd6bc26.en.html



signature.asc
Description: Digital signature


Bug#450713: xinput-calibrator in mentors

2010-08-07 Thread Mattia Dongili
On Sat, Aug 07, 2010 at 09:12:23PM +0200, Tias wrote:
> Hey,
> 
> There is now a generic touchscreen calibration utility that can
> calibrate evtouch, as well as evdev (the now preferred upstream
> driver for touchscreens) and others.
> 
> I've uploaded it to mentors and mailed:
> http://lists.debian.org/debian-mentors/2010/08/msg00066.html
> 
> You can download a binary deb package on the website:
> http://github.com/tias/xinput_calibrator/downloads
> 
> More info on the homepage:
> http://www.freedesktop.org/wiki/Software/xinput_calibrator
> 
> 
> It would be great if somebody from the X Strike Force could take a
> look at it!

thanks for packaging this calibration utility. Hopeully it'll make
moving away from evtouch easier.

from a very quick look the package seems alright. I'll see if I can
spend more time on it later and upload the package. If anyone has
time to look at it before I do please go ahead and don't wait for me.

thanks
-- 
mattia
:wq!



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



Bug#592182: ant-contrib: missing for task

2010-08-07 Thread Michael Gilbert
package: ant-contrib
severity: normal
tags: patch

antcontrib.properties is missing an entry for the 'for' task.  see
attached patch that fixes the problem.

best wishes,
mike


ant-contrib.debdiff
Description: Binary data


Bug#592181: sat4j: Possibly breaks eclipse-platform without declaring it

2010-08-07 Thread Niels Thykier
Package: sat4j
Version: 2.2.0-2
Severity: serious

Hi Michael Tautschnig, Release people and Java people.

In light of #587657, I have decided to file an RC bug against sat4j to prevent
it from migrating to testing and quite possibly breaking eclipse-platform in
testing.

I strongly suspect that eclipse is quite frankly unable to deal with OSGi 
bundles
(jar files with OSGi metadata in their manifests) changing their 
"Bundle-Version"
entry if they are listed in the bundles.info file that eclipse uses to register
some of these bundles (sat4j being one of them).

#587657 started out being a problem with jetty (that bumped its version in a
recent upload) for some users; after jetty migrated to testing it was silent
for a short while. Shortly after the sat4j upload we got a new report of
eclipse acting up and sat4j appears to have changed its Bundle-Version in the
2.2.0-2 version currently available in unstable.
  I am currently having the person test if reverting sat4j to the 2.2.0-1 in
testing (and correcting the bundles.info which gets messed up) solves the
issue. I will get back to you when I have more information on that.

If my speculation turns out to be true, then we have a general issue with 
eclipse
that needs to be solved. It is simply too error-prone to rely on maintainers to
remember to bump their "Breaks: eclipse-$part ($version)" every time they update
their package and have us to a Source upload to bump (Build-)Depends.
  "Luckily" most of the Java Team maintained packages have the OSGi metadata
hard-cored and will have to be updated manually, so at the current time these
packages should not break eclipse (provided people just leave it alone for
now).

I suspect we can solve this by using file-triggers and a script to manually 
update
bundles.info, but it is not something I can promise to get done and have well 
testing
for Squeeze, so I would much rather just do one more upload of eclipse 3.5.2, 
bumping
the (Build-)Depends for Squeeze and then work on this script for Squeeze + 1.
  Obviously I would need a freeze exception for eclipse and I will file that
separated when we have verified the issue and prepared the issue.

I would like to apologize in advance if my assertions turn out to be incorrect 
and
the issue turn out to be unrelated to sat4j and eclipse. I decided to take the 
"rather
safe than sorry" approach to possibly breaking eclipse in testing. As I am 
returning
from DebConf10 tomorrow, I may be slow to reply in the next few days.

~Niels

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

Kernel: Linux 2.6.32-trunk-686 (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

Versions of packages sat4j depends on:
ii  default-jre [java6-runtime] 1.6-38   Standard Java or Java compatible R
ii  jarwrapper  0.31 Run executable Java .jar files
ii  openjdk-6-jre [java6-runtim 6b18-1.8.1-1 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [java6-runtim 6.20-dlj-4   Sun Java(TM) Runtime Environment (

sat4j recommends no packages.

sat4j 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#512915: libjs-yui: no source code

2010-08-07 Thread Michael Gilbert
hi,

i've uploaded a yui-builder package to mentors [0], which should now
make it possible to build libjs-yui from source.  however, with the
freeze, i'm not sure if it is even possible to get this into the
release.  and even so, the severity of the bug has been downgraded
anyway.

anyway, i'm looking for a sponsor for that package to experimental.

best wishes,
mike

[0] http://mentors.debian.net/debian/pool/main/y/yui-builder



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



Bug#592179: interfaces: Please document bridge options

2010-08-07 Thread Achim Schaefer
Package: ifupdown
Version: 0.6.10
Severity: minor

Hi,

I tried to build a bridge within the interfaces file.
I could not find any hint how to create such a bridge within the manpage.

Please update the manpage to document the bridge options.

Thanks

Achim

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

Kernel: Linux 2.6.34-1-686 (SMP w/3 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 ifupdown depends on:
ii  libc6 2.11.2-2   Embedded GNU C Library: Shared lib
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip
ii  net-tools 1.60-23The NET-3 networking toolkit

ifupdown recommends no packages.

Versions of packages ifupdown suggests:
ii  dhcp3-client  4.1.1-P1-9 ISC DHCP server (transitional pack
ii  iproute   20100519-3 networking and traffic control too
ii  isc-dhcp-client [dhcp3-client 4.1.1-P1-9 ISC DHCP client
ii  ppp   2.4.5-3Point-to-Point Protocol (PPP) - da

-- 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#592162: lxmusic segfaults after starting playback

2010-08-07 Thread Shan-Bin Chen (DreamerC)
Hi,
0.4.4+git20100802-1 was released few days ago.
Please try this.

regards,
--
Shan-Bin Chen (DreamerC) 



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



Bug#592178: debconf: Updated Spanish PO translation

2010-08-07 Thread Javier Fernández-Sanguino Peña

Package: debconf
Version: 1.5.34
Priority: wishlist
Tags: l10n patch

Please find attached an updated PO translation for Debconf. 

Please use it to update the PO file in your next package upload.

Regards

Javier
# debconf es.po
# Copyright (C) 2003 Free Software Foundation, Inc.
# Enrique Zanardi , 2000.
# Jordi Mallach , 2001.
# Carlos Valdivia Yague , 2003.
# Javier Fernandez-Sanguino , 2004-2006, 2010
msgid ""
msgstr ""
"Project-Id-Version: debconf 1.2.39\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-07-11 12:57+0100\n"
"PO-Revision-Date: 2010-08-08 02:33+0200\n"
"Last-Translator: Javier Fernandez-Sanguino \n"
"Language-Team: Debian Spanish Team \n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POFile-SpellExtra: debconf all drop frontend unseen utils Sigils apt\n"
"X-POFile-SpellExtra: Template owner force ReadLine desactualizadas TERM\n"
"X-POFile-SpellExtra: preconfigurar reload outdated ll priority re only\n"
"X-POFile-SpellExtra: Smileys emacs búfers po localhost templates Term http\n"
"X-POFile-SpellExtra: communicate Element elimínelas Dialog debs dpkg\n"
"X-POFile-SpellExtra: mergetemplate Debconf desactualizado extracttemplates\n"
"X-POFile-SpellExtra: default stdin old desactualizada Preconfigurando\n"
"X-POFile-SpellExtra: dialog grábelo root búfer\n"

#: ../Debconf/AutoSelect.pm:76
#, perl-format
msgid "falling back to frontend: %s"
msgstr "probando ahora la interfaz: %s"

#: ../Debconf/AutoSelect.pm:84
#, perl-format
msgid "unable to initialize frontend: %s"
msgstr "no se pudo inicializar la interfaz: %s"

#: ../Debconf/AutoSelect.pm:90
#, perl-format
msgid "Unable to start a frontend: %s"
msgstr "No se puede arrancar una interfaz: %s"

#: ../Debconf/Config.pm:130
msgid "Config database not specified in config file."
msgstr ""
"No se ha especificado una base de datos de configuración en el fichero de "
"configuración."

#: ../Debconf/Config.pm:134
msgid "Template database not specified in config file."
msgstr ""
"No se ha especificado una base de datos de plantillas en el fichero de "
"configuración."

#: ../Debconf/Config.pm:139
msgid ""
"The Sigils and Smileys options in the config file are no longer used. Please "
"remove them."
msgstr ""
"Ya no se utilizan las opciones «Sigils» y «Smileys» en el fichero de "
"configuración. Por favor, elimínelas."

#: ../Debconf/Config.pm:153
#, perl-format
msgid "Problem setting up the database defined by stanza %s of %s."
msgstr ""
"Se produjo un problema al configurar la base de datos definida por la "
"instancia %s de %s."

#: ../Debconf/Config.pm:228
msgid ""
"  -f,  --frontend\t\tSpecify debconf frontend to use.\n"
"  -p,  --priority\t\tSpecify minimum priority question to show.\n"
"   --terse\t\t\tEnable terse mode.\n"
msgstr ""
"  -f,  --frontend\t\tIndica a debconf la interfaz que debe usar.\n"
"  -p,  --priority\t\tEspecifica la prioridad mínima a mostrar.\n"
"   --terse\t\t\tActiva el modo resumido.\n"

#: ../Debconf/Config.pm:308
#, perl-format
msgid "Ignoring invalid priority \"%s\""
msgstr "Se ignorará la prioridad inválida «%s»"

#: ../Debconf/Config.pm:309
#, perl-format
msgid "Valid priorities are: %s"
msgstr "Las prioridades válidas son: %s"

#: ../Debconf/Element/Editor/Boolean.pm:30
#: ../Debconf/Element/Editor/Multiselect.pm:31
#: ../Debconf/Element/Editor/Select.pm:31
msgid "Choices"
msgstr "Opciones"

#: ../Debconf/Element/Editor/Boolean.pm:30
#: ../Debconf/Element/Editor/Boolean.pm:36
#: ../Debconf/Element/Editor/Boolean.pm:59
#: ../Debconf/Element/Teletype/Boolean.pm:28
msgid "yes"
msgstr "sí"

#: ../Debconf/Element/Editor/Boolean.pm:30
#: ../Debconf/Element/Editor/Boolean.pm:39
#: ../Debconf/Element/Editor/Boolean.pm:62
#: ../Debconf/Element/Teletype/Boolean.pm:29
msgid "no"
msgstr "no"

#: ../Debconf/Element/Editor/Multiselect.pm:32
msgid ""
"(Enter zero or more items separated by a comma followed by a space (', ').)"
msgstr ""
"(Introduzca cero o más elementos separados por una coma seguida de un "
"espacio (', ').)"

#: ../Debconf/Element/Gnome.pm:182
msgid "_Help"
msgstr "_Ayuda"

#: ../Debconf/Element/Gnome.pm:184
msgid "Help"
msgstr "Ayuda"

#: ../Debconf/Element/Noninteractive/Error.pm:39
msgid ""
"Debconf was not configured to display this error message, so it mailed it to "
"you."
msgstr ""
"Debconf no estaba configurado para mostrar este mensaje de error, así que se "
"la ha enviado por correo."

#: ../Debconf/Element/Noninteractive/Error.pm:63
msgid "Debconf"
msgstr "Debconf"

#: ../Debconf/Element/Noninteractive/Error.pm:86
#, perl-format
msgid "Debconf, running at %s"
msgstr "Debconf, ejecutándose en %s"

#: ../Debconf/Element/Select.pm:95 ../Debconf/Element/Select.pm:110
#, perl-format
msgid ""
"Input value, \"%s\" not found in C choices! This should never happen. "
"Perhaps the templates were incorrectly localized."
msgstr ""
"¡No se encontró el valor introducido «%s» dentro de la opcion

Bug#592138: reportbug: wrong version for release.debian.org/freeze-exception

2010-08-07 Thread Julien Cristau
On Sat, Aug  7, 2010 at 22:50:46 +0200, Sandro Tosi wrote:

> Thanks! Here we go, just ACCEPTED.
> 
Hint added (btw 4.12.5 had missed the freeze deadline, so also needed an
exception).

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#592177: libvirt-bin: starting a network generates iptables errros

2010-08-07 Thread Achim Schaefer
Package: libvirt-bin
Version: 0.8.2-1
Severity: important

Hi,

whenever I try to start a network I get this:
virsh # net-start default
error: Failed to start network default
error: internal error '/sbin/iptables --table filter --delete INPUT 
--in-interface virbr0 --protocol udp --destination-port 69 --jump ACCEPT' 
exited with non-zero status 1 and signal 0: iptables: Bad rule (does a matching 
rule exist in that chain?).

The xml is:
virsh # net-dumpxml default

  default
  e476de92-b114-a4b5-ffa1-7b8026db4f74
  
  
  

  

  


virsh # 

Thanks

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

Kernel: Linux 2.6.34-1-686 (SMP w/3 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 libvirt-bin depends on:
ii  adduser 3.112add and remove users and groups
ii  libavahi-client30.6.27-1 Avahi client library
ii  libavahi-common30.6.27-1 Avahi common library
ii  libblkid1   2.17.2-3.1   block device id library
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libcap-ng0  0.6.4-1  An alternate posix capabilities li
ii  libdevmapper1.02.1  2:1.02.48-2  The Linux Kernel Device Mapper use
ii  libgcrypt11 1.4.5-2  LGPL Crypto library - runtime libr
ii  libgnutls26 2.8.6-1  the GNU TLS library - runtime libr
ii  libnl1  1.1-5library for dealing with netlink s
ii  libparted0debian1   2.3-1The GNU Parted disk partitioning s
ii  libpciaccess0   0.12.0-1 Generic PCI access library for X
ii  libreadline66.1-3GNU readline and history libraries
ii  libsasl2-2  2.1.23.dfsg1-5.1 Cyrus SASL - authentication abstra
ii  libudev0160-1libudev shared library
ii  libuuid12.17.2-3.1   Universally Unique ID library
ii  libvirt00.8.2-1  library for interfacing with diffe
ii  libxenstore3.0  4.0.1~rc5-1  Xenstore communications library fo
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  logrotate   3.7.8-6  Log rotation utility

Versions of packages libvirt-bin recommends:
ii  bridge-utils   1.4-5 Utilities for configuring the Linu
ii  dnsmasq-base   2.55-1A small caching DNS proxy and DHCP
ii  iptables   1.4.8-3   administration tools for packet fi
ii  libxml2-utils  2.7.7.dfsg-4  XML utilities
ii  netcat-openbsd 1.89-4TCP/IP swiss army knife
ii  qemu   0.12.5+dfsg-1 fast processor emulator
ii  qemu-kvm   0.12.4+dfsg-1 Full virtualization on x86 hardwar

Versions of packages libvirt-bin suggests:
ii  policykit-1   0.96-2 framework for managing administrat

-- Configuration Files:
/etc/libvirt/libvirtd.conf changed:
unix_sock_group = "libvirt"
unix_sock_rw_perms = "0770"
auth_unix_ro = "none"
auth_unix_rw = "none"


-- 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#587657: locally installed plugins aren't loaded

2010-08-07 Thread Niels Thykier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

On 2010-08-07 21:04, Robert Ramiega wrote:
> On Sat, Aug 07, 2010 at 02:42:07PM +0200, Niels Thykier wrote:
> 
>> Hi
>>
>> I suspect the issue is that you have sat4j 2.2.0-2 from unstable and
>  well i'm running unstable =o))
>> eclipse has an implicit requirement on the 2.2.0-1 which is in testing.
>> Could you try to downgrade sat4j to 2.2.0-1 from testing and see if that
>> works?
> 
>  Nope. Still no go.
>>
>> After downgrading you may have to manually update the lines starting
>> with org.sat4j in the bundles.info in your ~/.eclipse (the correct lines
>> should be in
>> /usr/lib/eclipse/configuration/org.eclipse.equinox.simpleconfigurator/bundles.info)
> 
> Lines regarding org.sat4j where identical in both bundles.info files =o(
> 

I very much hope you have overlooked something here. This below is from
your ~/.eclipse bundles.info
org.sat4j.core,2.2.0.v20100801,plugins/org.sat4j.core_2.2.0.v20100625.jar,4,false
org.sat4j.pb,2.2.0.v20100801,plugins/org.sat4j.pb_2.2.0.v20100625.jar,4,false

and this is from my /usr/lib/eclipse/.../bundles.info:
org.sat4j.core,2.2.0.v20100625,plugins/org.sat4j.core_2.2.0.v20100625.jar,4,false
org.sat4j.pb,2.2.0.v20100625,plugins/org.sat4j.pb_2.2.0.v20100625.jar,4,false

If you look at the "second" entry (after the first comma) the version
numbers (the date parts) are different. If your
/usr/lib/eclipse/.../bundles.info does not have those exact lines that
mine have, either you do not have eclipse 3.5.2-5 /or/ you (or something
else on your system) has run eclipse as root (or a user with write
access to /usr/lib/eclipse).

Regardless, reinstall eclipse-platform to restore
/usr/lib/eclipse/.../bundles.info if it truly does differ (you may want
to reinstall all eclipse-* packages as well in that case) and update
your ~/.eclipse/.../bundles.info so they have the same version as mine
did/the restored bundles.info has.

~Niels

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

iEYEAREIAAYFAkxd+k0ACgkQVCqoiq1YlqzaqQCfZlsHqaS2lQlftUVMmcoMQUfv
vs8AnidVVav4CipIFyunxD/UMxNsW1E4
=zw0M
-END PGP SIGNATURE-



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



Bug#571427: op-panel: FTBFS: Undefined subroutine &SWF::Constants::SWFTEXTFIELD_USEFONT

2010-08-07 Thread Gabriele Giacone
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
I setup a minimal asterisk and op-panel works fine. I see no differences
between current version and the new one.

The issue is the flash plugin: op-panel works with flashplugin-nonfree
but with gnash not.
It doesn't show lines in use and also behaves as you can see at [0]:
with gnash, after 5 seconds screen starts blanking.

I'd consider this bug closed because it doesn't FTBFS anymore.
However we can't use it with any flash plugins in main.

Tzafrir, if you want to take a look and upload it, [1] or svn.
Otherwise someone could change it to make it working with gnash or we
could wait for gnash 0.8.8 and see if it works.


Thanks,
Gabriele


[0] http://www.asternic.org/demo.php
[1]
http://mentors.debian.net/debian/pool/main/o/op-panel/op-panel_0.30~dfsg-3.dsc
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkxd+d4ACgkQp3cdCbVcnCsmQACg1Cykp+1DrAI6DLbBe3ykauDA
69UAoJgh29naK1QrzYy7vcxLK8vRxRcT
=zFNz
-END PGP SIGNATURE-



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



Bug#591628: FTBFS for mlterm

2010-08-07 Thread Rolf Leggewie
Hi,

thank you for reporting this issue.  Is the FTBFS particular to an AMD64
build host?  I'm sorry, I don't have access to one and as the maintainer
of scim, I cannot reproduce the problem on my 32bit build host.  Your
help is appreciated.

Regards

Rolf



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



Bug#592176: [I18N:es] Updated spanish translation

2010-08-07 Thread Javier Fernandez-Sanguino Pen~a
Package: debconf
Version: 1.5.34
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please find attached an updated po-debconf translation of this package into
Spanish.

Thanks for including it in your next package upload,

Javier

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

iD8DBQFMXfRSsandgtyBSwkRAquGAKCDNCcxEhCSjlOUxXR4T/VfjPNdewCfSLc2
tKPbhVCNwBCOyO1/Fd2St7g=
=jvKw
-END PGP SIGNATURE-
# Spanish messages for debian-installer.
# Copyright (C) 2003, 2004, 2005 Software in the Public Interest, Inc.
# This file is distributed under the same license as debian-installer.
#
# Contributors to the translation of debian-installer:
# Teófilo Ruiz Suárez , 2003.
# David Martínez Moreno , 2003.
# Carlos Alberto Martín Edo , 2003
# Carlos Valdivia Yagüe , 2003
# Rudy Godoy , 2003
# Steve Langasek , 2004
# Enrique Matias Sanchez (aka Quique) , 2005
# Rubén Porras Campo , 2005
# Javier Fernández-Sanguino , 2003, 2004-2005, 2010
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al españl
#   http://www.debian.org/intl/spanish/
#   especialmente las notas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Si tiene dudas o consultas sobre esta traducción consulte con el último
# traductor (campo Last-Translator) y ponga en copia a la lista de
# traducción de Debian al español (debian-l10n-span...@lists.debian.org)
msgid ""
msgstr ""
"Project-Id-Version: debian-installer\n"
"Report-Msgid-Bugs-To: debc...@packages.debian.org\n"
"POT-Creation-Date: 2009-08-24 19:24+0200\n"
"PO-Revision-Date: 2010-08-08 01:48+0200\n"
"Last-Translator: Javier Fernández-Sanguino Peña \n"
"Language-Team:  Debian Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Dialog"
msgstr "Diálogos"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Readline"
msgstr "Consola"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Editor"
msgstr "Editor"

#. Type: select
#. Choices
#: ../templates:1001
msgid "Noninteractive"
msgstr "No interactiva"

#. Type: select
#. Description
#: ../templates:1002
msgid "Interface to use:"
msgstr "Interfaz a utilizar:"

#. Type: select
#. Description
#: ../templates:1002
msgid ""
"Packages that use debconf for configuration share a common look and feel. "
"You can select the type of user interface they use."
msgstr ""
"Los paquetes que usan debconf para configurarse comparten un aspecto común. "
"Puede elegir el tipo de interfaz de usuario que quiere que usen."

#. Type: select
#. Description
#: ../templates:1002
msgid ""
"The dialog frontend is a full-screen, character based interface, while the "
"readline frontend uses a more traditional plain text interface, and both the "
"gnome and kde frontends are modern X interfaces, fitting the respective "
"desktops (but may be used in any X environment). The editor frontend lets "
"you configure things using your favorite text editor. The noninteractive "
"frontend never asks you any questions."
msgstr ""
"Dialog es una interfaz de texto a pantalla completa, mientras que la de "
"readline es más tradicional, de sólo texto, y gnome y kde son modernas "
"interfaces para X adaptadas a cada uno de dichos escritorios (aunque pueden "
"usarse en cualquier entorno gráfico). Editor le permite configurar el "
"sistema usando su editor favorito. El interfaz no interactivo no hace "
"ninguna pregunta."

#. Type: select
#. Choices
#: ../templates:2001
msgid "critical"
msgstr "crítica"

#. Type: select
#. Choices
#: ../templates:2001
msgid "high"
msgstr "alta"

#. Type: select
#. Choices
#: ../templates:2001
msgid "medium"
msgstr "media"

#. Type: select
#. Choices
#: ../templates:2001
msgid "low"
msgstr "baja"

#. Type: select
#. Description
#: ../templates:2002
msgid "Ignore questions with a priority less than:"
msgstr "Ignorar preguntas con una prioridad menor que:"

#. Type: select
#. Description
#: ../templates:2002
msgid ""
"Debconf prioritizes the questions it asks you. Pick the lowest priority of "
"question you want to see:\n"
"  - 'critical' only prompts you if the system might break.\n"
"Pick it if you are a newbie, or in a hurry.\n"
"  - 'high' is for rather important questions\n"
"  - 'medium' is for normal questions\n"
"  - 'low' is for control freaks who want to see everything"
msgstr ""
"Debconf prioriza las preguntas que le presenta. Escoja la prioridad más baja "
"de las preguntas que desea ver:\n"
"  - «crítica» es para asuntos vitales, que pueden romper el sistema.\n"
"Escójala si es novato o tiene prisa.\n"
"  - «alta» es para preguntas muy importantes\n"
"  - «media» es para asuntos normales\n"
"  - «baja» es para quienes

Bug#592175: software-center: Recommends python-launchpad-integration

2010-08-07 Thread Jordan Metzmeier
Package: software-center
Version: 2.0.3debian1
Severity: serious
Justification: Debian Policy §2.2.1

This package recommends python-launchpad-integration which is not in 
Debian.

§2.2.1 of Debian Policy states:

"packages in main must not must not require a package outside of main 
for compilation or execution (thus, the package must not declare a "Depends", 
"Recommends", or "Build-Depends" relationship on a non-main package)"


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

Kernel: Linux 2.6.32-bpo.3-686-bigmem (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#592174: [I18N:es] Updated spanish translation

2010-08-07 Thread Javier Fernandez-Sanguino Pen~a
Package: ucf
Version: 3.0025
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please find attached an updated po-debconf translation of this package into
Spanish.

Thanks for including it in your next package upload,

Javier

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

iD8DBQFMXfKYsandgtyBSwkRAsBQAJwMhtcySDpcZrcFOANo6G2OirGDxQCfd04h
Xo9K/CUzxaUtcgu7XfmBEFI=
=hEwB
-END PGP SIGNATURE-
# ucf translation to spanish
# Copyright (C) 2004-2007 Software in the Public Interest
# This file is distributed under the same license as the ucf package.
#
# Changes:
# - Initial translation
#   Lucas Wall , 2004
# - Updated 
#   Javier Fernandez-Sanguino , 2007, 2010
#
#
#  Traductores, si no conoce el formato PO, merece la pena leer la 
#  documentación de gettext, especialmente las secciones dedicadas a este
#  formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
#   http://www.debian.org/intl/spanish/coordinacion
#   especialmente las notas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: ucf 3.0025\n"
"Report-Msgid-Bugs-To: u...@packages.debian.org\n"
"POT-Creation-Date: 2009-10-13 08:14-0500\n"
"PO-Revision-Date: 2010-08-08 01:53+0200\n"
"Last-Translator: Javier Fernandez-Sanguino \n"
"Language-Team: Debian Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POFile-SpellExtra: BASENAME destfile ERRSUFFIX\n"

#. Type: title
#. Description
#: ../templates:2001
msgid "Modified configuration file"
msgstr "Fichero de configuración modificado"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#. Type: select
#. Choices
#: ../templates:3001 ../templates:4001
msgid "install the package maintainer's version"
msgstr "instalar la versión del responsable del paquete"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#. Type: select
#. Choices
#: ../templates:3001 ../templates:4001
msgid "keep the local version currently installed"
msgstr "conservar la versión local actualmente instalada"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#. Type: select
#. Choices
#: ../templates:3001 ../templates:4001
msgid "show the differences between the versions"
msgstr "mostrar las diferencias entre las versiones"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#. Type: select
#. Choices
#: ../templates:3001 ../templates:4001
msgid "show a side-by-side difference between the versions"
msgstr "mostrar las diferencias entre las versiones lado a lado"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#: ../templates:3001
msgid "show a 3-way difference between available versions"
msgstr "mostrar las diferencias entre las tres versiones"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#: ../templates:3001
msgid "do a 3-way merge between available versions (experimental)"
msgstr "fusionar las tres versiones disponibles (experimental)"

#. Type: select
#. Choices
#. Translators, please keep translations *short* (less than 65 columns)
#. Type: select
#. Choices
#: ../templates:3001 ../templates:4001
msgid "start a new shell to examine the situation"
msgstr "ejecutar un nuevo intérprete para examinar la situación"

#. Type: select
#. Description
#. Type: select
#. Description
#: ../templates:3002 ../templates:4002
msgid "What do you want to do about modified configuration file ${BASENAME}?"
msgstr "¿Qué desea hacer con el fichero de configuración modificado 
${BASENAME}?"

#. Type: select
#. Description
#. Type: select
#. Description
#: ../templates:3002 ../templates:4002
msgid ""
"A new version of configuration file ${FILE} is available, but the version "
"installed currently has been locally modified."
msgstr ""
"Hay una nueva versión del fichero de configuración ${FILE}, pero la versión "
"que está instalada ha sido modificada localmente."

#. Type: note
#. Description
#: ../templates:5001
msgid "Line by line differences between versions"
msgstr "Mostrar las diferencias línea a línea entre las versiones"

#. Type: error
#. Description
#: ../templates:6001
msgid "Conflicts found in three-way merge"
msgstr "Se encontraron conflictos al intentar integrar a tres bandas"

#. Type: error
#. Description
#: ../templates:6001
msgid ""
"Conflicts found during three-way merge! Please edit `${dest_file}' and sort "

Bug#591302: ITP: 7kaa -- real time strategy game

2010-08-07 Thread Bertrand Marc

Hi Moritz,

I am a member of the Game Team, and I am interested in 7kaa. Did you 
start packaging it ? Don't hesitate to contact me if you want any help 
on this.


Regards,
Bertrand



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



Bug#589228: cannot be put in sbin

2010-08-07 Thread Riku Voipio
On Sat, Aug 07, 2010 at 10:12:11PM +0200, Christoph Anton Mitterer wrote:
> On Fri, 2010-08-06 at 22:39 +0300, Riku Voipio wrote:
> > mkfs.ubifs and mkfs.jffs2 link against liblzo2 which is in /usr/lib so
> > putting these binaries in /sbin doesn't make sense. These binaries are
> > not used as traditional mkfs utilities which create filesystems on block
> > devices. Instead they are used to create "loopback" files which include
> > a prebuilt filesystems.
> But isn't jffs2 used as root-fs in some embedded devices? And wouldn't
> it be necessary for that to have it in /bin ?

yes it used rootfs no they dont need in mkfs.jffs2 in sbin.
please try to understand that mkfs.jffs2 is not used to
format block (or nand) devices. it is used to precreate
filesystems on regular files.
> 
> > keeping the bug open in case someone else wonders about the same issue.
> Then we should use wontfix, shouldn't we?

yes.



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



Bug#592173: [I18N:es] Updated spanish translation

2010-08-07 Thread Javier Fernandez-Sanguino Pen~a
Package: isc-dhcp
Version: 4.1.1-P1-9
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please find attached an updated po-debconf translation of this package into
Spanish.

Thanks for including it in your next package upload,

Javier

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

iD8DBQFMXfAzsandgtyBSwkRAnPmAJ9ja5xuV0qhIG4XXW7S5tyTFb66swCfeHTH
yhBs//vEsaK68bB+zP3PTAA=
=jUcg
-END PGP SIGNATURE-
# dhcp3 po-debconf translation to Spanish
# Copyright (C) 2005-2007 Software in the Public Interest
# This file is distributed under the same license as the dhcp3 package.
#
# Changes:
#  - Initial translation
# César Gómez Martín  - 2005
#  - Update
# Javier Fernández-Sanguino , 2006-2007, 2010
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Notas:
# - «relay» : repetidor (es un servidor que coge las peticiones de uno y las 
envía a otro)
msgid ""
msgstr ""
"Project-Id-Version: dhcp3\n"
"Report-Msgid-Bugs-To: isc-d...@packages.debian.org\n"
"POT-Creation-Date: 2010-07-07 18:58-0700\n"
"PO-Revision-Date: 2010-08-08 01:44+0200\n"
"Last-Translator: Javier Fernández-Sanguino \n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"
"X-POFile-SpellExtra: dhcpd personalizarse replace conf interface dhcp\n"

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:2001
msgid "Servers the DHCP relay should forward requests to:"
msgstr ""
"Servidores de DHCP a los que el repetidor de DHCP debería dirigir las "
"peticiones:"

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:2001
msgid ""
"Please enter the hostname or IP address of at least one DHCP server to which "
"DHCP and BOOTP requests should be relayed."
msgstr ""
"Se debe especificar el nombre o dirección IP de, al menos, un servidor de "
"DHCP al que se deben redirigir las peticiones DHCP o BOOTP."

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:2001
msgid ""
"You can specify multiple server names or IP addresses (in a space-separated "
"list)."
msgstr ""
"Puede especificar más de un nombre de servidor o dirección IP (en una lista "
"separada con espacios)."

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:3001
msgid "Interfaces the DHCP relay should listen on:"
msgstr "Interfaces de red en las que debe escuchar el servidor de DHCP:"

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:3001
msgid ""
"Please specify which network interface(s) the DHCP relay should attempt to "
"configure. Multiple interface names should be entered as a space-separated "
"list."
msgstr ""
"Introduzca los nombres de la/s interface/s de red en el que el repetidor de "
"DHCP debería intentar configurar. Puede indicar más de un nombre de interfaz "
"con en una lista separada por espacios."

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:3001
msgid ""
"Leave this field blank to allow for automatic detection and configuration of "
"network interfaces by the DHCP relay, in which case only broadcast "
"interfaces will be used (if possible)."
msgstr ""
"Si quiere que el repetidor de DHCP realice una detección y configuración "
"automática de las interfaces de red, deje este campo en blanco. En este caso "
"sólo se utilizarán interfaces de difusión (si es posible)."

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:4001
msgid "Additional options for the DHCP relay daemon:"
msgstr "Opciones adicional para el demonio repetidor de DHCP:"

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:4001
msgid "Please specify any additional options for the DHCP relay daemon."
msgstr ""
"Especifique cualquier opción adicional que desee utilizar en el demonio "
"repetidor de DHCP."

#. Type: string
#. Description
#: ../isc-dhcp-relay.templates:4001
msgid "For example: '-m replace' or '-a -D'."
msgstr "Por ejemplo: «-m replace» o «-a -D»."

#. Type: note
#. Description
#: ../isc-dhcp-server.templates:2001
msgid "Manual configuration required after installation"
msgstr ""
"Es necesaria una configuración manual después de la instalación el servidor "
"de DHCP"

#. Type: note
#. Description
#: ../isc-dhcp-server.templates:2001
#, fuzzy
msgid ""
"After the DHCP server is installed, you will need 

Bug#592172: [I18N:es] Updated spanish translation

2010-08-07 Thread Javier Fernandez-Sanguino Pen~a
Package: pam
Version: 1.1.1-3
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please find attached an updated po-debconf translation of this package into
Spanish.

Thanks for including it in your next package upload,

Javier

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

iD8DBQFMXe8IsandgtyBSwkRAtbJAJ0bToJ++5D5k2LCdcibzlkhDtaKvgCfcuhk
TxngZFMn63QiVs5plR9/1O0=
=s4RQ
-END PGP SIGNATURE-
# pam po-debconf translation to Spanish
# Copyright (C) 2007 Software in the Public Interest, SPI Inc.
# This file is distributed under the same license as the pam package.
#
# Changes:
# - Initial translation
#   Javier Fernández-Sanguino , 2007
# - Updates:
#Steve Langasek, 2008
#Javier Fernández-Sanguino, 2009
#
#  Traductores, si no conoce el formato PO, merece la pena leer la 
#  documentación de gettext, especialmente las secciones dedicadas a este
#  formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
#   http://www.debian.org/intl/spanish/
#   especialmente las notas y normas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Si tiene dudas o consultas sobre esta traducción consulte con el último
# traductor (campo Last-Translator) y ponga en copia a la lista de
# traducción de Debian al español ()
#
msgid ""
msgstr ""
"Project-Id-Version: pam 0.79-4\n"
"Report-Msgid-Bugs-To: p...@packages.debian.org\n"
"POT-Creation-Date: 2009-08-18 18:30-0700\n"
"PO-Revision-Date: 2010-08-08 01:40+0200\n"
"Last-Translator: Javier Fernandez-Sanguino \n"
"Language-Team: Debian Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-POFile-SpellExtra: kdm gnome xscreensaver xdm xlockmore wdm start init\n"
"X-POFile-SpellExtra: screensaver PAM libpam corríjala account vd runtime\n"
"X-POFile-SpellExtra: Authentication auth Pluggable session insertables\n"
"X-POFile-SpellExtra: password pam common\n"

#. Type: string
#. Description
#: ../libpam0g.templates:1001
msgid "Services to restart for PAM library upgrade:"
msgstr "Servicios a reiniciar para la actualización de la biblioteca de PAM:"

#. Type: string
#. Description
#: ../libpam0g.templates:1001
msgid ""
"Most services that use PAM need to be restarted to use modules built for "
"this new version of libpam.  Please review the following space-separated "
"list of init.d scripts for services to be restarted now, and correct it if "
"needed."
msgstr ""
"Es necesario reiniciar la mayoría de los servicios que utilizan PAM para que "
"usen los módulos de esta versión de libpam. Por favor, revise la lista "
"separada por espacios mostrada a continuación que indica los servicios a "
"reiniciar ahora y corríjala si es necesario."

#. Type: error
#. Description
#: ../libpam0g.templates:2001
msgid "Display manager must be restarted manually"
msgstr "Debe reiniciar manualmente los gestores de pantalla"

#. Type: error
#. Description
#: ../libpam0g.templates:2001
msgid ""
"The kdm, wdm, and xdm display managers require a restart for the new version "
"of libpam, but there are X login sessions active on your system that would "
"be terminated by this restart.  You will therefore need to restart these "
"services by hand before further X logins will be possible."
msgstr ""
"Entre los servicios que deben reiniciarse debido a la nueva versión de "
"libpam están los gestores de pantalla kdm, wdm y xdm. Sin embargo, hay "
"sesiones de X ejecutándose en el sistema que se terminarían si se "
"reiniciaran estos servicios. Debe reiniciarlos manualmente si desea que "
"funcionen los accesos a través de una sesión X más adelante."

#. Type: error
#. Description
#: ../libpam0g.templates:3001
msgid "Failure restarting some services for PAM upgrade"
msgstr "Fallo al reiniciar alguno de los servicios en la actualización de PAM"

#. Type: error
#. Description
#: ../libpam0g.templates:3001
msgid ""
"The following services could not be restarted for the PAM library upgrade:"
msgstr ""
"No fue posible reiniciar los servicios indicados a continuación dentro la "
"actualización de la biblioteca de PAM:"

#. Type: error
#. Description
#: ../libpam0g.templates:3001
msgid ""
"You will need to start these manually by running '/etc/init.d/ "
"start'."
msgstr ""
"Deberá arrancar manualmente estos servicios ejecutando «/etc/init.d/"
" start»."

#. Type: multiselect
#. Description
#: ../libpam-runtime.templates:1001
msgid "PAM profiles to enable:"
msgstr "Perfiles PAM a habilitar:"

#. Type: multiselect
#. Description
#: ../libpam-runtime.templates:1001
msgid ""
"Pluggable Authentication Modules (PAM) determine how a

Bug#565204: Segfault on start

2010-08-07 Thread Emilio Pozuelo Monfort
tags 565204 + moreinfo
severity 565204 important
thanks

Hi,

Downgrading to important due to the inability to reproduce this by several
people (including myself). If somebody can reproduce this (or the reporter
confirms he still sees the bug), please say so and send a backtrace with
debugging symbols.

Regards,
Emilio



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



Bug#591388: backtrace

2010-08-07 Thread Emilio Pozuelo Monfort
Hi,

On 07/08/10 16:51, Bernhard D wrote:
> Im not familiar with debugging, so please tell me, if I made a mistake.
> What I did is "gdb gnome-dvb-daemon" -> "run" -> "backtrace".

Looks good. However there are many missing symbols.

Can you install libglib2.0-0-dbg, rebuild gnome-dvb-daemon with
DEB_BUILD_OPTIONS=nostrip and then get a new backtrace? That should get us a
useful trace with all the symbols.

Regards,
Emilio



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



Bug#588995: per-user default pastebin

2010-08-07 Thread Rolf Leggewie
Trent,

you're raising two very valid concerns.  Thank you.

1) adding pastebins definitions

This feature has been added about half a year ago and is present in
debian testing and unstable.  Please consult /etc/pastebin.d/

2) overriding default pastebin

This is also possible (actually for quite a while now) with
~/.pastebinit.xml.  My sincere apologies for not documenting this in the
manpage.  It's just that I really suck at manpages.  Help would be very
welcome.  I've merged your ticket with bug 574661 which requests this
addition to the documentation.

$ cat ~/.pastebinit.xml

http://paste.debian.net
Rolf
b...@jabber.org
text


Thank you for using pastebinit.

Regards

Rolf



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



Bug#592171: [I18N:es] Updated spanish translation

2010-08-07 Thread Javier Fernandez-Sanguino Pen~a
Package: mysql-5.1
Version: 5.1.49-1
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Please find attached a updated po-debconf translation of this package into
Spanish.

Thanks for including it in your next package upload,

Javier


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

iD8DBQFMXevcsandgtyBSwkRAjA+AJ47VOXmV8APTZYm35W3VTco6xFt4QCfdCwl
yNiFhxwpvVsFgqL+rb4cS4s=
=s+dd
-END PGP SIGNATURE-
# mysql-dfsg-5 translation to spanish
# Copyright (C) 2005-2007 Software in the Public Interest, SPI Inc.
# This file is distributed under the same license as the  package.
#
# Changes:
# - Initial translation
#   Jesus Aneiros, 2006
# - Updated
#   Javier Fernandez-Sanguino, 2006-2007
# - Revision
#   Nacho Barrientos Arias
#   Fernando Cerezal
#   David Martínez Moreno
#   Ricardo Mones
#   Carlos Galisteo
#   Javier Fernandez-Sanguino
#
#
#  Traductores, si no conoce el formato PO, merece la pena leer la 
#  documentación de gettext, especialmente las secciones dedicadas a este
#  formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
#   http://www.debian.org/intl/spanish/
#   especialmente las notas y normas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Si tiene dudas o consultas sobre esta traducción consulte con el último
# traductor (campo Last-Translator) y ponga en copia a la lista de
# traducción de Debian al español ()
msgid ""
msgstr ""
"Project-Id-Version: mysql-dfsg-5.1_5.0.24-3\n"
"Report-Msgid-Bugs-To: mysql-...@packages.debian.org\n"
"POT-Creation-Date: 2010-07-31 12:35+0200\n"
"PO-Revision-Date: 2010-08-08 01:18+0200\n"
"Last-Translator: Javier Fernández-Sanguino \n"
"Language-Team: Debian l10 Spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: \n"

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:2001
msgid "Really proceed with downgrade?"
msgstr "¿Desea realmente continuar con la desactualización?"

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:2001
msgid "A file named /var/lib/mysql/debian-*.flag exists on this system."
msgstr ""
"Existe un archivo con el nombre /var/lib/mysql/debian-*.flag en este sistema."

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:2001
msgid ""
"Such a file is an indication that a mysql-server package with a higher "
"version has been installed previously."
msgstr "Este fichero indica que se instaló previamente una versión superior del 
paquete mysql-server."

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:2001
msgid ""
"There is no guarantee that the version you're currently installing will be "
"able to use the current databases."
msgstr ""
"No se puede garantizar que la versión que está instalando pueda usar la base "
"de datos actual."

#. Type: note
#. Description
#: ../mysql-server-5.1.templates:3001
msgid "Important note for NIS/YP users"
msgstr "Nota importante para los usuarios de NIS/YP"

#. Type: note
#. Description
#: ../mysql-server-5.1.templates:3001
msgid ""
"Using MySQL under NIS/YP requires a mysql user account to be added on the "
"local system with:"
msgstr "La utilización de MySQL con NIS/YP requiere una cuenta de usuario de 
mysql que se debe agregar al sistema local con:"

#. Type: note
#. Description
#: ../mysql-server-5.1.templates:3001
msgid ""
"You should also check the permissions and ownership of the /var/lib/mysql "
"directory:"
msgstr "También debería comprobar los permisos y el usuario propietario del 
directorio /var/lib/mysql:"

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:4001
msgid "Remove all MySQL databases?"
msgstr "¿Desea eliminar todas las bases de datos MySQL?"

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:4001
msgid ""
"The /var/lib/mysql directory which contains the MySQL databases is about to "
"be removed."
msgstr ""
"El directorio /var/lib/mysql contiene bases de datos MySQL que van a "
"eliminarse."

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:4001
msgid ""
"If you're removing the MySQL package in order to later install a more recent "
"version or if a different mysql-server package is already using it, the data "
"should be kept."
msgstr ""
"Debería mantener los datos si tiene planificado instalar una versión de "
"MySQL más reciente o si hay un paquete «mysql-server» distinto que los está "
"utilizando."

#. Type: boolean
#. Description
#: ../mysql-server-5.1.templates:5001
msgid "Start the MySQL server on boot?"
msgstr "¿Debería ejecutarse el servid

Bug#592170: please add debconf delegates to intro/organisation

2010-08-07 Thread Holger Levsen
package: www.debian.org
severity: wishlist
x-debbugs-cc: debconf-t...@lists.debconf.org, d...@debian.org, 
a...@azure.humbug.org.au

Hi,

please add DebConf and its Debian delegates somehow to 
http://www.debian.org/intro/organization

It's currently a bit unclear who the delegates are (and 
the delegation from 2006 should IMO be reviewed and renewed 
anyway), so for the moment this bug report should serve as 
a reminder to resolv this. 

Marga remembered that she, Ganneff and me (and probably others (*))
were delegates, but I couldnt find such a mail from aj to 
d-d-a now, which is no surprise to me, given that DebConf
has just ended. I could only find aj's statement in my AM 
report saying "Formal acceptance as a developer will allow 
Holger to [...] be more officially involved in DebConf 
organisation as a formal delegate should that be useful".


cheers,
Holger


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


Bug#574661: config file

2010-08-07 Thread Rolf Leggewie
Sandro,

thank you for your comment.  You are absolutely right.  Alas, I'm no
expect of manpages. 

I'd certainly appreciate some help in patching the manpage.  If there is
somebody out there who'd be willing to cooperate with me on fixing this,
please get in contact.

Regards

Rolf



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



Bug#592169: ITP: oscar-emr -- Open Source Clinical Application Resource

2010-08-07 Thread Reza Alemi
Package: wnpp
Severity: wishlist
Owner: Reza Alemi 


* Package name: oscar-emr
  Version : 0.9.12
  Upstream Author : David Chan 
* URL : http://oscar.ubuntuvancouver.info/
* License : GPL V3
  Programming Lang: Java, Python
  Description : OSCAR EMR is an Electronic Medial Records suite.

OSCAR is a comprehensive, web-based, open source, Electronic Medical
Record (EMR) developed by McMaster University. It has been designed to
meet the needs of Research and Academics in a clinical environment.

OSCAR is customizable to accommodate a wide variety of research,
education, language and clinical needs. An award winning system, among
the first EMR systems to pass CMS Conformance Testing 3.0.

OSCAR consists of a suite of applications designed to help improve an
organization’s ability to provide the highest level of care possible,
including Charting, reporting, appointments, billings, encounters,
prescriptions, labs, decision support, and secure messaging.











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



Bug#592168: phpbb3: fails to report an error when php5-pgsql is needed but not installed

2010-08-07 Thread Arnout Engelen
Package: phpbb3
Version: 3.0.7-PL1-2
Severity: important
Tags: upstream

When postgres is selected as the database, but the php5-pgsql module is not
installed, phpbb shows an empty page and does not show any error message
anywhere.

index.php calls common.php which calls includes/db/postgres.php which does a
'@pg_connect'. Because of the '@', the 'Call to undefined function
pg_connect()' error is not logged at all and execution is halted.

The user is left puzzled staring at a blank screen.



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

Kernel: Linux 2.6.34-git16 (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 phpbb3 depends on:
ii  apache2-mpm-prefork [httpd]   2.2.16-1   Apache HTTP Server - traditional n
ii  dbconfig-common   1.8.46 common framework for packaging dat
ii  debconf [debconf-2.0] 1.5.32 Debian configuration management sy
ii  libapache2-mod-php5   5.3.2-1server-side, HTML-embedded scripti
ii  php5-cli  5.3.2-1command-line interpreter for the p
ii  php5-gd   5.3.2-1GD module for php5
ii  php5-mysql5.3.2-1MySQL module for php5
ii  php5-pgsql5.3.2-1PostgreSQL module for php5
ii  postgresql-client-8.4 [postgr 8.4.4-1+b1 front-end programs for PostgreSQL 
ii  ucf   3.0025 Update Configuration File: preserv

Versions of packages phpbb3 recommends:
ii  exim44.71-4  metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail-tra 4.71-4  lightweight Exim MTA (v4) daemon
ii  php5-imagick 3.0.0~rc1-1 ImageMagick module for php5

Versions of packages phpbb3 suggests:
pn  phpbb3-l10n(no description available)
ii  postgresql8.4.4-1object-relational SQL database (su

-- debconf information:
* phpbb3/database-type: pgsql
  phpbb3/mysql/admin-user: root
  phpbb3/remote/host:
  phpbb3/admin-pass-ask:
  phpbb3/db/basepath:
* phpbb3/httpd: apache2
  phpbb3/remove-error: abort
  phpbb3/db/app-user: phpbb3
  phpbb3/admin-pass-mismatch:
  phpbb3/dbconfig-reinstall: false
  phpbb3/db/dbname: phpbb3
  phpbb3/install-error: abort
  phpbb3/upgrade-backup: true
  phpbb3/admin-pass-requirements:
  phpbb3/dbconfig-upgrade: true
  phpbb3/purge: false
* phpbb3/dbconfig-install: true
  phpbb3/mysql/method: unix socket
  phpbb3/missing-db-package-error: abort
  phpbb3/pgsql/changeconf: false
  phpbb3/remote/newhost:
  phpbb3/pgsql/manualconf:
  phpbb3/dbconfig-remove:
  phpbb3/internal/reconfiguring: false
  phpbb3/internal/skip-preseed: false
  phpbb3/admin-pass-generated:
  phpbb3/pgsql/authmethod-user: ident
  phpbb3/upgrade-error: abort
  phpbb3/pgsql/admin-user: postgres
  phpbb3/remote/port:
  phpbb3/pgsql/authmethod-admin: ident
  phpbb3/pgsql/no-empty-passwords:
  phpbb3/passwords-do-not-match:
  phpbb3/pgsql/method: unix socket



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



Bug#592167: pastebinit: [Lenny] default format for pastebin.com changed

2010-08-07 Thread Rolf Leggewie
Package: pastebinit
Version: 0.10-2
Severity: grave
Justification: renders package unusable

pastebin.com is the default pastebin used.  Pastes can no longer be made
because pastebin.com changed its syntax.

ACK'ing as maintainer of pastebinit package



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



Bug#592166: stressapptest: FTBFS: configure: error: alphaev68 is not supported! Try x86_64, i686, powerpc, or armv7a

2010-08-07 Thread Nobuhiro Iwamatsu
Package: stressapptest
Version: 1.0.3-2
Severity: serious

Hi,

your package FTBFS on some package.

https://buildd.debian.org/pkg.cgi?pkg=stressapptest
https://buildd.debian.org/fetch.cgi?pkg=stressapptest;ver=1.0.3-2;arch=alpha;stamp=1280501395
(alpha log)

To do so, use the procedure documented by the package, typically `autoreconf'.
./configure --prefix=/usr --mandir=\${prefix}/share/man
--infodir=\${prefix}/share/info CFLAGS="-g -O2" LDFLAGS="-Wl,-z,defs"
checking build system type... alphaev68-unknown-linux-gnu
checking host system type... alphaev68-unknown-linux-gnu
checking target system type... alphaev68-unknown-linux-gnu
configure: error: alphaev68 is not supported! Try x86_64, i686,
powerpc, or armv7a
make: *** [config.status] Error 1


New version of package support x86_64, i686, powerpc, or armv7a(not armel).
Could you check your package?

Best regards,
  Nobuhiro

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



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



Bug#591984: ampache: uses GPL-incompatible libraries

2010-08-07 Thread Charlie Smotherman
Raphael,

Thank you for the bug report.

I have reported this to the upstream author and I await his response.

Best regards
Charlie 




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



Bug#591580: iptables: libip6t_recent.so is missing

2010-08-07 Thread Laurence J. Lane
On Tue, Aug 3, 2010 at 10:11 PM, Amr Ali  wrote:

> libip6t_recent.so is missing  which renders the recent
> match unusable with ip6tables.

I don't recall libip6t_recent.so ever existing. IPv6 support was
added well after the shift to libxt_*.so and libxt_recent.so is
included.



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



Bug#591765: usb-modeswitch: Needs to sleep multiple times before forking

2010-08-07 Thread Josua Dietze
Not going back to any discussion about correct forking in prior 
versions, the patch from Didier for the boot problem - #591722 - 
exposes the point of forking much more clearly:


http://git.debian.org/?p=collab-maint/usb-modeswitch.git;a=commitdiff;h=a41dcc4

In the next release I'll scrap the head of the wrapper/dispatcher 
script which was functioning to restart itself (forked) with the Tcl 
shell - just for avoiding the necessity of yet annother file.


Josh



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



Bug#494602: fdclone -- A console-base lightweight file manager

2010-08-07 Thread Elías Alejandro
Hi all,

The package can be found on mentors.debian.net:
- URL: http://mentors.debian.net/debian/pool/main/f/fdclone
- Source repository: deb-src http://mentors.debian.net/debian unstable
main contrib non-free
- dget http://mentors.debian.net/debian/pool/main/f/fdclone/fdclone_3.00i-1.dsc

I would be glad if someone uploaded this package for me.

Kind regards
 Elías Alejandro



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



Bug#240597: doc-rfc: or better use xz

2010-08-07 Thread Christoph Anton Mitterer
Package: doc-rfc
Version: 20100731-1
Severity: normal


Hi.

IMHO even better than bzip2 would be to use xz.

With gzip /usr/share/doc/RFC/ needs about 142 MiB, with xz --best it needs
only 129M.
(Having all doc-rfc-* installed but -experimental.)
And 13 MiBs are 13 MiBs ;)


Of course one would have to add a depends on xz-utils, but then vim & friends
seem to support it out of the box.

Cheers,
Chris.



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



Bug#591722: usb-modeswitch: Insecure usage of /tmp/gsmmodem_*

2010-08-07 Thread Josua Dietze

Am 05.08.2010 19:50, schrieb Marco d'Itri:


You are trying to solve this at the wrong level. You should use an
IMPORT rule triggered by KERNEL=ttyS* (or something like this) and then
a SYMLINK rule triggered by an exported variable.
Anyway, you should not manually create symlinks in /dev.
If you need help, ask on the linux-hotp...@vger mailing list.



The IMPORT feature might be what was missing in my tool box. Turns out 
the How-To I trusted did not mention it at all ...


I think I can get rid of the temp file alltogether.

Working on it.

> Anyway, you should not manually create symlinks in /dev.

I don't think I do. I'm using the PROGRAM and SYMLINK features of udev 
in a rule looking for new ttyUSBs and just return an empty name if the 
port doesn't have an interrupt interface.



Josh



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



Bug#592165: doc-rfc: depend on doc-rfc-experimental

2010-08-07 Thread Christoph Anton Mitterer
Package: doc-rfc
Version: 20100731-1
Severity: wishlist


Hi.

I guess doc-rfc should also depend on doc-rfc-experimental.
Or even better, as doc-rfc is just kind of a meta-package, as far as I can see,
replace all the depends with recommends. Wouldn't that be more flexible?

Cheers,
Chris.



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



Bug#592164: alsa-base: no sound on HP compaq NC4000 notebook ALI5451

2010-08-07 Thread Jon Mansey
Package: alsa-base
Version: 1.0.23+dfsg-1
Severity: important

no sound on nc4000 notebook under squeeze

[8.684305] ALI 5451 :00:06.0: PCI INT A -> Link[C0CB] -> GSI 11 (level,
low) -> IRQ 11
[   13.440279] AC'97 1 does not respond - RESET
[   13.456032] AC'97 1 access is not valid [0x], removing mixer.
[   13.456083] ali mixer 1 creating error.


upload=true&script=true&cardinfo=
!!
!!ALSA Information Script v 0.4.59
!!

!!Script ran on: Sat Aug  7 12:18:25 UTC 2010


!!Linux Distribution
!!--

Debian GNU/Linux squeeze/sid \n \l


!!DMI Information
!!---

Manufacturer:  Hewlett-Packard
Product Name:  HP Compaq nc4000 (DN926S#ABA)


!!Kernel Information
!!--

Kernel release:2.6.32-trunk-686
Operating System:  GNU/Linux
Architecture:  i686
Processor: unknown
SMP Enabled:   Yes


!!ALSA Version
!!

Driver version: 1.0.21
Library version:1.0.23
Utilities version:  1.0.23


!!Loaded ALSA modules
!!---

snd_ali5451


!!Sound Servers on this system
!!

No sound servers found.


!!Soundcards recognised by ALSA
!!-

 0 [A5451  ]: ALI5451 - ALI 5451
  ALI 5451 at 0x3000, irq 11


!!PCI Soundcards installed in the system
!!--

00:06.0 Multimedia audio controller: ALi Corporation M5451 PCI AC-Link
Controller Audio Device (rev 02)


!!Advanced information - PCI Vendor/Device/Susbsystem ID's
!!

00:06.0 0401: 10b9:5451 (rev 02)
Subsystem: 0e11:005a


!!Modprobe options (Sound related)
!!

snd-atiixp-modem: index=-2
snd-intel8x0m: index=-2
snd-via82xx-modem: index=-2
snd-pcsp: index=-2
snd-usb-audio: index=-2


!!Loaded sound module options
!!--

!!Module: snd_ali5451
enable : N
id : 
index : -1
pcm_channels : 32
spdif : N


!!AC97 Codec information
!!---
--startcollapse--

0-0/0: Analog Devices AD1981B

PCI Subsys Vendor: 0x
PCI Subsys Device: 0x

Flags: 10
Capabilities : -headphone out-
DAC resolution   : 20-bit
ADC resolution   : 16-bit
3D enhancement   : No 3D Stereo Enhancement

Current setup
Mic gain : +0dB [+0dB]
POP path : pre 3D
Sim. stereo  : off
3D enhancement   : off
Loudness : off
Mono output  : MIX
Mic select   : Mic1
ADC/DAC loopback : off
Extended ID  : codec=0 rev=1 AMAP DSA=0 SPDIF VRA
Extended status  : SPCV SPDIF=7/8 VRA
PCM front DAC: 48000Hz
PCM ADC  : 48000Hz
SPDIF Control: Consumer PCM Category=0x2 Generation=1 Rate=48kHz



AD18XX configuration
Unchained: 0x1000,0x,0x
Chained  : 0x,0x,0x

0:00 = 0090
0:02 = 1b1b
0:04 = 9f9f
0:06 = 801f
0:08 = 
0:0a = 
0:0c = 801f
0:0e = 801f
0:10 = 9f9f
0:12 = 9f9f
0:14 = 
0:16 = 9f9f
0:18 = 9f9f
0:1a = 
0:1c = 
0:1e = 
0:20 = 
0:22 = 
0:24 = 
0:26 = 000f
0:28 = 0605
0:2a = 0411
0:2c = bb80
0:2e = 
0:30 = 
0:32 = bb80
0:34 = 
0:36 = 
0:38 = 
0:3a = 2824
0:3c = 
0:3e = 
0:40 = 
0:42 = 
0:44 = 
0:46 = 
0:48 = 
0:4a = 
0:4c = 
0:4e = 
0:50 = 
0:52 = 
0:54 = 
0:56 = 
0:58 = 
0:5a = 
0:5c = 4000
0:5e = 
0:60 = 8080
0:62 = 
0:64 = 8000
0:66 = 
0:68 = 
0:6a = 
0:6c = 
0:6e = 
0:70 = 
0:72 = 0004
0:74 = 1001
0:76 = 2010
0:78 = 
0:7a = 
0:7c = 4144
0:7e = 5374
--endcollapse--


!!ALSA Device nodes
!!-

crw-rw+ 1 root audio 116,  0 Aug  7 05:09 /dev/snd/controlC0
crw-rw+ 1 root audio 116, 24 Aug  7 05:09 /dev/snd/pcmC0D0c
crw-rw+ 1 root audio 116, 16 Aug  7 05:09 /dev/snd/pcmC0D0p
crw-rw+ 1 root audio 116,  1 Aug  7 05:09 /dev/snd/seq
crw-rw+ 1 root audio 116, 33 Aug  7 05:09 /dev/snd/timer

/dev/snd/by-path:
total 0
drwxr-xr-x 2 root root  60 Aug  7 05:09 .
drwxr-xr-x 3 root root 160 Aug  7 05:09 ..
lrwxrwxrwx 1 root root  12 Aug  7 05:09 pci-:00:06.0 -> ../controlC0


!!Aplay/Arecord output
!!

APLAY

 List of PLAYBACK Hardware Devices 
card 0: A5451 [ALI 5451], device 0: ALI 5451 [ALI 5451]
  Subdevices: 32/32
  Subdevice #0: subdevice #0
  Subdevice #1: subdevice #1
  Subdevice #2: subdevice #2
  Subdevice #3: subdevice #3
  Subdevice #4: subdevice #4
  Subdevice #5: subdevice #5
  Subdevice #6: subdevice #6
  Subdevice #7: subdevice #7
  Subdevice #8: subdevice #8
  Subdevice #9: subdevice #9
  Subdevice #10: subdevice #10
  Subdevice #11: subdevice #11
  Subdevice #12: subdevice #12
  Subdevice #13: subdevice #13
  Subdevice #14: subdevice #14
  Subdevice #15: subdevice #15
  Subdevice #16: subdevice #16
  Subdevice #17: subdevice #17
  Subdevice #18: subdevice #18

Bug#592163: nm-applet: notification message appears in upper right corner of the screen

2010-08-07 Thread Márton Németh
Package: network-manager-gnome
Version: 0.8.1-1
Severity: minor


I recently upgraded my system and recognised that the notification area
of the nm-applet no longer appears near to the network icon on the lower
right corner of the screen but appears on the upper right corner, see
the attached screenshot.
I'm using icewm with the icedesert theme.

The expected behaviour is that the notification area appears near to
the nm-aplet icon.

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

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

Versions of packages network-manager-gnome depends on:
ii  dbus-x111.2.24-3 simple interprocess messaging syst
ii  gconf2  2.28.1-3 GNOME configuration database syste
ii  gnome-icon-theme2.30.3-1 GNOME Desktop icon theme
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.2-2 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-4 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.24-3 simple interprocess messaging syst
ii  libdbus-glib-1-20.86-1   simple interprocess messaging syst
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.0-2  FreeType 2 font engine, shared lib
ii  libgconf2-4 2.28.1-3 GNOME configuration database syste
ii  libglade2-0 1:2.6.4-1library to load .glade files at ru
ii  libglib2.0-02.24.1-1 The GLib library of C routines
ii  libgnome-bluetooth7 2.30.0-2 GNOME Bluetooth tools - support li
ii  libgnome-keyring0   2.30.1-1 GNOME keyring services library
ii  libgtk2.0-0 2.20.1-1 The GTK+ graphical user interface 
ii  libnm-glib-vpn1 0.8.1-1  network management framework (GLib
ii  libnm-glib2 0.8.1-1  network management framework (GLib
ii  libnm-util1 0.8.1-1  network management framework (shar
ii  libnotify1 [libnotify1- 0.5.0-2  sends desktop notifications to a n
ii  libpango1.0-0   1.28.1-1 Layout and rendering of internatio
ii  libxml2 2.7.7.dfsg-4 GNOME XML library
ii  network-manager 0.8.1-1  network management framework daemo
ii  policykit-1-gnome   0.96-2   GNOME authentication agent for Pol
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages network-manager-gnome recommends:
ii  gnome-bluetooth   2.30.0-2   GNOME Bluetooth tools
ii  libpam-gnome-keyring [libpam- 2.30.3-1   PAM module to unlock the GNOME key
ii  mobile-broadband-provider-inf 20100716-1 database of mobile broadband servi
ii  notification-daemon   0.5.0-2daemon to displays passive pop-up 

Versions of packages network-manager-gnome suggests:
pn  network-manager-openvpn-gnome  (no description available)
pn  network-manager-pptp-gnome (no description available)
pn  network-manager-vpnc-gnome (no description available)

-- no debconf information
<>

Bug#592150: label each log message with sdi, sdj, sdk etc.

2010-08-07 Thread jidanni
RB> I will have to read the source of the kernel or ask around.

>> By the way, if you know what is going on with those three repeated
>> kernel messages, perhaps you could report a similar bug as this one to
>> the kernel team. Thanks.

RB> Sure. Thanks for your very nice reports. You are quite valuable with
RB> your reports.

And tackle #375277 to as it is the same... Thanks.



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



Bug#592145: bugs.debian.org: Please always include the package name into bug mails

2010-08-07 Thread Andreas Tille
On Sat, Aug 07, 2010 at 03:27:23PM -0400, Don Armstrong wrote:
> It should always be present in X-Debbugs-Pr-Package:; I don't have a

Ahh, putted X-Debbugs-Pr-Package: on my unignore list.

> good idea of how to much the body to do so, but I could alter the
> footer of the message that I add to include that information...

That would be fine for those people who do not know the
X-Debbugs-Pr-Package: field or have incompetent MUAs to uncover this.
If this information would be in the footer that would be perfectly
sufficient to regard the bug as closed.

Thanks for the quick response

Andreas.

-- 
http://fam-tille.de



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



Bug#591298: sqlite3: diff for NMU version 3.7.0-1.1

2010-08-07 Thread Julien Cristau
Hi,

I'll upload an sqlite3 NMU with the attach diff in a couple minutes.

Cheers,
Julien
diff -Nru sqlite3-3.7.0/debian/changelog sqlite3-3.7.0/debian/changelog
--- sqlite3-3.7.0/debian/changelog	2010-07-25 05:00:52.0 -0400
+++ sqlite3-3.7.0/debian/changelog	2010-08-07 16:56:38.0 -0400
@@ -1,3 +1,15 @@
+sqlite3 (3.7.0-1.1) unstable; urgency=high
+
+  [ Iain Lane ]
+  * Non-maintainer upload.
+  * Backport fix from upstream bug 13f033c865 to fix performance
+regression introduced in 3.7.0-1. (Closes: #591298)
+
+  [ Julien Cristau ]
+  * High urgency upload for RC bugfix.
+
+ -- Julien Cristau   Sat, 07 Aug 2010 16:55:51 -0400
+
 sqlite3 (3.7.0-1) unstable; urgency=low
 
   * New major upstream version (closes: #590232).
diff -Nru sqlite3-3.7.0/debian/patches/30-591298-performance-regression.patch sqlite3-3.7.0/debian/patches/30-591298-performance-regression.patch
--- sqlite3-3.7.0/debian/patches/30-591298-performance-regression.patch	1969-12-31 19:00:00.0 -0500
+++ sqlite3-3.7.0/debian/patches/30-591298-performance-regression.patch	2010-08-07 16:55:46.0 -0400
@@ -0,0 +1,77 @@
+Index: sqlite3-3.7.0/src/where.c
+===
+--- sqlite3-3.7.0.orig/src/where.c	2010-08-06 17:01:59.181948757 +0100
 sqlite3-3.7.0/src/where.c	2010-08-06 17:05:05.985100100 +0100
+@@ -4048,6 +4048,8 @@
+ int bestJ = -1; /* The value of j */
+ Bitmask m;  /* Bitmask value for j or bestJ */
+ int isOptimal;  /* Iterator for optimal/non-optimal search */
++int nUnconstrained; /* Number tables without INDEXED BY */
++Bitmask notIndexed; /* Mask of tables that cannot use an index */
+ 
+ memset(&bestPlan, 0, sizeof(bestPlan));
+ bestPlan.rCost = SQLITE_BIG_DBL;
+@@ -4089,6 +4091,8 @@
+ ** algorithm may choose to use t2 for the outer loop, which is a much
+ ** costlier approach.
+ */
++nUnconstrained = 0;
++notIndexed = 0;
+ for(isOptimal=(iFrom=0; isOptimal--){
+   Bitmask mask;  /* Mask of tables not yet ready */
+   for(j=iFrom, pTabItem=&pTabList->a[j]; jpIndex==0 ) nUnconstrained++;
+   
+ assert( pTabItem->pTab );
+ #ifndef SQLITE_OMIT_VIRTUALTABLE
+@@ -4118,9 +4123,43 @@
+ }
+ assert( isOptimal || (sCost.used¬Ready)==0 );
+ 
+-if( (sCost.used¬Ready)==0
+- && (bestJ<0 || sCost.rCostpIndex==0
++  || (sCost.plan.wsFlags & WHERE_NOT_FULLSCAN)==0
++  || sCost.plan.u.pIdx==pTabItem->pIndex );
++
++if( isOptimal && (sCost.plan.wsFlags & WHERE_NOT_FULLSCAN)==0 ){
++  notIndexed |= m;
++}
++
++/* Conditions under which this table becomes the best so far:
++**
++**   (1) The table must not depend on other tables that have not
++**   yet run.
++**
++**   (2) A full-table-scan plan cannot supercede another plan unless
++**   it is an "optimal" plan as defined above.
++**
++**   (3) All tables have an INDEXED BY clause or this table lacks an
++**   INDEXED BY clause or this table uses the specific
++**   index specified by its INDEXED BY clause.  This rule ensures
++**   that a best-so-far is always selected even if an impossible
++**   combination of INDEXED BY clauses are given.  The error
++**   will be detected and relayed back to the application later.
++**   The NEVER() comes about because rule (2) above prevents
++**   An indexable full-table-scan from reaching rule (3).
++**
++**   (4) The plan cost must be lower than prior plans or else the
++**   cost must be the same and the number of rows must be lower.
++*/
++if( (sCost.used¬Ready)==0   /* (1) */
++&& (bestJ<0 || (notIndexed&m)!=0   /* (2) */
++|| (sCost.plan.wsFlags & WHERE_NOT_FULLSCAN)!=0)
++&& (nUnconstrained==0 || pTabItem->pIndex==0   /* (3) */
++|| NEVER((sCost.plan.wsFlags & WHERE_NOT_FULLSCAN)!=0))
++&& (bestJ<0 || sCost.rCost

signature.asc
Description: Digital signature


Bug#590902: usb-modeswitch-data: 19d2:2000 conflicts with 61-mobile-action.rules from udev

2010-08-07 Thread Josua Dietze

Hi Erick,

Some questions:
What happens if you leave the usb_modeswitch config file intact but 
disable the rule in 61-mobile-action.rules (out-comment, reload rules) ?


What happens if both ways are intact and you change the config file 
"/etc/usb_modeswitch.d/19d2:2000" and add the following line ?


MessageContent3="555342431234567820008c85010101180101010101"

Josh



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



Bug#592150: label each log message with sdi, sdj, sdk etc.

2010-08-07 Thread Rogério Brito
Hi, Jidanni.

2010/8/7  :
(...)
> causing the reader to scratch his head: "why on earth are these messages
> repeating?"
(...)

I agree with you completely: the logging of usbmount indeed sucks at
the moment. It will have to be improved. In the ideal situation,
having multiple levels (fine-grained) of verboseness would be
desireable.

> Wait, could this be related to the three repeated kernel messages?:
>
> Aug  8 02:01:16 jidanni1 kernel: [   64.400493] sd 3:0:0:2: [sdh] Assuming 
> drive cache: write through
> Aug  8 02:01:16 jidanni1 kernel: [   64.422476] sd 3:0:0:2: [sdh] Assuming 
> drive cache: write through
> Aug  8 02:01:16 jidanni1 kernel: [   64.422536]  sdh: sdh1
> Aug  8 02:01:16 jidanni1 kernel: [   64.448481] sd 3:0:0:2: [sdh] Assuming 
> drive cache: write through

I will have to read the source of the kernel or ask around.

> By the way, if you know what is going on with those three repeated
> kernel messages, perhaps you could report a similar bug as this one to
> the kernel team. Thanks.

Sure. Thanks for your very nice reports. You are quite valuable with
your reports.


Thanks,

-- 
Rogério Brito : rbr...@{mackenzie,ime.usp}.br : GPG key 1024D/7C2CAEB8
http://www.ime.usp.br/~rbrito : http://meusite.mackenzie.com.br/rbrito
Projects: algorithms.berlios.de : lame.sf.net : vrms.alioth.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#592162: lxmusic segfaults after starting playback

2010-08-07 Thread canci
Package: lxmusic
Version: 0.4.2-2
Severity: important

lxmusic starts normally, but then segfaults after starting playback. the music
is playing, ps shows xmms2d running, but the frontend lxmusic is down. As long
as the instant of xmms2d is running, lxmusic cannot be started again, claiming
segfault every time.

This is Debian Squeeze 64 bit on vanilla ALSA.

Thank you so much for your work. I really like lxmusic.



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

Versions of packages lxmusic depends on:
ii  libatk1.0-0  1.30.0-1The ATK accessibility toolkit
ii  libc62.11.2-2Embedded GNU C Library: Shared lib
ii  libcairo21.8.10-4The Cairo 2D vector graphics libra
ii  libdbus-1-3  1.2.24-3simple interprocess messaging syst
ii  libdbus-glib-1-2 0.86-1  simple interprocess messaging syst
ii  libfontconfig1   2.8.0-2.1   generic font configuration library
ii  libfreetype6 2.4.0-2 FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.24.1-1The GLib library of C routines
ii  libgtk2.0-0  2.20.1-1The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk2. 0.5.0-2 sends desktop notifications to a n
ii  libpango1.0-01.28.1-1Layout and rendering of internatio
ii  libxmmsclient-glib1  0.7DrNo-7.1 XMMS2 - glib client library
ii  libxmmsclient6   0.7DrNo-7.1 XMMS2 - client library
ii  xmms2-core   0.7DrNo-7.1 XMMS2 - core package

Versions of packages lxmusic recommends:
ii  xmms2-plugin-alsa0.7DrNo-7.1 XMMS2 - ALSA output
ii  xmms2-plugin-id3v2   0.7DrNo-7.1 XMMS2 - ID3v2 plug-in
ii  xmms2-plugin-mad 0.7DrNo-7.1 XMMS2 - libmad based mp3 decoder
ii  xmms2-plugin-vorbis  0.7DrNo-7.1 XMMS2 - vorbis decoder

Versions of packages lxmusic suggests:
pn  xmms2-plugin-all   (no description available)

-- no debconf information



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



Bug#592161: ITP: yui-builder -- a yui component build tool

2010-08-07 Thread Michael Gilbert
Package: wnpp
Owner: Michael Gilbert 
Severity: wishlist

* Package name: yui-builder
  Version : 1.0.0b1 
  Upstream Author : Yahoo
* URL : http://yuilibrary.com/projects/builder
* License : BSD 
  Programming Lang: None (just a build environment)
  Description : a build environment for YUI

YUI builder is a build environment for yahoo's YUI, which includes a
collection of HTML, CSS, and JavaScript components for creating AJAX
web pages.



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



Bug#592148: [widelands] Can't be started - libSDL_gfx.so.13: cannot open

2010-08-07 Thread Julien Cristau
reassign 592148 libsdl-gfx1.2-4 2.0.19-1
retitle 592148 missing shlibs bump for libSDL_gfx.so.13
severity 592148 serious
kthxbye

On Sat, Aug  7, 2010 at 21:49:12 +0200, Rob Gom wrote:

> Package: widelands
> Version: 1:15-2
> Severity: grave
> 
> --- Please enter the report below this line. ---
> When executing widelands command, the following output is printed:
> widelands: error while loading shared libraries: libSDL_gfx.so.13:
> cannot open shared object file: No such file or directory
> Probably some dependency problem?
> 
libSDL_gfx.so changed SONAME in 2.0.19, and a compat symlink was added
as libSDL_gfx.so.4, but the shlibs entry needed to be bumped to ensure
that packages built against the new ABI would have their dependency
satisfied.  This breaks partial upgrades from lenny.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#592159: ITP: poezio -- XMPP terminal-based client

2010-08-07 Thread Nicolas Maître
I currently need the package python-xmpp to be upgraded to 0.5.0. It
has already been suggsted to the  concerned package maintainer (see
#592010).

Otherwise, the package is almost ready for upload.

-- 
Nicolas



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



Bug#592138: [reportbug/master] fix a typo to properly recognize free-exception; thanks to Jakub Wilk for the report; Closes: #592138

2010-08-07 Thread Sandro Tosi
tag 592138 pending
tag 592138 pending
thanks

Date:   Sat Aug 7 22:02:43 2010 +0200
Author: Sandro Tosi 
Commit ID: 77ff04573e0d5960f7d914b4f791b2c745dc1899
Commit URL: 
http://git.debian.org/?p=reportbug/reportbug.git;a=commitdiff;h=77ff04573e0d5960f7d914b4f791b2c745dc1899
Patch URL: 
http://git.debian.org/?p=reportbug/reportbug.git;a=commitdiff_plain;h=77ff04573e0d5960f7d914b4f791b2c745dc1899

fix a typo to properly recognize free-exception; thanks to Jakub Wilk for 
the report; Closes: #592138

  



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



Bug#591722: #591722 usb-modeswitch: Broken assumption on availability of /usr/bin/ and /var/log/ at boot time

2010-08-07 Thread Josua Dietze

Am 07.08.2010 18:12, schrieb Didier 'OdyX' Raboud:


Hi Marco and Josh,

So here's a first patch for this bug. Marco: would that sound okay for you ?

http://git.debian.org/?p=collab-maint/usb-modeswitch.git;a=commitdiff;h=a41dcc4



That's absolutely fine with me, taking the "alsa way". For the next 
release I just have to check the availability of the hotplug functions 
on the other distros.


Thanks, OdyX!

Josh

--
Man is the only creature on earth enabled to take a
warm meal while flying.  Loriot



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



Bug#592160: bugzilla: [INTL:pt] Updated Portuguese translation for debconf messages

2010-08-07 Thread tra...@debianpt.org

Package: bugzilla
Version: n/a
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for bugzilla's debconf messages.
Translator: Miguel Figueiredo 
Feel free to use it.

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


--
Best regards,

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


# Portuguese translation for bugzilla debconf messages.
# This file is distributed under the same license as the bugzilla package.
# Hugo Adão , 2006-2008
# Miguel Figueiredo , 2008-2010.
#
msgid ""
msgstr ""
"Project-Id-Version: bugzilla\n"
"Report-Msgid-Bugs-To: bugzi...@packages.debian.org\n"
"POT-Creation-Date: 2010-08-06 00:43+0200\n"
"PO-Revision-Date: 2010-08-07 09:32+0100\n"
"Last-Translator: Miguel Figueiredo \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"
"X-Poedit-Language: Portuguese\n"

#. Type: password
#. Description
#: ../bugzilla3.templates:2001
msgid "Password confirmation:"
msgstr "Confirmação da palavra-passe:"

#. Type: string
#. Description
#: ../bugzilla3.templates:3001
msgid "Email address of Bugzilla administrator:"
msgstr "Endereço de e-mail do administrador do Bugzilla:"

#. Type: string
#. Description
#: ../bugzilla3.templates:3001
msgid "Please enter the email address of the Bugzilla administrator; all mail 
for the administrator will be sent to this address. This email address is also 
used as the administrator login for Bugzilla."
msgstr "Por favor introduza o endereço de email do administrador do Bugzilla; 
todo o correio para o administrador será enviado para este endereço. Este 
endereço de email também é utilizado como login de administrador para o 
Bugzilla."

#. Type: string
#. Description
#: ../bugzilla3.templates:3001
msgid "A valid address must contain exactly one '@', and at least one '.' after 
the @. You'll be able to change this setting through Bugzilla's web interface."
msgstr "Um endereço válido deverá conter exactamente um '@', e pelo menos um 
'.' depois do @. Poderá alterar esta configuração a partir do interface web 
do Bugzilla."

#. Type: string
#. Description
#: ../bugzilla3.templates:4001
msgid "Real name of Bugzilla administrator:"
msgstr "Nome real do administrador do Bugzilla:"

#. Type: password
#. Description
#: ../bugzilla3.templates:5001
msgid "Password for the Bugzilla administrator account:"
msgstr "Palavra-passe para a conta de administrador do Bugzilla:"

#. Type: boolean
#. Description
#: ../bugzilla3.templates:6001
msgid "Have Status or Resolution values been customized?"
msgstr "Os valores Status ou Resolution foram personalizados?"

#. Type: boolean
#. Description
#: ../bugzilla3.templates:6001
msgid "If values in the Status or Resolution fields have been customized, the 
checksetup procedure must be modified appropriately before installation can 
continue."
msgstr "Se os valores nos campos Status ou Resolution foram personalizados, o 
procedimento checksetup tem de ser modificado apropriadamente antes da 
instalação poder continuar."

#. Type: boolean
#. Description
#: ../bugzilla3.templates:6001
msgid "For each update of this package, a new version of the 
checksetup_nondebian.pl script is installed; the 
/usr/share/bugzilla3/debian/pre-checksetup.d directory can be used to 
automatically apply your modifications before execution."
msgstr "Para cada actualização deste pacote, é instalada uma nova versão do 
script checksetup_nondebian.pl; o directório 
/usr/share/bugzilla3/debian/pre-checksetup.d pode ser utilizado para aplicar 
automaticamente as suas modificações antes da execução."

#. Type: boolean
#. Description
#: ../bugzilla3.templates:7001
msgid "Prompt about customized Status/Resolution at each update?"
msgstr "Perguntar por Status/Resolution em cada actualização?"

#. Type: boolean
#. Description
#: ../bugzilla3.templates:7001
msgid "If you modified Status/Resolution fields and created a script within 
/usr/share/bugzilla3/debian/pre-checksetup.d to apply changes to 
/usr/share/bugzilla3/lib/checksetup_nondebian.pl, you may want to avoid being 
prompted at each package upgrade."
msgstr "Se alterou os campos Status/Resolution e criou algum script dentro de 
/usr/share/bugzilla3/debian/pre-checksetup.d para aplicar alterações a 
/usr/share/bugzilla3/lib/checksetup_nondebian.pl, pode querer evitar ser 
questionado a cada actualização do pacote."

#. Type: boolean
#. Description
#: ../bugzilla3.templates:7001
msgid "If you accept being prompted, you will have to call 
/usr/share/bugzilla3/lib/checksetup.pl yourself, at each package upgrade, 
before using Bugzilla."
msgstr "Se aceitou ser questionado, terá de chamar 
/usr/share/bugzilla3/lib/checksetup.pl, a cada actualização do pacote, antes 
de utilizar o Bugzilla."

#. Type: boolean
#. Description
#: ../bugzilla3.templates:7001
msgid "If you did not modify Status/Resolution, you s

Bug#592159: ITP: poezio -- XMPP terminal-based client

2010-08-07 Thread Nicolas Maître
Package: wnpp
Severity: wishlist
Owner: "Nicolas Maître" 


* Package name: poezio
  Version : 0.6.2
  Upstream Author : Florent Le Coz 
* URL : http://www.poezio.eu/
* License : GPL-3+
  Programming Lang: Python
  Description : XMPP terminal-based client

  Poezio is a light, fast and geeky XMPP client which runs in console.
  Its goal is to let you connect very easily (no account creation needed) to
  the network and join various XMPP chatrooms.

  Poezio's design is similar to famous text-based IRC clients (weechat, irssi,
  etc). Many commands are identical and you won't be lost if you already know
  those clients.



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



Bug#590644: (no subject)

2010-08-07 Thread Thomas Müller
reference in upstream tracker:
http://bugs.quassel-irc.org/issues/1010


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


  1   2   3   4   >