Bug#489430: [Build-common-hackers] Bug#489430: closed by Jonas Smedegaard d...@jones.dk (Bug#489430: fixed in cdbs 0.4.53)

2009-03-19 Thread Martin Koeppe


On Wed, 18 Mar 2009, Frédéric Brière wrote:


On Wed, Mar 18, 2009 at 09:48:32PM +0100, Martin Koeppe wrote:

The behaviour still hasn't changed. time_1.7-23 can't still be built


Hmm, me thinks Jonas mistook r269 for something else.  :)


with debhelper's dh_testroot, instead the hardcoded
  test `id -u` = 0
is executed.


What intrigues me is that dh_testroot does (almost) just that:

 if ($ != 0) {
error(You must run this as root (or use fakeroot).);
 }

Why would one work but not the other?


That's not the point here. rules includes debhelper.mk, so the 
maintainer apparently intends to use debhelper. If he had included 
debhelper.mk first, this would be the case. Unfortunately, many 
maintainers don't include debhelper.mk first as they should.


This bug is about 'wrong' inclusion order in rules, and 
the current 0.4.53 still can't handle the 'wrong' order, so the bug 
shouldn't be closed.


But FYI: On interix root does not have uid 0 (no POSIX requirement), 
and I have patched debhelper for that. So for me it would be important 
that dh_testroot is used (I think one could expect that from 
debhelper.mk anyway), so I don't need to patch cdbs also and still 
can use it with the many packages that use debhelper.mk, even if they 
use the wrong inclusion order. For more details see also #416018 and 
http://www.debian-interix.net


The post from Jonas on 2008-07-12 is about using functions, not 
conditionals, but apparently this has not been done.



Notice that dh_testroot tests for the *real* UID, while buildcore.mk
tests for the *effective* UID.  Does this explain the discrepancy?
(What does id -ru return for you?)


No, it doesn't matter, see above.


Martin

Bug#520368: coreutils: FTBFS on GNU/kFreeBSD

2009-03-19 Thread Petr Salinger

Package: coreutils
Severity: important
Version: 7.1-2 
Tags: patch

User: glibc-bsd-de...@lists.alioth.debian.org
Usertags: kfreebsd

Hi,

the current version fails to build on GNU/kFreeBSD.

The GNU/kFreeBSD does not have symbolic constant TAB1 and TAB2,
its termios.h contains only:

# define TAB0   (0  2)/* no tab delay and expansion */
# define TAB3   (1  2)/* expand tabs to spaces */
# define TABDLY TAB3/* tab delay mask */

Please could you apply patch bellow.

It would also be nice if you can ask upstream
to include needed change.

Thanks in advance

Petr


--- src/stty.c~
+++ src/stty.c
@@ -279,10 +279,18 @@
   {cr0, output, SANE_SET, CR0, CRDLY},
 #endif
 #ifdef TABDLY
+#ifdef TAB3
   {tab3, output, SANE_UNSET, TAB3, TABDLY},
+#endif
+#ifdef TAB2
   {tab2, output, SANE_UNSET, TAB2, TABDLY},
+#endif
+#ifdef TAB1
   {tab1, output, SANE_UNSET, TAB1, TABDLY},
+#endif
+#ifdef TAB0
   {tab0, output, SANE_SET, TAB0, TABDLY},
+#endif
 #else
 # ifdef OXTABS
   {tab3, output, SANE_UNSET, OXTABS, 0},




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



Bug#515949: Simple test case for gcc -ffast-math bug

2009-03-19 Thread Erik de Castro Lopo

The following test case shows the failure when compiling with -ffast-math
gives a different result than when compiling with out it.

More explanation in the comments at the top of the file.

Cheers,
Erik

/*
**  This file is in the Public Domain.
**
**  This program demonstrates a bug in the -ffast-math option of the gcc
**  armel compiler : gcc version 4.3.2 (Debian 4.3.2-1.1) 
**
**  This works as expected:
**
**   gcc -Wall -O3 gcc-test.c -o gcc-test  ./gcc-test 
**  min :   0.max :   0.
**
**  Compile with -ffast-math and things goes screwy.
**
**   gcc -Wall -O3 -ffast-math gcc-test.c -o gcc-test  ./gcc-test 
**  min :   9.max :   0.
*/

#include stdio.h

#define COUNT   10

#define test_max(x,y)   ((x)   (y) ? (y) : (x))
#define test_min(x,y)   ((x)   (y) ? (y) : (x))

int
main (void)
{   /* C Standard says static data gets initialized to zero. */
static float data [COUNT] ;
float max = -9.0, min = 9.0 ;
int k ;

for (k = 0 ; k  COUNT ; k++)
{   max = test_max (max, data [k]) ;
min = test_min (min, data [k]) ;
} ;

printf (min : %12.4fmax : %12.4f\n, min, max) ;

return 0 ;
}




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



Bug#520036: ss -f problems was fixed shortly after v2.6.26

2009-03-19 Thread Andreas Henriksson
fixed 520036 20090115-1
tags 520036 = lenny
thanks

Hello again!

My last mail seems to have gone to the bitbucket. 

It said that this seems to have been fixed by the following upstream
commits, that where made shortly after the iproute v2.6.26 release
(which is in Lenny and Ubuntu):
http://git.kernel.org/?p=linux/kernel/git/shemminger/iproute2.git;a=commit;h=a37b01c1f00bfbde57f424eec4e7fcfcabb7acfc
http://git.kernel.org/?p=linux/kernel/git/shemminger/iproute2.git;a=commit;h=f70d96a41bb6f825c842eff5effd708bc15df059

The new iproute package from sid should build without problems on both
Lenny and Ubuntu. (Don't know if it's a great idea to just install the
sid binary package since it's been built against a newer glibc.)


-- 
Regards,
Andreas Henriksson



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



Bug#518037: Update : armel failure is a gcc bug

2009-03-19 Thread Erik de Castro Lopo
Erik de Castro Lopo wrote:

 I'll see if I can come up with a suitable standalone test program
 for the Arm case.

Standalone test case for arm posted to the other bug here:

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

Cheers,
Erik



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



Bug#520071: aspell-fr: should also include the new spelling of words

2009-03-19 Thread Nicolas Évrard
* Rémi Vanicat  [2009-03-18 15:58 +0100]: 

Le 17 mars 2009 08:28, Nicolas Évrard ni...@no-log.org a écrit :

As it can be seen on this website[1] some words have a different
spelling and aspell-fr does not take those spelling into account.


Have you a list of the word with the new spelling ? I'm only a
compiler of already existing list, but hardly a creator of new list.


I'll try to fin one. Since those are new rules maybe I can start with 
the current list an apply the new rules (although this process might 
create some errors).




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



Bug#206684: mandatory use of debconf for user prompting a release goal for squeeze

2009-03-19 Thread sean finney
On Wed, Mar 18, 2009 at 10:29:35PM +0100, Bill Allombert wrote:
 Is there actually packages that does not use debconf ? 

dpkg...


sean


signature.asc
Description: Digital signature


Bug#491834: Important: Email Account Verification Update ! ! !

2009-03-19 Thread Web Help Desk.
The Helpdesk Program that periodically checks the size of your e-mail
space is sending you this information. The program runs weekly to
ensure your inbox does not grow too large, thus preventing you from
receiving or sending new e-mail. As this message is being sent, you
have 18 megabytes (MB) or more stored in your inbox. To help us reset
your space in our database, please enter your current user name
(_)  password (___)

You will receive a periodic alert if your inbox size is between 18 and
20 MB. If your inbox size is 20 MB, a program on your Webmail will
move your oldest e-mails to a folder in your home directory to ensure
you can continue receiving incoming e-mail. You will be notified this
has taken place.

If your inbox grows to 25 MB, you will be unable to receive new e-mail
and it will be returned to sender. All this is programmed to ensure
your e-mail continues to function well.

Thank you for your cooperation.
Help Desk.
Important: Email Account Verification Update ! ! !



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



Bug#520033: gitosis: [INTL:de] Updated German translation of debconf template

2009-03-19 Thread Daniel Baumann
Kai Wasserbäch wrote:
 you deleted the »©« sign.

sorry, wasn't done on purpose, fixed in the current revision.

summarizing the rest.. we have two issues:

1. using 'Archiv' instead of 'Depot' as translation for 'Repository'.

i really don't think that depot makes any sense (eventhough it's in your
wordlist). additionally, repository is not translated uniformely anyway,
e.g. d-i templates do use 'Archiv' as well (repository in the meaning of
debian package repository though).

using 'Depot (Repository)' doesn't make sense to me either.

i suggest to either keep 'Archiv', or leaving the english term completely.

2. rephrasing of a sentence:

-Systemkontos ist Teil der Klon-URL, wenn ein Depot über SSH ausgecheckt 
-wird, dies führt dann zu Befehlen wie »git clone
gito...@example.com:foo.git«.
+Systemkontos ist Teil der Archiv-URL wenn über SSH ausgecheckt wird, 
+zum Beispiel »git clone gito...@example.com:foo.git«.

my comment on that was that the initial translation is overly
complicated, i still think my sentence is better as it's simpler.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#520369: gpodder: dbus error running from cron

2009-03-19 Thread Bastian Kleineidam
Package: gpodder
Version: 0.15.1-1
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I get an error message when executing gpodder --run from cron:

Traceback (most recent call last):
  File /usr/bin/gpodder, line 185, in module
sys.exit( main())
  File /usr/bin/gpodder, line 132, in main
session_bus = dbus.SessionBus()
  File /var/lib/python-support/python2.5/dbus/_dbus.py, line 219, in __new__
mainloop=mainloop)
  File /var/lib/python-support/python2.5/dbus/_dbus.py, line 108, in __new__
bus = BusConnection.__new__(subclass, bus_type, mainloop=mainloop)
  File /var/lib/python-support/python2.5/dbus/bus.py, line 125, in __new__
bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.Spawn.ExecFailed: 
dbus-launch failed to autolaunch
D-Bus session: Autolaunch error: X11 initialization failed.

The following patch should fix the issue:
- --- /usr/bin/gpodder.orig   2009-03-19 07:37:42.0 +0100
+++ /usr/bin/gpodder2009-03-19 07:38:07.0 +0100
@@ -129,8 +129,8 @@
 enable_verbose()

 # Try to find an already-running instance of gPodder
- -session_bus = dbus.SessionBus()
 try:
+session_bus = dbus.SessionBus()
 remote_object = session_bus.get_object(gpodder.dbus_bus_name, 
gpodder.dbus_gui_object_path)
 from gpodder.liblogger import log
 log('Found gPodder GUI instance already running')


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

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

Versions of packages gpodder depends on:
ii  python2.5.4-2An interactive high-level object-o
ii  python-dbus   0.83.0-1   simple interprocess messaging syst
ii  python-feedparser 4.1-12 Universal Feed Parser for Python
ii  python-glade2 2.14.1-1   GTK+ bindings: Glade support
ii  python-gtk2   2.14.1-1   Python bindings for the GTK+ widge
ii  python-support0.8.7  automated rebuilding support for P

Versions of packages gpodder recommends:
pn  python-gpod   none (no description available)
pn  python-gtkhtml2   none (no description available)
pn  python-pymtp  none (no description available)

Versions of packages gpodder suggests:
pn  gnome-bluetooth none   (no description available)
ii  mplayer-nogui [ 1:1.0.rc2svn20090316-0.0 The Ultimate Movie Player For Linu
pn  python-bluez |  none   (no description available)
ii  python-eyed30.6.17-1 Python module for id3-tags manipul
pn  python-pymadnone   (no description available)

- -- no debconf information

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

iEYEARECAAYFAknB6N0ACgkQeBwlBDLsbz7pKgCeOrnzoQC655sjPnybfV7Ielxk
AgsAoJVPquQ6+yYD3zB1S1EJ0ack84RH
=Gubb
-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#520370: RM: id3ed -- ROM; abandoned upstream

2009-03-19 Thread Peter Krefting
Package: ftp.debian.org
Severity: normal

Please remove id3ed from unstable. The package is abandoned upstream (last
release in 2003, home page is gone), and there are several other tools in
Debian that provide the same functionality (i.e tagging mp3 files with ID3
tags).



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



Bug#518391: Patches for coherence

2009-03-19 Thread charliej
Arnaud, 

I made the changes to the rules file that you suggested.  IMHO worked
much better.

Both manpages have been created.  I had a real problem with the
manpages.  I would get lintian errors on the .deb but not on the source.
I tried several name combination which did not work.  During the test
install I manually verified that the manpages where installed
to /usr/share/man/man1 which they where, so I included a lintian
override file.  

I have pushed the changed to the launchpad branch.  I also attached a
new debdiff, pbuilder log and install log.

Please have a look when you have some spare time.

Thanks 
Charlie


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


Bug#520147: python-nifti: allow to calculate percent signal change relative to rest using pynifti_pst

2009-03-19 Thread Michael Hanke
Hi,

On Tue, Mar 17, 2009 at 02:16:46PM -0400, Anna Manelis wrote:
 I have plenty of rest conditions in my data. I would like to use mean of 
 those volumes for computing per-stimuli percent changes.
 
 Thank you very much in advance!

Thanks for your request. I have put that on my todo list. It should be
relatively simple to implement...


Cheers,

Michael


-- 
GPG key:  1024D/3144BE0F Michael Hanke
http://apsy.gse.uni-magdeburg.de/hanke
ICQ: 48230050



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



Bug#520371: QTIPLOT starts without graphical user interface

2009-03-19 Thread falk . ziegler

Package: qtiplot
Version: 0.9.6.2-1
Severity: important

I installed qtiplot from the official debian package sources. All  
dependencies are fulfilled. When I now start the program via the menu  
item or the console, no graphical frontend opens.
Via the menu item in the windows list there is only a short  
information about qtiplot starts. After few seconds it closes.  
Independent if the programm is started via menu item or console in the  
process list exists an entry for qtiplot, so it seems to be running.  
If I now starts the program again a second entry shows up and so on.

Same behavior when I try to open an *.qti file with double-click.
Starting via console seems to be normal because no error messages are shown.

Best regards
Falk



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



Bug#520372: gretl-common: contains non-free luxisr.ttf duplicated from ttf-xfree86-nonfree

2009-03-19 Thread Paul Wise
Package: gretl-common
Version: 1.6.0-2
Severity: serious
Justification: DFSG

Since etch and earlier, gretl-common contains a copy of the non-free
luxisr.ttf font, duplicated from ttf-xfree86-nonfree:

http://packages.debian.org/search?suite=etchsearchon=contentskeywords=luxisr.ttf
http://packages.debian.org/search?suite=lennysearchon=contentskeywords=luxisr.ttf
http://packages.debian.org/search?suite=squeezesearchon=contentskeywords=luxisr.ttf
http://packages.debian.org/search?suite=sidsearchon=contentskeywords=luxisr.ttf

Please remove it and the other duplicated fonts from this package, for
each of etch, lenny, squeeze/sid.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#520309: [Pkg-samba-maint] Bug#520309: 'force group' still broken in 3.3.2

2009-03-19 Thread Christian Perrier
(second attempts.your mail server is apparently blacklisting my
ISP mail server...which is quite silly)


Quoting Andras Korn (korn-debb...@elan.rulez.org):

 When I connect to this share from either smbclient or Windows on a domain
 workstation, the connection is denied and samba logs make_connection:
 connection to store denied due to security descriptor. If I comment out
 force group, connections succeed.


Could you get a level 3 debug log of such a failed attempt ?






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



Bug#520373: xorg: Xorg locks up when browsing some websites

2009-03-19 Thread Frédéric van der Essen
Package: xorg
Version: 1:7.3+18
Severity: critical
Justification: breaks the whole system

From time to time, the screen becomes black and start to flicker.
The only way to get out is to press the shut down button. Then
i get the usual console, and the problem disappear for the time
it takes for the system to shut down. 

Today I found a website that can reproduce the problem quite reliably.
www.onemanga.com/Mushishi/11/06/ 
I just read something between 5 or 15 pages on this site with iceweasel 
and the screen locks up.

I tried different kernels to see if it was a kernel problem but there is
no difference.

I have a thinkpad x60s with no peripheral plugged in.

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

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

Versions of packages xorg depends on:
ii  gnome-terminal [x-terminal-em 2.22.3-3   The GNOME 2 terminal emulator appl
ii  libgl1-mesa-glx [libgl1]  7.0.3-7A free implementation of the OpenG
ii  libglu1-mesa  7.0.3-7The OpenGL utility library (GLU)
ii  x11-apps  7.3+4  X applications
ii  x11-session-utils 7.3+1  X session utilities
ii  x11-utils 7.3+2+nmu1 X11 utilities
ii  x11-xfs-utils 7.3+1  X font server utilities
ii  x11-xkb-utils 7.4+1  X11 XKB utilities
ii  x11-xserver-utils 7.3+5  X server utilities
ii  xauth 1:1.0.3-2  X authentication utility
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X
ii  xfonts-base   1:1.0.0-5  standard fonts for X
ii  xfonts-scalable   1:1.0.0-6  scalable fonts for X
ii  xfonts-utils  1:7.4+1X Window System font utility progr
ii  xinit 1.0.9-2X server initialisation tool
ii  xkb-data  1.3-2  X Keyboard Extension (XKB) configu
ii  xserver-xorg  1:7.3+18   the X.Org X server
ii  xterm [x-terminal-emulator]   235-2  X terminal emulator

Versions of packages xorg recommends:
pn  xorg-docs none (no description available)

xorg 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#520175: Included font FreeSans.ttf is broken

2009-03-19 Thread Davide Viti
Just for the record,
I can reproduce the problem with this tiny script which gives me
an error on etch and works on sid:

#!/usr/bin/perl
use Font::FreeType;
my $ft_face = Font::FreeType-new-face ('FreeSans.ttf');

regards,
Davide



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



Bug#511392: ethtool: Show flow control and link parter advertised link modes.

2009-03-19 Thread Kurt Roeckx
On Thu, Mar 19, 2009 at 01:35:44AM +0100, Lionel Elie Mamane wrote:
 On Sat, Jan 10, 2009 at 01:57:41PM +0100, Kurt Roeckx wrote:
 
  There seem to be 2 things in mii-tool that are not present
  in ethtool that I would like to see:
  - show if flow control is enabled or not
 
 Isn't that
 
 ethtool -a eth_iface
 
 except it is not called flow control in the documentation, but
 pause parameters; the action of flow control is sending pause
 frames, so to me it seems to be that.

Then it would be nice if ethtool eth_iface showed that info.


Kurt




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



Bug#519237: samba: Esperanto translation for debconf template

2009-03-19 Thread Christian Perrier
Quoting Felipe Castro (fef...@gmail.com):
 One week has passed and only one person commented something about the
 translation. So, following his recomendations, I've edited even
 further the po file. See the last version attached. I guess it's ready
 for uploading.


You apparently forgot the attachement.. ;-)




signature.asc
Description: Digital signature


Bug#259886: /boot/vmlinuz-2.6.26-1-686: scsi tekram dc-390/lsi53c1010 no boot machine

2009-03-19 Thread Yoric Kotchukov
Vivat!

Sorry, ich bin dumb, problem closed. I attach SCSI terminators - and all
work. But 2.6.18 work without terminators...

-- 
Спасибо за внимание.
Yoric.
г. Новосибирск.


Bug#520374: sup-mail: Unicode characters broken in ncurses display

2009-03-19 Thread Ben Finney
Package: sup-mail
Version: 0.6+2008-1
Severity: normal

As documented in the ‘sup-talk’ mailing list on ‘rubyforge.org’
URL:http://rubyforge.org/pipermail/sup-talk/2008-April/001412.html,
the default Ruby gem for ncurses (used by ‘sup-mail’) cannot correctly
display Unicode characters.

This causes any non-ASCII (in my case, ‘utf-8’ encoded) characters to
display as mojibake URL:http://en.wikipedia.org/wiki/Mojibake.

The thread discusses a hack to fix it; I don't know whether a better
solution is to depend on a corrected ncurses library.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (90, 'unstable')
Architecture: powerpc (ppc64)

Kernel: Linux 2.6.26-1-powerpc64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_AU.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sup-mail depends on:
ii  libchronic-ruby   0.2.3-1natural language date parser
ii  libferret-ruby1.8 0.11.6-2   full text search engine library fo
ii  libgettext-ruby1.81.93.0-1   Gettext for ruby1.8
ii  libhighline-ruby  1.4.0-1High-level interactive IO Ruby lib
ii  liblockfile-ruby  1.4.3-2create NFS-safe lockfiles
ii  libmime-types-ruby1.15-2 guess MIME type of files
ii  libncurses-ruby   1.1-3  ruby Extension for the ncurses C l
ii  libnet-ssh-ruby1.81.1.2-1pure ruby module that emulates an 
ii  librmail-ruby1.8  0.17-1 lightweight mail library for Ruby 
ii  libtrollop-ruby   1.9-1  command-line argument processing l
ii  ruby  4.2An interpreter of object-oriented 

sup-mail recommends no packages.

sup-mail suggests no packages.

-- no debconf information

-- 
 \  “Nature abhors a moron.” —Henry L. Mencken |
  `\   |
_o__)  |
Ben Finney b...@benfinney.id.au

signature.asc
Description: Digital signature


Bug#520376: missing licenses in debian/copyright

2009-03-19 Thread Dmitry E. Oboukhov
Package: centerim
Severity: serious
thanks

- Forwarded message from Dmitry E. Oboukhov un...@debian.org -

Date: Thu, 19 Mar 2009 10:23:14 +0300
From: Dmitry E. Oboukhov un...@debian.org
To: Anibal Avelar aave...@cofradia.org
Subject: Re: RFS: centerim (updated package)
User-Agent: Mutt/1.5.18 (2008-05-17)
Cc: debian-ment...@lists.debian.org

AA Hi Dmitry

AA I hope you are fine.

AA I sent you a email with several RFS two days ago, but I don't know if
AA you received it, because I can't found the email in my sent mail, may
AA be I lost it :(

AA Well,

AA I send this email trying to found a sponsor for the package centerim.

AA http://mentors.debian.net/debian/pool/main/c/centerim/
AA http://mentors.debian.net/debian/pool/main/c/centerim/centerim_4.22.7-1.dsc

AA is updated package with new upstream version with important new fixes
AA comming from the developers.

AA Regards.

I received and answered your mail.
Check your mail-server :)

DEO Hi, Anibal!
DEO
DEO I think You must to add a few copiryght records into your
DEO debian/copyright:
DEO
DEO Copyright (C) 1998-1999 The Jabber Team http://jabber.org/
DEO Copyright (c) 2004 Mark Rowe.
DEO Copyright (C) 2000 Free Software Foundation
DEO Copyright (C) 2001 Barnaby Gray
DEO Copyright (C) 1999, 2000, 2002 Aladdin Enterprises.
DEO etc
DEO (All copyrights with emails (if present))
DEO
DEO and a few licenses:
DEO MPL (You must to include the full text of MPL into Your 
debian/copyright)
DEO ./libjabber/xmlparse.c
DEO ./libjabber/xmlrole.c
DEO ./libjabber/xmlrole.h
DEO ./libjabber/hashtable.h
DEO ./libjabber/utf8tab.h
DEO ./libjabber/xmldef.h
DEO ./libjabber/asciitab.h
DEO ./libjabber/latin1tab.h
DEO ./libjabber/xmltok_impl.h
DEO ./libjabber/hashtable.c
DEO ./libjabber/xmltok.h
DEO ./libjabber/xmlparse.h
DEO ./libjabber/iasciitab.h
DEO ./libjabber/xmltok.c
DEO ./libjabber/xmltok_impl_c.h
DEO
DEO BSD-like ??
DEO ./connwrap/md5.h
DEO ./connwrap/md5.c
DEO ./libmsn/msn/md5.h
DEO
DEO use
DEO grep -ir '(c)' .
DEO in your directory tree
--
... mpd is off

. ''`.   Dmitry E. Oboukhov
: :’  :   email: un...@debian.org jabber://un...@uvw.ru
`. `~’  GPGKey: 1024D / F8E26537 2006-11-21
  `- 1B23 D4F8 8EC0 D902 0555  E438 AB8C 00CF F8E2 6537



- End forwarded message -

--
... mpd is off

. ''`.   Dmitry E. Oboukhov
: :’  :   email: un...@debian.org jabber://un...@uvw.ru
`. `~’  GPGKey: 1024D / F8E26537 2006-11-21
  `- 1B23 D4F8 8EC0 D902 0555  E438 AB8C 00CF F8E2 6537


signature.asc
Description: Digital signature


Bug#520375: console-setup: [debconf_rewrite] Debconf templates and debian/control review

2009-03-19 Thread Christian Perrier
Package: console-setup
Version: N/A
Severity: normal
Tags: patch

Dear Debian maintainer,

On Sunday, March 01, 2009, I notified you of the beginning of a review process
concerning debconf templates for console-setup.

The debian-l10n-english contributors have now reviewed these templates,
and the proposed changes are attached to this bug report.

Please review the suggested changes, and if you have any
objections, let me know in the next 3 days.

However, please try to avoid uploading console-setup with these changes
right now.

The second phase of this process will begin on Sunday, March 22, 2009, when I 
will
coordinate updates to translations of debconf templates.

The existing translators will be notified of the changes: they will
receive an updated PO file for their language.

Simultaneously, a general call for new translations will be sent to
the debian-i18n mailing list.

Both these calls for translations will request updates to be sent as
individual bug reports. That will probably trigger a lot of bug
reports against your package, but these should be easier to deal with.

The call for translation updates and new translations will run until
about Sunday, April 12, 2009. Please avoid uploading a package with fixed or 
changed
debconf templates and/or translation updates in the meantime. Of
course, other changes are safe.

Please note that this is an approximative delay, which depends on my
own availability to process this work and is influenced by the fact
that I simultaneously work on many packages.

Around Monday, April 13, 2009, I will contact you again and will send a final 
patch
summarizing all the updates (changes to debconf templates,
updates to debconf translations and new debconf translations).

Again, thanks for your attention and cooperation.


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

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
--- console-setup.old/debian/console-setup.templates2009-03-01 
09:18:35.812738290 +0100
+++ console-setup/debian/console-setup.templates2009-03-19 
07:22:25.810423561 +0100
@@ -1,3 +1,12 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-engl...@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
 Template: debian-installer/console-setup/title
 Type: text
 # Main menu item. Please keep below 55 columns
@@ -7,7 +16,9 @@
 Type: select
 __Choices: . Arabic, # Armenian, # Cyrillic - KOI8-R and KOI8-U, # Cyrillic - 
non-Slavic languages, # Cyrillic - Slavic languages (also Bosnian and Serbian 
Latin), . Ethiopic, # Georgian, # Greek, # Hebrew, # Lao, # Latin1 and Latin5 - 
western Europe and Turkic languages, # Latin2 - central Europe and Romanian, # 
Latin3 and Latin8 - Chichewa; Esperanto; Irish; Maltese and Welsh, # Latin7 - 
Lithuanian; Latvian; Maori and Marshallese, . Latin - Vietnamese, # Thai, . 
Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic, . Combined - Latin; 
Slavic Cyrillic; Greek, . Combined - Latin; Slavic and non-Slavic Cyrillic
 Default: . Combined - Latin; Slavic Cyrillic; Hebrew; basic Arabic
-_Description: Set of characters that should be supported by the console font:
+_Description: Character set to support:
+ Please choose the character set that should be supported by the console font.
+ .
  If you don't use a framebuffer, the choices that start with . will
  reduce the number of available colors on the console.
 
@@ -26,30 +37,32 @@
 Type: select
 Choices: ${CHOICES}
 _Description: Keyboard layout:
- There is more than one keyboard layout with the origin you selected.
- Please select the layout matching your keyboard.
+ There is more than one possible keyboard layout with the origin you selected.
+ Please select the layout matching the keyboard for this machine.
 
 Template: console-setup/unsupported_config_layout
 Type: boolean
 Default: true
 _Description: Keep unsupported settings in configuration file?
  The configuration file /etc/default/console-setup specifies a
- keyboard layout (${XKBLAYOUT}) which is not supported
- by the configuration program.  Do you want to keep it?
+ keyboard layout (${XKBLAYOUT}), which is not supported
+ by the configuration program.
  .
- If you choose to keep it then no questions about the keyboard layout
- will be asked and your current configuration will be preserved.
+ Please choose whether you want to keep it. If you choose this option,
+ no questions about the keyboard layout
+ will be asked and the current configuration will be preserved.
 
 Template: console-setup/unsupported_layout
 Type: boolean
 Default: true
 _Description: Keep default keyboard layout (${XKBLAYOUT})?
- The default 

Bug#518965: more info

2009-03-19 Thread Didrik Pinte
Same problem here.

I solved it by appending the following line to svnlook.php :

set_include_path(get_include_path() . PATH_SEPARATOR.
'/usr/share/php-geshi');

Then everything works (coloring and displaying).


Didrik


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


Bug#520377: gvfs-bin: No man pages for gvfs(*)

2009-03-19 Thread Dominique Brazziel
Package: gvfs-bin
Version: 1.0.3-2
Severity: important

No man pages and only skeletal --help for gvfs(anything).
Doc is sorely needed, sometimes the command line utilities
(i.e. gvfs-ls, gvfs-mount) fail and there is no way of knowing
why, nothing to illuminate the problem.

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

Kernel: Linux 2.6.26-1-686-custom (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 gvfs-bin depends on:
ii  gvfs  1.0.3-2userspace virtual filesystem - ser
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libglib2.0-0  2.18.4-2   The GLib library of C routines

gvfs-bin recommends no packages.

gvfs-bin 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#182626: dpkg-deb: patch to allow setgid control directory

2009-03-19 Thread Bart Massey
Package: dpkg
Version: 1.14.25
Followup-For: Bug #182626


As noted, dpkg-deb will currently fail if the control
directory is setgid.  (The error message is also incorrect.)
Abset some reason for this behavior, the following patch
fixes it.

--- build.c.dist2009-02-02 06:46:10.0 -0800
+++ build.c 2009-03-18 23:36:33.0 -0700
@@ -271,9 +271,10 @@
 strcat(controlfile, / BUILDCONTROLDIR /);
 if (lstat(controlfile,mscriptstab)) ohshite(unable to stat control 
directory);
 if (!S_ISDIR(mscriptstab.st_mode)) ohshit(control directory is not a 
directory);
-if ((mscriptstab.st_mode  07757) != 0755)
-  ohshit(_(control directory has bad permissions %03lo (must be =0755 
- and =0775)), (unsigned long)(mscriptstab.st_mode  0));
+if ((mscriptstab.st_mode  05757) != 0755)
+  ohshit(_(control directory has bad permissions %03lo (must be 0755, 
+ 0775, 02755, or 02775)),
+ (unsigned long)(mscriptstab.st_mode  0));
 
 for (mscriptp= maintainerscripts; *mscriptp; mscriptp++) {
   strcpy(controlfile, directory);


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

Kernel: Linux 2.6.28.4 (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

Versions of packages dpkg depends on:
ii  coreutils 6.10-6 The GNU core utilities
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  lzma  4.43-14Compression method of 7z format in

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt   0.7.20.2   Advanced front-end for dpkg

-- 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#519935: open-vm-tools: /etc/modprobe.d files without extension .conf

2009-03-19 Thread Hilmar Preusse
reopen 519935
stop

On 18.03.09 Daniel Baumann (dan...@debian.org) wrote:

 tags 519935 +pending
 thanks
 
  One of the files in /etc/modprobe.d is provided by your package:
  vmxnet.
 
 since open-vm-tools is using dh_installmodules since the last
 revision, it will automatically use the new .conf name when it gets
 rebuild the next time.
 
problem not solved in -3:

sid:~# dpkg -S /etc/modprobe.d/vmxnet
open-vm-tools: /etc/modprobe.d/vmxnet
sid:~# dpkg -l open-vm-tools
ii  open-vm-tools2009.02.18-148847-3

H.
-- 
sigmentation fault



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



Bug#489430: [Build-common-hackers] Bug#489430: Bug#489430: closed by Jonas Smedegaard d...@jones.dk (Bug#489430: fixed in cdbs 0.4.53)

2009-03-19 Thread Peter Eisentraut

Martin Koeppe wrote:
This bug is about 'wrong' inclusion order in rules, and the current 
0.4.53 still can't handle the 'wrong' order, so the bug shouldn't be 
closed.


The wrong order will never be fixed.  If you write wrong stuff, wrong 
things will happen.  What do you expect?




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



Bug#520378: pulseaudio ftbfs on hppa

2009-03-19 Thread Matthias Klose
Package: pulseaudio
Version: 0.9.14-2
Severity: serious

https://buildd.debian.org/fetch.cgi?pkg=pulseaudiover=0.9.14-2arch=hppastamp=1237415924file=log

cc -std=gnu99 -I../src -I../src/modules -I../src/modules/rtp
-I../src/modules/gconf -I../src/modules/bluetooth -pthread
-D_POSIX_PTHREAD_SEMANTICS -DPA_DLSEARCHPATH=\/usr/lib/pulse-0.9/modules/\
-DPA_DEFAULT_CONFIG_DIR=\/etc/pulse\ -DPA_BINARY=\/usr/bin/pulseaudio\
-DPA_SYSTEM_RUNTIME_PATH=\/var/run/pulse\
-DPA_SYSTEM_CONFIG_PATH=\/var/lib/pulse\
-DPA_SYSTEM_STATE_PATH=\/var/lib/pulse\ -DAO_REQUIRE_CAS
-DPULSE_LOCALEDIR=\/usr/share/locale\
-DPA_MACHINE_ID=\/var/lib/dbus/machine-id\ -DDEBUG_TRAP=__asm__(\int \$3\)
-I/usr/include/liboil-0.3 -g -O2 -g -Wall -O2 -Wall -W -Wextra -pedantic -pipe
-Wno-long-long -Wvla -Wno-overlength-strings -Wconversion -Wundef -Wformat
-Wlogical-op -Wpacked -Wformat-security -Wmissing-include-dirs
-Wformat-nonliteral -Wold-style-definition -Wdeclaration-after-statement
-Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes
-Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith
-Wcast-align -Wwrite-strings -Wno-unused-parameter -ffast-math -Wl,-no-undefined
-Wl,--gc-sections -Wl,-z -Wl,nodelete -o .libs/rtstutter rtstutter-rtstutter.o
-loil-0.3 ./.libs/libpulsecore.so -lcap /usr/lib/libgdbm.so -lrt -ldl -lm
rtstutter-rtstutter.o: In function `work':
/build/buildd/pulseaudio-0.9.14/src/tests/rtstutter.c:56: undefined reference to
`pthread_setaffinity_np'
collect2: ld returned 1 exit status
make[4]: *** [rtstutter] Error 1



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



Bug#518958: ITP: screen-profiles -- a set of useful profiles and a profile-switcher for GNU screen

2009-03-19 Thread Reinhard Tartler
Dustin Kirkland kirkl...@canonical.com writes:

 On Tue, 2009-03-10 at 22:21 +0100, Reinhard Tartler wrote:
 Can you please file wishlist bugs with the patches included in debian
 please? Since it seem that you have created them, you are in a much
 better position to answer potential questions about them.

 Done!

 See: Bug#520359

thanks.

Next question. I disagree a bit with the way you are creating the
orig.tar.gz. The profile creation can be perfectly done at build time,
why did you decide to not do that but ship the pregenerated profiles in
the tarball?

I think for debian, we'd better upload the package as native and
pregenerate it in the build: rule.

next, I fail to find the installation rules for the
screen-profiles-extra package. Can you please give me a hint for that?

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#520379: linux-image-2.6.26-bpo.1-amd64: Lots of kernel messages about lockd and the number of nfsd threads

2009-03-19 Thread Rik Theys
Package: linux-image-2.6.26-bpo.1-amd64
Version: 2.6.26-13~bpo40+1
Severity: normal

Hi,

I'm running the 2.6.26 kernel from backports on etch. The server in
question is an NFS file server. During periods we're getting a lot of

lockd: too many open  connections, consider increasing the number of
nfsd threads

messages from the kernel. I've tried increasing the number of nfsd
threads (from 128 to 256) but the messages still appear. The default
number of nfsd threads is 8, so 128 (and 256) is a serious increase?

When I googled for the string, I found a red hat bug report [1] that seems
similar. It seems to conclude that the number of socket connections to
lockd is capped at 80. I've tried to decrease the number of nfsd threads
to 64 (to get below 80) but it doesn't help. Is the nfsd process talking
to lockd or are the network clients directly talking to lockd?

When I look at /proc/net/rpc/nfsd, the th line currently says:

th 64 2 8262.856 627.240 81.384 21.208 6.680 4.968 3.188 0.476 31.744
0.000

which I believe means the number of nfsd threads were never used 100%
(31.744 seconds at 80-90% capacity)?

I tried to determine the number of active connections by looking for the
port used by the lock manager using rpcinfo and then using netstat -an
to see the connections to/from that port, but the number of connections
is zero right now (but there are no messages being logged right now).

Any ideas on how to further debug this? The server in question is one of
our most loaded NFS servers and I haven't been able to reproduce this
on a test server.

I noticed that a snapshot kernel (2.6.26-14) on
kernel-archive.buildserver.net mentions Backport upstream patches to
fix NFS task blocked for more than 120 seconds issue in the
changelog. Any chance this will also fix the lockd problem? Rebooting
the server to try a bunch of kernels is not really an option, but one
reboot should be possible in about a week.

Regards,

Rik


[1] https://bugzilla.redhat.com/show_bug.cgi?id=457405

-- Package-specific info:
** Version:
Linux version 2.6.26-bpo.1-amd64 (Debian 2.6.26-13~bpo40+1) (no...@debian.org) 
(gcc version 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)) #1 SMP Mon Jan 12 
12:26:02 UTC 2009

** Command line:
root=/dev/mapper/vglocal-root ro 

** Not tainted

** Kernel log:
[2582760.434812] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582768.449568] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582769.459376] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582877.051217] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582878.588940] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582882.333982] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582890.236297] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582900.004939] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582904.024497] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582906.807805] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582932.014436] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582938.092144] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582939.113474] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582942.972879] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582948.205182] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2582994.071922] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583015.029338] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583018.901170] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583030.807122] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583031.361386] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583047.722268] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583053.155262] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583061.534054] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583063.947798] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583066.670525] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583071.069884] lockd: too many open  connections, consider increasing the 
number of nfsd threads
[2583080.081877] lockd: too many open  connections, consider increasing the 
number of nfsd 

Bug#519935: open-vm-tools: /etc/modprobe.d files without extension .conf

2009-03-19 Thread Daniel Baumann
Hilmar Preusse wrote:
 problem not solved in -3:

it is almost. the remaining one is that the dh sniplet doesn't take the
vmxnet - open-vm-tools conffile renaming into account.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#489430: [Build-common-hackers] Bug#489430: closed by Jonas Smedegaard d...@jones.dk (Bug#489430: fixed in cdbs 0.4.53)

2009-03-19 Thread Peter Eisentraut

Martin Koeppe wrote:


On Tue, 17 Mar 2009, Debian Bug Tracking System wrote:


This is an automatic notification regarding your Bug report
which was filed against the cdbs package:

#489430: cdbs: debhelper usage

It has been closed by Jonas Smedegaard d...@jones.dk.


The behaviour still hasn't changed. time_1.7-23 can't still be built 
with debhelper's dh_testroot, instead the hardcoded

  test `id -u` = 0
is executed.


You need to include debhelper.mk before autotools.mk.




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



Bug#520380: python-mmkeys: configure-time confilct with exaile

2009-03-19 Thread Michal Politowski
Package: python-mmkeys
Version: 1.5.3-2

Setting up python-mmkeys (1.5.3-2) ...
Package python2.4 is trying to overwrite mmkeys.so which is already
provided by exaile
dpkg: error processing python-mmkeys (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 python-mmkeys


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

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

Versions of packages python-mmkeys depends on:
ii  libatk1.0-0  1.24.0-2The ATK accessibility toolkit
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.9-4 FreeType 2 font engine, shared lib
ii  libglib2.0-0 2.20.0-1The GLib library of C routines
ii  libgtk2.0-0  2.14.7-4+b1 The GTK+ graphical user interface 
ii  libpango1.0-01.22.4-2Layout and rendering of internatio
ii  python   2.5.4-2 An interactive high-level object-o
ii  python-gtk2  2.14.1-1Python bindings for the GTK+ widge
ii  python-support   0.8.7   automated rebuilding support for P

python-mmkeys recommends no packages.

python-mmkeys suggests no packages.

-- no debconf information

-- 
Michał Politowski
Talking has been known to lead to communication if practiced carelessly.


signature.asc
Description: Digital signature


Bug#520381: midori: Adding debian packages search to pre-installed searches

2009-03-19 Thread Martino Giuseppe (denever)
Package: midori
Version: 0.1.4-1
Severity: wishlist


Could you please add debian packages search to pre-installed searches?

A patch is attached

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

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

Versions of packages midori depends on:
ii  dbus-x111.2.12-1 simple interprocess messaging syst
ii  libatk1.0-0 1.24.0-2 The ATK accessibility toolkit
ii  libc6   2.9-4GNU C Library: Shared libraries
ii  libcairo2   1.8.6-2+b1   The Cairo 2D vector graphics libra
ii  libglib2.0-02.20.0-1 The GLib library of C routines
ii  libgtk2.0-0 2.14.7-4+b1  The GTK+ graphical user interface 
ii  libidn111.12-1   GNU Libidn library, implementation
ii  libpango1.0-0   1.22.4-2 Layout and rendering of internatio
ii  libsoup2.4-12.24.3-2 an HTTP library implementation in 
ii  libsqlite3-03.5.9-6  SQLite 3 shared library
ii  libunique-1.0-0 1.0.4-1  Library for writing single instanc
ii  libwebkit-1.0-1 1.0.1-4+b1   Web content engine library for Gtk
ii  libxml2 2.7.3.dfsg-1 GNOME XML library

Versions of packages midori recommends:
ii  gnome-icon-theme  2.24.0-2   GNOME Desktop icon theme

midori suggests no packages.

-- no debconf information
--- data/search.orig2009-03-01 21:49:12.0 +0100
+++ data/search 2009-03-19 09:19:22.0 +0100
@@ -6,6 +6,13 @@
 icon=
 token=g
 
+[Debian Packages]
+name=Debian Packages
+text=Search Debian Packages
+uri=http://packages.debian.org/%s
+icon=
+token=d
+
 [Wikipedia]
 name=Wikipedia
 text=The free encyclopedia


Bug#520382: gmpc: 0.18.0-1 depends on vacuous virtual package libmpc1

2009-03-19 Thread Kevin Mitchell
Package: gmpc
Version: 0.17.0-2
Severity: normal


I am unable to upgrade to 0.18.0-1 because it depends on libmpd1 which
is a virtual package with no current candidate. 

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

Kernel: Linux 2.6.29-rc8.009-wl (SMP w/2 CPU cores)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages gmpc depends on:
ii  libatk1.0-0 1.24.0-2 The ATK accessibility toolkit
ii  libc6   2.9-6GNU C Library: Shared libraries
ii  libcairo2   1.8.6-2+b1   The Cairo 2D vector graphics libra
ii  libcurl3-gnutls 7.18.2-8.1   Multi-protocol file transfer libra
ii  libglade2-0 1:2.6.3-1library to load .glade files at ru
ii  libglib2.0-02.20.0-1 The GLib library of C routines
ii  libgtk2.0-0 2.14.7-4+b1  The GTK+ graphical user interface 
ii  libice6 2:1.0.5-1X11 Inter-Client Exchange library
ii  libmpd0 0.17.0-1 High-level client library for acce
ii  libpango1.0-0   1.22.4-2 Layout and rendering of internatio
ii  libsm6  2:1.1.0-2X11 Session Management library
ii  libx11-62:1.2-1  X11 client-side library
ii  libxml2 2.7.3.dfsg-1 GNOME XML library

gmpc recommends no packages.

Versions of packages gmpc suggests:
pn  mpd   none (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#520380: python-mmkeys: configure-time confilct with exaile

2009-03-19 Thread Michal Čihař
Hello exaile maintainers

it looks like both exaile and sonata ship mmkeys python module. In last
upload I switched sonata to use python-support which did uncover this
conflict, which probably exists for quite a long time (at least Sonata
includes mmkeys for very long time).

As the source code is identical in both sources and sonata already
builds separate python-mmkeys binary pacakge, I think best solution of
this problem would be to make exaile depend on python-mmkeys package
and do not ship own version.

Is this solution okay for you? If so please take over this bug.

Dne Thu, 19 Mar 2009 09:47:08 +0100
Michal Politowski m...@charybda.icm.edu.pl napsal(a):

 Package: python-mmkeys
 Version: 1.5.3-2
 
 Setting up python-mmkeys (1.5.3-2) ...
 Package python2.4 is trying to overwrite mmkeys.so which is already
 provided by exaile
 dpkg: error processing python-mmkeys (--configure):
  subprocess post-installation script returned error exit status 1
 Errors were encountered while processing:
  python-mmkeys

-- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


signature.asc
Description: PGP signature


Bug#206684: mandatory use of debconf for user prompting a release goal for squeeze

2009-03-19 Thread Andrew McMillan
On Wed, 2009-03-18 at 20:26 -0700, Russ Allbery wrote:
  Management Specification, version 2 or higher, unless no such
  interface is available when they are executed.
 

 
 Should we require that non-essential packages depend on debconf if they're
 going to do prompting?  That wording implies to me that any package could
 check whether it was already installed (without a dependency) and fall
 back on non-debconf prompting, but I think that should only be permissible
 for essential packages.

It seems to me that to mandate it that tightly is unnecessary.  Surely
it will be simpler for a maintainer who has added support for Debconf to
just depend on it.  Even if the maintainer does provide a workaround for
an inessential package I can't see that it will matter to me: the
important element is that they support the debconf interface, not to
restrict what they might do in addition to that.


 The only other thing that I'm not sure about is what to do about preinst
 scripts.  Are we requiring debconf for preinst prompting (and hence
 requiring a Pre-Depends) for non-essential packages?

If a developer wants to prompt in their preinst (extremely rare, I
believe, and explicitly recommended against in policy) then they
certainly should either (a) pre-depend on debconf, or (b) provide a
work-around solution for the case where debconf is not installed on the
target system.  The decision to pre-depend on debconf would seem like a
no-brainer to the maintainer, I suspect.

Since almost all packages *will* have situations where they are called
when debconf is available they will (according to the wording above) all
be required to use debconf.  The fallback would only be chosen at
execution time.

Effectively I'm proposing that all packages needing user input must
support debconf (or equivalent) - but also to recognise that some of
them might be required to (install|configure|remove|...) with user input
in it's absence and not to restrict them from Doing The Right Thing in
that circumstance.

Cheers,
Andrew.


andrew (AT) morphoss (DOT) com+64(272)DEBIAN
   You will gain money by a fattening action.






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



Bug#520383: kde.mk is not KDE4 compatible

2009-03-19 Thread Francesco Paolo Lovergine
Package: cdbs
Version: 0.4.53
Severity: important

While working on packaging of the KDE4 version for smb4k I noticed that kde.mk
is still useful only for KDE3 and autotools based, while KDE4 should include
cmake.mk. It is probably useful adding a kde4.mk class for that.


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

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

Versions of packages cdbs depends on:
ii  debhelper 7.2.6  helper programs for debian/rules

Versions of packages cdbs recommends:
ii  autotools-dev 20080123.2 Update infrastructure for config.{

Versions of packages cdbs suggests:
ii  devscripts2.10.47scripts to make the life of a Debi
ii  doc-base  0.9.1  utilities to manage online documen

-- 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#503097: Fix for #503097

2009-03-19 Thread nik lutz

Hy Ola

I had a similar problem; when a container ran out of memory the host crashed:


[ 5030.259197] Fatal resource shortage: privvmpages, UB 1211.
[ 5030.286759] Fatal resource shortage: privvmpages, UB 1211.
[ 5030.308249] Fatal resource shortage: privvmpages, UB 1211.
[ 5030.324705] Fatal resource shortage: privvmpages, UB 1211.
[ 7086.059121] BUG: unable to handle kernel paging request at 810010895000
[ 7086.079122] IP: [810010895000]
[ 7086.079122] PGD 8063 PUD 9063 PMD 8000108001e3
[ 7086.079122] Oops: 0011 [1] SMP
..
.

I can reproduce this bug with the official debian-kernel 
(linux-image-2.6.26-1-openvz-amd64).

The updated kernel

http://people.debian.org/~dannf/bugs/500876/linux-headers-2.6.26-1-openvz-amd64_2.6.26-14~dannf.1_amd64.deb

fixes the problem: Instead of a kernel panic processes inside the container get 
killed (expected behaviour) .

Thanks a lot!


Will this fix go into the official kernel? If you need additional testing, oder 
some more kernel-traces, please let me know.



Nik Lutz




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



Bug#489430: [Build-common-hackers] Bug#489430: Bug#489430: Bug#489430: closed by Jonas Smedegaard d...@jones.dk (Bug#489430: fixed in cdbs 0.4.53)

2009-03-19 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

package cdbs
tags 489430 pending
thanks

On Thu, Mar 19, 2009 at 10:28:53AM +0200, Peter Eisentraut wrote:
Martin Koeppe wrote:
 This bug is about 'wrong' inclusion order in rules, and the current 
 0.4.53 still can't handle the 'wrong' order, so the bug shouldn't be 
 closed.

The wrong order will never be fixed.  If you write wrong stuff, wrong 
things will happen.  What do you expect?

You are right, Martin, the bug should not be closed before either the 
code is changed to not depend on a specific order is at least 
documented.

And you are wrong, Peter, that it will never change: I just fixed the 
code!

ifdef is evil in reusable make snippets! Avoid it whenever possible!


  - Jonas

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

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknCGKcACgkQn7DbMsAkQLjqrACfain6n4iIMzUYIZ0tdVkNGfmA
XFUAnjAWR05w+cz6J0y1kBxbwR+neNyK
=/C/i
-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#520386: iftop: Add a min-bandwidth option, so less resolution is wasted on logarithmic scale

2009-03-19 Thread Julian Mehnle
Package: iftop
Version: 0.17-10
Severity: wishlist

A min-bandwidth option analogous to the max-bandwidth option should be
added.  Currently the logarithmic display wastes a lot of space in the 0 -
few-kilobytes-per-second range, which is often not useful (unless you're
trying to examine intrusion attempts or something like that), causing the
interesting range up to the maximum bandwidth to be crammed into just the
right half of the screen.  Being able to specify the minimum bandwidth to
display would help a lot.

Thanks for considering.

-Julian Mehnle



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



Bug#515326: gdb trace

2009-03-19 Thread Xavier Bestel
Hi again,

I could ssh to my machine during a hang. there's nothing in the log,
nothing in dmesg. I could gdb the X server and client (carousel) but the
traces make no sense to me:

carousel:
(gdb) bt
#0  0xb801f424 in __kernel_vsyscall ()
#1  0xb7cb0b59 in ioctl () from /lib/i686/cmov/libc.so.6
#2  0xb7bc6c5d in drmIoctl () from /usr/lib/libdrm.so.2
#3  0xb7bc6fab in drmCommandWrite () from /usr/lib/libdrm.so.2
#4  0xb78786de in ?? () from /usr/lib/dri/r300_dri.so
#5  0x0004 in ?? ()
#6  0x0017 in ?? ()
#7  0x08df956c in ?? ()
#8  0x0004 in ?? ()
#9  0x08e014a8 in ?? ()
#10 0x3fda53c2 in ?? ()
#11 0x08df956c in ?? ()
#12 0xb7a798d4 in ?? () from /usr/lib/dri/r300_dri.so
#13 0x08e014a8 in ?? ()
#14 0x08df4e08 in ?? ()
#15 0xbfd3d5a8 in ?? ()
#16 0xb78ad911 in _mesa_Finish () from /usr/lib/dri/r300_dri.so
Backtrace stopped: frame did not save the PC

X:
(gdb) bt
#0  0xb8030424 in __kernel_vsyscall ()
#1  0xb7cbdb59 in ioctl () from /lib/i686/cmov/libc.so.6
#2  0xb7acdc5d in drmIoctl () from /usr/lib/libdrm.so.2
#3  0xb7acdfab in drmCommandWrite () from /usr/lib/libdrm.so.2
#4  0xa76676de in ?? () from /usr/lib/dri/r300_dri.so
#5  0x000b in ?? ()
#6  0x0017 in ?? ()
#7  0x0951cf64 in ?? ()
#8  0x0004 in ?? ()
#9  0x0951cf10 in ?? ()
#10 0x in ?? ()

(using xserver-xorg-video-radeon 1:6.11.0-1)

Anything I could try ?

Xav





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



Bug#520383: kde.mk is not KDE4 compatible

2009-03-19 Thread Ana Guerrero
On Thu, Mar 19, 2009 at 10:37:47AM +0100, Francesco Paolo Lovergine wrote:
 Package: cdbs
 Version: 0.4.53
 Severity: important
 
 While working on packaging of the KDE4 version for smb4k I noticed that kde.mk
 is still useful only for KDE3 and autotools based, while KDE4 should include
 cmake.mk. It is probably useful adding a kde4.mk class for that.
 

Take a look to pkg-kde-tools.

Ana



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



Bug#520387: caff: option 'mail' in .caffrc is ignored

2009-03-19 Thread Alexander Dahl
Package: signing-party
Version: 1.1-2
Severity: normal


I added the following line to my ~/.caffrc

$CONFIG{'mail'} = 'yes';

According to manpage this should have the same effect as calling caff
with '--mail yes'. Commandline option works as intended, but if I set
this option in .caffrc it is ignored and 'ask-yes' is active so I have
to hit enter on every single mail caff wants to send. I had a short look
in the source and I think the line I added to .caffrc is correct,
because the option has exactly this name and the possible values are
'yes', 'ask-yes', 'ask-no' and 'no'. However setting this in .caffrc
doesn't work for me.

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

Kernel: Linux 2.6.22
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages signing-party depends on:
ii  gnupg 1.4.9-4GNU privacy guard - a free PGP rep
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libclass-methodmaker-perl 2.15-1 perl module for creating generic m
ii  libgnupg-interface-perl   0.36-1 Perl interface to GnuPG
ii  libmailtools-perl 2.04-1 Manipulate email in perl programs
ii  libmime-tools-perl5.427-2Perl5 modules for MIME-compliant m
ii  libterm-readkey-perl  2.30-4 A perl module for simple terminal 
ii  libtext-template-perl 1.44-1.2   Text::Template perl module
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

Versions of packages signing-party recommends:
ii  dialog1.1-20080819-1 Displays user-friendly dialog boxe
ii  libgd-gd2-perl1:2.39-2   Perl module wrapper for libgd - gd
ii  libpaper-utils1.1.23+nmu1library for handling paper charact
ii  libtext-iconv-perl1.7-1+b1   converts between character sets in
ii  ssmtp [mail-transport-age 2.62-3 extremely simple MTA to get mail o
ii  whiptail  0.52.2-11.3Displays user-friendly dialog boxe

Versions of packages signing-party suggests:
pn  imagemagick | graphicsmagick- none (no description available)
ii  mutt  1.5.18-6   text-based mailreader supporting M
pn  wipe  none (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#520388: libapache2-mod-log-sql: Table misnamed in create_tables.sql

2009-03-19 Thread Keith Edmunds
Package: libapache2-mod-log-sql
Version: 1.100-14
Severity: normal
Tags: patch


The script /usr/share/doc/libapache2-mod-log-sql/create_tables.sql
creates some database tables; however, one of them is misnamed. The
table 'score_board' should be 'scoreboard'.

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

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

Versions of packages libapache2-mod-log-sql depends on:
ii  apache2-mpm-prefork  2.2.9-10+lenny2 Apache HTTP Server - traditional n
ii  libc62.7-18  GNU C Library: Shared libraries

Versions of packages libapache2-mod-log-sql recommends:
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

libapache2-mod-log-sql suggests no packages.

-- no debconf information
--- create_tables.sql.original  2009-03-19 10:04:54.0 +
+++ create_tables.sql   2009-03-19 10:05:20.0 +
@@ -53,7 +53,7 @@
 # Added by Thomas Goirand (Debian maintainer and score_board patch upstream)
 # take care that the UNIQUE KEY is really VITAL of you don't want your server
 # to die with a huge MySQL load...
-create table score_board (
+create table scoreboard (
 id int(14) NOT NULL auto_increment,
 vhost varchar(50) NOT NULL default '',
 bytes_sent bigint(14) unsigned NOT NULL default '0',


Bug#494001: [Pkg-sysvinit-devel] Processed: Re: Bug#494001: debian-installer: /etc/mtab must be a symlink to /proc/mounts with linux = 2.6.26

2009-03-19 Thread Roger Leigh

Henrique de Moraes Holschuh wrote:

On Wed, 18 Mar 2009, Roger Leigh wrote:

On Wed, Mar 18, 2009 at 05:38:38PM -0300, Henrique de Moraes Holschuh wrote:

Are there other parts of Squeeze that would malfunction with Linux kernels
older than 2.6.26 ?

The version check is pretty much a good idea for safety reasons, I think it
would be better to just leave it in, and we can get rid of it for Squeeze+1.

Agreed.  I've attached a new patch with a version check.  I've now
tested the patch by installing the package, and it correctly updates
the symlink, and also preserves it if already a symlink.  The only
corner case we have here is if the admin already deliberately
symlinked it somewhere else--we won't link it to /proc/mounts in
this case (do we want to trample on the admins changes in this
case?).

I used dpkg --compare-versions, which I hope is OK for kernel revisions.


The more I think about it, the less I like this way of doing things.

You have to adjust to the running kernel, at every boot.  It is *normal* to
boot on kernel x.y.z, then go back to x.y-1.z, etc.


True, and I did consider this.  However, it was pointed out that since 
squeeze would not run with kernels  2.6.26, and Lenny uses 2.6.26, so 
this checking was pointless, even on upgrades.  Since the postinst is 
run only once, the version check is probably redundant here as well.



I.e. call uname, and find out what kernel you're dealing with at that boot,
and have /etc/mtab set up before mount (or anything else) needs it.  That
means early initscript, not postinst.


I did originally modify mtab.sh to check the kernel version and then 
either create a symlink or an empty file depending upon the kernel 
version.  However, the consensus was that this was pointless and that it 
should just be done once and for all in the postinst.



In the end, it really means we should teach mount to know what to do by
itself, and get rid of /etc/mtab, if we want to fix things properly.


What should mount do?  If mtab is a symlink, it then doesn't do any 
updating at all.  Removing mtab itself is a tricker (and IMO separate) 
issue, since many programs are using setmntent(3) to open it and this 
would require the updating of many programs (and the change would also 
be Linux-specific and non-portable).


By the way, if mtab is a symlink on Linux  2.6.26, then the system will 
continue to work without problems.  I've used Linux systems configured 
this way for many years.  The only potential problems are if other 
programs want to check the extended mount options (such as for diskquota 
checking); for most uses this is not a problem.  The only uses who will 
be affected are those running an old and unsupported kernel version.



Regards,
Roger




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



Bug#489430: [Build-common-hackers] Bug#489430: Bug#489430: Bug#489430: closed by Jonas Smedegaard d...@jones.dk (Bug#489430: fixed in cdbs 0.4.53)

2009-03-19 Thread Peter Eisentraut

Jonas Smedegaard wrote:
You are right, Martin, the bug should not be closed before either the 
code is changed to not depend on a specific order is at least 
documented.


And you are wrong, Peter, that it will never change: I just fixed the 
code!


Dammit. :-)

No really, it's good to fix this if we can within reason.  But in a 
general sense, if you use the tools wrongly you will get suboptimal results.




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



Bug#502200: dphys-swapfile: Includes hardcoded max size

2009-03-19 Thread Gürkan Sengün

Hi James

The patch looks good. Can you sponsor a fixed version?

Yours,
Guerkan



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



Bug#438752: cocoon-tomcat5.5_2.1.9-1_all.deb for etch

2009-03-19 Thread Joost van Baal
Hi,

A (somewhat old) cocoon package is available from

 deb{-src,} http://non-gnu.uvt.nl/debian etch cocoon

The source package might be useful to get some inspiration when packaging it
for Debian.

Bye,

Joost

-- 
Joost van Baalhttp://abramowitz.uvt.nl/
 Tilburg University
mailto:joostvb.uvt.nl   The Netherlands


signature.asc
Description: Digital signature


Bug#520391: confusing message on file conflict

2009-03-19 Thread Michal Čihař
Package: python-support
Version: 0.8.7
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

there is file conflict between exaile and python-mmkeys, unfortunately
python-support reports this wrongly as problem between python2.5 and
exaile. I think it tell proper package name which is responsible for the
conflict.

Terminal output:

# dpkg -i python-mmkeys_1.5.3-2_amd64.deb 
(Reading database ... 211188 files and directories currently installed.)
Preparing to replace python-mmkeys 1.5.3-2 (using 
.../python-mmkeys_1.5.3-2_amd64.deb) ...
Unpacking replacement python-mmkeys ...
Setting up python-mmkeys (1.5.3-2) ...
Package python2.5 is trying to overwrite mmkeys.so which is already provided by 
exaile
dpkg: error processing python-mmkeys (--install):
 subprocess post-installation script returned error exit status 1
Processing triggers for python-support ...
Errors were encountered while processing:
 python-mmkeys


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

Kernel: Linux 2.6.25.20-0.1-default (SMP w/2 CPU cores)
Locale: LANG=cs_CZ.UTF-8, LC_CTYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-support depends on:
ii  dpkg  1.14.25Debian package management system
ii  python2.5.4-2An interactive high-level object-o

python-support recommends no packages.

python-support suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAknCHPQACgkQ3DVS6DbnVgT5igCgxUPXcuQhtrQIukiFdeoz/rbX
aOAAnjEJ68siYIxbUyYigIikHNY/3081
=kOPt
-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#519800: Acknowledgement (FSTYPE=ext3 but only ext2 in ramdisk possible with MODULES=dep)

2009-03-19 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, Mar 15, 2009 at 11:35:55AM +0100, Martin Michlmayr wrote:
Actually, how about running fstype when generating the ramdisk to find
out which modules you need (either in addition or instead of looking
at the output of mount/fstab).

I dislike the idea of a ramdisk generator deliberately ignoring 
something I've explicitly expressed in /etc/fstab.


  - Jonas

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

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEUEARECAAYFAknCHCsACgkQn7DbMsAkQLiMPACUCS87zevdyT0Y8iIPMNnc6LXB
VwCfdzBU9RBPepw6wB7WZ90DpQQAWVo=
=RA4P
-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#520390: crashes when trying to report bug on python-support

2009-03-19 Thread Michal Čihař
Package: reportbug
Version: 3.48
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

it looks like there is something weird in existing python-support bug
reports what makes reportbug crash (it does work fine for other
packages, for example I use it for this bug report).

Terminal output:

$ reportbug python-support
*** Welcome to reportbug.  Use ? for help at prompts. ***
Detected character set: UTF-8
Please change your locale if this is incorrect.

Using 'Michal Čihař ni...@debian.org' as your from address.
Getting status for python-support...
Checking for newer versions at packages.debian.org, incoming.debian.org and 
http://ftp-master.debian.org/new.html
Will send report to Debian (per lsb_release).
Querying Debian BTS for reports on python-support (source)...
7 bug reports found:

Outstanding bugs -- Important bugs; Unclassified (3 bugs)
  1) #418353  Python-Provides creates an unuseful mess of dependencies
  2) #518826  python 2.6 minimal tells python-support.pth should be shipped in 
dist-packages
Traceback (most recent call last):
  File /usr/bin/reportbug, line 1829, in module
main()
  File /usr/bin/reportbug, line 850, in main
return iface.user_interface()
  File /usr/bin/reportbug, line 1388, in user_interface
version=pkgversion)
  File /usr/share/reportbug/reportbuglib/reportbug_ui_text.py, line 529, in 
handle_bts_query
mirrors, http_proxy, screen, title)
  File /usr/share/reportbug/reportbuglib/reportbug_ui_text.py, line 607, in 
browse_bugs
sys.stderr.write(line.decode('utf-8').encode(output_encoding, replace))
  File /usr/lib/python2.5/encodings/utf_8.py, line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 110-112: 
invalid data


- -- Package-specific info:
** Environment settings:
DEBEMAIL=ni...@debian.org
DEBFULLNAME=Michal Čihař
INTERFACE=text

** /home/mcihar/.reportbugrc:
reportbug_version 2.62
mode expert
ui text
realname Michal Čihař
email ni...@debian.org
sign gpg

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

Kernel: Linux 2.6.25.20-0.1-default (SMP w/2 CPU cores)
Locale: LANG=cs_CZ.UTF-8, LC_CTYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages reportbug depends on:
ii  apt   0.7.20.2   Advanced front-end for dpkg
ii  python2.5.4-2An interactive high-level object-o
ii  python-central0.6.11 register and build utility for Pyt

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utils none (no description available)
pn  debsums   none (no description available)
ii  dlocate   0.96.1 fast alternative to dpkg -L and dp
ii  exim4 4.69-9 metapackage to ease Exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon
ii  file  4.26-2 Determines file type using magic
ii  gnupg 1.4.9-4GNU privacy guard - a free PGP rep
pn  python-urwid  none (no description available)

- -- no debconf information

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

iEYEARECAAYFAknCHBcACgkQ3DVS6DbnVgTwGgCfQe/bPl78MA+eRpF58DJlyn+9
r2YAn1WnqjKBUzX9SjzKQwzs0bGKs5sP
=ZTOY
-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#519800: Acknowledgement (FSTYPE=ext3 but only ext2 in ramdisk possible with MODULES=dep)

2009-03-19 Thread Martin Michlmayr
* Jonas Smedegaard d...@jones.dk [2009-03-19 11:19]:
 Actually, how about running fstype when generating the ramdisk to find
 out which modules you need (either in addition or instead of looking
 at the output of mount/fstab).
 
 I dislike the idea of a ramdisk generator deliberately ignoring 
 something I've explicitly expressed in /etc/fstab.

Well, then look at fstype in addition to the output of mount/fstab.
The point is that the system won't boot if you only look at the output
of mount/fstab.

-- 
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#489430: [Build-common-hackers] Bug#489430: Bug#489430: Bug#489430: Bug#489430: closed by Jonas Smedegaard d...@jones.dk (Bug#489430: fixed in cdbs 0.4.53)

2009-03-19 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, Mar 19, 2009 at 12:13:53PM +0200, Peter Eisentraut wrote:
Jonas Smedegaard wrote:
 You are right, Martin, the bug should not be closed before either the 
 code is changed to not depend on a specific order is at least 
 documented.
 
 And you are wrong, Peter, that it will never change: I just fixed the 
 code!

Dammit. :-)

No really, it's good to fix this if we can within reason.  But in a 
general sense, if you use the tools wrongly you will get suboptimal 
results.

In the very broad sense, yes. But it is wrong to generally expect CDBS 
snippets to require a certain order.


  - Jonas

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

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknCH7EACgkQn7DbMsAkQLjwzACgguu63s75O/GDC+ql0erihJ5A
AJYAoKM4+QZxo/WyVDmZekxH1SWJ9RwX
=vOWT
-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#512879: Same problem on eeepc

2009-03-19 Thread Luca Venturini
Hi,

same problem on my eeepc. debian-cubism theme quit while filckering.
Then splashy quit with Couldn't splashy_start_splash error -10 error.



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



Bug#520384: caudium: contains non-free font

2009-03-19 Thread Paul Wise
Package: caudium
Version: 3:1.4.12-1
Severity: serious
User: pkg-fonts-de...@lists.alioth.debian.org
Usertags: non-free
X-Debbugs-CC: pkg-fonts-de...@lists.alioth.debian.org

Your package contains a non-free font:

http://pkg-fonts.alioth.debian.org/review/fnt-20c89e0b1e1aaa6668b1e121d224d4da.html

This looks to be from here:

http://www.reflectingarea.com/styling/fonts/creators/UtopiaFonts.htm
http://www.reflectingarea.com/styling/fonts/creators/UtopiaFonts/FontRedSuit.zip

From the zip file:

/

[utopiafonts] 1998 free font


this font is provided free for personal or commercial use,
it can be redistributed however it may not be sold.
...
\

This licence does not clearly allow all the DFSG-required freedoms:

http://www.debian.org/social_contract#guidelines

Please contact the font author and ask them to licence the font
under a DFSG-compliant font licence such as the OFL:

http://scripts.sil.org/OFL
http://scripts.sil.org/OFL_web
http://scripts.sil.org/OFL-FAQ_web

If they are not willing to do so or cannot be contacted, please remove
the font from the binary package and the source package and depend on
another font package or move the package to non-free.

Please contact your upstream and ask them to use fontconfig or similar
to get fonts for use by the software instead of using a specific font.

This message is brought to you by the Debian Fonts Task Force:

http://wiki.debian.org/Fonts

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#511334: S390 boot fails on Flex-ES machine

2009-03-19 Thread Frans Pop
tags 511334 patch
thanks

On Thursday 19 March 2009, Adam Thornton wrote:
 This appears to fix the problem, in that I get much farther and then
 get stuck in the init-premount scripts because it can't vary my root
 disk online.  But *that* is probably because, on this host, I've been
 using by-path disk IDs, and I'd been changing various kernel build
 parameters to roll the DASD drivers into the kernel (that is, not use
 them as modules).  So that is very likely my fault.

 I suspect this issue is resolved.  Get me an official kernel image
 build with it (and with the requisite modules) and I'll be happy to
 test, or I can build another one tomorrow (which will, alas, take all
 day again).

Thanks for testing. There's no way I can get you an official fixed kernel 
on short notice. You'll have to build your own for now.

Dann:
Can you please consider the patch I linked to in [1] for stable updates of 
both .24 and .26? AFAICT the patch should apply cleanly to both as the 
broken code was introduced in .19.
The patch also fixed two very hard to trace hangs in .28 and .29 where 
bisection lead to unrelated changes which just happened to trigger this 
bug in such a way that it caused a hang.
TIA.

[1] http://bugs.debian.org/511334#65


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


Bug#520393: arpwatch CPU usage high when roaming mode is enabled

2009-03-19 Thread Sajith T S
Package: arpwatch
Version: 2.1a13-2.1
Severity: normal

I'm at a trade show with my laptop, wireless doesn't work for whatever
reason.  I'm using GNOME's network-admin to configure the network.
When roaming mode is enabled on wired connection, arpwatch's CPU
usage is is consistenly around 90%, as reported by top, presumably
because it's polling too often.

0xb7ed50b6 in *__GI___poll (fds=0xbf9437c4, nfds=1, timeout=1000) at 
../sysdeps/unix/sysv/linux/poll.c:83
83  ../sysdeps/unix/sysv/linux/poll.c: No such file or directory.
in ../sysdeps/unix/sysv/linux/poll.c
(gdb) where
#0  0xb7ed50b6 in *__GI___poll (fds=0xbf9437c4, nfds=1, timeout=1000) at 
../sysdeps/unix/sysv/linux/poll.c:83
#1  0xb7f596ef in ?? () from /usr/lib/libpcap.so.0.8
#2  0xbf9437c4 in ?? ()
#3  0x0001 in ?? ()
#4  0x03e8 in ?? ()
#5  0x2000 in ?? ()
#6  0x in ?? ()

I'll try to get proper backtraces etc if this actually belongs to
arpwatch, will take it elsewhere (gnome-network-admin, perhaps?)
otherwise.  Please advise.


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

Kernel: Linux 2.6.24 (PREEMPT)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages arpwatch depends on:
ii  adduser   3.110  add and remove users and groups
ii  debianutils   2.31   Miscellaneous utilities specific t
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libpcap0.81.0.0-1system interface for user-level pa

Versions of packages arpwatch recommends:
ii  esmtp-run [mail-transport-age 0.6.0-1User configurable relay-only MTA

Versions of packages arpwatch suggests:
pn  snmp  none (no description available)

-- no debconf information

-- 
  9DB8FF06 : CB80 0BA6 7D13 B10A 6FBB  D43E B4D2 28AD 9DB8 FF06


signature.asc
Description: Digital signature


Bug#520383: [Build-common-hackers] Bug#520383: kde.mk is not KDE4 compatible

2009-03-19 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, Mar 19, 2009 at 11:04:46AM +0100, Sune Vuorela wrote:
Hi

kde team provides cdbs snippets in pkg-kde-tools

#!/usr/bin/make -f

include /usr/share/pkg-kde-tools/makefiles/1/cdbs/kde.mk
include /usr/share/cdbs/1/rules/debhelper.mk

I suggest that the KDE team add a (wrapper?) script below 
/usr/share/cdbs/1/class to better promote their tools for CDBS users?


  - Jonas

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

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknCIKUACgkQn7DbMsAkQLjp7ACgiV+gfqN6xKL17GGDQxHm8zsZ
JfUAn2c10cmHKfgUamSg6RBbZyQOfdKA
=iV2p
-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#520383: kde.mk is not KDE4 compatible

2009-03-19 Thread Francesco P. Lovergine
On Thu, Mar 19, 2009 at 11:00:45AM +0100, Ana Guerrero wrote:
 On Thu, Mar 19, 2009 at 10:37:47AM +0100, Francesco Paolo Lovergine wrote:
  Package: cdbs
  Version: 0.4.53
  Severity: important
  
  While working on packaging of the KDE4 version for smb4k I noticed that 
  kde.mk
  is still useful only for KDE3 and autotools based, while KDE4 should include
  cmake.mk. It is probably useful adding a kde4.mk class for that.
  
 
 Take a look to pkg-kde-tools.
 

Uhm thanks, I don't know if it is useful having this bug still open for memo 
until
the new class will be added to cdbs. 

-- 
Francesco P. Lovergine



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



Bug#520392: [kbibtex] kbibtex crash using scholar offline

2009-03-19 Thread Bastien ROUCARIES
Package: kbibtex
Version: 0.2.1-1
Severity: minor

kbibtex crash searching some reference the network wire unpluged. Instead to 
simply fail.

Regards

Bastien


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.26-1-amd64

Debian Release: squeeze/sid
  990 testing security.debian.org 
  990 testing debian.ens-cachan.fr 
   99 unstabledebian.ens-cachan.fr 
  500 lenny   kde4.debian.net 

--- Package information. ---
Depends (Version) | Installed
=-+-==
kdelibs4c2a  (= 4:3.5.9) | 4:3.5.10.dfsg.1-1+b1
libc6  (= 2.7-1) | 2.9-4
libqt3-mt   (= 3:3.3.8b) | 3:3.3.8b-5
libstdc++6  (= 4.1.1-21) | 4.3.3-3
libxml2   (= 2.6.27) | 2.7.3.dfsg-1
libxslt1.1(= 1.1.18) | 1.1.24-2



-- 

ROUCARIES Bastien
 bastien.roucar...@enseeiht.fr
---





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



Bug#520394: 500 OOPS: vsftpd: not found: directory given in 'secure_chroot_dir':/var/run/vsftpd/empty

2009-03-19 Thread Rafal Czlonka
Package: vsftpd
Version: 2.0.7-3
Severity: normal

Hi,

Last week I had sent a follow-up to a bug #472329.
Since that bug was a wish-list I've decided to report it as a new one
since the solution to it introduces new problems when /var/run is
cleared at boot time, e.g.. when having /var/run as tmpfs.
This folder should either be located somewhere else or checked whether
it exists and created on the fly when vfstpd starts.

P.S. The subject line is the message I got while trying to connect after
reboot.

Kind regards,
Raf

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

Kernel: Linux 2.6.28-1-powerpc
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 vsftpd depends on:
ii  adduser   3.110  add and remove users and groups
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libcap2   2.16-2 support for getting/setting POSIX.
ii  libpam-modules1.0.1-7Pluggable Authentication Modules f
ii  libpam0g  1.0.1-7Pluggable Authentication Modules l
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  libwrap0  7.6.q-16   Wietse Venema's TCP wrappers libra
ii  netbase   4.34   Basic TCP/IP networking system

Versions of packages vsftpd recommends:
ii  logrotate 3.7.7-3Log rotation utility

vsftpd suggests no packages.

-- debconf information:
* vsftpd/username: ftp
* vsftpd/directory: /srv/ftp



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



Bug#520395: Audacity sometimes suddenly hangs when playing a file

2009-03-19 Thread Holger Wagemann
Package: audacity
Version: 1.3.7-2

Dear Maintainer,

with the new version 1.3.7 of audacity shipped into Sid in the last weeks, 
I've notized a strange behavior of this program on my 64 Bit Machine and also 
on my Thinkpad R51: When I play normal audiofiles with it, sometimes the 
program stopps unexpectedly. The Play button stay pressed, but it is not a 
total crash. I can press Stop and then start with play normally from that 
position, where audacity has hanged before. Let me specify sometimes:
Audacity do that sometimes, when I open annother applikation, but also 
sometimes, when I do nothing other on my machine.

With older versions of audacity I have not had such effects.

I use for playing and recording the setting alsa default, my system is an 
up-to-date Sid / sidux.

I hope this report is usefull for you. Please tell me, if you need further 
information.

With best regards,
  Holger




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



Bug#519800: Acknowledgement (FSTYPE=ext3 but only ext2 in ramdisk possible with MODULES=dep)

2009-03-19 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, Mar 19, 2009 at 11:30:40AM +0100, Martin Michlmayr wrote:
* Jonas Smedegaard d...@jones.dk [2009-03-19 11:19]:
 Actually, how about running fstype when generating the ramdisk to 
 find out which modules you need (either in addition or instead of 
 looking at the output of mount/fstab).
 
 I dislike the idea of a ramdisk generator deliberately ignoring 
 something I've explicitly expressed in /etc/fstab.

Well, then look at fstype in addition to the output of mount/fstab. The 
point is that the system won't boot if you only look at the output of 
mount/fstab.

Fine with me. My comment was driven by your or instead of alone :-)


  - Jonas

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

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknCJ7oACgkQn7DbMsAkQLiX+ACcCiDTvGNXVQ/Lspd6yojhMT7Z
CbAAnRDDw7u51JhDH2b00hKWW3f8AC41
=L0v5
-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#501326: (no subject)

2009-03-19 Thread David Garabana

It works with latest kernel version.

You can close it, thank you.







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



Bug#206684: mandatory use of debconf for user prompting a release goal for squeeze

2009-03-19 Thread Holger Levsen
Hi,

On Donnerstag, 19. März 2009, Russ Allbery wrote:
  Package maintainer scripts may prompt the user if necessary.
  Prompting must be done by communicating through a program, such
  as debconf, which conforms to the Debian Configuration
  Management Specification, version 2 or higher, unless no such
  interface is available when they are executed.

 Package maintainer scripts may prompt the user if necessary.
 Prompting must be done by communicating through a program, such
 as debconf, which conforms to the Debian Configuration
 Management Specification, version 2 or higher. Exempted from using   
 such a programm are required/essential packages if no such
 interface is available when they are executed.

 Should we require that non-essential packages depend on debconf if they're
 going to do prompting?  That wording implies to me that any package could
 check whether it was already installed (without a dependency) and fall
 back on non-debconf prompting, but I think that should only be permissible
 for essential packages.

See the proposal above.

 The only other thing that I'm not sure about is what to do about preinst
 scripts.  Are we requiring debconf for preinst prompting (and hence
 requiring a Pre-Depends) for non-essential packages?

As we require it for any prompting, this includes preinst, and as stuff used 
in preinst needs to be a Pre-Depends, I think this is clear.


regards,
Holger

P.S. Andrew, thanks! 



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


Bug#520383: kde.mk is not KDE4 compatible

2009-03-19 Thread Sune Vuorela
Hi

kde team provides cdbs snippets in pkg-kde-tools

#!/usr/bin/make -f

include /usr/share/pkg-kde-tools/makefiles/1/cdbs/kde.mk
include /usr/share/cdbs/1/rules/debhelper.mk

/Sune
-- 
Genius, I'm not able to install on a provider, how does it work?

You neither must ping to the processor, nor should cancel the system for 
saving a pin over a graphic AGP desktop.



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


Bug#520396: cups fails to print on polled printers with client-error-not-authorized

2009-03-19 Thread Sigmund Scheinbar
Package: cups
Version: 1.3.8-1lenny4.1
Severity: grave
Justification: renders package unusable

Since upgrading from etch to lenny printing on polled printers fails:

u...@client-host:~$ lpstat -p
printer mfp_4730 is idle.  enabled since Thu 19 Mar 2009 10:38:44 CET
CEST
[...]
u...@client-host:~$ lp -d mfp_4730 /tmp/cpuinfo
lp: The printer or class is not shared!

The server log looks like this:
/var/log/cups/access_log:
192.168.2.2 - - [19/Mar/2009:11:44:00 +0100] POST / HTTP/1.1 200 417
CUPS-Get-Classes successful-ok
192.168.2.2 - - [19/Mar/2009:11:44:01 +0100] POST / HTTP/1.1 200 417
CUPS-Get-Classes successful-ok
192.168.2.2 - - [19/Mar/2009:11:44:01 +0100] POST /printers/ischl_mfp_4730
HTTP/1.1 200 1674 Print-Job client-error-not-authorized


My Server config is quite lenny default plus one Allow line per Location
directive:

 # Only listen for connections from the local machine.
-Listen localhost:631
+Listen *:631
 Listen /var/run/cups/cups.sock

 # Show shared printers on the local network.
 Browsing On
 BrowseOrder allow,deny
 BrowseAllow all
+BrowsePoll another-cups-server-on-lenny

 # Default authentication type, when authentication is required...
 DefaultAuthType Basic
@@ -29,11 +28,16 @@
 # Restrict access to the server...
 Location /
   Order allow,deny

 # Restrict access to the admin pages...
 Location /admin
   Order allow,deny
+  Allow 192.168.0.0/16
 /Location

 # Restrict access to configuration files...
@@ -41,6 +45,8 @@
   AuthType Default
   Require user @SYSTEM
   Order allow,deny
+  Allow 192.168.0.0/16
 /Location


Of course printing from any GUI e.g. kdeprint also fails.

Just for testing a attached an old printer on my local sever - which
works fine, however for my purpose cups is (since the upgrade) unusable
for me and all users on the network.

Cheers
Sigmund

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

Kernel: Linux 2.6.26-1-486
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages cups depends on:
ii  adduser3.110 add and remove users and groups
ii  cups-common1.3.8-1lenny4.1   Common UNIX Printing
System(tm) -
ii  debconf [debconf-2 1.5.24Debian configuration
management sy
ii  ghostscript8.62.dfsg.1-3.2lenny0 The GPL Ghostscript
PostScript/PDF
ii  libavahi-compat-li 0.6.23-3lenny1Avahi Apple Bonjour
compatibility
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcups2   1.3.8-1lenny4.1   Common UNIX Printing
System(tm) -
ii  libcupsimage2  1.3.8-1lenny4.1   Common UNIX Printing
System(tm) -
ii  libdbus-1-31.2.1-5   simple interprocess
messaging syst
ii  libgnutls262.4.2-6+lenny1the GNU TLS library -
runtime libr
ii  libkrb53   1.6.dfsg.4~beta1-5MIT Kerberos runtime libraries
ii  libldap-2.4-2  2.4.11-1  OpenLDAP libraries
ii  libpam0g   1.0.1-5   Pluggable Authentication
Modules l
ii  libpaper1  1.1.23+nmu1   library for handling paper
charact
ii  libslp11.2.1-7.5 OpenSLP libraries
ii  lsb-base   3.2-20Linux Standard Base 3.2
init scrip
ii  perl-modules   5.10.0-19 Core Perl modules
ii  poppler-utils [xpd 0.8.7-1   PDF utilitites (based on
libpopple
ii  procps 1:3.2.7-11/proc file system utilities
ii  ssl-cert   1.0.23simple debconf wrapper for
OpenSSL

Versions of packages cups recommends:
pn  avahi-utils   none (no description available)
ii  cups-client   1.3.8-1lenny4.1Common UNIX Printing
System(tm) -
ii  foomatic-filters  3.0.2-20080211-3.2 OpenPrinting printer
support - fil
ii  smbclient 2:3.2.5-4  a LanManager-like simple
client fo

Versions of packages cups suggests:
pn  cups-bsdnone   (no description available)
pn  cups-driver-gutenprint  none   (no description available)
pn  cups-pdfnone   (no description available)
ii  foomatic-db 20080211-2+nmu1  OpenPrinting printer
support - dat
ii  foomatic-db-engine  3.0.2-20080211-1 OpenPrinting printer
support - pro
pn  hplip   none   (no description available)
pn  xpdf-korean | xpdf-japa none   (no description available)

-- debconf information:
  cupsys/raw-print: true
  cupsys/backend: ipp, lpd, parallel, socket, usb





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



Bug#520399: ldd /usr/bin/reportbug gives strange error if libc6-amd64 installed

2009-03-19 Thread John Hughes
Package: libc6-amd64
Version: 2.7-18
Severity: minor


With libc6-amd64 installed:

$ ldd /usr/bin/reportbug
ldd: exited with unknown exit code (126)

Without, get expected result:

$ ldd /usr/bin/reportbug
not a dynamic executable

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

Kernel: Linux 2.6.24-1-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/bash

Versions of packages libc6-amd64 depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries

libc6-amd64 recommends no packages.

libc6-amd64 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#520394: 500 OOPS: vsftpd: not found: directory given in 'secure_chroot_dir':/var/run/vsftpd/empty

2009-03-19 Thread Daniel Baumann
tags 520394 +pending
thanks

Rafal Czlonka wrote:
 This folder should either be located somewhere else or checked whether
 it exists and created on the fly when vfstpd starts.

done in git.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#507991: [eog] Crashes when trying to save write protected file

2009-03-19 Thread Matthias Bläsing
Hey,

excuse the late reply. I'm digging through a pile of emails. But yes, I
can reproduce it with (now) 2.24.3.1-1. I was able to get a backtrace
now:

mblaes...@enterprise:~$ gdb /usr/bin/eog
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show
copying
and show warranty for details.
This GDB was configured as i486-linux-gnu...
(gdb) run
Starting program: /usr/bin/eog 
[Thread debugging using libthread_db enabled]
[New Thread 0xb694a750 (LWP 5407)]
[New Thread 0xb67a8b90 (LWP 5410)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb67a8b90 (LWP 5410)]
0x08078f15 in tmp_file_move_to_uri (image=value optimized out, 
tmpfile=value optimized out, file=0x8bef310, overwrite=1, 
error=0x930ca84) at eog-image.c:1339
1339eog-image.c: No such file or directory.
in eog-image.c
(gdb) backtrace
#0  0x08078f15 in tmp_file_move_to_uri (image=value optimized out, 
tmpfile=value optimized out, file=0x8bef310, overwrite=1, 
error=0x930ca84) at eog-image.c:1339
#1  0x0807a5c6 in eog_image_save_by_info (img=0x93350e0,
source=0x8be9860, 
error=0x930ca84) at eog-image.c:1501
#2  0x08087c87 in eog_job_save_real_run (job=0x930ca78) at
eog-jobs.c:569
#3  0x08086f61 in eog_job_save_run (job=0x930ca78) at eog-jobs.c:590
#4  0x08086e6d in eog_render_thread (data=0x0) at eog-job-queue.c:84
#5  0xb7546e2f in g_thread_create_proxy (data=0x8a062d0)

at /build/buildd-glib2.0_2.20.0-1-i386-yJa20r/glib2.0-2.20.0/glib/gthread.c:635
#6  0xb7e30f50 in start_thread () from /lib/libpthread.so.0
#7  0xb744e5de in clone () from /lib/libc.so.6
(gdb) 

To get this trace I did this:

Placed tuz.png on the desktop, remove the write permission for me and
opened it in eog, rotated it left by 90° and pressed CTRL-S to save the
resulting image.

Here some more Info about the file - whether this is imported: I don't
know:
mblaes...@enterprise:~$ ls -lh Desktop/tuz.png 
-r--r--r-- 1 mblaesing mblaesing 280K 18. Mär 21:38 Desktop/tuz.png
mblaes...@enterprise:~$ file Desktop/tuz.png 
Desktop/tuz.png: PNG image, 1024 x 765, 8-bit/color RGBA, non-interlaced
mblaes...@enterprise:~$ 

I hope that helps

Greetings

Matthias


Am Freitag, den 23.01.2009, 15:42 +0100 schrieb Josselin Mouette:
 Le samedi 06 décembre 2008 à 18:41 +0100, Matthias Bläsing a écrit :
  eog just gave me the problem, that it crashed without an obvious reason.
  Some investigation revealed, that it crashed, when trying to save a
  write protected file. Adding write permissions allowed me to save the
  image without a crash.
 
 I can’t seem to reproduce this with version 2.24.2-1.
 
 Could you try it as well?
 
 Thanks,
-- 
The man who trades freedom for security does not deserve,
nor will he receive either!

Benjamin Franklin





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



Bug#520383: [Build-common-hackers] Bug#520383: Bug#520383: kde.mk is not KDE4 compatible

2009-03-19 Thread Peter Eisentraut

Jonas Smedegaard wrote:

kde team provides cdbs snippets in pkg-kde-tools

#!/usr/bin/make -f

include /usr/share/pkg-kde-tools/makefiles/1/cdbs/kde.mk
include /usr/share/cdbs/1/rules/debhelper.mk


I suggest that the KDE team add a (wrapper?) script below 
/usr/share/cdbs/1/class to better promote their tools for CDBS users?


I wanted to discuss the KDE 4 integration as well.  I don't mind if the 
KDE team maintains the class for KDE 4 (if they really want to and are 
not simply afraid to interact with the cdbs maintainers, I hope).  But 
it would be better to keep the paths consistent.  It is useful to be 
able to do ls /usr/share/cdbs/1/class or the like.


(In general, it would have been helpful to tell the cdbs maintainers 
about that.  I only found out about this while browsing Sune's FOSDEM 
slides.  Good thing I didn't invest much time yet writing a built-in 
class yet.)


Also, Ubuntu is shipping /usr/share/cdbs/1/class/kde4.mk. 
Unfortunately, all emerging packages for KDE 4 applications are now 
going to be incompatible.  Is anyone in discussions with Ubuntu about that?




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



Bug#476796: usb.USBError: No error, workaround

2009-03-19 Thread Paul Sladen
In the meantime, for anyone else who hits this bug while coding with pyusb
and gets the message:

  usb.USBError: No error

I used the following kludge, which likely will also work for you:

  ...
  try:
  data = fd.interruptRead(endpoint.address, endpoint.maxPacketSize)
  except usb.USBError as e:
  if e.args != ('No error',): # http://bugs.debian.org/476796
  raise e
  ...

-Paul
-- 
Why do one side of a triangle when you can do all three.  Somewhere, GB.




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



Bug#520400: python-gnuplot: Error deleting Gnuplot object

2009-03-19 Thread Lluis
Package: python-gnuplot
Version: 1.8-1
Severity: normal

En error shows up in the console (probably when python deletes a local variable
referencing a Gnuplot object):

Exception exceptions.AttributeError: _GnuplotFile instance has no attribute 
'close' in bound method Gnuplot.__del__ of Gnuplot._Gnuplot.Gnuplot instance 
at 0x9fe47ac ignored

Thanks,
Lluis

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (1000, 'stable'), (750, 'testing'), (500, 'unstable'), (250, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/4 CPU cores)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8) (ignored: LC_ALL set to 
ca_ES.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-gnuplot depends on:
ii  gnuplot   4.2.2-1.2  A command-line driven interactive 
ii  python2.5.2-3An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt
ii  python-numpy  1:1.1.0-3  Numerical Python adds a fast array

python-gnuplot recommends no packages.

python-gnuplot 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#520389: Acknowledgement (some bugs are not listed in packages)

2009-03-19 Thread Michal Čihař
Hi

well now the bugs are listed. Is there some caching of the lists which
causes this?

-- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


signature.asc
Description: PGP signature


Bug#505877: ITP: jakarta-jmeter -- Load testing and performance measurement application.

2009-03-19 Thread Onkar Shinde
On Thu, Mar 19, 2009 at 4:51 PM, Jan Wagner w...@cyconet.org wrote:
 Hi Onkar,

 is there any process? :)

 On Saturday 27 December 2008, Onkar Shinde wrote:
 1. I need sponsorship to the update of libcommons-jexl-java. The
 updated packaging lies in pkg-java svn.

 Maybe you should write about this issue to
 pkg-java-maintain...@lists.alioth.debian.org ?

I had written 3 times previously but didn't get any response probably
because unstable was frozen.

 2. I will need to package excalibur-logger [1] as it is essential
 dependency of jmeter.

 I didn't found an ITP here, so I guess there is no process.

I was working on this in Ubuntu, but found out that it didn't build
with logkit available in repositories. So I first need to update
logkit.

 I plan to get everything done in Ubuntu first, as I have upload rights
 there. After that I will port the package to Debian.

 Even having a look into https://launchpad.net/~onkarshinde/+related-software
 doen't indicate any news.

Actually I have packaged one dependency jcharts which is required by
all the reporting modules in jmeter. This needs to be ported to
Debian. I will ask people on pkg-java.

So the conclusion is that for Jmeter to enter in Debian:
1. libcommons-jexl-java needs to be updated
2. jcharts needs to be ported from Ubuntu.
3. logkit needs to be updated (actually excalibur-logkit needs to be
packaged so we don't affect rdepends of logkit.)
4. excalibur-logger needs to be packaged.

That is lot of work. :-)


Onkar



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



Bug#520401: ITP: simhash -- generate similarity hashes to find nearly duplicate files

2009-03-19 Thread Thomas Koch
Package: wnpp
Severity: wishlist
Owner: Thomas Koch tho...@koch.ro


* Package name: simhash
  Version : only GIT, no releases
  Upstream Author : Bart Massey
* URL : http://wiki.cs.pdx.edu/forge/simhash.html
* License : BSD
  Programming Lang: C
  Description : generate similarity hashes to find nearly duplicate files
 One of the questions that it's nice to be able to answer about a pair of files
 is the degree of similarity between them. This command-line tool is useful for
 estimating the degree of similarity between a pair of nominally sequential
 files such as textfiles. The tool uses Manassas's shingleprinting technique;



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



Bug#501536: open-vm-toolbox: vmware-user does not work correctly, mouse trapped in vmware window

2009-03-19 Thread Daniel Baumann
reassign 501536 xserver-xorg-input-vmmouse
retitle 501536 Soft ungrab not working and mouse clicks being displaced
thanks

After having re-read the bug, the only thing left is the alleged bug
in xserver-xorg-input-vmmouse, thus reassigning to that package.

Regards,
Daniel

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#520398: gimp: Opening a xcf file with layer let the rotate tool fail.

2009-03-19 Thread Jan-Hendrik Palic
Package: gimp
Version: 2.4.7-1
Severity: normal

Hi.

I created an image with several layers and I was able to rotate these layer with
the rotate tool (shift + r). 

After reopening this file the rotaten fails. It does not have an effect. The
window pops up, the slider can be moved to the left/right, but klicking the
rotatebutton leaves the layer unvaried.

If you save the image then as psd and reopen it in gimp, rotate will work again
for each layer in it.

I will test this on debian unstable in the evening to have a look, whether the
bug appears or not.

Best regards.

Jan

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15) (ignored: 
LC_ALL set to en_GB.ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gimp depends on:
ii  gimp-data  2.4.7-1   Data files for GIMP
ii  libaa1 1.4p5-37+b1   ascii art library
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcairo2  1.6.4-7   The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-5   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libexif12  0.6.16-2.1library to parse EXIF files
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgimp2.0 2.4.7-1   Libraries for the GNU Image Manipu
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libgtkhtml2-0  2.11.1-2  HTML rendering/editing library - r
ii  libhal10.5.11-8  Hardware Abstraction Layer - share
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  liblcms1   1.17.dfsg-1   Color management library
ii  libmng11.0.9-1   Multiple-image Network Graphics li
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libpoppler-glib3   0.8.7-1   PDF rendering library (GLib-based 
ii  librsvg2-2 2.22.2-2lenny1SAX-based renderer library for SVG
ii  libtiff4   3.8.2-11  Tag Image File Format (TIFF) libra
ii  libwmf0.2-70.2.8.4-6 Windows metafile conversion librar
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxmu62:1.0.4-1 X11 miscellaneous utility library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages gimp recommends:
ii  gimp-gnomevfs 2.4.7-1GNOME-VFS URI plugin for GIMP
ii  gimp-python   2.4.7-1Python support and plugins for GIM

Versions of packages gimp suggests:
ii  ghostscript8.62.dfsg.1-3.2lenny0 The GPL Ghostscript PostScript/PDF
ii  gimp-data-extras   1:2.0.1-3 An extra set of brushes, palettes,
ii  gimp-help-de [gimp 2.4.1-1   Documentation for the GIMP (German
ii  gimp-help-en [gimp 2.4.1-1   Documentation for the GIMP (Englis
ii  libasound2 1.0.16-2  ALSA library
pn  libgimp-perl   none(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#519169: [Evolution] Bug#519169: leaks memory like hell

2009-03-19 Thread Yves-Alexis Perez
severity 519169 important
thanks
On mar, 2009-03-10 at 20:35 +0100, Soeren Sonnenburg wrote:

 A 1 hour evolution session fills  1GB of memory, leaving evolution
 unable to do anything (not able to execute gpg, not able to send a in
 the meantime created email).
 
 This is a drastic regression from 2.22.X rendering evolution useless for
 any usage other than start, read email, shutdown loops.

I never reproduced something like that in 2.24. It even seems that it's
a bit lighter than 2.22 but I may be wrong.

Thanks for your really shiny bug report, and have a nice day.

Cheers,
-- 
Yves-Alexis




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



Bug#520397: [mc] zero-size files after extracting from zip archive

2009-03-19 Thread Frederik Schwarzer
Package: mc
Version: 2:4.6.2-2
Severity: serious

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

1. create a zip file with zip containing several files (I used about 20 
media files, video and audio, about 3-5mb each)
2. start mc
3. enter the archive by pressing Enter
4. copy the files somewhere by pressing F5

After a few sucessfully extracted files, all the remaining files remain empty.
I saw the same with zip archives created with WinZIP.


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.28.8-fs

Debian Release: squeeze/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp2.de.debian.org 
1 experimentalftp2.de.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-=
libc6  (= 2.3.4) | 2.9-6
libglib2.0-0  (= 2.16.0) | 2.20.0-1
libgpm2   (= 1.20.4) | 1.20.4-3.1
libslang2(= 2.0.7-1) | 2.1.3-3






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



Bug#520385: nautilus-cd-burner: please change dependencies on GNU/kFreeBSD

2009-03-19 Thread Petr Salinger

Package: nautilus-cd-burner
Severity: important
Version: 2.20.0-1
Tags: patch
User: glibc-bsd-de...@lists.alioth.debian.org
Usertags: kfreebsd

Hi,

the gnome-python-desktop fails to build against current version
of libnautilus-burn-dev on GNU/kFreeBSD.

The easiest solution is to enable (Build-)Depends
on libhal-dev for nautilus-cd-burner/libnautilus-burn-dev.
The hal have been already partially ported.

See bellow for needed changes of debian/rules and debian/control.in.
and propagated change into debian/control.

Thanks in advance

Petr


diff -u nautilus-cd-burner-2.20.0/debian/control.in 
nautilus-cd-burner-2.20.0/debian/control.in
--- nautilus-cd-burner-2.20.0/debian/control.in
+++ nautilus-cd-burner-2.20.0/debian/control.in
@@ -10,7 +10,7 @@
libbonobo2-dev (= 2.16),
libnautilus-extension-dev (= 2.15.3),
libgnomeui-dev (= 2.16.0-2),
-   libhal-dev (= 0.5.7) [!kfreebsd-i386 !kfreebsd-amd64],
+   libhal-dev (= 0.5.7),
libcam-dev [kfreebsd-i386 kfreebsd-amd64],
libgtk2.0-dev (= 2.6.0),
libdbus-glib-1-dev (= 0.60),
diff -u nautilus-cd-burner-2.20.0/debian/rules 
nautilus-cd-burner-2.20.0/debian/rules
--- nautilus-cd-burner-2.20.0/debian/rules
+++ nautilus-cd-burner-2.20.0/debian/rules
@@ -20,7 +20,7 @@
echo libhal-dev=libhal-dev (= 0.5.7)  
debian/libnautilus-burn-dev.substvars
 else
 ifeq (kfreebsd,$(DEB_HOST_ARCH_OS))
-   echo libhal-dev=libcam-dev  debian/libnautilus-burn-dev.substvars
+   echo libhal-dev=libcam-dev, libhal-dev (= 0.5.7)  
debian/libnautilus-burn-dev.substvars
 endif
 endif

diff -u nautilus-cd-burner-2.20.0/debian/control 
nautilus-cd-burner-2.20.0/debian/control
--- nautilus-cd-burner-2.20.0/debian/control
+++ nautilus-cd-burner-2.20.0/debian/control
@@ -10,7 +10,7 @@
libbonobo2-dev (= 2.16),
libnautilus-extension-dev (= 2.15.3),
libgnomeui-dev (= 2.16.0-2),
-   libhal-dev (= 0.5.7) [!kfreebsd-i386 !kfreebsd-amd64],
+   libhal-dev (= 0.5.7),
libcam-dev [kfreebsd-i386 kfreebsd-amd64],
libgtk2.0-dev (= 2.6.0),
libdbus-glib-1-dev (= 0.60),




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



Bug#520389: some bugs are not listed in packages

2009-03-19 Thread Michal Čihař
Package: bugs.debian.org
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

maybe I'm just doing something wrong, but I can't see bug #520380
anywhere in binary or source package bug listings. Because of this it
also does not show in DDPO.

Bug report:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520380
Binary package bugs:
http://bugs.debian.org/cgi-bin/pkgreport.cgi?package=python-mmkeys
Source package bugs:
http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=sonata

- -- 
Michal Čihař | http://cihar.com | http://blog.cihar.com


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

Kernel: Linux 2.6.25.20-0.1-default (SMP w/2 CPU cores)
Locale: LANG=cs_CZ.UTF-8, LC_CTYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

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

iEYEARECAAYFAknCGfoACgkQ3DVS6DbnVgTtpgCfWRWwwmoQyKg5s3OFEDU2zqHd
R5wAoOJK6GrkbGfbmQ9TAH60IQDl+Di6
=b0gK
-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#520404: /usr/bin/amarok: amarok caused a 100% processor load

2009-03-19 Thread Michael Singer
Package: amarok
Version: 1.4.10-3+b1
Severity: important
File: /usr/bin/amarok

Hello amarok team
if I have a song in amarok with ID3 tags from the MusciBrainz want to fill 
(list of songs, then on menu Edit metadata) increases the CPU load to 100%, 
and the load at levels above 10. The PC is practically unusable.

The burden falls again when the window with ID3 tag information is closed.

Does it need more information from any log files?


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

Kernel: Linux 2.6.28-7.slh.6-sidux-686 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages amarok depends on:
ii  amarok-common   1.4.10-3 architecture independent files for
ii  amarok-engine-xine  1.4.10-3+b1  Xine engine for the Amarok audio p
ii  amarok-engine-yauap 1.4.10-3+b1  Yauap engine for the Amarok audio 
ii  kdelibs4c2a 4:3.5.10.dfsg.1-1+b1 core libraries and binaries for al
ii  libc6   2.9-4GNU C Library: Shared libraries
ii  libgcc1 1:4.3.3-5GCC support library
ii  libgl1-mesa-glx [li 7.0.3-7  A free implementation of the OpenG
ii  libglib2.0-02.20.0-1 The GLib library of C routines
ii  libgpod40.7.0-2  library to read and write songs an
ii  libifp4 1.0.0.2-3communicate with iRiver iFP audio 
ii  libkarma0   0.0.6-4  Rio Karma access library [runtime 
ii  libmtp8 0.3.6-2  Media Transfer Protocol (MTP) libr
ii  libmysqlclient15off 5.0.77-1 MySQL database client library
ii  libnjb5 2.2.5-4.2Creative Labs Nomad Jukebox librar
ii  libpq5  8.3.7-1  PostgreSQL C client library
ii  libqt3-mt   3:3.3.8b-5+b1Qt GUI Library (Threaded runtime v
ii  libruby1.8  1.8.7.72-3   Libraries necessary to run Ruby 1.
ii  libsdl1.2debian 1.2.13-4+b1  Simple DirectMedia Layer
ii  libsqlite3-03.5.9-6  SQLite 3 shared library
ii  libstdc++6  4.3.3-5  The GNU Standard C++ Library v3
ii  libtag1c2a  1.5-3TagLib Audio Meta-Data Library
ii  libtunepimp50.5.3-7  MusicBrainz tagging library
ii  libusb-0.1-42:0.1.12-13  userspace USB programming library
ii  libvisual-0.4-0 0.4.0-2.1Audio visualization framework
ii  unzip   5.52-12  De-archiver for .zip files

Versions of packages amarok recommends:
pn  amarok-konqsidebarnone (no description available)
ii  kdemultimedia-kio-plugins 4:3.5.9-3  enables the browsing of audio CDs 

Versions of packages amarok suggests:
ii  amarok-engines 1.4.10-3  output engines for the Amarok musi
ii  elinks [www-browser]   0.12~pre2.dfsg0-1 advanced text-mode WWW browser
ii  iceweasel [www-browser 3.0.7-1   lightweight web browser based on M
ii  konqueror [www-browser 4:3.5.10.dfsg.1-1 KDE's advanced file manager, web b
pn  libvisual-0.4-plugins  none(no description available)
pn  moodbarnone(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#515949: libvorbis patch for armel

2009-03-19 Thread Martin Guy
Of the flags that -ffast-math sets, turning -ffinite-math-only off
again avoids the erroneous optimization. With the attached patch,
libvorbis's examples/encoder_example produces the same (correct)
output as on arm-oldabi and it makes oggenc work on armel too.

 M
On armel, oggenc creates short output files that decode to the correct amount
of silence. This is caused by an optimization bug present in gcc 4.[123] that
miscompiles the MAX(x,y) macro, optimizing it away completely.
Fixes: http://bugs.debian.org/515949
Analysis: https://trac.xiph.org/ticket/1526

 Martin Guy martinw...@yahoo.it March 2009

--- libvorbis-1.2.0.dfsg/configure.in.old	2007-07-25 17:27:00.0 +0100
+++ libvorbis-1.2.0.dfsg/configure.in	2009-03-19 07:44:38.0 +
@@ -168,6 +168,12 @@
 		CFLAGS=-O20 -D__NO_MATH_INLINES -fsigned-char
 		PROFILE=-O20 -g -pg -D__NO_MATH_INLINES -fsigned-char ;;
 esac
+
+	# Avoid an optimization bug in gcc-4.[123]
+	case $host in 
+	arm*-*-linux-gnueabi)
+		CFLAGS+= -fno-finite-math-only ;;
+	esac
 fi
 CFLAGS=$CFLAGS $cflags_save
 
--- libvorbis-1.2.0.dfsg/configure.old	2007-07-25 17:46:37.0 +0100
+++ libvorbis-1.2.0.dfsg/configure	2009-03-19 07:45:54.0 +
@@ -19484,6 +19484,12 @@
 		CFLAGS=-O20 -D__NO_MATH_INLINES -fsigned-char
 		PROFILE=-O20 -g -pg -D__NO_MATH_INLINES -fsigned-char ;;
 esac
+
+	# Avoid an optimization bug in gcc-4.[123]
+	case $host in 
+	arm*-*-linux-gnueabi)
+		CFLAGS+= -fno-finite-math-only ;;
+	esac
 fi
 CFLAGS=$CFLAGS $cflags_save
 


Bug#518391: Patches for coherence

2009-03-19 Thread Arnaud Quette
2009/3/19 charliej cj...@cableone.net

 Arnaud,


Hi Charlie,


 I made the changes to the rules file that you suggested.  IMHO worked
 much better.


sure ;-)


 Both manpages have been created.  I had a real problem with the
 manpages.  I would get lintian errors on the .deb but not on the source.
 I tried several name combination which did not work.  During the test
 install I manually verified that the manpages where installed
 to /usr/share/man/man1 which they where, so I included a lintian
 override file.


* quickly looking, this must be due to the naming:
the manpages name have to match the binaries name.
so the fix here is to rename:
- python-coherence.1 to coherence.1
- python-coherence-applet.1 to applet-coherence.1 (beware of the words
ordering).

* while you're working on that, you should also modify the 3rd .TH field of
the manpage to put the last manpage modification date (ie Thu Mar 19
2009). It seems to be the standard here (thought I'm not a groff / man
guru!) and is more useful than sticking with a software release that is
always changing without mandatory impact on the manpage...

* lastly, you have a typo in the changelog:
+ * Added debain/python-coherence.lintian-overrides
 ^^
or are you trying to fork a new Debian based distro ;-p

having the above, we should be fine.
Otherwise, I'll take on me to make the remaining changes and ping you for
the ubuntu sync on the Debian upload is done. alright?

cheers,
Arnaud
-- 
Linux / Unix Expert RD - Eaton - http://www.eaton.com/mgeops
Network UPS Tools (NUT) Project Leader - http://www.networkupstools.org/
Debian Developer -
http://people.debian.org/~aquette/http://people.debian.org/%7Eaquette/
Free Software Developer - http://arnaud.quette.free.fr/


Bug#505877: ITP: jakarta-jmeter -- Load testing and performance measurement application.

2009-03-19 Thread Jan Wagner
Hi Onkar,

is there any process? :)

On Saturday 27 December 2008, Onkar Shinde wrote:
 1. I need sponsorship to the update of libcommons-jexl-java. The
 updated packaging lies in pkg-java svn.

Maybe you should write about this issue to 
pkg-java-maintain...@lists.alioth.debian.org ?

 2. I will need to package excalibur-logger [1] as it is essential
 dependency of jmeter.

I didn't found an ITP here, so I guess there is no process.

 I plan to get everything done in Ubuntu first, as I have upload rights
 there. After that I will port the package to Debian.

Even having a look into https://launchpad.net/~onkarshinde/+related-software 
doen't indicate any news.

Thanks and with kind regards, Jan.
-- 
Never write mail to w...@spamfalle.info, you have been warned!
-BEGIN GEEK CODE BLOCK-
Version: 3.1
GIT d-- s+: a- C+++ UL P+ L+++ E- W+++ N+++ o++ K++ w--- O M V- PS PE
Y++ PGP++ t-- 5 X R tv- b+ DI- D++ G++ e++ h-- r+++ y+++
--END GEEK CODE BLOCK--


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


Bug#520403: apt: [INTL:sk] Slovak translation

2009-03-19 Thread helix84
Package: apt
Priority: wishlist
Tags: l10n patch
Version:

.po attached

~~helix84


sk.po.diff
Description: Binary data


Bug#520405: xterm: bell no longer sounds

2009-03-19 Thread Aaron M. Ucko
Package: xterm
Version: 242-1
Severity: normal

Sending ^G to xterm 242 with visual-bell mode off (as it is by
default) has no effect.  The visual bell still works fine, as do
auditory bells from other applications.  xterm 241 had no such
problem.  I don't have time to debug the issue at the moment, but I
observe that xterm 242's top changelog entry mentions reworking the
relevant logic, in the course of which a bug presumably slipped in:

lifix configure check for codeXkbBell/code and provide
appropriate parameter for it.

Could somebody please take a look?

Thanks!

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

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

Versions of packages xterm depends on:
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libfontconfig12.6.0-3generic font configuration library
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20090228-1 shared libraries for terminal hand
ii  libx11-6  2:1.2-1X11 client-side library
ii  libxaw7   2:1.0.5-2  X11 Athena Widget library
ii  libxft2   2.1.13-3   FreeType-based font drawing librar
ii  libxmu6   2:1.0.4-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  xbitmaps  1.0.1-2Base X bitmaps

Versions of packages xterm recommends:
ii  x11-utils 7.4+1  X11 utilities
ii  xutils1:7.3+18   X Window System utility programs m

Versions of packages xterm suggests:
ii  xfonts-cyrillic   1:1.0.0-6  Cyrillic fonts for X

-- 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#520381: midori: Adding debian packages search to pre-installed searches

2009-03-19 Thread Trent W. Buck
On Thu, Mar 19, 2009 at 09:57:32AM +0100, Martino Giuseppe (denever) wrote:
 Could you please add debian packages search to pre-installed searches?

That seems reasonable, but I'll defer it until the next update.



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



Bug#502505: mazeofgalious: not binNMU safe

2009-03-19 Thread Gürkan Sengün

Hi Petr,

Can you sponsor me?

Thanks,
Guerkan



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



Bug#520402: gcalctool truncates to 32 bits with bitwise operations

2009-03-19 Thread kpalberg
Package: gcalctool
Version: 5.22.3-2

In scientific view and hex number representation, calculating the
102030405 OR 1 gives the result 2030405 instead of the correct result
102030405. The same truncation to 32 bits happens for other bitwise
operations (XOR, AND). On the other hand, 102030405+1 gives the
correct result 102030406, no truncation.

I'm using Debian Lenny x86.



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



Bug#520406: core dump apache with mod_perl and mysql database connections

2009-03-19 Thread Hartmut . Vogler
Package: libdbd-mysql-perl
Version: 4.007-1
 
I use lenny for an application in apache2/mod_perl2/ApacheDBI/mysql
enviroment.
 
If my mod_perl application is unused for some minutes (ca. 15-30) in
apache get messages about created core dumps:
 
f.e.:
[Wed Mar 18 16:08:09 2009] [notice] child pid 16489 exit signal
Segmentation fault (11), possible coredump in /tmp
 
If this happens, at the Web-Site errors (zero size page) will be
displayed, soo this problem is very critical.
My System constellation is:
 
||/ Name Version
+++--===
ii  apache2  2.2.9-10+lenny2
ii  apache2-mpm-prefork  2.2.9-10+lenny2
ii  apache2-utils2.2.9-10+lenny2
ii  apache2.2-common 2.2.9-10+lenny2
ii  libapache-dbi-perl   1.07-1
ii  libapache2-mod-perl2 2.0.4-5
ii  libdbd-mysql-perl4.007-1
ii  libmysqlclient15off  5.0.51a-24  
ii  mysql-common 5.0.51a-24  

 
 
To quickfix the problem, i have manualy install the current version of
DBD::mysql (4.010). With this solution no cores are wirtten but in this
relases the problem Commands out of sync; you can't run this command
now occured (in situations in witch this not should occured). 
The only working solution i found, is to install the old Version
DBD-mysql-3.0008 direct from CPAN.org .
The problem seems related to an already known bug at CPAN Bug Tracker
http://rt.cpan.org/Public/Bug/Display.html?id=37027 .
I think, there is an update in Lenny necessary, because with this bug,
no mysql/mod_perl/apache web applications can't be suggestive processed.

 

Regards 
Hartmut Vogler 





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



Bug#520407: [gnome] Apparently Debian testing has a version of Gnome to old to look at, should experimental come through

2009-03-19 Thread Gavin
Package: gnome
Version: 2.22.3
Severity: normal

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

It appears Debian testings version is no longer supported or maintained.
Should a newer version of gnome be coming through?
Or are the automatic bug reports going to the wrong place?

Regards
/Gavin 


+++
+++
  http://bugzilla.gnome.org/show_bug.cgi?id=575564

  nautilus | general | Ver: 2.20.x

Fabio Durán Verdugo changed:

   What|Removed |Added

 CC||fa...@gnome.cl
 Status|UNCONFIRMED |RESOLVED
 Resolution||OBSOLETE




--- Comment #1 from Fabio Durán Verdugo  2009-03-16 16:42 UTC
---
Thanks for taking the time to report this bug.
However, you are using a version that is too old and not supported
anymore.
GNOME developers are no longer working on that version, so unfortunately
there
will not be any bug fixes for the version that you use.

By upgrading to a newer version of GNOME you could receive bug fixes and
new
functionality. You may need to upgrade your Linux distribution to obtain
a
newer version of GNOME.
Please feel free to reopen this bug if the problem still occurs with a
newer
version of GNOME.

--
--
--


--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.28-1-686

Debian Release: squeeze/sid
  990 testing ftp.au.debian.org 
  500 unstableftp.au.debian.org 
  500 stable  security.debian.org 
  500 stable  ftp.au.debian.org 
1 experimentalftp.au.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-===
gnome-desktop-environment (= 1:2.14.3.6) | 
gnome-office  (= 1:2.14.3.6) | 
gdm-themes   | 0.6.2
gnome-cups-manager (= 0.30) | 0.31-3
gnome-themes-extras  | 2.22.0-2
gnome-games-extra-data   | 2.22.0-1
rhythmbox (= 0.9.2) | 0.11.6-1
synaptic(= 0.53.4)  | 0.62.5
 OR gnome-apt| 0.4.9-5
gnome-screensaver   (= 2.14.3)  | 2.22.2-2
 OR xscreensaver | 5.05-3
gnome-power-manager (= 2.14.2)  | 2.22.1-4
 OR xscreensaver | 5.05-3
totem-mozilla| 2.22.2-5






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



Bug#518115: Version for kernel 2.6.28 available at ....

2009-03-19 Thread Olivier Berger
On Wed, Mar 04, 2009 at 02:31:15AM -0600, Adam Majer wrote:
 
 Please don't close this bug until a real upload of linux-kbuild-2.6
 can be made to unstable.

Thanks for providing this package, which helps workaround #519040.

But maybe, you could have pointed also to the reason why this problem exists 
currently ?

Thanks in advance.

Best regards,
-- 
Olivier BERGER 
(OpenPGP: 1024D/B4C5F37F)
http://www.olivierberger.com/weblog/



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



Bug#517173: centerim: Please update centerim to 4.22.7

2009-03-19 Thread Boris Petersen
Go ahead, 4.22.8 will take some time after all

2009/3/2 Anibal Avelar aave...@cofradia.org:
 Hi.

 Yes, I will upload the package this week, I hope before the weekend.

 Regards.


 On Thu, Feb 26, 2009 at 2:08 AM,  quadris...@ubuntu.com wrote:
 Package: centerim
 Version: 4.22.5-1
 Severity: wishlist


 Please update to centerim [1] 4.22.7, it contains severl bugfixes and a good
 number of new features.





 [1] http://www.centerim.org/

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

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

 Versions of packages centerim depends on:
 pn  centerim-common none   (no description available)
 ii  libc6   2.8~20080505-0ubuntu9GNU C Library: Shared libraries
 ii  libcomerr2  1.41.3-1ubuntu1  common error description
 library
 ii  libcurl3-gnutls 7.18.2-1ubuntu4  Multi-protocol file transfer
 libra
 ii  libgcc1 1:4.3.2-1ubuntu12GCC support library
 ii  libgcrypt11 1.4.1-1ubuntu1   LGPL Crypto library - runtime
 libr
 ii  libgnutls26 2.4.1-1ubuntu0.2 the GNU TLS library - runtime
 libr
 ii  libgpg-error0   1.4-2ubuntu7 library for common error values
 an
 ii  libgpgme11  1.1.6-2ubuntu1   GPGME - GnuPG Made Easy
 ii  libidn111.8+20080606-1   GNU libidn library,
 implementation
 ii  libkrb531.6.dfsg.4~beta1-3   MIT Kerberos runtime libraries
 ii  libldap-2.4-2   2.4.11-0ubuntu6.1OpenLDAP libraries
 ii  libncurses5 5.6+20071124-1ubuntu2Shared libraries for terminal
 hand
 ii  libstdc++6  4.3.2-1ubuntu12  The GNU Standard C++ Library v3
 ii  libtasn1-3  1.4-1Manage ASN.1 structures
 (runtime)
 ii  zlib1g  1:1.2.3.3.dfsg-12ubuntu1 compression library - runtime

 Versions of packages centerim recommends:
 ii  epiphany 2.24.1-0ubuntu1 Intuitive GNOME web browser -
 Geck
 ii  firefox- 3.0.6+nobinonly-0ubuntu0.8.10.1 safe and easy web browser from
 Moz
 ii  sox  14.0.1-2build2  Swiss army knife of sound
 processi
 ii  w3m [www 0.5.2-2build1   WWW browsable pager with
 excellent

 --
 Alessio Treglia quadris...@ubuntu.com
 Ubuntu MOTU Developer | Homepage: http://www.alessiotreglia.com
 0FEC 59A5 E18E E04F 6D40  593B 45D4 8C7C DCFC 3FD0





 --
 Anibal Avelar (FixXxeR) http://fixxxer.cc
 GPG: 83B64656 - C143 4AD8 B017 53FA B742  D6AA CEEA F9F3 83B6 4656







-- 
jabber: transa...@0x7fff.net
pgp-public-key: 0x13794A82
Fingerprint: FCE5 1A34 7527 0F2B 7531 F917 FBF0 7A8B 1379 4A82
website: http://transacid.de
blog: http://blog.transacid.de
IRC: foobar.i7c.org:6667 #welcome (ssl port 6697)



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



Bug#520408: Webalizer gettext patch doesn't handle month names properly

2009-03-19 Thread Gerome Fournier

Package: webalizer
Version: 2.01.10-32

Using webalizer with french locales for example, month names are still 
output in english:


$ export LANG=fr_FR.utf8
$ export LC_ALL=fr_FR.utf8
$ webalizer -o . access.log
...

When viewing Month statistics, I get the following ouput:

Période du résumé: March 2009

instead of:

Période du résumé: Mars 2009

Looks like the bug comes from the intl_strip_context function provided 
in the debian/patches/17_gettext.dpatch file. The function is used to 
skip data before a pipe, but if no pipe is found, msgid is returned 
instead of the gettext string. Here goes a patch in order to fix this 
function.


# diff -u webalizer.c.ori webalizer.c
--- webalizer.c.ori 2009-03-19 11:26:04.133398000 +0100
+++ webalizer.c 2009-03-19 13:52:51.702928667 +0100
@@ -2158,11 +2158,12 @@
 char *intl_strip_context (const char *msgid)
 {
char *msgval = gettext (msgid);
+   char *pipe;

-   msgval = strchr(msgval, '|');
-   if (msgval != NULL)
-  return (char*)(msgval + 1);
+   pipe = strchr(msgval, '|');
+   if (pipe != NULL)
+  return (char*)(pipe + 1);

-   return (char*)msgid;
+   return (char*)msgval;
 }

I'm using debian etch, kernel 2.6.18.5, libc6 2.3.6.ds1-13etch5.

--
Gerome Fournier
Infomaniak Network SA
http://infomaniak.ch



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



Bug#520124: [pkg-lighttpd] Bug#520124: lighttpd: please release ...

2009-03-19 Thread Patrick Poulain
 ok and if I read the last activity report on this bug,  they will 
not fix this bug tomorow :


Updated by stbuehler 101 days ago
   * Status changed from Fixed to Reopened
   * Target version changed from 1.4.20 to 1.4.21
   * Patch available set to No

Patch(es) reverted in 1.4.x (r2362) - too many regressions came up.
See commit message for more details.

We are not sure yet what to do, maybe we won't fix this at all.

Updated by icy 41 days ago
   * Target version changed from 1.4.21 to 1.4.22


Updated by stbuehler 18 days ago
   * Target version changed from 1.4.22 to 1.4.23

So it's may be easiest to wait 1.4.23 before release it in unstable ...

Krzysztof Krzyżaniak a écrit :

there is lighttpd 1.4.22 in our svn repo. Last thing which left before
release is to check lighttpd-1.4.x_rewrite_redirect_decode_url.patch.
Upstream bug for that is http://redmine.lighttpd.net/issues/1720 with
such info:

Patch(es) reverted in 1.4.x (r2362) - too many regressions came up.
See commit message for more details.


petitchevalroux wrote:
  

Package: lighttpd
Version: 1.4.19-5
Severity: wishlist

Lighttp is now in 1.4.22 in the stable release lot of security fix ...

http://www.lighttpd.net/2008/9/30/1-4-20-Otherwise-the-terrorists-win
http://www.lighttpd.net/2009/2/16/1-4-21-yes-we-can-do-another-release
http://www.lighttpd.net/2009/3/7/1-4-22-echoes

I am using unstable and ready to test lighttpd on my dev server ... So I am 
just waiting ;)


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

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

Versions of packages lighttpd depends on:
ii  libattr1   1:2.4.43-2Extended attribute shared library
ii  libbz2-1.0 1.0.5-1   high-quality block-sorting file co
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libfam02.7.0-13.3Client library to control the FAM 
ii  libldap-2.4-2  2.4.15-1  OpenLDAP libraries

ii  libpcre3   7.8-2 Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libterm-readline-perl- 1.0302-1  Perl implementation of Readline li
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  mime-support   3.44-1MIME files 'mime.types'  'mailcap
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

lighttpd recommends no packages.

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.11-2   utility programs for webservers
ii  openssl   0.9.8g-15  Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- no debconf information



___
pkg-lighttpd-maintainers mailing list
pkg-lighttpd-maintain...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-lighttpd-maintainers




  





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



  1   2   3   4   >