Bug#364489: xkbcomp looks for files in the wrong directory

2006-04-24 Thread Daniel Stone
On Sun, Apr 23, 2006 at 11:12:34PM +0200, Wouter Verhelst wrote:
 On Sun, Apr 23, 2006 at 08:55:59PM +0100, Daniel Stone wrote:
  On Sun, Apr 23, 2006 at 08:21:41PM +0200, Wouter Verhelst wrote:
   Which should mean that X would look for a keymap with the macintosh
   geometry,
  
  You're confusing model and geometry.
 
 If I am, that's only because XKB uses confusing terminology.
 
 There's XkbLayout in xorg.conf, which maps to a directory called
 symbols, XkbModel which maps to keymap, and so on. It'd probably
 be better if those terms would be unified.

No, that's not actually what happens.  For the most case, this
generalisation happens to roughly work, but it's not at all a 1:1
mapping.

  Correct.  The pc/, macintosh/, *_vndr/ directories under symbols are
  deprecated.  The fix is to write keyboard layouts that are portable
  across models, for the general case.
 
 That's simply impossible. An apple ADB keyboard as it appears on their
 laptops lacks a whole bunch of keys that a regular PC keyboard does
 have; the keys RALT, and INS are not available on my laptop, and some of
 the other keys (e.g., DELE) are only available through awkward key
 combinations involving Fn.
 
 My own keyboard mapping therefore does some things that would be very
 strange indeed on 'regular' keyboard (one with the normal lay-out) but
 that are good (and wanted) on an apple keyboard.
 
 Moreover, Apple has a different idea about what a Belgian keyboard is
 than most PC keyboards do. If I use a Belgian PC keyboard layout on my
 macintosh laptop, I don't get the characters that are printed on the
 keys.
 
 This way lies madness.

Well, it seems to be working pretty well for xkeyboard-config.  If you
really can't write one definition that works for everything, then use
the rules file to map model + layout - symbols, in this case.

  Closing as invalid, since this is a user configuration issue.
 
 Then at the very minimum this should be documented. Rather than having a
 non-working macintosh_vndr directory, it should either work, or be
 documented that it needs to be enabled somehow (by an option in
 xorg.conf, I guess?), or be removed.

It *is* documented.  That it existed previously was not documented, but
in the rules file.  If you 

 A directory on disk with keymaps that cannot ever possibly be used is a
 bug in my book.

What?  Which directory?

I'm not going to bother re-closing it: if you want to keep it open, good
luck.  All I'm saying, is that you made local modifications to XKB, and
that was what failed.  Everything else works fine.  Your mail shows a
lack of understanding of XKB (yes, it is hideously underdocumented), so
arguing semantics about it probably isn't the best idea.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#343826: easytag: Cannot save some characters into ID3v2 tag

2006-04-24 Thread Jérôme COUDERC

Hi,

   This problem is due to id3lib which contains a bug when writing some 
characters to Unicode. The initial bug description is on : 
http://sourceforge.net/tracker/index.php?func=detailaid=1016290group_id=979atid=300979


In the last version 1.99.12 of id3lib, was added a check when writing 
the tag, to detect if your version of id3lib wasn't patched.

Here is attached the recommended patch.

Regards,
Jerome



Javier Kohen wrote, the 18/12/2005 01:17 :

Package: easytag
Version: 1.99.10-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


I just hit a bug with some Czech songs. For instance, character � (composed 
with 'y) cannot be saved properly by EasyTAG when using the recommended 
encoding setting (ISO-8859-1, or UNICODE fallback). The character shows up in 
the ID3v2 tag as FFFD (invalid UTF-16 sequence).

This might be related to bugs #281255 and #246856, but I'm not sure. There is 
some background information there. I guess that the cause behind the bug is 
that Debian still lacks an UTF-8-clean libid3, as mentioned elsewhere by Jerome 
and me. If this is not the case, I'd be happy to check this bug.

  


--
EasyTAG - Tag editor for MP3 and Ogg Vorbis files
http://easytag.sourceforge.net
--
Jerome COUDERC [EMAIL PROTECTED]

diff -ruN id3lib-3.8.3.orig/ChangeLog id3lib-3.8.3/ChangeLog
--- id3lib-3.8.3.orig/ChangeLog 2003-03-02 01:23:00.0 +0100
+++ id3lib-3.8.3/ChangeLog  2006-02-22 00:33:59.946214472 +0100
@@ -1,3 +1,8 @@
+2006-02-17  Jerome Couderc
+
+* Patch from Spoon to fix UTF-16 writing bug
+  
http://sourceforge.net/tracker/index.php?func=detailaid=1016290group_id=979atid=300979
+
 2003-03-02 Sunday 17:38   Thijmen Klok [EMAIL PROTECTED]
 
* THANKS (1.20): added more people 
diff -ruN id3lib-3.8.3.orig/src/io_helpers.cpp id3lib-3.8.3/src/io_helpers.cpp
--- id3lib-3.8.3.orig/src/io_helpers.cpp2003-03-02 01:23:00.0 
+0100
+++ id3lib-3.8.3/src/io_helpers.cpp 2006-02-22 00:35:02.926639992 +0100
@@ -363,11 +363,22 @@
 // Write the BOM: 0xFEFF
 unicode_t BOM = 0xFEFF;
 writer.writeChars((const unsigned char*) BOM, 2);
+// Patch from Spoon : 2004-08-25 14:17
+//   
http://sourceforge.net/tracker/index.php?func=detailaid=1016290group_id=979atid=300979
+// Wrong code
+//for (size_t i = 0; i  size; i += 2)
+//{
+//  unicode_t ch = (data[i]  8) | data[i+1];
+//  writer.writeChars((const unsigned char*) ch, 2);
+//}
+// Right code
+unsigned char *pdata = (unsigned char *) data.c_str();
 for (size_t i = 0; i  size; i += 2)
 {
-  unicode_t ch = (data[i]  8) | data[i+1];
+  unicode_t ch = (pdata[i]  8) | pdata[i+1];
   writer.writeChars((const unsigned char*) ch, 2);
 }
+// End patch
   }
   return writer.getCur() - beg;
 }


Bug#286527: Any progress

2006-04-24 Thread Michal Čihař
Hi

is there any chance to get this simple thing merged?

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


signature.asc
Description: PGP signature


Bug#364431: atlas3: FTBFS: No rule to make .../3dnow/liblapack.so

2006-04-24 Thread Kurt Roeckx
tags 364431 - patch
thanks

This doesn't have a patch for make, so this tag is
misleading/wrong.


Kurt



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364425: emacs-snapshot-gtk crashes (segmentation fault) with remote DISPLAY

2006-04-24 Thread Romain Francoise
Vincent Lefevre [EMAIL PROTECTED] writes:

 The latest upgrade of emacs-snapshot-* I did before this was on
 April 12, so it was 20060406-1. But before upgrading to 20060420-1,
 this was also the latest upgrade, and this version was crashing
 too (I did the upgrade in case it fixed this crash).

So if I understand correctly, 20060406-1 worked and 20060415-1 didn't?

-- 
  ,''`.
 : :' :Romain Francoise [EMAIL PROTECTED]
 `. `' http://people.debian.org/~rfrancoise/
   `-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#362500: duplicated?

2006-04-24 Thread Rafael Rodríguez
Hi,

I think this is a duplicate of #359979, found here:

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

Wouldn't it be possible, at least, some kind of NMU? It isn't hard at all to 
fix...

Regards,

Rafael Rodríguez



Bug#364516: this bug..

2006-04-24 Thread Theodore Ts'o
On Sun, Apr 23, 2006 at 08:08:47PM -0400, Joey Hess wrote:
 Hi Ted.. to summarize what needs doing for this bug,
 /usr/share/initrd-tools/scripts/e2fsprogs currently contains
 LD_ASSUME_KERNEL=2.4. This needs to change to LD_ASSUME_KERNEL=2.4.1

Two questions  first of all, this is a testing/unstable bug,
right?  I had a vague memory from a LCA 2006 presentation that we were
going to be desupporting the 2.4 kernel, or did I get that wrong?  Not
that this means we shouldn't fix the bug, but I'm wondering whether
this should really be considered an RC bug or not; how many people are
still using a 2.4 kernel on testing/unstable, and is that a supported
configuration.  I would have at thought this was at best an
important or normal bug.  The answer to this question would
basically affect whether or not I try to upload something right away,
or after I finish a few other changes currently on deck and can afford
to wait a few days.

Secondly, could you try this out since you obviously have a 2.4 system
handy?  What it does is avoid setting LD_ASSUME_KERNEL at all if the
script is currently running on a 2.4 kernel.  That should make the
script more robust, for someone who is purely running 2.4, and glibc
changes the minimum kernel version again.  It would only set
LD_ASSUME_KERNEL in the presumably rare case where you are running a
2.6 kernel, and for some reason want to install and run mkinitrd on a
2.4 kernel.  IIRC, that was the scenario that needed the
LD_ASSUME_KERNEL environment variable in the first place, so we might
as well restrict it to that.

Thanks, regards,

- Ted

diff -r caa07aa7226d debian/initrd-tools.e2fsprogs
--- a/debian/initrd-tools.e2fsprogs Sun Apr 23 12:43:40 2006 -0400
+++ b/debian/initrd-tools.e2fsprogs Mon Apr 24 02:34:48 2006 -0400
@@ -9,8 +9,12 @@ cp /usr/lib/e2initrd_helper $INITRDDIR/b
 
 case $VERSION in
 2.4.*)
-   LD_ASSUME_KERNEL=2.4
-   export LD_ASSUME_KERNEL
+case uname -r in
+   2.4.*)  :   ;;
+   *)  LD_ASSUME_KERNEL=2.4.1
+   export LD_ASSUME_KERNEL
+   ;;
+esac
;;
 esac
 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364425: emacs-snapshot-gtk crashes (segmentation fault) with remote DISPLAY

2006-04-24 Thread Romain Francoise
Vincent Lefevre [EMAIL PROTECTED] writes:

 (gdb) bt
[...]
 #13 0x080f4fa9 in x_error_handler ()
 #14 0xb79ee1ff in _XError () from /usr/X11R6/lib/libX11.so.6
 #15 0xb79ee8ef in _XReply () from /usr/X11R6/lib/libX11.so.6
 #16 0xb79e3c7b in XQueryPointer () from /usr/X11R6/lib/libX11.so.6
 #17 0x080f006a in XTmouse_position ()
 #18 0x0812d408 in kbd_buffer_get_event ()
 #19 0x0812b112 in read_char ()
 #20 0x081c5531 in read_filtered_event ()
 #21 0x081c5725 in Fread_event ()
 #22 0x081aca0f in Ffuncall ()
 #23 0x081e4cd0 in Fbyte_code ()
 #24 0x081abbbe in Feval ()
 #25 0x081a8dfc in Fprogn ()
 #26 0x0812c4cf in Ftrack_mouse ()

Hmm.  Could you provide the xbacktrace as well?  You need to launch gdb
from the src directory in the Emacs source tree to get this macro (or
move the .gbdinit file elsewhere).

Thanks,

-- 
  ,''`.
 : :' :Romain Francoise [EMAIL PROTECTED]
 `. `' http://people.debian.org/~rfrancoise/
   `-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364548: soap4r: new upstream 1.5.5

2006-04-24 Thread NOKUBI Takatsugu
Package: soap4r
Version: 1.4.8-4
Severity: wishlist

The latest version is 1.5.5. It is required by Ruby/Google, so
update please.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-386
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages soap4r depends on:
ii  libruby1.8 [libsoap-ruby1. 1.8.2-7sarge2 Libraries necessary to run Ruby 1.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364547: cpufrequtils: doesn't set options on the second cpu of a 'Core Duo' processor on smp kernel

2006-04-24 Thread anoop aryal
Package: cpufrequtils
Version: 001-2
Severity: normal


as cpufreq-set defaults to cpu 0 and /etc/init.d/cpufrequtils doesn't
call cpufreq-set with cpu ids, it ends up not setting any options for
the second (virtual) cpu on a 'core duo' processor. i've done the
following to make it work for me but the line '/bin/true' was added to
pacify log_action_end_msg so that probably needs to be fixed.

--- patch follows -
--- cpufrequtils.orig   2006-04-24 01:32:30.0 -0500
+++ /etc/init.d/cpufrequtils2006-04-24 01:01:49.0 -0500
@@ -45,7 +45,12 @@
 case $1 in
start|force-reload|restart|reload)
log_action_begin_msg $DESC: Setting $GOVERNOR CPUFreq 
governor
-   $PROGRAM $CPUFREQ_OPTIONS 21  /dev/null
+   grep processor /proc/cpuinfo | cut -f2 -d':' | \
+   while read cpu
+   do
+   $PROGRAM -cpu $cpu $CPUFREQ_OPTIONS 21  /dev/null
+   done
+   /bin/true
log_action_end_msg $?
;;
stop)
--- patch end 


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686-smp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages cpufrequtils depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libcpufreq0   001-2  shared library to deal with the 
cp
ii  lsb-base  3.1-4  Linux Standard Base 3.1 init 
scrip

cpufrequtils recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364331: ProFTPd base package depends on mysql

2006-04-24 Thread Francesco Paolo Lovergine
severity 364331 wishlist
thanks

On Sat, Apr 22, 2006 at 03:55:21PM -0500, Tony Mantler wrote:
 
 I don't know exactly how the modules in proftpd work, but I imagine  
 that you could probably do a suggests or recommends dependancy on  
 the deps of modules like the sql or ldap ones.
 
That's not an option. Recommended packages are not installed
automagically but one will get an obscure ld error on load whenever
a distributed module would be loaded. That's for pg, mysql, ldap and
any other which uses external libs indeed.


-- 
Francesco P. Lovergine


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364299: vim-common from experimental fails to install

2006-04-24 Thread Francesco Paolo Lovergine
On Sun, Apr 23, 2006 at 10:12:32AM +0200, Robert Luberda wrote:
 
 It's not necessary. The next version of manpages-pl will have the vim
 pages removed, however you don't need to postpone uploading new vim and
 waiting for new manpages-pl.
 

That's the same for manpages-it

-- 
Francesco P. Lovergine


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#360431: gnome-session: Still not starting all programs specified for the initial session

2006-04-24 Thread Heikki Kantola
Package: gnome-session
Version: 2.14.0-2
Followup-For: Bug #360431

I believe this bug is not fixed as the situation hasn't changed at all
in my system despite the updated gnome-session has been installed and
I have manually created ~/.config/autostart. Still only one xterm
(which sounds similar to what is reported in bug #364463), no window
manager (fvwm) for first display of my dualhead setup nor unclutter
pointer blanker. And the directory ~/.config/autostart stays empty if
that matters.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686-smp
Locale: LANG=C, LC_CTYPE=fi_FI (charmap=ISO-8859-1)

Versions of packages gnome-session depends on:
ii  gconf22.14.0-1   GNOME configuration database syste
ii  gnome-control-center  1:2.12.3-2 utilities to configure the GNOME d
ii  libatk1.0-0   1.11.4-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.14.0-1   Bonobo CORBA interfaces library
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libesd0   0.2.36-3   Enlightened Sound Daemon - Shared 
ii  libgconf2-4   2.14.0-1   GNOME configuration database syste
ii  libglib2.0-0  2.10.2-1   The GLib library of C routines
ii  libgnome-desktop-22.14.0-1   Utility library for loading .deskt
ii  libgnome2-0   2.14.0-2   The GNOME 2 library - runtime file
ii  libgnomeui-0  2.14.0-1   The GNOME 2 libraries (User Interf
ii  libgtk2.0-0   2.8.17-1   The GTK+ graphical user interface 
ii  libice6   6.9.0.dfsg.1-6 Inter-Client Exchange library
ii  liborbit2 1:2.14.0-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.12.1-2   Layout and rendering of internatio
ii  libsm66.9.0.dfsg.1-6 X Window System Session Management
ii  libx11-6  6.9.0.dfsg.1-6 X Window System protocol client li
ii  libxrandr26.9.0.dfsg.1-6 X Window System Resize, Rotate and

Versions of packages gnome-session recommends:
ii  dbus 0.61-5  simple interprocess messaging syst
ii  desktop-base 0.3.16  common files for the Debian Deskto
ii  gnome-panel  2.12.3-1launcher and docking facility for 
ii  metacity 1:2.14.1-1  A lightweight GTK2 based Window Ma
ii  nautilus 2.12.2-2file manager and graphical shell f
ii  sawfish  1:1.3+cvs20050709-6 a window manager for X11

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#345729: Fixed in modular?

2006-04-24 Thread Nils
Is it really fixed ? 
It seems that it affects only some notebooks, e.g. many IBM Thinkpads. These 
models were useless for a long time and debian X  6.8.2.
If your model was affected and it seems to be fixed now, I will try it. Then I 
could also confirm that this bug is fixed. (I use a radeon M10 / T41p)

[Is there any problem to update to xserver-xorg-video-ati 6.6.0, which is stil 
released and seems to be more bug free.]

Regards,
Nils


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364503: xserver-xorg-video-savage regression with apm suspend/resume on ibm t21

2006-04-24 Thread Michel Dänzer
On Sun, 2006-04-23 at 21:42 +0200, Florian Lohoff wrote:
 Package: xserver-xorg-video-savage
 Version: 1:2.0.2.3-4
 Severity: normal
 
 With the new XOrg 7 the savage driver needs a switch to console and back
 to actually continue updateing the screen. The original content gets
 shown, partially garbled. Cursor is shown and works. Clicking on XFCE4
 buttons which should lead to a new console/xterm lead to no results.
 Switching terminals shows the window had been opened but not shown.

This is (another) duplicate of
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=363120 .

XSF: Should I keep merging these or leave the duplicates assigned to the
driver packages to hopefully prevent even more duplicates?


-- 
Earthling Michel Dänzer  | Debian (powerpc), X and DRI developer
Libre software enthusiast|   http://svcs.affero.net/rm.php?r=daenzer



Bug#364069: liferea-mozilla: please don't depend on the whole mozilla-suite, if possible

2006-04-24 Thread David Moreno Garza
Lars Lindner wrote:
 I already tried compiling against the Debian xulrunner packages. I
 could not even get a simple test application to display simple HTML.
 With Liferea I just get crashes.
 
 Also the xulrunner homepage explains that the gtkmozembed part of
 xulrunner is not finished yet.

Lars,

Is there any real interest from you to eventually drop Mozilla and
switch to xul? Just asking since I'm a bit curious about it.

-- 
David Moreno Garza [EMAIL PROTECTED]   |  http://www.damog.net/
   [EMAIL PROTECTED]  |  GPG: C671257D
 ¿Y dejaste tu país por ésto?




Bug#263417: ITP: pysnmp -- Python implementation of SNMP v.1/v.2c engine

2006-04-24 Thread Ilya Etingof

  Morten I'm not involved in the packaging of pysnmp, but I guess
  Morten packaging the 3.x- 4.x-series as separate packages sounds
  Morten like a good idea if we really want the version 3 and 4 in
  Morten Debian before upstream freezes their API.
 
  I  think so  too.  I  have python-pysnmp4  ready, available  on  the svn
  repository of debian-python team. I can package pysnmp3 too, but i would
  like to wait for Jan Luebbe answer about these mails ;).

 All versions use the pysnmp package name (and therfore the packages
 conflict against each other), so it would impossible to one package with
 depends on v2 together with one which depends on v4.

Yup, that's a sort of design flaw. I've underestimated the impact of
API changes in this project. :-(

As an ugly workaround, one could install pysnmp's into different
directories and tackle PYTHONPATH on a per-application basis.

 v4 contains a mechanism to select the required version before importing
 pysnmp. So it should be possible to port this mechanism to v2 and v3 and
 create a pysnmp-common package which contains this module.

If anyone wants to backport this code into pysnmp[23], I'd happily commit
this into the distros or create a stand-alone package. Otherwise, I can do
that by myself. Just let me know.

 Of course that would require all users of pysnmp to specifiy the
 required version.

 The (imho) cleaner solution would be to use pysnmp[234] as the package
 names. This sould be coordinated with upstream.

I'm a bit reluctant about this approach because:

1) It would still require a modification to existing packages (rename
   pysnmp into pysnmp[234])
2) Looks like pysnmp4 is going to be final in terms of functionality and
   API (hopefully, oh) so all other versions will be gradually phased out.
   I'd like the final version to be called just pysnmp for the sake
   of simplicity and aestetics. ;-)

-ilya


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#363559: xserver-xorg-video-ati: system freezes on Thinkpad T42

2006-04-24 Thread Torsten Marek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

well, the XSF has been warned before, and I guess they already knew the solution
- - just leaves us wondering why they didn't fix it.

Anyway, rebuilding xserver-xorg-video-ati with the sources from the
ati-1-0-branch (from Xorg cvs /driver/xf86-video-ati) fixes the problem for me.
Additionally, you might need the DRM fixes for the kernel (either take a 2.6.17
kernel or use the git-drm patches from 2.6.16-mm*).

best,

Torsten
- --
Torsten Marek [EMAIL PROTECTED]
ID: A244C858 -- FP: 1902 0002 5DFC 856B F146  894C 7CC5 451E A244 C858
Keyserver: subkeys.pgp.net

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

iD8DBQFETIXIfMVFHqJEyFgRAj/dAJ9PaXEurMTCzcuNHMzfAAKNyx6ugQCgjDS4
bz0Vd5HGw9kZkVp+g7FOStU=
=3tvy
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#362056: More board combinations tested

2006-04-24 Thread Jonas Smedegaard
[sent again, this time with the proper list address]

First of all, please use the BTS instead of responding privately. I
have attached your response, and this is posted to the BTS as well.


On Sat, 15 Apr 2006 15:54:20 -0400 Jack Carroll wrote:

  It is possible, I believe, to blacklist a module from ever getting
  automatically loaded by udev.
  
  Also, it is possible to avoid udev altogether, by using the ramdisk
  generator yaird instead of initramfs-tools, chosen by default.
 
 
   This sounds interesting.  What would happen, the PCI bus
 wouldn't be scanned automatically at boot time, and the modules
 wouldn't be loaded until the ifconfig command caused them to be
 loaded?

Correct.


  But how would interface names eth0, eth1, ... be associated
 with drivers and physical devices?  Does the order of the lines
 in /etc/modules take care of that?

Yes, I believe so.

There's also the option of binding device names to MAC addresses using
ifrename or ifupdow-scripts-zg2.


   Then, the command ifconfig eth2 192.168.136.55 causes the machine
   to freeze instantly.
  
  Even if the problem can be worked around as mentioned above, this
  still sounds like a kernel bug to me.
 
   Sounds like it to me, too.  I just found that the same thing
 happens even if there aren't any other PCI Ethernet boards plugged
 in.  lsmod shows two modules loaded which look like Tulip drivers.  I
 think I'll try booting the floppy installer, which uses a 2.4.27
 kernel, and see if the Tulip board works at install time.
   Aha!  It attempts to load the de4x5 driver and gets an error
 message, but doesn't hang the machine.  But if I bring up another
 console, and command:
   modprobe tulip
 it works.  Specifically, we have a bug in the de4x5 module.
   Under 2.6.8, the problems are different.  Removing the de2104x
 module and loading the tulip module doesn't hang the machine, but the
 ifconfig command complains that there's no such device as eth2.
 Can't get the board recognized by the CD installer using the 2.6.8
 kernel, or an installed 2.6.8 kernel.

Thanks for the additional testing.

I'll leave it to to others (more clever on the inner workings of the
kernel) to deal with the bug itself...


 - Jonas


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

 - Enden er n_r: http://www.shibumi.org/eoti.htm
---BeginMessage---
On Sat, Apr 15, 2006 at 01:39:53PM +0200, Jonas Smedegaard wrote:
 On Sat, 15 Apr 2006 00:45:14 -0400 Jack Carroll wrote:
 
  But, if there is a PCI Tulip board installed, its driver
  module is loaded automatically at boot time after 3c59x.
 
 A driver module loaded automatically sounds like udev is installed.

It is.  I see it in the boot messages.

 
 It is possible, I believe, to blacklist a module from ever getting
 automatically loaded by udev.
 
 Also, it is possible to avoid udev altogether, by using the ramdisk
 generator yaird instead of initramfs-tools, chosen by default.


This sounds interesting.  What would happen, the PCI bus wouldn't be
scanned automatically at boot time, and the modules wouldn't be loaded until
the ifconfig command caused them to be loaded?  But how would interface
names eth0, eth1, ... be associated with drivers and physical devices?  Does
the order of the lines in /etc/modules take care of that?

 
  Then, the command ifconfig eth2 192.168.136.55 causes the machine to
  freeze instantly.
 
 Even if the problem can be worked around as mentioned above, this still
 sounds like a kernel bug to me.

Sounds like it to me, too.  I just found that the same thing happens
even if there aren't any other PCI Ethernet boards plugged in.  lsmod shows
two modules loaded which look like Tulip drivers.  I think I'll try booting
the floppy installer, which uses a 2.4.27 kernel, and see if the Tulip board
works at install time.
Aha!  It attempts to load the de4x5 driver and gets an error
message, but doesn't hang the machine.  But if I bring up another console,
and command:
modprobe tulip
it works.  Specifically, we have a bug in the de4x5 module.
Under 2.6.8, the problems are different.  Removing the de2104x
module and loading the tulip module doesn't hang the machine, but the
ifconfig command complains that there's no such device as eth2.  Can't get
the board recognized by the CD installer using the 2.6.8 kernel, or an
installed 2.6.8 kernel.

 
 I just wanted to draw attention to the possible workarounds.
 
 
  - Jonas

Thanks.  I have one workaround in hand now, which is plug in two PCI
boards that use the same driver (3c59x), and one ISA-PNP board.  That works
under both 2.6.8 and 2.6.15, though the interrupts are assigned differently.

---End Message---


pgp5kJ4mdBDIj.pgp
Description: PGP signature


Bug#364425: emacs-snapshot-gtk crashes (segmentation fault) with remote DISPLAY

2006-04-24 Thread Vincent Lefevre
On 2006-04-24 08:34:39 +0200, Romain Francoise wrote:
 Vincent Lefevre [EMAIL PROTECTED] writes:
 
  The latest upgrade of emacs-snapshot-* I did before this was on
  April 12, so it was 20060406-1. But before upgrading to 20060420-1,
  this was also the latest upgrade, and this version was crashing
  too (I did the upgrade in case it fixed this crash).
 
 So if I understand correctly, 20060406-1 worked and 20060415-1 didn't?

20060406-1 worked on April 17, but crashed yesterday. Then I saw that
it wasn't the latest version, and I did the upgrade to 20060420-1,
which also crashed. Moreover, between April 17 and yesterday, several
libraries had been upgraded.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA



Bug#364545: xserver-xorg: DisplaySize ignored

2006-04-24 Thread Michel Dänzer
On Mon, 2006-04-24 at 07:32 +0200, Vincent Lönngren wrote:
 Package: xserver-xorg
 Version: 6.9.0.dfsg.1-6
 Severity: normal
 
 The X server used to query the monitor for it's physical dimensions, and 
 everything was just fine. Now it seems that DPI is somehow set to 96, 
 and the dimensions are modified to fit that, which makes both the DPI 
 and the dimensions wrong.
 
 I tried to set the dimensions explicitly as described in the FAQ, but 
 those values seem to be ignored.
 
 Since the value 96 has been mentioned as a reasonable default value for 
 some time, I'm guessing that the default value has been changed and that 
 something went wrong in the process so it overrides values read from 
 EDID and even from an explicitly set DisplaySize.

In principle, the only way to override DisplaySize is the -dpi command
line switch. Is that being passed to the X server for you somehow? The
log file suggests this is the case:

 (++) NVIDIA(0): DPI set to (96, 96)
  


-- 
Earthling Michel Dänzer  | Debian (powerpc), X and DRI developer
Libre software enthusiast|   http://svcs.affero.net/rm.php?r=daenzer



Bug#364425: emacs-snapshot-gtk crashes (segmentation fault) with remote DISPLAY

2006-04-24 Thread Vincent Lefevre
On 2006-04-24 08:41:22 +0200, Romain Francoise wrote:
 Hmm.  Could you provide the xbacktrace as well?  You need to launch gdb
 from the src directory in the Emacs source tree to get this macro (or
 move the .gbdinit file elsewhere).

dixsept:...cal/src/emacs/src gdb emacs ~/core
[...]
#0  0xb769dbf1 in kill () from /lib/tls/libc.so.6
DISPLAY = localhost:10.0
TERM = xterm-color
.gdbinit:811: Error in sourced command file:
No struct type named Lisp_Symbol.

(gdb) xbacktrace 
Attempt to extract a component of a value that is not a structure pointer.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA



Bug#364549: Version 1.2.1 solves several problems

2006-04-24 Thread Lars Roland
Package: ocfs2-tools
Version: 1.1.5-2
Severity: normal

Version 1.2.1 solves many problems with current ocfs2-tools (it works
with glibc on my Debian Etch box) so it would be nice to get a
package.


Regards

Lars



Bug#362500: duplicated?

2006-04-24 Thread Rafael Rodríguez
As you can see in the provided link, it's just a missing dependency...

Rafael Rodríguez

El Lunes, 24 de Abril de 2006 10:05, Stephan Michels escribió:
 2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
  I think this is a duplicate of #359979, found here:
 
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=359979
 
  Wouldn't it be possible, at least, some kind of NMU? It isn't hard at all
  to fix...

 I'll will look later at that issue today or next days. Maybe Matthias
 knows more about the amd64 issue.

 Stephan Michels.



Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 I think this is a duplicate of #359979, found here:

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

 Wouldn't it be possible, at least, some kind of NMU? It isn't hard at all to
 fix...

I'll will look later at that issue today or next days. Maybe Matthias
knows more about the amd64 issue.

Stephan Michels.



Bug#362543: git.transition script interferes with kernel build

2006-04-24 Thread MJ Ray
Peter Cordes [EMAIL PROTECTED]
  Here's a patch for git.transition that makes it fail silently, or at
 least non-interactively, when its not run interactively.  It also
 redirects the error message to stderr.

Ian, will you answer this bug, please?
-- 
MJR/slef (sponsor of git)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364550: adept: crash on startup

2006-04-24 Thread Jiri Palecek
Package: adept
Version: 1.88.4
Severity: serious
Justification: Renders package unusable

Hello,

every time I start adept, at crashes immediately before displaying
any GUI. I tried it with/without root and everything was the same.

The backtrace is attached.

Regards
   Jiri Palecek


-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-2) (ignored: LC_ALL set to cs_CZ)

Versions of packages adept depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.43.3   Advanced front-end for dpkg
ii  debtags   1.5.2+b2   Enables support for package tags
ii  kdelibs4c2a   4:3.5.2-2  core libraries for all KDE applica
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded runtime v
ii  libstdc++64.1.0-1The GNU Standard C++ Library v3
ii  libtdb1   1.0.6-13   Trivial Database - shared library
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages adept recommends:
pn  libqt-perlnone (no description available)

-- no debconf information

___
SMS schreiben mit WEB.DE FreeMail - einfach, schnell und
kostenguenstig. Jetzt gleich testen! http://f.web.de/?mc=021192



adept.crash
Description: Binary data


Bug#345729: Fixed in modular?

2006-04-24 Thread Michel Dänzer
On Mon, 2006-04-24 at 09:39 +0200, Nils wrote:
 
 [Is there any problem to update to xserver-xorg-video-ati 6.6.0, which is 
 stil 
 released and seems to be more bug free.]

It requires xserver 1.1. The CVS ati-1-0-branch has most of the fixes
and could be packaged for xserver 1.0 though.


-- 
Earthling Michel Dänzer  | Debian (powerpc), X and DRI developer
Libre software enthusiast|   http://svcs.affero.net/rm.php?r=daenzer



Bug#364069: liferea-mozilla: please don't depend on the whole mozilla-suite, if possible

2006-04-24 Thread Lars Lindner
On 4/24/06, David Moreno Garza [EMAIL PROTECTED] wrote:
 Lars Lindner wrote:
  I already tried compiling against the Debian xulrunner packages. I
  could not even get a simple test application to display simple HTML.
  With Liferea I just get crashes.
 
  Also the xulrunner homepage explains that the gtkmozembed part of
  xulrunner is not finished yet.

 Lars,

 Is there any real interest from you to eventually drop Mozilla and
 switch to xul? Just asking since I'm a bit curious about it.

Yes, I definitively want to, but currently it just does not work. I'll
try again in the future but currently the gtkmozembed in libxul seems
unusable. Even my 50 lines test app does not work.

So this bug will fixed, but in a distant future...

Lars



Bug#364551: packagesearch: crash when updating tags database

2006-04-24 Thread Jiri Palecek
Package: packagesearch
Version: 2.0.6
Severity: normal

Hello,

when I run tags database update from the menu, packageseach
crashes after the debtags' terminal window disappears. I'm using
only file:///usr/share/debtags... tags dataabse, and no real update
is actually performed. The backtrace is attached.

Regards
Jiri Palecek

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-2) (ignored: LC_ALL set to cs_CZ)

Versions of packages packagesearch depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.43.3   Advanced front-end for dpkg
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libqt4-core   4.1.1-1+b1 Qt 4 core non-GUI functionality ru
ii  libqt4-gui4.1.1-1+b1 Qt 4 core GUI functionality runtim
ii  libqt4-qt3support 4.1.1-1+b1 Qt 3 compatibility library for Qt 
ii  libstdc++64.1.0-1The GNU Standard C++ Library v3
ii  libtdb1   1.0.6-13   Trivial Database - shared library
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages packagesearch recommends:
pn  apt-file  none (no description available)
ii  deborphan 1.7.18 Find orphaned libraries
ii  debtags   1.5.2+b2   Enables support for package tags
ii  xterm 210-2  X terminal emulator

-- no debconf information

___
SMS schreiben mit WEB.DE FreeMail - einfach, schnell und
kostenguenstig. Jetzt gleich testen! http://f.web.de/?mc=021192



packagesearch.crash
Description: Binary data


Bug#350407: lessdisks-terminal: modifies /etc/kernel-img.conf in postinst

2006-04-24 Thread Jonas Smedegaard
On Sun, 23 Apr 2006 11:44:59 +0100 Stephen Gran wrote:

 This is the section that is relevant:

[snip text already summarized in the quote of me further below]

 Note that it talks about configuration files, not just dpkg conffiles.

Yes. I am well aware of that.


 Your package directly modifies another package's configuration file,
 instead of using an interface to do so.

Please clarify: Which _single_ package do you believe to own those
configuration files in question?


  Policy 10.7.4 also mandates shared configuration files to be owned
  by only one package. But it is not clear to me which single package
  that should be (that I should then file bugs against about an
  interface for messing with its configuration files). The packages
  sysvinit and a bunch of kernel packages seem to be kandidates, but
  looking at their packaging scripts they too seem to treat the
  configuration files as alien.
 
 Probably bugs against kernel-package (for kernel-img.conf) for an
 interface script is sufficient to get this part of the bug closed.

kernel-package does not own /etc/kernel-img.conf, I believe. It only
provides an interface for other packages (like linux-2.6) to adopt to
mess with the (non-owned, it seems) file.

Being (small) part of the kernel team I suspect solving this is
difficult: The only sane approach I can see is to have a separate
kernel-install-helper own the file and provide an interface for both
kernel packages and various kernel helper tools - including not only
ramdisk generators but also like here more general bootup environment
helpers.

The wiki page http://wiki.debian.org/FlexibleKernelHandling is a
proposal for this. Manoj, maintainer of kernel-package, haas shown
interest in the approach, and (if I understand correctly) welcomes
concrete implementations of such kernel-install-helper (which I have
failed to provide so far myself: help is much appreciated).


 I am not sure how to handle the inittab stuff, as IIRC there are
 several initscripts implementations floating around out there (but
 maybe only sysvinit handles inittab?)  I just don't know the answer.

Same here: It does not seem from the packaging scripts of sysvinit that
that package considers itself owner of that file: It does not treat it
as a conffile, only installs it if not there already, and does not
remove it on purge (which may never be tested in reality, since the
package is essential).


I don't mean to say that there's no bug, but that I believe the bug is
a different one: Noone claims ownership of those configuration files,
so it is uncertain what package to either bug about an interface or to
conflict against. If you agree with my viewpoint, we should probably
rename this bugreport and clone it to other packages involved.

Also, it seems to me that policy could use a clarification of how to
indicate ownership...


 - Jonas

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

 - Enden er n_r: http://www.shibumi.org/eoti.htm


pgpGhzpXV5ZNT.pgp
Description: PGP signature


Bug#353134: libtest-simple-perl supersedes libtest-builder-tester-perl

2006-04-24 Thread Marc 'HE' Brockschmidt
Jay Bonci [EMAIL PROTECTED] writes:
 Hey there, I'm aiming to close out all my RC bugs this weekend.  If I
 don't hit them up by Monday, please feel free to RC them

I did NMUs for libtest-warn-perl and libtest-class-perl and will
reassign this bug to ftp.debian.org in a few days to get
libtest-builder-tester-perl removed from unstable.

Marc
-- 
BOFH #407:
Route flapping at the NAP.


pgpACP8DbdG4h.pgp
Description: PGP signature


Bug#358745: NMU patch

2006-04-24 Thread Marc 'HE' Brockschmidt
Heya,

Here's the patch I used for the libtest-class-perl NMU.

Marc
-- 
Fachbegriffe der Informatik - Einfach erklärt
148: Flame
   Flames sind der dumpfe Knall, wenn die Schädeldecke auf die
   Mauer aufschlägt. (Frank Hufschmied)

diff -Nwru libtest-class-perl-0.11/debian/changelog libtest-class-perl-0.11-1.1/debian/changelog
--- libtest-class-perl-0.11/debian/changelog	2006-04-24 10:05:56.0 +0200
+++ libtest-class-perl-0.11-1.1/debian/changelog	2006-04-24 10:16:03.0 +0200
@@ -1,3 +1,16 @@
+libtest-class-perl (0.11-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix testsuite issues happening with newer versions of Test::More. Thanks
+to Martin Ferrari [EMAIL PROTECTED] for the patch. (Closes:
+#358745).
+  * debian/control:
+ + Replace dependency on libtest-builder-tester-perl, as that module
+   is now provided by libtest-simple-perl.
+ + move debhelper/dpatch to B-Depends. (Shuts up lintian)
+
+ -- Marc 'HE' Brockschmidt [EMAIL PROTECTED]  Mon, 24 Apr 2006 10:08:11 +0200
+
 libtest-class-perl (0.11-1) unstable; urgency=low
 
   * New upstream release
diff -Nwru libtest-class-perl-0.11/debian/control libtest-class-perl-0.11-1.1/debian/control
--- libtest-class-perl-0.11/debian/control	2006-04-24 10:05:56.0 +0200
+++ libtest-class-perl-0.11-1.1/debian/control	2006-04-24 10:16:24.0 +0200
@@ -2,12 +2,13 @@
 Section: perl
 Priority: optional
 Maintainer: Jay Bonci [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper ( 4.0), perl (= 5.6.0-16), libtest-builder-tester-perl, libtest-differences-perl, libtest-exception-perl, libio-string-perl, libmodule-build-perl, libdevel-symdump-perl
+Build-Depends: debhelper ( 4.0), dpatch
+Build-Depends-Indep: perl (= 5.6.0-16), libtest-simple-perl, libtest-differences-perl, libtest-exception-perl, libio-string-perl, libmodule-build-perl, libdevel-symdump-perl
 Standards-Version: 3.6.2.1
 
 Package: libtest-class-perl
 Architecture: all
-Depends: ${perl:Depends}, libtest-builder-tester-perl, libtest-differences-perl, libtest-exception-perl, libio-string-perl, libdevel-symdump-perl
+Depends: ${perl:Depends}, libtest-simple-perl, libtest-differences-perl, libtest-exception-perl, libio-string-perl, libdevel-symdump-perl
 Suggests: libdate-ical-perl
 Description: easily create perl test classes in an xUnit style
  Test::Class from CPAN provides a simple way of creating classes 
diff -Nwru libtest-class-perl-0.11/debian/patches/00list libtest-class-perl-0.11-1.1/debian/patches/00list
--- libtest-class-perl-0.11/debian/patches/00list	1970-01-01 01:00:00.0 +0100
+++ libtest-class-perl-0.11-1.1/debian/patches/00list	2006-04-24 10:08:04.0 +0200
@@ -0,0 +1 @@
+testcases_hardcoding
diff -Nwru libtest-class-perl-0.11/debian/patches/testcases_hardcoding.dpatch libtest-class-perl-0.11-1.1/debian/patches/testcases_hardcoding.dpatch
--- libtest-class-perl-0.11/debian/patches/testcases_hardcoding.dpatch	1970-01-01 01:00:00.0 +0100
+++ libtest-class-perl-0.11-1.1/debian/patches/testcases_hardcoding.dpatch	2006-04-24 10:08:04.0 +0200
@@ -0,0 +1,128 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## testcases_hardcoding.patch.dpatch by Martin Ferrari [EMAIL PROTECTED]
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Fix for the two testcases which failed because of a hardcoded 
+## DP: stdout/stderr checking
+
[EMAIL PROTECTED]@
+diff -Naur libtest-class-perl-0.11/t/die_before_plan.t libtest-class-perl-0.11-new/t/die_before_plan.t
+--- libtest-class-perl-0.11/t/die_before_plan.t	2005-02-19 16:32:33.0 -0300
 libtest-class-perl-0.11-new/t/die_before_plan.t	2006-04-16 05:13:58.474443044 -0300
+@@ -3,10 +3,7 @@
+ use strict;
+ use warnings;
+ use Test;
+-use Fcntl;
+-use IO::File;
+-use Test::Builder;
+-use POSIX qw(_exit);
++use Test::Builder::Tester tests = 1;
+ 
+ package Object::Test;
+ use base 'Test::Class';
+@@ -23,29 +20,11 @@
+ 
+ package main;
+ 
+-my $io = IO::File-new_tmpfile or die couldn't create tmp file ($!)\n;
+-my $Test = Test::Builder-new;
+-$Test-output($io);
+-$Test-failure_output($io);
+-$ENV{TEST_VERBOSE}=0;
+-$ENV{HARNESS_ACTIVE}=0;
+-Object::Test-runtests;
+-
+-plan tests = 4;
+-
+-seek $io, SEEK_SET, 0;
+-my $SEP = $^O eq MSWin32 ? '\\' : '/';
+-while (my $actual = $io) {
+-	chomp($actual);
+-	my $expected=DATA; chomp($expected);
+-	$expected =~ s!/!$SEP!gs;
+-	ok($actual, $expected);
+-};
+-
+-_exit(0);
++#$ENV{TEST_VERBOSE}=0;
++#$ENV{HARNESS_ACTIVE}=0;
+ 
+-__DATA__
+-1..1
+-not ok 1 - setup (for test method 'test') died (died before plan set)
+-# Failed test (t/die_before_plan.t at line 32)
+-ok 2 - test just here to get setup method run
++test_out(not ok 1 - setup (for test method 'test') died (died before plan set));
++test_fail(+2);
++test_out(ok 2 - test just here to get setup method run);
++Object::Test-runtests;
++test_test(die before plan);
+diff -Naur libtest-class-perl-0.11/t/fail2.t 

Bug#326398: State of this ITP

2006-04-24 Thread David Moreno Garza
Mario Iseli wrote:
 Hello David,
 
 what's the state of this ITP? Are you maybe interested in someone
 helping you to maintain this package?

Please feel free to take the ITP on your own. Not too much time from my
part nowadays.

Thanks for caring,

-- 
David Moreno Garza [EMAIL PROTECTED]   |  http://www.damog.net/
   [EMAIL PROTECTED]  |  GPG: C671257D
 Va amazando a sus cuates con un fierro.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#356829: NMU patch

2006-04-24 Thread Marc 'HE' Brockschmidt
Heya,

Here's the patch I used for the libtest-warn-perl NMU.

Marc
-- 
BOFH #216:
What office are you in? Oh, that one.  Did you know that your
building was built over the universities first nuclear research site? And wow,
are'nt you the lucky one, your office is right over where the core is buried!

diff -Nwru libtest-warn-perl-0.08/debian/changelog libtest-warn-perl-0.08-2.1/debian/changelog
--- libtest-warn-perl-0.08/debian/changelog	2006-04-23 16:21:23.0 +0200
+++ libtest-warn-perl-0.08-2.1/debian/changelog	2006-04-24 10:00:36.0 +0200
@@ -1,3 +1,11 @@
+libtest-warn-perl (0.08-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: Test::Builder::Tester is now in libtest-simple-perl.
+  * Using the newer module fixes the FTBFS. (Closes: #356829)
+
+ -- Marc 'HE' Brockschmidt [EMAIL PROTECTED]  Sun, 23 Apr 2006 16:17:44 +0200
+
 libtest-warn-perl (0.08-2) unstable; urgency=low
 
   * Adds debian/watch so uscan will actually work
diff -Nwru libtest-warn-perl-0.08/debian/control libtest-warn-perl-0.08-2.1/debian/control
--- libtest-warn-perl-0.08/debian/control	2006-04-23 16:21:23.0 +0200
+++ libtest-warn-perl-0.08-2.1/debian/control	2006-04-23 16:16:48.0 +0200
@@ -2,12 +2,12 @@
 Section: perl
 Priority: optional
 Maintainer: Jay Bonci [EMAIL PROTECTED]
-Build-Depends-Indep: debhelper (= 4.1), perl (= 5.6.0-16), libsub-uplevel-perl, libtest-exception-perl, libarray-compare-perl, libtest-builder-tester-perl, libtree-dagnode-perl
+Build-Depends-Indep: debhelper (= 4.1), perl (= 5.6.0-16), libsub-uplevel-perl, libtest-exception-perl, libarray-compare-perl, libtest-simple-perl, libtree-dagnode-perl
 Standards-Version: 3.6.1.0
 
 Package: libtest-warn-perl
 Architecture: all
-Depends: ${perl:Depends}, libsub-uplevel-perl, libtest-exception-perl, libarray-compare-perl, libtest-builder-tester-perl, libtree-dagnode-perl
+Depends: ${perl:Depends}, libsub-uplevel-perl, libtest-exception-perl, libarray-compare-perl, libtest-simple-perl, libtree-dagnode-perl
 Description: Test for warning-based code in perl
  Test::Warn provides an easy way to test for code throwing warnings in perl.
  It's similar in style to the Test::More family of utilities. 


Bug#102006: Want to get laid tonight?

2006-04-24 Thread Deandre Jorgensen
Do you want to get laid with people who live just minutes from you?
Meet guys and girls who just want to get laid?

Well, we have a system that can make this happen
75% of our members got laid using our system

The best part, it doesn't even cost anything

http://www.get--hooked--up.us


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364553: konwert: README.Debian is wrong

2006-04-24 Thread Ilya Martynov
Package: konwert
Version: 1.8-11
Severity: minor


/usr/share/doc/konwert/README.Debian says that there are no shipped
manpages in this version what is actually is not true. I guess
README.Debian is outdated and can be safely removed.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages konwert depends on:
ii  konwert-filters 1.8-11   Filters used by konwert for charse
ii  libc6   2.3.6-7  GNU C Library: Shared libraries
ii  libgcc1 1:4.1.0-1+b1 GCC support library
ii  libstdc++6  4.1.0-1+b1   The GNU Standard C++ Library v3
ii  perl5.8.8-4  Larry Wall's Practical Extraction 

konwert recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#359955: ITP: gaim-libnotify -- display notification bubbles in gaim

2006-04-24 Thread Adriaan Peeters
On Wed, Mar 29, 2006 at 09:19:39PM +0200, Marco Cabizza [EMAIL PROTECTED] 
wrote:

 * Package name: gaim-libnotify

How is work going on packaging gaim-libnotify? Can we find the
preliminary packages somewhere?

Thanks,
Adriaan



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#363598: udev should conflict with ifrename

2006-04-24 Thread Florian Weimer
* Marco d'Itri:

 On Apr 21, Florian Weimer [EMAIL PROTECTED] wrote:

  KERNEL==*.*, GOTO=persistent_net_generator_end
 
 No visible change.
 
 There's an error message in the syslog:
 
 Apr 21 10:05:30 l udevd-event[6705]: rename_net_if: error changing net 
 interface name eth0.1_ifrename to eth0: timeout

 I think that something is wrong here, because it should not even try
 renaming eth0.1.

It seems as if I've copied the line correctly, and I've also rebooted
the machine.  I don't know why udev still wants to touch the
interface.

 Sometimes, the error message is Device or resource busy.
 
 By the way, are there any other names managed by udev where the name
 cannot be changed while the object is in use?  Maybe this is part of
 the problem here.  It's impossible to rename a network interface while
 it is being used.

 No, only network interfaces are special.

I think this needs to be fixed, otherwie the udev will never work well
for them due to its asynchronous nature.

 Actually, at that time VLANs have not been created yet. OTOH I can see
 that if they were created and the subinterfaces raised asyncronously in
 a boot script then there would be a race with udev. (Not that it really
 matters since they are not supposed to be renamed anyway.)

Why do you think they are not supposed to be renamed?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364062: build with xulrunner, please

2006-04-24 Thread Philipp Sadleder
* Rene Engelhard [EMAIL PROTECTED] [2006-04-21 14:27]:

 Shouldn't we then also build aginst libnss3-dev (which is the nss from
 XulRunner. Will that work also for accessing mozilla/firefox)?

I really don't know about why OOo is depending on mozilla libraries, i'd
just like to remove the dependency.

 If I need to build-depend on libnss3-dev also I need to build-depend on
 packages (libxmlsec) which want libnss-dev which libnss3-dev of course
 conflicts upon...

Since yesterday, there is a whishlist bug on libxmlsec1 [1] titled 
Build-Dep on mozilla (library), please transition to xulrunner. By
that, it should be easy to track progress.

Best regards,

   Philipp

[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=364382
-- 
Philipp Sadleder
http://sadleder.de


signature.asc
Description: Digital signature


Bug#364552: ifplugd ignores hwaddress from /etc/network/interfaces

2006-04-24 Thread Bas Wijnen
Package: ifplugd
Version: 0.28-2
Severity: normal

On my laptop, I use ifplugd for the built-in ethernet adapter.  This works
very well on my home intranet, where I have no special requirements.  However,
on the university only registered computers are allowed to do dhcp.  The
sysadmins deregister a computer if it hasn't been connected for a few months
though, and I don't feel like calling them again and again to reregister the
laptop.  So I use a hwaddress directive in /etc/network/interfaces to
impersonate an other computer (which I make sure is switched off).  However,
this doesn't work with ifplugd.

As a workaround, I do:
# /etc/init.d/ifplugd stop
# ifconfig eth0 down
# ifup eth0
which works fine.  However, with ifplugd the interface is assigned its real
hardware address, so it gets refused by the university server.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages ifplugd depends on:
ii  debconf [debconf-2.0] 1.4.72 Debian configuration management sy
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libdaemon00.10-1 lightweight C library for daemons

Versions of packages ifplugd recommends:
ii  ifupdown  0.6.7  high level tools to configure netw

-- debconf information:
* ifplugd/interfaces: eth0
* ifplugd/hotplug_interfaces: usb0
* ifplugd/args: -q -f -u0 -d10 -w -I -b
* ifplugd/suspend_action: stop


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#293701: acknowledged by developer (closing)

2006-04-24 Thread Roger Leigh
[EMAIL PROTECTED] (Debian Bug Tracking System) writes:

 From: Bart Martens [EMAIL PROTECTED]
 Subject: closing
 To: [EMAIL PROTECTED]
 Date: Sun, 23 Apr 2006 15:43:20 +0200

 I did not hear back from my question for more info since 23 february, so
 I guess that it is OK to close this bug without further action.  Feel
 free to reopen and explain why.  Thanks.

I'm afraid I no longer have means of testing DOSEMU, since I moved to
using the powerpc architecture exclusively.

#293701 does give some guidelines for reproducing the problem if you
want to test it for yourself.


Regards,
Roger

-- 
Roger Leigh
Printing on GNU/Linux?  http://gutenprint.sourceforge.net/
Debian GNU/Linuxhttp://www.debian.org/
GPG Public Key: 0x25BFB848.  Please sign and encrypt your mail.


pgpXi7qftXxAl.pgp
Description: PGP signature


Bug#364555: 'man voodoo' typo: nowdays

2006-04-24 Thread A Costa
Package: xserver-xorg-video-voodoo
Version: 1:1.0.0.5-2
Severity: minor
Tags: patch


Found a typo in '/usr/share/man/man4/voodoo.4.gz', see attached '.diff'.

Hope this helps...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages xserver-xorg-video-voodoo depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries

xserver-xorg-video-voodoo recommends no packages.

-- no debconf information
--- voodoo.42006-03-27 02:13:46.0 -0500
+++ /tmp/voodoo.4   2006-04-24 03:31:17.0 -0400
@@ -19,7 +19,7 @@
 the video adapter has only 3D acceleration. Selected portions of the shadow 
 framebuffer are copied out to the Voodoo board at the right time. Because 
 of this, the speed of the driver is very dependent on the CPU. Processors 
-nowdays are actually rather fast at moving data so we get very good speed 
+nowadays are actually rather fast at moving data so we get very good speed 
 anyway as the shadow framebuffer is in cached RAM.
 .PP
 The Voodoo2 has 16bpp acceleration and the driver provides accelerated


Bug#364544: dia: implicit pointer conversion

2006-04-24 Thread Roland Stigge
Hi,

thanks for the report and the patch.

Would you please give a short explanation why this fixes the problem?
You didn't change the code itself. Or do you just want to suppress the
warnings?

Thanks,

bye,
  Roland


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364554: mgapdesk: FTBFS: xf86Parser.h: No such file or directory

2006-04-24 Thread Matej Vela
Package: mgapdesk
Version: 1.00.7beta-6
Severity: serious

mgapdesk fails to build because it can't find xf86Parser.h.  It used to
be in xlibs-static-dev, but doesn't seem to be in any of the Xorg 7.0
packages.

[...]
 make[3]: Entering directory `/home/mvela/deb/mgapdesk/mgapdesk-1.00.7beta/src'
 gcc -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/gtk-1.2 
 -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include-g 
 -O2 -Wall -c callbacks.c
 callbacks.c:31:24: error: xf86Parser.h: No such file or directory
[...]

Thanks,

Matej


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#361562: tetex-extra: package includes ill-formed .bib file

2006-04-24 Thread Frank Küster
Ralf Stubner [EMAIL PROTECTED] wrote:

 Actually I think the amsrefs package in teTeX 3.0 is up to date:
[...]
 However, in addition, there seem to be some older files in teTeX, too.
 Maybe we should delete them from the debian package.

Some?  Have you compared filelists?

Regards, Frank
-- 
Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX)




Bug#364561: pbuilder: please print modification timestamp of base.tgz on startup

2006-04-24 Thread Christoph Berg
Package: pbuilder
Version: 0.151
Severity: wishlist

Hi,

it would be nice if pbuilder printed the modification timestamp of the
tgz used so I could see when I last updated it.

Current time: Mon Apr 24 08:55:45 UTC 2006
pbuilder-time-stamp: 1145868945
Building the build Environment
 - extracting base tarball [/srv/pbuilder/sid-i386.tgz]
  - last updated: [.]  -- here
 - creating local configuration

Thanks,

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages pbuilder depends on:
ii  cdebootstrap  0.3.11 Bootstrap a Debian system
ii  coreutils 5.94-1 The GNU core utilities
ii  debianutils   2.15.6 Miscellaneous utilities specific t
ii  gcc   4:4.0.3-3  The GNU C compiler
ii  wget  1.10.2-1   retrieves files from the web

Versions of packages pbuilder recommends:
ii  devscripts2.9.18 Scripts to make the life of a Debi
ii  fakeroot  1.5.8  Gives a fake root environment
ii  sudo  1.6.8p12-4 Provide limited super user privile

-- no debconf information

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/cs/
Universität des Saarlandes, Compiler Design Lab


signature.asc
Description: Digital signature


Bug#364509: bash: mplayer completion. Add flv|FLV files completion. (forwarded from Raúl Sánchez Siles)

2006-04-24 Thread Ian Macdonald
On Mon 24 Apr 2006 at 00:29:30 +0200, you wrote:

 X-Loop: [EMAIL PROTECTED]
 Reply-To: Raúl Sánchez Siles [EMAIL PROTECTED], [EMAIL PROTECTED]
 X-Debian-PR-Message: report 364509
 X-Debian-PR-Package: bash
 X-Debian-PR-Keywords: patch
 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
 s=beta; d=gmail.com;
 
 h=received:resent-from:resent-to:resent-date:resent-message-id:content-type:mime-version:from:to:subject:message-id:x-mailer:date;
 
 b=rDzCu4vSjp6fvTYJTJZsSLGR3tDmX5nDLcDnYeviEXliiTdUgWAmcyW1UzSCY11Ind9d0B0Y1oc7hgH4tpxAZy3692zB55L3CgspXgO7YIUoV0MBPr1Y5Lc3AA31Y8XaNtu+Mg2bNdQYseD809QjBEZRLGNocVsOATCKkRfIZxA=
 X-Mailer: reportbug 3.20
 Delivered-To: [EMAIL PROTECTED]
 X-Virus-Scanned: by amavisd-new at cs.tu-berlin.de (including spamassassin)
 Resent-From: Raúl Sánchez Siles [EMAIL PROTECTED]
 Resent-To: debian-bugs-dist@lists.debian.org
 Resent-CC: Matthias Klose [EMAIL PROTECTED]
 Resent-Date: Sun, 23 Apr 2006 22:18:02 UTC
 Resent-Message-ID: [EMAIL PROTECTED]
 Resent-From: Raúl Sánchez Siles [EMAIL PROTECTED]
 Resent-To: Debian Bug Tracking System [EMAIL PROTECTED]
 Resent-Date: Sun, 23 Apr 2006 23:35:13 +0200
 Resent-Message-ID: [EMAIL PROTECTED]
 Resent-Sender: Debian BTS [EMAIL PROTECTED]
 Resent-Date: Sun, 23 Apr 2006 15:18:06 -0700
 From: Raúl Sánchez Siles [EMAIL PROTECTED]
 To: Debian Bug Tracking System [EMAIL PROTECTED]
 Subject: Bug#364509: bash: mplayer completion. Add flv|FLV files completion.
 Date: Sun, 23 Apr 2006 23:34:29 +0200
 
 Package: bash
 Version: 3.1-4
 Severity: minor
 Tags: patch
 
 Bash is unable to do the completion for flash video files (flv). I
 attach a patch (diff -ruNp) to modify /etc/bash_profile in order to add
 this feature.

Fixed for next release.

Ian
-- 
Ian Macdonald   | When this load is DONE I think I'll wash it
[EMAIL PROTECTED] | AGAIN ... 
http://www.caliban.org/ | 
| 
| 



Bug#364560: 'man speaker-test' typos: inifintely and orresponds

2006-04-24 Thread A Costa
Package: alsa-utils
Version: 1.0.11-1
Severity: minor
Tags: patch


Found a few typos in '/usr/share/man/man1/speaker-test.1.gz', see attached 
'.diff'.

Note: It's unclear whether 'infinitely' was meant to be 'indefinitely'.

Hope this helps...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages alsa-utils depends on:
ii  dialog1.0-20060221-1 Displays user-friendly dialog boxe
ii  libasound21.0.11-2   ALSA library
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libncurses5   5.5-1.1Shared libraries for terminal hand
ii  linux-sound-base  1.0.11-1   base package for ALSA and OSS soun
ii  lsb-base  3.1-4  Linux Standard Base 3.1 init scrip
ii  module-init-tools 3.2.2-2tools for managing Linux kernel mo
ii  modutils  2.4.27.0-5 Linux module utilities
ii  pciutils  1:2.1.11-16Linux PCI Utilities
ii  python-minimal2.3.5-5A minimal subset of the Python lan
ii  whiptail  0.52.2-4   Displays user-friendly dialog boxe

Versions of packages alsa-utils recommends:
ii  alsa-base 1.0.11-1   ALSA driver configuration files

-- no debconf information
--- speaker-test.1  2006-04-23 11:17:39.0 -0400
+++ /tmp/speaker-test.1 2006-04-24 05:00:50.0 -0400
@@ -73,7 +73,7 @@
 .TP
 \fB\-l\fP | \fB\-\-nloops\fP \fBCOUNT\fP
 
-Specifies the number of loops.  Zero means to run inifintely.
+Specifies the number of loops.  Zero means to run infinitely.
 
 When \fB\-s\fP option below with a valid channel is given, \fBspeaker\-test\fP 
will perform
 always a single-shot without looping.
@@ -81,7 +81,7 @@
 .TP
 \fB\-s\fP | \fB\-\-speaker\fP \fBCHANNEL\fP
 Do a single-shot speaker test for the given channel.  The channel number 
starts from 1.
-The channel number orresponds to left, right, rear-left, rear-right, center, 
LFE,
+The channel number corresponds to left, right, rear-left, rear-right, center, 
LFE,
 side-left, side-right, and so on.
 
 For example, when 1 is passed, it tests the left channel only once rather than 
both channels


Bug#364564: udev: No X possible after upgrade

2006-04-24 Thread Michael Meskes
Package: udev
Version: 0.090-3
Severity: grave
Justification: renders package unusable

I just updated my sid system. This update include the latest udev
(0.090-4) and the latest linux-image. After a reboot I couldn't get into
X anymore. It was possible to start kdm, thus the X server starts
correctly as root, but no login was possible and no error message
whatsoever was given. Also I got some strange error message about
keyboard tables after login on the console. Fortunately though
this login was possible. 

After downgrading udev this works again. However, during udev start I
got some error messages as well, so this might very well be a kernel bug
instead of a udev one.

Michael

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
insgesamt 8
lrwxrwxrwx 1 root root  20 2005-04-11 08:58 020_permissions.rules - 
../permissions.rules
lrwxrwxrwx 1 root root  19 2005-10-17 21:28 025_libgphoto2.rules - 
../libgphoto2.rules
lrwxrwxrwx 1 root root  16 2006-04-24 09:43 025_libsane.rules - 
../libsane.rules
lrwxrwxrwx 1 root root  22 2005-11-25 09:53 025_logitechmouse.rules - 
../logitechmouse.rules
lrwxrwxrwx 1 root root  13 2005-12-14 09:04 035_kino.rules - ../kino.rules
lrwxrwxrwx 1 root root  12 2006-03-07 08:45 050_hal-plugdev.rules - 
../hal.rules
lrwxrwxrwx 1 root root  15 2006-01-26 07:24 85-pcmcia.rules - ../pcmcia.rules
-rw-r--r-- 1 root root  82 2006-03-05 23:14 90-hal.rules
lrwxrwxrwx 1 root root  19 2005-04-06 09:22 cd-aliases.rules - 
../cd-aliases.rules
lrwxrwxrwx 1 root root  13 2005-04-06 09:22 udev.rules - ../udev.rules
lrwxrwxrwx 1 root root  25 2006-03-28 10:09 z20_persistent-input.rules - 
../persistent-input.rules
lrwxrwxrwx 1 root root  19 2005-08-17 11:10 z20_persistent.rules - 
../persistent.rules
-rw-r--r-- 1 root root 544 2006-04-23 10:07 z25_persistent-net.rules
lrwxrwxrwx 1 root root  33 2006-04-21 10:55 z45_persistent-net-generator.rules 
- ../persistent-net-generator.rules
lrwxrwxrwx 1 root root  12 2005-07-04 08:27 z50_run.rules - ../run.rules
lrwxrwxrwx 1 root root  16 2005-10-10 10:44 z55_hotplug.rules - 
../hotplug.rules
lrwxrwxrwx 1 root root  15 2005-09-20 09:01 z60_hdparm.rules - ../hdparm.rules
lrwxrwxrwx 1 root root  17 2005-07-11 12:29 z60_usbmount.rules - 
../usbmount.rules
lrwxrwxrwx 1 root root  17 2005-07-04 08:27 z70_hotplugd.rules - 
../hotplugd.rules

-- /sys/:
/sys/block/dm-0/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda3/dev
/sys/block/hda/hda4/dev
/sys/block/hda/hda5/dev
/sys/block/hda/hda6/dev
/sys/block/hda/hda7/dev
/sys/block/hda/hda8/dev
/sys/block/hda/hda9/dev
/sys/block/hdc/dev
/sys/block/loop0/dev
/sys/block/loop1/dev
/sys/block/loop2/dev
/sys/block/loop3/dev
/sys/block/loop4/dev
/sys/block/loop5/dev
/sys/block/loop6/dev
/sys/block/loop7/dev
/sys/block/ram0/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram1/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input1/event1/dev
/sys/class/input/input2/event2/dev
/sys/class/input/input2/mouse0/dev
/sys/class/input/input2/ts0/dev
/sys/class/input/input3/event3/dev
/sys/class/input/input3/mouse1/dev
/sys/class/input/input3/ts1/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/device-mapper/dev
/sys/class/misc/hpet/dev
/sys/class/misc/psaux/dev
/sys/class/misc/rtc/dev
/sys/class/misc/vmmon/dev
/sys/class/printer/lp0/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dsp/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1c/dev
/sys/class/sound/pcmC0D2c/dev
/sys/class/sound/pcmC0D3c/dev
/sys/class/sound/pcmC0D4p/dev
/sys/class/sound/seq/dev
/sys/class/sound/sequencer2/dev
/sys/class/sound/sequencer/dev
/sys/class/sound/timer/dev
/sys/class/usb_device/usbdev1.1/dev
/sys/class/usb_device/usbdev2.1/dev
/sys/class/usb_device/usbdev2.2/dev
/sys/class/usb_device/usbdev3.1/dev

-- Kernel configuration:


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (100, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages udev depends on:
ii  initscripts  2.86.ds1-14 Scripts for initializing and shutt
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libselinux1  1.30-1  SELinux shared libraries
ii  libvolume-id00.090-4 libvolume_id shared library
ii  lsb-base 3.1-4   Linux Standard Base 3.1 init scrip
ii  makedev  2.3.1-81creates device files in /dev

Bug#363638: error in changelog prevented this bug from being closed

2006-04-24 Thread Luis Matos

the changelog of liferea states:

* New upstream release (Closes: ##363638).

where it should be

* New upstream release (Closes: #363638).

best regards 




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364562: linux32 doesn't work on hppa64 kernels

2006-04-24 Thread Matthias Klose
Package: linux32
Version: 1-3

$ uname -m
parisc64

$ linux32 uname -m
parisc64


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364556: 'man Xserver' typos: maxmium and unqouted

2006-04-24 Thread A Costa
Package: xserver-xorg-core
Version: 1:1.0.2-6
Severity: minor
Tags: patch


Found a few typos in '/usr/share/man/man1/Xserver.1x.gz', see attached '.diff'.

Hope this helps...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages xserver-xorg-core depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libfontenc1   1:1.0.1-3  X11 font encoding library
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libxau6   1:1.0.0-3  X11 authorisation library
ii  libxdmcp6 1:1.0.0-3  X11 Display Manager Control Protoc
ii  libxfont1 1:1.0.0-3  X11 font rasterisation library
ii  x11-common1:7.0.10   X Window System (X.Org) infrastruc
ii  xserver-xorg-input-al 1:7.0.14   the X.Org X server -- input driver
ii  xserver-xorg-input-ev 1:1.0.0.5-2X.Org X server -- evdev input driv
ii  xserver-xorg-input-kb 1:1.0.1.3-2X.Org X server -- keyboard input d
ii  xserver-xorg-input-mo 1:1.0.4-2  X.Org X server -- mouse input driv
ii  xserver-xorg-video-al 1:7.0.14   the X.Org X server -- output drive
ii  xserver-xorg-video-ap 1:1.0.1.5-2X.Org X server -- APM display driv
ii  xserver-xorg-video-ar 1:0.5.0.5-2X.Org X server -- ark display driv
ii  xserver-xorg-video-at 1:6.5.7.3-3X.Org X server -- ATI display driv
ii  xserver-xorg-video-ch 1:1.0.1.3-3X.Org X server -- Chips display dr
ii  xserver-xorg-video-ci 1:1.0.0.5-2X.Org X server -- Cirrus display d
ii  xserver-xorg-video-cy 1:1.0.0.5-2X.Org X server -- Cyrix display dr
ii  xserver-xorg-video-du 1:0.1.0.5-2X.Org X server -- dummy display dr
ii  xserver-xorg-video-fb 1:0.1.0.5-2X.Org X server -- fbdev display dr
ii  xserver-xorg-video-gl 1:1.0.1.3-3X.Org X server -- Glint display dr
ii  xserver-xorg-video-i1 1:1.1.0.5-2X.Org X server -- i128 display dri
ii  xserver-xorg-video-i7 1:1.0.0.5-2X.Org X server -- i740 display dri
ii  xserver-xorg-video-i8 1:1.5.1.0-2X.Org X server -- Intel i8xx, i9xx
ii  xserver-xorg-video-im 1:1.0.0.5-2X.Org X server -- IMSTT display dr
ii  xserver-xorg-video-mg 1:1.2.1.3.dfsg.1-2 X.Org X server -- MGA display driv
ii  xserver-xorg-video-ne 1:1.0.0.5-2X.Org X server -- Neomagic display
ii  xserver-xorg-video-ne 1:0.1.4.1-3X.Org X server -- Newport display 
ii  xserver-xorg-video-ns 1:2.7.6.5-2X.Org X server -- NSC display driv
ii  xserver-xorg-video-nv 1:1.0.1.5-2X.Org X server -- NV display drive
ii  xserver-xorg-video-re 1:4.0.1.3.dfsg.1-2 X.Org X server -- Rendition displa
ii  xserver-xorg-video-s3 1:1.8.6.5-2X.Org X server -- S3 ViRGE display
ii  xserver-xorg-video-sa 1:2.0.2.3-4X.Org X server -- Savage display d
ii  xserver-xorg-video-si 1:1.3.1.5-3X.Org X server -- SiliconMotion di
ii  xserver-xorg-video-si 1:0.8.1.3-2X.Org X server -- SiS display driv
ii  xserver-xorg-video-si 1:0.7.1.3-2X.Org X server -- SiS USB display 
ii  xserver-xorg-video-td 1:1.1.1.3-3X.Org X server -- tdfx display dri
ii  xserver-xorg-video-tg 1:1.0.0.5-3X.Org X server -- TGA display driv
ii  xserver-xorg-video-tr 1:1.0.1.2-2X.Org X server -- Trident display 
ii  xserver-xorg-video-ts 1:1.0.0.5-2X.Org X server -- Tseng display dr
ii  xserver-xorg-video-ve 1:1.0.1.3-2X.Org X server -- VESA display dri
ii  xserver-xorg-video-vg 1:4.0.0.5-2X.Org X server -- VGA display driv
ii  xserver-xorg-video-vi 1:0.1.33.2-3   X.Org X server -- VIA display driv
ii  xserver-xorg-video-vm 1:10.11.1.3-2  X.Org X server -- VMware display d
ii  xserver-xorg-video-vo 1:1.0.0.5-2X.Org X server -- Voodoo display d
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages xserver-xorg-core recommends:
pn  xkeyboard-config  none (no description available)

-- no debconf information
--- Xserver.1x  2006-04-22 18:08:15.0 -0400
+++ /tmp/Xserver.1x 2006-04-24 03:42:14.0 -0400
@@ -180,7 +180,7 @@
 causes all remaining command line arguments to be ignored.
 .TP 8
 .B \-maxbigreqsize \fIsize\fP
-sets the maxmium big request to
+sets the maximum big request to
 .I size
 MB.
 .TP 8
@@ -448,7 +448,7 @@
 
 action ::= a | i | e
 
-string ::= dbl quoted string | single quoted string | unqouted string
+string ::= dbl quoted string | single quoted string | unquoted string
 
 dbl quoted string ::= space  not dqoute*  space
 


Bug#364558: 'man mga' typos: Millenium x 5

2006-04-24 Thread A Costa
Package: xserver-xorg-video-mga
Version: 1:1.2.1.3.dfsg.1-2
Severity: minor
Tags: patch


Found a few typos in '/usr/share/man/man4/mga.4.gz', see attached '.diff'.

Hope this helps...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages xserver-xorg-video-mga depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-6  X.Org X server -- core server

xserver-xorg-video-mga recommends no packages.

-- no debconf information
--- mga.4   2006-03-27 00:38:50.0 -0500
+++ /tmp/mga.4  2006-04-24 04:35:45.0 -0400
@@ -52,10 +52,10 @@
 Millennium G200 and Mystique G200
 .TP
 .B G400
-Millenium G400, Millenium G400 MAX, Millenium G450, and Marvel G450 eTV
+Millennium G400, Millennium G400 MAX, Millennium G450, and Marvel G450 eTV
 .TP 
 .B G550
-Millenium G550 and Millenium G550 Dual DVI
+Millennium G550 and Millennium G550 Dual DVI
 .SH CONFIGURATION DETAILS
 Please refer to xorg.conf(5x) for general configuration
 details.  This section only covers configuration details specific to this


Bug#364557: 'man cyrix' typo: horizonally

2006-04-24 Thread A Costa
Package: xserver-xorg-video-cyrix
Version: 1:1.0.0.5-2
Severity: minor
Tags: patch


Found a typo in '/usr/share/man/man4/cyrix.4.gz', see attached '.diff'.

Hope this helps...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages xserver-xorg-video-cyrix depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-6  X.Org X server -- core server

xserver-xorg-video-cyrix recommends no packages.

-- no debconf information
--- cyrix.4 2006-03-26 23:47:58.0 -0500
+++ /tmp/cyrix.42006-04-24 03:54:19.0 -0400
@@ -26,7 +26,7 @@
 .PP
 The MediaGX run length compresses its shared framebuffer, for the best
 performance on a MediaGX machine pick backgrounds that compress well
-horizonally.
+horizontally.
 .SH CONFIGURATION DETAILS
 Please refer to xorg.conf(5x) for general configuration
 details.  This section only covers configuration details specific to this


Bug#364559: 'man i810' typo: chipets

2006-04-24 Thread A Costa
Package: xserver-xorg-video-i810
Version: 1:1.5.1.0-2
Severity: minor
Tags: patch


Found a typo in '/usr/share/man/man4/i810.4.gz', see attached '.diff'.

Hope this helps...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages xserver-xorg-video-i810 depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-6  X.Org X server -- core server

xserver-xorg-video-i810 recommends no packages.

-- no debconf information
--- i810.4  2006-03-27 00:28:38.0 -0500
+++ /tmp/i810.4 2006-04-24 04:40:37.0 -0400
@@ -50,7 +50,7 @@
 entry in the config file
 .B Device
 section.  It may be set to any reasonable value up to 64MB for older
-chipsets or 128MB for newer chipets.  It is advisable to check the
+chipsets or 128MB for newer chipsets.  It is advisable to check the
 Xorg
 log file to check if any features have been disabled because of insufficient
 video memory.  In particular, DRI support or tiling mode may be disabled


Bug#364563: libclamav-dev: Typo in man page for clamav-config

2006-04-24 Thread Aleksey I Zavilohin
Package: libclamav-dev
Version: 0.88.1-1
Severity: minor


man clamav-config
...
CLAMAV-CONFIG(1)   Debian GNU/Linux   CLAMAV-CONFIG(1)



NAME
   clamav-config - script to get information about libaudiofile

SYNOPSIS
   clamav-config [--prefix[=DIR]] [--version] [--cflags] [--libs]

...

I think this must be:
...
   clamav-config - script to get information about libclamav1
...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (900, 'stable'), (500, 'testing'), (99, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages libclamav-dev depends on:
ii  libbz2-dev1.0.3-2high-quality block-sorting file co
ii  libc6-dev [libc-dev]  2.3.6-7GNU C Library: Development Librari
ii  libclamav10.88.1-1   virus scanner library
ii  libcurl3-dev  7.15.3-1   Transitional package to libcurl3-o
ii  libgmp3-dev   4.2.dfsg-1 Multiprecision arithmetic library 
ii  libidn11-dev  0.5.18-2   Development files GNU libidn, impl
ii  libssl-dev0.9.8a-8   SSL development libraries, header 
ii  zlib1g-dev1:1.2.3-11 compression library - development

libclamav-dev recommends no packages.

-- debconf-show failed


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364567: Update links to new CD images

2006-04-24 Thread Luca Monducci
Package: www.debian.org
Severity: normal


Please update link to new (r2) CD images in all w.d.o/CD pages.

Best regards,
 Luca



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#359862: lucene: FTBFS: Tries to use jikes without Build-Depends

2006-04-24 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Barry Hawkins wrote:
 Daniel wrote:
 Passing --extrapackages jikes on the pbuilder command
 line allows the package to build; but I would suggest
 that you allow ant to use its default of ecj-bootstrap
 instead of adding jikes to the Build-Depends, if possible.

  Thanks for your use of Debian and the lucene package.
 Good catch; this package should be updated to use ecj as
 its compiler anyway.

Strange, I can't reproduce the problem. Also, even if jikes is not a
dependency, it depends on kaffe which has is compiler (javac). It used
to be jikes but it's now ecj.

I'll update the svn repository to fit the 1.4.3-9 situation but I'll not
upload a new revision.

IMHO, we can close this bug. Daniel, can you try to rebuild lucene with
an up-to-date pbuilder?

Many thanks.

- --
  .''`.
 : :' :rnaud
 `. `'
   `-
Java Trap: http://www.gnu.org/philosophy/java-trap.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFETJmL4vzFZu62tMIRArBRAKCrP474SWpQ6k1/CPuRXAO5hHmnKACgoKDr
A/Z8pMIY1urivLA5+XXSaro=
=9V9u
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364476: apt-file.1.gz: list is an alias for list?

2006-04-24 Thread Sebastien J. Gross
On Mon, Apr 24, 2006 at 01:20:56AM +0800, [EMAIL PROTECTED] wrote:
 Package: apt-file
 Version: 2.0.6
 Severity: minor
 File: /usr/share/man/man1/apt-file.1.gz
 
 list is an alias for list?
 # man apt-file|grep '^ *list'
list   List the contents of a package  matching  the  pattern  pattern.
list   Alias for list.
 


Please uptade to new vesion 2.0.8

-- 
Sebastien J. Gross|   Debian GNU/Linux 
[EMAIL PROTECTED]|  http://www.debian.org
GPG: 1024g/AF0DDC9A AB35 1FFB 1268 56C0 452B  302E 2A25 8421 53BB A490


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364250: [EMAIL PROTECTED]

2006-04-24 Thread Gabriele Persia
dnsmasq package version 2.29-1 has the same error as 2.28-1:


[apt-get install dnsmasq]

Preparing to replace dnsmasq 2.27-1 (using .../dnsmasq_2.29-1_i386.deb) ...
Stopping DNS forwarder and DHCP server: dnsmasq.
Unpacking replacement dnsmasq ...
Setting up dnsmasq (2.29-1) ...
Starting DNS forwarder and DHCP server: dnsmasqdnsmasq: ISC dhcpd integration 
not available: set HAVE_ISC_READER in src/config.h
 (failed).
invoke-rc.d: initscript dnsmasq, action start failed.
...


as for your hint about editing config.h, you are right. I always search with 
grep for relevant lines so I found the #undef and placed the #define 
HAVE_ISC_READER at the end of the file, BUT there was a typo  :-O


thank you for your time,
Gabriele Persia

-- 
Public key available at: keyserver.pgp.com or www.keyserver.net


pgpVs9USJ66iB.pgp
Description: PGP signature


Bug#364477: apt-file ignores server 404 responses

2006-04-24 Thread Sebastien J. Gross
On Mon, Apr 24, 2006 at 01:19:46AM +0800, [EMAIL PROTECTED] wrote:
 Package: apt-file
 Version: 2.0.6
 Severity: normal
 
 apt-file ignores server 404 responses:
 $ apt-file -c /tmp update ; echo $?
 0 #but my modem was unplugged!
 $ strace -f apt-file -c /tmp update 21|grep ' 404'
 [pid  6368] recv(3, HTTP/1.1 404 WWWOFFLE Will Get\r\n..., 16384, 0) = 2835
 [pid  6368] write(1, HTTP/1.1 404 WWWOFFLE Will Get\r\n..., 191) = 191
 [pid  6369] ... read resumed HTTP/1.1 404 WWWOFFLE Will Get\r\n..., 
 32768) = 191
 [pid  6369] write(1, HTTP/1.1 404 WWWOFFLE Will Get\r\n, 32) = 32
 [pid  6372] recv(3, HTTP/1.1 404 WWWOFFLE Will Get\r\n..., 16384, 0) = 2851
 [pid  6372] write(1, HTTP/1.1 404 WWWOFFLE Will Get\r\n..., 191) = 191
 

Please update to new version 2.0.8


-- 
Sebastien J. Gross|   Debian GNU/Linux 
[EMAIL PROTECTED]|  http://www.debian.org
GPG: 1024g/AF0DDC9A AB35 1FFB 1268 56C0 452B  302E 2A25 8421 53BB A490


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364564: udev: No X possible after upgrade

2006-04-24 Thread Marco d'Itri
severity 364564 normal
tag 364564 unreproducible moreinfo
thanks

I am sure that you understand why a $PROGRAM does not work bug report
is totally useless to me.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#363684: epiphany-extensions: Same here.

2006-04-24 Thread Johannes Rohr
Package: epiphany-extensions
Version: 2.14.0.1-1
Followup-For: Bug #363684

I just wanted to report that I'm seeing exactly the same bug here.
Hasn't been there in previous versions of epiphany.

Thanks,

Johannes

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages epiphany-extensions depends on:
ii  epiphany-browser2.14.0-1 Intuitive GNOME web browser
ii  libc6   2.3.6-7  GNU C Library: Shared libraries
ii  libgcc1 1:4.1.0-1+b1 GCC support library
ii  libnspr4-0d 1.8.0.1-8NetScape Portable Runtime Library
ii  libosp5 1.5.2-1  Runtime library for OpenJade group
ii  libpcre36.4-1.1  Perl 5 Compatible Regular Expressi
ii  libxul0d1.8.0.1-8Gecko engine library
ii  sgml-data   2.0.3common SGML and XML data
ii  w3c-dtd-xhtml   1.1-5W3C eXtensible HyperText Markup La

epiphany-extensions recommends no packages.

-- no debconf information

-- 
http://www.infoe.de/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#362500: duplicated?

2006-04-24 Thread Stephan Michels
2006/4/24, Rafael Rodríguez [EMAIL PROTECTED]:
 As you can see in the provided link, it's just a missing dependency...

I just asked Matthias. And he said, that it is already fixed. So, I
will see if I can do an upload. The problem is that we have to handle
also the transition to gcj-4.1

Stephan Michels.



Bug#363598: udev should conflict with ifrename

2006-04-24 Thread Marco d'Itri
On Apr 24, Florian Weimer [EMAIL PROTECTED] wrote:

 It seems as if I've copied the line correctly, and I've also rebooted
 the machine.  I don't know why udev still wants to touch the
 interface.
Because it has the same MAC address and no obvious sysfs attribute which
distinguishes it, so the rule in z25_persistent-net.rules will match
both devices.
I have not found yet a solution to this, sorry.

  By the way, are there any other names managed by udev where the name
  cannot be changed while the object is in use?  Maybe this is part of
  the problem here.  It's impossible to rename a network interface while
  it is being used.
  No, only network interfaces are special.
 I think this needs to be fixed, otherwie the udev will never work well
 for them due to its asynchronous nature.
Unless you can persuade the kernel developers to fix this then the
correct solution is to configure network interfaces as an effect of
hotplug events.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#364566: firefox: wrong handling for profile name that includes space.

2006-04-24 Thread Morita Sho
Package: firefox
Version: 1.5.dfsg+1.5.0.2-2
Severity: normal
Tags: patch

I have profile that named Default User.
But Firefox cannot handles such profile name correctly.


For example, When I try to run the firefox with Default User profile:
$ firefox -V -P Default User
FIREFOX_DSP=
APPLICATION_ID=firefox--Default User
CMDLINE_DISPLAY=
DISPLAY=:0.0
OPTIONS=-P Default User
DEBUG=0
DEBUGGER=
Running: /usr/lib/firefox/firefox-bin -a firefox--Default User -P Default User

And then it will try to open http://User/;.
A space character in Default User is treated as word delimiter by shell.

This problem is due to the wrong handling of ${APPLICATION_ID} variable.

Currently, firefox command uses following code to append -a ${APPLICATION_ID}
arguments.
 MOZ_PROGRAM=${MOZ_PROGRAM} -a ${APPLICATION_ID}

However, appending -a ${APPLICATION_ID} in this way will occurs Word 
Splitting.
All spaces( ) in ${APPLICATION_ID} is treated as word delimiter.

Above code should be write as:
 set $@ -a ${APPLICATION_ID}


I have attached a patch to fix this problem.


Sorry for my inaccurate English.

thanks,

Morita Sho

--- firefox.orig2006-04-24 09:18:04.0 +0900
+++ firefox 2006-04-24 09:18:14.0 +0900
@@ -239,6 +239,8 @@
 fi
 done

+set $@ -a ${APPLICATION_ID}
+
 if [ $# -ne 0 ]; then
 shift
 fi
@@ -249,7 +251,7 @@
 DEBUGGER=gdb
 fi
 TMPFILE=`mktemp -t firefox_argsXX`
-echo set args -a ${APPLICATION_ID} $@  ${TMPFILE}
+echo set args $@  ${TMPFILE}
 case ${DEBUGGER} in
 gdb)
 run_verbose gdb ${MOZ_PROGRAM} -x ${TMPFILE}
@@ -265,7 +267,6 @@
 exit
 fi

-MOZ_PROGRAM=${MOZ_PROGRAM} -a ${APPLICATION_ID}

 echo_vars FIREFOX_DSP APPLICATION_ID CMDLINE_DISPLAY DISPLAY \
   OPTIONS DEBUG DEBUGGER



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)

Versions of packages firefox depends on:
ii  debianutils 2.15.7   Miscellaneous utilities specific t
ii  fontconfig  2.3.2-5.1generic font configuration library
ii  libatk1.0-0 1.11.4-1 The ATK accessibility toolkit
ii  libc6   2.3.6-7  GNU C Library: Shared libraries
ii  libcairo2   1.0.4-1+b1   The Cairo 2D vector graphics libra
ii  libfontconfig1  2.3.2-5.1generic font configuration library
ii  libfreetype62.1.10-3 FreeType 2 font engine, shared lib
ii  libgcc1 1:4.1.0-1+b1 GCC support library
ii  libglib2.0-02.10.2-1 The GLib library of C routines
ii  libgtk2.0-0 2.8.17-1 The GTK+ graphical user interface
ii  libidl0 0.8.6-1  library for parsing CORBA IDL file
ii  libjpeg62   6b-12The Independent JPEG Group's JPEG
ii  libpango1.0-0   1.12.1-2 Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime
ii  libstdc++6  4.1.0-1+b1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.0-6X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxft2 2.1.8.2-6FreeType-based font drawing librar
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  libxt6  1:1.0.0-4X11 toolkit intrinsics library
ii  psmisc  22.2-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3-11   compression library - runtime

firefox recommends no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364565: clusterssh: Pastes use qwerty keyboard

2006-04-24 Thread Samuel Thibault
Package: clusterssh
Version: 3.18.1-2
Severity: normal

Hi,

My X display is configured for using an azerty french keyboard. When I
paste some text in the input box, the result in xterms is not as
expected: for instance, when I paste '0' in the input box, xterms
print 'à'.

It looks like cssh sends qwerty-minded keycodes.

Regards,
Samuel

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-rc1
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages clusterssh depends on:
ii  libx11-protocol-perl 0.55-1  Perl module for the X Window Syste
ii  openssh-client   1:4.2p1-7   Secure shell client, an rlogin/rsh
ii  perl-tk  1:804.027-4 Perl module providing the Tk graph
hi  xterm210-2   X terminal emulator

clusterssh recommends no packages.

-- no debconf information

-- 
Samuel Thibault [EMAIL PROTECTED]
Now I know someone out there is going to claim, Well then, UNIX is intuitive,
because you only need to learn 5000 commands, and then everything else follows
from that! Har har har!
(Andy Bates in comp.os.linux.misc, on intuitive interfaces, slightly
defending Macs.)



Bug#364088: imagemagick: grab does not work

2006-04-24 Thread Dr A V Le Blanc
This problem was accidentally submitted twice, as bug number
364088 and as bug number 364102, because the reportbug script
appeared to have failed.  I suggest that bug 364088 should be
merged into 364102.

 -- Owen
 Dr A O V Le Blanc
 [EMAIL PROTECTED]


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364563: libclamav-dev: Typo in man page for clamav-config

2006-04-24 Thread Stephen Gran
This one time, at band camp, Aleksey I Zavilohin said:
 NAME
clamav-config - script to get information about libaudiofile
 
 I think this must be:
 ...
clamav-config - script to get information about libclamav1

Yes, of course you are correct.  Fixed in svn, will be in the next
upload.  Thanks very much.
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#364224: [Pkg-utopia-maintainers] Bug#364224: liferea has broken dep on dbus-1-utils

2006-04-24 Thread Sjoerd Simons
On Sat, Apr 22, 2006 at 07:40:40AM +0800, Dan Jacobson wrote:
 Package: liferea
 Severity: wishlist
 
 I'm not sure how this should be resolved:
 Package dbus has broken dep on dbus-1
   Considering dbus-1 8 as a solution to dbus 0
   Holding Back dbus rather than change dbus-1
 Package dbus-1-utils has broken dep on dbus
   Considering dbus 0 as a solution to dbus-1-utils 0
   Holding Back dbus-1-utils rather than change dbus
 Package liferea has broken dep on dbus-1-utils
   Considering dbus-1-utils 0 as a solution to liferea 0
   Holding Back liferea rather than change dbus-1-utils

What distribution are your running (stable/testing/unstable)? Which version of
liferea are you trying to install ?

  Sjoerd
-- 
Do not seek death; death will find you.  But seek the road which makes death
a fulfillment.
-- Dag Hammarskjold


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#350407: lessdisks-terminal: modifies /etc/kernel-img.conf in postinst

2006-04-24 Thread Stephen Gran
This one time, at band camp, Jonas Smedegaard said:
 On Sun, 23 Apr 2006 11:44:59 +0100 Stephen Gran wrote:
 
  Note that it talks about configuration files, not just dpkg conffiles.
 
 Yes. I am well aware of that.

Ah, from the way you were talking about 'owning', I assumed you meant
something like dpkg -S /etc/kernel-img.conf didn't show anything, so you
were thinking it was unowned.  If that's not the case, I apologize.

 
  Your package directly modifies another package's configuration file,
  instead of using an interface to do so.
 
 Please clarify: Which _single_ package do you believe to own those
 configuration files in question?

It's fairly clearly kernel-package.  kernel-package ships a sample
config file, a man page, and is also responsible for the postinst hooks
in the kernel images that mess with kernel-img.conf.

 kernel-package does not own /etc/kernel-img.conf, I believe. It only
 provides an interface for other packages (like linux-2.6) to adopt to
 mess with the (non-owned, it seems) file.

I think this is incorrect, sorry.  I think it is both fairly clear
kernel-package owns the file in question, and that it does not provide
an interface for updating the file.  Right now, the kernel images just
open it and write to it if it's not there.  Since their postinst scripts
come from kernel-package itself, I am not sure if that's a policy
violation or not.  But it certainly is for other packages that don't use
kernel-package generated maintainer scripts.

 The wiki page http://wiki.debian.org/FlexibleKernelHandling is a
 proposal for this. Manoj, maintainer of kernel-package, haas shown
 interest in the approach, and (if I understand correctly) welcomes
 concrete implementations of such kernel-install-helper (which I have
 failed to provide so far myself: help is much appreciated).

Yes, that looks quite reasonable.

  I am not sure how to handle the inittab stuff, as IIRC there are
  several initscripts implementations floating around out there (but
  maybe only sysvinit handles inittab?)  I just don't know the answer.
 
 Same here: It does not seem from the packaging scripts of sysvinit that
 that package considers itself owner of that file: It does not treat it
 as a conffile, only installs it if not there already, and does not
 remove it on purge (which may never be tested in reality, since the
 package is essential).

Well, I see on my system:
/var/lib/dpkg/info/sysvinit.postinst:if [ ! -f /etc/inittab ]
/var/lib/dpkg/info/sysvinit.postinst:   cp -p /usr/share/sysvinit/inittab 
/etc/inittab

That means on my system at least, sysvinit owns the file /etc/inittab.
There may be other init systems that also want to own the file, but
that's a question for another day, I think.

This is exactly like /etc/inetd.conf - no package 'owns' it in the dpkg -S
sense, but it clearly is owned by whichever of the inetd implementations
that you have installed, and there is a helper script to update it.

 I don't mean to say that there's no bug, but that I believe the bug is
 a different one: Noone claims ownership of those configuration files,
 so it is uncertain what package to either bug about an interface or to
 conflict against. If you agree with my viewpoint, we should probably
 rename this bugreport and clone it to other packages involved.

I disagree. I think it is pretty straightforward which packages own the
files in question.  I am in favor of filing bugs on kernel-package and/or
sysvinit for helper scripts to update their config files, though.

 Also, it seems to me that policy could use a clarification of how to
 indicate ownership...

Perhaps.
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#364300: Newer and better flpsed (v. 0.4.1) is available,but needs fltk2

2006-04-24 Thread Morten Brix Pedersen
Hi wzab,

* wzab [EMAIL PROTECTED] [2006-04-22 17:35:18]:
 I've found the newer version of flpsed (0.4.1) which allows me to use
 unicode characters when adding text to PS documents.
 It is very essential eg when filling in tax forms in my country.
 This version however needs also a newer version of fltk (fltk2),
 which is not packaged for debian yet.

I would like to package the newer version, but I have no intention to
involve myself in the packaging of fltk2.

  - Morten.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#355733: fixed bugs in strace

2006-04-24 Thread Frederik Schueler
tags 355733 +fixed
tags 315500 +fixed

thanks

Hello,

#355733 and #315500 are fixed in the last upload of strace.

Best regards
Frederik Schueler

-- 
ENOSIG


signature.asc
Description: Digital signature


Bug#363579: No, gnome-icon-theme isn't needed

2006-04-24 Thread Josselin Mouette
Le dimanche 23 avril 2006 à 22:02 -0700, James Blanford a écrit :
  libgnomeprintui relies on gnome-icon-theme being present for the icons
  it uses. The configure.in explicitly checks the presence of this
  package, that's why I think it is needed. 
 
 It is probably needed as a build-depends, so that it can take advantage
 of the icons if they are present.

Nothing in the build process requires the icons. They are used at
runtime.

  Putting it as a Recommends: instead sounds reasonable as we haven't
  received any reports of a failure without gnome-icon-theme installed.
 
 The criterion is not whether anyone reports a bug, it is what Debian
 policy has to say.

The policy says there should be a Depends: if the package cannot work
with that dependency. Upstream says that libgnomeprintui doesn't work
without gnome-icon-theme.

Now, please stop this silly discussion. I already said this will be
lowered to a Recommends: in the next upload.
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
   `-  Debian GNU/Linux -- The power of freedom




Bug#364070: [moz-bonobo-list] Bug#364070: mozilla-bonobo: No MS-Excel/Gnumeric binding

2006-04-24 Thread Josselin Mouette
Le vendredi 21 avril 2006 à 15:21 +0200, Olivier Guilyardi a écrit :
  In any case, this particular problem is related solely to the fact
  that Gnumeric does not ship a bonobo component any more.
 
 Ok, thanks for your answer. I suppose this is a Gnumeric bug then...

This is purely intentional, as bonobo is being deprecated. This sounds
more like a firefox bug, for being unable to use the freedesktop MIME
database to launch gnumeric.
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
   `-  Debian GNU/Linux -- The power of freedom




Bug#364569: please also build libpotrace

2006-04-24 Thread Bas Zoetekouw
Package: potrace
Version: 1.7-1
Severity: normal

The potrace source also seem to contain a libpotrace, which is
fromexample used by dvisvgm.  Could you please also build libpotrace
and libpotrace-dev packages?

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages potrace depends on:
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  zlib1g1:1.2.3-11 compression library - runtime

potrace recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364570: xserver-xorg-video-ati: Missing dependency on amd64 etch

2006-04-24 Thread Andy Huhn
Package: xserver-xorg-video-ati
Severity: important

Unable to install on etch amd64.  Missing dependency on
xserver-xorg-core (=1:0.99.0-1) (no install candidate)

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-amd64-k8-smp
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#357920: kein Betreff

2006-04-24 Thread Jiri Palecek
tags 357920 +patch
thanks

Hello,

I have found out what is causing this bug. It's
caused by this scenario:
1. user enter s a directory and mountman starts mounting
2. a progress window is displayed, which steals focus from crusader and
thus sets disableRefresh
3. mount succeeds and the progress window closes
4. however, the focus is transferred to the main window after mount returns
5. vfs_refresh on return has disableRefresh==true
6. subsequent refresh doesn't notice any file changes, so doesn't fill any 
lines to listbox

It could be solved by one of the attached patches, however, I don't know the 
exact
meaning of disableRefresh, dirty, and invalidated, so I may be wrong.

Regards
Jiri Palecek

___
SMS schreiben mit WEB.DE FreeMail - einfach, schnell und
kostenguenstig. Jetzt gleich testen! http://f.web.de/?mc=021192



kr.diff
Description: Binary data


kr2.diff
Description: Binary data


Bug#336245: libpgjava: use upstream package name

2006-04-24 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all,

I'm ok with changing the name to
libpostgresql-jdbc-java

Comments?

- --
  .''`.
 : :' :rnaud
 `. `'
   `-
Java Trap: http://www.gnu.org/philosophy/java-trap.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFETKcF4vzFZu62tMIRAgGQAJ9CIOekMZtmmS2/RPz4vg5o1tpaywCeIf10
UCDTssyiSpMFL0mWuPH5Kg8=
=zUUk
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364572: latex-make: Description improvement

2006-04-24 Thread Martin Schulze
Package: latex-make
Version: current
Severity: minor

- Description: easy compiling of complexe (and simple) LaTeX documents
+ Description: Easy compiling of complex (and simple) LaTeX documents
^

Regards,

Joey

-- 
Long noun chains don't automatically imply security.  -- Bruce Schneier

Please always Cc to me when replying to me on the lists.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364030: top shows 98% for all CPUs on SMP system all the time

2006-04-24 Thread jagga
Hmm, I can't reproduce the bug anymore...
The machine had to be rebooted over the weekend (it is a server at the
company where I'm working) and now top's output is all right again:

Tasks:  86 total,   1 running,  85 sleeping,   0 stopped,   0 zombie
 Cpu0 :  0.1% us,  0.2% sy,  0.0% ni, 99.5% id,  0.2% wa,  0.0% hi,  0.0% si
 Cpu1 :  0.1% us,  0.1% sy,  0.0% ni, 99.8% id,  0.0% wa,  0.0% hi,  0.0% si
 Cpu2 :  0.1% us,  0.1% sy,  0.0% ni, 99.8% id,  0.0% wa,  0.0% hi,  0.0% si
 Cpu3 :  1.2% us,  0.0% sy,  0.0% ni, 98.7% id,  0.0% wa,  0.0% hi,  0.0% si
Mem:   2075860k total,   141680k used,  1934180k free,29008k buffers
Swap:  2634652k total,0k used,  2634652k free,52388k cached

So I suppose you can close the bug. If top's weird behaviour will come up
again, I'll reopen it.

Thank you
Adalbert




Bug#364571: hplip: Device problem makes printer unusable

2006-04-24 Thread Didier Verna
Package: hplip
Severity: grave


Hi !

The hplip package 0.9.9-2 makes my printer unusable, complaining with the
following message:


% tail -f /var/log/syslog

Apr 3 11:44:04 localhost hpiod: invalid model DeskJet_845C !=
DESKJET_845C Device::Open io/hpiod/device.cpp 919 Apr 3 11:44:04
localhost python: [ERROR] Unable to communicate with device:
hp:/usb/DeskJet_845C?serial=TH1BQ16152SX Apr 3 11:44:04 localhost
python: [ERROR] Error opening device (Device not found). Exiting.

# lpq
hp is ready and printing
RankOwner   Job File(s) Total Size
active  6   Test Page   15360 bytes

Cups says open device failed; will retry in 30 seconds.



There is a full thread describing this problem on the debian-french mailing
list (not a message of mine though):

http://lists.debian.org/debian-user-french/2006/04/msg00207.html




I had to downgrade hplip to the testing version.



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364425: emacs-snapshot-gtk crashes (segmentation fault) with remote DISPLAY

2006-04-24 Thread Romain Francoise
Vincent Lefevre [EMAIL PROTECTED] writes:

 20060406-1 worked on April 17, but crashed yesterday. Then I saw that
 it wasn't the latest version, and I did the upgrade to 20060420-1,
 which also crashed. Moreover, between April 17 and yesterday, several
 libraries had been upgraded.

Hmm.

Could you try downgrading libgtk2.0-0 to version 2.8.16-1 and see if
that fixes the problem?

Also, does the Lucid version work in similar circumstances?

Thanks,

-- 
  ,''`.
 : :' :Romain Francoise [EMAIL PROTECTED]
 `. `' http://people.debian.org/~rfrancoise/
   `-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364573: apt-watch-backend: Wrong description

2006-04-24 Thread Martin Schulze
Package: apt-watch-backend
Version: current
Severity: minor

lia 
href=http://packages.debian.org/unstable/admin/apt-watch-backend;apt-watch-backend/a
mdash; Applet that monitors apt sources for upgrades./li
lia 
href=http://packages.debian.org/unstable/admin/apt-watch-gnome;apt-watch-gnome/a
mdash; Applet that monitors apt sources for upgrades./li

One of these descriptions is most probably wrong...

Regards,

Joey

-- 
Long noun chains don't automatically imply security.  -- Bruce Schneier

Please always Cc to me when replying to me on the lists.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364425: emacs-snapshot-gtk crashes (segmentation fault) with remote DISPLAY

2006-04-24 Thread Vincent Lefevre
On 2006-04-24 12:26:27 +0200, Romain Francoise wrote:
 Could you try downgrading libgtk2.0-0 to version 2.8.16-1 and see if
 that fixes the problem?

Same problem: segmentation fault.

 Also, does the Lucid version work in similar circumstances?

Is that emacs-snapshot-x?

dixsept:~ emacs-snapshot-x -q
X protocol error: BadWindow (invalid Window parameter) on protocol request 38
zsh: exit 70emacs-snapshot-x -q

I get this error when I try to click  drag.

-- 
Vincent Lefèvre [EMAIL PROTECTED] - Web: http://www.vinc17.org/
100% accessible validated (X)HTML - Blog: http://www.vinc17.org/blog/
Work: CR INRIA - computer arithmetic / SPACES project at LORIA



Bug#364564: udev: No X possible after upgrade

2006-04-24 Thread Michael Meskes
severity 364564 grave
thanks

 I am sure that you understand why a $PROGRAM does not work bug report
 is totally useless to me.

No, I do not. I sent out this report asap to help others who might fall
into the same problem. I do agree that you probably need more info, but
since you are the package maintainer you probably know better where to
look than I do. 

At the very least I would expect that you ask for some infos when
you tag the report moreinfo. Just tell me what you need and I can send
it. But don't expect me to know your package the way you know it.

Which kernel did you test on? I have the linux-image-2.6.16-1-686
package with version 2.6.16-9.

Michael
-- 
Michael Meskes
Email: Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go SF 49ers! Go Rhein Fire! Use Debian GNU/Linux! Use PostgreSQL!



Bug#259761: Unace is too old

2006-04-24 Thread Loic Pefferkorn
Hello,

We have a similar request on the Ubuntu distribution, with point of view of 
winace's author.

https://launchpad.net/distros/ubuntu/+source/unace/+bug/39784

The author seems to agree repackaging of winace :


Hello,

here is the answer I got from Marcel Lemke (the guy behind unace). :

Hi,
we don't mind if you repackage it.
But please add a file stating you had our permission to do so.


Best regards,
Loic






-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364564: udev: No X possible after upgrade

2006-04-24 Thread Marco d'Itri
severity 364564 normal
thanks

On Apr 24, Michael Meskes [EMAIL PROTECTED] wrote:

It's not RC if it's unconfirmed and only happens to you.
udev is used by over 60% of Debian users, and if it really broke X for
many of them I would know at this time.
Also, the changes between 0.090-3 and 0.090-4 are few and very localized
and I do not believe that they can affect X.

  I am sure that you understand why a $PROGRAM does not work bug report
  is totally useless to me.
 No, I do not. I sent out this report asap to help others who might fall
 into the same problem. I do agree that you probably need more info, but
 since you are the package maintainer you probably know better where to
 look than I do. 
You are expected to explain /why/ X is not working. I hoped that this
would be obvious.
Until you can explain this there is nothing I can do.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#364574: ITP: libtie-encryptedhash-perl -- Hashes and hashes based objects with encrypting fields for perl

2006-04-24 Thread Pierre-Matthieu Alamy
Package: wnpp
Severity: wishlist
Owner: Pierre-Matthieu Alamy [EMAIL PROTECTED]

* Package name: libtie-encryptedhash-perl
  Version : 1.21
  Upstream Author : Vipul Ved Prakash [EMAIL PROTECTED]
* URL : http://cpan.org/modules/by-module/Tie/
* License : Artistic
  Programming Lang: Perl
  Description : Hashes and hashes based objects with encrypting fields for 
perl

Tie::EncryptedHash augments Perl hash semantics to build secure, encrypting 
containers of data. 
Tie::EncryptedHash introduces special hash fields that are coupled with 
encrypt/decrypt routines to encrypt 
assignments at STORE() and decrypt retrievals at FETCH(). By design, encrypting 
fields are associated with keys 
that begin in single underscore. The remaining keyspace is used for accessing 
normal hash fields, which are 
retained without modification.

While the password is set, a Tie::EncryptedHash behaves exactly like a standard 
Perl hash. This is its 
transparent mode of access. Encrypting and normal fields are identical in this 
mode. When password is deleted, 
encrypting fields are accessible only as ciphertext. This is 
Tie::EncryptedHash's opaque mode of access, 
optimized for serialization.

Encryption is done with Crypt::CBC(3) which encrypts in the cipher block 
chaining mode with Blowfish, DES or 
IDEA. Tie::EncryptedHash uses Blowfish by default, but can be instructed to 
employ any cipher supported by 
Crypt::CBC(3).

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#335232: Package available

2006-04-24 Thread Yavor Doganov
The package is available through the repository of the Bulgarian Debian 
Group:

deb http://ftp.uni-sofia.bg/debian-addons-bg ./
deb-src http://ftp.uni-sofia.bg/debian-addons-bg ./

-- 
Every non-free program has a lord, a master --
and if you use the program, he is your master. --RMS


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364575: epiphany-browser: No longer uses site icon as program icon

2006-04-24 Thread Johannes Rohr
Package: epiphany-browser
Version: 2.14.0-1
Severity: minor

Previous versions of epiphany used the current  /favicon.ico or other
site icon as program icon. 

This cool feature seems to have gone away. Favicons are still displayed
in the location bar, but the program icon in the window list remains
unchanged.


Thanks,

Johannes

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages epiphany-browser depends on:
ii  gconf2   2.14.0-1GNOME configuration database syste
ii  gnome-icon-theme 2.14.2-1GNOME Desktop icon theme
ii  iso-codes0.49-1  ISO language, territory, currency 
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.11.4-1The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of SGI's audio
ii  libavahi-client3 0.6.9-8+b1  Avahi client library
ii  libavahi-common3 0.6.9-8+b1  Avahi common library
ii  libavahi-compat-howl00.6.9-8+b1  Avahi Howl compatibility library
ii  libavahi-glib1   0.6.9-8+b1  Avahi glib integration library
ii  libbonobo2-0 2.14.0-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.14.0-2The Bonobo UI library
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libcairo21.0.4-1+b1  The Cairo 2D vector graphics libra
ii  libdbus-1-2  0.61-5  simple interprocess messaging syst
ii  libdbus-glib-1-2 0.61-5  simple interprocess messaging syst
ii  libesd-alsa0 [libesd0]   0.2.36-3Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig1   2.3.2-5.1   generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.0-1+b1GCC support library
ii  libgconf2-4  2.14.0-1GNOME configuration database syste
ii  libgcrypt11  1.2.2-1 LGPL Crypto library - runtime libr
ii  libglade2-0  1:2.5.1-2   library to load .glade files at ru
ii  libglib2.0-0 2.10.2-1The GLib library of C routines
ii  libgnome-desktop-2   2.14.0-1Utility library for loading .deskt
ii  libgnome-keyring00.4.9-1 GNOME keyring services library
ii  libgnome2-0  2.14.0-2The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.14.0-2A powerful object-oriented display
ii  libgnomeprint2.2-0   2.12.1-3The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0 2.12.1-3GNOME 2.2 print architecture User 
ii  libgnomeui-0 2.14.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.14.0-3GNOME virtual file-system (runtime
ii  libgnutls12  1.2.9-2 the GNU TLS library - runtime libr
ii  libgpg-error01.2-1   library for common error values an
ii  libgtk2.0-0  2.8.17-1The GTK+ graphical user interface 
ii  libice6  1:1.0.0-3   X11 Inter-Client Exchange library
ii  libjpeg626b-12   The Independent JPEG Group's JPEG 
ii  libmozjs0d   1.8.0.1-8   The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d  1.8.0.1-8   NetScape Portable Runtime Library
ii  liborbit21:2.14.0-1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.12.1-2Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-5.1PNG library - runtime
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   1:1.0.0-4   X11 Session Management library
ii  libstartup-notification0 0.8-1   library for program launch feedbac
ii  libstdc++6   4.1.0-1+b1  The GNU Standard C++ Library v3
ii  libtasn1-2   1:0.2.17-2  Manage ASN.1 structures (runtime)
ii  libx11-6 2:1.0.0-6   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library
ii  libxml2  2.6.23.dfsg.2-3 GNOME XML library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client libra
ii  libxslt1.1   1.1.15-5XSLT processing 

Bug#364576: ITP: libconvert-ascii-armour-perl -- Convert binary octets into ASCII armoured messages for perl

2006-04-24 Thread Pierre-Matthieu Alamy
Package: wnpp
Severity: wishlist
Owner: Pierre-Matthieu Alamy [EMAIL PROTECTED]

* Package name: libconvert-ascii-armour-perl
  Version : 1.4
  Upstream Author : Vipul Ved Prakash [EMAIL PROTECTED]
* URL : http://cpan.org/modules/by-module/Convert/
* License : Artistic
  Programming Lang: Perl
  Description : Convert binary octets into ASCII armoured messages for perl

This module converts hashes of binary octets into ASCII messages suitable for 
transfer over 6-bit clean transport 
channels. The encoded ASCII resembles PGP's armoured messages, but are in no 
way compatible with PGP.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364577: ITP: libclass-loader-perl -- Load modules and create objects on demand for perl

2006-04-24 Thread Pierre-Matthieu Alamy
Package: wnpp
Severity: wishlist
Owner: Pierre-Matthieu Alamy [EMAIL PROTECTED]

* Package name: libclass-loader-perl
  Version : 2.03
  Upstream Author : Vipul Ved Prakash [EMAIL PROTECTED]
* URL : http://cpan.org/modules/by-module/Class/
* License : Artistic
  Programming Lang: Perl
  Description : Load modules and create objects on demand for perl

Certain applications like to defer the decision to use a particular module till 
runtime. This is possible in 
perl, and is a useful trick in situations where the type of data is not known 
at compile time and the application 
doesn't wish to pre-compile modules to handle all types of data it can work 
with. Loading modules at runtime can 
also provide flexible interfaces for perl modules. Modules can let the 
programmer decide what modules will be 
used by it instead of hard-coding their names.

Class::Loader is an inheritable class that provides a method, _load(), to load 
a module from disk and construct 
an object by calling its constructor. It also provides a way to map modules 
names and associated metadata with 
symbolic names that can be used in place of module names at _load().

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#348782: [aha152_cs] (scsi0:x:0) command sent incompletely (1/12) (was: Re: Bug#348782)

2006-04-24 Thread Philippe Bourcier
hi all,

  I looked at an old bug regarding my scsi hardware:

On Wed, Mar 08, 2006 at 11:00:43PM +0100, Philippe Bourcier wrote:
 Package: linux-image-2.6-686
 Version: 2.6.15-8
 Followup-For: Bug #348782
[...]
 debian 2.6.15-8 doesn't resolve:
 
 I have a scsi tower (2*dd, cdrom reader, cdrom burner) connected to my
 laptop with a pcmcia card:
 Adaptec, Inc. - APA-1460 SCSI Host Adapter
 when I keep the tower shuted, everything is ok: I can boot with the card
 inserted
 when I power on the tower, the boot crash:
 (I copy the message by hand)
 
 BUG: soft lockup detected on CPUU#0!
 Pid: 4, comm:events/0
 EIP: 0060 [c0121d40]CPU:0
 EIP is at worker_thread+0x129/0x19f
   EFLAGS: 0246 Not tainted (2.6.15-1-686)
 EAX: c8c83084  EBX: c8c83084  ECX: c8c83080  EDX: c8c83084
 ESI: c7ff59a0  EDI: 0246  EBP:   DS: 0076  ES:007b
 CR0: 8005003b  CR2: bfd25124  CR3: 076e3000  CR4: 0240
 [c8c7c31a] run+0x0/0x3b [aha152_cs]
 [c0113708] default_wake_function+0x0/0x12
 [c0121c17] worker_thread+0x0/0x19f
 [c0124bd0] kthread+0x68/0x95
 [c0124b68] kthread+0x68/0x95
 [c01012a9] kernel_thread_helper+0x5/0xb
 
[...]
 -- System Information:
 Debian Release: testing/unstable
   APT prefers unstable
   APT policy: (500, 'unstable')
 Architecture: i386 (i686)
 Shell:  /bin/sh linked to /bin/bash
 Kernel: Linux 2.6.15-1-686
 Locale: LANG=en_US.UTF-8, [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
 set to en_US.UTF-8)
 
 Versions of packages linux-image-2.6-686 depends on:
 ii  linux-image-2.6.15-1-686  2.6.15-8   Linux kernel 2.6.15 image on 
 PPro/
 
 linux-image-2.6-686 recommends no packages.
 
 -- no debconf information

now, it seems to work...
just (scsi0:0:0) command sent incompletely (1/12)
and (scsi0:1:0) command sent incompletely (1/12)
annoys me; am I wrong?

$ uname -a
Linux ile 2.6.16-1-686 #2 Thu Apr 20 20:35:02 UTC 2006 i686
GNU/Linux
$ dmesg 
Linux version 2.6.16-1-686 (Debian 2.6.16-9) ([EMAIL PROTECTED])
(gcc version 4.0.3 (Debian 4.0.3-1)) #2 Thu Apr 20 20:35:02 UTC
2006
[...]
PCI: Found IRQ 11 for device :00:03.0
Yenta: CardBus bridge found at :00:03.0 [:]
Yenta: Enabling burst memory read transactions
Yenta: Using CSCINT to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket :00:03.0, mfunc 0xcba97543, devctl 0x62
Yenta: ISA IRQ mask 0x06b8, PCI irq 11
Socket status: 3010
PCI: Found IRQ 11 for device :00:03.1
Yenta: CardBus bridge found at :00:03.1 [:]
Yenta: Using CSCINT to route CSC interrupts to PCI
Yenta: Routing CardBus interrupts to PCI
Yenta TI: socket :00:03.1, mfunc 0xcba97543, devctl 0x62
[...]
Yenta: ISA IRQ mask 0x06b8, PCI irq 11
Socket status: 3010
[...]
pccard: PCMCIA card inserted into slot 0
pccard: PCMCIA card inserted into slot 1
[...]
cs: IO port probe 0x100-0x4ff: excluding 0x220-0x22f 0x300-0x307
0x378-0x37f 0x388-0x38f
cs: IO port probe 0x100-0x4ff: excluding 0x220-0x22f 0x300-0x307
0x378-0x37f 0x388-0x38f
cs: IO port probe 0x800-0x8ff: excluding 0x800-0x807
cs: IO port probe 0xc00-0xcff: clean.
cs: IO port probe 0xa00-0xaff: clean.
usb 1-1.4: configuration #1 chosen from 1 choice
cs: memory probe 0xa000-0xa0ff: clean.
pcmcia: registering new device pcmcia0.0
cs: IO port probe 0x800-0x8ff: excluding 0x800-0x807
cs: IO port probe 0xc00-0xcff: clean.
cs: IO port probe 0xa00-0xaff: clean.
cs: memory probe 0xa000-0xa0ff: excluding
0xa000-0xa00f
pcmcia: registering new device pcmcia1.0
[...]
SCSI subsystem initialized
aha152x: resetting bus...
aha152x0: vital data: rev=1, io=0x340 (0x340/0x340), irq=3,
scsiid=7, reconnect=enabled, parity=enabled, synchronous=enabled,
delay=100, extended translation=disabled
aha152x0: trying software interrupt, ok.
scsi0 : Adaptec 152x SCSI driver; $Revision: 2.7 $
(scsi0:0:0) Synchronous Data Transfer Request period = 200 ns
offset = 8 
  Vendor: IBM   Model: DNES-309170   Rev: SA30
  Type:   Direct-Access  ANSI SCSI revision:
03
(scsi0:0:0) command sent incompletely (1/12)
(scsi0:1:0) Synchronous Data Transfer Request period = 200 ns
offset = 8 
  Vendor: IBM   Model: DNES-309170   Rev: SA30
  Type:   Direct-Access  ANSI SCSI revision:
03
(scsi0:1:0) command sent incompletely (1/12)
(scsi0:2:0) Synchronous Data Transfer Request period = 200 ns
offset = 8 
  Vendor: PLEXTOR   Model: CD-ROM PX-40TSRev: 1.10
  Type:   CD-ROM ANSI SCSI revision:
02
(scsi0:3:0) Synchronous Data Transfer Request period = 200 ns
offset = 8 
  Vendor: YAMAHAModel: CRW8424S  Rev: 1.0d
  Type:   CD-ROM ANSI SCSI revision:
02
[...]
SCSI device sda: 17916240 512-byte hdwr sectors (9173 MB)
ts: Compaq touchscreen protocol output
sda: Write Protect is off
sda: Mode Sense: c3 00 00 08
SCSI device sda: drive cache: write back
SCSI device sda: 17916240 512-byte hdwr sectors (9173 MB)
sda: Write Protect is off
sda: Mode 

Bug#361806: java-gcj-compat-dev: Can't build with javac

2006-04-24 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all,

I confirm this bug. autotools can't find javac! This is impossible to
build packages that use java-gcj-compat-dev.

Cheers,

- --
  .''`.
 : :' :rnaud
 `. `'
   `-
Java Trap: http://www.gnu.org/philosophy/java-trap.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFETLWN4vzFZu62tMIRAt25AJ4uhAESu4jiLEsB1JXfRBaEigoiXQCgn7fP
9xuUAZRdxsNToeuBhxMJnbU=
=K1EN
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364517: [Pbuilder-maint] Bug#364517: pbuilder complains that /etc/hosts doesn't exist

2006-04-24 Thread Junichi Uekawa
Hi,

 pbuilder create --distribution sid exits with the following error
 when /etc/hosts doesn't exist (it seems that this file hasn't been
 created by the Debian installation):
 
 E: /etc/hosts does not exist, your setup is insane. fix it
 cp: cannot stat `/etc/hosts': No such file or directory
 
 Since this file is not necessary, pbuilder shouldn't give an error.

You mean, you don't have /etc/hosts and your system is functional?
It's probably possible but I don't think pbuilder should support that
kind of setup.

Are you really sure /etc/hosts doesn't exist? We're talking about
outside of chroot here.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364278: fail2ban: Non-standard init file

2006-04-24 Thread Aaron Isotton
Yaroslav Halchenko wrote:
 Thank you Aaron,
 
 Indeed, standardization is a good thing and I thing the point when init
 files format was changed and I missed --retry argument for
 start-stop-daemon which is quite important for 'restart' on somewhat
 slow boxes... Also I will include status action for the init script
 since it comes handy
 
 what do you think would be more appropriate for sarge backports?
 sarge ships with 2.0-7 lsb-base, so at lest log_daemon_msg is missing...
 Thus there are 2 choices for sarge backports:
  - ship with tuned new version of init.d which defines log_daemon_msg if
none is provided with lsb init-functions (simplest way I think, since
then I can depend on 2.0-7 version of lsb-bse and don't bother
keeping depends separate for sarge)
  
  - keep older version of init script, so I ship it with backports...
 
 what would be your recommendation?

I think maintaining just one version is better than maintaining two of
them. Since there is already a backport of lsb-base (see backports.org)
I would simply depend on lsb-base 3; the users wanting to install the
fail2ban backport would have to install the lsb-base backport too.

The postfix backport does it that way too.

Greetings,
Aaron
-- 
Aaron Isotton | http://www.isotton.com/
I'll give you a definite maybe. --Samuel Goldwyn


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364579: please rename kernel-patch-wrr to linux-patch-wrr

2006-04-24 Thread Robert Millan
Package: kernel-patch-wrr
Severity: wishlist

On Mon, Apr 24, 2006 at 10:29:10AM +0200, Jonas Smedegaard wrote:
 On Sat, 22 Apr 2006 22:19:58 +0200 Robert Millan wrote:
 
  Please, could you consider renaming kernel-patch-wrr to
  linux-patch-wrr, in order to follow the current trend in
  linux-patch-debian-* packages?
  
  This will help avoiding confusion with other kernels (e.g. kFreeBSD),
  since this kind of packages (as binary-all) are available for all
  arches.
 
 Yes.
 
 Please file this as a bugreport, both to help me remember, to show
 others that it has already been reported, and to semi-automatically keep
 track of progress with it.

Done.

Btw, you might want to use Provides/Replaces/Conflicts on the old package in
order to provide a simpler upgrade path.

Thanks,

-- 
Robert Millan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#364578: libgtk2.0-0: file selector crashes if linked to libxml

2006-04-24 Thread A Mennucc
Package: libgtk2.0-0
Version: 2.8.17-1
Severity: normal

hello

I was trying to redesign my package 'gpr' to use GTK2,
when I ran into a bug that seems a  GTK vs xml bug.

The attached simple program works ok if I compile it as

$ gcc -o works test.c -g  ` pkg-config gtk+-2.0 --cflags --libs `

but always crashes when I click on the file button in the main window,
 if I compile it as

$ gcc -o fails test.c -g  ` pkg-config gtk+-2.0 --cflags --libs ` -lxml

This latter is then linked with 
ii  libxml11.8.17-13  GNOME XML library

and gdb reports a mess between libxml2.so and libxml1.so

(gdb) whe 8
#0  0xa78867f8 in xmlParserInputShrink () from /usr/lib/libxml.so.1
#1  0xa788b88d in xmlParseCharDataComplex () from /usr/lib/libxml.so.1
#2  0xa70c0cad in xmlParseCharData () from /usr/lib/libxml2.so.2
#3  0xa70cd8e0 in xmlParseChunk () from /usr/lib/libxml2.so.2
#4  0xa7160ef4 in xmlUCSIsCat () from /usr/lib/libxml2.so.2
#5  0xa7161f1a in xmlTextReaderRead () from /usr/lib/libxml2.so.2
#6  0xa73a6055 in gnome_vfs_mime_thaw () from /usr/lib/libgnomevfs-2.so.0
#7  0xa73a640d in gnome_vfs_mime_get_value () from /usr/lib/libgnomevfs-2.so.0
(More stack frames follow...)


I include the output of 
$ ldd works | sed 's/(.*//'  works.ldd

$ ldd fails | sed 's/(.*//'  fails.ldd

a.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages libgtk2.0-0 depends on:
ii  libatk1.0-0 1.11.4-1 The ATK accessibility toolkit
ii  libc6   2.3.6-7  GNU C Library: Shared libraries
ii  libcairo2   1.0.4-1+b1   The Cairo 2D vector graphics libra
ii  libfontconfig1  2.3.2-5.1generic font configuration library
ii  libglib2.0-02.10.2-1 The GLib library of C routines
ii  libgtk2.0-bin   2.8.17-1 The programs for the GTK+ graphica
ii  libgtk2.0-common2.8.17-1 Common files for the GTK+ graphica
ii  libjpeg62   6b-12The Independent JPEG Group's JPEG 
ii  libpango1.0-0   1.12.1-2 Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime
ii  libtiff43.8.2-1  Tag Image File Format (TIFF) libra
ii  libx11-62:1.0.0-6X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra

Versions of packages libgtk2.0-0 recommends:
ii  hicolor-icon-theme0.8-3  default fallback theme for FreeDes

-- no debconf information

-- 
Andrea Mennucc
 E' un mondo difficile. Che vita intensa! (Tonino Carotone)


gtk_file_chooser_button.tar.gz
Description: Binary data


signature.asc
Description: Digital signature


  1   2   3   4   5   >