Bug#437022: mcelog --dmi fails on 32-bit systems with >4 GiB RAM

2007-08-09 Thread Anders Kaseorg
Package: mcelog
Version: 0.7-4
Tags: patch

mcelog reads 64-bit addresses from the MCE, but passes them around with
type ‘unsigned long’, which causes mcelog --dmi to give incorrect
results on 32-bit systems with more than 4 GiB of RAM.  The attached
patch changes this type to ‘unsigned long long’.

diff -ur mcelog-0.7.orig/dmi.c mcelog-0.7/dmi.c
--- mcelog-0.7.orig/dmi.c	2006-05-03 02:55:54.0 -0400
+++ mcelog-0.7/dmi.c	2007-08-10 02:27:42.0 -0400
@@ -263,18 +263,18 @@
 			Wprintf("%s ", type_details[i]);
 }
 
-void dump_memdev(unsigned handle, unsigned long addr)
+void dump_memdev(unsigned handle, unsigned long long addr)
 {
 	char tmp[20];
 	struct dmi_memdev *md = (struct dmi_memdev *)handle_to_entry[handle];
 	if (!md) { 
-		Wprintf("Cannot resolve memory device %x for %lx\n", 
+		Wprintf("Cannot resolve memory device %x for %Lx\n", 
 			handle, addr);
 		return;
 	}
 	if (md->header.length < 
 			offsetof(struct dmi_memdev, manufacturer)) { 
-		Wprintf("Memory device %x for address %lx too short %hu expected %lu\n",
+		Wprintf("Memory device %x for address %Lx too short %hu expected %lu\n",
 			handle, addr, md->header.length, 
 			sizeof(struct dmi_memdev));
 		return;
@@ -316,14 +316,14 @@
 	Wprintf("WARNING: SMBIOS data is often unreliable. Take with a grain of salt!\n");
 }
 
-int dmi_decodeaddr(unsigned long addr) 
+int dmi_decodeaddr(unsigned long long addr) 
 { 
 	int i, found, matching;
 	struct dmi_entry *e, *next;
 	e = entries;
 	found = 0;
 	matching = 0;
-	Wprintf("Resolving address %lx using SMBIOS\n", addr);
+	Wprintf("Resolving address %Lx using SMBIOS\n", addr);
 	for (i = 0; i < numentries; i++, e = next) {
 		if (!check_entry(e, &next))
 			break; 
@@ -357,7 +357,7 @@
 		Wprintf("No DIMMs found in SMBIOS tables\n");
 	else if (!matching) 
 		Wprintf(
-	 "No matching memory address found for %lx in SMBIOS\n",
+	 "No matching memory address found for %Lx in SMBIOS\n",
 	 addr);
 	return matching > 0;
 } 
@@ -373,7 +373,7 @@
 		verbose = atoi(av[2]);
 	if (opendmi() < 0) 
 		exit(1);
-	dmi_decodeaddr(strtoul(av[1], NULL, 0));
+	dmi_decodeaddr(strtoull(av[1], NULL, 0));
 	return 0;
 }
 #endif
diff -ur mcelog-0.7.orig/dmi.h mcelog-0.7/dmi.h
--- mcelog-0.7.orig/dmi.h	2006-05-03 02:55:54.0 -0400
+++ mcelog-0.7/dmi.h	2007-08-10 02:15:52.0 -0400
@@ -1,2 +1,2 @@
 int opendmi(void);
-int dmi_decodeaddr(unsigned long addr);
+int dmi_decodeaddr(unsigned long long addr);
diff -ur mcelog-0.7.orig/mcelog.c mcelog-0.7/mcelog.c
--- mcelog-0.7.orig/mcelog.c	2007-08-10 02:19:41.0 -0400
+++ mcelog-0.7/mcelog.c	2007-08-10 02:11:40.0 -0400
@@ -73,7 +73,7 @@
 	}
 } 
 
-void resolveaddr(unsigned long addr)
+void resolveaddr(unsigned long long addr)
 {
 	if (addr && do_dmi)
 		dmi_decodeaddr(addr);
Only in mcelog-0.7: mcelog.o
Only in mcelog-0.7: p4.o


Bug#420840: Regression: Device-specific resolution no longer supported on i915GM

2007-08-09 Thread Sergey Yanovich

Brice Goglin wrote:

xrandr tells that max screen size is 1024x1024, which is false. Is
there a way to tell the correct panel dimensions manually (versus DDC
auto detection)?


Add
Virtual 2048 2048
to the Subsection "Display" in xorg.conf. But I don't think it will help
here.


With the new driver it didn't help, just as you expected. The screen was 
still 1024x768. But the 1.7 version began to believe that the screen is 
really 204x2048.



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



Bug#427447: Workaround for bug!

2007-08-09 Thread Greg Folkert
In all the directories that fc-cache failed with errors like:

/usr/share/fonts: failed to write cache
/usr/share/fonts/X11: failed to write cache
/usr/share/fonts/type1: failed to write cache
/usr/local/share/fonts: failed to write cache

I went to each directory and ran (as root)

mkfontdir ; mkfontscale

Only when both were run in each of the problematic directories, did the
problem go away, which doesn't explain why its happening.



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



Bug#420856: No trailing newline in ~/.htoprc

2007-08-09 Thread Hisham Muhammad
Hi,

"Fixed" in SVN. :)

(That wasn't reeeally a bug, was it? :) )

-- Hisham
htop author


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



Bug#420840: Regression: Device-specific resolution no longer supported on i915GM

2007-08-09 Thread Sergey Yanovich

Brice Goglin wrote:

Sergey Yanovich wrote:

video-intel seems to reject this mode (exceeds panel dimensions).


I can't find the corresponding code in the intel driver. Could you send
the Xorg.0.log of this test?


xrandr tells that max screen size is 1024x1024, which is false. Is
there a way to tell the correct panel dimensions manually (versus DDC
auto detection)?


Add
Virtual 2048 2048
to the Subsection "Display" in xorg.conf. But I don't think it will help
here.


Thanks for your time, Brice.

Please find enclosed Xorg.0.log and xorg.conf with 'Virtual' set.

Sergey

X Window System Version 1.3.0
Release Date: 19 April 2007
X Protocol Version 11, Revision 0, Release 1.3
Build Operating System: Linux Debian
Current Operating System: Linux host3 2.6.22-1-sony-tx770p #1 Wed Jul 25 22:12:34 EEST 2007 i686
Build Date: 14 July 2007
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Module Loader present
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: Fri Aug 10 09:23:13 2007
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller"
(**) |-->Input Device "Generic Keyboard"
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Synaptics Touchpad"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
	Entry deleted from font path.
(WW) Including the default font path /usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/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.
(**) 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,
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/cyrillic,
	/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
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Loader magic: 0x81e50c0
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.3
	X.Org Video Driver: 1.2
	X.Org XInput driver : 0.7
	X.Org Server Extension : 0.3
	X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "pcidata"
(II) Loading /usr/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 1.3.0, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.2
(++) using VT number 7

(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2590 card 104d,81e2 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,2592 card 104d,81e2 rev 03 class 03,00,00 hdr 80
(II) PCI: 00:02:1: chip 8086,2792 card 104d,81e2 rev 03 class 03,80,00 hdr 80
(II) PCI: 00:1b:0: chip 8086,2668 card 104d,81e2 rev 03 class 04,03,00 hdr 00
(II) PCI: 00:1d:0: chip 8086,2658 card 104d,81e2 rev 03 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2659 card 104d,81e2 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,265a card 104d,81e2 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,265b card 104d,81e2 rev 03 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,265c card 104d,81e2 rev 03 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card , rev d3 class 06,04,01 hdr 01
(II) PCI: 00:1f:0: chip 8086,2641 card 104d,81e2 rev 03 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,266f card 104d,81e2 rev 03 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,266a card 104d,81e2 rev 03 class 0c,05,00 hdr 00
(II) PCI: 06:05:0: chip 104c,8031 card 2400, rev 00 class 06,07,00 hdr 82
(II) PCI: 06:05:2: chip 104c,8032 card 104d,81e2 rev 00 class 0c,00,10 hdr 80
(II) PCI: 06:05:3: chip 104c,8033 card 104d,81e2 rev 00 class 01,80,00 hdr 80
(II) PCI: 06:08:0: chip 8086,1069 card 104d,81e2 rev 03 class 02,00,00 hdr 00
(II) PCI: 06:0b:0: chip 8086,4220 card 8086,2751 rev 05 class 02,80,00 hdr 00
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,7), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x - 0x (0x0) MX[B]
(II) Subtract

Bug#389007: [Xorg-driver-ati] Bug#389007: Regression: Radeon 9200 powers off Apple Cinema Display connected via DVI

2007-08-09 Thread Brice Goglin

> NoDDC set to true or false has no effect.  The monitor is powered off
> with all combination of this option with either or both of the PanelSize
> and MonitorLayout commented out.
>
> NoDDC set to true or false with both PanelSize and MonitorLayout
> enabled result in a working monitor.
>   

Hi Roger,

This bug should be forwarded in the upstream bugzilla to get good care,
especially if it still does not work with latest 1:6.6.193-1 in
experimental.

Before I do so, you could test the randr-1.2 branch of the upstream git
repository in case it helps.

Brice



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



Bug#435517: Kernel Errors

2007-08-09 Thread maximilian attems
[ first of all keep the bloody bug report on cc,
  this is not private conversation - cool thanks ]

On Fri, Aug 10, 2007 at 10:15:53AM +0400, afunix wrote:
> ?? ?? ??, maximilian attems!
> 9 ?? 2007 ?? 19:47  :
> 
> > ok in between there is a snapshot of 2.6.23-rc2 available,
> > if you can still reproduce on trunk linux images, see apt lines
> > -> http://wiki.debian.org/DebianKernel
> 
> Hmm... But where I can find linux-kbuild-2.6.23? 
> I can't install linux-headers-2.6.23-rc2-k7 without it, so I won't be able to 
> build nvidia and other kernel modules...
> 
> Can I use 2.6.22 instead?  
> Can I just copy /usr/src/linux-kbuild-2.6.22 to /usr/src/linux-kbuild-2.6.23?

no the trunk has no kbuild.

you were reporting an nfsv4 failure, that has _nothing_ to do with nvidia.
in the meantime for nfsv4 testing on aboves kernel it is very easy
to use the free nv driver.

so please test with latest before bugging uptream.
 
regards

-- 
maks


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



Bug#404386: htop: After pressing F1 key, program stop update displayed information.

2007-08-09 Thread Hisham Muhammad
Hi,

This was fixed back in release 0.5.4!

Cheers,

-- Hisham
htop author


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



Bug#435651: segfault on missing command line argument

2007-08-09 Thread Hisham Muhammad
Hi,

Fixed on SVN.

Thanks,

-- Hisham
htop author


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



Bug#437021: digikam crashes when using light table

2007-08-09 Thread David Bremner
Package: digikam
Version: 2:0.9.2-4
Severity: normal


It seems with the current unstable version of digikam, digikam crashes 
consistently for me if I add 3 pictures to the light table, select one 
to be the left, and press page down once

The backtrace is not very informative; I thought I had the right 
packages (digikam-dbg) installed, but perhaps not.

Using host libthread_db library "/lib/libthread_db.so.1".
[Thread debugging using libthread_db enabled]
[New Thread -1247365440 (LWP 31937)]
[New Thread -1340671088 (LWP 31969)]
[New Thread -1332282480 (LWP 31968)]
[New Thread -1302103152 (LWP 31967)]
[New Thread -1293714544 (LWP 31966)]
[New Thread -1249895536 (LWP 31953)]
[New Thread -1258284144 (LWP 31952)]
0xb5b3af7c in nanosleep () from /lib/libc.so.6
#0  0xb5b3af7c in nanosleep () from /lib/libc.so.6
#1  0xb5b3ad9a in sleep () from /lib/libc.so.6
#2  0xb6a2b107 in KCrash::startDrKonqi (argv=0xbf983f40, argc=17)
at /tmp/buildd/kdelibs-3.5.7.dfsg.1/./kdecore/kcrash.cpp:312
#3  0xb6a41107 in KCrash::defaultCrashHandler (sig=11)
at /tmp/buildd/kdelibs-3.5.7.dfsg.1/./kdecore/kcrash.cpp:229
#4  0xe420 in ?? ()
#5  0x000b in ?? ()
#6  0x0033 in ?? ()
#7  0xc010 in ?? ()
#8  0xc010007b in ?? ()
#9  0x007b in ?? ()
#10 0xbf984364 in ?? ()
#11 0xbf984360 in ?? ()
#12 0xbf9842f8 in ?? ()
#13 0xbf9842bc in ?? ()
#14 0xb68865ac in ?? () from /usr/lib/libqt-mt.so.3
#15 0x0886f5d0 in ?? ()
#16 0x0004 in ?? ()
#17 0x in ?? ()

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

Kernel: Linux 2.6.22 (PREEMPT)
Locale: LANG=en_CA, LC_CTYPE=en_CA (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages digikam depends on:
ii  kdebase-kio-plugins 4:3.5.7-2+b1 core I/O slaves for KDE
ii  kdelibs4c2a 4:3.5.7.dfsg.1-3 core libraries and binaries for al
ii  libacl1 2.2.42-1 Access control list shared library
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libattr11:2.4.32-1.2 Extended attribute shared library
ii  libaudio2   1.9-2+b1 The Network Audio System (NAS). (s
ii  libc6   2.6.1-1  GNU C Library: Shared libraries
ii  libexif12   0.6.16-2 library to parse EXIF files
ii  libexiv2-0  0.15-1   EXIF/IPTC metadata manipulation li
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0] 0.1.8-2  Client library for the gamin file 
ii  libgcc1 1:4.2.1-2GCC support library
ii  libgphoto2-22.3.1-8  gphoto2 digital camera library
ii  libgphoto2-2-dev2.3.1-8  gphoto2 digital camera library (de
ii  libgphoto2-port02.3.1-8  gphoto2 digital camera port librar
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libidn111.0-0GNU libidn library, implementation
ii  libjasper1  1.900.1-3The JasPer JPEG-2000 runtime libra
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libkdcraw1  0.1.1-2  Raw picture decoding C++ library (
ii  libkexiv2-1 0.1.5-1+b1   Qt like interface for the libexiv2
ii  libkipi00.1.5-2  library for apps that want to use 
ii  liblcms11.16-6   Color management library
ii  libltdl31.5.24-1 A system independent dlopen wrappe
ii  libpcre37.2-1Perl 5 Compatible Regular Expressi
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libqt3-mt   3:3.3.7-6Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsqlite3-03.4.1-1  SQLite 3 shared library
ii  libstdc++6  4.2.1-2  The GNU Standard C++ Library v3
ii  libtiff43.8.2-7  Tag Image File Format (TIFF) libra
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.2-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3.3.dfsg-5 co

Bug#430545: Display goes off at the mid of installation

2007-08-09 Thread Brice Goglin
reassign 430545 xresprobe
retitle 430545 xresprobe breaks display at the middle of installation
thank you


nirupama rout wrote:
> Hi
>
> I have attached the text file for the output that i
> got for
>
> /usr/share/bug/xserver-xorg/script 3>&1
>
> This is not problem with one kind of PC and I have
> tried installing in acer pcs all show the same.
>   

As explained by Matthew earlier, this problem is probably caused by
xresprobe probing available video modes. There is no easy way to fix it
for now apart from not probing at all but that might generate buggy
xorg.conf. However, we expect xresprobe to be dropped in the long term
thanks to the server autoconfiguration features.

Brice



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



Bug#437018: Network shouldn't be used/enforced on non-network installs

2007-08-09 Thread Tim Hull
I guess having it look for a network in the background and silently fail
would be preferable, in any case.  Is this doable?

On 8/10/07, Christian Perrier <[EMAIL PROTECTED]> wrote:
>
> Quoting Tim Hull ([EMAIL PROTECTED]):
>
> > It would be GREAT if the network-related steps would be skipped/bypassed
> on
> > a default install from non-netinstall media.  Users then could configure
> the
> > network at their leisure after the install using the tools they prefer
> > (NetworkManager etc).  Could this be considered?
>
> Probably not. Having a system with immediate support for security
> updates is one of the key features of Debian. Doing this would defeat
> that design choice.
>
> I'm letting other D-I team members give their advice and decide
> whether this bug report should be kept or marked "wontfix".
>
> --
>
>
>
> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.4.6 (GNU/Linux)
>
> iD8DBQFGu/1r1OXtrMAUPS0RAvwAAJoCbz6zN8M4ZXBWVjIAix7ekHr1gwCgoWOg
> dUzSO/6xCpIaWOHTn6NOsxs=
> =eJ8o
> -END PGP SIGNATURE-
>
>


Bug#416852: FTBFS with GCC 4.3: meaning of inline changed in C99

2007-08-09 Thread Hisham Muhammad
Fixed in SVN version.

Thanks,

-- Hisham Muhammad
htop author


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



Bug#437020: fails with W: Mandatory parameter 'bug' missing in call

2007-08-09 Thread Bryan Donlan
Package: apt-listbugs
Version: 0.0.82
Severity: grave

Checking for bugs fails with:
Error retrieving bug reports from the server with the following error message:
 W: Mandatory parameter 'bug' missing in call to Debbugs::Status::get_bug_status
 at /usr/local/lib/site_perl/Debbugs/SOAP.pm line 114
It could be because your network is down, or because of broken proxy servers, 
or the BTS server itself is down. Check network configuration and try again
Retry downloading bug information?[Y/n]?
   

Retrying does not fix this. /usr/local/lib/site_perl/Debbugs/SOAP.pm seems to
be a BTS-side file, it's not on my local machine.

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

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

Versions of packages apt-listbugs depends on:
ii  apt   0.7.6  Advanced front-end for dpkg
ii  libdpkg-ruby1.8   0.3.2  modules/classes for dpkg on ruby 1
ii  libhttp-access2-ruby1.8   2.0.6-3HTTP accessing library for ruby
ii  libintl-gettext-ruby1.8   0.11-10Gettext wrapper for Ruby 1.8
ii  libruby1.8 [libzlib-ruby1.8]  1.8.6.36-1 Libraries necessary to run Ruby 1.
ii  libxml-parser-ruby1.8 0.6.8-2Interface of expat for the scripti
ii  ruby  1.8.2-1An interpreter of object-oriented 

apt-listbugs recommends no packages.

-- no debconf information


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



Bug#437009: No window borders in latest Compiz

2007-08-09 Thread Brice Goglin
Tim Hull wrote:
> Package: compiz
> Version: 0.5.0.dfsg-2
> Priority: important
>
> On Debian sid with the latest Compiz and X installed, running compiz
> --replace with an active Gnome/Metacity session results in there being
> no window borders.  Compiz effects (cube, window effects, alt+tab,
> etc) all work, but none of my windows have window borders.  I even
> tried unregistering the /apps/compiz settings in gconf, but it still
> doesn't work - hence Compiz is basically unusable.
>
> I'm using a MacBook with Intel GMA 950 graphics and the X.org
>  "intel" driver.  No such problems were experienced with
> Compiz with the same system in Etch.

Any warning?

Is gtk-window-decorator running after starting compiz? if so, kill it
and compiz --replace again and again?

Brice



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



Bug#437018: Network shouldn't be used/enforced on non-network installs

2007-08-09 Thread Christian Perrier
Quoting Tim Hull ([EMAIL PROTECTED]):

> It would be GREAT if the network-related steps would be skipped/bypassed on
> a default install from non-netinstall media.  Users then could configure the
> network at their leisure after the install using the tools they prefer
> (NetworkManager etc).  Could this be considered?

Probably not. Having a system with immediate support for security
updates is one of the key features of Debian. Doing this would defeat
that design choice.

I'm letting other D-I team members give their advice and decide
whether this bug report should be kept or marked "wontfix".

-- 




signature.asc
Description: Digital signature


Bug#437013: d-i doesn't properly understand LVM groups with active snapshot volumes

2007-08-09 Thread Christian Perrier
Quoting Tim Hull ([EMAIL PROTECTED]):
> Package: debian-installer
> Version: 20070308
> 
> I recently used d-i to install Debian Etch to a volume that was part of an
> LVM volume group that contained an active snapshot volume.  While the
> installation proceeded fine, it issued an error message to the effect that
> something was wrong with the partition table (can't recall the exact
> message).  This should be fixed for future d-i releases...

If you can't remember the message, spotting the exact place the bug
lies will be tricky, I'm afraid.

We also need to know what exact version of D-I you were using. Was it
a standard Debian Etch CD?

Are you in position to reproduce this bug (say, with a daily build)?
If not, spotting the bug will be *very* tricky.


-- 




signature.asc
Description: Digital signature


Bug#431812: /sbin/discover: radio_maestro is unneeded with ES1978 Maestro 2E

2007-08-09 Thread Joseph Neal
On Thursday 09 August 2007, Petter Reinholdtsen wrote:
> 
> notfound 431812 1.7.21
> reassign 431812 discover-data
> found 431812 2.2007.05.11
> thanks
> 
> [Joseph Neal]
> > It's been loading this module as long as I can remember.  I'm just
> > now getting around to reporting it.
> 
> I do not understand this bug report.  According to the information
> returned by discover in your bug report, this card maps to the
> snd-es1968 kernel module, and not radio_maestro:
> 
>   snd-es1968:::ESS Technology ES1978 Maestro 2E
> 
> Are you sure discover is the reason why the radio_maestro kernel
> module is loaded during boot?

No, I'm not sure of that.  I just googled ES1978 and radio_maesto and found 
this konfig diff on lkml so it looks like it's a kernel issue. My card is a 
Maestro 2E but it has no onboard radio. 

http://lkml.org/lkml/2006/6/25/101

config RADIO_MAESTRO
tristate "Maestro on board radio"
-   depends on VIDEO_V4L1
+   depends on (VIDEO_V4L1 || VIDEO_V4L1_COMPAT)
---help---
  Say Y here to directly support the on-board radio tuner on the
  Maestro 2 or 2E sound card.
@@ -175,7 +175,7 @@ config RADIO_MAESTRO

Looking at this patch to radio-maestro.c, it again looks like the kernel 
expects to find a radio device on this card.  

http://www.ussg.iu.edu/hypermail/linux/kernel/0512.3/1362.html

While all traces of the card seem to be gone from the Diamond site, I was able 
to find a pdf of the manual on the windows driver install CD.  There is no 
mention of any radio functionality.

Please feel free to reassign or forward this as appropriate.  



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



Bug#437019: Don't lock display on suspend-to-RAM

2007-08-09 Thread Tim Hull
Package: gnome-power-manager
Version: 2.18.3-1
Priority: wishlist

Currently, when one suspends-to-RAM using the "Suspend" option in
gnome-power-manager, the display is locked upon resume from suspend.  This
is somewhat annoying, as I did not set my system to lock on suspend-to-RAM
in the suspend scripts.  Could gnome-power-manager not do this by default?
It is quite annoying for a user who suspends their system for short periods
of time often and has no way of disabling this besides calling
suspend-to-RAM scripts manually from the command line.


Bug#437018: Network shouldn't be used/enforced on non-network installs

2007-08-09 Thread Tim Hull
Package: debian-installer
Version: 20070308
Priority: wishlist

During installs from CD-ROM and DVD media, users are still currently
prompted to set up the network and download security fixes from the
network.  However, many (quite possibly most) users who use the full-blown
install media (as opposed to the netinstall CD) do not have access to a
network connection which is functional during the install and as such have
to navigate through these steps and the inevitable errors they produce for
no reason at all.

It would be GREAT if the network-related steps would be skipped/bypassed on
a default install from non-netinstall media.  Users then could configure the
network at their leisure after the install using the tools they prefer
(NetworkManager etc).  Could this be considered?


Bug#437017: pybliographer: when saving, does not canonicalize order of entries

2007-08-09 Thread joshua
Package: pybliographer
Version: 1.2.9-1
Severity: normal

I keep my bib files in GIT. When saving I notice that pybliographer
sometimes reorders entries which are unchanged. As far as possible,
the original order of the entries in the file should be preserved
when saving to minimize the differences pick up by GIT.

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

Kernel: Linux 2.6.22.1-b3 (PREEMPT)
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 pybliographer depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-bibtex 1.2.2-3Python interfaces to BibTeX and th
ii  python-glade2 2.10.3-2   GTK+ bindings: Glade support
ii  python-gnome2 2.16.2-1   Python bindings for the GNOME desk
ii  python-support0.6.4  automated rebuilding support for p

Versions of packages pybliographer recommends:
ii  yelp  2.18.0-1   Help browser for GNOME 2

-- no debconf information


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



Bug#421070: not affected

2007-08-09 Thread Steffen Joeris
Hi Michael

I do not see the problem with the init script. There were some problems with 
upgrading, but only between older unstable versions, which got never released 
in the stable release. The current stable release also upgrades to the 
testing/unstable one without problems. I also use the --oknodo option, which 
should prevent the error you got.

Cheers
Steffen


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


Bug#437016: d-i inconsistent in definition of GB used

2007-08-09 Thread Tim Hull
Package: debian-installer
Version: 20070308

During an Etch install, the partitioning step is inconsistent about the
definition of a gigabyte.
For example, when LVM volumes are created, the definition of GB used for
specifying their size is
(1024*1024*1024) bytes.  However, the definition of GB used on the main
partitioning screen is a billion
(1000*1000*1000) bytes.  Thus, a 10.0GB LVM volume will appear confusingly
as 10.6 GB on the main partitioning
screen.  This should be fixed in a future d-i build.


Bug#437015: clamtk: No virus definitions found

2007-08-09 Thread redomen
Package: clamtk
Version: 2.32-1
Severity: normal


After a fresh install running clamtk always brings up the message 
"Warning: No virus definitions found! If you are sure you have 
definitions installed, please inform the developer where your 
definitions are held so the paths can be added."

However running clamscan says "Known viruses: 144367" and seems to work 
normally.


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

Kernel: Linux 2.6.22.1
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages clamtk depends on:
ii  clamav0.91.1-1   antivirus scanner for Unix
ii  clamav-freshclam  0.91.1-1   downloads clamav virus databases f
ii  libdate-calc-perl 5.4-5  Perl library for accessing dates
ii  libfile-find-rule-perl0.30-2 Alternative interface to File::Fin
ii  libgtk2-perl  1:1.140-1  Perl interface to the 2.x series o
ii  liblocale-gettext-perl1.05-1 Using libc functions for internati
ii  libwww-perl   5.805-1WWW client/server library for Perl

clamtk recommends no packages.

-- no debconf information


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



Bug#437013: d-i doesn't properly understand LVM groups with active snapshot volumes

2007-08-09 Thread Tim Hull
Package: debian-installer
Version: 20070308

I recently used d-i to install Debian Etch to a volume that was part of an
LVM volume group that contained an active snapshot volume.  While the
installation proceeded fine, it issued an error message to the effect that
something was wrong with the partition table (can't recall the exact
message).  This should be fixed for future d-i releases...


Bug#79037: it`s camille

2007-08-09 Thread camille

hello, I am pretty russian girl, bored tonight.
would you like to chat with me and see my pics?
if so then email me at [EMAIL PROTECTED]


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



Bug#437014: sane consistently fails with HP3400C and Brother MFC-3820cn but works under ubuntu and wincrap

2007-08-09 Thread Nothanks Nospam
Package: libsane
Version: 1.0.18.5

Attempting to start xsane, the scanner is found but each fails with a
different error:

hp3400c fails as busy (consistent).
MFC-3820cn fails with an I/O error  (consistent)..

Both scanners work under ubuntu feisty with libsane 1.0.18.3 and wincrap.

With xp running under vmware, both scanners are accessible and work
with no problems on vmare on the same debian 4 machine.

Hope this helps!

Thanks for all you do!

Take care.


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



Bug#437012: Gdebi should be default handler for application/x-deb when installed

2007-08-09 Thread Tim Hull
Package: gdebi
Version: 0.2.4debian1

Currently, I have gdebi installed on my Debian Sid system.  While it is
registered as a handler for the MIME type application/x-deb in the system,
it is NOT the default application for GNOME/Iceweasel/etc to handle .deb
files (File Roller is).  It seems like if gdebi is installed on a system, it
should make itself the default handler for .debs (in GNOME/Iceweasel/etc) on
the system which it is installed.


Bug#436166: lirc FTBFS

2007-08-09 Thread Steffen Joeris
Hi

The linux/compiler.h file was in the linux-kernel-headers package, which got 
removed from unstable. The file as available for all archs, although afaik 
the code is not absoluteley arch-indep. The best way would probably be to put 
some ifdef conditions into the code and only use it, if it is present.
The file is of course still present in the linux-headers.

Cheers
Steffen


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


Bug#166640: hi from nichole

2007-08-09 Thread nichole

hello, I am pretty russian girl, bored tonight.
would you like to chat with me and see my pics?
if so then email me at [EMAIL PROTECTED]


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



Bug#437011: O: xmms-crossfade -- XMMS Plugin for Crossfading / Continuous Output

2007-08-09 Thread Kartik Mistry
Package: wnpp
Severity: normal

Since, there is discussion going on to remove xmms, I intend to orphen
this package, well, it has audacious-crossfade binary package, so this
should package not remove.  But, I have find better media player :)

Package: xmms-crossfade
Priority: optional
Section: sound
Installed-Size: 312
Architecture: i386
Version: 0.3.12-2
Depends: libc6 (>= 2.5), libsamplerate0, xmms (>= 1.2.10+20070401)
Filename: pool/main/x/xmms-crossfade/xmms-crossfade_0.3.12-2_i386.deb
Size: 116664
MD5sum: 4034005edd7e2499c4c2f5585ed4f54c
SHA1: 37992d0ce35d2e6e65774f3d97ee124335564964
SHA256: 994d3848b2aa8daad6016e7462b689dd4bcc15d7ad72b0ea45a450bc648c2b9c
Description: XMMS Plugin for Crossfading / Continuous Output
 This is a proxy output plugin for the popular XMMS Player.
 Features:
  * Crossfading: Crossfade between two songs, i.e. fade out the end of the
current song while fading in the beginning of the next for a smooth
transition. Length and volume of the fadings can be adjusted separately
for fading in and out.
  * Fadein/Fadeout: Smoothly fadein/fadeout at the beginning or end of
playback.
  * Continuous output: Keeps the audio device opened when switching from one
song to the next. When used with the Gap-Killer, this allows for seamless
playback of whole albums without any audible interruption between the
tracks.
  * Gap-Killer: Removes the short gaps of silence at the beginning and/or end
of mp3 files. These gaps are caused by some mp3-encoders.
  * Automatic detection of live albums: Automatically detects live albums and
pre-mixed tracks which already are crossfaded. For those tracks,
crossfading can be disabled automatically.
  * High quality: crossfade can take special care to avoid the clicks some
soundcards produce when suddenly being stopped. Also, it can improve
quality when seeking within a song.
  * Secondary effect plugin: crossfade allows you to select a second effect
plugin. This is useful for example when using the volume normalizing
plugin together with the icecast plugin.
 .
  Homepage: http://www.eisenlohr.org/xmms-crossfade/
Enhances: xmms
Tag: interface::x11, role::plugin, role::shared-lib, sound::mixer,
suite::xmms, uitoolkit::gtk, use::playing, works-with::audio,
x11::application

Cheers,
-- 
---
Kartik Mistry  || GPG: 0xD1028C8D || IRC: kart_
kartikmistry.org/blog || kartikm.wordpress.com
---


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



Bug#437010: O: clara -- Free OCR program for Unix Systems

2007-08-09 Thread Kartik Mistry
Package: wnpp
Severity: normal

I don't use Clara anymore and upstream is lost (no valid email
id/contact etc). But, package is almost in good shape.

Description: Free OCR program for Unix Systems
 Clara OCR is intended for large scale digitalization projects. It features a
 powerful GUI and a web interface for cooperative digitalization of books.

Thanks,
-- 
---
Kartik Mistry  || GPG: 0xD1028C8D || IRC: kart_
kartikmistry.org/blog || kartikm.wordpress.com
---


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



Bug#437009: No window borders in latest Compiz

2007-08-09 Thread Tim Hull
Package: compiz
Version: 0.5.0.dfsg-2
Priority: important

On Debian sid with the latest Compiz and X installed, running compiz
--replace with an active Gnome/Metacity session results in there being no
window borders.  Compiz effects (cube, window effects, alt+tab, etc) all
work, but none of my windows have window borders.  I even tried
unregistering the /apps/compiz settings in gconf, but it still doesn't work
- hence Compiz is basically unusable.

I'm using a MacBook with Intel GMA 950 graphics and the X.org "intel"
driver.  No such problems were experienced with Compiz with the same system
in Etch.


Bug#437008: nis: [INTL:pt_BR] Brazilian Portuguese debconf templates translation

2007-08-09 Thread jefferson alexandre
Package: nis
Tags: l10n patch
Severity: wishlist

 Hi,

 Could you please update the Brazilian Portuguese Translation?

 Attached you will find nis_pt_BR.po.gz , it is update. It
is encoded using UTF-8 and it is tested with msgfmt and also with
podebconf-display-po.

 Kind regards.

-- 
Linux User #328969
Linux System Administrator
www.midstorm.org/~jalexandre/blog


nis_pt_BR.po.gz
Description: GNU Zip compressed data


Bug#437007: Arial and other Core Fonts should be remapped to Bitstream Vera/DejaVu by default

2007-08-09 Thread Tim Hull
Package: fontconfig-config
Version: 2.4.2-1.2

With the default font configuration, Arial and the other fonts that make up
the MS Core Fonts aren't remapped/aliased to any sane alternative.  Thus, if
Arial is used by a website in a browser that uses the system default font
configuration, it will fall back on a font that is less-than-sane (in the
case of debian.org, you can see it fall back to *bitmap Helvetica*).  It
would be nice to use a font like DejaVu Sans if Arial is requested by the
system (this is what is done on Ubuntu).

I tried to find where Debian and Ubuntu's font configuration diverges (to
figure out how to make this fix) but was unsuccessful in doing so.
Hopefully the fontconfig maintainer(s) may be able to locate this in order
to fix the issue.


Bug#437005: New version of SDL_image was released (1.2.6)

2007-08-09 Thread Andres Mejia
Source: sdl-image1.2
Version: 1.2.6

A new version of SDL_image was released (1.2.6) Here is the link.
http://www.libsdl.org/projects/SDL_image/

-- 
Regards,
Andres Mejia


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



Bug#398533: tp-smapi packaging

2007-08-09 Thread Joe Nahmias
On Thu, Aug 09, 2007 at 07:22:36PM +0200, Evgeni Golov wrote:
> Yeah, I've just finished it. You can get it here:
> http://mentors.debian.net/debian/pool/main/t/tp-smapi/tp-smapi_0.32-1.dsc
> 
> I think it is in good shape, builds fine here, so you are welcome to
> upload it, if you think it is okay too.

OK, I've a number of comments; here's round one:

  - The _source_ package should not require kernel >= 2.6.19 in order to
build it.  You will have to patch the Makefile to disable that check
when building the source package, but require it during the build of
the binary module packages.

  - Your use of dpatch in the clean target is incorrect.  It does not
allow for using a patched clean target within the Makefile.  You
should have the following instead:

clean: clean-patched unpatch
clean-patched:
dh_testdir
dh_testroot
# etc
$(MAKE) clean
dh_clean

  - Also, on the same topic, you should not be ignoring the error when
the Makefile is not present -- it is not generated by autoconf, so
if it's missing there's a problem!

  - Your second rules file is mis-named.  It should probably be called
rules.modules since it is the debian/rules that used to build the
modules packages.

  - It would be better if you could combine the two rules files that you
have so that there is only one place to make changes when necessary.
This shouldn't be too difficult since they will call different
targets depending on whether it's a source or module build.

  - In both rules you don't export CFLAGS, so the noopt handling in
DEB_BUILD_OPTIONS will not make it to the actual compiles.

  - In README.Debian, the third option should mention that the user will
need to manually compile the module -- not just unpack & install.

  - The source package does not need to depend on make and bzip2,
mod-ass will pull those in for you.

  - Using dpkg-divert is the wrong solution for kernel modules.  You
should use the updates sub-dir to override the regular hdaps module.
See, for example, the alsa-source package.

  - You should run `depmod -a` in the postinst and postrm scripts of the
module packages so that the modules can be found / removed by
modprobe.

  - I'm not sure what debian/tp-smapi-source.links is supposed to
accomplish.  Can you explain this to me.

Well, that's enough for one round.  Let me know when you've fixed up and
uploaded a 0.32-2 package and I'll take another look.

--Joe

PS - You might want to take a look at the package I created for some
tips.  It's available from http://people.debian.org/~jello/.


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



Bug#436939: OVERRIDE_FROM should override email address

2007-08-09 Thread Joey Hess
Bernhard Kauer wrote:
> The ability to override the From: field of the mail via
> OVERRIDE_FROM is misleading. It just allows to override
> the From: name, but not the email address. The attached
> patch correct this. Additionally it is an simpler way
> as #349061 proposes to get a mail that is easy filterable
> by procmail.

Won't changing what OVERRIDE_FROM currently does break existing users of
it? Seems that something would need to be done to handle current uses of
OVERRIDE_FROM.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#437003: New version of SDL_net was released (1.2.7)

2007-08-09 Thread Andres Mejia
Source: sdl-net1.2
Version: 1.2.7

A new version of SDL_net was released (1.2.7). Here is the link.
http://www.libsdl.org/projects/SDL_net/

-- 
Regards,
Andres Mejia


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



Bug#418596: nfs-common: Can not nfs-mount using second interface during boot

2007-08-09 Thread Phil Snowdon
Hi Steinar,

I wouldn't like to see this bug dropped as we still have issues with it.
My understanding is that mountnfs tries to mount the NFS shares as soon
as the first interface is available.  We worked round this by changing
the order that the interfaces are brought up. from 'auto eth0 eth1' to
'auto eth1 eth0'.  However this has the side effect that the mount still
failed as the DNS server was off eth0.  Final workround was to have a
seconday DNS server available off eth1.

But it's a bit of a chicken and egg situation.  Mountnfs should wait
till all interfaces that are configured to start automatically are up,
or fstab needs options to specify the interface that the nfs shares will
use (but that i feel is 'non standard').

If you need me to do some testing with an 'unstable' system then I will.
But I don't want to repeat work that someone else is already doing.

Cheers

Phil Snowdon
Senior Systems Engineer 
Actrix Networks


On Thu, 2007-08-09 at 23:55 +0200, Steinar H. Gunderson wrote:
> On Sat, Jul 28, 2007 at 12:32:28PM +0200, Steinar H. Gunderson wrote:
> >> I have just returned from vacation and have quite a few things to catch
> >> up with here. But I will take a look at it. I do hope that nothing else
> >> breaks (dependencies) as I am running stable here.
> > I can't guarantee that, sorry. There have been quite a lot of changes; I'd
> > try to reproduce it on an unstable machine if I were you.
> 
> Any progress on this? I'm starting to wonder if the best thing is just to
> close it; there is no value in keeping a bug open if we do not really know if
> it's fixed or not.
> 
> /* Steinar */
> -- 
> Homepage: http://www.sesse.net/
> 
> 



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



Bug#432094: Endgame: Singularity v0.26 Released

2007-08-09 Thread Phil Bordelon
Endgame: Singularity v0.26 has been released, with the
relicensed data and the freeing of the previously
non-free Acknowledge font.  Feel free to move E:S into
main whenever you like, and let us know when you do. :)

Phil


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



Bug#436980: fceu: New version breaks aspect ratio on wide screens

2007-08-09 Thread Adam C. Emerson
On Fri, Aug 10, 2007 at 02:33:27AM +, Joe Nahmias wrote:
> On Thu, Aug 09, 2007 at 06:05:18PM -0400, Adam C. Emerson wrote:
> > On Thu, Aug 09, 2007 at 09:56:44PM +, Joe Nahmias wrote:
> > > I presume that you're using full screen mode with a screen that does not
> > > have 3:4 ratio.  Try disabling opengl on the command-line.  For
> > > example:
> > > 
> > >fceu -opengl 0 SuperMario.nes
> > 
> > That gets the aspect ratio right, but I just end up with a small area in
> > the middle of the screen rather than having it scaled up but with the
> > aspect ratio preserved.
> 
> OK, you should investigate the various scaling and resolution options to
> get this right.  Check out -xres, -yres and all the rest in
> /usr/share/doc/fceu/fceultra.html.
> 
> I personally use the following display options:
> 
>   fceu -opengl 0 -fs 1 -xres 640 -yres 480 /usr/share/nes/efp.nes
> 
> This uses most of the screen on my ThinkPad T61, with some black space
> on the sides, because it's not a 4:3 display.
> 
> Hope this helps,
> --Joe
> 
> PS - Please keep the BTS in the cc list.
> 
> 

I shall give that a try.  I was just surprised since it was working fine
immediately before the upgrade and quit after.


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



Bug#437001: angband: New upstream version available

2007-08-09 Thread Joseph Neal
Package: angband
Version: 1:3.0.6-4
Severity: wishlist

The version of angband in debian is several behind and there have been major 
changes upstream including a new maintainer, 
autosquelch and deluafication. 

http://rephial.org/release

In case you haven't been following rgra, you'll also find this of interest.  It 
should be possiable to include angband in main 
soon.

http://rephial.org/wiki/OpenSource

Sangband has seen a 1.0 release recently.  I may take a shot at packaging that 
myself if you're not intererested. All the C I know 
I learned hacking on angband variants.  

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

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

Versions of packages angband depends on:
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libice6   2:1.0.3-3  X11 Inter-Client Exchange library
ii  libncurses5   5.6+20070716-1 Shared libraries for terminal hand
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxaw7   1:1.0.3-3  X11 Athena Widget library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxmu6   1:1.0.3-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library

angband recommends no packages.

-- no debconf information


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



Bug#437000: util-linux 2.13~rc3-3 breaks aptitude

2007-08-09 Thread Wen-chien Jesse Sung

Package: util-linux
Version: 2.13~rc3-3
Severity: important

Hi,

After upgrading util-linux to 2.13~rc3-3 and bsdutils to 1:2.13~rc3-3,
aptitude tells me something like 'got SIGSEGV @ 0' and quits.

Downgrade these two packages to 2.13~rc3-1 and then aptitude works again.

By the way, when I try to downgrade them, dpkg tells me that file lists
of some packages (alsa-utils, abiword-gnome, ...) are missing. I'm not
sure if this is caused by the same problem.

The architecture is i386.
kernel: 2.6.22-ck1
ii  libc6  2.6.1-1
ii  libc6-i686 2.6.1-1
ii  libncurses55.6+20070716-1
ii  libselinux12.0.15-2+b1
ii  libuuid1   1.40.2-1
ii  lsb-base   3.1-24
ii  tzdata 2007f-10
ii  zlib1g 1:1.2.3.3.dfsg-5

--
Best Regards,
Wen-chien Jesse Sung


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



Bug#436126: eyeD3

2007-08-09 Thread Vitaliyi
I've realized that it is possible to do the following and get rid of
necessity to change the eyeD3 module:

import eyeD3,os,chardet
ls = '/tmp/tst/'
for path in os.listdir(ls):
if eyeD3.tag.isMp3File(ls+path):
mp3file = eyeD3.Mp3AudioFile(ls+path)
mp3info = mp3file.getTag()
title = mp3info.getTitle().encode("latin_1")
print "title: %s %s" % (title, chardet.detect(title)['encoding'])

Thanks for attention.


Bug#436914: gcin: not handling nostrip build option (policy 10.1)

2007-08-09 Thread Wen-Yen Chuang
I think the upstream author will release next version(1.3.5) recently.
(He has released 1.3.5.pre5.)

I will fix this bug in gcin 1.3.5-1. :-)

Wen-Yen Chuang (caleb)


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



Bug#436980: fceu: New version breaks aspect ratio on wide screens

2007-08-09 Thread Joe Nahmias
On Thu, Aug 09, 2007 at 06:05:18PM -0400, Adam C. Emerson wrote:
> On Thu, Aug 09, 2007 at 09:56:44PM +, Joe Nahmias wrote:
> > I presume that you're using full screen mode with a screen that does not
> > have 3:4 ratio.  Try disabling opengl on the command-line.  For
> > example:
> > 
> >fceu -opengl 0 SuperMario.nes
> 
> That gets the aspect ratio right, but I just end up with a small area in
> the middle of the screen rather than having it scaled up but with the
> aspect ratio preserved.

OK, you should investigate the various scaling and resolution options to
get this right.  Check out -xres, -yres and all the rest in
/usr/share/doc/fceu/fceultra.html.

I personally use the following display options:

  fceu -opengl 0 -fs 1 -xres 640 -yres 480 /usr/share/nes/efp.nes

This uses most of the screen on my ThinkPad T61, with some black space
on the sides, because it's not a 4:3 display.

Hope this helps,
--Joe

PS - Please keep the BTS in the cc list.


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



Bug#436999: remember to remove any /etc/ppp/ip-up.d/*pdnsd*

2007-08-09 Thread Dan Jacobson
Package: pdnsd
Version: 1.2.6-par~pre2-6
Severity: wishlist

Upon upgrade remind the user via a big banner to remove any
/etc/ppp/ip-up.d/*pdnsd* detected, or else one's system will accrue
cruft.


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



Bug#436998: must not depend on makedev

2007-08-09 Thread Marco d'Itri
Package: mdadm
Severity: normal

Packages which need to create a device node must depend on udev | makedev.

Also, MAKEDEV should be called as /dev/MAKEDEV instead of /sbin/MAKEDEV.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#436997: must not depend on makedev

2007-08-09 Thread Marco d'Itri
Package: alevt
Severity: normal

Packages which need to create a device node must depend on udev | makedev.

Also, MAKEDEV should be called as /dev/MAKEDEV instead of /sbin/MAKEDEV

OTOH, this package can probably just drop the call to MAKEDEV since the
v4l devices are present on every modern system.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#230695: xjdic: Doesn't work with UTF-8

2007-08-09 Thread Jim Breen
Hi Frédéric and Ludovic,

On 09/08/07, Frédéric Brière <[EMAIL PROTECTED]> wrote:
> I was thinking of giving this issue a try when a little Googling turned
> up a very thorough patch from Phillip Vandry that makes xjdic
> locale-aware: .
> (Turns out I was wrong in assuming this wouldn't be too hard to do.)
>
> This patch also includes some cleanup and bugfixes, which you may or may
> not feel comfortable with.  I thought of splitting it in two, but it's
> basically one big patch over one big file, so this is not easily doable.

A problem I had/have with that patch from Phillip Vandry is that my working
code version had already moved on to the extent I couldn't get around to
working in his patch details line-by-line. My own version has a few
extensions which I find useful.

> I'm attaching a version that's slightly modified to apply to 24-6.  I'm
> also attaching a cheap hack I wrote to disable locale support when
> TERM=kterm, in an attempt to have xjdic behave correctly when started in
> a kterm when LANG is still set to a legacy encoding like latin-1.  (As I
> used to do until recently.)
>
> After applying both patches (in order), all that remains is to pass
> -DHAVE_LOCALE to gcc.  No further build-deps are required.

Could you send me the fully patched sources for xjdfrontend.c and xjdic.1?
What'd like to do it re-insert my updates and release a 2.5. In fact I'd
really like to put it somewhere (sourceforge?) where you and others can
modify it without version hassles. Hopefully someone will do a proper
configure/make for it.

I use it a lot, but I've moved on from writing this sort of thing, and I'm
happy to hand over.

Cheers

Jim
-- 
Jim Breen
Honorary Senior Research Fellow
Clayton School of Information Technology,
Monash University, VIC 3800, Australia
http://www.csse.monash.edu.au/~jwb/



Bug#436996: AHCI: unable to detect all SATA drives on G965/ICH8

2007-08-09 Thread Zdenek
Package: linux-image-2.6.18-4-amd64
Version: 2.6.18.dfsg.1-12etch2

In linux-image-2.6.18-4-amd64 4 port SATA controller (G965/ICH8) using
ahci driver is unable to detect all attached drives. Only 2 drives are
recognized (sdc, sdd):

2.6.18-4-amd64:
atlas:~# dmesg | grep scsi
scsi0 : sata_sil24
scsi1 : sata_sil24
sd 0:0:0:0: Attached scsi disk sda
sd 1:0:0:0: Attached scsi disk sdb
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
sd 2:0:0:0: Attached scsi disk sdc
sd 3:0:0:0: Attached scsi disk sdd

Looks like it's manufactured on Intel DG965RY as 6 port controller with
two dummy/unused sata ports which can cause in some cases alot headache
when installing etch.

In 2.6.21-2-amd64 newer ahci driver fixes this issue.

2.6.21-2-amd64:
atlas:~# dmesg | grep scsi | grep -v WDC
scsi0 : ahci
scsi1 : ahci
scsi2 : ahci
scsi3 : ahci
scsi4 : ahci
scsi5 : ahci
scsi6 : sata_sil24
sd 0:0:0:0: Attached scsi disk sda
sd 1:0:0:0: Attached scsi disk sdb
sd 4:0:0:0: Attached scsi disk sdc
sd 5:0:0:0: Attached scsi disk sdd
scsi7 : sata_sil24
sd 6:0:0:0: Attached scsi disk sde
sd 7:0:0:0: Attached scsi disk sdf
scsi8 : pata_marvell

Controller info:

00:1f.2 SATA controller [0106]: Intel Corporation 82801HB (ICH8) 4 port
SATA AHCI Controller [8086:2824] (rev 02)

00:1f.2 SATA controller: Intel Corporation 82801HB (ICH8) 4 port SATA
AHCI Controller (rev 02) (prog-if 01 [AHCI 1.0])
Subsystem: Intel Corporation Unknown device 514d
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop-
ParErr- Stepping- SERR- FastB2B-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort-
SERR- 

Bug#433865: update-manager: Reports updates are available, but cannot install chnages

2007-08-09 Thread Gustavo Noronha Silva
Em Qui, 2007-07-19 às 23:40 +0100, chrisg escreveu:
> There are six packages which update-manager thinks are upgradeable, but
> synaptic thinks are up to date, these are: -
> 
> evolution
> [...]
> If I try to reinstall these in synaptic, they are still not recognized as
> being up-to-date by update-manager.
> 
> The tool is at least usable now, though it is reporting false information.
> 

I don't think it is false information. These are probably packages which
have new versions available but which cannot be upgraded because of
missing or broken dependencies. I'm preparing an updated update-manager
today, if you could get it from unstable and test what it does to these
packages I'd be grateful. I'll post them here so you can reach them
before they get to unstable (which should have happened tomorrow at this
same time =P).

See you,

-- 
Gustavo Noronha <[EMAIL PROTECTED]>
http://kov.eti.br/




Bug#436989: closed by Pierre Habouzit <[EMAIL PROTECTED]> (Re: Bug#436989: autom4te.cache included in Debian's pdnsd source )

2007-08-09 Thread Juliusz Chroboczek
>   This is upstream tarball, there is nothing that I can do, I already
> asked upstream to prune those from the next release.

Thanks.

>   and FWIW it builds fine on debian so I suppose it's a problem on your
> end somewhere.

$ cat /etc/debian_version 
lenny/sid

Juliusz


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



Bug#434598: op-panel: Cannot be uninstalled

2007-08-09 Thread Jim Thomas
This is happening here too.  op-panel 0.27.dfsg-1, unstable dist.
I installed asterisk and destar to experiment, then removed them.
op-panel will not uninistall.

# aptitude remove op-panel
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Reading extended state information   
Initializing package states... Done
Building tag database... Done  
The following packages will be REMOVED:
  op-panel 
0 packages upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 1143kB will be freed.
Writing extended state information... Done
(Reading database ... 228474 files and directories currently installed.)
Removing op-panel ...
No alternatives for op-panel.
dpkg: error processing op-panel (--remove):
 subprocess pre-removal script returned error exit status 1
Starting Flash Operator Panel: op-panel.
Errors were encountered while processing:
 op-panel
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Reading package lists... Done 
Building dependency tree   
Reading state information... Done
Reading extended state information   
Initializing package states... Done
Building tag database... Done  

(aptitude install op-panel)

# dpkg --purge op-panel
(Reading database ... 228474 files and directories currently installed.)
Removing op-panel ...
No alternatives for op-panel.
dpkg: error processing op-panel (--purge):
 subprocess pre-removal script returned error exit status 1
Starting Flash Operator Panel: op-panel.
Errors were encountered while processing:
 op-panel

Regards, Jim


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



Bug#434833: Spontaneous reboots on suspend-to-RAM with new Xorg "intel" driver

2007-08-09 Thread Tim Hull
I guess I was wrong - it just happened without composite.  So I guess it's
completely random, other than the fact that it freezes/reboots at random
times when:

* I switch from X to console
* I suspend/resume the machine
* I kill the X server (Ctrl-Alt-Backspace)

with the new modesetting "intel" driver.  This did not happen with
i810+915resolution.

Before freezing/rebooting, the console always displays a checkerboard
pattern.


On 8/9/07, Tim Hull <[EMAIL PROTECTED]> wrote:
>
> Actually, I don't think it happens at all - at least I can't reproduce it
> as of now without composite.  So this seems to be an issue between composite
> (and/or additional settings needed to get it working) and the new
> mode-setting driver (it didn't happen w/i810+915resolution).
>
> On 8/9/07, Brice Goglin <[EMAIL PROTECTED]> wrote:
> >
> > Tim Hull wrote:
> > > I must note that I do have the "composite" extension enabled.  If I
> > > disable composite, I see these issues occur much less frequetly.
> > >
> >
> > Less frequency or not at all?
> >
> > Brice
> >
> >
>


Bug#436995: Incorrect values for root delay and dispersion

2007-08-09 Thread Juliusz Chroboczek
Package: openntpd
Version: 3.9p1-4
Severity: important

When acting as a server, OpenNTP sends replies with incorrect root
delay and dispersion values.  Since both of these values are smaller
then they should be, this has the potential of confusing legit NTP
clients, and might potentially cause synchronisation loops.


Juliusz


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



Bug#436994: java-gcj-compat-dev: javac doesn't work on trivial program

2007-08-09 Thread Daniel Schepler
Package: java-gcj-compat-dev
Version: 1.0.76-3
Severity: serious

With java-gcj-compat-dev from experimental installed, along with various other 
experimental gcj-related packages installed, javac doesn't work at all:

...
frobnitz:/tmp# COLUMNS=80 dpkg -l *gcj* *gij* *ecj*|grep ^i
ii  ecj3.3.0-2standalone version of the Eclipse Java compi
ii  ecj-gcj3.3.0-2standalone version of the Eclipse Java compi
ii  ecj-gcj3.3.0-2standalone version of the Eclipse Java compi
ii  gcj4:4.2-20070707 The GNU Java compiler
ii  gcj-4.14.1.2-14   The GNU compiler for Java(TM)
ii  gcj-4.1-base   4.1.2-14   The GNU Compiler Collection (gcj base packag
ii  gcj-4.24.2.1-1The GNU compiler for Java(TM)
ii  gcj-4.2-base   4.2.1-1The GNU Compiler Collection (gcj base packag
ii  gij4:4.2-20070707 The GNU Java bytecode interpreter
ii  gij-4.14.1.2-14   The GNU Java bytecode interpreter
ii  gij-4.24.2.1-1The GNU Java bytecode interpreter
ii  java-gcj-compa 1.0.76-3   Java runtime environment using GIJ
ii  java-gcj-compa 1.0.76-3   Java runtime environment with GCJ
ii  libecj-java3.3.0-2Eclipse Java compiler (library)
ii  libgcj-bc  4.2-20070707-1 Link time only library for use with gcj
ii  libgcj-common  1:4.2-20070707 Java runtime library (common files)
ii  libgcj7-1  4.1.2-14   Java runtime library for use with gcj
ii  libgcj7-1-awt  4.1.2-14   AWT peer runtime libraries for use with gcj
ii  libgcj7-dev4.1.2-14   Java development headers and static library
ii  libgcj7-jar4.1.2-14   Java runtime library for use with gcj (jar f
ii  libgcj8-0  4.2.1-1Java runtime library for use with gcj
ii  libgcj8-0-awt  4.2.1-1AWT peer runtime libraries for use with gcj
ii  libgcj8-dev4.2.1-1Java development headers and static library
ii  libgcj8-jar4.2.1-1Java runtime library for use with gcj (jar f
frobnitz:/tmp# cat Test.java
class Test {
  public int foo() { return 0; }
};
frobnitz:/tmp# /usr/lib/jvm/java-gcj/bin/javac Test.java
--
1. ERROR in Test.java (at line 1)
class Test {
^
The type java.lang.Object cannot be resolved. It is indirectly referenced from 
required .class files
--
2. ERROR in Test.java (at line 1)
class Test {
  
Implicit super constructor Object() is undefined for default constructor. Must 
define an explicit constructor
--
2 problems (2 errors)frobnitz:/tmp#

My guess would be that probably the ecj compiled to use gcj-4.1 files is 
unhappy with gcj-4.2 somehow.
-- 
Daniel Schepler


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



Bug#436168: fake scottish filter

2007-08-09 Thread Joey Hess
Adam Borowski wrote:
> Here's a filter that resembles the "dwarven" (really, kind of Scottish)
> accent from Order of the Stick.

I wonder if the 2 day delay in my responding to this could somehow
involve 400 comic strips. Nah, seems unlikely..

This will be in filters 2.40.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#436993: xkb-data: not all Romanian layouts are present/advertised

2007-08-09 Thread Eddy Petrișor
Subject: xkb-data: not all Romanian layouts are present/advertised
Package: xkb-data
Version: 0.9-4.1 1.0~cvs.20070721-1
Severity: important
Tags: l10n patch

Hello,

The GNOME layout selection tool does not allow selection of all the
existing layout for Romanian. To make matters worse, the hidden layouts
are the ones that should be used in public instititions (ones that
generate correct diactics - s and t with comma below) according to
Romanian law. Also note that the cedilla variants are the ones that will
be deprecated sooner or later although the "std" layout is one of those.


A lengthier discussion was started on the corresponding ubuntu bug, with
references to the Romanian law, and the standard, images with the layout
...

https://bugs.launchpad.net/ubuntu/+source/xkeyboard-config/+bug/108057

Note that the choice issue they discuss is not implemented in anyway
here yet, although the default layout for Lenny should be the comma
variant since having correct diacritics for Romanian is an internal
release goal of the Romanian L10N team:

http://wiki.debian.org/L10N/Romanian/Lenny (in Romanian; the first point
is the one dealing with the issue of using correct diacritics).



Attached is a patch I made for the unstable version of the package and I
tested on the etch version.


Please include this patch in the next release of the package.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (50, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=ro_RO.UTF-8, LC_CTYPE=ro_RO.UTF-8 (charmap=UTF-8)

-- no debconf information
Fri Aug 10 02:25:36 EEST 2007  Eddy Petrișor <[EMAIL PROTECTED]>
  * the initial patch to make all Romanian layouts visible to applications like the layout selection applet from GNOME
diff -rN -u old-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/debian/changelog new-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/debian/changelog
--- old-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/debian/changelog	2007-08-10 02:30:11.0 +0300
+++ new-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/debian/changelog	2007-08-10 02:30:11.0 +0300
@@ -1,3 +1,11 @@
+xkeyboard-config (1.0~cvs.20070721-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * add support for all Romanian layouts, especially the comma variants
+since their usage is mandatory under the new law in Romania
+
+ -- Eddy Petrișor <[EMAIL PROTECTED]>  Fri, 10 Aug 2007 02:19:36 +0300
+
 xkeyboard-config (1.0~cvs.20070721-1) unstable; urgency=low
 
   [ Julien Cristau ]
diff -rN -u old-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.lst new-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.lst
--- old-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.lst	2007-08-10 02:30:11.0 +0300
+++ new-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.lst	2007-08-10 02:30:11.0 +0300
@@ -407,7 +407,10 @@
   mac pt: Macintosh
   mac_nodeadkeys  pt: Macintosh, eliminate dead keys
   mac_sundeadkeys pt: Macintosh, Sun dead keys
-  std ro: Standard
+  comma   ro: Programmers
+  academicro: Standard
+  basic   ro: Programmers (cedilla)
+  std ro: Standard (cedilla)
   winkeys ro: Winkeys
   phoneticru: Phonetic
   typewriter  ru: Typewriter
diff -rN -u old-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.xml.in new-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.xml.in
--- old-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.xml.in	2007-08-10 02:30:11.0 +0300
+++ new-xkb-data-does-not-show-all-layouts/xkeyboard-config-1.0~cvs.20070721/rules/base.xml.in	2007-08-10 02:30:11.0 +0300
@@ -2549,12 +2549,30 @@
   
 
   
-std
+comma
+<_description>Programmers
+  
+
+
+  
+academic
 <_description>Standard
   
 
 
   
+basic
+<_description>Programmers (cedilla)
+  
+
+
+  
+std
+<_description>Standard (cedilla)
+  
+
+
+  
 winkeys
 <_description>Winkeys
   



signature.asc
Description: OpenPGP digital signature


Bug#424923: Debian bug followup (Re: bug 424923)

2007-08-09 Thread A. Costa
On Thu, 09 Aug 2007 23:44:07 +0200
Sven Arvidsson <[EMAIL PROTECTED]> wrote:

> Okay, what version of shared-mime-info have you installed?

% dlocate -s shared-mime-info  | grep Ver
Version: 0.22-1



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



Bug#436732: Segfaults when config file points to non-existant files

2007-08-09 Thread Hubert Chan

package ufraw
severity 436732 normal
thanks

On 2007-08-08 14:32:44 -0400 Simon Huggins <[EMAIL PROTECTED]> wrote:


I set up ufraw with a few preferred directories and so on.  Then I ran
out of space on /home/huggie and moved things elsewhere.


[...]


If I change the .ufrawrc to point to /data/Photos/blah where the file
now is it all works.

Ideally ufraw should error nicely in this case.


This is not grave.  Setting to normal severity.

I'll take a look at it when I get back from vacation in September.

--
Hubert Chan <[EMAIL PROTECTED]> -- Jabber: [EMAIL PROTECTED]
PGP/GnuPG key: 1024D/124B61FA http://www.uhoreg.ca/
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA


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



Bug#435853: pymsnt: utf-8 codec unable to decoded personal status message

2007-08-09 Thread Sam Morris
On Fri, 2007-08-03 at 18:43 +0200, Filippo Giunchedi wrote:
> [2007-08-03 18:15:00] INFO :: [EMAIL PROTECTED] ::  ::
> contactPersonalChanged :: msn.msnw.NotificationClient :: {'personal':
> 'In qualche caso, la distinzione tra un ammasso globulare ed uno
> galattico pu\xf2 non risultare del tutto immediata:', 'self':
> 'instance', 'userHandle': '[EMAIL PROTECTED]'}

Do you know what character that should have been? In latin1 (and
windows-1252), 0xf2 is ò (U+F2 LATIN SMALL LETTER O WITH GRAVE). Does
that character make sense in that sentence?

I wonder if anyone really knows whether the strings in the MSN protocol
are supposed to be utf-8 or windows-1252. It would be interesting to see
what the value of this string is when the personal message contains
other characters such as ‘ (U+2018 LEFT SINGLE QUOTATION MARK). If the
string is windows-1252 then that character would show up as '\x91'.

> this is probably because glue.py is not using the "errors" argument to
> string.decode() (see http://docs.python.org/lib/string-methods.html) which was
> introduced in 2.3.
> 
> I am not sure about the proper fix here, msnContact.personal.decode("utf-8",
> "ignore") does the trick, although "replace" looks saner. (I'm currently 
> using "replace")

Could you try msnContact.personal.decode ('windows-1252') and see if
that triggers any other errors?

In any case, it would certainly be sane to use 'replace'... or to fall
back to windows-1252 if utf-8 decoding fails. Perhaps the chardet module
could even be used.

> thanks,
> filippo

-- 
Sam Morris
http://robots.org.uk/

PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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


Bug#436964: Bug in 2.4 kernels with latest lvm2

2007-08-09 Thread Alex Deucher
On 8/9/07, Steve Langasek <[EMAIL PROTECTED]> wrote:
> reassign 436964 lvm2
> found 436964 2.02.06-4
> severity 436964 serious
> tags 436964 etch
> thanks
>
> On Thu, Aug 09, 2007 at 06:51:30PM -0400, Alex Deucher wrote:
> > On 8/9/07, Steve Langasek <[EMAIL PROTECTED]> wrote:
> > > On Thu, Aug 09, 2007 at 03:01:43PM -0400, Alex Deucher wrote:
> > > > Package: Kernel
> > > > Version: 2.4.27-3-sparc64-smp
>
> > > > I had a server go down during a power outage and upon rebooting, lvm
> > > > failed to work (2.4 kernel).  I could access the PVs, VGs, and LVs ok,
> > > > but I could not activate the VG.  Attempting to activate the VG
> > > > resulted in this error:
>
> > > Which version of lvm2 are you referring to as the "latest"?  This bug 
> > > report
> > > is not useful in its current state; either the bug lies in the lvm2 
> > > package
> > > in etch for depending on features not compatible with 2.4 kernels, or this
> > > is user error and not a bug at all because you're trying to use packages
> > > newer than etch with a 2.4 kernel which is not supported at all.
>
> > This box is still sarge.
>
> Except clearly it's not, because you have etch versions of lvm2,
> libdevmapper1.02, and dmsetup installed.

Sorry about that.  I didn't realize those where etch versions.  I've
never done a formal upgrade, so I'm not sure how they found their way
in. Oh, I know, one of the debian lvm devs on #lvm had me add:
deb http://snapshot.debian.net/archive pool devmapper
to my apt sources, that may be how they ended up in there.

>
> > lvm2 2.02.06-4
> > libdevmapper1.02 2:1.02.05-2.1 through 2:1.02.12-1
> > dmsetup 2:1.02.05-2.1 through 2:1.02.12-1
>
> > lvm2 used to work.  I've kept the box upgraded consistently, but it
> > hadn't been rebooted in quite a while,  When the power went out and
> > the box rebooted lvm stopped working.  presumably something lvm
> > related.
>
> Etch userspace packages are expected to be compatible with the 2.4 kernels
> in sarge.  In cases where they aren't this is a bug in etch, not in sarge;
> even if someone was inclined to do an ABI-changing, oldstable upload of the
> 2.4 kernel for a non-security bug, there's no guarantee at all that users
> will install that package before attempting an upgrade to etch, so the only
> reliable way to deal with the problem is on the etch side.
>

Ah, ok.  That makes sense.  Let me know if you need any more info from me.

Thanks,

Alex


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



Bug#343085: tagging 343085

2007-08-09 Thread Micha Lenk
Hi,

Marc Haber wrote:
> On Fri, Jul 13, 2007 at 08:00:57PM +0200, Micha Lenk wrote:
>> Marc Haber schrieb:
>> > about a year after we implemented some measures to avoid the entropy
>> > issue, the bug has not been reported again in a long time. This leads
>> > me to the conclusion that the issue does not occur any more.
>> 
>> The counter measure that I implemented as suggested was to install the
>> package gnutls-bin. Now, as the package gnutls-bin is only a Suggests:
>> dependency (not a Recommends:) - should I check whether the problems
>> occur with having package gnutls-bin removed again?
> 
> If you want to, please do so. I'd like to know how low-entropy systems
> behave now so that I can give better support to users.

Some days ago I upgraded to Debian etch and purged the package
gnutls-bin. Since then and up to now no entropy issues occured at my server.

Thank you for your support.

  Micha


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



Bug#436992: linux-image-2.6.18-4-amd64: sb600

2007-08-09 Thread Andreas John
Package: linux-image-2.6.18-4-amd64
Version: 2.6.18.dfsg.1-12
severity: medium

Booting this kernel on a machine equipped with 4GB+ RAM and sb600-based
controller, causes ahci to hang, as the hardware is not really 64 bit
capable.

Since 2.6.22 there exists a patch already, details can be found on LKML
("ahci: disable 64bit dma on sb600") Here is as web-archive link of the
thread http://www.mail-archive.com/[EMAIL PROTECTED]/msg06695.html

I would love to see that patch backported and appear in the
etch/proposed updates.

Meanwhile, there is a workaround: Set mem=4095M on the append line, but
you cannot use much more than 3.3GB of the 4GB then.

rgds,
Andreas




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



Bug#410817: I don't know how to patch the 2.6.18 kernel...

2007-08-09 Thread dann frazier
On Thu, Aug 09, 2007 at 01:36:34PM +0200, Guillaume Estival wrote:
> to make it works.
> I'm sure it's obvious to you but I really don't know how SCSI drivers is
> coded and how I can patch the C files to make it works (although I know
> quite well C language, kernel code is *far* beyond my knowledge)
> 
> Is someone kind enough to send a patch, or just a clue about what I need
> to modify (and where)? 

hey Guillaume,
 Take a look at this changeset:
   
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=3492b328834319c9503c0a34c50fb3f009556443
 
  Notice that it removes this entry from the megaraid_pci_tbl[]:

  {PCI_VENDOR_ID_AMI, PCI_DEVICE_ID_AMI_MEGARAID3,
  PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},

I believe that entry matches our cards and prevents the legacy driver
from picking them up. That works fine for me, but obviously not for
you. I'd suggest adding those lines back in and building a new
module/kernel. If you're not comfortable building your own kernel, let
me know.

Hopefully this will allow the legacy megaraid driver to discover your
controller/disk. Just make sure that you rmmod the new megaraid driver
before loading the legacy one.

Please let us know how that goes.

-- 
dann frazier



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



Bug#436990: Resolvconf doesn't deal gracefully with IPv4-only pdnsd

2007-08-09 Thread Juliusz Chroboczek
Package: resolvconf
Version: 1.37

I've recently mis-configured my DNS resolver (pdnsd) so that it didn't
grok IPv6.  The result was that when a script tried to configure pdnsd
with an IPv6 DNS server, resolvconf merely printed an error.

To reproduce, install pdnsd and make sure that there is no
``run_ipv4'' stanza in your pdnsd.conf.  Then run:

  echo 'nameserver 2001:660:3301:8061:290:27ff:feac:7980' | resolvconf -a eth0

Juliusz


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



Bug#436991: splix: Xerox Phaser 6110: when printing in 1200x600 the printout it stretched

2007-08-09 Thread Sam Morris
Package: splix
Version: 1.0.1-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

If I try to print at 1200x600 resolution, the image output to the page
is stretched horizontally to 200% of the original size. The image is
still anchored in the same point; anything off the right hand side of
the page is cropped off.

If I print at 600x600 this does not happen. I have not yet tried
1200x1200 to see whether the image is stretched vertically as well. :)

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

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

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

iD8DBQFGu6RDshl/216gEHgRAk2kAKDQBVcEPiMwcWhyEIWYx52ykC1niQCeKG4P
G2gh5e8J75zI32RSV959XSg=
=FJNw
-END PGP SIGNATURE-


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



Bug#355060: Nautilus shows wrong message about missing gnomevfs-2

2007-08-09 Thread Sven Arvidsson
> Hi i just reinstalled all my debian system in my new machine and when i
> tried to access samba from nautilus(network->windows network) nautilus
> show the follow message:
> 
> Couldn't display contents of "smb:///"
> 
> After some googling i just discovered that this erro appears when you
> dont have libgnomevfs2-bin installed or its dependencies...So i suggest
> that this message should be changed or even nautilus should show a
> suggestion about the installation of the libgnomevfs2/-bin

Hi,

Nautilus 2.18 seems to work fine with smb without the libgnomevfs2-bin
package, can this bug be closed?

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#436926: It does not handle packages use '~' for its version numbers

2007-08-09 Thread Pierre Habouzit
tag 436926 confirmed
severity 436926 important
thanks

>  apt-listchanges does not handle some pacakges that use '~' for
>  its version numbers. 

  w that's odd, but I confirm it does not works for me either :P
I'll look into it.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpG7sM8GISNX.pgp
Description: PGP signature


Bug#436964: Bug in 2.4 kernels with latest lvm2

2007-08-09 Thread Steve Langasek
reassign 436964 lvm2
found 436964 2.02.06-4
severity 436964 serious
tags 436964 etch
thanks

On Thu, Aug 09, 2007 at 06:51:30PM -0400, Alex Deucher wrote:
> On 8/9/07, Steve Langasek <[EMAIL PROTECTED]> wrote:
> > On Thu, Aug 09, 2007 at 03:01:43PM -0400, Alex Deucher wrote:
> > > Package: Kernel
> > > Version: 2.4.27-3-sparc64-smp

> > > I had a server go down during a power outage and upon rebooting, lvm
> > > failed to work (2.4 kernel).  I could access the PVs, VGs, and LVs ok,
> > > but I could not activate the VG.  Attempting to activate the VG
> > > resulted in this error:

> > Which version of lvm2 are you referring to as the "latest"?  This bug report
> > is not useful in its current state; either the bug lies in the lvm2 package
> > in etch for depending on features not compatible with 2.4 kernels, or this
> > is user error and not a bug at all because you're trying to use packages
> > newer than etch with a 2.4 kernel which is not supported at all.

> This box is still sarge.

Except clearly it's not, because you have etch versions of lvm2,
libdevmapper1.02, and dmsetup installed.

> lvm2 2.02.06-4
> libdevmapper1.02 2:1.02.05-2.1 through 2:1.02.12-1
> dmsetup 2:1.02.05-2.1 through 2:1.02.12-1

> lvm2 used to work.  I've kept the box upgraded consistently, but it
> hadn't been rebooted in quite a while,  When the power went out and
> the box rebooted lvm stopped working.  presumably something lvm
> related.

Etch userspace packages are expected to be compatible with the 2.4 kernels
in sarge.  In cases where they aren't this is a bug in etch, not in sarge;
even if someone was inclined to do an ABI-changing, oldstable upload of the
2.4 kernel for a non-security bug, there's no guarantee at all that users
will install that package before attempting an upgrade to etch, so the only
reliable way to deal with the problem is on the etch side.

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


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



Bug#363433: kdesvn: crashes when starting to drag

2007-08-09 Thread Michael Biebl
Andreas Pakulat schrieb:
> reopen 363433
> thanks
> 
> On 10.08.07 00:17:33, Michael Biebl wrote:
>> Andreas Pakulat schrieb:
>>> forwarded 363433 http://www.alwins-world.de/programs/mantis/view.php?id=81
>>> thanks
>>>
>>> On 12.05.06 13:06:13, Andreas Pakulat wrote:
 On 02.05.06 21:06:45, Andreas Pakulat wrote:
> I built a debug version of that 0.8.3-1 and the backtrace is attached,
> it still segfaults. Looking at the loc that are mentioned in the
> backtrace I really don't see why it crashes, but maybe upstream knows.
> Should I open a bugreport there or will you forward this bug?
>>> As Michael seems to be busy currently, I forwarded this upstream myself.
>>> See http://www.alwins-world.de/programs/mantis/view.php?id=81
>> Fixed, according to upstream.
>> Please test the latest release (0.13.0) and if it's not fixed for you,
>> reopen the bug report.
> 
> Tested and I can still crash kdesvn with the exact same backtrace, so
> I'm re-opening.
> 
> Already replied upstream, I suspect that maybe upstream closed that one
> accidentally...

Damn, you are fast. You replied even before I made the 0.13.0 upload ;-)

I can only assume that you already downloaded and compiled 0.13.0 yourself.

Cheers,
Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#435972: powertop: useless on non-Linux architectures

2007-08-09 Thread Krzysztof Burghardt
Hello,

IMO its useful on any Linux that supports CONFIG_TIMER_STATS
(amd64 and i386 was tested by me). Main functionality of powertop
is based on this. Even is no ACPI is available it still can find which
processes wakes-up too often.

If ACPI is available powertop can show C-state residency (this works
for me only on i366 and does not work on amd64), P-states residency
and battery condition.

Ps: linux-any seems not to exist in cdbs. Works for xawtv package.
For example radio and v4l-conf is build only for linux-any.

Regards,
-- 
Krzysztof Burghardt <[EMAIL PROTECTED]>
http://www.burghardt.pl/


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



Bug#436989: autom4te.cache included in Debian's pdnsd source

2007-08-09 Thread Juliusz Chroboczek
Package: pdnsd
Version: 1.2.6-par~pre2-6

  $ tar tzf pdnsd_1.2.6-par~pre2.orig.tar.gz  | grep autom4te
  pdnsd-1.2.6/autom4te.cache/
  pdnsd-1.2.6/autom4te.cache/requests
  pdnsd-1.2.6/autom4te.cache/output.0
  pdnsd-1.2.6/autom4te.cache/traces.0
  pdnsd-1.2.6/autom4te.cache/output.1
  pdnsd-1.2.6/autom4te.cache/traces.1

I've been unable to get it to compile before I removed the
autom4te.cache directory.

Juliusz


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



Bug#435005: gnome-control-center: gnome-background-properties crashes upon start

2007-08-09 Thread Sven Arvidsson
On Sat, 2007-07-28 at 13:29 +0200, Ondrej Valek wrote:
> When gnome-background-properties is started, it shows empty dialog window and 
>  crashes immediately (and spawns up bug 
> buddy). I've tried to change gconf value 
> /desktop/gnome/background/draw_background with no effect. Even deleting 
> ~/.gnome2/backgrounds.xml had no effect.
> 
> This is what it says in the console, before it dies:
> (gnome-background-properties:3793): background-properties-WARNING **: Unknown 
> Tag: comment

Hi,

Please try to get a backtrace of the crash;
http://wiki.debian.org/?HowToGetABacktrace

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#436988: IPv6 broken in pdnsd

2007-08-09 Thread Juliusz Chroboczek
Package: pdnsd
Version: 1.2.6-par~pre2-6
Severity: important
Tags: patch

Hi,

IPv6 support has been broken in recent releases.  The attached fixes
the problem.

Juliusz

--- pdnsd-1.2.6-par~pre2/src/dns_answer.c   2007-07-13 21:44:22.0 
+0200
+++ pdnsd-1.2.6-par~pre2-jch/src/dns_answer.c   2007-08-10 01:01:30.0 
+0200
@@ -1324,7 +1324,7 @@
 
 # ifdef ENABLE_IPV6
if (!run_ipv4) {
-   if (setsockopt(sock,SOL_IPV6,IPV6_PKTINFO,&so,sizeof(so))!=0) {
+   if 
(setsockopt(sock,SOL_IPV6,IPV6_RECVPKTINFO,&so,sizeof(so))!=0) {
log_error("Could not set options on udp socket: 
%s",strerror(errno));
close(sock);
return -1;


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



Bug#436833: pocketpc-cab: Creating shortcuts in Programs on PocketPC

2007-08-09 Thread Shaun Jackman
It is possible to create a link manually by creating a .lnk file in a
text editor, and adding that file to the .cab. The file format of the
.lnk file is dead simple. Here's an example:

18#\windows\soltr.htm

The number 18 is the number of characters following the sharp sign
(#). There should be no end-of-line carriage return or line feed. If
you search Google for `PocketPC lnk file format' you'll find more
examples.

Cheers,
Shaun

On 8/9/07, Peter Soos <[EMAIL PROTECTED]> wrote:
> Package: pocketpc-cab
> Version: 1.0.1-2
> Severity: wishlist
>
> It would be great to add ability to create cabs wich add shotcuts in Programs
> menu/window on PocketPC (to /Windows/Start\ Menu/Programs).


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



Bug#434833: Spontaneous reboots on suspend-to-RAM with new Xorg "intel" driver

2007-08-09 Thread Tim Hull
Actually, I don't think it happens at all - at least I can't reproduce it as
of now without composite.  So this seems to be an issue between composite
(and/or additional settings needed to get it working) and the new
mode-setting driver (it didn't happen w/i810+915resolution).

On 8/9/07, Brice Goglin <[EMAIL PROTECTED]> wrote:
>
> Tim Hull wrote:
> > I must note that I do have the "composite" extension enabled.  If I
> > disable composite, I see these issues occur much less frequetly.
> >
>
> Less frequency or not at all?
>
> Brice
>
>


Bug#421320: Patch for #421320: Bad rendering of line-drawing characters since upgrade to 2.18

2007-08-09 Thread Sven Arvidsson
On Thu, 2007-07-26 at 10:34 -0700, Michael Vrable wrote:
> The attached patch (against vte_0.16.6-1) fixes this problem for me.  It 
> reverts to the old behavior for line-drawing characters and shaded/solid 
> rectangles (have the terminal draw the characters itself rather than 
> using characters from the font), but shouldn't (I think) change the 
> behavior for any other characters.

Hi,

Please attach the patch to the upstream bug for approval;
http://bugzilla.gnome.org/show_bug.cgi?id=435000

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#436964: Bug in 2.4 kernels with latest lvm2

2007-08-09 Thread Alex Deucher
On 8/9/07, Steve Langasek <[EMAIL PROTECTED]> wrote:
> On Thu, Aug 09, 2007 at 03:01:43PM -0400, Alex Deucher wrote:
> > Package: Kernel
> > Version: 2.4.27-3-sparc64-smp
>
> > I had a server go down during a power outage and upon rebooting, lvm
> > failed to work (2.4 kernel).  I could access the PVs, VGs, and LVs ok,
> > but I could not activate the VG.  Attempting to activate the VG
> > resulted in this error:
>
> Which version of lvm2 are you referring to as the "latest"?  This bug report
> is not useful in its current state; either the bug lies in the lvm2 package
> in etch for depending on features not compatible with 2.4 kernels, or this
> is user error and not a bug at all because you're trying to use packages
> newer than etch with a 2.4 kernel which is not supported at all.

This box is still sarge.  I just thought I bring it to your attention.

lvm2 2.02.06-4
libdevmapper1.02 2:1.02.05-2.1 through 2:1.02.12-1
dmsetup 2:1.02.05-2.1 through 2:1.02.12-1

lvm2 used to work.  I've kept the box upgraded consistently, but it
hadn't been rebooted in quite a while,  When the power went out and
the box rebooted lvm stopped working.  presumably something lvm
related.

Alex


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



Bug#436964: Bug in 2.4 kernels with latest lvm2

2007-08-09 Thread Steve Langasek
On Thu, Aug 09, 2007 at 03:01:43PM -0400, Alex Deucher wrote:
> Package: Kernel
> Version: 2.4.27-3-sparc64-smp

> I had a server go down during a power outage and upon rebooting, lvm
> failed to work (2.4 kernel).  I could access the PVs, VGs, and LVs ok,
> but I could not activate the VG.  Attempting to activate the VG
> resulted in this error:

Which version of lvm2 are you referring to as the "latest"?  This bug report
is not useful in its current state; either the bug lies in the lvm2 package
in etch for depending on features not compatible with 2.4 kernels, or this
is user error and not a bug at all because you're trying to use packages
newer than etch with a 2.4 kernel which is not supported at all.

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


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



Bug#428335: console output

2007-08-09 Thread Sven Arvidsson
On Thu, 2007-07-05 at 00:10 +0200, Thomas Jollans wrote:
> After playing around with the NVIDIA X settings a bit, I have found the 
> problem: gnome-background-settings cannot handle two screens of non-equal 
> height (how did that happen ?) My default set-up uses a 1280x1024 and a 
> 1680x1050 screen next to each other; if I change it to twice 1280x1024 or 
> 1280x1024 & 1600x1024, it works.

Hi again,

I have forwarded your bug report to the upstream developers;
http://bugzilla.gnome.org/show_bug.cgi?id=465207 it would be great if
you could subscribe to the bug and provide them with any necessary
information.

You will probably be asked to provide a backtrace, instructions are
available here; http://wiki.debian.org/?HowToGetABacktrace

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#436713: closed by Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]> (Bug#436713: fixed in bastille 1:3.0.9-5)

2007-08-09 Thread Javier Fernández-Sanguino Peña
On Thu, Aug 09, 2007 at 11:06:00PM +0200, Rainer Zocholl wrote:
> Thanks for fast response and reaction!
> (And thanks for supporting the bastille tool!)

You're welcome. It was quite an easy fix I should have spotted and introduced
a lot of time ago. Unfortunately I don't support the Bastille tool as much as
I would like (fully porting the features of Bastile 3.x is still on my TODO).

Hope the new version works for you better, please report any other bug you
find in it.

Regards

Javier


signature.asc
Description: Digital signature


Bug#436987: ITP: blitz -- kde/qt image filter library

2007-08-09 Thread Sune Vuorela
Package: wnpp
Severity: wishlist
Owner: Sune Vuorela <[EMAIL PROTECTED]>


* Package name: blitz
  Version : 0.0.3
  Upstream Author : Daniel Duley <[EMAIL PROTECTED]> (aka mosfet)
* URL : http://sourceforge.net/projects/qimageblitz/ - will
  probably move to kde.org very soon.
* License : BSD-ish
  Programming Lang: C++
  Description : kde/qt image filter library

Blitz is a graphical effect and filter library for KDE4.0 that contains
many improvements over KDE 3.x's kdefx library including bugfixes,
memory and speed improvements, and MMX/SSE support.

This will be needed by some parts of kde4 and packaged in the kde/qt
team.

/Sune

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

Kernel: Linux 2.6.20-1-vserver-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash


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



Bug#436172: libxine1 from testing and unstable can't decode .wmv correctly

2007-08-09 Thread Amir Tabatabaei
On Mon, 2007-08-06 at 07:35 +0200, Reinhard Tartler wrote:

> I don't know if this has already been fixed upstream, if you have
> time, please try to find out (e.g. by compiling an fresh from svn copy
> of mplayer with internal ffmpeg).

I compiled mplayer from SVN using the traditional way and could playback
the movies without any problem.

IMO it was a wrong decision to lower the severity. You are the package
maintainer, so please take care of it and increase the severity again.

Regards,
Amir



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



Bug#408745: xulrunner: FTBFS on hurd-i386

2007-08-09 Thread Samuel Thibault
Hi,

Not sure whether you actually wanted a reply.

Mike Hommey, le Sun 05 Aug 2007 08:11:59 +0200, a écrit :
> On Sun, Aug 05, 2007 at 03:08:56AM +0200, Samuel Thibault <[EMAIL PROTECTED]> 
> wrote:
> > It looks like I forgot to answer that mail:
> > 
> > Mike Hommey, le Sun 08 Apr 2007 12:56:09 +0200, a écrit :
> > > Now that etch is released, I took a look again at your patch, and don't
> > > really understand why your fix is different for different parts of the
> > > code, why is not defining MAXPATHLEN and PATH_MAX to 1024 everywhere
> > > enough ? In which case, defining them in the appropriate header would
> > > make it work with only one patch...
> > 
> > Well, why not, but it's a bit sad that there is such hard limit on the
> > lenght of filenames while the code could be made lengh-unbound.
> 
> Well, half of the patch was about adding macros for MAXPATHLEN and
> PATH_MAX...

Well, then fine with globally setting it for the whole xulrunner.

Samuel



Bug#436980: fceu: New version breaks aspect ratio on wide screens

2007-08-09 Thread Joe Nahmias
Hi Adam,

On Thu, Aug 09, 2007 at 04:34:06PM -0400, Adam C. Emerson wrote:
> After upgrading 0.98.12-2, fceu no longer uses the proper aspect ratio.
> 1024x768 mode is stretched horizontally.  Setting the package to the
> 'native' resolution, 1680x1050 causes the display to be heavily
> compressed vertically and still stretched all the way horizontally.

I presume that you're using full screen mode with a screen that does not
have 3:4 ratio.  Try disabling opengl on the command-line.  For
example:

   fceu -opengl 0 SuperMario.nes

Let me know if that helps.

Thanks,
--Joe


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



Bug#418596: nfs-common: Can not nfs-mount using second interface during boot

2007-08-09 Thread Steinar H. Gunderson
On Sat, Jul 28, 2007 at 12:32:28PM +0200, Steinar H. Gunderson wrote:
>> I have just returned from vacation and have quite a few things to catch
>> up with here. But I will take a look at it. I do hope that nothing else
>> breaks (dependencies) as I am running stable here.
> I can't guarantee that, sorry. There have been quite a lot of changes; I'd
> try to reproduce it on an unstable machine if I were you.

Any progress on this? I'm starting to wonder if the best thing is just to
close it; there is no value in keeping a bug open if we do not really know if
it's fixed or not.

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Bug#431812: /sbin/discover: radio_maestro is unneeded with ES1978 Maestro 2E

2007-08-09 Thread Petter Reinholdtsen

notfound 431812 1.7.21
reassign 431812 discover-data
found 431812 2.2007.05.11
thanks

[Joseph Neal]
> It's been loading this module as long as I can remember.  I'm just
> now getting around to reporting it.

I do not understand this bug report.  According to the information
returned by discover in your bug report, this card maps to the
snd-es1968 kernel module, and not radio_maestro:

  snd-es1968:::ESS Technology ES1978 Maestro 2E

Are you sure discover is the reason why the radio_maestro kernel
module is loaded during boot?

This is the entry in the master database:

 

  
maestro
  
  

snd-es1968
  
  2006-08-13
  [EMAIL PROTECTED]

  

As you can see, two kernel modules are registered, maestro for kernels
before 2.6, and snd-es1968 for 2.6 kernels.  Is this wrong?

Happy hacking,
-- 
Petter Reinholdtsen


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



Bug#435132: [tex-live] Bug#435132: texlive-metapost: Please include latest latexmp version

2007-08-09 Thread Karl Berry
Thank you very much - his address is still the one above?

That is where I wrote, yes.  No answer yet.


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



Bug#424923: Debian bug followup (Re: bug 424923)

2007-08-09 Thread Sven Arvidsson
On Thu, 2007-08-09 at 01:24 -0400, A. Costa wrote:
> On Thu, 09 Aug 2007 01:31:59 +0200
> Sven Arvidsson <[EMAIL PROTECTED]> wrote:
> 
> > Does this bug still happen with nautilus from testing or unstable,
> > 2.18.3?
> 
>   # check my version...
>   % dlocate -s nautilus | grep Ver
>   Version: 2.18.1-3
> 
> Yes, this bug still happens.

Okay, what version of shared-mime-info have you installed?

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#436962: totem-gstreamer: Program committed suicide

2007-08-09 Thread Sven Arvidsson
On Thu, 2007-08-09 at 19:54 +0100, Rafal Czlonka wrote:
> I've been watching a film on DVD, being used to MPlayer I pressed 'o'
> couple of times to check the time, after realising my mistake I pressed
> 'f' couple of times to take the program out of full-screen, then 'open
> file' window appeared which I closed by pressing 'cancel', after all
> that the program simply crashed.

Hi,

I can't reproduce this, and I get no matches upstream on the backtrace.
If you can reproduce the crash, please try to get a better trace by
building a debug enabled totem;
http://wiki.debian.org/?HowToGetABacktrace

You will most likely also need gnome-dbg (or at least the gtk and
gstreamer dbg packages).

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#436986: sound-juicer: Profiles was not installed

2007-08-09 Thread Marcus Lundblad
Package: sound-juicer
Version: 2.16.4-1
Severity: grave
Justification: renders package unusable

The first time I ran SoundJuicer on this machine, which was freshly installed
with Lenny in late June, it pops up a dialog saying "The current sound profile
is not available in your installation".
There is two options, "Cancel" and "Change profile". If I do "Change profile"
I get the settings window and the format drop-down is empty.
On my other machine (laptop) which I installed when Etch was in testing in late
February it worked out of the box. I sucessfully ripped to Flac.
Is there some Gstreamer-related stuff missing, perhaps?

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

Kernel: Linux 2.6.18-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sound-juicer depends on:
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  gstreamer0.10-gnomevfs  0.10.13-2GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-b 0.10.13-2GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-g 0.10.6-1 GStreamer plugins from the "good" 
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2-20070712-1 GCC support library
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libglade2-0 1:2.6.1-1library to load .glade files at ru
ii  libglib2.0-02.12.13-1The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome-media0 2.18.0-2+b1  runtime libraries for the GNOME me
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.1-2   GNOME Virtual File System (runtime
ii  libgstreamer0.10-0  0.10.13-2Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libhal1 0.5.9.1-2Hardware Abstraction Layer - share
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libmusicbrainz4c2a  2.1.5-1  Second generation incarnation of t
ii  libnautilus-burn4   2.18.2-1 Nautilus Burn Library - runtime ve
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.16.5-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2-20070712-1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages sound-juicer recommends:
ii  eject 2.1.5-2ejects CDs and operates CD-Changer

-- no debconf information


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



Bug#436985: python-mutagen

2007-08-09 Thread Vitaliyi
Package: python-mutagen
Version: 1.11-1

It is trying to represent tags in UTF8, as far as i understand, and fails to
produce the correct result if it is not a UTF8.

Suggestion:
Probably python-mutagen can use this : http://chardet.feedparser.org/ to
autodetect the encoding or return text from tags in the original form.


Bug#436807: no fullscreen with openoffice.org

2007-08-09 Thread Dmitry E. Oboukhov
tags 436807 - moreinfo unreproducible
tags 436807 patch pending fixed-in-experimental
thanks


Thank You very much for You information :)

On 22:24 Thu 09 Aug , Cornell Gonschior wrote:
>> fluxbox config,
CG> http://nopaste.debianforum.de/6399

>> method of installation,
CG> aptitude install fluxbox

>> depends versions
CG> fluxbox1.0~rc3-3
CG> menu   2.1.35
CG> libc6  2.6-2
CG> libfontconfig1 2.4.2-1.2
CG> libgcc11:4.2-20070712-1
CG> libice62:1.0.3-3
CG> libsm6 2:1.0.3-1+b1
CG> libstdc++6 4.2-20070712-1
CG> libx11-6   2:1.0.3-7
CG> libxext6   1:1.0.3-2
CG> libxft22.1.12-2
CG> libxinerama1   1:1.0.2-1
CG> libxpm41:3.5.6-3
CG> libxrandr2 2:1.2.1-1
CG> libxrender11:0.9.2-1
#! /bin/sh /usr/share/dpatch/dpatch-run
## 80_fix_full_screen.dpatch by  <[EMAIL PROTECTED]>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fix bug: no full screen with openoffice

@DPATCH@

Index: Window.cc
===
--- fluxbox-1.0~rc3/src/Window.cc
+++ fluxbox-1.0~rc3/src/Window.cc
@@ -1571,9 +1571,18 @@
 // clear decorations
 setDecorationMask(0);
 
+// dont call Window::moveResize here, it might ignore the 
+// resize if win state is not resizable; 
+// instead we call frame resize directly
+// (see tests/fullscreentest.cc)
+
 // be xinerama aware
-moveResize(screen().getHeadX(head), screen().getHeadY(head),
-   screen().getHeadWidth(head), screen().getHeadHeight(head));
+frame().moveResize(screen().getHeadX(head), screen().getHeadY(head),
+   screen().getHeadWidth(head), 
screen().getHeadHeight(head));
+sendConfigureNotify();
+m_last_resize_x = frame().x();
+m_last_resize_y = frame().y();
+
 moveToLayer(::Layer::ABOVE_DOCK);
 
 fullscreen = true;


signature.asc
Description: Digital signature


Bug#436873: util-linux: hwclock init script reports hwclock updated even if it isn't

2007-08-09 Thread Frans Pop
On Thursday 09 August 2007, you wrote:
> Applied for the next upload.

Thx Lamont.

> Should it do something similar when reading the clock, do you think?

Not needed because of chrony as that is started way later, but in general it
does seem like a good idea. In that case however I would suggest to print an 
error in case of a failure as it is likely to be a lot more problematic if 
the system clock cannot be _set_. I would expect hwclock to be disabled 
completely for systems that really do not support it.

Maybe:
# Set and announce the local time.
if /sbin/hwclock --hctosys $GMT $HWCLOCKPARS $BADYEAR; then
verbose_log_action_msg "System Clock set. Local time: `date $UTC`"
else
log_failure_msg "Unable to set System Clock. Local time: `date $UTC`"
fi

Or maybe use log_warning_msg instead.


BTW, please drop the trailing period in the following statements as 
log_action_msg already adds one by default, so you currently print two:
   log_action_msg "Setting the system clock."
   log_action_msg "Saving the system clock."

Cheers,
FJP


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


Bug#420840: xserver-xorg-video-intel: custom resolution set with 915resolution doesn't work anymore, Xorg falls back to 1280x1024

2007-08-09 Thread Tino Keitel
On Thu, Aug 09, 2007 at 23:03:49 +0200, Brice Goglin wrote:

[...]

> Does it say anything about Option PreferredMode? (hint: sending the log
> with Option "ModeDebug" "yes" might be good)

Here is the log withoug ModeDebug.

Regards,
Tino


Xorg.0.log.old
Description: application/trash


Bug#436713: closed by Javier Fernandez-Sanguino Pen~a <[EMAIL PROTECTED]> (Bug#436713: fixed in bastille 1:3.0.9-5)

2007-08-09 Thread Rainer Zocholl
[EMAIL PROTECTED](Debian Bug Tracking System)  09.08.07 18:54

>It has been closed by Javier Fernandez-Sanguino Pen~a
><[EMAIL PROTECTED]>.

>Source: bastille
>Source-Version: 1:3.0.9-5

>We believe that the bug you reported is fixed in the latest version of
>bastille, which is due to be installed in the Debian FTP archive:

>bastille_3.0.9-5.diff.gz
>  to pool/main/b/bastille/bastille_3.0.9-5.diff.gz


Thanks for fast response and reaction!
(And thanks for supporting the bastille tool!)

Rainer



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



Bug#436746: [Pkg-alsa-devel] Bug#436746: alsa-utils: amixer syntax errors during boot

2007-08-09 Thread Elimar Riesebieter
Bug reports of anonymous people are not accepted.
Closed,

Elimar

On Thu, 09 Aug 2007 the mental interface of
Desktop told:

> Package: alsa-utils
> Version: 1.0.14-1
> Severity: grave
> Justification: renders package unusable
> 
> During boot, there is a flood of amixer syntax errors. The sound card
> doesn't work (it used to, in unstable about half a year ago).
> 
> 
> -- System Information:
> Debian Release: lenny/sid
>   APT prefers unstable
>   APT policy: (990, 'unstable')
> Architecture: i386 (i686)
> 
> Kernel: Linux 2.6.22-1-686 (SMP w/1 CPU core)
> Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
> Shell: /bin/sh linked to /bin/bash
> 
> Versions of packages alsa-utils depends on:
> ii  dialog1.1-20070604-1 Displays user-friendly dialog 
> boxe
> ii  libasound21.0.14a-2  ALSA library
> ii  libc6 2.6.1-1GNU C Library: Shared libraries
> ii  libncurses5   5.6+20070716-1 Shared libraries for terminal 
> hand
> ii  linux-sound-base  1.0.14-1   base package for ALSA and OSS 
> soun
> ii  lsb-base  3.1-24 Linux Standard Base 3.1 init 
> scrip
> ii  module-init-tools 3.3-pre11-4tools for managing Linux kernel 
> mo
> ii  pciutils  1:2.2.4-1  Linux PCI Utilities
> ii  python2.4.4-6An interactive high-level 
> object-o
> ii  whiptail  0.52.2-10  Displays user-friendly dialog 
> boxe
> 
> Versions of packages alsa-utils recommends:
> ii  alsa-base 1.0.14-1   ALSA driver configuration files
> 
> -- no debconf information
> 
> 
> ___
> Pkg-alsa-devel mailing list
> [EMAIL PROTECTED]
> http://lists.alioth.debian.org/mailman/listinfo/pkg-alsa-devel
> 

-- 
  Numeric stability is probably not all that 
  important when you're guessing;-)


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



  1   2   3   4   >