Bug#346050: guint32 code generator incorrect on 64 bit architectures

2006-01-04 Thread Joe Wreschnig
Package: python-gtk2
Version: 2.6.3-2
Severity: normal
Tags: patch

There's a typo in codegen/argtypes.py that causes an incorrect type
mapping on 64 bit architectures; it looks like some new lines were
pasted in between the maps for guint and guint32, which made the value
of the local 'args' variable incorrect.

This is causing a bug that makes quodlibet unusable on 64 bit
architectures if the event time exceeds 2**31; it also could potentially
cause many other bugs.

Attached is a patch to use PyGTK 2.8's argtypes.py, which defines it
correctly.
-- 
Joe Wreschnig <[EMAIL PROTECTED]>
--- pygtk-2.6.3.orig/codegen/argtypes.py
+++ pygtk-2.6.3/codegen/argtypes.py
@@ -175,16 +175,36 @@
 info.codeafter.append('return PyInt_FromLong(ret);')

 class UIntArg(ArgType):
+dflt = ('if (py_%(name)s) {\n'
+'if (PyLong_Check(py_%(name)s))\n'
+'%(name)s = PyLong_AsUnsignedLong(py_%(name)s);\n'
+'else if (PyInt_Check(py_%(name)s))\n'
+'%(name)s = PyInt_AsLong(py_%(name)s);\n'
+'else\n'
+'PyErr_SetString(PyExc_TypeError, "Parameter \'%(name)s\' must be an int or a long");\n'
+'if (PyErr_Occurred())\n'
+'return NULL;\n'
+'}\n')
+before = ('if (PyLong_Check(py_%(name)s))\n'
+  '%(name)s = PyLong_AsUnsignedLong(py_%(name)s);\n'
+  'else if (PyInt_Check(py_%(name)s))\n'
+  '%(name)s = PyInt_AsLong(py_%(name)s);\n'
+  'else\n'
+  'PyErr_SetString(PyExc_TypeError, "Parameter \'%(name)s\' must be an int or a long");\n'
+  'if (PyErr_Occurred())\n'
+  'return NULL;\n')
 def write_param(self, ptype, pname, pdflt, pnull, info):
-   if pdflt:
-   info.varlist.add(ptype, pname + ' = ' + pdflt)
-   else:
-   info.varlist.add(ptype, pname)
-   info.arglist.append(pname)
-info.add_parselist('I', ['&' + pname], [pname])
+if not pdflt:
+pdflt = '0';
+
+info.varlist.add(ptype, pname + ' = ' + pdflt)
+info.codebefore.append(self.dflt % {'name':pname})
+info.varlist.add('PyObject', "*py_" + pname + ' = NULL')
+info.arglist.append(pname)
+info.add_parselist('O', ['&py_' + pname], [pname])
 def write_return(self, ptype, ownsreturn, info):
 info.varlist.add(ptype, 'ret')
-info.codeafter.append('return PyLong_FromUnsignedLong(ret);\n')
+info.codeafter.append('return PyLong_FromUnsignedLong(ret);')

 class SizeArg(ArgType):

@@ -264,22 +284,30 @@
 info.codeafter.append('return PyInt_FromLong(ret);')

 class ULongArg(ArgType):
-dflt = 'if (py_%(name)s)\n' \
-   '%(name)s = PyLong_AsUnsignedLong(py_%(name)s);\n'
-before = '%(name)s = PyLong_AsUnsignedLong(py_%(name)s);\n'
 def write_param(self, ptype, pname, pdflt, pnull, info):
-if pdflt:
-info.varlist.add('gulong', pname + ' = ' + pdflt)
-info.codebefore.append(self.dflt % {'name':pname})
-else:
-info.varlist.add('gulong', pname)
-info.codebefore.append(self.before % {'name':pname})
-info.varlist.add('PyObject', "*py_" + pname + ' = NULL')
-info.arglist.append(pname)
-info.add_parselist('O!', ['&PyLong_Type', '&py_' + pname], [pname])
+   if pdflt:
+   info.varlist.add('unsigned long', pname + ' = ' + pdflt)
+   else:
+   info.varlist.add('unsigned long', pname)
+   info.arglist.append(pname)
+info.add_parselist('k', ['&' + pname], [pname])
 def write_return(self, ptype, ownsreturn, info):
-info.varlist.add('gulong', 'ret')
-info.codeafter.append('return PyLong_FromUnsignedLong(ret);')
+info.varlist.add(ptype, 'ret')
+info.codeafter.append('return PyLong_FromUnsignedLong(ret);\n')
+
+class UInt32Arg(ULongArg):
+def write_param(self, ptype, pname, pdflt, pnull, info):
+ULongArg.write_param(self, ptype, pname, pdflt, pnull, info)
+## if sizeof(unsigned long) > sizeof(unsigned int), we need to
+## check the value is within guint32 range
+if struct.calcsize('L') > struct.calcsize('I'):
+info.codebefore.append((
+'if (%(pname)s > G_MAXUINT32) {\n'
+'PyErr_SetString(PyExc_ValueError,\n'
+'"Value out of range in conversion of"\n'
+'" %(pname)s parameter to unsigned 32 bit integer");\n'
+'return NULL;\n'
+'}\n') % vars())

 class Int64Arg(ArgType):
 def write_param(self, ptype, pname, pdflt, pnull, info):
@@ -901,13 +929,7 @@
 arg = TimeTArg()
 matcher.register('time_t', arg)

-# If the system maxint is 

Bug#345557: source: debian/patches applies not clean.

2006-01-04 Thread Steve Langasek
On Thu, Jan 05, 2006 at 06:59:05AM +0100, Christian Perrier wrote:
> > A patch-stamp will give you a little gain, but really little because quilt
> > maintains a whole bunch of status. It knows where it stands in the patch set
> > at every time. Try to travel into the .pc directory if you want to visit it.

> So, Steve, do you think I can commit the change?

I think so, yes. :)

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Bug#345895: mysql-server-5.0: fails to start after upgrade from 4.1; README.Debian not helpful...

2006-01-04 Thread Christian Hammers
Hi

On 2006-01-05 sean finney wrote:
> [new.preinst]
> - determine list of dbs/tables containing old format, ignore if empty
> - debconf prompt to determine whether to abort/fix/ignore

Why not just say "mysql-server-5.0 cannot be installed due to ..." and
abort. Let the user fix it as this would just mean more complicated and 
error prone stuff to our package scripts. I don't expect soo many users
out there with ISAM tables anyway.

Hm, I just see that there's a script mysql_convert_table_format but still
we could only mention it and not directly convert the tables as this would
need a running mysql server and IIRC the server will be down in every case
when the preinst script of mysql-server-5.0 as the prerm of mysql-server-4.1
stopped it.

bye,

-christian-


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



Bug#331623: upgrade slang bug

2006-01-04 Thread Nathanael Nerode
severity 331623 important
thanks

Slang1 is likely to be removed very soon.

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

Make sure your vote will count.
http://www.verifiedvoting.org/


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



Bug#345999: installation-report: Fails to detect CD

2006-01-04 Thread Christian Perrier

> The installer fails to detect the CD drive (actually a DVD+RW drive, a
> Sony DW-Q58A). The drive is a PCI IDE drive. The thing is, that an old
> Sarge/Testing image (date 01/08/2004, ie: before Sarge was released)
> correctly detects the drive, and happily installs Debian on that Laptop.


To other D-I people: could this be related to us dropping discover? 

And, indeed, *have we* finally dropped discover? :-)

This bug probably deserves more investigation. My answer is mostly
here for enhancing this..:-)





Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Sven Luther
On Thu, Jan 05, 2006 at 01:19:17AM +0100, Cesare Leonardi wrote:
> Sven Luther wrote:
> >It would be great if you could confirm the exact version of those two
> >packages, and could provide us some log of what is happening, as this bug
> >report doesn't seem to be very informative.
> 
> For me, i have provided information in bug #344767, as i explained in 
> the previous message: versions, logs, ecc.

Ah, looking at this one now.

> >This issue should have been fixed in linux-image-2.6.15-1-686 though, so we
> >really need to find out what did go wrong.
> 
> I haven't tested 2.6.15 because it isn't available in my mirror yet. But 
> the Nathanael posts tell us that the problem is still present in the 
> latest kernel.

But it should not, which is why it is important to investigate. 2.6.14-2 is no
more in the archive as of today, and thus no longer relevant.

For information, i had this problem on powerpc, where the debconfified
mkvmlinuz package used debconf script in the /etc/kernel way described below,
but we fixed it last week, and the new 2.6.15-1 kernel build depend on at
least the 10.028 or 10.029 kernel-package version with this fixed.

So, either it is a new problem, or somehow the version Nathanael has built was
done so using an older kernel-package which was buggy.

> As soon as it will be available on the mirror i use, i'll test 2.6.15.

Thanks.

> >Also, could you please give us the output of ls -lR /etc/kernel, and 
> >append it
> >to the bug report ?
> 
> Do you mean this?
> $ ls -lR /etc/kernel-*
> -rw-r--r-- 1 root root  179 2005-09-11 20:55 /etc/kernel-img.conf
> -rw-r--r-- 1 root root 1006 2005-11-08 00:35 /etc/kernel-pkg.conf

No, the kernel-packahe generated postinst and co script have support for
script hooks, found under /etc/kernel/postinst.d/ and co, i want to know what
exactly you have there, because it is probable that some random third party
hook (like grub-update call maybe) causes this problem.

Friendly,

Sven Luther



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



Bug#346017: (forw) [Pkg-shadow-devel] Bug#346017: shadow: [INTL:sv] Swedish PO translation

2006-01-04 Thread Christian Perrier
tags 346017 upstream
thanks

It seems this translation update didn't make it in 4.0.14.

Tomasz, can you pick it in http://bugs.debian.org/346017 for the next
release and notify us when commited?

- Forwarded message from Daniel Nylander <[EMAIL PROTECTED]> -

From: Daniel Nylander <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
X-Mailer: reportbug 3.18
Date: Wed, 04 Jan 2006 22:27:44 +0100
Subject: [Pkg-shadow-devel] Bug#346017: shadow: [INTL:sv] Swedish PO
translation
Reply-To: Daniel Nylander <[EMAIL PROTECTED]>, [EMAIL PROTECTED]

Package: shadow
Version: 4.0.14
Severity: wishlist
Tags: patch l10n


I am not sure if this translation was recieved by the maintainer.
I got several error messages when sending it directly

Here it is.. again.

Regards,
Daniel

-- 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.6.13.2
Locale: LANG=sv_SE.ISO-8859-1, LC_CTYPE=sv_SE.ISO-8859-1 (charmap=ISO-8859-1)




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



Bug#346009: pppconfig: Exits when Modeminit choosen.

2006-01-04 Thread Christian Perrier
Quoting John Hasler ([EMAIL PROTECTED]):
> Exactly what did you change?  Can you send me the changed and unchanged
> lines?  It looks like this has something to do with
> the Russian translation.


Checking this would be easy then: just use "LC_ALL=C pppconfig"



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



Bug#345906: Should support a /usr/local/share/whereami/tests directory for locally crafted tests

2006-01-04 Thread Christian Perrier

> "$scriptbase/tests:$scriptbase/actions:$scriptbase:/bin:/usr/bin:/sbin:/usr/sbin:$basedir/tests;/usr/local/share/whereami"
> 
> Where $scriptbase defaults to /usr/share/whereami and $basedir defaults
> to /etc/whereami .
> 
> I'm not sure what more should be done?  Possibly the ordering of these


Hmm, not much except maybe create the /usr/local/share/whereami
directory in the package. I was indeed not aware of the above because
I tried looking for the directory and didn't find it..:)

Re-ordering would be nice also, so that locally modified scripts with
the same name than original scripts will take them over.


PS: besides this, I hope you'll nnotice that I'm not a happy whereami
user..:)




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



Bug#345918: Possible solution

2006-01-04 Thread Sven Luther
On Wed, Jan 04, 2006 at 08:30:11PM -0800, Jurij Smakov wrote:
> Hi,
> 
> I've looked at this bug and it appears that nothing is wrong with 
> linux-headers. "Nothing is wrong" in that case means that we did not 
> introduce any bugs compared to the previous versions, I've verified that 
> zaptel driver behaves the same way under 2.6.14.
> 
> It appears that most of the packages containing the source of third-party 
> modules and using module-assistant prefer to install the modules into the 
> package themselves, relying on the KVERS variable, which contains full 
> version of the kernels (2.6.15-1-686 in this case). Some modules (like 
> zaptel), however, use the modules_install target from the upstream 
> Makefile, and that results in the problems described in the bug report. 
> Since currently we don't have a clear policy on packaging the kernel 
> modules (even though incidents like this get me more and more motivated to 
> start working on one), it is arguable whether it's a bug of linux-headers 
> or the zaptel-source package. I think we should be flexible and support 
> both ways for installation, especially taking into account that the fix is 
> pretty easy: adding a file 'localversion' containing the string -1-686 to 
> the /usr/src/linux-headers-2.6.15-1-686/ directory fixes the problem. I'll 
> bring up the issue on debian-kernel and see whether there will be any 
> objections to such a change.

As said, i believe Bastian Blank was working on implementing just that last
night.

Friendly,

Sven Luther



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



Bug#345640: xserver-xorg: New Xorg crashes with kernel 2.6.14, but not with 2.6.12

2006-01-04 Thread Patricio Rojo
Hi,

  Sorry for the delay in replying... I tried as you said and now Xorg
does work with the 2.6.14 kernel:D.
  However, I also noticed that this was a problem only in my Latitude
D610, but not in my office's laptop (Thinkpad R40), which works without
problem even with DRI enabled in xorg.conf and the X.14 kernel with the
newest xserver...

Thanks very much!!

  Pato

On Wed, 2006-01-04 at 16:52 +0100, Michel Dänzer wrote:
> On Tue, 2006-01-03 at 00:44 -0500, Patricio Rojo wrote:
> > Package: xserver-xorg
> > Version: 6.8.2.dfsg.1-11
> > Followup-For: Bug #345640
> > 
> > Hi,
> > 
> >   I think I run into this same problem... I upgraded the kernel from 
> > 2.6.12 to 2.6.14 maybe one hour after upgrading the xserver, so I was 
> > able to have a working xserver for a little bit, which hinted me to 
> > look for a better cause for the crash.
> >   What happens in my Dell Latitude D610 is that Xorg starts using 99.7% 
> > of the CPU and never shows anything else than a blank screen. Xorg 
> > cannot be killed or terminated (signals 9 or 15), but it can be reniced 
> > so that other programs can be run remotely without taking forever.
> > 
> >   The problem can be solved by either booting with kernel 2.6.12 or 
> > by downgrading the package xserver-xorg to 6.8.2.dfsg.1-11 (and only 
> > that package, without any of the other accompanying libs) 
> >   In summary xorg 6.9.0.dfsg.1-1 works only with kernel 2.6.12, while 
> > 6.8.2.dfsg.1-11 works with both kernels.
> 
> This is probably because X.Org 6.9 and kernel 2.6.14 support the DRI on
> Radeon 9500 and newer. Try not enabling the DRI, i.e. not loading the
> "dri" module in xorg.conf.
> 
> 



Bug#345557: source: debian/patches applies not clean.

2006-01-04 Thread Christian Perrier
> A patch-stamp will give you a little gain, but really little because quilt
> maintains a whole bunch of status. It knows where it stands in the patch set
> at every time. Try to travel into the .pc directory if you want to visit it.


So, Steve, do you think I can commit the change?




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



Bug#337974: i2o controller probe failed err -110

2006-01-04 Thread Sven Luther
On Wed, Jan 04, 2006 at 10:58:43PM -0600, Bill Gatliff wrote:
> Max:
> 
> maximilian attems wrote:
> 
> >use initramfs-tools this shouldn't fail:
> >apt-get install initramfs-tools
> >
> >add to /etc/kernel-img.conf
> >ramdisk = /usr/sbin/mkinitramfs /usr/sbin/mkinitrd
> >
> >good luck ;)
> >
> > 
> >
> 
> One other thing.  When I try to --purge the package, I get this:
> 
> # dpkg --purge linux-image-2.6.14-2-k7
> (Reading database ... 206960 files and directories currently installed.)
> Removing linux-image-2.6.14-2-k7 ...
> Searching for GRUB installation directory ... found: /boot/grub .
> The link /vmlinuz is a damaged link
> Removing symbolic link vmlinuz
> Unless you used the optional flag in lilo,
> you may need to re-run lilo
> The link /initrd.img is a damaged link
> Removing symbolic link initrd.img
> Unless you used the optional flag in lilo,
> you may need to re-run lilo
> Purging configuration files for linux-image-2.6.14-2-k7 ...
> Searching for GRUB installation directory ... found: /boot/grub .
> 
> ... and it just hangs there.

Oh, and BTW, this is : 

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

Friendly,

Sven Luther



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



Bug#344767: Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Sven Luther
reassign 344767 grub
thanks
On Thu, Jan 05, 2006 at 01:19:17AM +0100, Cesare Leonardi wrote:
> Sven Luther wrote:
> >It would be great if you could confirm the exact version of those two
> >packages, and could provide us some log of what is happening, as this bug
> >report doesn't seem to be very informative.
> 
> For me, i have provided information in bug #344767, as i explained in 
> the previous message: versions, logs, ecc.

I have now looked at this bug report, and it is indeed probable that it is a
bug in grub, who wants to write to stdout, which plays hell with the new
kernel-package debconfified due to messing up the debconf protocol.

Since policy mandates debconf for interaction, this is a RC grub bug, and a
proposed fix is have grub-updates output info on stderr instead.

There were some bugs we redirected to the grub guys, but i can't find them in
the BTS anymore, so reasigning the 344767 bug report to them.

Friendly,

Sven Luther



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



Bug#346049: sweep_0.8.4+0.9.0svn301-1(sparc/experimental): FTBFS: permission denied

2006-01-04 Thread Frank Lichtenheld
Package: sweep
Version: 0.8.4+0.9.0svn301-1
Severity: serious

Hi,

your package failed to build from source:

| Automatic build of sweep_0.8.4+0.9.0svn301-1 on odin by sbuild/sparc 69
| Build started at 20060105-0719
| **
| Checking available source versions...
| Fetching source files...
| Reading Package Lists...
| Building Dependency Tree...
| Need to get 1139kB of source archives.
| Get:1 http://sinclair.farm.ftbfs.de experimental/main sweep 
0.8.4+0.9.0svn301-1 (dsc) [902B]
| Get:2 http://sinclair.farm.ftbfs.de experimental/main sweep 
0.8.4+0.9.0svn301-1 (tar) [784kB]
| Get:3 http://sinclair.farm.ftbfs.de experimental/main sweep 
0.8.4+0.9.0svn301-1 (diff) [354kB]
| Fetched 1139kB in 0s (4361kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: libc6-dev | libc-dev, gcc, g++, make, dpkg-dev, debhelper (>> 
4.0.0), automake1.8, libgtk1.2-dev, libsndfile1-dev, gettext, libvorbis-dev, 
libmad0-dev, libsamplerate0-dev, libspeex-dev, libasound2-dev
[...]
| Toolchain package versions: libc6-dev_2.3.5-10 
linux-kernel-headers_2.6.13+0rc3-2 gcc-4.0_4.0.2-5 g++-4.0_4.0.2-5 
binutils_2.16.1cvs20051214-1 libstdc++6-4.0-dev_4.0.2-5 libstdc++6_4.0.2-5
| --
| dpkg-source: extracting sweep in sweep-0.8.4+0.9.0svn301
| su: Authentication service cannot retrieve authentication info.
| (Ignored)
| dpkg-buildpackage: source package is sweep
| dpkg-buildpackage: source version is 0.8.4+0.9.0svn301-1
| dpkg-buildpackage: host architecture sparc
|  /usr/bin/fakeroot debian/rules clean
| dh_testdir
| dh_testroot
| rm -f build-stamp
| # Add here commands to clean up after the build process.
| /usr/bin/make distclean
| make[1]: Entering directory `/build/buildd/sweep-0.8.4+0.9.0svn301'
| make[1]: *** No rule to make target `distclean'.  Stop.
| make[1]: Leaving directory `/build/buildd/sweep-0.8.4+0.9.0svn301'
| make: [clean] Error 2 (ignored)
| dh_clean
|  debian/rules build
| dh_testdir
| # Add here commands to compile the package
| touch configure.in && \
|   touch aclocal.m4 && \
|   touch configure
| ./configure --host=sparc-linux-gnu --build=sparc-linux-gnu --prefix=/usr 
--mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --enable-alsa
| /bin/sh: ./configure: Permission denied
| make: *** [config.status] Error 126
| **
| Build finished at 20060105-0720
| FAILED [dpkg-buildpackage died]

Full build log(s): 
http://experimental.ftbfs.de/build.php?&ver=0.8.4+0.9.0svn301-1&pkg=sweep&arch=sparc

Gruesse,
-- 
Frank Lichtenheld <[EMAIL PROTECTED]>
www: http://www.djpig.de/


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



Bug#337974: i2o controller probe failed err -110

2006-01-04 Thread Sven Luther
On Wed, Jan 04, 2006 at 10:58:43PM -0600, Bill Gatliff wrote:
> Max:
> 
> maximilian attems wrote:
> 
> >use initramfs-tools this shouldn't fail:
> >apt-get install initramfs-tools
> >
> >add to /etc/kernel-img.conf
> >ramdisk = /usr/sbin/mkinitramfs /usr/sbin/mkinitrd
> >
> >good luck ;)
> >
> > 
> >
> 
> One other thing.  When I try to --purge the package, I get this:
> 
> # dpkg --purge linux-image-2.6.14-2-k7
> (Reading database ... 206960 files and directories currently installed.)
> Removing linux-image-2.6.14-2-k7 ...
> Searching for GRUB installation directory ... found: /boot/grub .
> The link /vmlinuz is a damaged link
> Removing symbolic link vmlinuz
> Unless you used the optional flag in lilo,
> you may need to re-run lilo
> The link /initrd.img is a damaged link
> Removing symbolic link initrd.img
> Unless you used the optional flag in lilo,
> you may need to re-run lilo
> Purging configuration files for linux-image-2.6.14-2-k7 ...
> Searching for GRUB installation directory ... found: /boot/grub .
> 
> ... and it just hangs there.

Known grub bug, try playing with /etc/kernel/postrm.d/grub or whatever script
is responsible for this.

The workaround fix is for grub-update to do output to stderr and not stdout, i
believe, being exclusively ppc, i have not much knowledge or interest in grub.

Friendly,

Sven Luther



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



Bug#315641: status of slang 2 upgrade?

2006-01-04 Thread Nathanael Nerode
Hello!  Any luck with this?  There's only 10 source packages left using slang 
1 (apart from slang 1 itself) and this is one of them.

-- 
Nathanael Nerode  <[EMAIL PROTECTED]>

"It's just a goddamned piece of paper."
-- President Bush, referring to the US Constitution
http://www.capitolhillblue.com/artman/publish/article_7779.shtml


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



Bug#344767: Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Sven Luther
On Thu, Jan 05, 2006 at 03:51:54AM +0100, Cesare Leonardi wrote:
> Cesare Leonardi wrote:
> >I haven't tested 2.6.15 because it isn't available in my mirror yet. But 
> >the Nathanael posts tell us that the problem is still present in the 
> >latest kernel.
> >As soon as it will be available on the mirror i use, i'll test 2.6.15.
> 
> Ok, 2.6.15 is arrived.
> I've tryed to install linux-image-2.6.15-1-486 (version 2.6.15-1), then 
> to purge it and the operation failed. But now, it doesn't hang as stated 
> in the bug reports, but fails with an error:

Indeed, this is a grub RC bug, which need to fix their grub-update call from
/etc/kernel/*.d/grub or whatever scripts.

Friendly,

Sven Luther



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



Bug#340672: mozilla-firefox: keyboard focus (was okay in previous versions) - lost. AGAIN.

2006-01-04 Thread Eric Dorland
* Luke Kenneth Casson Leighton ([EMAIL PROTECTED]) wrote:
> okay - it's on input dialog boxes.
> 
> so, advogato.org diary i get white-on-white;
> it's everything.
> 
> all text-input boxes, and a few other areas
> ( i think - or maybe ) i get white-on-white.
> 
> how odd.

Can you give urls please.

-- 
Eric Dorland <[EMAIL PROTECTED]>
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C  2B0A 61E9 8ECF 16D9 70C6

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS d- s++: a-- C+++ UL+++ P++ L++ E++ W++ N+ o K- w+ 
O? M++ V-- PS+ PE Y+ PGP++ t++ 5++ X+ R tv++ b+++ DI+ D+ 
G e h! r- y+ 
--END GEEK CODE BLOCK--


signature.asc
Description: Digital signature


Bug#291058: report from a fresh machine / install

2006-01-04 Thread Josselin Mouette
Le jeudi 05 janvier 2006 à 06:45 +0100, Mohammed Adnène Trojette a
écrit :
> On Mon, Feb 07, 2005, Josselin Mouette wrote:
> > No, this isn't the case, especially if KDE is installed. The default 
> > being gnome-terminal is intentional.
> 
> Would it then be right to say that gnome-panel should suggest
> gnome-terminal, and not gnome-terminal | x-terminal-emulator ?

It would.
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
   `-  Debian GNU/Linux -- The power of freedom




Bug#41030: Boss owes you more money

2006-01-04 Thread Hoover W.
How have you been, [EMAIL PROTECTED]
 
!! IMPORTANT NOTICE !!

My Direct Line : 1*360*272*9646 

CALL FOR A DIPLOMA WITHIN 2 WEEKS.

Goodbye,
Hoover W.


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



Bug#148674: Employer is keeping money

2006-01-04 Thread Jan J. Bledsoe
Hows it been going, [EMAIL PROTECTED]
 
!! IMPORTANT NOTICE !!

My Direct Line : 1*360*272*9646 

CALL FOR A DIPLOMA WITHIN 2 WEEKS.

Thank you,
Jan J. Bledsoe


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



Bug#102921: Has your employer been keeping money?

2006-01-04 Thread Constance K.
Hows it been going?
 
!! IMPORTANT NOTICE !!

My Direct Line : 1*360*272*9646 

CALL FOR A DIPLOMA WITHIN 2 WEEKS.

Get back to you later,
Constance K.


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



Bug#345895: mysql-server-5.0: fails to start after upgrade from 4.1; README.Debian not helpful...

2006-01-04 Thread sean finney
hi david, caleb,

On Thu, Jan 05, 2006 at 12:39:47AM -0500, Caleb Epstein wrote:
>   The manual fix is to run "mysql_convert_table_format mysql" to
>   upgrade your "mysql" database to the MyISAM table format and
>   then the upgrade to 5.0 should go smoothly.
> 
>   If you have any data at risk, run "mysqldump --opt
>   --all-databases" so you can recover your data if something
>   tragic happens.
> 
>   Maintainers: perhaps the preinst should check for any
>   databases having .IS[MD] files and abort if they are found,
>   warning the user to run mysql_convert_table_format or possibly
>   running it for them before stopping and purging the old 4.1
>   server?

having spent a bit of time thinking about it, it's a touch more
complicated than it may seem at first glance.  here are some
potential gotchas:

- the best/only reliable place to run this is in new.preinst.
- as a result, we can only use files/scripts that exist in the
  older version.
- this also means we can not say "we will now fail and you should
  read the contents of /usr/share/doc/foo" (though we could refer
  them to rtfm since the tfm already exists)
- mysql_convert_table requires passing sensitive data on the cmdline

given all this i think the following should cover it:

[new.preinst]
- determine list of dbs/tables containing old format, ignore if empty
- debconf prompt to determine whether to abort/fix/ignore
- if fix
- start mysql (should be stopped by old.prerm)
- issue ALTER TABLE commands manually using debian-sys-maint
  account
- if debian-sys-maint can not connect, inform the
  admin and then fall back as if "abort" had been
  chosen.
- stop mysql server


so then the only thing that's missing is the actual code, and
some debconf templates.   christian: what do you think?

could one of you guys provide me with the output from find /var/lib/mysql,
to make my testing just a bit faster?


thanks
sean

-- 


signature.asc
Description: Digital signature


Bug#107658: ( 107658 ) Account Closing, verheyen

2006-01-04 Thread Randolph
philippe,

Visit the Iink beIow to begin.

107658.v1k1ng45.com/approved

reject - v 1 k 1 n g 4 5 . c o m / r e m

Sincerely,
Randolph



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



Bug#346048: quota fails in postinst

2006-01-04 Thread Bryan Donlan
Package: quota
Version: 3.13-4
Severity: grave
Justification: renders package unusable

When attempting to install quota into a new sid chroot, the following
error occurs:
Setting up quota (3.13-4) ...
*** glibc detected *** free(): invalid pointer: 0x080923a0 ***
dpkg: error processing quota (--configure):
 subprocess post-installation script returned error exit status 134
Errors were encountered while processing:
 quota
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- 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.12-1-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages quota depends on:
ii  debconf [debc 1.4.67 Debian configuration management sy
ii  e2fslibs  1.38+1.39-WIP-2005.12.10-2 ext2 filesystem libraries
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libcomerr21.38+1.39-WIP-2005.12.10-2 common error description library
ii  libwrap0  7.6.dbs-8  Wietse Venema's TCP wrappers libra

quota recommends no packages.

-- debconf information excluded


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



Bug#345895: mysql-server-5.0: fails to start after upgrade from 4.1; README.Debian not helpful...

2006-01-04 Thread Caleb Epstein
On Wed, Jan 04, 2006 at 09:35:16PM -0500, David Coe wrote:

> Thanks; yes, I see that my 'mysql' host and other system tables are
> .ISM and .ISD files; I assume that means ISAM.

Yep.  Thats what I had.

> I was able to downgrade to 4.1, which I figured would be safe since
> the 5.0 server had never actually started; I'm going to stay there
> for now.  If you'd like me to test a new upgrade path, I'll be happy
> to do that ; even if I were to lose all the mysql data, it would be
> no major loss.

The manual fix is to run "mysql_convert_table_format mysql" to
upgrade your "mysql" database to the MyISAM table format and
then the upgrade to 5.0 should go smoothly.

If you have any data at risk, run "mysqldump --opt
--all-databases" so you can recover your data if something
tragic happens.

Maintainers: perhaps the preinst should check for any
databases having .IS[MD] files and abort if they are found,
warning the user to run mysql_convert_table_format or possibly
running it for them before stopping and purging the old 4.1
server?

-- 
Caleb Epstein |  bklyn . org  | Hhh  waterbeds for cows
cae at| Brooklyn Dust | eleet  Culus: why would a cow need
bklyn dot org |   Bunny Mfg.  |a waterbed?   cas:  To be comfy warm


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



Bug#316922: Bug #316922 RFH: lsdvd -- read the contents of a DVD

2006-01-04 Thread Jake Thebault-Spieker
I would very much like to help with lsdvd. I do have a DVD-ROM drive, but I'm 
not much of a programmer. I've taken a C++ class at school, and I've taken an 
online course in C, but nothing to this level. I think I can learn pretty 
quickly, and I'd be more than happy to act as a tester.
-- 
Numbers rule the Universe.
--The Pythagoreans

Carpe Aptenodytes(Seize the Penguins),
Jake Thebault-Spieker


-BEGIN PGP PUBLIC KEY BLOCK-
Version: GnuPG v1.4.2 (GNU/Linux)

mQGiBEN4lkcRBADUBxR2wCwXJif1KHphgDP9y5eh7Ybay//K8/FXOyGLVGWMejHC
jAQgiAhO+knt4ympbmA2FGdnC9o2xET5QpzUyot13vCALzz1Ww6PeBDlt4SEQ+HS
nBdULfBydpzuqnABCl61o6KMMfHslZfVReOJiVWVjvO68yOYlsPBvs0M3wCgnsrB
w7yzksOdkBozsbaiEdf3acMEAMLWpQo/tn7cPckFA8EamkcBvTCG6GYnjn6Gr574
7P0zxskfkhS7/YRVYnM9qKgN/B9FAe2ipS452mG+DDgtE/9hcn2qvFAha2DBz4UB
a30b0dCjp6ePhQVLLN/vDTTKKiv1S8/md09L73e3meGhlFH4fB1McjJfqjeGPZa9
BFfuA/9ZadXXgDxwowJlP/NHWOVkMkDif8QrDzYlAVkPNQICuFs8XvtB7rY6B9eX
DyKs3fb8Lwekaqps0G9a9uWtP5x1LcyDFSQoDSCs6cUpFizeuKP5H01MyPqMszy3
dbBA4K0gb8WXbDUT0E0g4Nqu1b3eQCfk0GEU8+90dItPkcXrm7QuSmFrZSBUaGVi
YXVsdC1TcGlla2VyIDxqYWtlQHNwaWVrZXJmYW1pbHkuY29tPohbBBMRAgAbBQJD
eJZHBgsJCAcDAgMVAgMDFgIBAh4BAheAAAoJEM1vY6N4t+DQ6yMAni6fiiKHcD3V
0ggb5ZXhmptX2bMtAJ9mIKixBvLx9tg19l830v5f0Rh6b7kEDQRDeJZbEBAA5zLR
wTesp0b94a9e1dPqRKokm/IZ4EzfxtQBab/2LVgrFFUgMdVVouoUjsAjhITUgysI
rrTN2lZe6OMFwwKf+WnFNmplthTXljmemnsv7rKXpK8y3gi0Pz+lH7zNiVK54nUi
NnqPHakuIR31LGBtjHnHZvus46xiOlFlus1u6pMl5epIjXU8x+QN0rcUcIJ7jP6q
M+1ycRYLraSW6D6o7ESmLJAn1vOHOJ8VNU9VbPSWVhXEma1mF6Es4pNfJQCZY5Wh
sL9+MSw8/KMdAxdK+XPaYt3FOpucB3ndPTqO40UoivPafVYVtC0JZtkDbm/AYPgm
BtDKSePvlU3qRTRZXdTnDW45sW8L1OgquC491j7S6BaaQ6UsG0Kg5Dz9aj1MnqoQ
G/mhWMUgykBndxz47MykkgwuVL9tcB42krmaIkchCMXLwp/JWgDUd7KRN1HUXQFJ
W7NAW40eRZB9BNcLR6M14oJkpopNJ1iychuWAwjzgATGeSSDawhbCFyAsH5c0zmi
hRb850pylXXaMxeWkP3nelVB6WaDdvPNsEA7HZsh+Fjqg6mQ56IqNTYhBLSXPT8p
XjZ5jgzPxb+kzlVmu4YTW0z/kFh0i6RfCy9L1yDO/EeGH4td2qyUykr0v2TWqaSk
0JdskMtH1ULra/in4/wlXG8wWwenvTGKAldE3acAAwUP/RITjdXpPBg/syH+REfR
igE4He/F+kR+IdytfemckU49j4TDbRQznPud+ut0RXAvWUybLUtMtm5UsfG8jOYU
rblx4O2d66AVMRTRITS+QYWwMYZgbSw5UHKTrIhLj9P+vX5jGnaq1npO6ikV+nw4
LPvklczH9JJvlIg3cApYEbZ8XYSiUNDSu0OWDCmiYQ3XlK4d+KHTfSSCcpEv1N01
g00bP6CkenRoIdwQlq1F0BA0Z3MUsoG4zZhydvWko3EKaOZztbCCj88hh1/DFx0m
Vbd0aFvmLLoiIe0j/YKnJEFo5i2KcN6nkaL2tLlEa1caUIPtoIITl/D2WLQoHbFv
Va0YZLGXoGx3JVoOWVxG6jK2z/Q5sQKRIPESJvfkfZfBfEfFU1oOOW3d6kOcs86N
VlOoufCq2pmkxohftbpxsOKqxO+rJYGG4cLALNrzlSteCMGDhHQ9wwpRvgmLY166
HbqhmxjkKvALGkyjrMXd/8iA/FTIRM8BUPVMbunIuCa3F0lv+HbpQi32lkOeY1l2
op7oWieXj8RWSTtDJiPnguMpRfLcZoK/qglpuiFEhsXxKAFfvJC84IBlAwQqI+PC
f1szDGD7wiR55ha5RUw8TQ6CJ7f9nhr5Tv+NJXEnPM4U8h52sxBZPwo55dxgd82A
tUzWzMjahLyKJpNnS4TiS046iEYEGBECAAYFAkN4llsACgkQzW9jo3i34NB54QCg
grT8zmBAHdc35raIz9TFhEu0hJcAni0/OqyrrwBpzOjAM1Wbs5KlONqo
=TcaS
-END PGP PUBLIC KEY BLOCK-


pgp15Fxj5zBvf.pgp
Description: PGP signature


Bug#322017: reopen 322017 !

2006-01-04 Thread Alex Roitman
reopen 322017 !
thanks

Reopening the bug as it still exists in sid.
Alex

-- 
Alexander Roitman   http://www.gramps-project.org



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



Bug#291058: report from a fresh machine / install

2006-01-04 Thread Mohammed Adnène Trojette
On Mon, Feb 07, 2005, Josselin Mouette wrote:
> No, this isn't the case, especially if KDE is installed. The default 
> being gnome-terminal is intentional.

Would it then be right to say that gnome-panel should suggest
gnome-terminal, and not gnome-terminal | x-terminal-emulator ?

-- 
adn
Mohammed Adnène Trojette



Bug#346047: aptitude: Public key cannot be verified

2006-01-04 Thread Vincent Lönngren
Package: aptitude
Version: 0.4.1-1
Severity: normal

Since yesterday, I get a message during package list update that the 
following signature can not be verified because the public key is not 
available: 010908312D230C5F. Almost all packages are then considered to 
be from a not trusted source.

I'm not sure the bug is actually in aptitude, but I don't know where 
else to put it.

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.43 Advanced front-end for dpkg
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.16-2   type-safe Signal Framework for C++
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do  (no description available)

-- no debconf information


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



Bug#346046: gnomebaker: does not pause to insert the blank when copying audio CD

2006-01-04 Thread Alex Roitman
Subject: gnomebaker: does not pause to insert the blank when copying audio CD
Package: gnomebaker
Version: 0.5.0-6
Severity: normal

*** Please type your report below this line ***

When I use "Copy audio CD" action, and I only have a single CD
drive on the box, I would expect the program to pause for me to
remove the CD I just extracted audio from and insert the blank
CD.

Currently, gnomebaker simply runs cdda2wav and then cdrecord
right away. cdrecord does reload the media, but one has to be
extremely quick about it, and even then it's almost impossible
to switch CD :-)

Please add a pause and a confirm dialog, similar to what happens
when audio CD is made from existing tracks: "Please insert blank
CD into the drive" with the OK button.

Thanks,
Alex

-- 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, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages gnomebaker depends on:
ii  cdda2wav  4:2.01+01a03-4 Creates WAV files from audio CDs
ii  cdrdao1:1.2.1-2  Disk-At-Once (DAO) recording of au
ii  cdrecord  4:2.01+01a03-4 command line CD writing tool
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.10.1-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.1-1   The Bonobo UI library
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libgconf2-4   2.10.1-6   GNOME configuration database syste
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.4-2The GLib library of C routines
ii  libgnome2-0   2.10.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.10.2-2   A powerful object-oriented display
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgstreamer0.8-0 0.8.11-2   Core GStreamer libraries, plugins,
ii  libgtk2.0-0   2.8.9-2The GTK+ graphical user interface 
ii  libice6   6.9.0.dfsg.1-1 Inter-Client Exchange library
ii  liborbit2 1:2.12.4-1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.10.1-2   Layout and rendering of internatio
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.9.0.dfsg.1-1 X Window System Session Management
ii  libx11-6  6.9.0.dfsg.1-1 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-1 X Window System miscellaneous exte
ii  libxi66.9.0.dfsg.1-1 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-1 X Window System multi-head display
ii  libxml2   2.6.22-2   GNOME XML library
ii  libxrandr26.9.0.dfsg.1-1 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  mkisofs   4:2.01+01a03-4 Creates ISO-9660 CD-ROM filesystem
ii  zlib1g1:1.2.3-9  compression library - runtime

Versions of packages gnomebaker recommends:
ii  dvd+rw-tools   5.21.4.10.8-4 DVD+-RW/R tools
ii  gstreamer0.8-flac  0.8.11-3  FLAC plugin for GStreamer
ii  gstreamer0.8-mad   0.8.11-3  MAD MPEG audio decoder plugin for 
ii  gstreamer0.8-vorbis0.8.11-3  Vorbis plugin for GStreamer

-- no debconf information

-- 
Alexander Roitman   http://www.gramps-project.org



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



Bug#345721: gnome panel crashed due to scim?

2006-01-04 Thread Ming Hua
On Mon, Jan 02, 2006 at 09:21:05PM -0600, minghua wrote:
> 
> On Tue, Jan 03, 2006 at 11:41:33AM +0900, Osamu Aoki wrote:
> > Package: scim
> > Version: 1.4.2-1
> > Severity: normal
> > 
> > gnome-panel crashed and I got reply from gnome people as:
> 
> I'll definitely try to diagnose this later.

I can reproduce this, although my symptom is usually hang rather than
crash.

I hope this is related either to the libaspell15 issue (already fixed by
aspell 0.60.4-2 in unstable) or the libfam0 issue (should be worked
around by manually removing libfam0c102 and installing libfam0).  I'm
kind of busy this week to pin down this myself, but if anyone can
upgrade to the latest unstable and see if this bug is fixed, I'll
appreciate the help.

Ming
2006.01.04


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



Bug#322017: gnomebaker: Status bar in for extracting an audio CD doesn't show the percentage correctly

2006-01-04 Thread Alex Roitman
> Version 0.5.0 have improved a lot the progress dialog and now
> correctly displays the progress of audio extraction.

Not quite. With version 0.5.0-6 I still see the percentage
go to zero when new track is started to be extracted.
At the same time, the label under the progress bar says:
   "Extracting audio track 1"
all the time, which is incorrect.

The correct behavior would be one of these:
1. Keep the total progress: consider N tracks == 100%
   and report (i-1)/N + cdda2wav%/N where i is this
   track's number. Currently the (i-1)/N part is forgotten.
   The label needs to be updated as well.
2. Keep per-track progress as is, but update the label
   so that it says "Extracting audio track i"

Alex

-- 
Alexander Roitman   http://www.gramps-project.org



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



Bug#346045: smbd segfaults when accessed from win2k sp4 client

2006-01-04 Thread Jonathan Matthew
Subject: samba: segfaults when accessed from win2k sp4 client
Package: samba
Version: 3.0.21a-1
Severity: normal

When I access samba using a Windows 2000 SP 4 client, smbd crashes
during the authentication process.  I don't see the same crash using
smbclient.  Setting 'log level = 10' in smb.conf results in the
following interesting log data:

[2006/01/05 13:31:21, 10] libsmb/ntlmssp.c:ntlmssp_server_auth(730)
  ntlmssp_server_auth: Failed to create NTLM session key.
[2006/01/05 13:31:21, 5] libsmb/ntlmssp.c:ntlmssp_server_auth(756)
  server session key is invalid (len == 0), cannot do KEY_EXCH!
[2006/01/05 13:31:21, 3] libsmb/ntlmssp_sign.c:ntlmssp_sign_init(332)
  NTLMSSP Sign/Seal - Initialising with flags:
[2006/01/05 13:31:21, 3] libsmb/ntlmssp.c:debug_ntlmssp_flags(63)
  Got NTLMSSP neg_flags=0x600082b5
NTLMSSP_NEGOTIATE_UNICODE
NTLMSSP_REQUEST_TARGET
NTLMSSP_NEGOTIATE_SIGN
NTLMSSP_NEGOTIATE_SEAL
NTLMSSP_NEGOTIATE_LM_KEY
NTLMSSP_NEGOTIATE_NTLM
NTLMSSP_NEGOTIATE_ALWAYS_SIGN
NTLMSSP_NEGOTIATE_128
NTLMSSP_NEGOTIATE_KEY_EXCH
[2006/01/05 13:31:21, 5] libsmb/ntlmssp_sign.c:ntlmssp_sign_init(449)
  NTLMSSP Sign/Seal - using NTLM1
[2006/01/05 13:31:21, 0] lib/fault.c:fault_report(36)
  ===
[2006/01/05 13:31:21, 0] lib/fault.c:fault_report(37)
  INTERNAL ERROR: Signal 11 in pid 26528 (3.0.21a-Debian)
  Please read the Trouble-Shooting section of the Samba3-HOWTO
[2006/01/05 13:31:21, 0] lib/fault.c:fault_report(39)

  From: http://www.samba.org/samba/docs/Samba3-HOWTO.pdf
[2006/01/05 13:31:21, 0] lib/fault.c:fault_report(40)
  ===
[2006/01/05 13:31:21, 0] lib/util.c:smb_panic2(1544)
  smb_panic(): calling panic action [/usr/share/samba/panic-action 26528]
[2006/01/05 13:31:21, 0] lib/util.c:smb_panic2(1552)
  smb_panic(): action returned status 0
[2006/01/05 13:31:21, 0] lib/util.c:smb_panic2(1554)
  PANIC: internal error
[2006/01/05 13:31:21, 0] lib/util.c:smb_panic2(1562)
  BACKTRACE: 15 stack frames:
   #0 /usr/sbin/smbd(smb_panic2+0x7b) [0x801d973b]
   #1 /usr/sbin/smbd(smb_panic+0x11) [0x801d9961]
   #2 /usr/sbin/smbd [0x801c4816]
   #3 [0xe420]
   #4 /usr/sbin/smbd(ntlmssp_sign_init+0xda) [0x800dfcba]
   #5 /usr/sbin/smbd [0x800dd33d]
   #6 /usr/sbin/smbd(ntlmssp_update+0x21f) [0x800dc2ff]
   #7 /usr/sbin/smbd(auth_ntlmssp_update+0x39) [0x8021aa69]
   #8 /usr/sbin/smbd(reply_sesssetup_and_X+0x840) [0x80078c60]
   #9 /usr/sbin/smbd [0x800a338c]
   #10 /usr/sbin/smbd(process_smb+0x1a4) [0x800a3784]
   #11 /usr/sbin/smbd(smbd_process+0x1da) [0x800a47ca]
   #12 /usr/sbin/smbd(main+0x82b) [0x8026b38b]
   #13 /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xd0) [0xb7c3ceb0]
   #14 /usr/sbin/smbd [0x8003e011]

I'm reasonably (but not completely) sure that this problem only started
with the recent samba package update.

This trivial patch seems to fix it for me:

--- samba-3.0.21a.orig/source/libsmb/ntlmssp.c  2006-01-05 14:05:22.0 
+1000
+++ samba-3.0.21a/source/libsmb/ntlmssp.c   2006-01-05 14:02:22.0 
+1000
@@ -389,7 +389,7 @@
   to do this for the LM_KEY.
*/
 
-   if (ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_LM_KEY) {
+   if (ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_LM_KEY && 
ntlmssp_state->session_key.data) {
if (ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_128) {
;
} else if (ntlmssp_state->neg_flags & NTLMSSP_NEGOTIATE_56) {


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

Versions of packages samba depends on:
ii  debconf [debc 1.4.67 Debian configuration management sy
ii  libacl1   2.2.34-1   Access control list shared library
ii  libattr1  2.4.25-1   Extended attribute shared library
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libcomerr21.38+1.39-WIP-2005.12.10-2 common error description library
ii  libcupsys21.1.23-15  Common UNIX Printing System(tm) - 
ii  libkrb53  1.4.3-5MIT Kerberos runtime libraries
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libpam-module 0.79-3 Pluggable Authentication Modules f
ii  libpam-runtim 0.79-3 Runtime support for the PAM librar
ii  libpam0g  0.79-3 Pluggable Authentication Modules l
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  logrotate 3.7.1-2Log rotation utility
ii  lsb-base  3.0-13 Linux Standard Base 3.0 init scrip
ii  netbase   4.23   Basi

Bug#346044: 'man linHDD' typos: "fontend", "frontent" and "commandline"

2006-01-04 Thread A Costa
Package: linhdd
Version: 0.2-1
Severity: minor
Tags: patch


Found some typos in '/usr/share/man/man1/linHDD.1.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.14-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages linhdd depends on:
ii  hdparm6.3-3  tune hard disk parameters for high
ii  python2.3.5-3An interactive high-level object-o
ii  python-gtk2   2.6.3-2Python bindings for the GTK+ widge

linhdd recommends no packages.

-- no debconf information
--- linHDD.12005-12-27 21:37:12.0 -0500
+++ /tmp/linHDD.1   2006-01-05 00:19:35.0 -0500
@@ -1,4 +1,4 @@
-.TH LINHDD 1 "2005-12-26" "0.2" "cfdisk/df/hdparm/mkfs frontent"
+.TH LINHDD 1 "2005-12-26" "0.2" "cfdisk/df/hdparm/mkfs frontend"
 
 .SH NAME
 LINHDD \- GTK+ frontend for cfdisk/df/hdparm/mkfs
@@ -7,7 +7,7 @@
 .B linHDD
 
 .SH DESCRIPTION
-For those a bit weary of the commandline, perhaps a bit miffed by big problems
+For those a bit weary of the command line, perhaps a bit miffed by big problems
 caused by little typos \- but mostly for the many newcomers that have yet to
 memorize the multitude of wondrous console-based commands, I give you this tool
 to ease your life just a little bit.
@@ -17,7 +17,7 @@
 matter of adding cat /proc/scsi/scsi stuff. But if I can't test it then I
 cannot, in good conscious, write it.
 
-linHDD acts as a fontend for some basic Linux tools, which should all be on 
your
+linHDD acts as a frontend for some basic Linux tools, which should all be on 
your
 machine already. hdparm gives the detailed drive information shown in the large
 textbox. Also enables testing the HDD read speed in MB/s. df, (which lists
 mounted devices), mkfs and its relatives for formatting (supporting ext2, ext3,


Bug#346043: Javascript bug in pkgreport.cgi

2006-01-04 Thread H. S. Teoh
Package: www.debian.org
Severity: minor

Hi,

pkgreport.cgi generates problematic JavaScript code: in function
pagemain(), toggle(2) is called but there is no element with id="a_2".
This causes Opera and Firefox to generate a Javascript error
(getElementById() returns null, which has no property .style.display). I
didn't test other browsers.

As a temporary fix, I used User Javascript (Opera's version of
GreaseMonkey) to use this version of toggle() instead:

function toggle(i) {
var a = document.getElementById("a_" + i);
if (a) {
if (a.style.display == "none") {
a.style.display = "";
} else {
a.style.display = "none";
}
}
}

Admittedly, this doesn't fix the real problem, but I wasn't sure that
pkgreport.cgi wouldn't sometimes generate a page where the toggle(2)
call is necessary. From looking at the HTML, it seems that it's caused
by an off-by-1 error (is it generated by a loop in pkgreport.cgi?).

This error is mostly harmless, but it's probably a good idea to fix it.
:-)


--T


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



Bug#346042: man page in wrong section

2006-01-04 Thread Graham Wilson
Package: debfoster
Version: 2.5-5
Severity: minor

debfoster's man page is in section 8; however, the binary is in
/usr/bin. It would make more sense for the man page to be in section 1,
or for the binary to be in /usr/sbin. In fact, the latter would probably
be more appropriate, since the program does not work for me as a
non-root user.

-- 
gram


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



Bug#337974: i2o controller probe failed err -110

2006-01-04 Thread Bill Gatliff

Max:

maximilian attems wrote:


use initramfs-tools this shouldn't fail:
apt-get install initramfs-tools

add to /etc/kernel-img.conf
ramdisk = /usr/sbin/mkinitramfs /usr/sbin/mkinitrd

good luck ;)

 



One other thing.  When I try to --purge the package, I get this:

# dpkg --purge linux-image-2.6.14-2-k7
(Reading database ... 206960 files and directories currently installed.)
Removing linux-image-2.6.14-2-k7 ...
Searching for GRUB installation directory ... found: /boot/grub .
The link /vmlinuz is a damaged link
Removing symbolic link vmlinuz
Unless you used the optional flag in lilo,
you may need to re-run lilo
The link /initrd.img is a damaged link
Removing symbolic link initrd.img
Unless you used the optional flag in lilo,
you may need to re-run lilo
Purging configuration files for linux-image-2.6.14-2-k7 ...
Searching for GRUB installation directory ... found: /boot/grub .

... and it just hangs there.


b.g.

--
Bill Gatliff
[EMAIL PROTECTED]



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



Bug#337974: i2o controller probe failed err -110

2006-01-04 Thread Bill Gatliff

Max:

maximilian attems wrote:




use initramfs-tools this shouldn't fail:
apt-get install initramfs-tools

add to /etc/kernel-img.conf
ramdisk = /usr/sbin/mkinitramfs /usr/sbin/mkinitrd

good luck ;)

 




I patched up my /etc/lvm/lvm.config and now the kernel package installs 
clean.  It won't successfully boot, however.  It hangs with:


...
Waiting for /sys/block/sdb/dev
...
/sys/block/sdb/dev seems to be down
...


The /dev/sdb device is where my root filesystem is at.  Not quite sure 
why the kernel can't find it...


Any ideas?


b.g.

--
Bill Gatliff
[EMAIL PROTECTED]



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



Bug#346041: All 2.3.0-* versions are affected

2006-01-04 Thread H. S. Teoh
found 346041 2.3.0-1 2.3.0-2
thanks

Prevent bad version of cons from making it into a release. :-/


--T


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



Bug#321545: patch closing RC bugs on iripdb

2006-01-04 Thread Chris Hanson
On 12/13/05, Alexandre Fayolle <[EMAIL PROTECTED]> wrote:
> tag 341341 +patch
> tag 321545 +patch
> thanks
>
> The attached patch closes the 2 RC bugs on iripdb. Could you please
> apply it and upload the resulting package? These RC bugs currently block
> iripdb from getting in testing and make it uninstallable in sid.
>
> Thanks for your time.

Thanks for the patch.  I built the new package and uploaded it a few
minutes ago.



Bug#252101: gromacs-dev should depends on more packages

2006-01-04 Thread LI Daobing
On 1/5/06, Nicholas Breen <[EMAIL PROTECTED]> wrote:
> It's not directly necessary for gromacs-dev to operate, so it shouldn't
> be a strict dependency -- perhaps a Recommends would make more sense.
> For building the entire package, sfftw-dev and so forth are already
> Build-Depends.

I don't think so, for example, I have a program need the xtc io part,
so I need to build-depends on gromacs-dev, but you will find it's not
enough, I also need sfftw-dev and something others to build it.

a similar case:

 $ apt-cache show libgtk2.0-dev | grep Depends
Depends: libgtk2.0-0 (= 2.8.9-2), libglib2.0-dev (>= 2.7.1),
libpango1.0-dev (>= 1.10.0-2), libatk1.0-dev (>= 1.6.1-2),
libcairo2-dev, libx11-dev, libxext-dev, libxinerama-dev, libxi-dev,
libxrandr-dev, libxcursor-dev, libxfixes-dev, pkg-config

--
LI Daobing



Bug#345918: Possible solution

2006-01-04 Thread Jurij Smakov

Hi,

I've looked at this bug and it appears that nothing is wrong with 
linux-headers. "Nothing is wrong" in that case means that we did not 
introduce any bugs compared to the previous versions, I've verified that 
zaptel driver behaves the same way under 2.6.14.


It appears that most of the packages containing the source of third-party 
modules and using module-assistant prefer to install the modules into the 
package themselves, relying on the KVERS variable, which contains full 
version of the kernels (2.6.15-1-686 in this case). Some modules (like 
zaptel), however, use the modules_install target from the upstream 
Makefile, and that results in the problems described in the bug report. 
Since currently we don't have a clear policy on packaging the kernel 
modules (even though incidents like this get me more and more motivated to 
start working on one), it is arguable whether it's a bug of linux-headers 
or the zaptel-source package. I think we should be flexible and support 
both ways for installation, especially taking into account that the fix is 
pretty easy: adding a file 'localversion' containing the string -1-686 to 
the /usr/src/linux-headers-2.6.15-1-686/ directory fixes the problem. I'll 
bring up the issue on debian-kernel and see whether there will be any 
objections to such a change.


Best regards,

Jurij Smakov[EMAIL PROTECTED]
Key: http://www.wooyd.org/pgpkey/   KeyID: C99E03CC


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



Bug#346041: Cons dependency scanning broken

2006-01-04 Thread H. S. Teoh
Package: cons
Version: 2.3.0-2
Severity: serious

I just found out that the dependency code in Cons 2.3.0 is broken. It
was working in 2.2.0. If anyone has any dependency problems with cons,
downgrade to 2.2.0-4.


--T


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



Bug#196545: mutt: sorting methods broken

2006-01-04 Thread Michael Deegan
Package: mutt
Version: 1.5.11-4
Followup-For: Bug #196545

FWIW I'm also seeing badly sorted results when attempting to sort by sPam
rating.

If it matters, my .muttrc contains:

   spam "X-Spam-(Status: (Yes|No), score=|Score: )(-?[0-9.]+)" "%3"

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

Versions of packages mutt depends on:
ii  exim4-daemon-light [mail-tran 4.60-1 lightweight exim MTA (v4) daemon
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libdb4.3  4.3.29-3   Berkeley v4.3 Database Libraries [
ii  libgnutls12   1.2.9-2the GNU TLS library - runtime libr
ii  libidn11  0.5.18-1   GNU libidn library, implementation
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libsasl2  2.1.19-1.7 Authentication abstraction library

Versions of packages mutt recommends:
ii  locales   2.3.5-8GNU C Library: National Language (
ii  mime-support  3.35-1 MIME files 'mime.types' & 'mailcap

-- no debconf information

-- 
__ 
Michael Deegan, Unix Server Administrator, Murdoch University. Ph +61893606967


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



Bug#339829: potential patch improvements

2006-01-04 Thread Paul Wise
On Wed, 2006-01-04 at 09:33 -0500, Justin Pryzby wrote:

> > > Packages for which this is a false-positive (such as slash, gnudip,
> > > and bake)
> > 
> > These can be eliminated by checking for a url in the description too.
>
> It reduces some true positives also: abcmidi, achims-guestbook,
> airsnort, alsa-base, anjuta, ant, apache, apg, ardour-doc, aspell-bg,
> atlc, audacity, etc.

airsnort anjuta apg aspell-bg ant apache atlc audacity: are detected by
my last-line-has-url-isn't-homepage test.

abcmidi achims-guestbook alsa-base: Perhaps I can extend my test to take
into account the last paragraph (merged into one line) instead of the
last line.

ardour-doc: I should add the phrase "further information" to your test.
added.

> > How about the attached combination check - does my check and also does
> > yours, with the changes that it checks a couple of other words, and
> > checks for a url in the description too.
> 
> > $description =~ m/(homepage|webpage|website)/is
> Good, please also add "|URL|upstream"

Added, along with some other phrases I found.

> (see asterisk-sounds-extra).

That would have been caught by my last-line-has-url-isn't-homepage test.

> > && $description =~ m/[a-z]+:\/\// 
> This is to reduce false positives, right?  I don't like it.  If this
> were an ' || ' condition, it would be great.

If it were an || then any package with a URL in the description would
trigger the test, which is probably a bad idea, because not all URLs
will be homepages.

> Or is the contents of this "description" variable the control field
> without the first column of blanks?  I guess that is probably it.

Correct.

I'll add the "last-para instead of last-line" change and then send an
updated patch.

Of course, all this would be simpler if there was a Homepage field.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#341705:

2006-01-04 Thread Fredrik Soderblom
Hi,

I have the exact same problem with 5.0.18, on INSERT DELAYED server crashes
and restarts, without it it seems to be working fine.

[EMAIL PROTECTED]:~$ uname -a
Linux elak 2.6.14.3-grsec #1 PREEMPT Fri Dec 2 14:59:02 CET 2005 i686 GNU/Linux

[EMAIL PROTECTED]:~$ dpkg -l mysql-server-5*
ii  mysql-server-5 5.0.18-1   mysql database server binaries

Jan  5 03:56:04 elak mysqld[20351]: mysqld got signal 11;
Jan  5 03:56:04 elak mysqld[20351]: This could be because you hit a bug. It is 
also possible that this binary
Jan  5 03:56:04 elak mysqld[20351]: or one of the libraries it was linked 
against is corrupt, improperly built,
Jan  5 03:56:04 elak mysqld[20351]: or misconfigured. This error can also be 
caused by malfunctioning hardware.
Jan  5 03:56:04 elak mysqld[20351]: We will try our best to scrape up some info 
that will hopefully help diagnose
Jan  5 03:56:04 elak mysqld[20351]: the problem, but since we have already 
crashed, something is definitely wrong
Jan  5 03:56:04 elak mysqld[20351]: and this may fail.
Jan  5 03:56:04 elak mysqld[20351]: 
Jan  5 03:56:04 elak mysqld[20351]: key_buffer_size=16777216
Jan  5 03:56:04 elak mysqld[20351]: read_buffer_size=131072
Jan  5 03:56:04 elak mysqld[20351]: max_used_connections=9
Jan  5 03:56:04 elak mysqld[20351]: max_connections=100
Jan  5 03:56:04 elak mysqld[20351]: threads_connected=2
Jan  5 03:56:04 elak mysqld[20351]: It is possible that mysqld could use up to 
Jan  5 03:56:04 elak mysqld[20351]: key_buffer_size + (read_buffer_size + 
sort_buffer_size)*max_connections = 233983 K
Jan  5 03:56:04 elak mysqld[20351]: bytes of memory
Jan  5 03:56:04 elak mysqld[20351]: Hope that's ok; if not, decrease some 
variables in the equation.
Jan  5 03:56:04 elak mysqld[20351]: 
Jan  5 03:56:04 elak mysqld[20351]: thd=0x8ae14d8
Jan  5 03:56:04 elak mysqld[20351]: Attempting backtrace. You can use the 
following information to find out
Jan  5 03:56:04 elak mysqld[20351]: where mysqld died. If you see no messages 
after this, something went
Jan  5 03:56:04 elak mysqld[20351]: terribly wrong...
Jan  5 03:56:04 elak mysqld[20351]: Cannot determine thread, fp=0x9cae5f98, 
backtrace may not be correct.
Jan  5 03:56:04 elak mysqld[20351]: Stack range sanity check OK, backtrace 
follows:
Jan  5 03:56:04 elak mysqld[20351]: 0x818c8fb
Jan  5 03:56:04 elak mysqld[20351]: 0xa0b23668
Jan  5 03:56:04 elak mysqld[20351]: (nil)
Jan  5 03:56:04 elak mysqld[20351]: 0x81ecbef
Jan  5 03:56:04 elak mysqld[20351]: 0x81a1f7c
Jan  5 03:56:04 elak mysqld[20351]: 0x81a4d58
Jan  5 03:56:04 elak mysqld[20351]: 0x81a5319
Jan  5 03:56:04 elak mysqld[20351]: 0x81a62fd
Jan  5 03:56:04 elak mysqld[20351]: 0x81a6ba5
Jan  5 03:56:04 elak mysqld[20351]: 0xa0b1dcfd
Jan  5 03:56:04 elak mysqld[20351]: 0xa096019e
Jan  5 03:56:04 elak mysqld[20351]: New value of fp=(nil) failed sanity check, 
terminating stack trace!
Jan  5 03:56:04 elak mysqld[20351]: Please read 
http://dev.mysql.com/doc/mysql/en/Using_stack_trace.html and follow 
instructions on how to resolve the stack trace. Resolved
Jan  5 03:56:04 elak mysqld[20351]: stack trace is much more helpful in 
diagnosing the problem, so please do 
Jan  5 03:56:04 elak mysqld[20351]: resolve it
Jan  5 03:56:04 elak mysqld[20351]: Trying to get some variables.
Jan  5 03:56:04 elak mysqld[20351]: Some pointers may be invalid and cause the 
dump to abort...
Jan  5 03:56:04 elak mysqld[20351]: thd->query at 0x8b05c68 = INSERT DELAYED 
INTO syslog (facility, priority,  date, time, host, message) 
VALUES('daemon','err', '2006-01-05', '03:50:11', 'elak', 'om_mysql_write: 46 
messages were lost due to lack of connection')
Jan  5 03:56:04 elak mysqld[20351]: thd->thread_id=24

/f


pgpXznEXZhNgh.pgp
Description: PGP signature


Bug#346040: add local backup support to duplicity configuration

2006-01-04 Thread Finn Smith

Package: backupninja
Version: 0.9.1-1
Severity: wishlist

Although duplicity itself supports backing up to locally mounted  
filesystems, backupninja does not currently support this  
functionality via its conf files.


This configuration would be similar to that of rdiff -- setting the  
"type" variable to one of either "local" or "remote" would change the  
behavior. The example.dup file in /usr/share/doc/duplicity contains  
the phrase "(if type = remote)" but this appears to have been left  
over from another conf file it was copied and pasted from?


-F


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



Bug#344767: Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Cesare Leonardi

Cesare Leonardi wrote:
I haven't tested 2.6.15 because it isn't available in my mirror yet. But 
the Nathanael posts tell us that the problem is still present in the 
latest kernel.

As soon as it will be available on the mirror i use, i'll test 2.6.15.


Ok, 2.6.15 is arrived.
I've tryed to install linux-image-2.6.15-1-486 (version 2.6.15-1), then 
to purge it and the operation failed. But now, it doesn't hang as stated 
in the bug reports, but fails with an error:


(Reading database ... 83162 files and directories currently installed.)
Removing linux-image-2.6.15-1-486 ...
Running postrm hook /sbin/update-grub .
Searching for GRUB installation directory ... found: /boot/grub
The link /vmlinuz is a damaged link
Removing symbolic link vmlinuz
Unless you used the optional flag in lilo,
 you may need to re-run lilo
The link /initrd.img is a damaged link
Removing symbolic link initrd.img
Unless you used the optional flag in lilo,
 you may need to re-run lilo
Purging configuration files for linux-image-2.6.15-1-486 ...
Running postrm hook /sbin/update-grub .
Searching for GRUB installation directory ... found: /boot/grub
dpkg: error processing linux-image-2.6.15-1-486 (--purge):
 subprocess post-removal script returned error exit status 128
Errors were encountered while processing:
 linux-image-2.6.15-1-486
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Press return to continue.

But since the "486" flavour is a new entry, i've also tryed 
linux-image-2.6.15-1-686-smp, which i know was failing during purge 
(while i was investigating for bug #344767, i had also tested 
linux-image-2.6.14-2-686-smp (2.6.14-6), and it hanged like the others): 
the purge operation for 2.6.15-686-smp failed like 486 flavour:


(Reading database ... 83105 files and directories currently installed.)
Removing linux-image-2.6.15-1-686-smp ...
Running postrm hook /sbin/update-grub .
Searching for GRUB installation directory ... found: /boot/grub
The link /vmlinuz is a damaged link
Removing symbolic link vmlinuz
Unless you used the optional flag in lilo,
 you may need to re-run lilo
The link /initrd.img is a damaged link
Removing symbolic link initrd.img
Unless you used the optional flag in lilo,
 you may need to re-run lilo
Purging configuration files for linux-image-2.6.15-1-686-smp ...
Running postrm hook /sbin/update-grub .
Searching for GRUB installation directory ... found: /boot/grub
dpkg: error processing linux-image-2.6.15-1-686-smp (--purge):
 subprocess post-removal script returned error exit status 128
Errors were encountered while processing:
 linux-image-2.6.15-1-686-smp
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Press return to continue.

Some information about my system:
- Debian Sid
- linux-image-2.6.15-1-686 (2.6.15-1)
- yaird (0.0.12-3)
- initrd-tools (0.1.84)
- grub (0.97-2)
- libc6 (2.3.5-11)
- libc6-i686 (2.3.5-11)


Regards.

Cesare.


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



Bug#344707: ITP: ispell-et -- Estonian dictionaries for ispell, aspell, myspell

2006-01-04 Thread Martin-Éric Racine
su, 2005-12-25 kello 01:50 +0200, Martin-Éric Racine kirjoitti:
> Package: wnpp
> Severity: wishlist
> Owner: "Martin-Éric Racine" <[EMAIL PROTECTED]>
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Package name : ispell-et
> Version  : 20030606
> URL  : http://www.meso.ee/~jjpp/speller/
> aspell-et  - Estonian dictionary for aspell
> iestonian  - Estonian dictionary for ispell
> myspell-et - Estonian dictionary for myspell
> openoffice.org-hyphenation-et - Estonian hyphenation pattern for 
> OpenOffice.org
> 
> The ispell affix and wordlists, as well as the OOo hyphenation were found as 
> standalone files at the above URL, along with explanations in Estonian about 
> the origin of all files. Everything else is generated by my own debian/rules.
> 
> The version is the timestamp of the last update produced by Jaak Pruulmann. 
> 
> I already have packages ready to upload. I however need to verify whether the 
> software license of the Institute of the Estonian Language is considered free
> according to Debian policies, before I proceed with the upload.


Copyright issues were found to be ambiguous by debian-legal, which
prompted the original upstream to modify their license. Meanwhile,
licenses of changes to the wordlist and of the hyphenation pattern
required further clarification from their respective authors. The
resulting copyright is:


> This package was debianized by Martin-Eric Racine <[EMAIL PROTECTED]> on
> Sat, 24 Dec 2005 03:23:47 +0200
> 
> It was downloaded from 
> 
> Estonian affix and wordlist for Ispell
> Copyright (C) 2003, Jaak Pruulmann <[EMAIL PROTECTED]>
> 
>This package is free software; you can redistribute it and/or modify it 
>under the terms of the GNU Lesser General Public License as published by
>the Free Software Foundation; either version 2.1 of the License, or (at 
>your option) any later version.
> 
>On Debian systems, the complete text of the GNU Lesser General Public 
>License can be found in .
> 
> Estonian hyphenation patterns
> Copyright (C) 2003, Enn Saar <[EMAIL PROTECTED]>
> 
>This work may be distributed and/or modified under the conditions of the 
>LaTeX Project Public License, either version 1.3 of this license or (at 
>your option) any later version. The latest version of this license is in 
> and version 1.3 or later is part 
>of all distributions of LaTeX version 2003/12/01 or later.
> 
>On Debian systems, the complete text of the LaTeX Project Public License
>can be found in .
> 
> Estonian Wordlist
> Copyright (C) 1999, Institute of the Estonian Language <[EMAIL PROTECTED]>
> 
>The present Licence Agreement gives the user of this Software Product
>(hereinafter: Product) the right to use the Product for whatever purpose
>(incl. distribution, copying, altering, inclusion in other software, and
>selling) on the following conditions:
> 
> 1. The present Licence Agreement should belong unaltered to each copy
>ever made of this Product;
> 2. Neither the Institute of the Estonian Language (hereinafter: IEL)
>nor the author(s) of the Product will take responsibility for any
>detriment, direct or indirect, possibly ensuing from the application
>of the Product;
> 3. The IEL is ready to share the Product with other users as we wish
>to advance research on the Estonian language and to promote the use 
>of Estonian in rapidly developing infotechnology, yet we refuse to 
>bind ourselves to any further obligation, which means that the IEL 
>is not obliged either to warrant the suitability of the Product for 
>a specific purpose, to improve the software, or to provide a more 
>detailed description of the underlying algorithms.
>(Which does not mean, though, that we may not do it.)
> 
>Notification Request:
> 
>As a courtesy, we would appreciate being informed whenever our linguistic
>products are used to create derivative works. If you modify our software 
>or include it in other products, please inform us by sending e-mail to 
><[EMAIL PROTECTED]> or by letter to
> 
>Institute of the Estonian Language
>Roosikrantsi 6
>10119 Tallinn
>ESTONIA
> 
>Phone & Fax: +372 6411443
> -- end of Licence Agreement --


Clarifications about the history of each file appears in README:


> Estonian dictionaries for aspell, ispell, myspell
> -
> This package was assembled from several standalone files found at
> :
> 
>  * Affix file and wordlist for ispell.
>  * Hyphenation pattern for OpenOffice.
> 
> The wordlist is based on work by the Institute of the Estonian Language,
> subsequently improved by Jaak Pruulmann who also created the affix file.
> 
> The hyphenation pattern was originally create

Bug#193228: Is this package still alive?

2006-01-04 Thread H. S. Teoh
Hi all,

I'm just wondering if this package is still being actively maintained.
The current version of the package depends on libsndfile0, which I've
wanted to remove from the archive for almost 2 years now, and it has
recently acquired an FTBFS. The new version of xmovie has already been
ported to libsndfile1. Could somebody please update xmovie so that I can
remove libsndfile0 from the archive? Thanks.


--T


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



Bug#345895: mysql-server-5.0: fails to start after upgrade from 4.1; README.Debian not helpful...

2006-01-04 Thread David Coe
Thanks; yes, I see that my 'mysql' host and other system tables are
.ISM and .ISD files; I assume that means ISAM.

I was able to downgrade to 4.1, which I figured would be safe since
the 5.0 server had never actually started; I'm going to stay there for
now.  If you'd like me to test a new upgrade path, I'll be happy to do
that ; even if I were to lose all the mysql data, it would be no major
loss.


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



Bug#343645: e2fsprogs: Superblock last mount time is in the future, fix it ? (Y)

2006-01-04 Thread Theodore Ts'o
reassign 343645 initscripts
thanks

On Wed, Jan 04, 2006 at 09:52:39PM +0100, mahashakti89 wrote:
> 
> I will make it short, I posted on debian-user-french to solve the
> problem mentioned in the subject. It  seemed  to be  a so strange
> error ...  I looked to the changelog.Debian.gz in /usr/share/doc and
> also on http://bugs.debian.org to read the bug reports .
> 
> The error is following, sometimes , not all the time, at the end of the
> boot process I get following error message : "/sbin/init : Cannot
> execute binary file " 
> "Respawning too fast, disabled for five minutes"

If this is happening all the time, and it's fixed by running by
running e2fsck, then you have something causing filesystem corruption
problems.  This could be a hardware problem, or perhaps a buggy kernel
or a buggy device driver.  It could also be a some kind of
configuration error.  Is e2fsck actually giving you some kind of
filesystem corruption problem other than "superblock last mount time
is in the future?"

> I have to reboot, in recovery mode, to umount my / , and to do manually
> #fsck /dev/hdb3 , then I get this error : Superblock last mount time is
> in the future, fix it (Y)
> After this I can boot without any problem.
> 
> The date & time on my system is set on Western time . /etc/default/rcS has 
> the following line: UTC=no
> 

This error is not an e2fsck bug, but a bug in the initscripts if you
use UTC=no.  The problem is that the init scripts run a large portion
of the init scripts, including the initial e2fsck, with the wrong time
set.  This is because /etc/localtime is a symlink to
/usr/share/zoneinfox/xxx, and /usr might not be mounted yet.

So if you use UTC=no, the system clock is set incorrectly until much
later in the boot process, thus triggering the e2fsck warning message.
It's harmless, and it's caused by this bug in the init scripts; e2fsck
requires that the time be correctly set when it is run.

What needs to happen with the init scripts is that the localtime
should be set in /etc/localtime.conf, and /etc/localtime should be a
copy of /usr/local/zoneinfo/`cat /etc/localtime.conf`; then the system
clock can be set correctly before e2fsck is run.

You can work around the problem by setting your hardware clock to UTC,
by setting /etc/default/rcS with the line: UTC=yes.  The only reason
why this would be problematic is if you dual-boot Windows.

Regards,

- Ted


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



Bug#342682: libsndfile0(GNU/k*BSD): FTBFS: out of date libtool scripts

2006-01-04 Thread H. S. Teoh
On Mon, Dec 12, 2005 at 09:43:25PM +0100, Petr Salinger wrote:
> Hi.
> 
> > Please don't use libsndfile0 anymore. It has been obsoleted upstream a
> > long time ago, and has been replaced by libsndfile1 (maintained by a
> > different DD). I have already submitted a request to remove libsndfile0
> > from the Debian archive. Thanks!
> 
> Please, could you check, whether such request really exists ?
> I can't found it neither in 
> http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=ftp.debian.org,
> neither http://packages.qa.debian.org/libs/libsndfile0.html
> shows such request (compare with 
> http://packages.qa.debian.org/r/readline4.html).
[...]

Hi,

Sorry for taking so long to get back to you. I just checked, and I
remembered that I wanted to remove libsndfile0, but I couldn't because
xmovie still depends on it. Sorry for the confusion, I had another
package that I requested removal for, and I remembered wrongly that it
was libsndfile0.

I will try to get xmovie either updated or removed (it looks like it
hasn't been touched for a LONG time).


--T


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



Bug#346039: Missing packages from Requires field in vte.pc

2006-01-04 Thread Matt Kraai
Package: libvte-dev
Version: 1:0.11.15-4
Severity: serious

gtk-sharp2 fails to compile because of a bug in libvte-dev.

> if /bin/sh ../../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I. 
> -I../.. -I/usr/include/freetype2   -I../..-g -Wall -Wunused 
> -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes  
> -Wmissing-prototypes -Wnested-externs  -Wshadow -Wpointer-arith 
> -Wno-cast-qual -Wcast-align -Wwrite-strings -MT generated.lo -MD -MP -MF 
> ".deps/generated.Tpo" -c -o generated.lo generated.c; \
>   then mv -f ".deps/generated.Tpo" ".deps/generated.Plo"; else rm -f 
> ".deps/generated.Tpo"; exit 1; fi
> mkdir .libs
>  gcc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/include/freetype2 -I../.. -g 
> -Wall -Wunused -Wmissing-prototypes -Wmissing-declarations 
> -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Wshadow 
> -Wpointer-arith -Wno-cast-qual -Wcast-align -Wwrite-strings -MT generated.lo 
> -MD -MP -MF .deps/generated.Tpo -c generated.c  -fPIC -DPIC -o 
> .libs/generated.o
> In file included from generated.c:4:
> /usr/include/vte/vte.h:28:18: error: glib.h: No such file or directory
> /usr/include/vte/vte.h:29:25: error: pango/pango.h: No such file or directory
> /usr/include/vte/vte.h:30:21: error: gtk/gtk.h: No such file or directory

These header files aren't found because their respective directories
are not included in the include path.  The directories aren't in the
include path because vte.pc does not include the respective packages
in the Requires field.

I'm not sure what to do with the pango packages, but moving glib-2.0,
gtk-2.0 >= 2.2, pangoxft >= 1.1.0, and pangox to the Requires field
fixed the problem.

-- 
Matt


signature.asc
Description: Digital signature


Bug#343822: +usr/X11R6/lib/X11/doc/html/Xprint_FAQ.html when building 6.9.0-1+SVN on amd64

2006-01-04 Thread Modestas Vainius
Hi,

that's what I got when building 6.9.0-1+SVN revision 1007 (from trunk/debian) 
on amd64 box. I used up-to-date pbuilder for building. It's really strage but  
it seems the file 'Xprint_FAQ.html' must be readded. I'll test if 6.9.0-1 
builds with my pbuilder environment (it shouldn't though).


esac; \
  fi; \
fi
--- debian/MANIFEST.amd64   2006-01-05 02:09:41.0 +
+++ debian/MANIFEST.amd64.new   2006-01-05 02:09:41.0 +
@@ -1233,0 +1234 @@
+usr/X11R6/lib/X11/doc/html/Xprint_FAQ.html
MANIFEST check failed; please see debian/README
make: *** [stampdir/check-manifest] Error 1
pbuilder: Failed autobuilding of package
 -> Aborting with an error
 -> unmounting dev/pts filesystem
 -> unmounting proc filesystem
 -> unmounting /usr/src filesystem
 -> cleaning the build env
-> removing directory /var/cache/pbuilder/build//28457 and its 
subdirectories


pgpHXXQmj3t4L.pgp
Description: PGP signature


Bug#345906: Should support a /usr/local/share/whereami/tests directory for locally crafted tests

2006-01-04 Thread Andrew McMillan
On Wed, 2006-01-04 at 08:32 +0100, Christian Perrier wrote:
> Package: whereami
> Version: 0.3.28
> Severity: wishlist
> 
> I currently used several home-crafted scripts for various tests specific to
> my needs. However, I have to put them in /usr/share/whereami/tests which is
> not very Debianistic..:-)
> 
> I suggest supporting an extra location for local tests in the /usr/local
> hierarchy.

Hi Christian,

Currently whereami sets the $PATH for scripts to be:

"$scriptbase/tests:$scriptbase/actions:$scriptbase:/bin:/usr/bin:/sbin:/usr/sbin:$basedir/tests;/usr/local/share/whereami"

Where $scriptbase defaults to /usr/share/whereami and $basedir defaults
to /etc/whereami .

I'm not sure what more should be done?  Possibly the ordering of these
is not ideal though, and the documentation of this fact is kind of "Use
The Source, Luke" :-)

Regards,
Andrew.

-
Andrew @ Catalyst .Net .NZ  Ltd,  PO Box 11-053, Manners St,  Wellington
WEB: http://catalyst.net.nz/PHYS: Level 2, 150-154 Willis St
DDI: +64(4)803-2201  MOB: +64(272)DEBIAN  OFFICE: +64(4)499-2267
  What I tell you three times is true.
 -- Lewis Carroll
-



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


Bug#257870: treeline package

2006-01-04 Thread Kevin Coyner


On Wed, Jan 04, 2006 at 06:15:03AM -0800, Stephen Birch wrote..

> Hi Miriam
> 
> I was asked by Kevin if he could take over treeline and so I
> changed ownership of the ITP to Kevin.  Nothing seems to have
> happened though.
> 
> Kevin, are you still interested?
> 
> If not intereste why doesn't Miriam take over this package and
> become the packager for it?  If not a DD you will need to find a
> sponsor.


Hi Miriam

I'm presently not using treeline at the moment, so if you like
please feel free to take over the packaging of it.

Thanks
Kevin

-- 
Kevin Coyner  GnuPG key: 1024D/8CE11941  http://rustybear.com/publickey


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



Bug#346038: init-script: "lighttpd reload" doesn't reload configuration files

2006-01-04 Thread Michael Renner
Package: lighttpd
Version: 1.4.8-2
Severity: minor

The current output of the init script misleads the user into thinking
that lighttpd actually parsed the (changed) configuration whereas it
actually only cycled the logfiles. The output of the init script should
be changed to reflect the truth (tm) ;).

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

Versions of packages lighttpd depends on:
ii  libbz2-1.01.0.2-11   high-quality block-sorting file co
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libpcre3  6.4-1.1Perl 5 Compatible Regular Expressi
ii  libssl0.9.8   0.9.8a-3   SSL shared libraries
ii  lsb-base  3.0-12 Linux Standard Base 3.0 init scrip
ii  mime-support  3.35-1 MIME files 'mime.types' & 'mailcap
ii  zlib1g1:1.2.3-9  compression library - runtime

Versions of packages lighttpd recommends:
pn  php4-cgi   (no description available)
pn  php5-cgi   (no description available)

-- no debconf information


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



Bug#346037: mc: tar viewer displays internals of --posix .tar files

2006-01-04 Thread Christoph Biedl
Package: mc
Version: 1:4.6.0-4.6.1-pre3-3sarge1
Severity: normal

After creating a tar file using tar's --posix option, e.g.
$ touch foo
$ tar --posix -cf foo.tar foo
the tar viewer of mc shows a directory "PaxHeaders." that
contains some information, probably stuff that cannot placed in the
regular tar header.

Please consider hiding this internal information as the usual "tar -tf"
does. I admit that it's very hard to learn more about the posix (2001)
format.

By the way, this system is Debian sarge, the problem still exists in
current etch (mc 4.6.1-1).

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages mc depends on:
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libglib2.0-0 2.6.4-1 The GLib library of C routines
ii  libgpmg1 1.19.6-19sarge1 General Purpose Mouse - shared lib

-- no debconf information


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



Bug#346036: gaim generates tons of processes

2006-01-04 Thread Ari Pollak
I blame libao and ESD. That doesn't happen on any machines I've seen
that don't use ESD.

Erich Schubert wrote:
> Package: gaim
> Version: 1:1.5.0+1.5.1cvs20051015-1
> Severity: normal
> 
> After running gaim for a while I end up with tons of gaim processes.
> They don't go away when I just quit gaim; and 2/3 still hang around
> after a "killall gaim".
> Attaching with GDB and printing a backtrace results in e.g.:
> 
> #0  0xb7798718 in select () from /lib/tls/libc.so.6
> #1  0xb7e2653a in _XEnq () from /usr/X11R6/lib/libX11.so.6
> #2  0xb7e2694e in _XRead () from /usr/X11R6/lib/libX11.so.6
> #3  0xb7e2793a in _XReply () from /usr/X11R6/lib/libX11.so.6
> #4  0xb7e0ecf6 in XGetWindowProperty () from /usr/X11R6/lib/libX11.so.6
> #5  0xb79ed5b3 in gdk_event_send_client_message_for_display ()
>from /usr/lib/libgdk-x11-2.0.so.0
> #6  0xb79ed78c in gdk_screen_broadcast_client_message ()
>from /usr/lib/libgdk-x11-2.0.so.0
> #7  0xb7b19882 in gtk_icon_theme_rescan_if_needed ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #8  0xb7b1a459 in gtk_icon_theme_lookup_icon ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #9  0xb7b1a982 in gtk_icon_theme_load_icon () from 
> /usr/lib/libgtk-x11-2.0.so.0
> #10 0xb7b15c74 in gtk_icon_set_render_icon () from 
> /usr/lib/libgtk-x11-2.0.so.0
> #11 0xb7c3210c in gtk_widget_render_icon () from /usr/lib/libgtk-x11-2.0.so.0
> #12 0xb7b28a20 in gtk_image_get () from /usr/lib/libgtk-x11-2.0.so.0
> #13 0xb7b295bb in gtk_image_clear () from /usr/lib/libgtk-x11-2.0.so.0
> #14 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
>from /usr/lib/libgobject-2.0.so.0
> #15 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
> #16 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
> #17 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
> #18 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
> #19 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
> #20 0xb7b913bc in gtk_size_group_remove_widget ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #21 0xb7b91797 in _gtk_size_group_compute_requisition ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #22 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
> #23 0xb7c2746e in gtk_vbox_new () from /usr/lib/libgtk-x11-2.0.so.0
> #24 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
>from /usr/lib/libgobject-2.0.so.0
> #25 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
> #26 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
> #27 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
> #28 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
> #29 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
> #30 0xb7b913bc in gtk_size_group_remove_widget ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #31 0xb7b91797 in _gtk_size_group_compute_requisition ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #32 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
> #33 0xb7c2746e in gtk_vbox_new () from /usr/lib/libgtk-x11-2.0.so.0
> #34 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
>from /usr/lib/libgobject-2.0.so.0
> ---Type  to continue, or q  to quit---
> #35 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
> #36 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
> #37 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
> #38 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
> #39 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
> #40 0xb7b913bc in gtk_size_group_remove_widget ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #41 0xb7b91797 in _gtk_size_group_compute_requisition ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #42 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
> #43 0xb7a8a3ad in gtk_button_set_relief () from /usr/lib/libgtk-x11-2.0.so.0
> #44 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
>from /usr/lib/libgobject-2.0.so.0
> #45 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
> #46 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
> #47 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
> #48 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
> #49 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
> #50 0xb7b913bc in gtk_size_group_remove_widget ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #51 0xb7b91797 in _gtk_size_group_compute_requisition ()
>from /usr/lib/libgtk-x11-2.0.so.0
> #52 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
> #53 0xb7b0d50e in gtk_hbox_new () from /usr/lib/libgtk-x11-2.0.so.0
> #54 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
>from /usr/lib/libgobject-2.0.so.0
> #55 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/l

Bug#346005: Net install CD (daily build) fail to install Etch

2006-01-04 Thread Colin Watson
On Wed, Jan 04, 2006 at 09:06:33PM +0100, Davide Prina wrote:
> All the .deb package are not installed, they are downloaded but not 
> installed in the system. The install system task don't work: it ask what 
> type of package you want install (desktop, laptop, web server, ...) but 
> after download all the needed package it do not install they ... the 
> process will remain in stand by at 15% for a while and they exit to the 
> main menu.

I believe that this is fixed in cdebconf 0.93, which is still making its
way down to testing.

> I have see there are warning like this:
>  debconf: Obsolete command TITLE Configurazione in corso di exim
> 
> I have this warning/error for the following packages: flex libssl0.9.8 exim4

This is purely cosmetic.

> Next message is about 10 minuts after and say: init: ^MProcess 
> `/sbin/debian-installer` (pid 1893) exited. Scheduling it for restart.

As above, this is fixed in cdebconf 0.93.

> You cannot select single package during install process

I think this is by design at the moment. For anything other than
broad-brush installation, you may be better off using a fully-fledged
package manager after installation anyway.

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]


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



Bug#314792: gnome-applets: gnome-keyboard-properties crashes

2006-01-04 Thread Mohammed Adnène Trojette
tag 314792 + moreinfo
thanks

On Sat, Jun 18, 2005, Etienne Gagnon wrote:
> Backtrace was generated from '/usr/bin/gnome-keyboard-properties'
> 
> (no debugging symbols found)

Hello Etienne.

You need to install gnome-applets-dbg if you want debugging symbols.

Moreover, do you still experience the bug with an up-to-date system?
If you do, please provide us a backtrace with the dbg package.

-- 
adn
Mohammed Adnène Trojette



Bug#294727: gnome-applets: When clicked: xterm -e mutt: does not assume correct environment vars

2006-01-04 Thread Mohammed Adnène Trojette
tag 294727 + unreproducible moreinfo
thanks

On Fri, Feb 11, 2005, Alberto Maurizi wrote:
> This problem started some weeks ago.
> Note that a generic application launcher with the same command behaves
> correctly.

Hello Alberto and happy new year.

Unfortunately, I did not manage to reproduce your bug by creating a new
launcher icon with xterm -e mutt as command. Does it still occur on
newer versions of Gnome (2.10 in unstable, for instance)?

Did I understand well the problem? Otherwise, please tell me how to
reproduce the bug.

-- 
adn
Mohammed Adnène Trojette



Bug#346036: gaim generates tons of processes

2006-01-04 Thread Erich Schubert
Package: gaim
Version: 1:1.5.0+1.5.1cvs20051015-1
Severity: normal

After running gaim for a while I end up with tons of gaim processes.
They don't go away when I just quit gaim; and 2/3 still hang around
after a "killall gaim".
Attaching with GDB and printing a backtrace results in e.g.:

#0  0xb7798718 in select () from /lib/tls/libc.so.6
#1  0xb7e2653a in _XEnq () from /usr/X11R6/lib/libX11.so.6
#2  0xb7e2694e in _XRead () from /usr/X11R6/lib/libX11.so.6
#3  0xb7e2793a in _XReply () from /usr/X11R6/lib/libX11.so.6
#4  0xb7e0ecf6 in XGetWindowProperty () from /usr/X11R6/lib/libX11.so.6
#5  0xb79ed5b3 in gdk_event_send_client_message_for_display ()
   from /usr/lib/libgdk-x11-2.0.so.0
#6  0xb79ed78c in gdk_screen_broadcast_client_message ()
   from /usr/lib/libgdk-x11-2.0.so.0
#7  0xb7b19882 in gtk_icon_theme_rescan_if_needed ()
   from /usr/lib/libgtk-x11-2.0.so.0
#8  0xb7b1a459 in gtk_icon_theme_lookup_icon ()
   from /usr/lib/libgtk-x11-2.0.so.0
#9  0xb7b1a982 in gtk_icon_theme_load_icon () from /usr/lib/libgtk-x11-2.0.so.0
#10 0xb7b15c74 in gtk_icon_set_render_icon () from /usr/lib/libgtk-x11-2.0.so.0
#11 0xb7c3210c in gtk_widget_render_icon () from /usr/lib/libgtk-x11-2.0.so.0
#12 0xb7b28a20 in gtk_image_get () from /usr/lib/libgtk-x11-2.0.so.0
#13 0xb7b295bb in gtk_image_clear () from /usr/lib/libgtk-x11-2.0.so.0
#14 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
   from /usr/lib/libgobject-2.0.so.0
#15 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
#16 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#17 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
#18 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#19 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
#20 0xb7b913bc in gtk_size_group_remove_widget ()
   from /usr/lib/libgtk-x11-2.0.so.0
#21 0xb7b91797 in _gtk_size_group_compute_requisition ()
   from /usr/lib/libgtk-x11-2.0.so.0
#22 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
#23 0xb7c2746e in gtk_vbox_new () from /usr/lib/libgtk-x11-2.0.so.0
#24 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
   from /usr/lib/libgobject-2.0.so.0
#25 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
#26 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#27 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
#28 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#29 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
#30 0xb7b913bc in gtk_size_group_remove_widget ()
   from /usr/lib/libgtk-x11-2.0.so.0
#31 0xb7b91797 in _gtk_size_group_compute_requisition ()
   from /usr/lib/libgtk-x11-2.0.so.0
#32 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
#33 0xb7c2746e in gtk_vbox_new () from /usr/lib/libgtk-x11-2.0.so.0
#34 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
   from /usr/lib/libgobject-2.0.so.0
---Type  to continue, or q  to quit---
#35 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
#36 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#37 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
#38 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#39 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
#40 0xb7b913bc in gtk_size_group_remove_widget ()
   from /usr/lib/libgtk-x11-2.0.so.0
#41 0xb7b91797 in _gtk_size_group_compute_requisition ()
   from /usr/lib/libgtk-x11-2.0.so.0
#42 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
#43 0xb7a8a3ad in gtk_button_set_relief () from /usr/lib/libgtk-x11-2.0.so.0
#44 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
   from /usr/lib/libgobject-2.0.so.0
#45 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
#46 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#47 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
#48 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#49 0xb78ce694 in g_signal_emit_by_name () from /usr/lib/libgobject-2.0.so.0
#50 0xb7b913bc in gtk_size_group_remove_widget ()
   from /usr/lib/libgtk-x11-2.0.so.0
#51 0xb7b91797 in _gtk_size_group_compute_requisition ()
   from /usr/lib/libgtk-x11-2.0.so.0
#52 0xb7c2b3c5 in gtk_widget_size_request () from /usr/lib/libgtk-x11-2.0.so.0
#53 0xb7b0d50e in gtk_hbox_new () from /usr/lib/libgtk-x11-2.0.so.0
#54 0xb78c6f40 in g_cclosure_marshal_VOID__BOXED ()
   from /usr/lib/libgobject-2.0.so.0
#55 0xb78b9fd8 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
#56 0xb78ba67b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#57 0xb78c9516 in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
#58 0xb78cb047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#59 0xb78ce694 in g_signal_emit_by_name

Bug#346023: more information

2006-01-04 Thread C. Scott Ananian

I tracked this problem down to a missing '--enable-maxmem=16' on the
./configure command line.  The parameter specifies (in megabytes) the 
maximum amount of main memory libjpeg should allocate before creating 
backing store on disk; 8, 16 or 32 seem to be reasonable values for modern 
hardware.  And if you don't like it, you can always either set JPEGMEM

in the environment or use the -maxmemory command-line parameter.

Making this change has a huge impact on the usability of my linux 2.6.15 
machine with 320M of main memory when dealing with huge (11M or so) JPEG 
files.  jpegtran is *much* faster (tested with -maxmemory=64m) with the 
'ansi' memory manager and a limited main memory size than it was beofre 
(with the 'nop' memory manager and >400M virtual memory allocated).
Because libjpeg is used throughout the system, I expect this will help fix 
performance problems with large jpeg files throughout debian.

 --scott

Panama JMMADD Dictionary Cocaine CABOUNCE supercomputer anthrax Bejing 
GPFLOOR ESODIC BLUEBIRD Yakima Richard Tomlinson Boston Moscow Castro

 ( http://cscott.net/ )


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



Bug#346032: [Pkg-dspam-misc] Bug#346032: dspam-webfrontend: should depend on libgd-graph3d-perl

2006-01-04 Thread Matthijs Mohlmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Björn Heide wrote:
> Package: dspam-webfrontend
> Version: 3.6.2-1
> Severity: normal
> Tags: experimental
> 
>  From Apache's error.log:
> 
> 23410: [01/05/2006 00:23:08] No preference extension for the hash backend
> 23410: [01/05/2006 00:23:08] No preference extension for the hash backend
> 23410: [01/05/2006 00:23:08] No preference extension for the hash backend
> Can't locate GD/Graph/lines3d.pm in @INC (@INC contains: /etc/perl 
> /usr/local/lib/perl/5.8.7 /usr/local/share/perl/5.8.7 /usr/lib/perl5 
> /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 
> /usr/local/lib/site_perl .) at graph.cgi line 22.
> BEGIN failed--compilation aborted at graph.cgi line 22.
> [Thu Jan 05 00:23:50 2006] [error] [client 127.0.0.1] Premature end of script 
> headers: graph.cgi, referer: 
> http://localhost:81/dspam/dspam.cgi?user=bjoern&template=analysis
> Can't locate GD/Graph/lines3d.pm in @INC (@INC contains: /etc/perl 
> /usr/local/lib/perl/5.8.7 /usr/local/share/perl/5.8.7 /usr/lib/perl5 
> /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 
> /usr/local/lib/site_perl .) at graph.cgi line 22.
> BEGIN failed--compilation aborted at graph.cgi line 22.
> [Thu Jan 05 00:23:50 2006] [error] [client 127.0.0.1] Premature end of script 
> headers: graph.cgi, referer: 
> http://localhost:81/dspam/dspam.cgi?user=bjoern&template=analysis
> 
> 
> The Perl-Module GD/Graph/lines3d.pm is in the Package
> libgd-graph3d-perl, so dspam-webfrontend should depend on it.
> 
Thanks for reporting, fix is in svn and will be uploaded shortly.

> Btw, what is this 'No preference extension...' thing? The documentation
> says nothing about it.
> 
The hash backend doesn't support preferences in a database.

> Regards,
> Björn
> 

Regards,

Matthijs Mohlmann
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDvGkp2n1ROIkXqbARAkFJAKCNaakS2VMTKjN9tC5+seJ7Z+Rw5gCeO49z
v3vlGjpXbpuOuAsd+TCT6kA=
=V1rj
-END PGP SIGNATURE-




Bug#336822: poedit: includes a sv_SE.po translation instead of sv.po

2006-01-04 Thread Vaclav Slavik
Fixed in poedit CVS, will be in next version.

V.S.

Daniel Nylander wrote:
> Using a country part in a translation file is a discouraged
> practice except in very few cases (such as pt_BR).

-- 
PGP key: 0x465264C9, available from http://pgp.mit.edu/


pgpKfZnVTwzRf.pgp
Description: PGP signature


Bug#344849: "me too"

2006-01-04 Thread Hamish Moffatt
I see this bug also. The -ProfileManager and -P switches seem to be
ignored if another Firefox is already running.

I use this feature to run 64-bit Firefox and 32-bit Firefox (with Flash
plugin) at the same time. It looks like this is no longer possible.

thanks
Hamish
-- 
Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>


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



Bug#344519: Reload cacti graph page generates mysql zombie process for every graph

2006-01-04 Thread sean finney
severity 344519 normal
tags 344519 - moreinfo
thanks

hi eppie,

On Tue, Jan 03, 2006 at 09:37:44PM +0100, Eppie 1305 wrote:
> I've done some more testing and it seems that it wasn't Cacti.
> 
> adding a variable thread_cache_size > 0 in my.cnf did the trick for me.
> 
> This bug can be closed.

thanks for following up on this.  i'll put something in README.Debian
for others to find, and close the bug when i do so.  in the meantime
i'll re-adjust the severity.


sean


signature.asc
Description: Digital signature


Bug#345758: No direct rendering with recent kernels

2006-01-04 Thread Svante Signell
On Tue, 2006-01-03 at 11:58 +0100, Svante Signell wrote:
> Subject: xserver-xorg: No direct rendering with recent kernels
> Package: xserver-xorg
> Version: 6.9.0.dfsg.1-1
> Severity: important
> 
> *** Please type your report below this line ***
> Recent kernels 2.6.14-2-686-smp and 2.6.15-rc4-686-smp does not have 
> direct rendering enabled. Kernel 2.6.11-1-686-smp works OK.
> 
> Kernel 2.6.14:
> ~$ LIBGL_DEBUG=verbose glxgears
> libGL error: XF86DRIQueryDirectRenderingCapable returned false
> 598 frames in 6.2 seconds = 97.027 FPS
> 560 frames in 6.4 seconds = 87.010 FPS
> 560 frames in 6.4 seconds = 88.052 FPS
> 
> Kernel 2.6.11:
> ~$ LIBGL_DEBUG=verbose glxgears
> libGL: XF86DRIGetClientDriverName: 1.2.1 mga (screen 0)
> libGL: OpenDriver: trying /usr/X11R6/lib/modules/dri/mga_dri.so
> drmOpenByBusid: Searching for BusID pci::01:00.0
> drmOpenDevice: node name is /dev/dri/card0
> drmOpenDevice: open result is 4, (OK)
> drmOpenByBusid: drmOpenMinor returns 4
> drmOpenByBusid: drmGetBusid reports pci::01:00.0
> 2440 frames in 5.0 seconds = 487.941 FPS
> 2526 frames in 5.0 seconds = 505.015 FPS
> 2519 frames in 5.0 seconds = 503.690 FPS
> 

It seems that this bug has been solved in the DRM module in CVS in
November, see https://bugs.freedesktop.org/show_bug.cgi?id=4797

The problem is that the changes are not included in kernels 2.6.14 and
2.6.15 (released yesterday). I've asked on the DRI-devel mailinglist if
a patch can be made available that can be included when building these
kernels. If not, a workaround is to add the  Option "OldDmaInit" "true"
in the Device section of xorg.conf for the card as a workaround. My
problems were solved by this setting for the card, an MGA G400 DH AGP.




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



Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Cesare Leonardi

Sven Luther wrote:

It would be great if you could confirm the exact version of those two
packages, and could provide us some log of what is happening, as this bug
report doesn't seem to be very informative.


For me, i have provided information in bug #344767, as i explained in 
the previous message: versions, logs, ecc.



This issue should have been fixed in linux-image-2.6.15-1-686 though, so we
really need to find out what did go wrong.


I haven't tested 2.6.15 because it isn't available in my mirror yet. But 
the Nathanael posts tell us that the problem is still present in the 
latest kernel.

As soon as it will be available on the mirror i use, i'll test 2.6.15.


Also, could you please give us the output of ls -lR /etc/kernel, and append it
to the bug report ?


Do you mean this?
$ ls -lR /etc/kernel-*
-rw-r--r-- 1 root root  179 2005-09-11 20:55 /etc/kernel-img.conf
-rw-r--r-- 1 root root 1006 2005-11-08 00:35 /etc/kernel-pkg.conf

Regards.

Cesare.


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



Bug#345895: mysql-server-5.0: fails to start after upgrade from 4.1; README.Debian not helpful...

2006-01-04 Thread sean finney
hi david, caleb,

first to david, thanks for the thorough report :)

On Wed, Jan 04, 2006 at 03:33:38PM -0500, Caleb Epstein wrote:
> This is a duplicate of #345895 but I can provide some more detail and
> hopefully a fix.  After updating to mysql-server-5.0, my mysqld would
> not start due to the same error noted in #345895:
> 
> Jan  4 14:14:15 tela mysqld[14638]: 060104 14:14:15 [ERROR] Fatal error: 
> Can't open and lock privilege tables: Can't find file: 'host' (errno: 2)
> 
> My server has been upgraded from 3.x to 4.x nad now 5.x.  At least the
> "host" table in the "mysql" database was in ISAM format, which was
> supported by 4.1 but is not supported by 5.0 so the server failed to
> start.

aha, good catch!

> I was able to re-install an older mysql-server-4.1 package, run
> "mysql_convert_table_format mysql" with the old server running, and
> then re-install the 5.0 server.
> 
> So I think the 5.0 server (or perhaps the 4.1 placeholder package)
> should ensure that all tables are in a compatible format before
> upgrading, perhaps running "mysql_convert_table_format" before
> removing the old 4.1 server.

okay... there's a window where we could do this in the preinst of the
new packages.  christian: my intuition is that this should be done in
the preinst of the "real" package and not the transitional one... what do
you think?  also, is there an easy way to tell whether or not we need to
perform the operation in the first place, or should we always perform it?


sean

-- 


signature.asc
Description: Digital signature


Bug#346011: Acknowledgement (FTBFS (alpha): #error architecture not supported)

2006-01-04 Thread Martin Quinson
On Wed, Jan 04, 2006 at 11:03:04PM +0100, Falk Hueffner wrote:
> Martin Quinson <[EMAIL PROTECTED]> writes:
> 
> > Could you propose a clean machdep.h file?
> 
> OK.

Cool, thanks. I just uploaded a new version with this file. If it goes
through the dbuilders, I'll make sure that it gets integrated upstream.

Thanks again,
Mt.


signature.asc
Description: Digital signature


Bug#345823: apt: Key error at year turnover resembles security problem, and may represent one

2006-01-04 Thread [EMAIL PROTECTED]

I use aptitude and I'm sure I don't know all the ins and outs here. But I do 
have a suggestion for your consideration:



Stop signing the archives with the 2006 key for now. That will allow those who 
have been using the 2005 key to continue getting updates.



After you have your fixes in place -- and the users have updated their systems 
with those fixes -- then you can add the 2006 key back in for archive-signing 
purposes. Maybe you would wait until Feb 1 to start using the 2006 key, for the 
sake of those who don't update their systems daily. Again, I admittedly don't 
know all of the ramifications.



I hope that you will, as a part of your fixes, enable users' copies of 
apt/keyrings to automatically be updated to use the 2006 key based on trust of 
the 2005 key which they are already using. That would be good for those who 
don't know about http://ftp-master.debian.org/ziyi_key_2006.asc.



Thank you for considering these possibilities.



Rodger Williams



___
No banners. No pop-ups. No kidding.
Make My Way  your home on the Web - http://www.myway.com




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



Bug#282754: gnome-applets: gweather shows "DEFAULT_LOCATION" instead of proper name

2006-01-04 Thread Mohammed Adnène Trojette
tag 282754 + moreinfo
thanks

On Wed, Nov 24, 2004, Heikki Kantola wrote:
> Gweather applet has started to print "DEFAULT_LOCATION" instead of the
> actual location name (Helsinki-Malmi in my case), although the weather
> data is otherwise fine.

Hello and happy new year!

Is the location name correct in the last versions of gnome-applets (2.10
for instance)? Is the location correctly stored if you change it manually?

Is this only a "2.6 -> 2.8 update" issue?

-- 
adn
Mohammed Adnène Trojette



Bug#312713: stickynotes: always on top is driving me mad

2006-01-04 Thread Mohammed Adnène Trojette
tag 312713 + fixed-in-experimental
thanks

On Wed, Jun 15, 2005, Stuart Rowan wrote:
> Hey thanks for the gnome 2.10 transition to unstable, on the whole it's been
> great but sticky notes are now driving me bananas...i get a gaim message
> window pop up and can't read it because there's a bloody great sticky on top
> of it...always.

It is "fixed" in experimental (2.6.12).

And according to [1], it won't change unless there is a correct
implementation of the on-top "feature".

[1] http://bugzilla.gnome.org/show_bug.cgi?id=315508#c4

-- 
adn
Mohammed Adnène Trojette



Bug#346035: rubber: provide a summary line

2006-01-04 Thread Jörg Sommer
Package: rubber
Version: 1.0-1
Severity: wishlist

Hi,

can rubber print a summary line after compiling. Something like:

XY errors, XY warnings, XY under-/overfull boxes and XY pages written

Maybe, it is only activated if a special option (-S) is given.

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages rubber depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  tetex-bin 3.0-10.1   The teTeX binary files

rubber recommends no packages.

-- no debconf information


pgpF7Y5xU8UgG.pgp
Description: PGP signature


Bug#346034: iptables shouldn't allow recent with --set and --rttl

2006-01-04 Thread Erich Schubert
Package: iptables
Version: 1.3.4-0.1
Severity: minor

Hi,
I was recently having problems with my recent match to stop SSH
scanners... well, I now found out what was the problem:
I was using the --rttl option in my --set line; this caused all incoming
ssh connections to be rejected; --rttl is only to be used with --rcheck
and --update... :-(
Maybe iptables could catch this mistake?

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.14
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages iptables depends on:
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an

iptables recommends no packages.

-- no debconf information


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



Bug#282450: gweather: Temperature is shown as -2C00B0

2006-01-04 Thread Mohammed Adnène Trojette
tag + moreinfo unreproducible
thanks

On Mon, Nov 22, 2004, Ognyan Kulev wrote:
> I've just upgraded my Debian unstable and weather applet shows time as
> -2C00B0 (in celsius).  I removed the applet and then added again -- it
> didn't help.  I tried to change things in Preference, but it didn't help
> too.

Do you still encounter this bug with the last versions of gnome-applets
in unstable (2.10 for example)?

What is printed when you choose Kelvin or Fahrenheit?

-- 
adn
Mohammed Adnène Trojette



Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Sven Luther
On Thu, Jan 05, 2006 at 12:34:06AM +0100, Cesare Leonardi wrote:
> Nathanael Nerode wrote:
> >Package: linux-2.6
> >Severity: serious
> >Justification: Won't uninstall cleanly
> >
> >
> >It hangs on this line of the postrm script:
> >
> >my $ret = purge();
> >
> >I can get it to work by deleting this line.  Perhaps this is because a
> >debconf routine is being called after "stop" has been called?  I don't 
> >know,
> >but anyway it's a serious bug.
> >
> >This bug appears in linux-image-2.6.14-2-686 and linux-image-2.6.15-1-686,
> >and I assume in other flavours as well.
> 
> Hi Nathanael.
> I can confirm this problem, in fact i have also filed a bug against it: 
> see #344767.

Hi both of you, ...

It would be great if you could confirm the exact version of those two
packages, and could provide us some log of what is happening, as this bug
report doesn't seem to be very informative.

This issue should have been fixed in linux-image-2.6.15-1-686 though, so we
really need to find out what did go wrong.

Also, could you please give us the output of ls -lR /etc/kernel, and append it
to the bug report ?

Friendly,

Sven Luther



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



Bug#346033: antlr: TokenStreamException should print line number

2006-01-04 Thread Ryan Nowakowski
Package: antlr
Version: 2.7.5-8
Severity: normal


A TokenStreamException should print a line number where the errors
occurs:

[EMAIL PROTECTED]:~/workspace/http_header_inject$ java antlr.Tool HttpLexer.g
ANTLR Parser Generator   Version 2.7.5 (20050817)   1989-2005 jGuru.com
TokenStreamException: expecting ''', found '9'

There's been some discussion around this already.
http://www.antlr.org:8080/pipermail/antlr-interest/2003-March/003340.html

-- 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.12-1-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages antlr depends on:
ii  sun-j2sdk1.4 [java-virtua 1.4.2+07   Java(TM) 2 SDK, Standard Edition, 
ii  sun-j2sdk1.5 [java-virtua 1.5.0+update04 Java(TM) 2 SDK, Standard Edition, 

antlr recommends no packages.

-- no debconf information


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



Bug#345717: Package: installation-reports

2006-01-04 Thread bruhin
Hi Len

Thanks, but it does not fix the problem (i tried Sarge and Etch).


***

Try adding acpi=off to the boot prompt.  That sometimes fixes usb
keyboard problems.

Len Sorensen



Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Cesare Leonardi

Nathanael Nerode wrote:

Package: linux-2.6
Severity: serious
Justification: Won't uninstall cleanly


It hangs on this line of the postrm script:

my $ret = purge();

I can get it to work by deleting this line.  Perhaps this is because a
debconf routine is being called after "stop" has been called?  I don't know,
but anyway it's a serious bug.

This bug appears in linux-image-2.6.14-2-686 and linux-image-2.6.15-1-686,
and I assume in other flavours as well.


Hi Nathanael.
I can confirm this problem, in fact i have also filed a bug against it: 
see #344767.


Regards.

Cesare.


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



Bug#344958: [Pbuilder-maint] Bug#344958: pbuilder: creates files with weird owner/group

2006-01-04 Thread Junichi Uekawa
Hi,

Thanks for your bugreport.

> Building a package with "sudo pbuilder build --buildtarget foo" puts
> files in foo that are owned by user 1234, group 1234 (neither of which
> exists on the system). (Without --buildtarget they are put
> in /var/cache/pbuilder/result, but the same uid/gid). This seems
> strange.

This is due to pbuilder now running inside fakeroot by default.  The
default value '1234' (randomly picked) can be anything that isn't used
by other user, so pbuilder session will have a hard time interacting
with outside of chroot.

For the practical side, it can be overridden with the following:

   BUILDRESULTUID=

   BUILDRESULTGID=
  Set the UID and GID of the files built as result.  They probably
  need  to be set to numeric UID values, so that it works the same
  inside the chroot and outside the chroot.



I would consider it appropriate to add documentation with this respect
since default changed.


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#333294: [Pbuilder-maint] Bug#333294: default mirror

2006-01-04 Thread Junichi Uekawa
Hi,

> 
> The attached pach sets localhost as the default mirror.  It forces most
> users to edit /etc/pbuilderrc.
> 

Which makes pbuilder unusable by default setting. Reject.


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#220677: fixed in syslog-summary for a long time?

2006-01-04 Thread Erich Schubert
Hi,
Is this maybe already in syslog-summary for some time?
At least if you use the --repeat command line option.

best regards,
Erich Schubert
-- 
   erich@(vitavonni.de|debian.org)--GPG Key ID: 4B3A135C(o_
Go away or i'll replace you with a very small shell script. //\
  Ein Freund ist ein Geschenk, das man sich selbst macht.   V_/_



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



Bug#346032: dspam-webfrontend: should depend on libgd-graph3d-perl

2006-01-04 Thread Björn Heide
Package: dspam-webfrontend
Version: 3.6.2-1
Severity: normal
Tags: experimental

 From Apache's error.log:

23410: [01/05/2006 00:23:08] No preference extension for the hash backend
23410: [01/05/2006 00:23:08] No preference extension for the hash backend
23410: [01/05/2006 00:23:08] No preference extension for the hash backend
Can't locate GD/Graph/lines3d.pm in @INC (@INC contains: /etc/perl 
/usr/local/lib/perl/5.8.7 /usr/local/share/perl/5.8.7 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at graph.cgi line 22.
BEGIN failed--compilation aborted at graph.cgi line 22.
[Thu Jan 05 00:23:50 2006] [error] [client 127.0.0.1] Premature end of script 
headers: graph.cgi, referer: 
http://localhost:81/dspam/dspam.cgi?user=bjoern&template=analysis
Can't locate GD/Graph/lines3d.pm in @INC (@INC contains: /etc/perl 
/usr/local/lib/perl/5.8.7 /usr/local/share/perl/5.8.7 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl 
.) at graph.cgi line 22.
BEGIN failed--compilation aborted at graph.cgi line 22.
[Thu Jan 05 00:23:50 2006] [error] [client 127.0.0.1] Premature end of script 
headers: graph.cgi, referer: 
http://localhost:81/dspam/dspam.cgi?user=bjoern&template=analysis


The Perl-Module GD/Graph/lines3d.pm is in the Package
libgd-graph3d-perl, so dspam-webfrontend should depend on it.

Btw, what is this 'No preference extension...' thing? The documentation
says nothing about it.

Regards,
Björn

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

Versions of packages dspam-webfrontend depends on:
ii  libgd-gd2-perl1:2.30-1   Perl module wrapper for libgd - gd

dspam-webfrontend recommends no packages.

-- no debconf information

-- 
BOFH excuse #53:

Little hamster in running wheel had coronary; waiting for replacement to be 
Fedexed from Wyoming



Bug#346031: debian-edu-install: [INTL:ja] updated Japanese debconf translation

2006-01-04 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: debian-edu-install
Severity: wishlist
Tags: l10n patch

Hi,

I updated Japanese translation of debconf messages (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8 

iEYEARECAAYFAkO8XCAACgkQQKW+7XLQPLFo0wCgwM8U/mUa++cONk1yhcvOek4L
vhQAn1cZDFAQrNGlg6TkO1KJisFMkD1/
=L8O4
-END PGP SIGNATURE-


ja.po.gz
Description: Binary data


Bug#346030: fnord: Consider defaulting mime-type to application/octet-stream, not text/plain

2006-01-04 Thread Joshua Rodman
Package: fnord
Version: 1.10-2
Severity: normal

*** Please type your report below this line ***

Several httpds, thttpd, fnord, and others default to type text/plain if
the file extension is not in a short compiled-in fixed list.  The use of
a compiled in list is a good idea for purposes of chroot, security, etc.

However, the use of a short fixed list means that many common file types
will not be on the list. Your addition of 'deb' and others to this list
testafies to this.  

When the default is text/plain, this causes unix configfiles and the
like to display nicely in browsers.  However, it causes binary files
downloaded by windows clients to become corrupted via the LF -> CR/LF
translation implemented in their (foolish?) operating system.

Since I do not like my datafiles to be corrupted on download, I have to
manually patch my httpd for every revision that comes out to default the
mime type to application/octet-stream, which is safe for all uses.
Another approach would be to add 30 or so (and growing over time) other
extensions to the fixed list.

I often get behind in this because it is not really a job or anything,
which means i am often open to compromise or my users are often getting
corrupt downloads.

I think correct is better than convient, and thus I consider this a bug.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-jsr
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US.iso88591)

fnord depends on no packages.

Versions of packages fnord recommends:
ii  ipsvd 0.11.1-1   Internet protocol service daemons
ii  runit 1.3.2-1a UNIX init scheme with service su

-- no debconf information


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



Bug#345969: nepenthes on amd64 bug: casting void * to int32_t on amd64 looses precision

2006-01-04 Thread Nepenthes Development Team
Hi,

as you might guess, I don't run 64bit os myself, so I'm unable to test it.

The patch just replaces int32_t with int, I can't check it myself, but
i guess it *should* work, at least it should compile.
The other changes are part of getting the code compile on cygwin.

If this fixes the problems on amd64, please tell me, as I unable to
reproduce this problem myself.

Thanks

MfG
Markus Koetter
Index: nepenthes-core/src/Buffer.cpp
===
--- nepenthes-core/src/Buffer.cpp   (Revision 1927)
+++ nepenthes-core/src/Buffer.cpp   (Arbeitskopie)
@@ -149,7 +149,7 @@
resize(newSize);
}

-   memcpy((void *)((int32_t)m_data + m_offset), data, size);
+   memcpy((void *)((int)m_data + m_offset), data, size);
}
 
m_offset += size;
@@ -180,7 +180,7 @@
if( size > 0 )
{
//memcpy(m_data, (void *)((int32_t)m_data + size), m_offset - 
size);
-   memmove(m_data, (void *)((int32_t)m_data + size), m_offset - 
size);
+   memmove(m_data, (void *)((int)m_data + size), m_offset - size);
m_offset -= size;
}
 }
@@ -214,8 +214,8 @@
 void Buffer::debug()
 {
printf("SB shellbuffer debug\n");
-   printf("  > m_data = 0x%08x\n", (int32_t)m_data);
-   printf("  > m_offset = %d\n", m_offset);
-   printf("  > m_allocSize = %d\n", m_allocSize);
+   printf("  > m_data = 0x%08x\n", (int)m_data);
+   printf("  > m_offset = %d\n", (int)m_offset);
+   printf("  > m_allocSize = %d\n", (int)m_allocSize);
 }
 



Bug#345374: via82cxxx not correctly detected ?

2006-01-04 Thread Jesus Climent
Hi.

When upgrading to yaird + linux-image-2.6.{14,15} i suffer from no dma since
yaird does not seem to find my via82cxxx ide controler.

output from initrd's init (relevant part):

/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/usb/core/usbcore.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/usb/host/uhci-hcd.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/usb/host/ehci-hcd.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/usb/input/usbhid.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/input/mousedev.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/input/evdev.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/ide-core.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/ide-generic.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/ide-disk.ko'
mkbdev '/dev/hda' 'hda'
mkbdev '/dev/hda2' 'hda/hda2'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/fs/mbcache.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/fs/jbd/jbd.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/fs/ext3/ext3.ko'

However:

[EMAIL PROTECTED]:/tmp/tmp $ lspci
:00:00.0 Host bridge: VIA Technologies, Inc. VT8378 [KM400/A] Chipset Host 
Bridge
:00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI Bridge
:00:08.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 
08)
:00:08.1 Input device controller: Creative Labs SB Live! MIDI/Game Port 
(rev 08)
:00:0a.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev 80)
:00:0a.1 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev 80)
:00:0f.0 IDE interface: VIA Technologies, Inc. VIA VT6420 SATA RAID 
Controller (rev 80)
:00:0f.1 IDE interface: VIA Technologies, Inc. 
VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06)
:00:10.0 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev 81)
:00:10.1 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev 81)
:00:10.2 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev 81)
:00:10.3 USB Controller: VIA Technologies, Inc. VT82x UHCI USB 1.1 
Controller (rev 81)
:00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86)
:00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge 
[KT600/K8T800/K8T890 South]
:00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 
78)
:01:00.0 VGA compatible controller: Matrox Graphics, Inc. G400/G450 (rev 82)

Once I recreate the initrc.img file and reboot, with the following entries:

...
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/input/evdev.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/ide-core.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/pci/via82cxxx.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/ide-disk.ko'
/sbin/insmod '/lib/modules/2.6.15-1-686/kernel/drivers/ide/ide-generic.ko'
mkbdev '/dev/hda' 'hda'
...

Everything starts working fine (DMA related):

bishop:~# hdparm /dev/hda

/dev/hda:
 multcount=  0 (off)
 IO_support   =  1 (32-bit)
 unmaskirq=  1 (on)
 using_dma=  1 (on)
 keepsettings =  0 (off)
 readonly =  0 (off)
 readahead= 256 (on)
 geometry = 65535/16/63, sectors = 117231408, start = 0

Cheers,

-- 
Jesus Climent  info:www.pumuki.org
Unix SysAdm|Linux User #66350|Debian Developer|2.6.14|Helsinki Finland
GPG: 1024D/86946D69 BB64 2339 1CAA 7064 E429  7E18 66FC 1D7F 8694 6D69

Do us a favor...I know it's difficult for you...but please, stay here, 
and try not to do anything...stupid.
--Jack Sparrow (Pirates of the Caribbean)


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



Bug#344481: Mysterious crash in php4-rrdtool

2006-01-04 Thread Artur R. Czechowski
On Thu, Dec 22, 2005 at 10:21:52PM -0800, Steve Langasek wrote:
> I'd rather see some analysis to show where the bug actually belongs instead
> of guessing and reassigning.
Well, some analysis you asked for. I use glibc-2.3.5-11 with libc6-dbg
installed.

export LD_LIBRARY_PATH=/usr/lib/debug
gdb /usr/sbin/apache
br _getopt_internal_r (it is called from getopt_long, here is the logic)
r -X
(breakpoint activated some times due to apache parameters)
I run the script calling rrd_graph and I'm inside:

#0  _getopt_internal_r (argc=22, argv=0x8141b78, 
optstring=0xb78dcb10 
"s:e:x:y:v:w:h:iu:l:rb:oc:n:m:t:f:a:I:zgjFYAMEX:L:S:T:NR:B:", 
longopts=0xb78f1a20, longind=0xbf81f324, long_only=0, d=0xb7d54400)
at getopt.c:398

I set display for following expressions: argv[d->optind], d->optind,
d->optarg, optarg.

Stepping by next until getopt.c:451.

Some iteration of:
  while (d->optind < argc && NONOPTION_P)
d->optind++;
and I have:
d->optind = 2
d->optarg = 0x0
optarg=0x0
argv[d->optind] = 0x8141be4 "--start"

Some steps inside the code. And, after getopt.c:679:
d->optarg = argv[d->optind++];
I have:
3: d->optarg = 0x8141bfc "-2d"
2: d->optind = 4
1: argv[d->optind] = 0x8141c14 "--x-grid"

So far it's OK.
Still stepping.

Back to:
_getopt_internal (argc=22, argv=0x8141b78, 
optstring=0xb7928b10 
"s:e:x:y:v:w:h:iu:l:rb:oc:n:m:t:f:a:I:zgjFYAMEX:L:S:T:NR:B:", 
longopts=0xb793da20, longind=0xbfa6a7c4, long_only=0) at getopt.c:1169

There are three lines:
  optind = getopt_data.optind;
  optarg = getopt_data.optarg;
  optopt = getopt_data.optopt;

After executing those lines I have:

(gdb) print getopt_data.optind
$1 = 4
(gdb) print getopt_data.optarg
$2 = 0x8141bfc "-2d"

and (sic!):
(gdb) print optind
$4 = 4
(gdb) print optarg
$5 = 0x0

So, the question is: why the assignment in getopt.c:1170:
  optarg = getopt_data.optarg;
does not work?

I would like to remind you that getopt_long from libc works correctly
(details in this buglog) in most cases. But combination of apache, php4,
rrdtool and php4-rrdtool makes it unworking.

Regards
Artur
-- 
zjadłam ruskie i barszcz ukraiński.
ciekawe czy od tego dostanę automatycznie złotych zębów
/majaka/


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



Bug#241526: logcheck: Logcheck ignoring by number of occurrences

2006-01-04 Thread Erich Schubert
Package: logcheck
Version: 1.2.42
Followup-For: Bug #241526

Hi,
I'd also like to be able to ignore messages unless they occur too often,
and maybe group certain messages when they occur very often.

A typical example is
postfix/smtp: connect to mx3.mail.yahoo.com[64.156.215.18]: read timeout
(port 25)

Oh my god! This really is critical information, isn't it?
Well, when your server has like dozens of them it probably means
something is broken with your network connectivitiy; then it's useful to
know. As long as there are only single of these messages, they should
just be ignored...

Similarly:
grouping them by the number of hits - like dicitionary attacks.
For dictionary attacks, only the first and last attempt is that
interesting that I'd like to see it in the logcheck result; if I need
the complete data I can still access the original logfile.

Thanks,
Erich


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



Bug#345977: RFS: polld -- Polling demon

2006-01-04 Thread Michal Čihař
Hi all

In case discussion in debian-devel doesn't persuade me that this
program is useless and there is some better solution, I'm looking for
sponsor of this simple demon.
  
  ITP : 345977
* Package name: polld
  Version : 0.2
  Upstream Author : Michal Čihař <[EMAIL PROTECTED]>
* URL : http://www.cihar.com/software/polld
* License : GPL
  Description : Polling demon

This demon periodically opens devices (files) listed in configuration.
Main reason is to force rescanning of partitions on usb devices while
using udev.

Lintian checked package is available in my personal repository:

deb http://debian.cihar.com/ unstable polld
deb-src http://debian.cihar.com/ unstable polld

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


signature.asc
Description: PGP signature


Bug#297330: bash3: -/ garbages colored prompt

2006-01-04 Thread Mike Stroyan
  The 3.1-1 version did not correct this problem.
The vi history operation still produces garbage characters
when the prompt uses non-printing characters between
\[ and \] delimiters.

  The vi-search-prompt.dpatch patch can still be applied
to the 3.1-1 version to correct this problem.

-- 
Mike Stroyan, [EMAIL PROTECTED]


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



Bug#346029: libqt3-mt: Deadkeys don't work with Qt-based applications and cz keyboard

2006-01-04 Thread Matej Cepl
Package: libqt3-mt
Version: 3:3.3.5-3
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I am not sure whether I should file this here or against the
xlibs-data package, but the problem shows itself only in Qt-based
applications (both KDE and non-KDE, like lyx-qt) so I am going
here. When pressing deadkey with a letter, combination of which
gives Czech letter with diacritical mark (e.g., zcaron), I get
caron and letter-z as two separate characters, ˇz. Mozilla, plain
xterm (not konsole) work in this regard correctly (there are
other keyboard related issues here -- #345436 collects many of
them, but I have also #345893 -- which makes me wonder whether it
is not bug of xorg after all). Unfortuantely, this makes all
Qt-based application practically unusable for all Czech users.

This is my keyboard section in xorg.conf (I have switched off
international keyboard support in KDE Control Center, so it
should be all that is there):

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "inspiron" # or "pc104" doesn't matter
Option  "XkbLayout" "cz_qwerty"
Option  "XkbOptions"
"compose:caps,grp:led_scroll,grp:alts_toggle"
Option  "XkbVariant""basic"
EndSection

and this is the output of xprop:

chelcicky:~$ xprop -root | grep XKB
_XKB_RULES_NAMES(STRING) = "xorg", "inspiron", "cz_qwerty", "basic", 
"compose:caps,grp:led_scroll,grp:alts_toggle"
chelcicky:~$

Any thoughts?

Matej


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

Versions of packages libqt3-mt depends on:
ii  fontconfig2.3.2-1.1  generic font configuration library
ii  libaudio2 1.7-3  The Network Audio System (NAS). (s
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libice6   6.9.0.dfsg.1-1 Inter-Client Exchange library
ii  libjpeg62 6b-11  The Independent JPEG Group's JPEG 
ii  libmng1   1.0.8-1Multiple-image Network Graphics li
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libsm66.9.0.dfsg.1-1 X Window System Session Management
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-1 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-1 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxi66.9.0.dfsg.1-1 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-1 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-1 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-1 X Toolkit Intrinsics
ii  zlib1g1:1.2.3-9  compression library - runtime

libqt3-mt recommends no packages.

- -- no debconf information

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

iD8DBQFDvFds4J/vJdlkhKwRAt7QAJ9LilrgdzTsifJRdLMq/3/A79JuTACfbnNb
TCVEtdmcCp8YSnFnuwErIGo=
=p5mV
-END PGP SIGNATURE-




Bug#346028: linux-2.6: Hangs while attempting to purge

2006-01-04 Thread Nathanael Nerode
Package: linux-2.6
Severity: serious
Justification: Won't uninstall cleanly


It hangs on this line of the postrm script:

my $ret = purge();

I can get it to work by deleting this line.  Perhaps this is because a
debconf routine is being called after "stop" has been called?  I don't know,
but anyway it's a serious bug.

This bug appears in linux-image-2.6.14-2-686 and linux-image-2.6.15-1-686,
and I assume in other flavours as well.


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



Bug#345996: scim: OK, in english

2006-01-04 Thread Ming Hua
On Wed, Jan 04, 2006 at 08:53:56PM +0100, nicolas.patrois wrote:
>   The following packages have unmet dependencies:
> scim: Conflicts: scim-uim (<= 0.1.3-2) but 0.1.3-2 is
> installed and it is kept back.
> Conflicts: scim-m17n (<= 0.1.3-1) but 0.1.3-1 is
> installed and it is kept back.
> Resolving dependencies...
> The following actions will resolve these dependencies:
> 
> Upgrade the following packages:
> scim-m17n [0.1.3-1 (now) -> 0.1.3-2 (testing)]
> scim-uim [0.1.3-2 (now) -> 0.1.3-3+b1 (testing)]
> 
> Score is 10

Oh and by the way, aptitude is actually proposing the correct solution
here - scim-m17n and scim-uim should be upgraded together with scim.

> Accept this solution? [Y/n/q/?] q
> Abandoning all efforts to resolve these
> dependencies.
> Abort.

If you accept the solution here, I believe scim among with the modules
will be sucessfully upgraded.

Ming
2006.01.04


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



  1   2   3   4   5   >