Bug#620515: kernel-package: --revision does not conform to debian policy

2011-04-02 Thread Alan Braslau
Package: kernel-package
Version: 12.036+nmu1
Severity: minor


The documentation for kernel-package (/usr/share/doc/kernel-package/README.gz)
suggests the use of --revision=custom.1.0 but this does not conform to
Debian policy:
http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Version
As this is now enforced by dpkg, following the instructions for kernel-package
now yields the error:

dpkg-query: warning: parsing file '/var/lib/dpkg/status' near line 19528 
package 'linux-image-2.6.38':
 error in Version string 'custom.1.2': version number does not start with digit

Please update the documentation to kernel-package to be coherent with
dpkg and Debian policy.

Thank you.

Alan

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

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

Versions of packages kernel-package depends on:
ii  binutils   2.21.0.20110327-2 The GNU assembler, linker and bina
ii  build-essential11.5  Informational list of build-essent
ii  debianutils3.4.4 Miscellaneous utilities specific t
ii  file   5.04-5Determines file type using magic
ii  gettext0.18.1.1-3GNU Internationalization utilities
ii  make   3.81-8An utility for Directing compilati
ii  module-init-tools  3.12-1tools for managing Linux kernel mo
ii  po-debconf 1.0.16+nmu1   tool for managing templates file t
ii  util-linux 2.17.2-9.1Miscellaneous system utilities

Versions of packages kernel-package recommends:
ii  cpio  2.11-7 GNU cpio -- a program to manage ar

Versions of packages kernel-package suggests:
pn  btrfs-tools   none (no description available)
ii  bzip2 1.0.5-6high-quality block-sorting file co
pn  docbook-utils none (no description available)
ii  e2fsprogs 1.41.12-2  ext2/ext3/ext4 file system utiliti
pn  grub | grub2  none (no description available)
ii  initramfs-tools [linux-in 0.98.8 tools for generating an initramfs
pn  jfsutils  none (no description available)
ii  libncurses5-dev [libncurs 5.8+20110307-1 developer's libraries for ncurses
ii  linux-source-2.6 [linux-s 1:2.6.38+33Linux kernel source for Linux 2.6 
ii  linux-source-2.6.38 [linu 2.6.38-2   Linux kernel source for version 2.
pn  mcelognone (no description available)
pn  oprofile  none (no description available)
pn  pcmciautils   none (no description available)
ii  ppp   2.4.5-5Point-to-Point Protocol (PPP) - da
ii  procps1:3.2.8-10 /proc file system utilities
pn  quota none (no description available)
pn  reiserfsprogs none (no description available)
pn  squashfs-toolsnone (no description available)
ii  udev  166-1  /dev/ and hotplug management daemo
pn  xfsprogs  none (no description available)
pn  xmlto none (no description available)

-- no debconf information



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



Bug#617236: olwmolvwm: DISPLAY environment variable corrupted

2011-03-07 Thread Alan BRASLAU
Package: olwm
Version: 3.2p1.4-25.1
Severity: grave
Tags: patch
Justification: renders package unusable


Prelude:

OK, I know that xview, olwm, olvwm are DEAD... but

I was very happy to see that they now compile on amd64.
(I had earlier lamely tried compiling them myself on this architecture
without much success, nor putting much effort, either.)

However, I loved olvwm and xview, and ALL current GUI developers
should read the Open Look Style Guide, as it clearly explains how a window
manager and GUI system should behave. Lessons that have NOT been learnt.

Even though I loved olvwm, I will probably not use it again much,
or for long, as we have all become dependent on more modern windowing
systems. But perhaps in a spate of some sort of mid-life crisis
I will nostalgically go back to it, and find efficiency and happiness.


Bug:

olwm and olvwm corrupt the environment variable DISPLAY.
If it is set to :0 as by default on my system,
the window manager resets it to .0, breaking everything.
If it is set to :0.0, then everything goes fine.

The problem is in olwm/environ.c and olvwm-4.1/environ.c
My rusty programming experience (that dates from the period when xview
was developed, and before) sees nothing wrong, except:

134c134
   (void)sprintf(value,%.*s.%d,len,display,screen);
---
   (void)sprintf(value,%*s.%d,len,display,screen);

I do not understand what %.*s means, and I believe that this is a typo.
Removing the . produces working olwm and olvwm.

Thanks again for getting this to compile under amd64
(the problem was probably in a dependency that was fixed).
Please fix the package before anyone else notices.

Thank you.

Alan

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

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

Versions of packages olwm depends on:
ii  libc6   2.11.2-13Embedded GNU C Library: Shared lib
ii  libx11-62:1.4.1-5X11 client-side library
ii  libxext62:1.2.0-2X11 miscellaneous extension librar
ii  xviewg  3.2p1.4-25.1 XView shared libraries

olwm recommends no packages.

Versions of packages olwm suggests:
ii  menu2.1.44   generates programs menu for all me
ii  xview-clients   3.2p1.4-25.1 XView client programs

-- no debconf information
#ident	@(#)environ.c	1.9	93/06/28 SMI

/*
 *  (c) Copyright 1989 Sun Microsystems, Inc.
 */

/*
 *  Sun design patents pending in the U.S. and foreign countries. See
 *  LEGAL_NOTICE file for terms of the license.
 */

#include stdio.h
#ifdef SYSV
#include string.h
#else
#include strings.h
extern char *strrchr();
extern char *strchr();
#endif
#include X11/Xos.h
#include X11/Xlib.h
#include X11/Xatom.h
#include mem.h

extern	char **environ;

/* ---
 *	Local Data Structures
 * ---*/

/*
 * 	Env - environment object
 */
typedef struct _env {
	char	**environ;	/* array of environment strings */
	int	length;		/* length of environ array */
	int	used;		/* number of entries actually used */
} Env;

/* ---
 *	Local Functions
 * ---*/

/*
 *	createEnv - Creates a new environment array that is the length of
 *		of the current environment plus the number of additions.
 */
static void
createEnv(env,nadditions)
	Env	*env;
	int	nadditions;
{
	int	i = 0;

	/* find the number of items in the current environ */
	while (environ[i] != (char *)NULL) {
		i++;
	}

	/* create space for the environ strings */
	env-used = i;
	env-length = env-used + nadditions + 1;
	env-environ = MemAlloc(env-length*sizeof(char *));

	/* copy the current environ into the new one */
	for (i=0; ienv-used; i++) {
		env-environ[i] = MemNewString(environ[i]);
	}
	env-environ[i] = (char *)NULL;
}

/*
 *	putEnv - Puts the name,value pair into the specified environment
 *	 replacing any existing values.
 *		 Assumes there is space for the new setting.
 */
static void
putEnv(env,name,value)
	Env	*env;
	char	*name;
	char	*value;
{
	int	nameLen = strlen(name);
	char	*envVar;
	int	count;

	/* create new env string with space for '=' and null */
	envVar = (char *)MemAlloc(nameLen + strlen(value) +2);

	(void)sprintf(envVar,%s=%s,name,value);

	/* search through, checking for variable in question */
	for (count=0 ; countenv-used; count++) {
		if (!strncmp(env-environ[count],name,nameLen))
			break;
	}
	

	if (count == env-used)		/* finished loop without match */
		env-used++;		/* added 1 more var to the env */
	else
		MemFree(env-environ[count]);	/* don't need */

	

Bug#612128: [kfreebsd] grub-pc: fails to configure (camcontrol: cam_lookup_pass: CAMGETPASSTHRU ioctl failed)

2011-02-09 Thread Alan BRASLAU
Jonathan Nieder wrote:
 grub-pc 1.98+20100804-14 works okay, so there is nothing urgent about this.

Except that it leads to an unbootable system if one is not careful
(and should be tagged unstable rather than experimental).

Alan



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



Bug#531221: still will not fix??

2011-01-28 Thread Alan BRASLAU
Over one year+ and still Will not fix.
Is this Debian??

Alan



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



Bug#531221: still will not fix??

2011-01-28 Thread Alan BRASLAU
On Friday 28 January 2011 11:48:43 Frederik Schwarzer wrote:
 Did you read the whole discussion?
 All opinions were stated and a decision was made.
 What is there still to be done from your point of view?
 
 On 28/01/2011, Alan BRASLAU alan.bras...@cea.fr wrote:
  Over one year+ and still Will not fix.
  Is this Debian??
  
  Alan

I read all of the opinions in the long thread.
But I saw little respect or weight given to Debian's
very reason for existence.  ALL the justifications for
won't fix are not Debian-ian.

Alan



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



Bug#531221: still will not fix??

2011-01-28 Thread Alan BRASLAU
On Friday 28 January 2011 13:46:06 Kevin Krammer wrote:
 Aside from the already mentioned options, anyone  who'd like to have a
 different default on their systems (globally for all users) can simply
 create a minimal Okular config with that parameter set to false.
 
 I.e. creating a file /usr/share/kde4/config/okularrc or
 /usr/local/share/config/okularrc with the following content
 
 [General]
 ObeyDRM=false
 
 Cheers,
 Kevin

Thank you, this is useful, perhaps better than the other already mentioned 
options. And I note in passing that I do not find any documentation concerning 
okularrc, not even a man page.

This entire discussion is rather old, going way back, and I am surprised by 
okular for re-inventing a problem.

Alan



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



Bug#567953: ufs: Cannot find list of partitions!

2010-11-07 Thread Alan BRASLAU
On Saturday 06 November 2010 22:40:01 Robert Millan wrote:
 Vladimir wrote:
  grep reveals no instances of this sentence at all in either grub-pc and
  grub-common.
 
 This smells like os-prober.  Alan, could you remove os-prober
 package and then try again?
 
 If the problem disappears, then this is a bug in os-prober and
 should be reassigned.

Indeed, removing os-prober eliminates the error message and the bug should be 
reassigned.

Alan



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



Bug#598693: imagemagick: compile with libfftw?

2010-10-01 Thread Alan Braslau
Package: imagemagick
Version: 8:6.6.0.4-2.2
Severity: wishlist


Imagemagick needs to be recompiled with libfftw
to work with the options -fft and -ift.
In order not to add a dependance on libfftw3-3,
this option is not enabled in the distributed
binary package.

Installing libfftw3-3 and libfftw3-dev
and recompiling the package:
apt-get build-dep imagemagick;
apt-get install libfftw3-3 libfftw3-dev;
apt-get -build source imagemagick;
dpkg -i imagemagick_*.deb
is sufficient to create an fft-enabled
version of imagemagick.
Is this a correct proceedure to follow?
(notably, apt will try to update
over the locally compiled package...)

Would it be possible for the maintainers
to add a README.Debian file to explain
this and to provide a correct proceedure
to be followed by users
in order to keep an updated fft-enabled
version of imagemagick on their systems?

Thank you.

Alan

P.S. Some use of -fft/-ift
also requires hdri support
(but not all!)
so this wish item is somewhat,
but not entirely, related to #476357.


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

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

Versions of packages imagemagick depends on:
ii  libbz2-1.0  1.0.5-6  high-quality block-sorting file co
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libfftw3-3  3.2.2-1  library for computing Fast Fourier
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-2  FreeType 2 font engine, shared lib
ii  libglib2.0-02.24.2-1 The GLib library of C routines
ii  libgomp14.4.4-17 GCC OpenMP (GOMP) support library
ii  libice6 2:1.0.6-1X11 Inter-Client Exchange library
ii  libjpeg62   6b1-1The Independent JPEG Group's JPEG 
ii  liblcms11.18.dfsg-1.2+b3 Color management library
ii  liblqr-1-0  0.4.1-1  converts plain array images into m
ii  libltdl72.2.6b-2 A system independent dlopen wrappe
ii  libmagickcore3  8:6.6.0.4-2.2low-level image manipulation libra
ii  libmagickwand3  8:6.6.0.4-2.2image manipulation library
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libtiff43.9.4-3  Tag Image File Format (TIFF) libra
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxext62:1.1.2-1X11 miscellaneous extension librar
ii  libxt6  1:1.0.7-1X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages imagemagick recommends:
ii  ghostscript   8.71~dfsg2-6   The GPL Ghostscript PostScript/PDF
ii  libmagickcore3-extra  8:6.6.0.4-2.2  low-level image manipulation libra
ii  netpbm2:10.0-12.2+b1 Graphics conversion tools between 
ii  ufraw-batch   0.16-3+b1  batch importer for raw camera imag

Versions of packages imagemagick suggests:
ii  autotrace 0.31.1-15+b1   bitmap to vector graphics converte
ii  cups-bsd [lpr 1.4.4-6Common UNIX Printing System(tm) - 
ii  curl  7.21.1-1   Get a file from an HTTP, HTTPS or 
ii  enscript  1.6.5.2-1  converts text to Postscript, HTML 
ii  ffmpeg5:0.6~svn20100726-0.0  audio/video encoder, streaming ser
ii  gimp  2.6.10-1   The GNU Image Manipulation Program
ii  gnuplot   4.4.0-1A command-line driven interactive 
pn  grads none (no description available)
ii  groff-base1.20.1-10  GNU troff text-formatting system (
pn  hp2xx none (no description available)
pn  html2ps   none (no description available)
ii  imagemagick-d 8:6.6.0.4-2.2  document files of ImageMagick
ii  libwmf-bin0.2.8.4-6.1+b1 Windows metafile conversion tools
ii  mplayer   2:1.0~rc3++svn20100804-0.0 The Ultimate Movie Player For Linu
ii  povray1:3.6.1-12+b1  Persistence of vision raytracer (3
pn  radiance  none (no description available)
ii  sane-utils1.0.21-4   API library for scanners -- utilit
ii  texlive-binar 2009-7 Binaries for TeX Live
ii  transfig  1:3.2.5.c-1Utilities for converting XFig figu
ii  xdg-utils 1.0.2+cvs20100307-2desktop integration utilities from

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject 

Bug#598693: imagemagick: compile with libfftw?

2010-10-01 Thread Alan BRASLAU
On Friday 01 October 2010 10:05:12 Bastien ROUCARIES wrote:
 On Fri, Oct 1, 2010 at 9:16 AM, Alan Braslau alan.bras...@cea.fr wrote:
  Package: imagemagick
  Version: 8:6.6.0.4-2.2
  Severity: wishlist
  
  
  Imagemagick needs to be recompiled with libfftw
  to work with the options -fft and -ift.
  In order not to add a dependance on libfftw3-3,
  this option is not enabled in the distributed
  binary package.
  
  Installing libfftw3-3 and libfftw3-dev
  and recompiling the package:
 apt-get build-dep imagemagick;
 apt-get install libfftw3-3 libfftw3-dev;
 apt-get -build source imagemagick;
 dpkg -i imagemagick_*.deb
 
 Does the libfft create dependencies or is a delegate ?
 
 Could you check with ldd on your binairies and lib.
 
 If it is a delegate we could add it easilly.

I do not know much about delegates, but the imagemagick config.log contains:
...
Delegate Configuration:
BZLIB --with-bzlib=yes  yes
Autotrace --with-autotrace=no   no
Dejavu fonts  --with-dejavu-font-dir=defaultnone
DJVU  --with-djvu=yes   yes
DPS   --with-dps=no no
FFTW  --with-fftw=yes   yes
...


$ ldd /usr/bin/convert
linux-vdso.so.1 =  (0x7fff81dff000)
libMagickCore.so.3 = /usr/lib/libMagickCore.so.3 (0x7f033b595000)
libMagickWand.so.3 = /usr/lib/libMagickWand.so.3 (0x7f033b28)
liblcms.so.1 = /usr/lib/liblcms.so.1 (0x7f033b047000)
libtiff.so.4 = /usr/lib/libtiff.so.4 (0x7f033ade4000)
libfreetype.so.6 = /usr/lib/libfreetype.so.6 (0x7f033ab5c000)
libjpeg.so.62 = /usr/lib/libjpeg.so.62 (0x7f033a938000)
liblqr-1.so.0 = /usr/lib/liblqr-1.so.0 (0x7f033a726000)
libglib-2.0.so.0 = /lib/libglib-2.0.so.0 (0x7f033a44a000)
libfftw3.so.3 = /usr/lib/libfftw3.so.3 (0x7f033a14a000)
libfontconfig.so.1 = /usr/lib/libfontconfig.so.1 (0x7f0339f15000)
libXext.so.6 = /usr/lib/libXext.so.6 (0x7f0339d03000)
libXt.so.6 = /usr/lib/libXt.so.6 (0x7f0339a9e000)
libbz2.so.1.0 = /lib/libbz2.so.1.0 (0x7f033988e000)
libz.so.1 = /usr/lib/libz.so.1 (0x7f0339677000)
libpthread.so.0 = /lib/libpthread.so.0 (0x7f033945a000)
libltdl.so.7 = /usr/lib/libltdl.so.7 (0x7f0339251000)
libdl.so.2 = /lib/libdl.so.2 (0x7f033904d000)
libSM.so.6 = /usr/lib/libSM.so.6 (0x7f0338e44000)
libICE.so.6 = /usr/lib/libICE.so.6 (0x7f0338c29000)
libX11.so.6 = /usr/lib/libX11.so.6 (0x7f03388ed000)
libgomp.so.1 = /usr/lib/libgomp.so.1 (0x7f03386df000)
libm.so.6 = /lib/libm.so.6 (0x7f033845d000)
libc.so.6 = /lib/libc.so.6 (0x7f03380fc000)
libpcre.so.3 = /lib/libpcre.so.3 (0x7f0337ecb000)
libexpat.so.1 = /usr/lib/libexpat.so.1 (0x7f0337ca3000)
/lib64/ld-linux-x86-64.so.2 (0x7f033ba0d000)
libuuid.so.1 = /lib/libuuid.so.1 (0x7f0337a9e000)
libxcb.so.1 = /usr/lib/libxcb.so.1 (0x7f0337882000)
librt.so.1 = /lib/librt.so.1 (0x7f033767a000)
libXau.so.6 = /usr/lib/libXau.so.6 (0x7f0337476000)
libXdmcp.so.6 = /usr/lib/libXdmcp.so.6 (0x7f0337271000)

$ ldd /usr/lib/libfftw3.so.3
linux-vdso.so.1 =  (0x7fffdb3ff000)
libm.so.6 = /lib/libm.so.6 (0x7f4ba79ec000)
libpthread.so.0 = /lib/libpthread.so.0 (0x7f4ba77d)
libc.so.6 = /lib/libc.so.6 (0x7f4ba746e000)
/lib64/ld-linux-x86-64.so.2 (0x7f4ba7f8f000)




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



Bug#549412: freebsd-utils: fails to mount nfs: mount_nfs not found

2010-09-28 Thread Alan BRASLAU
I find your use of the word complaining disrespectful.
A bug report serves to give feedback, and being polite
should be answered politely.

The point is that one cannot have things both ways.
Either kfreebsd is indeed to become core as the announcements
advertise (and I imagine the developers wish, otherwise
why would they be working on this?), or not.

NFS is a core functionality in many ways.
It is therefore legitimate that this bug be reported.

Alan



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



Bug#549412: freebsd-utils: fails to mount nfs: mount_nfs not found

2010-09-28 Thread Alan BRASLAU
On Tuesday 28 September 2010 10:54:26 Cyril Brulebois wrote:
 Alan BRASLAU alan.bras...@cea.fr (28/09/2010):
  I find your use of the word complaining disrespectful.  A bug
  report serves to give feedback, and being polite should be answered
  politely.
 
 Insisting on a particular severity regardless of the maintainer's
 opinion is disrespectful. (Oh wait, the maintainers are even porters,
 so maybe they can figure out which severity is appropriate?)
 
  NFS is a core functionality in many ways. It is therefore legitimate
  that this bug be reported.
 
 That doesn't mean people can annoy maintainers until the feature is
 implemented.
 

So sensitive!

All one asks for is politeness. The use of complaining, annoying,
etc. shows no respect for the community. Do developers really
want to be isolated, or are they indeed interested in getting
feedback from users/testers?

A bug report reflects needs. Maintainers can politely give information
on meeting these needs (or on the inappropriateness/marginality of
these particular needs).

The problem with the current issue is that the maintainers/promoters
of kfreebsd ask about fitness for release and would somehow like
for this kernel to be adopted by part of the community.
Functionality so basic (and so long-standing) as NFS should be included.

I suppose that the porting is not so trivial, otherwise it would
already be included. But much contradictory information
on this question can be found on the web, including messages
from maintainers claiming that it is there!
The purpose of the bug report is to clarify the situation,
not to provoke over-sensitive reactions on the part of developers.
Tit-for-tat responses are indeed unproductive and demotivating.
Such reactions show annoyance, and annoyance reveals unease.

Alan



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



Bug#549412: freebsd-utils: fails to mount nfs: mount_nfs not found

2010-07-06 Thread Alan BRASLAU
http://www.debian.org/News/2009/20091007

``
Debian pushes development of kFreeBSD port
October 7th, 2009
The Debian Release Team is pleased to announce that it sees the port of the 
Debian system to the FreeBSD kernel fit to be handled equal with the other 
release ports. The upcoming release codenamed 'Squeeze' is planned to be the 
first Debian distribution to be released with Linux and FreeBSD kernels.

The kFreeBSD architectures for the AMD64/Intel EM64T and i386 processor 
architectures are now release architectures. Severe bugs on these 
architectures will be considered release critical the same way as bugs on 
other architectures like armel or i386 are. If a particular package does not 
build or work properly on such an architecture this problem is considered 
release-critical.
''

A missing mount_nfs makes kFreeBSD pretty incomplete for use.
The answers in this bug report makes the news announcement
pretty misleading. Furthermore, the handling the problem in such a way

 At most important, but may be even just wishlist:

 I assume you did notice “package maintainer's or release manager's
 opinion” here. Which of them are you? No need for severity ping pong.

is pretty unfair for the good intention of users who are willing
to follow Debian in this direction. A reasonable interpretation
of the text of the news announcement would even make this issue
release-critical.

See also:

http://lists.debian.org/debian-bsd/2010/01/msg00099.html

 Re: NFS on Debian GNU/kFreeBSD?
 To: The Anarcat anar...@koumbit.org
 Cc: debian-...@lists.debian.org
 Subject: Re: NFS on Debian GNU/kFreeBSD?
 From: Aurelien Jarno aurel...@aurel32.net
 Date: Thu, 21 Jan 2010 10:16:04 +0100
 Message-id: 20100121091604.gc16...@hall.aurel32.net
 In-reply-to: 20100121015022.gf27...@anarcat.ath.cx
 References: 20100121015022.gf27...@anarcat.ath.cx
 On Wed, Jan 20, 2010 at 08:50:22PM -0500, The Anarcat wrote:
  Hi!
  
  I wonder if there are any plans to support NFS in Debian GNU/kFreeBSD.
  At any rate, how would it be supported? nfs-utils is probably not the
  right way, so I guess we'd need to port something from FreeBSD directly?
  
 
 mount_nfs is available in freebsd-utils, so you can easily do NFS mounts
 using using mount -t nfs.
 
 
 -- 
 Aurelien Jarno  GPG: 1024D/F1BCDB73
 aurel...@aurel32.net http://www.aurel32.net

Wishlist, fantasy, or serious?

Alan



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



Bug#549412: freebsd-utils: fails to mount nfs: mount_nfs not found

2010-07-06 Thread Alan BRASLAU
On Tuesday 06 July 2010 18:49:52 Aurelien Jarno wrote:
 
 If some users consider the use of NFS very important, they can probably
 help to solve this issue.

They are, by very patiently (and politely) filing bug reports.
Also by spending time testing.

Not all are programmers, neither having the skills nor the time
to look into details.

Alan



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



Bug#585097: kde-standard: change update-notifier-kde from depends to recommends

2010-06-09 Thread Alan BRASLAU
Package: kde-standard
Version: 5:62
Severity: normal


kde-standard recommends freespacenotifier and network-manager-kde.
update-notifier-kde should also have the status of recommends, not depends.
Indeed, these are all quite *invasive* background daemons that should not
be imposed on kde-standard users. The current situation forced me
to uninstall the kde-standard meta-package and to manually select
many of its components.

Note that these daemons may break other standard Debian system functionality
(network-manager breaks standard wpa-suppleant usage, update-notifier breaks
other packages making use of motd, for example).

Also, but this is a matter of (good) taste, such daemons smell of
Microsoft Windows practices, not standard unix-like administration.
Let users choose this if they wish, perhaps through another metapackage.

Thank you.

Alan

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

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

Versions of packages kde-standard depends on:
ii  akregator 4:4.4.4-1  RSS/Atom feed aggregator for KDE
ii  ark   4:4.4.4-1  archive utility for KDE 4
ii  dragonplayer  4:4.4.4-1  simple KDE video player
ii  gwenview  4:4.4.4-1  image viewer for KDE 4
ii  hal   0.5.14-2   Hardware Abstraction Layer
ii  juk   4:4.4.4-1  music jukebox for KDE
ii  kaddressbook  4:4.4.4-1  KDE address book
ii  kate  4:4.4.4-1  KDE 4 Advanced Text Editor
ii  kcalc 4:4.4.4-1  calculator for KDE 4
ii  kde-plasma-desktop5:62   the KDE Plasma Desktop and minimal
ii  kde-plasma-netbook5:62   the KDE Plasma Netbook and minimal
ii  kdeplasma-addons  4:4.4.4-1  addons for KDE 4 Plasma - metapack
ii  khelpcenter4  4:4.4.4-1  Help Center for KDE 4
ii  kmail 4:4.4.4-1  KDE Email client
ii  kmix  4:4.4.4-1  volume control and mixer for KDE
ii  knotes4:4.4.4-1  KDE sticky notes
ii  kopete4:4.4.4-1  instant messenger for KDE 4
ii  korganizer4:4.4.4-1  KDE personal organizer
ii  kscreensaver  4:4.4.4-1  Additional screensavers released w
ii  ksnapshot 4:4.4.4-1  screen capture tool for KDE 4
ii  kwalletmanager4:4.4.4-1  secure password wallet manager for
ii  okular4:4.4.4-1  document viewer for KDE 4
ii  plasma-desktopthemes-artwork  4:4.4.4-1  desktop themes for KDE
ii  polkit-kde-1  0.95.1-2   KDE dialogs for PolicyKit
ii  sweeper   4:4.4.4-1  history and temporary file cleaner
pn  update-notifier-kde   none (no description available)

Versions of packages kde-standard recommends:
pn  freespacenotifier none (no description available)
ii  konq-plugins  4:4.4.0-2  plugins for Konqueror, the KDE fil
pn  network-manager-kde   none (no description available)

Versions of packages kde-standard suggests:
pn  kde-l10n  none (no description available)
ii  kde-plasma-desktop5:62   the KDE Plasma Desktop and minimal
ii  kde-plasma-netbook5:62   the KDE Plasma Netbook and minimal



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



Bug#583590: qemu-kvm: /etc/kvm/kvm-ifdown: could not launch network script

2010-05-28 Thread Alan Braslau
Package: qemu-kvm
Version: 0.12.4+dfsg-1
Severity: minor


I finally got -net tap to work properly!
(wishlist: the documentation on networking could be greatly improved...)

My command line (somewhat simplified) is:

$ kvm -cpu host -m 2G -drive 
file=image.qcow2,index=0,cache=writeback,media=disk -vga std -soundhw ac97 -net 
nic,macaddr=$macaddress,model=e1000 -net tap

and this leads, by default, to the following error message on exit:

/etc/kvm/kvm-ifdown: could not launch network script

Of course, as /etc/kvm/kvm-ifdown does not exist.
Rather than adding ,downscript=none
perhaps the debian package should install one, such as

#! /bin/sh
# Script to bring a network (tap) device for qemu-kvm down

(or containing a better comment, stating why no action is necessary).

Thanks!


-- Package-specific info:


/proc/cpuinfo:

processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 23
model name  : Intel(R) Core(TM)2 Quad CPUQ9400  @ 2.66GHz
stepping: 10
cpu MHz : 2000.000
cache size  : 3072 KB
physical id : 0
siblings: 4
core id : 0
cpu cores   : 4
apicid  : 0
initial apicid  : 0
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm 
constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor 
ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow 
vnmi flexpriority
bogomips: 5320.60
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 1
vendor_id   : GenuineIntel
cpu family  : 6
model   : 23
model name  : Intel(R) Core(TM)2 Quad CPUQ9400  @ 2.66GHz
stepping: 10
cpu MHz : 2000.000
cache size  : 3072 KB
physical id : 0
siblings: 4
core id : 1
cpu cores   : 4
apicid  : 1
initial apicid  : 1
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm 
constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor 
ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow 
vnmi flexpriority
bogomips: 5319.90
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 2
vendor_id   : GenuineIntel
cpu family  : 6
model   : 23
model name  : Intel(R) Core(TM)2 Quad CPUQ9400  @ 2.66GHz
stepping: 10
cpu MHz : 2000.000
cache size  : 3072 KB
physical id : 0
siblings: 4
core id : 2
cpu cores   : 4
apicid  : 2
initial apicid  : 2
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm 
constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor 
ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow 
vnmi flexpriority
bogomips: 5319.93
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor   : 3
vendor_id   : GenuineIntel
cpu family  : 6
model   : 23
model name  : Intel(R) Core(TM)2 Quad CPUQ9400  @ 2.66GHz
stepping: 10
cpu MHz : 2000.000
cache size  : 3072 KB
physical id : 0
siblings: 4
core id : 3
cpu cores   : 4
apicid  : 3
initial apicid  : 3
fpu : yes
fpu_exception   : yes
cpuid level : 13
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm 
constant_tsc arch_perfmon pebs bts rep_good aperfmperf pni dtes64 monitor 
ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 xsave lahf_lm tpr_shadow 
vnmi flexpriority
bogomips: 5319.93
clflush size: 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:




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

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

Versions of packages qemu-kvm depends on:
ii  adduser 3.112add and remove users and groups
ii  bridge-utils1.4-5Utilities for configuring the Linu
ii  iproute 20100519-2   networking and traffic control 

Bug#580214: linux-image-2.6.32-5: cannot mount (or fsck) a usb disk at boot time

2010-05-04 Thread Alan Braslau
Package: linux-source-2.6.32
Version: 2.6.32-12
Severity: normal
Tags: sid


A second hard disk is installed on my computer as an external usb device.
Since the last kernel update (either using an official debian kernel-image
or a locally compiled kernel from debian sources), mounting of this disk
at boot time fails. (If /etc/fdisk indicates an fsck pass 2, this fails
as well, putting the system into single-user mode.)

It appears that the disk detection is now loaded after mount attempts
to handle the disk - perhaps usb_storage (I'm only guessing here)
is no longer included in the initrd?

Once the system is booted, mounting of the disk works fine.

This is a minor error, but such a configuration (created using the
debian-installer) should work out of the box without having to
adjust the configuration of initramfs or other tools.

Thanks.

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

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

Versions of packages linux-source-2.6.32 depends on:
ii  binutils  2.20.1-8   The GNU assembler, linker and bina
ii  bzip2 1.0.5-4high-quality block-sorting file co

Versions of packages linux-source-2.6.32 recommends:
ii  gcc   4:4.4.3-1  The GNU C compiler
ii  libc6-dev [libc-dev]  2.10.2-7   Embedded GNU C Library: Developmen
ii  make  3.81-8 An utility for Directing compilati

Versions of packages linux-source-2.6.32 suggests:
ii  kernel-package12.033 A utility for building Linux kerne
ii  libncurses5-dev [ncurses- 5.7+20100313-2 developer's libraries and docs for
ii  libqt3-mt-dev 3:3.3.8b-6 Qt development files (Threaded)

-- no debconf information



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



Bug#578648: konqueror fails on cups (http://localhost:631)

2010-04-21 Thread Alan Braslau
Package: konqueror
Version: 4:4.3.4-1
Severity: normal


Many pages of the cups web interface (http://localhost:631) fail under
konqueror, yet work fine using other browsers. The number of places where
konqueror simply hangs are too numerous to list.

I have also reported this upstream on kde.org
https://bugs.kde.org/show_bug.cgi?id=234980

Thank you


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

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

Versions of packages konqueror depends on:
ii  install-info  4.13a.dfsg.1-5 Manage installed documentation in 
ii  kdebase-bin   4:4.3.4-1  core binaries for the KDE 4 base m
ii  kdebase-data  4:4.3.4-1  shared data files for the KDE 4 ba
ii  kdebase-runtime   4:4.3.4-2  runtime components from the offici
ii  kdelibs5  4:4.3.4-3  core libraries for all KDE 4 appli
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libkonq5  4:4.3.4-1  core libraries for Konqueror
ii  libkonqsidebarplugin4 4:4.3.4-1  Konqueror sidebar plugin library
ii  libqt4-dbus   4:4.6.2-4  Qt 4 D-Bus module
ii  libqt4-qt3support 4:4.6.2-4  Qt 3 compatibility library for Qt 
ii  libqt4-xml4:4.6.2-4  Qt 4 XML module
ii  libqtcore44:4.6.2-4  Qt 4 core module
ii  libqtgui4 4:4.6.2-4  Qt 4 GUI module
ii  libstdc++64.4.3-9The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-3  X11 client-side library

Versions of packages konqueror recommends:
ii  dolphin   4:4.3.4-1  file manager for KDE 4
ii  konqueror-nsplugins   4:4.3.4-1  Netscape plugin support for Konque

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

-- no debconf information



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



Bug#561836: please include revtex4 in addition to revtex4.1

2010-03-26 Thread Alan BRASLAU
revtex4-1.cls is supposed to be a drop-in replacement for revtex4.cls
The bugs mentioned in this report should now be fixed upstream,
making the reversion to 4.0 in debian unnecessary.

Please update the debian distribution (in unstable at least).

Thank you

Alan


Release of REVTeX 4.1 (patch level 1)

March 15, 2010: A new release of REVTeX 4.1 has been made public.

The following bugs were addressed:
* Using the same \affiliation more than once results in some authors not 
getting 
any affiliation at all.
* reftest was left out of the distribution
* For RMP, the \cite command doesn't enclose the citation in parentheses 
properly.
* For RMP, the .bst files don't properly handle several cases including a book 
with editors, but no authors

In addition, there were many other improvements including the handling of 
footnotes, compatibility with packages such as lscape and hyperref, and 
punctuation in bibliographies. Also, the long version of the BibTeX style 
files have been removed from the distribution. The remaining style files have 
been enhanced to provide the same functionality when the longbibliography 
class option is used.



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



Bug#573063: konsole kfreebsd-i386 blank (terminal) display

2010-03-11 Thread Alan BRASLAU
On Wednesday 10 March 2010 00:32:06 George Kiagiadakis wrote:
 On Mon, Mar 8, 2010 at 6:11 PM, Alan BRASLAU alan.bras...@cea.fr wrote:
  Package: konsole
  Version: 4:4.3.4-1
  Severity: important
 
 
  Under kfreebsd(-i386) konsole is unusable:
  The terminal display is blank (just a blinking cursor)
  with no output (or blind input).
  I have tried different shell commands
  and tested this on both the :0 display
  and on an (otherwise working) remote display
  through XDMCP.
 
 Hmm, that's strange. I had added a patch in kdelibs 4:4.3.4-1 to fix
 that issue. I'll test again when I can.
 

Thanks;
The installed kdelibs is 4:4.3.4-3

Alan



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



Bug#573063: konsole kfreebsd-i386 blank (terminal) display

2010-03-08 Thread Alan BRASLAU
Package: konsole
Version: 4:4.3.4-1
Severity: important


Under kfreebsd(-i386) konsole is unusable:
The terminal display is blank (just a blinking cursor)
with no output (or blind input).
I have tried different shell commands
and tested this on both the :0 display
and on an (otherwise working) remote display
through XDMCP.

Note that composting and desktop effects are inactivated.

Thanks.

Alan

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

Kernel: kFreeBSD 8.0-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages konsole depends on:
ii  kdebase-runtime   4:4.3.4-2  runtime components from the offici
ii  kdelibs5  4:4.3.4-3  core libraries for all KDE 4 appli
ii  libc0.1   2.10.2-6   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.3-2  GCC support library
ii  libqt4-dbus   4:4.5.3-4  Qt 4 D-Bus module
ii  libqtcore44:4.5.3-4  Qt 4 core module
ii  libqtgui4 4:4.5.3-4  Qt 4 GUI module
ii  libstdc++64.4.3-2The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-1  X11 client-side library
ii  libxrender1   1:0.9.5-1  X Rendering Extension client libra

konsole recommends no packages.

konsole suggests no packages.

-- no debconf information



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



Bug#570654: kfreebsd-i386: Could not read reply from control connection -- timed out.

2010-02-20 Thread Alan BRASLAU
Package: ncftp
Version: 2:3.2.2-1
Severity: important


Under kfreebsd-i386, ftp transfer fails with:
Could not read reply from control connection -- timed out.

Retried several times, always with the same result.

The exact same transfer worked correctly with ncftp running
on a second machine under linux (i686).

Thank you.

Alan

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

Kernel: kFreeBSD 8.0-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ncftp depends on:
ii  libc0.1   2.10.2-6   Embedded GNU C Library: Shared lib
ii  libncurses5   5.7+20090803-2 shared libraries for terminal hand

ncftp recommends no packages.

ncftp suggests no packages.

-- no debconf information



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



Bug#570069: libcomedi0: Package has a Depends on udev which cannot be satisfied on kfreebsd-[i386|amd64]

2010-02-16 Thread Alan BRASLAU
Package: libcomedi0
Version: 0.8.1-5
Severity: important


available yet uninstallable on kfreebsd-*

See also:
http://qa.debian.org/debcheck.php?dist=unstablepackage=comedilib

Can comedi be used on kfreebsd?

Thank you.

Alan

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

Kernel: kFreeBSD 8.0-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100216084056.5304.5887.report...@forth.extra.cea.fr



Bug#567437: grub-pc: Grub Fails to upgrade properly to the latest version it comes up with Unknown Filesystem

2010-02-09 Thread Alan BRASLAU
Remains broken.

Nothing other than ext3 (and swap partition, of course)
What was changed in grub-probe between 1.98~20100126-1 and 1.98~20100128-1?

Setting up grub-pc (1.98~20100128-1) ...
/usr/sbin/grub-probe: error: unknown filesystem.
Auto-detection of a filesystem module failed.
Please specify the module with the option `--modules' explicitly.
Generating grub.cfg ...
/usr/sbin/grub-probe: error: unknown filesystem.
dpkg: error processing grub-pc (--configure):
 subprocess installed post-installation script returned error exit status 1



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



Bug#567437: Grub Fails to upgrade properly to the latest version it comes up with Unknown Filesystem

2010-02-03 Thread Alan BRASLAU
Hello,

I confirm this (persistent) bug on i386 (unstable),
however, an (almost) identical Debian installation on amd64 works OK.
Also OK on kfreebsd-i386.

It has nothing particular to do with ntfs partitions -
I do not have any...

Alan



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



Bug#567953: ufs: Cannot find list of partitions!

2010-02-01 Thread Alan BRASLAU
Package: grub-pc
Version: 1.98~20100128-1
Severity: normal


On kfreebsd-i386 using the ufs file system,
I get the following, worrysome error message:

$ sudo update-grub  
Generating grub.cfg ... 
Found background image: moreblue-orbit-grub.png 
Found kernel of FreeBSD: /boot/kfreebsd-8.0-1-686.gz
Found kernel of FreeBSD: /boot/kfreebsd-7.2-1-686.gz
Found ACPI module: /lib/modules/7.2-1-686/acpi.ko   
Cannot find list of partitions! 
done

Thanks,

Alan

-- Package-specific info:

*** BEGIN /proc/mounts
/dev/ad0s1 / ufs rw 0 0
/dev/ad1s1 /home/forth ufs rw 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/ad0
(hd1)   /dev/ad1
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}
insmod ufs2
set root=(hd0,1)
search --no-floppy --fs-uuid --set 4b5ecc504157f023
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
  fi
fi
insmod ufs2
set root=(hd0,1)
search --no-floppy --fs-uuid --set 4b5ecc504157f023
set locale_dir=($root)/boot/grub/locale
set lang=en
insmod gettext
set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod ufs2
set root=(hd0,1)
search --no-floppy --fs-uuid --set 4b5ecc504157f023
insmod png
if background_image /usr/share/images/desktop-base/moreblue-orbit-grub.png ; 
then
  set color_normal=black/black
  set color_highlight=magenta/black
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_kfreebsd ###
menuentry Debian GNU/kFreeBSD, with kFreeBSD 8.0-1-686 {
insmod ufs2
set root=(hd0,1)
search --no-floppy --fs-uuid --set 4b5ecc504157f023
echoLoading kernel of FreeBSD 8.0-1-686 ...
kfreebsd/boot/kfreebsd-8.0-1-686.gz
set kFreeBSD.vfs.root.mountfrom=ufs:/dev/ad0s1
set kFreeBSD.vfs.root.mountfrom.options=rw
}
menuentry Debian GNU/kFreeBSD, with kFreeBSD 7.2-1-686 {
insmod ufs2
set root=(hd0,1)
search --no-floppy --fs-uuid --set 4b5ecc504157f023
echoLoading kernel of FreeBSD 7.2-1-686 ...
kfreebsd/boot/kfreebsd-7.2-1-686.gz
kfreebsd_module_elf /lib/modules/7.2-1-686/acpi.ko
set kFreeBSD.vfs.root.mountfrom=ufs:/dev/ad0s1
set kFreeBSD.vfs.root.mountfrom.options=rw
}
### END /etc/grub.d/10_kfreebsd ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
*** END /boot/grub/grub.cfg

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

Kernel: kFreeBSD 7.2-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]1.5.28  Debian configuration management sy
ii  grub-common  1.98~20100128-1 GRand Unified Bootloader, version 
ii  libc0.1  2.10.2-2GNU C Library: Shared libraries
ii  ucf  3.0025  Update Configuration File: preserv

grub-pc recommends no packages.

Versions of packages grub-pc suggests:
ii  desktop-base  5.0.5  common files for the Debian Deskto

-- debconf information:
  grub-pc/kopt_extracted: false
  grub2/kfreebsd_cmdline:
* grub-pc/install_devices: (hd0)
  grub-pc/postrm_purge_boot_grub: false
* grub2/linux_cmdline:
  grub2/kfreebsd_cmdline_default: 

Bug#567992: openjdk-6: unknown bootstrap method for architecture kfreebsd-i386

2010-02-01 Thread Alan BRASLAU
Package: openjdk-6
Version: 6b17-1.7-1
Severity: important


openjdk-6 is not ported to kfreebsd-i386

apt-get --compile source openjdk-6
fails with
debian/rules:141: *** unknown bootstrap method for architecture kfreebsd-i386.

According to http://www.debian.org/News/2009/20091007
The kFreeBSD architectures for the AMD64/Intel EM64T and i386 processor 
architectures are now release architectures. Severe bugs on these architectures 
will be considered release critical the same way as bugs on other architectures 
like armel or i386 are. If a particular package does not build or work properly 
on such an architecture this problem is considered release-critical.

Any hope?

Thank you.

Alan


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

Kernel: kFreeBSD 8.0-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#567251: xserver-xorg-input-mouse: kfreebsd-i386 no core pointer: mouse unresponsive

2010-01-28 Thread Alan BRASLAU
Package: xserver-xorg-input-mouse
Version: 1:1.5.0-1
Severity: important


Using a standard installation of kfreebsd-i386,
I cannot get the mouse to be recognized by X11.
I first tried hal (no /etc/X11/xorg.conf)
then, following the little information
that I could find on the web, a minimal
xorg.conf configuration (see below).

With the present configuration, a mouse is reported
but is unresponsive.

Relevant lines from dmesg:

ums0: vendor 0x045e product 0x00b9, class 0/0, rev 2.00/0.17, addr 2 on usbus0
ums0: 5 buttons and [XYZ] coordinates ID=17

Thank you.

Alan

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxr-xr-x 1 root root 13 Jan 26 12:52 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1710408 Jan 21 00:42 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 652 Jan 27 22:33 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
Section Device
  Identifier  Default mga Device 0
  Driver  mga
EndSection

Section Screen
  Identifier  Default mga Screen 0
  Device  Default mga Device 0
EndSection

Section InputDevice
  Identifier   Default mouse
  Driver   mouse
  Option Device  /dev/sysmouse
  Option Protocolauto
  Option SendCoreEvents  true
EndSection

Section ServerLayout
 Identifier   Default Server
 Screen   Default mga Screen 0
 InputDevice  Default mouse
 Option AllowEmptyInput off
 Option AutoAddDevices  off
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 38773 Jan 28 08:57 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.7.4
Release Date: 2010-01-08
X Protocol Version 11, Revision 0
Build Operating System: GNU/kFreeBSD 7.2-1-686 i686 Debian
Current Operating System: GNU/kFreeBSD forth 8.0-1-686 #0 Wed Jan 27 12:33:10 
UTC 2010 i686
Build Date: 20 January 2010  11:32:43PM
xorg-server 2:1.7.4-2 (bui...@finzi.debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Thu Jan 28 08:57:15 2010
(==) Using config file: /etc/X11/xorg.conf
(==) ServerLayout Default Server
(**) |--Screen Default mga Screen 0 (0)
(**) |   |--Monitor default monitor
(**) |   |--Device Default mga Device 0
(==) No monitor specified for screen Default mga Screen 0.
Using a default monitor configuration.
(**) |--Input Device Default mouse
(**) Option AllowEmptyInput off
(**) Option AutoAddDevices off
(**) Not automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(==) |--Input Device Default mouse
(==) |--Input Device default keyboard
(==) The core pointer device wasn't specified explicitly in the layout.
Using the first mouse device.
(==) The core keyboard device wasn't specified explicitly in the layout.
Using the default keyboard configuration.
(II) Loader magic: 0x81e76c0
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.4
X.Org Video Driver: 6.0
X.Org XInput driver : 7.0
X.Org Server Extension : 2.0
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 7

(--) PCI:*(0:2:0:0) 102b:0525:102b:0541 Matrox Graphics, Inc. MGA G400/G450 rev 
133, Mem @ 0xf400/33554432, 0xec00/16384, 0xec80/8388608, BIOS @ 
0x/65536
(II) LoadModule: extmod
(II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
(II) Module extmod: vendor=X.Org Foundation
compiled for 1.7.4, module version = 1.0.0
Module class: X.Org Server Extension
ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: dbe
(II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
(II) Module dbe: vendor=X.Org Foundation
compiled for 

Bug#567031: povray not available on kfreebsd-i386

2010-01-26 Thread Alan BRASLAU
Package: povray
Version: 1:3.6.1-12
Severity: important


The binary package povray is not available on kfreebsd-i386
(nor on kfreebsd-amd64)

According to the news item of October 7, 2009:
The kFreeBSD architectures for the AMD64/Intel EM64T and i386 processor 
architectures are now release architectures. Severe bugs on these architectures 
will be considered release critical the same way as bugs on other architectures 
like armel or i386 are. If a particular package does not build or work properly 
on such an architecture this problem is considered release-critical.

1. I downloaded the povray source from upstream, and it configured and compiled 
without a hitch. The binary produced runs correctly.

2. apt-get --configure source povray
yields installable
 povray_3.6.1-12_kfreebsd-i386.deb
 povray-doc_3.6.1-12_all.deb
 povray-examples_3.6.1-12_all.deb
 povray-includes_3.6.1-12_all.deb
and runs correctly.

I did not see any status or build logs
(but perhaps I do not know where to look...)

Thank you.

Alan


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

Kernel: kFreeBSD 8.0-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#564203: xserver-xorg-video-nv broken with xserver 1.7

2010-01-13 Thread Alan BRASLAU
Problem appears to be with amd64: nv (unstable) dumps core.
So using 
(II) Module nv: vendor=X.Org Foundation
compiled for 1.6.2.901, module version = 2.1.14

On i686, successfully using unstable version
(II) Module nv: vendor=X.Org Foundation
compiled for 1.7.3.902, module version = 2.1.15

Alan



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



Bug#563271: kdm crashes at first login b/c of consolekit(?)

2010-01-04 Thread Alan BRASLAU
I confirm this bug both on amd64 and i686.
It is not related to the particular session
as choosing twm, for example, rather then KDE
yields the same result.

Same error messages as reported by arne anka
(in /var/log/daemon.log)

Alan



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



Bug#557605: installation-reports: grub2 installation failure

2009-11-23 Thread Alan BRASLAU
Package: installation-reports
Severity: important



-- Package-specific info:

Boot method: CD
Image version: 
http://cdimage.debian.org/debian-cd/5.0.3/i386/iso-cd/debian-503-i386-businesscard.iso
 6 September 2009
Date: November 22, 2009 19:00 UTC

Machine: Dell (pentium III)
Partitions: df -Tl will do; the raw partition table is preferred

FilesystemType   1K-blocks  Used Available Use% Mounted on
/dev/hdb1 ext337041060   2787432  32372020   8% /
tmpfstmpfs  257152 0257152   0% /lib/init/rw
udev tmpfs   10240   220 10020   3% /dev
tmpfstmpfs  257152 0257152   0% /dev/shm
/dev/hdc1 ext379150628184244  74945720   1% /home/dell

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

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

Comments/Problems:

Description of the install, in prose, and any thoughts, comments
  and ideas you had during the initial install.

Debian 5.0.3 businesscard install with unstable/sid.

1. Partition hard drives, Clock/timezone setup, and User/password setup
completed *without* problems.  However, upon boot (see below) a _disk check_
(both volumes) was initiated due to a last mount time in the future.
Indeed, the system clock is now one hour late (set time by ntp and 
clock *not* at GMT). This itself is a minor problem, but the _root
account was disabled_, even though I allowed root logins and set a root
password. My solution:

$ fsck /dev/hdb1
$ reboot
$ fsck /dev/hdc1
$ passwd -u root
$ passwd root
$ ^D

2. *grub2 install failed* during the install process.
(Seems to be an incompatibility between debian-installer
and a changed syntax in the grub package. I do not remember the exact
text, but vt4 showed a command-line option error message.)

In order to boot the system, I had to manually type at the grub prompt:

grub insmod ext2
grub set root=(hd1,1)
grub linux /boot/vmlinuz-2.6.31-1-686 root=/dev/hda1 ro single
grub initrd /boot/initrd.img-2.6.31-1-686
grub boot

To fix the system, after fixing the file systems and
the root login (see above), I had to take the following steps:

$ apt-get install os-prober

(even though the installation process had indicated finding the dual boot)

$ update-grub

This, finally, gave me a working, installed system.

Thanks.

-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=5.0 (lenny) - installer build 20090123lenny4
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
umame -a: Linux dell 2.6.26-2-486 #1 Wed Aug 19 05:40:02 UTC 2009 i686 unknown
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 82815 815 Chipset 
Host Bridge and Memory Controller Hub [8086:1130] (rev 02)
lspci -knn: 00:01.0 PCI bridge [0604]: Intel Corporation 82815 815 Chipset AGP 
Bridge [8086:1131] (rev 02)
lspci -knn: 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge 
[8086:244e] (rev 02)
lspci -knn: 00:1f.0 ISA bridge [0601]: Intel Corporation 82801BA ISA Bridge 
(LPC) [8086:2440] (rev 02)
lspci -knn: 00:1f.1 IDE interface [0101]: Intel Corporation 82801BA IDE U100 
Controller [8086:244b] (rev 02)
lspci -knn: Kernel driver in use: PIIX_IDE
lspci -knn: Kernel modules: piix
lspci -knn: 00:1f.2 USB Controller [0c03]: Intel Corporation 82801BA/BAM USB 
Controller #1 [8086:2442] (rev 02)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:1f.3 SMBus [0c05]: Intel Corporation 82801BA/BAM SMBus 
Controller [8086:2443] (rev 02)
lspci -knn: 01:00.0 VGA compatible controller [0300]: ATI Technologies Inc 
RV350 AS [Radeon 9550] [1002:4153]
lspci -knn: 01:00.1 Display controller [0380]: ATI Technologies Inc RV350 AS 
[Radeon 9550] (Secondary) [1002:4173]
lspci -knn: 02:0a.0 USB Controller [0c03]: NEC Corporation USB [1033:0035] (rev 
43)
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: Kernel modules: ohci-hcd
lspci -knn: 02:0a.1 USB Controller [0c03]: NEC Corporation USB [1033:0035] (rev 
43)
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: Kernel modules: ohci-hcd
lspci -knn: 02:0a.2 USB Controller [0c03]: NEC 

Bug#541145: solved changing hard disk order in bios

2009-11-23 Thread Alan BRASLAU
Package: grub-pc
Version: 1.97+20091115-1
Severity: normal


May I suggest changing

 ┌──┤ Configuring grub-pc ├──┐
 │ The grub-pc package is being upgraded.  This menu allows you to select│
 │ which devices you'd like grub-install to be automatically run for, if │
 │ any.  │
 │   │
 │ It is recommended that you do this in most situations, to prevent the │
 │ installed GRUB from getting out of sync with other components such as │
 │ grub.cfg or with newer Linux images it will have to load. │
 │   │
 │ If you're unsure which drive is designated as boot drive by your BIOS,│
 │ it is often a good idea to install GRUB to all of them.   │
 │   │
 │ Note: It is possible to install GRUB to partition boot records as well.   │
 │ However, this forces GRUB to use the blocklist mechanism, which makes it  │
 │ less reliable, and therefore is not recommended.  │
 │   │
 │ GRUB install devices: │
 │   │
 │[*] /dev/sda   │
 │[*] /dev/sdb   │
 │[*] /dev/sdc   │
 │  Ok │
 │   │
 └───┘

to something more explicit:

 ┌──┤ Configuring grub-pc ├──┐
 │ The grub-pc package is being upgraded.  This menu allows you to select│
 │ which devices you'd like grub-install to be automatically run for, if │
 │ any.  │
 │   │
 │ It is recommended that you do this in most situations, to prevent the │
 │ installed GRUB from getting out of sync with other components such as │
 │ grub.cfg or with newer Linux images it will have to load. │
 │   │
 │ If you're unsure which drive is designated as boot drive by your BIOS,│
 │ it can be a good idea to install GRUB to all of them. However, the boot   │
 │ process will be faster if GRUB is installed on the boot record of the │
 │ disk containing the directory /boot/grub and your BIOS is set to boot │
 │ from this disk.   │
 │   │
 │ Note: It is possible to install GRUB to partition boot records as well.   │
 │ However, this forces GRUB to use the blocklist mechanism, which makes it  │
 │ less reliable, and therefore is not recommended.  │
 │   │
 │ GRUB install devices: │
 │   │
 │[*] /dev/sda   │
 │[*] /dev/sdb   │
 │[*] /dev/sdc   │
 │  Ok │
 │   │
 └───┘

It is good practice to install grub on the MBR of the disk containing
/boot/grub.  On a dual-boot machine containing several disks, each one
dedicated to a single operating system, each other disk can maintain its MBR
untouched, as this would be more reliable and flexible. Something to this
effect could be documented.

Alan

-- Package-specific info:

*** BEGIN /proc/mounts
/dev/disk/by-uuid/dffacea2-ec10-4b17-bdf7-d71806390ac6 / ext3 
rw,relatime,errors=remount-ro,data=ordered 0 0
/dev/hdc1 /home/dell ext3 rw,relatime,errors=continue,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/hda
(hd1)   /dev/hdb
(hd2)   /dev/hdc
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It 

Bug#556929: kernel-package now severely broken

2009-11-20 Thread Alan BRASLAU
On Friday 20 November 2009 08:15:34 sriva...@acm.org wrote:
 
 This is not really a critical bug. It is only triggered when
  the user asks for a XEN dom0 image, and is using grub2, and has not
  told grub2 to ignore vmlinux.
 
 In any case, 12.030 will not ship vmlinux unless asked.
 
 I think there is a mismatch between our expectations; I expect
  people compiling kernels to  be aware of their configuration, and to
  have set the configuration according to their desires.  In this case,
  a dom0 image is being asked for; and you are hitting a flux in
  kernel-package's treatment of XEN images.
 
 This is not encountered with the standard (that is, make
  defconfig)  configurations.

I repeat, I am not doing anything non-standard:

$ cp /boot/config-2.6.31-1-amd64 .config
$ make-kpkg --initrd --revision=custom.1.2 kernel_image

*I* did not ask for XEN, this is part of the debian stock
kernel image configuration.

*I* did not instruct grub2 not to ignore vmlinux, my grub2
configuration was installed as standard.

Until the recent change, I had never seen vmlinux,
and therefore there was no problem. Why was the decision made
to now produce this? Also, I can find no mention of
make defconfig in /usr/share/doc/kernel-package/README.gz
so please do not moralize me and recognize that there IS a bug!

Sincerely,

Alan



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



Bug#556929: kernel-package now severely broken

2009-11-20 Thread Alan BRASLAU
The tone of this exchange is not being constructive.
I must strongly object to your defensiveness and empty moralization.
It appears that you do not understand users.

On Friday 20 November 2009 15:59:29 sriva...@acm.org wrote:
   I repeat, I am not doing anything non-standard:
  
   $ cp /boot/config-2.6.31-1-amd64 .config
   $ make-kpkg --initrd --revision=custom.1.2 kernel_image
 
 That's [retty non-standard for a custom kernel. You are using
  a distro kitchen sync config for making a custom kernel; and
  kernel-package is mostly geared for individuals.
 

As a starting point, this is as good as a stripped-down kernel.
The debian distributed kitchen sink (sic.) kernel is tailored
to be appropriate for average users. As I do not follow kernel
development, I consider that this keeps up with changes
as new functionality appears and others become obsolete.

Of course, it is better to run a custom kernel, better optimized
to ones individual needs. Another purpose is to maintain
a working kernel (i.e. bootable in a first approximation)
that will resist getting broken through package upgrades,
especially when one is running unstable. When the stock
linux-image gets updated (in general synchronized with an
update to linux-tree), before recompiling a custom kernel,
I systematically check first that the stock kernel runs correctly.
Only then do I update my custom image.

As for the example that I sent, kernel-package is clearly
broken if it cannot recreate a stock-like kernel. In this case,
I cannot be blamed for having made a poor choice of configuration
options.

   *I* did not ask for XEN, this is part of the debian stock
   kernel image configuration.
 
 Yes, you did, by using that config file.
 

No, the Debian team included XEN in their stock image.
Someday, maybe, I will be interested in XEN, but for the moment
I do not know anything about it.

   *I* did not instruct grub2 not to ignore vmlinux, my grub2
   configuration was installed as standard.
 
 And you fed it a non-standard image, which had vmlinux in
  it. kernel-package is not geared for people cargo culting.


I do not understand cargo culting, sorry.

The image produced using kernel-package should be essentially
equivalent to that distributed via the linux-image package.
How can you call this non-standard for grub2?
If kernel-package thus created the wrong image, this is an error.

   Until the recent change, I had never seen vmlinux,
   and therefore there was no problem. Why was the decision made
   to now produce this?
 
 This is part of the effort to make kernel-package friendlier
  to XEN, and as Xen moves closer to inclusion in mainline. Also, the
  usage conventions for XEN are changing, and k-p has to be made to
  adapt to it.
 

Very good! Hopefully the maintainers of kernel-package will
learn something from these bug reports. In particular,
to change their a priori's as to standard usage.

   Also, I can find no mention of make defconfig in
   /usr/share/doc/kernel-package/README.gz
 
 kernel-package does not say _anything_ about how you get your
  .configs. The  defconfig is documented in upstream kernel
  documentation.


Huh? I hate to quote, but:

2% make config # or make menuconfig or make xconfig (or, for 2.6.x
kernels, make gconfig) and configure

...

Kernel package by itself does not create any configuration file
(.config); it uses whatever you have. You can use the previous version
made for you machine by copying it over from /boot/config-Y.Y.YY, like
so:
 % cp /boot/config-Y.Y.YY .config
where Y.Y.YY stands for the old version of the kernel that you had
hand tuned.

OK, it says hand-tuned. The stock kernel /boot/config-Y.Y.YY-Y-arch
was hand-tuned by the maintainers and corresponds to an working
version of the current kernel sources. Or should...

 
   so please do not moralize me and recognize that there IS a bug!
 
 I do not think there is a bug anymore, anyway.  You are using
  unstable, there is a reason it is called the bleeding edge. Behaviour
  changes, and it sometimes takes a few days for things to stabilize.
 

Yes, that is why there are bug reports for unstable, too.
It is irresponsible to claim that no bug exists.
Unstable, so-called bleeding edge, will have bugs.

Of course it sometimes takes a few days for things to stabilize.
Without testing and bug reports, this process will take even longer!
Please be assured that I have maintained a running system,
despite this bug in kernel-package.

So, perhaps next time I will be more patient and let others work things out.

Alan



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



Bug#556929: kernel-package now severely broken

2009-11-19 Thread Alan BRASLAU
Package: kernel-package
Version: 12.028
Severity: normal


#556929
#556783
#551104
#556043

kernel-package is now severly broken!
Building and installing a new kernel image
now results in *two* identical vmlinuz nodes
with *identical* names under /boot.
grub then rightly finds both images,
*neither one which is bootable*.

The bug report should therefore be *reopened*
and marked *critical*.

Not only did the new handling of XEN schemes
caused no end of confusion,
it was broken and is still the source of system damage.
This is rather severe as a less experienced user
trying to install a custom tailored kernel
can easily end up with an unbootable installation.

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

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

Versions of packages kernel-package depends on:
ii  binutils  2.20-4 The GNU assembler, linker and bina
ii  build-essential   11.4   Informational list of build-essent
ii  debianutils   3.2.2  Miscellaneous utilities specific t
ii  file  5.03-3 Determines file type using magic
ii  gettext   0.17-8 GNU Internationalization utilities
ii  make  3.81-7 An utility for Directing compilati
ii  module-init-tools 3.11-1 tools for managing Linux kernel mo
ii  po-debconf1.0.16 tool for managing templates file t
ii  util-linux2.16.1-4   Miscellaneous system utilities

Versions of packages kernel-package recommends:
ii  cpio  2.10-1 GNU cpio -- a program to manage ar

Versions of packages kernel-package suggests:
ii  bzip2 1.0.5-3high-quality block-sorting file co
pn  docbook-utils none (no description available)
ii  e2fsprogs 1.41.9-1   ext2/ext3/ext4 file system utiliti
ii  initramfs-tools [linux-in 0.93.4 tools for generating an initramfs
pn  libdb3-devnone (no description available)
ii  libncurses5-dev [libncurs 5.7+20090803-2 developer's libraries and docs for
ii  linux-source-2.6.31 [linu 2.6.31-2   Linux kernel source for version 2.
pn  xmlto none (no description available)

-- no debconf information



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



Bug#556929: kernel-package now severely broken

2009-11-19 Thread Alan BRASLAU
On Thursday 19 November 2009 23:55:43 Manoj Srivastava wrote:
 Ou, Nov 19 2009, Alan BRASLAU wrote:
  kernel-package is now severly broken!  Building and installing a[nd]
  new kernel image now results in *two* identical vmlinuz nodes with
  *identical* names under /boot.  grub then rightly finds both images,
  *neither one which is bootable*.
 
 I can't reproduce this with 12.029.
 
Reproduces with kernel-package (12.029):

$ dpkg -i linux-image-2.6.31_custom.1.2_amd64.deb
Selecting previously deselected package linux-image-2.6.31.
(Reading database ... 251822 files and directories currently installed.)
Unpacking linux-image-2.6.31 (from linux-image-2.6.31_custom.1.2_amd64.deb) 
...
Done.
Setting up linux-image-2.6.31 (custom.1.2) ...
Running depmod.
Examining /etc/kernel/postinst.d.
run-parts: executing /etc/kernel/postinst.d/initramfs 2.6.31 
/boot/vmlinuz-2.6.31
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 2.6.31 
/boot/vmlinuz-2.6.31
Running postinst hook script update-grub.
Generating grub.cfg ...
Found Debian background: moreblue-orbit-grub.png
Found linux image: /boot/vmlinuz-2.6.31-1-amd64
Found initrd image: /boot/initrd.img-2.6.31-1-amd64
Found linux image: /boot/vmlinux-2.6.31
Found initrd image: /boot/initrd.img-2.6.31
Found linux image: /boot/vmlinuz-2.6.31
Found initrd image: /boot/initrd.img-2.6.31
done

$ ls -li /boot
total 50212
49089 -rw-r--r-- 1 root root   101944 Nov 20 06:51 config-2.6.31
49143 -rw-r--r-- 1 root root   101865 Nov 16 05:54 config-2.6.31-1-amd64
48871 drwxr-xr-x 2 root root 4096 Nov 20 07:43 grub
49093 -rw-r--r-- 1 root root  8220827 Nov 20 07:43 initrd.img-2.6.31
49098 -rw-r--r-- 1 root root  8228707 Nov 17 08:32 initrd.img-2.6.31-1-amd64
49091 -rw-r--r-- 1 root root  1591417 Nov 20 07:41 System.map-2.6.31
49142 -rw-r--r-- 1 root root  1591417 Nov 16 05:54 System.map-2.6.31-1-amd64
49092 -rw-r--r-- 1 root root 14498311 Nov 20 07:41 vmlinux-2.6.31
49090 -rw-r--r-- 1 root root 14498311 Nov 20 07:41 vmlinuz-2.6.31
49041 -rw-r--r-- 1 root root  2480736 Nov 16 05:54 vmlinuz-2.6.31-1-amd64

$ diff /etc/kernel/postinst.d/initramfs /usr/share/doc/kernel-
package/examples/etc/kernel/postinst.d/

$ cat /etc/kernel/postinst.d/initramfs-tools

#!/bin/sh

# passing the kernel version is required
[ -z $1 ]  exit 0

# kernel-package passes an extra arg; hack to not run under kernel-package
[ -z $2 ] || exit 0

# we're good - create initramfs.  update runs do_bootloader
update-initramfs -c -t -k $1

$


  The bug report should therefore be *reopened* and marked *critical*.
 
  Not only did the new handling of XEN schemes caused no end of
  confusion, it was broken and is still the source of system damage.
  This is rather severe as a less experienced user trying to install a
  custom tailored kernel can easily end up with an unbootable
  installation.
 
 Well, this is _unstable_, after all. But thanks for testing,
  things should be better now.
 

So, should _critical_ bugs not be allowed in unstable?

Alan



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



Bug#556783: closed by Manoj Srivastava sriva...@debian.org

2009-11-18 Thread Alan BRASLAU
Bug #556783, see also
Bug #556043

Still broken (arch:amd64)

Setting up linux-image-2.6.31-xenu (custom.1.2) ... 
Internal Error: Could not find image (/boot/xenu-linux-2.6.31)  
dpkg: error processing linux-image-2.6.31-xenu (--configure):   
 subprocess installed post-installation script returned error exit status 2 

Please do not close these bugs until tested. Thank you.

Sincerely,

Alan Braslau



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



Bug#556043: kernel-package: standard make-kpkg proceedure creates xenu image

2009-11-13 Thread Alan BRASLAU
Package: kernel-package
Version: 12.025
Severity: normal


Bugs
#551104 kernel-package: make-kpkg (binary-arch|kernel_image) generates xenu 
pkg 
#551657 kernel-package: postinst file for xen kernel should be modified 
have been closed, marked resolved, yet I still see no solution.
Therefore, I am filing a new bug report.

Following standard proceedure:
$ cp /boot/config-2.6.31-1-amd64 .config
$ make-kpkg --initrd --revision=custom.1.0 kernel_image
generates linux-xenu-2.6.31_custom.1.0_amd64.deb rather than 
linux-image-2.6.31_custom.1.0_amd64.deb

It adds in support for Xen DomU, and kernel-package obliges. The only 
difference, at this point, is in the name of the kernel image, it can be 
installed and used as a normal kernel as well.

This SHOULD create a linux-image-2.6.31 package equivalent to the stock 
linux-image-2.6.31-1, as distributed. Any other behavior is WRONG as this 
breaks users' installations and should be fixed. (Perhaps the fix is in the 
documentation and the standard working proceedure needs to be modified...)

Please note that a user compiling a kernel using make-kpkg starting from a 
standard kernel may not know anything about Xen.

Thank you.

Alan

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

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

Versions of packages kernel-package depends on:
ii  binutils  2.20-4 The GNU assembler, linker and bina
ii  build-essential   11.4   Informational list of build-essent
ii  debianutils   3.2.1  Miscellaneous utilities specific t
ii  file  5.03-3 Determines file type using magic
ii  gettext   0.17-8 GNU Internationalization utilities
ii  make  3.81-7 An utility for Directing compilati
ii  module-init-tools 3.11-1 tools for managing Linux kernel mo
ii  po-debconf1.0.16 tool for managing templates file t
ii  util-linux2.16.1-4   Miscellaneous system utilities

Versions of packages kernel-package recommends:
ii  cpio  2.10-1 GNU cpio -- a program to manage ar

Versions of packages kernel-package suggests:
ii  bzip2 1.0.5-3high-quality block-sorting file co
pn  docbook-utils none (no description available)
ii  e2fsprogs 1.41.9-1   ext2/ext3/ext4 file system utiliti
ii  initramfs-tools [linux-in 0.93.4 tools for generating an initramfs
pn  libdb3-devnone (no description available)
ii  libncurses5-dev [libncurs 5.7+20090803-2 developer's libraries and docs for
ii  linux-source-2.6.31 [linu 2.6.31-1   Linux kernel source for version 2.
pn  xmlto none (no description available)

-- no debconf information



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



Bug#551104: kernel-package: make-kpkg (binary-arch|kernel_image) generates xenu pkg

2009-11-12 Thread Alan BRASLAU
On Thursday 12 November 2009 06:56:24 Manoj Srivastava wrote:
 Hi,
 
 On Fri, Nov 06 2009, Alan BRASLAU wrote:
  Yes, I am confused, too.
 
  cp /boot/config-2.6.31-1-amd64 .config
  make-kpkg --initrd --revision=custom.1.0 kernel_image
 
  now generates linux-xenu-2.6.31_custom.1.0_amd64.deb rather than
  linux-image-2.6.31_custom.1.0_amd64.deb There is a bug somewhere, and
  most likely in the new support for Xen in make- kpkg (unless
  linux-image-2.6.31-1-amd64 provides a wrong config file).
 
 The latter, I think. It adds in support for Xen DomU, and
  kernel-package obliges. The only difference, at this point, is in the
  name of the kernel image, it can be  installed and used as a normal
  kernel as well.
 

Maybe... but how to do?

dpkg -i linux-xenu-2.6.31_custom.1.0_amd64.deb

installs /boot/xenu-linux-2.6.31

and this does not get included by grub.
Something has to be fixed so that a user following the standard instructions 
installing a custom kernel does not run into trouble.

Alan



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



Bug#545423: kdenlive: segfault on initial startup

2009-10-11 Thread Alan BRASLAU
I am very confused by the exchange in this bug report.

According to
http://kdenlive.org/user-manual/downloading-and-installing-kdenlive/pre-
compiled-packages/debian-packages
we are instructed to use the debian-multimedia packages,
but here, we are told that kdenlive cannot work with these packages?

Please clarify this issue, but please not that it is not very useful to simply 
dismiss the debian-multimedia source.

Thank you

Alan



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



Bug#534735: The configuration listen-address :8118 is not possible with 3.0.13-1

2009-09-16 Thread Alan BRASLAU
I experience the same problem.
However,
listen-address localhost:8118
listen-address 127.0.0.1:8118
listen-address 0.0.0.0:8118
all fail!

/var/log/privoxy/logfile:
Fatal error: can't bind to 127.0.0.1:8118: The hostname is not resolvable
or
Fatal error: can't bind to 0.0.0.0:8118: The hostname is not resolvable
(a very strange message, as an IP need not be resolved?)

/etc/hosts
127.0.0.1   localhost

restarting privoxy works fine, but this is not a solution...

Alan



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



Bug#481107: m-a clean nvidia-kernel

2009-04-29 Thread Alan BRASLAU
Hello,

A similar problem occured upon update of nvidia-kernel source.
The maintainer of that package suggests that this could be reported as a 
wishlist bug for module-assistant, given all of the trouble that can be caused 
by simply extracting a tar file on top of an existing directory. Should the 
option clean be the default action in m-a a-i package?

Thank you

Alan




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



Bug#524499: Clarify that kernel-package no longer will create initrds

2009-04-27 Thread Alan BRASLAU
Hello,

It has taken me some time to figure out this change - suddenly, without 
warning, following the standard procedure (as still indicated in the current 
kernel-package/README.gz), I could not boot the newly generated kernel due to 
a missing initrd image. I managed myself to do the postinst generation and 
grub update, however a very simple instruction needs to be added to the 
documentation, not just the man pages. For example, as of point 4% of Phase 
TWO *and*, in particular, in Phase THREE (README.gz).

Also, other Debian documentation (howto) on kernel generation need to be 
updated, urgently!

Thanks

Alan




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



Bug#523947: rm -rf /usr/src/modules/nvidia-kernel

2009-04-19 Thread Alan BRASLAU
 On Tue, Apr 14, 2009 at 06:10:15PM +0300, Dimitrios Eftaxiopoulos wrote:
  Did you 'rm -rf /usr/src/modules/nvidia-kernel' before starting?
  After 'rm -rf /usr/src/modules/nvidia-kernel' everyrthing worked OK.
 
 Oh good, so no bug in the current version for you, just a leftovers
 problem.  The old version had a file named 'makefile' which overrides
 the new Makefile' and makes a huge mess of things.

I experienced the same problem, solved as above.
Should this be reported as a module-assistant bug?

Alan




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



Bug#522378: hal: depends on libvolume-id0 which is no longer available in Sid

2009-04-04 Thread Alan BRASLAU
I just installed debian/sid on a new machine and, indeed, hal will not install 
because of this dependancy.
(Added testing to sources.list to install hal...)

Thanks,

Alan




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



Bug#503004: RandR: crashes if monitor is disconnected

2009-02-03 Thread Alan BRASLAU
On Tuesday 03 February 2009 09:38:48 Brice Goglin wrote:
 These are experimental packages :) We are working on making the upgrade
 smooth before everything enters unstable.

Yes, they are in experimental...
My comment on the configuration problems upon upgrade is intended
to give some useful feedback, not to complain!

Despite the posts, I do not understand the input-hotplug
interaction. My system correctly finds the keyboard, mouse
and touchpad by HAL... However, the xserver does as well
so everything is duplicated. Removing Input entries from
xorg.conf doesn't help:
(==) The core pointer device wasn't specified explicitly in the layout.
Using the first mouse device.
(==) The core keyboard device wasn't specified explicitly in the layout.
Using the first keyboard device.
and specifying one with Driver evdev (why not try?)
was no better. Only adding Option AutoAddDevices false
got the configuration working.

Seems that the problem is that somehow evdev is not blocking
input to the standard devices as it is supposed to do?

Must be simple to sort out. I just don't know enough.
Would be nice to be able to use multiple keyboards...


 Does your original crash still happen now?

With the new driver, I uncommented the Option Above LVDS

Section Monitor
Identifier  VGA-0
Option  PreferredMode 1600x1200
Option  Above LVDS
EndSection

(and commented #xrandr --output VGA-0 --above LVDS in my .xsessionrc).
This now works and does not produce a crash
if the external monitor is unplugged. 
I suppose that this means that you can now close the present bug report!

The two means of adding an external screen differ in their consequences:
- The xorg.conf solution requires restarting the xserver
  to properly take into account plugging/unplugging the external monitor
- The .xsessionrc solution resets on login.
Of course, in all cases one can type xrandr --output VGA-0 --above LVDS
at any time upon plugging/unplugging. Should this be automatic?
Maybe the second head should automatically come up as a clone
upon plugin, unless configured otherwise in xorg.conf.


Finally, the new server fixes a few other bugs:
Under KDE4/plasma, the bottom pixels of the LVDS screen
appeared wrapped onto the bottom of the external monitor.
This is no longer the case.
Also, dragging windows from the LVDS screen to the external screen
had a hic (under KDE4/plasma) of getting blocked on the external screen;
Trying to drag them back to the LVDS screen would not go any further
than when the window title decorations hit the bottom of the external screen.
This is also no longer the case.
Bravo!



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



Bug#503004: RandR: crashes if monitor is disconnected

2009-02-02 Thread Alan BRASLAU
I'm sorry, installing xserver-xorg from the experimental branch
results in a broken X11 environment and is thus unusable.
The problem seems to be with the keyboard handling
as typing appears to be echoed as doubled.
It is thus untestable, unless this is a trival, identified problem.

Alan


On Sunday 01 February 2009 17:57:12 Brice Goglin wrote:
 Alan Braslau wrote:
  Package: xserver-xorg-video-radeon
  Version: 1:6.9.0+git20081012.c0e6cb6d-1
  Severity: normal
 
 
  Using RandR, crashes upon startup if the external monitor is disconnected
  when /etc/X11/xorg.conf contains an external Monitor section with a
  placement option uncommented, such as:
  Section Monitor
  Identifier  VGA-0
  Option  Above LVDS
  EndSection

 
 If this still happens with latest packages from experimental, could you
 please try to catch a debugging backtrace of the crash with gdb?
 
 thanks,
 Brice
 
 

-- 
Alan Braslau
CEA DSM-IRAMIS-SPEC
CNRS URA 2464
Orme des Merisiers
91191 Gif-sur-Yvette cedex FRANCE
tel: +33 1 69 08 73 15
fax: +33 1 69 08 87 86
mailto:alan.bras...@cea.fr

http://www-dna2009.cea.fr/

 .''`.
: :'  :
`. `'`
  `-



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



Bug#503004: RandR: crashes if monitor is disconnected

2009-02-02 Thread Alan BRASLAU
On Monday 02 February 2009 23:26:06 Brice Goglin wrote:
 X11 from experimental works very well. Your input device config in
 xorg.conf is probably
 wrong. You should switch to input-hotplug as described in
 http://bgoglin.livejournal.com/
 You will have to switch to it after Lenny is released anyway.

There is a (policy?) problem with the upgrade
as this new input scheme breaks one's configuration.
I tried upgrading to the xserver-xorg packages
from the experimental section and then even
dpkg-reconfigure xserver-xorg
which produces a broken xorg.conf...

I tried removing all InputDevice references,
but still got double keyboard input.
Adding
Option  AutoAddDevicesfalse
finally leads to a workable X11, but this is hardly
the correct solution.

Now that the upgrade is at least working, I will look
a bit further to understand the new scheme...

Alan



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



Bug#513793: amarok 2 (experimental) dependency problem? (amarok-engine-xine)

2009-02-01 Thread Alan Braslau
Package: amarok
Version: 2.0.1.1-1
Severity: normal


After upgrade from 1.4.10 to 2.0.1, I discovered the strange behavior
that amarok skipped tracks, playing thus every other track.
On the amarok.kde.org forum I saw that this is related to xine -
but my system was indeed correctly configured to use the xine engine.
I did notice, however, that the package amarok-engine-xine, version 1.4.10
remained installed. So I tried removing this, and, after restarting amarok,
all tracks are now played correctly.
It would appear that there may have been some interference with this old
package left around, so the bug to report is most likely a simple problem
of dependencies for the new amarok 2.0 experimental package.

Beware, however, as kdelibs5 was also upgraded at the same time,
and I do not know what influence this may have had on my experience...

Thank you! (and bravo to everyone for KDE 4.2)

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

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

Versions of packages amarok depends on:
ii  amarok-common  2.0.1.1-1 architecture independent files for
ii  kdebase-runtime4:4.2.0-1 runtime components from the offici
ii  kdelibs5   4:4.2.0-3 core libraries for all KDE 4 appli
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcurl3-gnutls7.18.2-8  Multi-protocol file transfer libra
ii  libgcc11:4.3.3-3 GCC support library
ii  libgcrypt111.4.1-2   LGPL Crypto library - runtime libr
ii  libgl1-mesa-glx [libgl 7.3~rc3-1 A free implementation of the OpenG
ii  libglib2.0-0   2.18.4-1  The GLib library of C routines
ii  libgpod3-nogtk 0.6.0-7   library to read and write songs to
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libloudmouth1-01.4.2-2   Lightweight C Jabber library
ii  libmtp80.3.6-1   Media Transfer Protocol (MTP) libr
ii  libphonon4 4:4.3.0-1 Phonon multimedia framework for Qt
ii  libqt4-dbus4.4.3-2   Qt 4 D-Bus module
ii  libqt4-network 4.4.3-2   Qt 4 network module
ii  libqt4-opengl  4.4.3-2   Qt 4 OpenGL module
ii  libqt4-script  4.4.3-2   Qt 4 script module
ii  libqt4-sql 4.4.3-2   Qt 4 SQL module
ii  libqt4-svg 4.4.3-2   Qt 4 SVG module
ii  libqt4-webkit  4.4.3-2   Qt 4 WebKit module
ii  libqt4-xml 4.4.3-2   Qt 4 XML module
ii  libqtcore4 4.4.3-2   Qt 4 core module
ii  libqtgui4  4.4.3-2   Qt 4 GUI module
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  libstreamanalyzer0 0.6.3-1   streamanalyzer library for Strigi 
ii  libstreams00.5.11-2  streams library for for Strigi Des
ii  libtag1c2a 1.5-3 TagLib Audio Meta-Data Library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  phonon 4:4.3.0-1 metapackage for Phonon multimedia 
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages amarok recommends:
ii  kdemultimedia-kio-plugins 4:4.2.0-1  transparent audio CD access for KD

Versions of packages amarok suggests:
ii  libqt4-sql-mysql  4.4.3-2Qt 4 MySQL database driver
pn  libqt4-sql-psql   none (no description available)
pn  libqt4-sql-sqlite none (no description available)
ii  libvisual-0.4-plugins 0.4.0.dfsg.1-2 Audio visualization framework plug

-- no debconf information



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



Bug#505467: aptitude is a text-based interface to the Debian GNU/Linux package system.

2009-01-29 Thread Alan BRASLAU
Thank you!



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



Bug#492317: #492317 in Lenny ?

2009-01-21 Thread Alan BRASLAU
On Wednesday 21 January 2009 10:24:35 Didier Raboud wrote:
 does this bug affect the Lenny version (4:3.5.9.dfsg.1-6) or only the 
 experimental KDE4 version ?
 
 The bug report is not crystal clear for me thereabout.

Unfortunately for the bug report,
I am using KDE 4.1.4 (experimental)
although the original report did concern kdm/KDE3.
I now avoid using the reboot grub feature
(as I almost never reboot into another OS).

Alan


Bug#510809: libspectre1: needs rebuilding against libgs8 8.63.dfsg.1

2009-01-04 Thread alan . braslau
Also uninstalled: okular


Bug#490082: ripit: Yes, lame --genre-list now reports to standard error

2008-11-14 Thread Alan Braslau
Package: ripit
Version: 3.6.0-1
Followup-For: Bug #490082


Before, I was able to override this bug
specifying the genre using a command line option.
This no longer seems to work (is this a different,
related bug? I don't know perl so I don't fully
understand the script).

The problem, as the patch also shows, is that
lame --genre-list (now) reports to standard error,
so a redirect 21 | grep is indeed missing.

Thank you 

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

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

Versions of packages ripit depends on:
ii  cdparanoia   3.10.2+debian-2 audio extraction tool for sampling
ii  faac 1.26-0.1an AAC audio encoder
ii  flac 1.2.1-1.2   Free Lossless Audio Codec - comman
ii  lame 3.98.2-0.0  LAME Ain't an MP3 Encoder
ii  libcddb-get-perl 2.23-2.1read the CDDB entry for an audio C
ii  libwww-perl  5.820-1 WWW client/server library for Perl

ripit recommends no packages.

Versions of packages ripit suggests:
ii  eject   2.1.5+deb1-4 ejects CDs and operates CD-Changer
ii  id3 0.15-1   An ID3 Tag Editor
ii  id3v2   0.1.11-3 A command line id3v2 tag editor

-- no debconf information



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



Bug#505467: aptitude is a text-based interface to the Debian GNU/Linux package system.

2008-11-13 Thread Alan BRASLAU
On Thursday 13 November 2008 07:25:00 Christian Perrier wrote:
 severity 505467 wishlist
 retitle 505467 Please document options to launch aptitude in text mode

I rather liked the title of the bug report; it was precise and to the point.
The retitle and wishlish severity are polite, but betray the report.

 This is Debian *experimental*, ie a place where you should expect
 surprises and also new thigns to happen, particularly during the days
 where Lenny is frozen for release.

Surprise indeed. I touch experimental in order to install kde4
the debian way. I guess that I made a mistake in letting though
an update to aptitude.

 So, please do not inflate bug reports. I'm not even sure that such a
 bug report is worth it as I'm really sure that Danial Burrows will
 document the new GTK-related options, provide a way to easily avoid the
 GTK interface and even maybe provide it by default for GUI-challenged
 folks.

I try to keep my system GTK-free, as much as possible (remember kde4...).
What a shock it was to see aptitude come-up gtk.

 PS for non French-speaking users: bon sang de bonsoir is a way to
 mumble strongly...more or less...and show that I'm somewhat deeply
 annoyed when someone comes up giving lessons about what Debian should
 be to folks (those not being /me) who develop a great tool for years
 and are perectly aware of what they're doing.

You have no right being (deeply) annoyed. This IS a bug report:
an application described as being text-based should NOT present
a gui interface. Does vim run gui by default? How about a gtk
version of mutt? Maybe cat should open a new window??
I was deeply annoyed to see such an affront, and this motivated
the bug report.

Thanks for the answer and the solution. I've already downgraded
aptitude and hope that the developers will have come to their senses
before pushing a new gtk-default version into unstable.

Alan

P.S. some of us did learn how to type, and still like using the keyboard.




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



Bug#505467: aptitude is a text-based interface to the Debian GNU/Linux package system.

2008-11-12 Thread Alan Braslau
Package: aptitude
Version: 0.5.0-1
Severity: important


According to the manual page and to the package description
aptitude is a text-based interface to the Debian GNU/Linux package system.
Now, a spiffy new gtk interface fires-up. I did not ask for this.
I do not want this (if I had, I would probably have typed aptitude-gtk).
Quickly typing man aptitude or aptitude --help, I see no immediately
obvious way of recovering the expected, curses based application.
Nor did I find anything under /etc/alternatives.
What is going on here? Is this Debian?

Not to make any judgement on the qualities of the new gtk interface.
Maybe it will be a success. Maybe I will use it, or maybe not...
But something has gone wrong. I was not informed upon upgrade
(or on running aptitude) about this new behavior.
I still have not figured-out how to run aptitude
(other than switching to a non-X11 virtual terminal).

Thanks anyways, but please fix this!

Alan

-- Package-specific info:
aptitude 0.5.0 compiled at Nov 12 2008 06:14:17
Compiler: g++ 4.3.2
Compiled against:
  apt version 4.6.0
  NCurses version 5.6
  libsigc++ version: 2.0.18
  Ept support enabled.

Current library versions:
  NCurses version: ncurses 5.7.20081102
  cwidget version: 0.5.12
  Apt version: 4.6.0
linux-gate.so.1 =  (0xb7fd2000)
libapt-pkg-libc6.7-6.so.4.6 = /usr/lib/libapt-pkg-libc6.7-6.so.4.6 
(0xb7ef8000)
libncursesw.so.5 = /lib/libncursesw.so.5 (0xb7eba000)
libsigc-2.0.so.0 = /usr/lib/libsigc-2.0.so.0 (0xb7eb3000)
libcwidget.so.3 = /usr/lib/libcwidget.so.3 (0xb7def000)
libglibmm-2.4.so.1 = /usr/lib/libglibmm-2.4.so.1 (0xb7d98000)
libgobject-2.0.so.0 = /usr/lib/libgobject-2.0.so.0 (0xb7d5b000)
libglib-2.0.so.0 = /usr/lib/libglib-2.0.so.0 (0xb7ca6000)
libgthread-2.0.so.0 = /usr/lib/libgthread-2.0.so.0 (0xb7ca1000)
librt.so.1 = /lib/i686/cmov/librt.so.1 (0xb7c97000)
libgtkmm-2.4.so.1 = /usr/lib/libgtkmm-2.4.so.1 (0xb7967000)
libgdkmm-2.4.so.1 = /usr/lib/libgdkmm-2.4.so.1 (0xb791f000)
libatkmm-1.6.so.1 = /usr/lib/libatkmm-1.6.so.1 (0xb78da000)
libgtk-x11-2.0.so.0 = /usr/lib/libgtk-x11-2.0.so.0 (0xb753b000)
libpangomm-1.4.so.1 = /usr/lib/libpangomm-1.4.so.1 (0xb750c000)
libcairomm-1.0.so.1 = /usr/lib/libcairomm-1.0.so.1 (0xb74f2000)
libgdk-x11-2.0.so.0 = /usr/lib/libgdk-x11-2.0.so.0 (0xb7467000)
libatk-1.0.so.0 = /usr/lib/libatk-1.0.so.0 (0xb744c000)
libgdk_pixbuf-2.0.so.0 = /usr/lib/libgdk_pixbuf-2.0.so.0 (0xb7433000)
libpangocairo-1.0.so.0 = /usr/lib/libpangocairo-1.0.so.0 (0xb7429000)
libpango-1.0.so.0 = /usr/lib/libpango-1.0.so.0 (0xb73e5000)
libcairo.so.2 = /usr/lib/libcairo.so.2 (0xb736e000)
libgmodule-2.0.so.0 = /usr/lib/libgmodule-2.0.so.0 (0xb736a000)
libdl.so.2 = /lib/i686/cmov/libdl.so.2 (0xb7366000)
libglademm-2.4.so.1 = /usr/lib/libglademm-2.4.so.1 (0xb735c000)
libglade-2.0.so.0 = /usr/lib/libglade-2.0.so.0 (0xb7345000)
libxml2.so.2 = /usr/lib/libxml2.so.2 (0xb720b000)
libm.so.6 = /lib/i686/cmov/libm.so.6 (0xb71e5000)
libvte.so.9 = /usr/lib/libvte.so.9 (0xb712e000)
libpangoxft-1.0.so.0 = /usr/lib/libpangoxft-1.0.so.0 (0xb7127000)
libpangox-1.0.so.0 = /usr/lib/libpangox-1.0.so.0 (0xb711b000)
libX11.so.6 = /usr/lib/libX11.so.6 (0xb702c000)
libpangoft2-1.0.so.0 = /usr/lib/libpangoft2-1.0.so.0 (0xb7004000)
libXft.so.2 = /usr/lib/libXft.so.2 (0xb6ff1000)
libfreetype.so.6 = /usr/lib/libfreetype.so.6 (0xb6f7c000)
libz.so.1 = /usr/lib/libz.so.1 (0xb6f67000)
libfontconfig.so.1 = /usr/lib/libfontconfig.so.1 (0xb6f3d000)
libept.so.0 = /usr/lib/libept.so.0 (0xb6e79000)
libxapian.so.15 = /usr/lib/libxapian.so.15 (0xb6d22000)
libpthread.so.0 = /lib/i686/cmov/libpthread.so.0 (0xb6d09000)
libstdc++.so.6 = /usr/lib/libstdc++.so.6 (0xb6c1b000)
libgcc_s.so.1 = /lib/libgcc_s.so.1 (0xb6c0e000)
libc.so.6 = /lib/i686/cmov/libc.so.6 (0xb6ab)
libutil.so.1 = /lib/i686/cmov/libutil.so.1 (0xb6aac000)
libpcre.so.3 = /usr/lib/libpcre.so.3 (0xb6a7c000)
/lib/ld-linux.so.2 (0xb7fd3000)
libgiomm-2.4.so.1 = /usr/lib/libgiomm-2.4.so.1 (0xb6a17000)
libgio-2.0.so.0 = /usr/lib/libgio-2.0.so.0 (0xb69b)
libXcomposite.so.1 = /usr/lib/libXcomposite.so.1 (0xb69ad000)
libXdamage.so.1 = /usr/lib/libXdamage.so.1 (0xb69a9000)
libXfixes.so.3 = /usr/lib/libXfixes.so.3 (0xb69a4000)
libXext.so.6 = /usr/lib/libXext.so.6 (0xb6996000)
libXrender.so.1 = /usr/lib/libXrender.so.1 (0xb698d000)
libXinerama.so.1 = /usr/lib/libXinerama.so.1 (0xb698a000)
libXi.so.6 = /usr/lib/libXi.so.6 (0xb6981000)
libXrandr.so.2 = /usr/lib/libXrandr.so.2 (0xb697b000)
libXcursor.so.1 = /usr/lib/libXcursor.so.1 (0xb6972000)
libpixman-1.so.0 = 

Bug#500011: cups: /usr/lib/cups/filter/pstopdf failed

2008-10-24 Thread Alan BRASLAU
Indeed, the problem seems to be solved in 1.3.9...
Alan



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



Bug#362997: dual head on PCI G450 fails

2008-10-10 Thread Alan BRASLAU
I just upgraded my (old) computer with its G450
to unstable and am unable to get a dual head
configuration to work.
The driver available under unstable is 1:1.4.9.dfsg-1
and in experimental 1:1.4.9.dfsg-2
(1.19.100.dfsg.1-1 for kfreebsd architectures).

I will try a more recent version if it could be uploaded
to experimental

(I have RandR 1.2 dual head working on another computer
with xserver-xorg-video-radeon.)

Thank you
Alan

On Mon, Sep 17, 2007 at 12:49:36AM +0200, Brice Goglin wrote:
 Hi,
 
 I just uploaded xserver-xorg-video-mga 1.9.99.dfsg.1-1 to experimental.
 It brings RandR 1.2 support, which improves mode detection and dynamic
 configuration. Could you test it and see whether it helps for your
 dual-head problem on G450. Note that you might need to update your
 xorg.conf, see the pointers I inserted in
 http://bgoglin.livejournal.com/12835.html




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



Bug#500011: cups: /usr/lib/cups/filter/pstopdf failed

2008-09-24 Thread Alan Braslau
Package: cups
Version: 1.3.8-11
Severity: normal


Printing PDF documents
either through acroread
or through okular
often stops after several pages
displaying the error message:
/usr/lib/cups/filter/pstopdf failed
on http://localhost:631/printers/

/var/log/cups/error_log shows
E [24/Sep/2008:11:14:20 +0200] PID 15255 (/usr/lib/cups/filter/pstopdf) stopped 
with status 1!
E [24/Sep/2008:11:14:49 +0200] [Job 4] Job stopped due to filter errors.

Tried output to a PostScript file
followed by
$ lp file.ps
with the same result.
(file.ps looks fine
with ghostview, etc.)

(I'm not sure why the filter pstopdf is called
in any case; the configured printer driver
is HP...Postscript.)

Thanks

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

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

Versions of packages cups depends on:
ii  adduser   3.110  add and remove users and groups
ii  bc1.06.94-3  The GNU bc arbitrary precision cal
ii  cups-common   1.3.8-11   Common UNIX Printing System(tm) - 
ii  debconf [debconf-2.0] 1.5.23 Debian configuration management sy
ii  ghostscript   8.62.dfsg.1-3.1The GPL Ghostscript PostScript/PDF
ii  libavahi-compat-libdn 0.6.23-2   Avahi Apple Bonjour compatibility 
ii  libc6 2.8+20080809-1 GNU C Library: Shared libraries
ii  libcups2  1.3.8-11   Common UNIX Printing System(tm) - 
ii  libcupsimage2 1.3.8-11   Common UNIX Printing System(tm) - 
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libgcc1   1:4.3.2-1  GCC support library
ii  libgnutls26   2.4.2-1the GNU TLS library - runtime libr
ii  libijs-0.35   0.35-4 IJS raster image transport protoco
ii  libkrb53  1.6.dfsg.4~beta1-4 MIT Kerberos runtime libraries
ii  libldap-2.4-2 2.4.10-3   OpenLDAP libraries
ii  libpam0g  1.0.1-4Pluggable Authentication Modules l
ii  libpaper1 1.1.23+nmu1library for handling paper charact
ii  libpoppler3   0.8.7-1PDF rendering library
ii  libslp1   1.2.1-7.4  OpenSLP libraries
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  perl-modules  5.10.0-14  Core Perl modules
ii  poppler-utils [xpdf-u 0.8.7-1PDF utilitites (based on libpopple
ii  procps1:3.2.7-9  /proc file system utilities
ii  ssl-cert  1.0.22 simple debconf wrapper for OpenSSL
ii  zlib1g1:1.2.3.3.dfsg-12  compression library - runtime

Versions of packages cups recommends:
ii  avahi-utils   0.6.23-2   Avahi browsing, publishing and dis
ii  cups-client   1.3.8-11   Common UNIX Printing System(tm) - 
ii  foomatic-filters  3.0.2-20080211-3.1 OpenPrinting printer support - fil
ii  gsfonts-x11   0.21   Make Ghostscript fonts available t
ii  smbclient 2:3.2.3-2  a LanManager-like simple client fo
ii  ttf-freefont  20080323-3 Freefont Serif, Sans and Mono True

Versions of packages cups suggests:
ii  cups-bsd1.3.8-11 Common UNIX Printing System(tm) - 
pn  cups-driver-gutenprint  none   (no description available)
pn  cups-pdfnone   (no description available)
ii  foomatic-db 20080211-2+nmu1  OpenPrinting printer support - dat
ii  foomatic-db-engine  3.0.2-20080211-1 OpenPrinting printer support - pro
ii  hplip   2.8.6.b-1HP Linux Printing and Imaging Syst
pn  xpdf-korean | xpdf-japa none   (no description available)

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



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



Bug#486810: openoffice.org: menu text ureadable until swept by the mouse cursor

2008-08-06 Thread Alan BRASLAU
I found a solution:
1. The problem occurred on a machine using a nvidia graphics card running 
under the nvidia driver.
2. KDE4 effects were inoperative until adding the following to 
/etc/X11/xorg.conf:
Section Extensions
Option Composite Enabled
EndSection
3. Openoffice now displays correctly.

The reported bug must be some odd side-effect of KDE4 with the nvidia driver. 
It's beyond me, but now it works!


Bug#486810: openoffice.org: menu text ureadable until swept by the mouse cursor

2008-08-06 Thread Alan BRASLAU
On Wednesday 06 August 2008 17:58:18 Rene Engelhard wrote:
 Hi,

 So I can I close this now?

Yes, you should.

 - The nvidia driver is not supportable because non-free and binay-only.
   If you use broken drivers it's your fault.

I should agree, but...

As a side note:
So I'll try the standard nv driver again... But I had turned to the nvidia 
driver a while ago as the supported driver was super-slow, and not for fancy 
accelerated graphics but for standard tasks such as opening windows, etc. I've 
noticed a similar HUGE difference on my laptop using the unsupported fglrx 
driver compared to the supported radeon driver, again for standard X11 use. 
Maybe I should spend some time trying to understand this, as it is sort-of a 
pain depending on these proprietary drivers.

 - KDE4 is not in unstable.

I am, indeed, an unstable type of guy, but for further excitement, I have 
ventured into the experimental branch, just for KDE4. (I hope that it will be 
making it into unstable soon so that I can spend less energy beta-testing.)

Thanks for your attention. I wanted to share my experience and the found 
solution with the community. 

Alan



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



Bug#492317: update breaks grub boot (MBR) Grub Error 28: Selected item can not fit into memory

2008-07-25 Thread Alan Braslau
Package: grub
Version: 0.97-42
Severity: critical
Justification: breaks the whole system


This bug has occured several times now.
Following the update of grub (apt-get upgrade),
rebooting the system fails yielding the message
Grub Error 28: Selected item can not fit into memory
whatever image is selected (including chainloader
to a Windows partition).

The system can be recovered by using a rescue CD
(Debian GNU/Linux LennyBeta2 Lenny - Official Beta i386 NETINST
Binary-1 20080608-11:24)
reinstalling grub on the MBR.
This appears to contain
grub_0.97-39_i386.deb

Thank you.

-- Package-specific info:

*** BEGIN /boot/grub/device.map
(hd0)   /dev/hda
(hd1)   /dev/hdb
*** END /boot/grub/device.map

*** BEGIN /proc/mounts
/dev/hda3 / ext3 rw,errors=remount-ro,data=ordered 0 0
/dev/hda6 /home/dogger ext3 rw,errors=continue,data=ordered 0 0
/dev/hdb1 /home/dogger2 ext3 rw,errors=continue,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/menu.lst

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

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

Versions of packages grub depends on:
ii  grub-common  1.96+20080724-1 GRand Unified Bootloader, version 
ii  libc62.7-12  GNU C Library: Shared libraries
ii  libncurses5  5.6+20080713-1  shared libraries for terminal hand

grub recommends no packages.

Versions of packages grub suggests:
pn  grub-legacy-doc   none (no description available)
pn  mdadm none (no description available)
pn  multiboot-doc none (no description available)

-- no debconf information



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



Bug#492317: (update breaks grub boot (MBR) Grub Error 28: Selected item can not fit into memory)

2008-07-25 Thread Alan BRASLAU
Further investigation shows that the error systematically occurs after 
selecting a grub boot option from kdm. This, persists even after powering-down 
the system before trying to reboot. Thus, kdm (version 4:4.0.98-1) must be 
corrupting the grub configuration somehow.

I am filing a kdm bug report upstream. Should the present grub bug report be 
closed?

Thank you



Bug#491086: xcursor-themes

2008-07-25 Thread Alan BRASLAU
Installing xcursor-themes (and selecting core.theme) straightens things out: 
Now, selecting the default cursor theme (called KDE classic !) indeed gives 
the standard X-cursor theme (or whatever is chosen in /etc/alternatives/x-
cursor-theme). So is this a KDE bug or a bug in the debian implementation of 
KDE?
A possible solution to the present reported bug would be to make kdebase-
workspace-data depend on xcursor-themes; this is probably better than 
transforming the oxygencursors dependence into a suggestion...



Bug#492317: (update breaks grub boot (MBR) Grub Error 28: Selected item can not fit into memory)

2008-07-25 Thread Alan BRASLAU
On Friday 25 July 2008 15:12:42 Robert Millan wrote:
 reassign 492317 kdm
 thanks
Look at
http://bugs.kde.org/show_bug.cgi?id=63800

 On Fri, Jul 25, 2008 at 02:05:01PM +0200, Alan BRASLAU wrote:
  Further investigation shows that the error systematically occurs after
  selecting a grub boot option from kdm. This, persists even after
  powering-down the system before trying to reboot. Thus, kdm (version
  4:4.0.98-1) must be corrupting the grub configuration somehow.

 I wasn't aware of this feature.  What is kdm exactly doing?

  I am filing a kdm bug report upstream. Should the present grub bug report
  be closed?

 I can't tell if this is GRUB's fault or not without an accurate description
 of what kdm is doing.

I'm not sure what kdm is doing, as I have not taken a look at the source code.
However, I see the following in /var/log/kdm.log

GNU GRUB  version 0.97  (640K lower / 3072K upper memory)

   [ Minimal BASH-like line editing is supported.   For
 the   first   word,  TAB  lists  possible  command
 completions.  Anywhere else TAB lists the possible
 completions of a device/filename. ]
grub savedefault --default=5 --once
grub

so I see that kdm seems to run grub, and not edit menu.lst or some other hack.

 Let's reassign this bug; later it can be moved back to GRUB if necessary.

The grub and kdm maintainers are much more competent than I. However, I can 
investigate more if no-one else is aware of the problem or cannot reproduce. 
It's a bit time-consuming, so for the moment I am simply avoiding using this 
feature - I'll stick to rebooting into linux :) 




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



Bug#491086: kdebase-workspace-data depends on oxygencursors, should only suggest

2008-07-16 Thread Alan Braslau
Package: kdebase-workspace-data
Version: 4:4.0.98-1
Severity: normal


kdebase-workspace-data depends on oxygencursors,
however, this should only be suggested, not required.

Whereas, of course, one is not obligated to use any
cursor theme under KDE (the X default can be chosen
via systemsettings), it should be possible to install
kde4 without being forced to install any x-cursor-theme.

Seems to work fine after
dpkg --force-depends --purge remove oxygencursors
(however apt is now quite unhappy!)

Alan

P.S. Thanks to the debian-kde team for bringing us kde4.1!


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

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

Versions of packages kdebase-workspace-data depends on:
pn  oxygencursors none (no description available)

kdebase-workspace-data recommends no packages.

-- no debconf information



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



Bug#488696: comedi-source build fails (m-a a-i comedi)

2008-06-30 Thread Alan Braslau
Package: comedi-source
Version: 0.7.76-1
Severity: important
Justification: fails to build from source


m-a a-i comedi
fails, however, latest sources of comedi downloaded by cvs
compile and install without problem. Also note that the
comedi-source package does not include a dependence on the
libtool package.

Thank you

make: Nothing to be done for `kdist_clean'.
/usr/bin/make  -f debian/rules kdist_clean kdist_config binary-modules
make[1]: Entering directory `/usr/src/modules/comedi'
make[1]: Nothing to be done for `kdist_clean'.
make[1]: Nothing to be done for `kdist_config'.
for templ in ; do \
cp $templ `echo $templ | sed -e 's/_KVERS_/2.6.25/g'` ; \
  done
for templ in `ls debian/*.modules.in` ; do \
test -e ${templ%.modules.in}.backup || cp ${templ%.modules.in} 
${templ%.modules.in}.backup 2/dev/null || true; \
sed -e 's/##KVERS##/2.6.25/g ;s/#KVERS#/2.6.25/g ; s/_KVERS_/2.6.25/g ; 
s/##KDREV##/custom.1.0/g ; s/#KDREV#/custom.1.0/g ; s/_KDREV_/custom.1.0/g  '  
$templ  ${templ%.modules.in}; \
  done
dh_testroot
dh_clean -k
dh_installdirs lib/modules/2.6.25/comedi
# Build the module
#/usr/bin/make -C drivers KERNEL_DIR=/lib/modules/2.6.25/source KVERS=2.6.25
# Install the module
libtoolize --copy --force
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: You should add the contents of `m4/libtool.m4' to `aclocal.m4'.
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: You should add the contents of `m4/ltoptions.m4' to `aclocal.m4'.
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: You should add the contents of `m4/ltsugar.m4' to `aclocal.m4'.
libtoolize: copying file `m4/ltversion.m4'
libtoolize: You should add the contents of `m4/ltversion.m4' to `aclocal.m4'.
libtoolize: copying file `m4/lt~obsolete.m4'
libtoolize: You should add the contents of `m4/lt~obsolete.m4' to `aclocal.m4'.
libtoolize: Remember to add `LT_INIT' to configure.ac.
CFLAGS=-Wall -g -O2 -O2 ./configure \
--host=i486-linux-gnu \
--build=i486-linux-gnu \
--with-rtaidir=/usr/lib/realtime \
--enable-pcmcia
configure: error: cannot run /bin/sh ./config.sub
make[1]: *** [binary-modules] Error 1
make[1]: Leaving directory `/usr/src/modules/comedi'
make: *** [kdist_build] Error 2


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

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

Versions of packages comedi-source depends on:
ii  bzip2 1.0.5-0.1  high-quality block-sorting file co
ii  debhelper 7.0.13 helper programs for debian/rules
ii  module-assistant  0.10.11.0  tool to make module package creati

comedi-source recommends no packages.

-- no debconf information



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



Bug#486805: reportbug won't use urwid interface with python-urwid installed

2008-06-18 Thread Alan Braslau
Package: reportbug
Version: 3.41
Severity: important


reportbug configured to use the urwid interface, gives the message

unable to import urwid interface: Please install the python-urwid package to 
use this
interface. Falling back to text interface.

Yet:
ii  python-urwid   0.9.8.2-1  curses-based UI/widget library for 
Python


-- Package-specific info:
** Environment settings:
INTERFACE=urwid

** /home/dogger/braslau/.reportbugrc:
reportbug_version 3.41
mode standard
ui urwid
realname Alan Braslau
email [EMAIL PROTECTED]
smtphost mx.extra.cea.fr

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

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

Versions of packages reportbug depends on:
ii  apt   0.7.14+b1  Advanced front-end for dpkg
ii  python2.5.2-1An interactive high-level object-o
ii  python-central0.6.7  register and build utility for Pyt

reportbug recommends no packages.

-- no debconf information



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



Bug#486810: openoffice.org: menu text ureadable until swept by the mouse cursor

2008-06-18 Thread Alan Braslau
Package: openoffice.org
Version: 1:2.4.1-3
Severity: important


I'm sure that this will be a tough bug to reproduce...
All openoffice.org applications do not display ANY menu text until the menu is 
swept by the mouse cursor, that is until the text is highlighted (and then 
redrawn).
I suspect that this may be a KDE error (I am using KDE4.1beta), even though 
removing openoffice.org-kde has no effect.

Thanks.

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

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

Versions of packages openoffice.org depends on:
ii  openoffice.org-base   1:2.4.1-3  OpenOffice.org office suite - data
ii  openoffice.org-calc   1:2.4.1-3  OpenOffice.org office suite - spre
ii  openoffice.org-core   1:2.4.1-3  OpenOffice.org office suite archit
ii  openoffice.org-draw   1:2.4.1-3  OpenOffice.org office suite - draw
ii  openoffice.org-filter-mobiled 1:2.4.1-3  Mobile Devices Filters for OpenOff
ii  openoffice.org-impress1:2.4.1-3  OpenOffice.org office suite - pres
ii  openoffice.org-java-common1:2.4.1-3  OpenOffice.org office suite Java s
ii  openoffice.org-math   1:2.4.1-3  OpenOffice.org office suite - equa
ii  openoffice.org-officebean 1:2.4.1-3  OpenOffice.org Office Bean
ii  openoffice.org-writer 1:2.4.1-3  OpenOffice.org office suite - word
ii  openoffice.org-writer2latex   0.5-6  Writer/Calc to LaTeX/XHTML convert
ii  ttf-dejavu2.25-1 Metapackage to pull in ttf-dejavu-

Versions of packages openoffice.org recommends:
ii  openoffice.org-filter-binfilt 1:2.4.1-3  Legacy filters (e.g. StarOffice 5.

Versions of packages openoffice.org-core depends on:
ii  fontconfig 2.6.0-1   generic font configuration library
ii  libc6  2.7-12GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libcurl3   7.18.2-1  Multi-protocol file transfer libra
ii  libdb4.6   4.6.21-10 Berkeley v4.6 Database Libraries [
ii  libexpat1  2.0.1-4   XML parsing C library - runtime li
ii  libfreetype6   2.3.6-1   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.1-2 GCC support library
ii  libglib2.0-0   2.17.2-1  The GLib library of C routines
ii  libgstreamer-plugins-b 0.10.19.3-1   GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.19.3-1   Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.10-2 The GTK+ graphical user interface 
ii  libhunspell-1.2-0  1.2.4-1   spell checker and morphological an
ii  libhyphen0 2.4-2 ALTLinux hyphenation library - sha
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libicu38   3.8.1-2   International Components for Unico
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libldap-2.4-2  2.4.9-1   OpenLDAP libraries
ii  libneon27  0.28.2-2  An HTTP and WebDAV client library
ii  libnspr4-0d4.7.1-3   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.0~rc3-3  Network Security Service libraries
ii  libpam0g   0.99.7.1-6Pluggable Authentication Modules l
ii  libpango1.0-0  1.20.2-2  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libssl0.9.80.9.8g-10.1   SSL shared libraries
ii  libstdc++6 4.3.1-2   The GNU Standard C++ Library v3
ii  libstlport4.6ldbl  4.6.2-3.2 STLport C++ class library
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxaw72:1.0.4-2 X11 Athena Widget library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxslt1.1 1.1.24-1  XSLT processing library - runtime 
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension 
ii  openoffice.org-common  1:2.4.1-3 OpenOffice.org office suite archit
ii  ttf-opensymbol 1:2.4.1-3 The OpenSymbol TrueType font
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages openoffice.org-writer depends on:
ii  libc6  2.7-12GNU C Library: Shared libraries
ii 

Bug#486810: openoffice.org: menu text ureadable until swept by the mouse cursor

2008-06-18 Thread Alan BRASLAU
Hello,

I just tried openoffice on a second computer (a laptop) also under KDE4, 
supposedly having an (almost) identical configuration as my desktop computer. 
Both are under debian unstable/experimental and both underwent a clean 
reinstall recently. The bug does NOT reproduce on the laptop, so now I must 
figure out where the difference lies... May take me a while, as I have little 
time to experiment at the office. I'll let you know if and when I find the 
solution.
Thanks for your attention, and I will keep you informed.

Alan

P.S. KDE4 beta seems to be getting close to stable, and, after a difficult 
start 
(4.0 was unusable), I do like the way it is going, even if everything is not 
yet perfect!

On Thursday 19 June 2008 02:05:58 Rene Engelhard wrote:
 tag 486810 + unreproducible
 thanks

 Hi,

 Rene Engelhard wrote:
  Rene Engelhard wrote:
   And with KDE3?
 
  Works fine for me on KDE3...

 and on KDE4 from experimental. And the KDE maintainers confirm this.

 That's with and without -kde...

 - unreproducible

 Regards,

 Rene




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



Bug#486621: [extragear-plasma] extragear plasma fuzzy clock broken

2008-06-17 Thread Alan BRASLAU
Package: extragear-plasma
Version: 4:4.0.80-1
Severity: grave

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

Fuzzy clock (and binary clock) widgets are now broken (Unknown applets) since 
latest upgrade(s).

Reported upstream (http://bugs.kde.org/show_bug.cgi?id=164271)

--- Additional Comments From pino kde org  2008-06-17 11:25 ---
extragear-plasma does not exist anymore, probably you have an old package.
Please report the problem to Debian.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.25

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstableftp.fr.debian.org 
1 experimentalftp.fr.debian.org 

--- Package information. ---
Depends(Version) | Installed
-+-===
kdebase-runtime(= 4:4.0.72) | 4:4.0.82+svn819867-1
kdelibs5   (= 4:4.0.80) | 4:4.0.82+svn819867-1
kdepimlibs5(= 4:4.0.74) | 4:4.0.82+svn819867-1
libc6 (= 2.7-1) | 2.7-12
libgl1-mesa-glx  | 7.0.3-2
 OR libgl1   | 
libglu1-mesa | 7.0.3-2
 OR libglu1  | 
libplasma2   | 4:4.0.82+svn819867-1
libqt4-dbus   (= 4.4.0) | 4.4.0-3
libqt4-network(= 4.4.0) | 4.4.0-3
libqt4-svg(= 4.4.0) | 4.4.0-3
libqt4-webkit (= 4.4.0) | 4.4.0-3
libqt4-xml(= 4.4.0) | 4.4.0-3
libqtcore4(= 4.4.0) | 4.4.0-3
libqtgui4 (= 4.4.0) | 4.4.0-3
libstdc++6 (= 4.1.1-21) | 4.3.1-2
extragear-plasma-data (= 4:4.0.80-1) | 4:4.0.80-1


-- 
Alan Braslau
CEA DSM-IRAMIS-SPEC
CNRS URA 2464
Orme des Merisiers
91191 Gif-sur-Yvette cedex FRANCE
tel: +33 1 69 08 73 15
fax: +33 1 69 08 87 86
mailto:[EMAIL PROTECTED]

http://www-dna2006.cea.fr/

 .''`.
: :'  :
`. `'`
  `-




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



Bug#486332: kmail: symbol lookup error: /usr/lib/libkdepim.so.4: undefined symbol: _ZN13KRichTextEdit17mouseReleaseEventEP11QMouseEvent

2008-06-16 Thread Alan BRASLAU

kde4 update this morning (debian experimental).
Problem with kmail persists.

Thank you

Sune Vuorela wrote:

Is hopefully fixed when kdepim gets uploaded in same newer version.

there was abi changes to kdelibs.

/Sune
  


--
Alan Braslau
CEA DSM-IRAMIS-SPEC
CNRS URA 2464
Orme des Merisiers
91191 Gif-sur-Yvette cedex FRANCE
tel: +33 1 69 08 73 15
fax: +33 1 69 08 87 86
mailto:[EMAIL PROTECTED]

http://www-dna2006.cea.fr/

.''`.
: :'  :
`. `'`
 `-




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



Bug#486332: kmail: symbol lookup error: /usr/lib/libkdepim.so.4: undefined symbol: _ZN13KRichTextEdit17mouseReleaseEventEP11QMouseEvent

2008-06-15 Thread Alan Braslau
Package: kmail
Version: 4:4.0.80-1
Severity: grave
Justification: renders package unusable


Following upgrade (libkdepim4?), kmail is now unusable, giving the following 
error message:
kmail: symbol lookup error: /usr/lib/libkdepim.so.4: undefined symbol: 
_ZN13KRichTextEdit17mouseReleaseEventEP11QMouseEvent

Thank you.

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

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

Versions of packages kmail depends on:
ii  kdebase-runtime 4:4.0.82+svn819867-1 runtime components from the offici
ii  kdelibs54:4.0.82+svn819867-1 core libraries for all KDE 4 appli
ii  kdepimlibs5 4:4.0.82+svn819867-1 core libraries for KDE PIM 4 appli
ii  libc6   2.7-12   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.1-2GCC support library
ii  libkdepim4  4:4.0.80-1   KDE PIM library
ii  libkleo44:4.0.80-1   certificate based crypto library f
ii  libkpgp44:4.0.80-1   gpg based crypto library for KDE
ii  libksieve4  4:4.0.80-1   KDE mail/news message filtering li
ii  libmimelib4 4:4.0.80-1   KDE mime library
ii  libphonon4  4:4.2~svn820171-2Phonon multimedia framework for Qt
ii  libqt4-dbus 4.4.0-3  Qt 4 D-Bus module
ii  libqt4-network  4.4.0-3  Qt 4 network module
ii  libqt4-qt3support   4.4.0-3  Qt 3 compatibility library for Qt 
ii  libqt4-xml  4.4.0-3  Qt 4 XML module
ii  libqtcore4  4.4.0-3  Qt 4 core module
ii  libqtgui4   4.4.0-3  Qt 4 GUI module
ii  libstdc++6  4.3.1-2  The GNU Standard C++ Library v3
ii  perl5.10.0-10Larry Wall's Practical Extraction 

Versions of packages kmail recommends:
ii  procmail  3.22-16Versatile e-mail processor

-- no debconf information



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



Bug#464721: sun-java6-jre: unmet dependencies

2008-04-04 Thread Alan BRASLAU
 Leaving the repository uninstallable for days is not reasonable.

- month!



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



Bug#410794: kmail: Imap messages become blank

2008-03-18 Thread Alan BRASLAU
This bug seemed to have been fixed about one year ago,
but has reappeared since upgrading to KDE 3.5.9 / kmail 1.9.9.

Also, now some messages indeed present on the server do not appear in the 
message list.

I have reported these problems upstream.
http://bugs.kde.org/show_bug.cgi?id=159453


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



Bug#277864: mutt segfault

2007-03-06 Thread Alan BRASLAU
Hello Christoph,

I have tried both 1.5.13-1.1 (etch/sid) and 1.5.14+cvs20070301-1 
(experimental) with three different IMAP mailboxes. Both versions seem to 
work correctly. (Since the filing of the bug report, I have been holding a 
downgraded version of mutt.)

Thank you for your development work!

Alan




On Tuesday 06 March 2007 12:49, you wrote:
 tags 277864 + moreinfo
 thanks

 Re: Noah Meyerhans 2004-10-23 [EMAIL PROTECTED]

  Hello.  I have been experiencing mutt segfaults with annoying regularity
  lately.  It seems to have to do with IMAP, and the backtrace from a core
  file seems to agree:
 
  (gdb) where
  #0  0x40263ffd in free () from /lib/libc.so.6
  #1  0x080aade8 in safe_free (ptr=0x40322620) at lib.c:127

 Re: Jeffery von Ronne 2005-11-28
 [EMAIL PROTECTED]

  I've also been getting occasional IMAP related seg-faults.

 Re: Hilmar Preusse 2006-01-04
 [EMAIL PROTECTED]

  I believe I see the same bug here. The bug occurs, when I use my IMAP
  INBOX.

 Re: Edward J. Shornock 2006-02-04
 [EMAIL PROTECTED]

  I had the segfault problem as well while using IMAP at the Sorting
  Folders step.  Upon downgrading to 1.5.11-5 the segfaults stopped.

 Re: Alan BRASLAU 2006-03-17
 [EMAIL PROTECTED]

  Systematic segmentation fault upon opening an imap mailbox.

 Hi,

 I'm just digging through Debian's mutt bug list. Can anyone of you
 still reproduce #277864 with recent mutt packages? At the moment
 1.5.13-1.1 is in etch/sid and 1.5.14+cvs20070301-1 in experimental. It
 would be nice if you could give both a try and tell me which
 works/doesn't work.

 Thanks,
 Christoph

-- 
Alan Braslau
CEA DSM-DRECAM-SPEC
CNRS URA 2464
Orme des Merisiers
91191 Gif-sur-Yvette cedex FRANCE
tel: +33 1 69 08 73 15
fax: +33 1 69 08 87 86
mailto:[EMAIL PROTECTED]

http://www-dna2006.cea.fr/


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



Bug#277864: mutt segfault (imap)

2006-03-17 Thread Alan BRASLAU
Package: mutt
Version: 1.5.11+cvs20060126-2
Followup-For: Bug #277864


Systematic segmentation fault upon opening an imap mailbox.
Using the (stripped) unstable or testing mutt
gdb mutt
run
Looking up my-imap-server...(no debugging symbols found)
Connecting to my-imap-server...(no debugging symbols found)
(no debugging symbols found)
---Type return to continue, or q return to quit---
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
Sorting mailbox...
Program received signal SIGSEGV, Segmentation fault.
0xb7c4b598 in strncpy () from /lib/tls/libc.so.6
(gdb) bt
#0  0xb7c4b598 in strncpy () from /lib/tls/libc.so.6
#1  0x080d8943 in ?? ()
#2  0x in ?? ()

No problem with my server/configuration using mutt/stable

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
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 mutt depends on:
ii  exim4 4.60-5 metapackage to ease exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.60-5 lightweight exim MTA (v4) daemon
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libdb4.3  4.3.29-5   Berkeley v4.3 Database Libraries [
ii  libgnutls12   1.2.9-2the GNU TLS library - runtime libr
ii  libidn11  0.5.18-2   GNU libidn library, implementation
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libsasl2  2.1.19-1.9 Authentication abstraction library

Versions of packages mutt recommends:
ii  locales   2.3.6-3GNU C Library: National Language (
ii  mime-support  3.36-1 MIME files 'mime.types'  'mailcap

-- no debconf information


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