Bug#1053380: Reassign

2023-10-22 Thread Michel Briand
Control: reassign 1053380 
nvidia-graphics-drivers-legacy-390xx,qtbase-opensource-src



Bug#1053380: Reassign

2023-10-11 Thread Michel Briand
Control: reassign 1053380
nvidia-graphics-drivers-legacy-390xx,qtbase-opensource-src



Bug#1053380: qgit: Segmentation fault (during ld binding of libGL.so.1)

2023-10-08 Thread Michel Briand
Andrey Rakhmatullin  - Tue, 3 Oct 2023 10:30:29 +0200
>Sorry, do you mean you think it's a bug in qgit?
>If so, so far it doesn't look actionable unfortunately.

I don't think so. I've wrongly assigned this bug to qgit.

After having upgraded Debian, some Qt apps crash, only Qt apps (AFAIK).

This bug should be reassigned.



Bug#1053380: qgit: Segmentation fault (during ld binding of libGL.so.1)

2023-10-02 Thread Michel Briand
Package: qgit
Version: 2.10-2
Severity: important

Dear Maintainer,

after upgrade from debian 11 to debian 12, some qt application will crash 
(Segmentation fault).

qgit crashes, but also qt5ct, 2048-qt, qbittorrent.

After searching the web, I've found [1] and [2] that point me to an idea, a 
possible digging.

[1] https://github.com/FrodeSolheim/fs-uae/issues/31
[2] http://fs-uae.net/2015/01/27/fs-uae-2-4-3-released

Many thanks to NVIDIA which actually tracked down the bug in FS-UAE! The 
problem was an unused function (mprotected),
a legacy from older WinUAE code, which was exported and caused the 
NVIDIA drivers to load this function instead of the
correct one from libc. I’m quite impressed that they contacted me with 
information about the bug, and I think this shows
how serious they are about their Linux drivers 

My idea was related to the use of libGL by the qt libraries.

And, finally, I've found that article [3] that tell about the possibility of 
testing my idea.

[3] 
https://forum.qt.io/topic/90786/turn-off-opengl-optimization-via-qt-environment-variable

Here is the behavior I observed and the digging into the problem.
I've found that the last symbol binded was sigaddset, so I searched for it. 
Maybe I'd have to search for the last lib?

Here is what I've done:


$ qgit
Segmentation fault

$ LD_DEBUG=bindings qgit >/tmp/test_sigv 2>&1
Segmentation fault

$ grep sigaddset /tmp/test_sigv
 60212: binding file /lib/x86_64-linux-gnu/libglib-2.0.so.0 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libsystemd.so.0 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libdbus-1.so.3 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libGL.so.1 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]

$ tail -10 /tmp/test_sigv
 60212: binding file /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 [0] to 
/lib/x86_64-linux-gnu/libQt5Core.so.5 [0]: normal symbol 
`_ZN6QTimerC1EP7QObject' [Qt_5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 [0] to 
/lib/x86_64-linux-gnu/libQt5Core.so.5 [0]: normal symbol 
`_ZN7QThreadC2EP7QObject' [Qt_5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 [0] to 
/lib/x86_64-linux-gnu/libQt5Core.so.5 [0]: normal symbol 
`_ZN14QWaitConditionC1Ev' [Qt_5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 [0] to 
/lib/x86_64-linux-gnu/libQt5Core.so.5 [0]: normal symbol 
`_Z15qAddPostRoutinePFvvE' [Qt_5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 [0] to 
/lib/x86_64-linux-gnu/libQt5Core.so.5 [0]: normal symbol 
`_ZN7QThread5startENS_8PriorityE' [Qt_5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5Core.so.5 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `pthread_attr_init' 
[GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5Core.so.5 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol 
`pthread_attr_setdetachstate' [GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libQt5Core.so.5 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol 
`pthread_attr_setinheritsched' [GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libGL.so.1 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `__libc_current_sigrtmin' 
[GLIBC_2.2.5]
 60212: binding file /lib/x86_64-linux-gnu/libGL.so.1 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]

$ export __GL_WRITE_TEXT_SECTION=0

$ LD_DEBUG=bindings qgit >/tmp/test_ok 2>&1

$ grep sigaddset /tmp/test_ok
 58885: binding file /lib/x86_64-linux-gnu/libglib-2.0.so.0 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]
 58885: binding file /lib/x86_64-linux-gnu/libsystemd.so.0 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]
 58885: binding file /lib/x86_64-linux-gnu/libdbus-1.so.3 [0] to 
/lib/x86_64-linux-gnu/libc.so.6 [0]: normal symbol `sigaddset' [GLIBC_2.2.5]


Best regards,
Michel


-- System Information:
Debian Release: 12.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 'stable-security')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.1.0-12-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages qgit depends on:
ii  git 1:2.39.2-1.1
ii  libc6   2.36-9+deb12u1
ii  libgcc-s1   12.2.0-14
ii  libqt5core5a 

Bug#1011985: claws-mail: [backport request] for compatibility with gmail

2022-06-11 Thread Michel Briand
Package: claws-mail
Version: 3.17.8-1+b1
Followup-For: Bug #1011985

Dear Maintainer,

please package version 3.19.0 into backports, it contains the necessary support 
for OAuth2 authentication (required by GMail and MS Exchange).

Best regards,


-- System Information:
Debian Release: 11.3
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'stable-security'), (500, 'proposed-updates'), (200, 'testing'), (100, 
'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.16.0-0.bpo.4-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE=fr
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages claws-mail depends on:
ii  libc62.31-13+deb11u3
ii  libcairo21.16.0-5
ii  libcompfaceg11:1.5.2-5+b2
ii  libenchant-2-2   2.2.15-1
ii  libetpan20   1.9.4-3
ii  libgdk-pixbuf2.0-0   2.40.2-2
ii  libglib2.0-0 2.66.8-1
ii  libgnutls30  3.7.1-5
ii  libgtk2.0-0  2.24.33-2
ii  libice6  2:1.0.10-1
ii  libldap-2.4-22.4.59+dfsg-1~bpo11+1
ii  libnettle8   3.7.3-1
ii  libpango-1.0-0   1.46.2-3
ii  libpangocairo-1.0-0  1.46.2-3
ii  librsvg2-2   2.50.3+dfsg-1
ii  libsm6   2:1.2.3-1
ii  xdg-utils1.1.3-4.1

Versions of packages claws-mail recommends:
ii  aspell-en [aspell-dictionary]  2018.04.16-0-1
ii  aspell-fr [aspell-dictionary]  0.50-3-8.1
ii  aspell-it [aspell-dictionary]  2.4-20070901-0-3.1
ii  claws-mail-i18n3.17.8-1
ii  xfonts-100dpi  1:1.0.4+nmu1.1
ii  xfonts-75dpi   1:1.0.4+nmu1.1

Versions of packages claws-mail suggests:
ii  chromium [www-browser]99.0.4844.74-1~deb11u1
ii  claws-mail-doc3.17.8-1
ii  claws-mail-tools  3.17.8-1
ii  dillo [www-browser]   3.0.5-7
ii  firefox-esr [www-browser] 78.15.0esr-1~deb11u1
ii  gedit 3.38.1-1
ii  google-chrome-unstable [www-browser]  104.0.5110.0-1
ii  konqueror [www-browser]   4:20.12.0-4
ii  lynx [www-browser]2.9.0dev.6-3~deb11u1
ii  mousepad  0.5.2-1
ii  sugar-browse-activity [www-browser]   207-1
ii  w3m [www-browser] 0.5.3+git20210102-6

-- debconf-show failed



Bug#988563: debian-installer: fresh bullseye install report (pxe boot ; lenovo thinkpad e15)

2021-05-15 Thread Michel Briand
Package: debian-installer
Version: 20190702+deb10u9
Severity: normal
Tags: l10n

Dear Maintainer,

I installed my new Lenovo Thinkpad E15 with Debian Bullseye.

I've setup my PXE + TFTP server with latest netboot.tar.gz.

I've installed Debian with the following options:
- France language, french keyboard
- assisted partman full disk with encryption
- bullseye distribution
- unchecked "debian desktop"
- checked plasma, xfce and lxqt desktops

Booting my new Debian system, initramfs can not load the (crypt) volume group.
Same problem as in #935973.

I solved this issue:
- booting on PXE
- choosing rescue
- chroot into system
- apt install cryptsetup-initramfs
  (this last operation recreates the initrd file)

My new system lacks the french localization for sddm and kde (even if I've 
choosen
France and Plasma in Debian installer).

I installed manually:
- task-french-desktop
- task-french-kde-desktop

When connecting to my bluetooth speaker, the pairing did work but the 
connection failed.
Pulseaudio was lacking the module for bluetooth.

apt install pulseaudio-module-bluetooth.

I think all those packages should be sensible defaults.

THANK YOU AND CONGRATULATIONS FOR THIS NEW DEBIAN RELEASE :))

Best regards

PS: I use only Debian on all my computers since 2005.

-- System Information:
Debian Release: 10.9
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (200, 'testing'), (100, 
'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.0-0.bpo.5-amd64 (SMP w/4 CPU cores)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE=fr 
(charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

-- no debconf information



Bug#488239: readpst crashes when it encounters unknown ref type

2019-12-15 Thread Michel Briand


Paul Wise  - Sun, 15 Dec 2019 17:21:00 +0800

>Control: tags -1 moreinfo
>
>On Fri, 27 Jun 2008 12:04:17 +0200 wrote:
>
>> Some pst are processed by readpst without error.
>> 
>> But, repeatedly with some pst, it crashes with this message:  
>
>I know it was a long time ago, but do you have any pst files that still
>crash readpst and that you could share on the bug report?
>

Hello,
thanks for your message.

I don't use readpst anymore.

Cheers,
Michel



Bug#891351: scilab segfaults at startup

2018-02-24 Thread Michel Briand
Package: scilab
Version: 5.5.2-4
Severity: grave
Justification: renders package unusable

Dear Maintainer,

scilab crashes at startup:

$ scilab
Segmentation fault

Packages installed are:

scilab 5.5.2-4
scilab-ann 0.4.2.4-1
scilab-celestlab 3.0.0-1-2
scilab-cli 5.5.2-4
scilab-data 5.5.2-4
scilab-doc 5.5.2-4
scilab-full-bin 5.5.2-4+b1
scilab-include 5.5.2-4+b1
scilab-minimal-bin 5.5.2-4+b1
scilab-plotlib 0.42-1
scilab-test 5.5.2-4

Best regards,
Michel

Debug:

$ scilab -debug
unning debug of Scilab [gdb]  :  gdb --args /usr/bin/scilab-bin -debug
GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /usr/bin/scilab-bin...(no debugging symbols found)...done.
(gdb) r
Starting program: /usr/bin/scilab-bin -debug
Installing openjdk unwinder
Traceback (most recent call last):
  File 
"/usr/share/gdb/auto-load/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so-gdb.py",
 line 52, in 
class Types(object):
  File 
"/usr/share/gdb/auto-load/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so-gdb.py",
 line 66, in Types
nmethodp_t = gdb.lookup_type('nmethod').pointer()
gdb.error: No type named nmethod.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7fffd35df700 (LWP 6521)]
[New Thread 0x7fffd34de700 (LWP 6522)]
[New Thread 0x7fffd33dd700 (LWP 6523)]
[New Thread 0x7fffd32dc700 (LWP 6524)]

Thread 1 "scilab-bin" received signal SIGSEGV, Segmentation fault.
0x77de30c9 in _dl_lookup_symbol_x (undef_name=0x7fffeee89102 "strlen", 
undef_map=0x77f86f18, ref=ref@entry=0x7fff8138, 
symbol_scope=0x77f87270, version=0x77f6a5a0, 
type_class=type_class@entry=1, flags=5, skip_map=0x0) at dl-lookup.c:833
833 dl-lookup.c: Aucun fichier ou dossier de ce type.
(gdb) bt
#0  0x77de30c9 in _dl_lookup_symbol_x (
undef_name=0x7fffeee89102 "strlen", undef_map=0x77f86f18, 
ref=ref@entry=0x7fff8138, symbol_scope=0x77f87270, 
version=0x77f6a5a0, type_class=type_class@entry=1, flags=5, 
skip_map=0x0) at dl-lookup.c:833
#1  0x77de7ca4 in _dl_fixup (l=, 
reloc_arg=) at ../elf/dl-runtime.c:111
#2  0x77def37f in _dl_runtime_resolve_sse ()
at ../sysdeps/x86_64/dl-trampoline.h:212
#3  0x7fffec88bd90 in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#4  0x7fffec899038 in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#5  0x77de2bc3 in do_lookup_x (
undef_name=undef_name@entry=0x7fffedd38e7e "__stpcpy_chk", 
new_hash=new_hash@entry=3373522011, 
old_hash=old_hash@entry=0x7fff84f0, ref=0x7fffedd34778, 
result=result@entry=0x7fff8500, scope=, 
i=, version=0x77f6a7c8, flags=1, skip=, 
type_class=1, undef_map=0x77f87960) at dl-lookup.c:423
#6  0x77de30d1 in _dl_lookup_symbol_x (
undef_name=0x7fffedd38e7e "__stpcpy_chk", undef_map=0x77f87960, 
ref=ref@entry=0x7fff85b8, symbol_scope=0x77f87cb8, 
version=0x77f6a7c8, type_class=type_class@entry=1, flags=1, 
skip_map=0x0) at dl-lookup.c:833
---Type  to continue, or q  to quit---
#7  0x77de7ca4 in _dl_fixup (l=, 
reloc_arg=) at ../elf/dl-runtime.c:111
#8  0x77def37f in _dl_runtime_resolve_sse ()
at ../sysdeps/x86_64/dl-trampoline.h:212
#9  0x77de9984 in _dl_name_match_p (
name=0x7fffa7b0 "\340\247\377\377\377\177", 
name@entry=0x7fffec89e906 "ld-linux-x86-64.so.2", 
map=map@entry=0x7fffad50) at dl-misc.c:295
#10 0x77de1699 in _dl_map_object (loader=0x7fff9780, 
name=0x7fffec89e906 "ld-linux-x86-64.so.2", type=1, trace_mode=0, 
mode=-30992, nsid=0) at dl-load.c:2186
#11 0x7fff9008 in ?? ()
#12 0x7fff9008 in ?? ()
#13 0x7fff9000 in ?? ()
#14 0x7fff8fff in ?? ()
#15 0x7fff8c0c in ?? ()
#16 0x7fff9170 in ?? ()
#17 0x812daafc8086f371 in ?? ()
#18 0x in ?? ()



-- System Information:
Debian Release: 9.3
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (50, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE=fr 

Bug#783699: nettle-dev: And there are more package that conflicts i386/amd64

2015-07-16 Thread Michel Briand
Package: nettle-dev
Version: 2.7.1-5
Followup-For: Bug #783699

Hi all,

as I understand the situation one could not install both amd64 and i386 
variants of nettle-dev package.

Short: nettle-dev:am64 conflicts with nettle-dev:i386

You already explored why...

I alert your attention on a consequence : one could not use Debian to build
64 and 32 variants of programs that use those packages at the same time.

I tried to list all packages that conflict in this way:

  libgpg-error-dev
  libgpgme11-dev
  libassuan-dev
  libp11-kit-dev
  libgnutls28-dev
  libtasn1-6-dev
  libpth-dev

and maybe

  libecryptfs-dev

It would be great to have those problems solved in stable.

Thank you very much in advance.

Feel free to ask (modest) help if needed.

Michel

-- System Information:
Debian Release: 8.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'oldstable-updates'), (500, 'oldstable'), (50, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages nettle-dev depends on:
ii  dpkg   1.17.25
ii  install-info   5.2.0.dfsg.1-6
ii  libgmp-dev [libgmp10-dev]  2:6.0.0+dfsg-6
ii  libhogweed22.7.1-5
ii  libnettle4 2.7.1-5

nettle-dev recommends no packages.

nettle-dev suggests no packages.

-- no debconf information


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



Bug#580120: mediatomb allows anyone to browse and export the whole filesystem

2015-02-20 Thread Michel Briand
Package: mediatomb
Version: 0.12.1-4
Followup-For: Bug #580120

Hello,

I think this is not a bug.

Just tell user that this feature allows anyone to 
browse '/' with the user mediatomb runs under
(which is not root !)...

Apache basic authentication could be setup very easily.

Cheers,
Michel


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



Bug#776841: libgnutls28-dev: please make libgnutls-dev package multi-arch

2015-02-02 Thread Michel Briand

Andreas Metzler ametz...@bebt.de - Mon, 2 Feb 2015 19:47:01 +0100

On 2015-02-02 Michel Briand michelbri...@free.fr wrote:
 Package: libgnutls28-dev
 Version: 3.3.8-4~bpo70+1
 Severity: important

 package libgnutls28-dev:amd64 offers all required file to build an 
 application with GnuTLS on Debian amd64 architecture.

 Whereas libgnutls28-dev:i386 lacks some important files (libgnutls.a
 and the link libgnutls.so).


[...]
* What exactly did you do (or not do) that was effective (or
  ineffective)?

 gcc -m32

* What was the outcome of this action?

 Link fails:

 /usr/bin/ld.bfd.real: cannot find -lgnutls

* What outcome did you expect instead?

 That the package libgnutls28-dev:i386 offers the same files as
 libgnutls28-dev:amd64 :

 ll /usr/lib/*/libgnutls.so
 lrwxrwxrwx 1 root root 25 nov.  18
 22:27 /usr/lib/x86_64-linux-gnu/libgnutls.so -
 libgnutls-deb0.so.28.41.0

 ll /usr/lib/*/libgnutls.a
 -rw-r--r-- 1 root root 2435010 nov.  18
 22:27 /usr/lib/x86_64-linux-gnu/libgnutls.a
[...]

Hello Michel,

I have just downloaded libgnutls28-dev_3.3.8-4~bpo70+1_i386.deb and
libgnutls28-dev_3.3.8-4~bpo70+1_amd64.deb from debian to doublecheck
that the package is ok an complete. Both amd64 and i386 contain the
required files:

ametzler@argenau:/tmp$ debdiff
libgnutls28-dev_3.3.8-4~bpo70+1_i386.deb
libgnutls28-dev_3.3.8-4~bpo70+1_amd64.deb [The following lists of
changes regard files as different if they have different names,
permissions or owners.]

Files in second .deb but not in first
-
-rw-r--r--  root/root   /usr/lib/x86_64-linux-gnu/libgnutls.a
-rw-r--r--  root/root   /usr/lib/x86_64-linux-gnu/libgnutlsxx.a
-rw-r--r--  root/root   /usr/lib/x86_64-linux-gnu/pkgconfig/gnutls.pc
lrwxrwxrwx  root/root   /usr/lib/x86_64-linux-gnu/libgnutls.so -
libgnutls-deb0.so.28.41.0 lrwxrwxrwx
root/root   /usr/lib/x86_64-linux-gnu/libgnutlsxx.so -
libgnutlsxx.so.28.1.0

Files in first .deb but not in second
-
-rw-r--r--  root/root   /usr/lib/i386-linux-gnu/libgnutls.a
-rw-r--r--  root/root   /usr/lib/i386-linux-gnu/libgnutlsxx.a
-rw-r--r--  root/root   /usr/lib/i386-linux-gnu/pkgconfig/gnutls.pc
lrwxrwxrwx  root/root   /usr/lib/i386-linux-gnu/libgnutls.so -
libgnutls-deb0.so.28.41.0 lrwxrwxrwx
root/root   /usr/lib/i386-linux-gnu/libgnutlsxx.so -
libgnutlsxx.so.28.1.0

Control files: lines which differ (wdiff format)

Architecture: [-i386-] {+amd64+}
Installed-Size: [-2324-] {+2824+}


cu Andreas

Hello Andreas,

yes I agree.

I didn't looked into libgnutls28-dev:i386 file list because I can't
install it along the amd64 version.

apt-get install libgnutls28-dev:i386

Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages were automatically installed and are no longer
required: libgnutlsxx28 libtasn1-doc
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libc++-dev:i386 libc++-helpers libc++1:i386 libgmp-dev:i386
libgmpxx4ldbl:i386 libgnutlsxx28:i386 libp11-kit-dev:i386
libtasn1-6-dev:i386 nettle-dev:i386 zlib1g-dev:i386 Suggested packages:
clang:i386 libgmp10-doc:i386 libmpfr-dev:i386 guile-gnutls:i386
Recommended packages: libstdc++-dev:i386 libtasn1-doc:i386
The following packages will be REMOVED:
  libgnutls28-dev libp11-kit-dev libtasn1-6-dev nettle-dev
The following NEW packages will be installed:
  libc++-dev:i386 libc++-helpers libc++1:i386 libgmp-dev:i386
libgmpxx4ldbl:i386 libgnutls28-dev:i386 libgnutlsxx28:i386
libp11-kit-dev:i386 libtasn1-6-dev:i386 nettle-dev:i386 zlib1g-dev:i386
0 upgraded, 11 newly installed, 4 to remove and 125 not upgraded. Need
to get 3,594 kB of archives. After this operation, 8,152 kB of
additional disk space will be used. Do you want to continue [Y/n]? n
Abort.


It seems that packages are mutually exclusive. It's a blocker for me.

I don't understand why the -dev package is specific to the architecture.

I'd like to note that I can use Qt 4 to produce both amd64 and i386.
I've installed libqt4-dev and both architecture dependent packages:
libqtcore4:amd64 libqtcore4:i386. And everything is fine to build my
application both for Debian amd64 and i386

How can we go on with that ?

Regards,
Michel


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



Bug#776841: libgnutls28-dev: please make libgnutls-dev package multi-arch

2015-02-02 Thread Michel Briand
Package: libgnutls28-dev
Version: 3.3.8-4~bpo70+1
Severity: important

Dear Maintainer,

package libgnutls28-dev:amd64 offers all required file to build an 
application with GnuTLS on Debian amd64 architecture.

Whereas libgnutls28-dev:i386 lacks some important files (libgnutls.a
and the link libgnutls.so).

Thus it is impossible to cross-compile to i386.

   * What led up to the situation?

Cross-compiling an application with GnuTLS from amd64 to i386.

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

gcc -m32

   * What was the outcome of this action?

Link fails:

/usr/bin/ld.bfd.real: cannot find -lgnutls

   * What outcome did you expect instead?

That the package libgnutls28-dev:i386 offers the same files as
libgnutls28-dev:amd64 :

ll /usr/lib/*/libgnutls.so
lrwxrwxrwx 1 root root 25 nov.  18 22:27 /usr/lib/x86_64-linux-gnu/libgnutls.so 
- libgnutls-deb0.so.28.41.0

ll /usr/lib/*/libgnutls.a
-rw-r--r-- 1 root root 2435010 nov.  18 22:27 
/usr/lib/x86_64-linux-gnu/libgnutls.a


Regards,
Michel


-- System Information:
Debian Release: 7.7
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (50, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-0.bpo.4-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libgnutls28-dev depends on:
ii  libc6-dev [libc-dev]  2.13-38+deb7u6
ii  libgnutls-deb0-28 3.3.8-4~bpo70+1
ii  libgnutlsxx28 3.3.8-4~bpo70+1
ii  libp11-kit-dev0.20.7-1~bpo70+1
ii  libtasn1-6-dev4.2-2~bpo70+1
ii  nettle-dev2.7.1-1~bpo70+1
ii  zlib1g-dev1:1.2.7.dfsg-13

libgnutls28-dev recommends no packages.

Versions of packages libgnutls28-dev suggests:
ii  gnutls-bin3.3.8-4~bpo70+1
ii  gnutls-doc3.3.8-4~bpo70+1
ii  guile-gnutls  3.3.8-4~bpo70+1

-- no debconf information


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



Bug#756302: qtchooser breaks qtcreator

2014-09-17 Thread Michel Briand
Hello,

qtcreator won't install on debian wheezy-backports
because of modifications/new choices in qtchooser...

PLEASE ENSURE backports DO NOT BREAKS stable packages PLEASE !

This is bad for Debian !


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



Bug#726508: sqlitebrowser: cause identified

2014-05-12 Thread Michel Briand
Package: sqlitebrowser
Version: 2.0.0~beta1+ds.1-3
Followup-For: Bug #726508

Dear Maintainer,

the cause of this bug is that :

 - the configuration file is not loaded correctly 
   because it is not found, thus values saved previously
   are not retreived

 - the configuration is store in a file named:
   SQLite Database Browser 2.conf
   in ~/.config/sqlitebrowser.sf.net

 - but when the program tries to re-open this configuration file
   it fails, because it uses a bad filename.

The program tries to open many configuration files that do not exist :

open(/home/me/.config/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 
ENOENT (No such file or directory)
open(/etc/xdg/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/home/me/.config/Tabuleiro.com/Arca Database Browser 2.conf, 
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open(/home/me/.config/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/etc/xdg/Tabuleiro.com/Arca Database Browser 2.conf, O_RDONLY|O_CLOEXEC) 
= -1 ENOENT (No such file or directory)
open(/etc/xdg/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such 
file or directory)
open(/home/me/.config/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 
ENOENT (No such file or directory)
open(/etc/xdg/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/home/me/.config/Tabuleiro.com/Arca Database Browser 2.conf, 
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open(/home/me/.config/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/etc/xdg/Tabuleiro.com/Arca Database Browser 2.conf, O_RDONLY|O_CLOEXEC) 
= -1 ENOENT (No such file or directory)
open(/etc/xdg/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such 
file or directory)
open(/home/me/.config/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 
ENOENT (No such file or directory)
open(/etc/xdg/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/home/me/.config/Tabuleiro.com/Arca Database Browser 2.conf, 
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open(/home/me/.config/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/etc/xdg/Tabuleiro.com/Arca Database Browser 2.conf, O_RDONLY|O_CLOEXEC) 
= -1 ENOENT (No such file or directory)
open(/etc/xdg/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such 
file or directory)
open(/home/me/.config/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 
ENOENT (No such file or directory)
open(/etc/xdg/Unknown Organization.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/home/me/.config/Tabuleiro.com/Arca Database Browser 2.conf, 
O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
open(/home/me/.config/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No 
such file or directory)
open(/etc/xdg/Tabuleiro.com/Arca Database Browser 2.conf, O_RDONLY|O_CLOEXEC) 
= -1 ENOENT (No such file or directory)
open(/etc/xdg/Tabuleiro.com.conf, O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such 
file or directory)

This is because the programmer didn't specified correctly the 
organization/application names in his source code (Qt::Application).

Cheers,
Michel


-- System Information:
Debian Release: 7.5
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (50, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.13-0.bpo.1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages sqlitebrowser depends on:
ii  libc6  2.13-38+deb7u1
ii  libgcc11:4.7.2-5
ii  libqt4-qt3support  4:4.8.2+dfsg-11
ii  libqtcore4 4:4.8.2+dfsg-11
ii  libqtgui4  4:4.8.2+dfsg-11
ii  libsqlite3-0   3.7.13-1+deb7u1
ii  libstdc++6 4.7.2-5

sqlitebrowser recommends no packages.

sqlitebrowser suggests no packages.

-- no debconf information


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



Bug#743925: libopenobex1: package version 1.5-2.1 which fix bug in stable shall be availlable in stable updates

2014-04-08 Thread Michel Briand (Quand on veut on peut !)
Package: libopenobex1
Version: 1.5-2.1
Severity: grave
Justification: renders package unusable

I installed version 1.5-2.1 from testing on my stable machine.

I confirm this version makes obex-data-server work. Without it (with 
version 1.5-2), this program crashes when sending data to BT device.

Cheers,
MB


-- System Information:
Debian Release: 7.4
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (50, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.12-0.bpo.1-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libopenobex1 depends on:
ii  libc6 2.13-38+deb7u1
ii  libusb-0.1-4  2:0.1.12-20+nmu1

libopenobex1 recommends no packages.

libopenobex1 suggests no packages.

-- no debconf information


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



Bug#695358: Regression: PDF files created with Inkscape are crashing Xelatex

2012-12-07 Thread Michel Briand (Quand on veut on peut !)
Package: libcairo2
Severity: important

PDF files created by Inkscape are causing Xelatex to crash. 
This happens when a figure includes gradients. 
The compilation process exits with the message:
** ERROR ** pdf_link_obj(): passed invalid object

https://bugs.launchpad.net/ubuntu/+source/libcairo/+bug/1051939

As discussed in this thread, the error seems to appear for PDF file 
with broken references:
http://tug.org/pipermail/xetex/2010-December/019653.html

Such files seem to be fixed by running pdftk.

Steps to reproduce:
Create a figure with a gradient in Inkscape and save it as PDF. 
Include this PDF in a latex document and try to compile it with xelatex.

(most of this bug report is borrowed from launchpad bug)


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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


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



Bug#692124: rygel: freezed version of rygel is missing very important fixes

2012-11-05 Thread Michel Briand

Andreas Henriksson andr...@fatal.se - Mon, 5 Nov 2012 09:24:55 +0100

On Fri, Nov 02, 2012 at 01:17:10PM +0100, Michel Briand (Quand on veut on peut 
!) wrote:
[...]
 In the current squeeze version (0.14.3-2) the package works

You mean wheezy. Squeeze has 0.6.0-1 and 0.14 is very big improvement
over 0.6.

Absolutely.

 but lacks a quality improvement that makes it usable.

While there are several nice improvements in the 0.16 series,
I definitely would not agree that 0.14 is unusable.

The sort order of all music album is alphabetical and makes this
program definitely unusable for playing music.

I've made 0.16 packages available in experimental but I haven't
had much time on working at making them release quality yet.

What is release quality ? How can I help, what do you need, to make
them release quality ?

Also, this is not up to me unless you can convince the
release team - this will not happen for wheezy.
You're more then welcome to help out creating backports for wheeezy.
I'm sure there will be alot more stuff that are cool in the 0.18 and
future series as well which wheezy users will want to use

The very need of backport is that packages are obsolete when stable
is released. This is the other side of the coin.

I can help to make this not to happen for rygel :).

Regards,
Michel


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



Bug#692124: rygel: freezed version of rygel is missing very important fixes

2012-11-02 Thread Michel Briand (Quand on veut on peut !)
Package: rygel
Version: 0.14.3-2
Severity: important

Dear Maintainer,

rygel version 0.15 and above have very important fixes [1] 
and next Debian stable should really consider bump it.

A major fix is for example the sorting algorithm for audio files [2].

In the current squeeze version (0.14.3-2) the package works
but lacks a quality improvement that makes it usable.

Best regards,
Michel
 

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages rygel depends on:
ii  libc62.13-35
ii  libgee2  0.6.4-2
ii  libglib2.0-0 2.33.12+really2.32.4-2
ii  libgssdp-1.0-3   0.12.1-2
ii  libgstreamer-plugins-base0.10-0  0.10.36-1
ii  libgstreamer0.10-0   0.10.36-1
ii  libgupnp-1.0-4   0.18.3-1
ii  libgupnp-av-1.0-20.10.2-1
ii  libgupnp-dlna-1.0-2  0.6.6-1
ii  libsoup2.4-1 2.38.1-2
ii  libsqlite3-0 3.7.13-1
ii  libunistring00.9.3-5
ii  libuuid1 2.20.1-5.2
ii  libxml2  2.8.0+dfsg1-6

Versions of packages rygel recommends:
ii  gstreamer0.10-ffmpeg0.10.13-5
ii  gstreamer0.10-plugins-base  0.10.36-1
ii  gstreamer0.10-plugins-ugly  0.10.19-2+b2

Versions of packages rygel suggests:
pn  rygel-mediatheknone
ii  rygel-playbin  0.14.3-2
ii  rygel-preferences  0.14.3-2
pn  rygel-tracker  none
ii  tumbler0.1.25-1+b1

-- no debconf information


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



Bug#608116: Printing is still broken

2012-10-03 Thread Michel Briand
Hello,

printing is still broken in wheezy.

This may be cause by libcairo
https://bugs.freedesktop.org/show_bug.cgi?id=44501
or by CUPS filter...

Printing with Acrobat Reader works perfectly.

Here are the relevant package versions:

ii  libcairo-gobject2:amd64  1.12.2-2
ii  libcairo-perl1.090-2
ii  libcairo-script-interpreter2:amd64   1.12.2-2
ii  libcairo2:amd64  1.12.2-2
ii  libcairo2:i386   1.12.2-2
ii  libcairo2-dev1.12.2-2
ii  libcairomm-1.0-1 1.10.0-1

ii  cups-filters 1.0.18-2+b2
ii  ghostscript-cups 9.05~dfsg-6.1
ii  libcupsfilters1:amd641.0.18-2+b2

Best regards,
Michel


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



Bug#662254: nvidia-kernel-dkms: nvidia driver 295.20 won't work with iommu

2012-03-04 Thread Michel Briand
Package: nvidia-kernel-dkms
Version: 295.20-1
Severity: important

Dear Maintainer,

when IOMMU is enabled by the Linux kernel, the Nvidia driver version 
295.20 won't work (whereas version 290.10 worked...).

The error in dmesg is:

NVRM: RmInitAdapter failed! (0x27:0x38:1190)
NVRM: rm_init_adapter(0) failed

If you boot Linux with 'amd_iommu=off' then the problem disappears.

Bug is known to the Linux team:
https://bugzilla.kernel.org/show_bug.cgi?id=42782

An internal bug has been filled at Nvidia:
http://www.nvnews.net/vbulletin/showthread.php?p=2532365

Regards,
Michel


-- Package-specific info:
uname -a:
Linux eridu 3.2.0-1-amd64 #1 SMP Fri Feb 17 05:17:36 UTC 2012 x86_64 GNU/Linux

/proc/version:
Linux version 3.2.0-1-amd64 (Debian 3.2.6-1) (b...@decadent.org.uk) (gcc 
version 4.6.2 (Debian 4.6.2-14) ) #1 SMP Fri Feb 17 05:17:36 UTC 2012

/proc/driver/nvidia/version:
NVRM version: NVIDIA UNIX x86_64 Kernel Module  295.20  Mon Feb  6 21:07:30 PST 
2012
GCC version:  gcc version 4.6.2 (Debian 4.6.2-12) 

lspci 'VGA compatible controller [0300]':
01:00.0 VGA compatible controller [0300]: nVidia Corporation GF110 [GeForce GTX 
560 Ti] [10de:1200] (rev a1) (prog-if 00 [VGA controller])
Subsystem: Giga-byte Technology Device [1458:351d]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort+ 
MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 18
Region 0: Memory at f800 (32-bit, non-prefetchable) [size=32M]
Region 1: Memory at d000 (64-bit, prefetchable) [size=128M]
Region 3: Memory at dc00 (64-bit, prefetchable) [size=64M]
Region 5: I/O ports at cf00 [size=128]
[virtual] Expansion ROM at d800 [disabled] [size=512K]
Capabilities: [60] Power Management version 3
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
Address:   Data: 
Capabilities: [78] Express (v2) Endpoint, MSI 00
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s 4us, L1 
64us
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
DevCtl: Report errors: Correctable- Non-Fatal- Fatal- 
Unsupported-
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
MaxPayload 128 bytes, MaxReadReq 512 bytes
DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- 
TransPend-
LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Latency 
L0 256ns, L1 4us
ClockPM+ Surprise- LLActRep- BwNot-
LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
LnkSta: Speed 2.5GT/s, Width x16, TrErr- Train- SlotClk+ 
DLActive- BWMgmt- ABWMgmt-
DevCap2: Completion Timeout: Not Supported, TimeoutDis+
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- 
SpeedDis-, Selectable De-emphasis: -6dB
 Transmit Margin: Normal Operating Range, 
EnterModifiedCompliance- ComplianceSOS-
 Compliance De-emphasis: -6dB
LnkSta2: Current De-emphasis Level: -6dB
Capabilities: [b4] Vendor Specific Information: Len=14 ?
Capabilities: [100 v1] Virtual Channel
Caps:   LPEVC=0 RefClk=100ns PATEntryBits=1
Arb:Fixed- WRR32- WRR64- WRR128-
Ctrl:   ArbSelect=Fixed
Status: InProgress-
VC0:Caps:   PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
Arb:Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
Ctrl:   Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
Status: NegoPending- InProgress-
Capabilities: [128 v1] Power Budgeting ?
Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 
Len=024 ?
Kernel driver in use: nvidia

dmesg:
[0.00] No AGP bridge found
[0.00] No AGP bridge found
[0.00] Console: colour VGA+ 80x25
[0.504519] vgaarb: device added: 
PCI::01:00.0,decodes=io+mem,owns=io+mem,locks=none
[0.504519] vgaarb: loaded
[0.504519] vgaarb: bridge control possible :01:00.0
[1.336213] Linux agpgart interface v0.103
[9.052894] nvidia: module license 'NVIDIA' taints kernel.
[9.132002] nvidia :01:00.0: PCI INT A - GSI 18 (level, low) - IRQ 18
[9.132014] nvidia :01:00.0: setting latency timer to 64
[9.132018] vgaarb: device changed decodes: 

Bug#653374: oss4-dkms build still fails

2012-02-19 Thread Michel Briand
Package: oss4-dkms
Version: 4.2-build2005-3
Severity: grave
Tags: patch
Followup-For: Bug #653374

Dear Maintainer,

the build still fails due to the CLEAN variable in dkms.conf.

 ** This breaks running systems **

This variable is missing either '' or ';' at the end of the first line.

Thus the correct CLEAN variable is :

CLEAN=cd core  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
Module.symvers limits.h  rm -rf .tmp_versions  cd .. ; \
   cd drivers  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
osscore_symbols.inc  rm -rf .tmp_versions  cd ..

or

CLEAN=cd core  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
Module.symvers limits.h  rm -rf .tmp_versions  cd ..  \
   cd drivers  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
osscore_symbols.inc  rm -rf .tmp_versions  cd ..

Cheers,
Michel

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (1001, 'testing'), (990, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages oss4-dkms depends on:
ii  dkms  2.2.0.3-1
ii  linux-headers-2.6.39-2-amd64 [linux-headers]  2.6.39-2
ii  linux-headers-3.0.0-1-amd64 [linux-headers]   3.0.0-3
ii  linux-headers-3.1.0-1-amd64 [linux-headers]   3.1.8-2
ii  linux-headers-3.2.0-1-amd64 [linux-headers]   3.2.4-1
ii  linux-headers-amd64 [linux-headers]   3.2+43
ii  oss4-base 4.2-build2005-3

oss4-dkms recommends no packages.

oss4-dkms suggests no packages.

-- no debconf information



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



Bug#653374: closed by Sebastien NOEL sebast...@twolife.org (Bug#653374: fixed in oss4 4.2-build2005-2)

2012-02-12 Thread Michel Briand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


ow...@bugs.debian.org (Debian Bug Tracking System) - Sun, 29 Jan 2012
12:51:41 +

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

#653374: oss4-dkms build fails

It has been closed by Sebastien NOEL sebast...@twolife.org.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Sebastien NOEL 
sebast...@twolife.org by
replying to this email.



Hello,

there is still a little typo error that makes the build fails :

CLEAN=cd core  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
Module.symvers limits.h  rm -rf .tmp_versions  cd .. \
   cd drivers  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
osscore_symbols.inc  rm -rf .tmp_versions  cd .. 

You forgot to add ';' at the end of each line.

This makes dkms do one 'cd ..' too much, and when it tries to find
built modules it fails here :

# Make sure all the modules built successfully
for ((count=0; count  ${#built_module_name[@]}; count++)); do
pwd
[[ -e 
${built_module_location[$count]}${built_module_name[$count]}$module_suffix ]] 
 continue
report_build_problem 7 \
...

pwd prints:

/var/lib/dkms/oss4/4.2-build2005/build

Thus the correct CLEAN variable is :

CLEAN=cd core  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
Module.symvers limits.h  rm -rf .tmp_versions  cd .. ; \
   cd drivers  rm -f *.o *.ko *.mod.c *.mod.o .*.cmd modules.order 
osscore_symbols.inc  rm -rf .tmp_versions  cd .. ; 


Best regards,
Michel

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

iEYEARECAAYFAk84AF8ACgkQzx734gF2YUtB4ACeP8pkS8UV0LkI8Ly+yDMxsMy+
9FoAmwb7BgWRhCJsKXL8Qxi6wdIqD+n1
=ZYV4
-END PGP SIGNATURE-


Bug#653374: oss4-dkms build fails

2011-12-27 Thread Michel Briand
Package: oss4-dkms
Version: 4.2-build2005-1
Severity: important

Hello,

the driver fails to install. The error seems to be related to the build of the 
driver. But in fact this is the CLEAN target in dkms.conf that causes an error 
that prevent the driver from being installed.

I've sent an email to Pkg-oss4-maintainers mailing list to signal about this 
bug.

aptitude log with oss4-dkms version 2004 :
==

# apt-get install --reinstall oss4-dkms
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 245 not upgraded.
Need to get 0 B/1,033 kB of archives.
After this operation, 0 B of additional disk space will be used.
(Reading database ... 290009 files and directories currently installed.)
Preparing to replace oss4-dkms 4.2-build2004-1 (using .../oss4-dkms_4.2-build200
4-1_amd64.deb) ...
Unpacking replacement oss4-dkms ...
Setting up oss4-dkms (4.2-build2004-1) ...
Loading new oss4-4.2-build2004 DKMS files...
Building only for 3.0.0-1-amd64
Building initial module for 3.0.0-1-amd64
/usr/sbin/dkms: line 82: cd: 20795dir: No such file or directory
rm: cannot remove `core': Is a directory
/usr/sbin/dkms: line 82: cd: 20795dir: No such file or directory
Error! Build of osscore.ko failed for: 3.0.0-1-amd64 (x86_64)
Consult the make.log in the build directory
/var/lib/dkms/oss4/4.2-build2004/build/ for more information.
Unloading Open Sound System kernel modules: done (OSS not loaded).
Starting Open Sound System: failed (No kernel modules detected).

The problems seems to come from the dkms.conf file in
/usr/src/oss4-4.2-build2004.

There are two errors: the escaping of dir variable,
and the cd ../.. which go up two levels instead of one.

The CLEAN variable :

CLEAN=for dir in core drivers; do \
cd $$dir ; \
rm -f *.o *.ko *.mod.c *.mod.o .*.cmd core core.* x y z ; \
rm -rf .tmp_versions ; \
cd ../.. ; \
done

should be fixed like this :

CLEAN=for dir in core drivers; do \
cd \\\$dir ; \
rm -f *.o *.ko *.mod.c *.mod.o .*.cmd core core.* x y z ; \
rm -rf .tmp_versions ; \
cd .. ; \
done


aptitude log with oss4-dkms version 2005 :
==

[...]
Building initial module for 3.1.0-1-amd64
/usr/sbin/dkms: line 81: cd: 2065dir: No such file or directory
rm: cannot remove `core': Is a directory
/usr/sbin/dkms: line 81: cd: 2065dir: No such file or directory
Error!  Build of osscore.ko failed for: 3.1.0-1-amd64 (x86_64)
Consult the make.log in the build directory
/var/lib/dkms/oss4/4.2-build2005/build/ for more information.
Unloading Open Sound System kernel modules: done (OSS not loaded).
Starting Open Sound System: failed (No kernel modules detected).
Setting up oss4-gtk (4.2-build2005-1) ...
Press return to continue.


The problem is the same.

Patch proposed:
===

please try the change proposed above or the patch attached. 
Both solved the problem.

The command:

# dpkg-reconfigure oss4-dkms

rebuilds the driver. And all is working again.


Please fix this error asap.

Kind regards,
Michel

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (1001, 'testing'), (990, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages oss4-dkms depends on:
ii  dkms  2.2.0.3-1
ii  linux-headers-2.6.39-2-amd64 [linux-headers]  2.6.39-2
ii  linux-headers-3.0.0-1-amd64 [linux-headers]   3.0.0-3
ii  linux-headers-3.1.0-1-amd64 [linux-headers]   3.1.5-1
ii  linux-headers-amd64 [linux-headers]   3.1+41
ii  oss4-base 4.2-build2005-1

oss4-dkms recommends no packages.

oss4-dkms suggests no packages.

-- no debconf information
--- dkms.conf.orig	2011-10-15 15:49:10.0 +0200
+++ dkms.conf	2011-12-27 15:33:11.419294591 +0100
@@ -101,9 +101,7 @@
  make -C ${kernel_source_dir} SUBDIRS=${dkms_tree}/${PACKAGE_NAME}/${PACKAGE_VERSION}/build/core modules  \
  make -C ${dkms_tree}/${PACKAGE_NAME}/${PACKAGE_VERSION}/build/drivers osscore_symbols.inc  \
  make -C ${kernel_source_dir} SUBDIRS=${dkms_tree}/${PACKAGE_NAME}/${PACKAGE_VERSION}/build/drivers modules
-CLEAN=for dir in core drivers; do \
-cd $$dir ; \
-rm -f *.o *.ko *.mod.c *.mod.o .*.cmd core core.* x y z ; \
-rm -rf .tmp_versions ; \
-cd ../.. ; \
-done
+CLEAN=find core drivers -type f -a \( -name '*.o' -o -name '*.ko' -o \
+-name '*.mod.c' -o -name '*.mod.o' -o -name '.*.cmd' -o \
+-name 'core' -o -name 'core.*' -o -name '[xyz]' -o \
+-name '.tmp_versions' \) -delete


Bug#634826: purge and reinstall of trac trac-git babel makes installation not-working

2011-11-19 Thread Michel Briand
Package: trac-git
Version: 0.0.20100513-2
Followup-For: Bug #634826

found 634826 trac-git 0.0.20100513-2
found 644401 trac 0.12.2-1

Hello,

I installed the trac-git package in version 
0.0.20100513-2 one year ago and it worked.

I don't know if this is caused by trac-git 
package or the way python extensions are installed, 
but the error symptom reported by this bug is 
reproduced now:

 TypeError: 'NoneType' object is unsubscriptable

(With the same python traceback.)

I was trying to make trac translations work with babel.
I've done this:

# apt-get remove --purge trac trac-git python-babel

followed by

# apt-get install python-babel
# apt-get install trac trac-git

And the trac-git installation would not work anymore.
The trac translation does not work either:

In trac preferences (language tab) page:

  Note: Translations are currently unavailable. 
  Trac has been localized to more than a dozen of 
  languages but in order to be able to use them, the 
  Babel package needs to be present when installing Trac. 
  See TracInstall for details. 

Finally I removed the trac-git package and installed it
with the command suggested above.


Best regards,
Michel

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (1001, 'testing'), (990, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages trac-git depends on:
ii  git [git-core]  1:1.7.7-2
ii  python  2.6.7-3  
ii  python-central  0.6.17   
ii  trac0.12.2-1 

trac-git recommends no packages.

trac-git suggests no packages.



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



Bug#608116: libcairo2: Maybe incorrect Postscript: undefined command Q

2011-10-06 Thread Michel Briand
Package: libcairo2
Version: 1.10.2-6.1
Followup-For: Bug #608116

Hello,

same behaviour here : print does not work with evince.
Printer is Brother MFC-9320CW, driver is PPD from Brother website,
connected through ethernet (ipp://).

Whereas it works with lpr and with okular (latest squeeze version).

Cheers,
Michel

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (1001, 'testing'), (990, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages libcairo2 depends on:
ii  libc6   2.13-21 
ii  libfontconfig1  2.8.0-3 
ii  libfreetype62.4.6-2 
ii  libpixman-1-0   0.22.2-1
ii  libpng12-0  1.2.46-3
ii  libx11-62:1.4.4-1   
ii  libxcb-render0  1.7-3   
ii  libxcb-shm0 1.7-3   
ii  libxcb1 1.7-3   
ii  libxrender1 1:0.9.6-2   
ii  zlib1g  1:1.2.3.4.dfsg-3

libcairo2 recommends no packages.

libcairo2 suggests no packages.

-- no debconf information



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



Bug#632303: Diff to enable OSS4

2011-09-24 Thread Michel Briand
Diff attached.diff -Nu audacious-plugins-2.4.4/debian/changelog audacious-plugins-2.4.4-michel/debian/changelog
--- audacious-plugins-2.4.4/debian/changelog2011-04-11 17:07:57.0 +0200
+++ audacious-plugins-2.4.4-michel/debian/changelog 2011-09-23 14:47:26.0 +0200
@@ -1,3 +1,9 @@
+audacious-plugins (2.4.4-2) unstable; urgency=low
+
+  * Enable OSS4 output plugin.
+
+ -- Michel Briand (Quand on veut on peut !) michelbri...@free.fr  Fri, 23 Sep 2011 14:23:56 +0200
+
 audacious-plugins (2.4.4-1) unstable; urgency=low
 
   * New upstream release.
diff -Nu audacious-plugins-2.4.4/debian/control audacious-plugins-2.4.4-michel/debian/control
--- audacious-plugins-2.4.4/debian/control  2011-04-11 17:07:57.0 +0200
+++ audacious-plugins-2.4.4-michel/debian/control   2011-09-23 14:42:18.0 +0200
@@ -6,6 +6,7 @@
Bilal Akhtar bilalakh...@ubuntu.com
 Build-Depends: audacious-dev (= 2.4.3),
debhelper (= 7.0.50~),
+   oss4-dev,
libasound2-dev (= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386] | libasound-dev (= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386],
libavcodec-dev (= 4:0.6.1),
libavformat-dev (= 4:0.6.1),
diff -Nu audacious-plugins-2.4.4/debian/files audacious-plugins-2.4.4-michel/debian/files
--- audacious-plugins-2.4.4/debian/files1970-01-01 01:00:00.0 +0100
+++ audacious-plugins-2.4.4-michel/debian/files 2011-09-23 14:55:38.0 +0200
@@ -0,0 +1,2 @@
+audacious-plugins_2.4.4-2_amd64.deb sound optional
+audacious-plugins-dbg_2.4.4-2_amd64.deb debug extra
diff -Nu audacious-plugins-2.4.4/debian/rules audacious-plugins-2.4.4-michel/debian/rules
--- audacious-plugins-2.4.4/debian/rules2011-04-04 14:15:56.0 +0200
+++ audacious-plugins-2.4.4-michel/debian/rules 2011-09-23 14:42:18.0 +0200
@@ -15,6 +15,7 @@
--disable-altivec \
--disable-psf \
--disable-rpath \
+   --enable-oss4 \
$(additional_confflags)
 
 override_dh_strip:


Bug#632303: audacious-plugins: enable oss4 output plugin

2011-09-23 Thread Michel Briand
Hello

no news of this for a while...

Made changes that enable OSS4 output plugin:

debian/changelog
debian/control
debian/rules

Did not considered arch kfreebsd. Please someone in this arch' team
review my changes.

Tested (wheezy linux amd64).

Uploaded to Debian Mentors:

Uploading to mentors (via ftp to mentors.debian.net):
  Uploading audacious-plugins_2.4.4-2.dsc: done.
  Uploading audacious-plugins_2.4.4-2.debian.tar.gz: done.  
  Uploading audacious-plugins_2.4.4-2_source.changes: done.
Successfully uploaded packages.


Regards,
Michel



signature.asc
Description: PGP signature


Bug#632303: audacious-plugins: enable oss4 output plugin

2011-08-26 Thread Michel Briand
Please, please : enable oss4 plugin in audacious-plugins.



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



Bug#632303: audacious-plugins: enable oss4 output plugin

2011-08-15 Thread Michel Briand
Hello,

I'm coming back with this request. Could someone on the list
(pkg-multimedia-maintainers) help ?

Help me to answer Reinhard question : is oss4 available on kFreeBSD ?
Thus could the oss4 output plugin be enabled for this arch too ?

The oss4-dev package is available for all arch. But the include file it
provides is: /usr/include/linux/soundcard.h. This sounds Linux specific.

Anyway I see no problem to enable it for Debian GNU/Linux i386 and
amd64. It works perfectly (whereas the oss output plugin has problems).

Cheers,
Michel



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



Bug#631899: nis install fails when portmap replaced by rpcbind

2011-07-06 Thread Michel Briand
Date: Thu, 30 Jun 2011 18:29:43 +0200
De: Luk Claes l...@debian.org
À: Michel Briand michelbri...@free.fr
Cc: Mark Brown broo...@debian.org, 631...@bugs.debian.org
Sujet: Re: Bug#631899: nis install fails when portmap replaced by
rpcbind


On 06/30/2011 02:07 PM, Michel Briand wrote:

 Luk Claes l...@debian.org - Thu, 30 Jun 2011 13:45:43 +0200

 On 06/30/2011 08:17 AM, Mark Brown wrote:
 On Tue, Jun 28, 2011 at 08:40:34AM +0200, Michel Briand wrote:

 before nis installation, the system has rpcbind installed,
 which should replace portmap.

 This is not an issue in nis.  nis depends on portmap, if the rpcbind
 package declares that it provides portmap then it should provide all the
 external interfaces the portmap package provides.

 It does, what version of insserv is installed?

 If it's one before 1.14.0-2.1, it needs upgrading.

 Cheers

 Luk


 It's an up-to-date wheezy configuration.

 Will check that next week.

Please also check that /etc/insserv.conf does not contain $portmap
anymore. If it does, you might want to reinstall insserv and instruct to
overwrite that file.

Cheers

Luk

Hello,

I purged portmap (dpkg -P portmap). It was in rc state.
I upgraded to insserv 1.14.0-2.1. Re-install of nis succeeded.
There is no $portmap in /etc/insserv.conf. Ok.

Michel



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



Bug#632296: oss4: Permissions of oss devices (/dev/oss/*/*) are not setup for the audio group

2011-07-01 Thread Michel Briand
Package: oss4
Severity: normal

Hello,

oss4 installation went fine.
Module / device probe is ok.
osstest works.

But permissions are :

ls -al /dev/oss/oss_hdaudio0/
total 0
crw-rw-rw- 1 root root 249,  3 Jul  1 11:24 mix0
crw-rw-rw- 1 root root 249,  4 Jul  1 11:24 pcm0
crw-rw-rw- 1 root root 249,  6 Jul  1 11:24 pcm1
crw-rw-rw- 1 root root 249,  8 Jul  1 11:24 pcm2
crw-rw-rw- 1 root root 249, 10 Jul  1 11:24 pcm3
crw-rw-rw- 1 root root 249, 12 Jul  1 11:24 pcm4
crw-rw-rw- 1 root root 249, 16 Jul  1 11:24 pcmin0
crw-rw-rw- 1 root root 249, 18 Jul  1 11:24 pcmin1
crw-rw-rw- 1 root root 249, 14 Jul  1 11:24 spdout0

Correct permissions shall be :

crw-rw 1 root audio 249, 14 Jul  1 11:24 *


I've searched for an udev method to setup 
permissions (as with alsa), but I didn't found a
working solution.

Could you help ?

Best regards,
Michel


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (1001, 'testing'), (990, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.39-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash



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



Bug#632303: audacious-plugins: enable oss4 output plugin

2011-07-01 Thread Michel Briand
Package: audacious-plugins
Version: 2.4.4-1
Severity: normal

Hello,

oss4 output plugin is disabled by default by upstream.

oss (v3) output plugin does not work correctly with oss4 mixer [1],
whereas the new oss4 plugin handles correctly the mixer ioctl.

I've modified the package to enable oss4. Tested locally.
It works perfectly.

Here is a quilt diff :

--- a/debian/control
+++ b/debian/control
@@ -6,6 +6,7 @@
Bilal Akhtar bilalakh...@ubuntu.com
 Build-Depends: audacious-dev (= 2.4.3),
debhelper (= 7.0.50~),
+   oss4-dev,
libasound2-dev (= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386] | libasound-dev (= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386],
libavcodec-dev (= 4:0.6.1),
libavformat-dev (= 4:0.6.1),
--- a/debian/rules
+++ b/debian/rules
@@ -15,6 +15,7 @@
--disable-altivec \
--disable-psf \
--disable-rpath \
+   --enable-oss4 \
$(additional_confflags)
 
 override_dh_strip:


Best regards,
Michel

[1] 
http://jira.atheme.org/browse/AUD-164?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (1001, 'testing'), (990, 'stable'), (600, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.39-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages audacious-plugins depends on:
ii  libasound2   1.0.23-4shared library for ALSA applicatio
ii  libatk1.0-0  2.0.0-1 The ATK accessibility toolkit
ii  libaudcore1  2.4.4-1 audacious core engine library
ii  libavcodec52 4:0.6.2-3   Libav codec library
ii  libavformat524:0.6.2-3   Libav file format library
ii  libavutil50  4:0.6.2-3   Libav utility library
ii  libbinio1ldbl1.4-14  Binary I/O stream class library
ii  libc62.13-7  Embedded GNU C Library: Shared lib
ii  libcairo21.10.2-6The Cairo 2D vector graphics libra
ii  libcddb2 1.3.2-3 library to access CDDB data - runt
ii  libcdio-cdda00.81-4  library to read and control digita
ii  libcdio100.81-4  library to read and control CD-ROM
ii  libcue1  1.4.0-1 CUE Sheet Parser Library
ii  libcurl3-gnutls  7.21.6-2Multi-protocol file transfer libra
ii  libdbus-1-3  1.4.12-2simple interprocess messaging syst
ii  libdbus-glib-1-2 0.94-2  simple interprocess messaging syst
ii  libfaad2 2.7-6   freeware Advanced Audio Decoder - 
ii  libflac8 1.2.1-3 Free Lossless Audio Codec - runtim
ii  libfluidsynth1   1.1.3-4 Real-time MIDI software synthesize
ii  libfontconfig1   2.8.0-2.2   generic font configuration library
ii  libfreetype6 2.4.4-1 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.6.0-10  GCC support library
ii  libgdk-pixbuf2.0-0   2.23.3-3GDK Pixbuf library
ii  libglib2.0-0 2.28.6-1The GLib library of C routines
ii  libgtk2.0-0  2.24.4-3The GTK+ graphical user interface 
ii  libjack0 [libjack-0. 1:0.120.1+svn4142-1 JACK Audio Connection Kit (librari
ii  liblircclient0   0.9.0~pre1-1infra-red remote control support -
ii  libmcs1  0.7.2-1 abstraction library to store confi
ii  libmms0  0.6.2-2 MMS stream protocol library - shar
ii  libmowgli2   0.7.1-1 high performance development frame
ii  libmtp8  1.0.6-7 Media Transfer Protocol (MTP) libr
ii  libneon27-gnutls 0.29.5-3An HTTP and WebDAV client library 
ii  libogg0  1.2.2~dfsg-1Ogg bitstream library
ii  libpango1.0-01.28.3-6Layout and rendering of internatio
ii  libpulse00.9.21-4PulseAudio client libraries
ii  libresid-builder0c2a 2.1.1-8 SID chip emulation class based on 
ii  libsamplerate0   0.1.7-3 Audio sample rate conversion libra
ii  libsdl1.2debian  1.2.14-6.4  Simple DirectMedia Layer
ii  libsidplay2  2.1.1-8 SID (MOS 6581) emulation library
ii  libsndfile1  1.0.24-1Library for reading/writing audio 
ii  libstdc++6   4.6.0-10The GNU Standard C++ Library v3
ii  libusb-0.1-4 2:0.1.12-17 userspace USB programming library
ii  libvorbis0a  1.3.2-1 The Vorbis General Audio Compressi
ii  libvorbisenc21.3.2-1 The Vorbis General Audio Compressi
ii  libvorbisfile3   1.3.2-1 

Bug#632303: audacious-plugins: enable oss4 output plugin

2011-07-01 Thread Michel Briand

Reinhard Tartler siret...@tauware.de - Fri, 01 Jul 2011 13:48:35 +0200

On Fri, Jul 01, 2011 at 12:50:58 (CEST), Michel Briand wrote:

 Package: audacious-plugins
 Version: 2.4.4-1
 Severity: normal

 Hello,

 oss4 output plugin is disabled by default by upstream.

 oss (v3) output plugin does not work correctly with oss4 mixer [1],
 whereas the new oss4 plugin handles correctly the mixer ioctl.

 I've modified the package to enable oss4. Tested locally.
 It works perfectly.

 Here is a quilt diff :

 --- a/debian/control
 +++ b/debian/control
 @@ -6,6 +6,7 @@
 Bilal Akhtar bilalakh...@ubuntu.com
  Build-Depends: audacious-dev (= 2.4.3),
 debhelper (= 7.0.50~),
 +   oss4-dev,
 libasound2-dev (= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 
 !hurd-i386] | libasound-dev (= 1.0) [!kfreebsd-i386 !kfreebsd-amd64 
 !hurd-i386],
 libavcodec-dev (= 4:0.6.1),
 libavformat-dev (= 4:0.6.1),

oss4-dev is an arch:all package without dependencies, which makes me
suspicious. I guess that OSS4 is a pure syscall interface that does not
require some additional library (unlike e.g. ALSA). But will that work
with hurd or kFreeBSD as well?

I agree. It's a important question. But I don't have enough knowledge
to answer fully (I don't know about kFreeBSD).

oss4-dev package contains soundcard.h which is required to compile the
oss4 plugin for audacious :

...
/usr/include/linux/soundcard.h
package diverts others to: /usr/include/linux/soundcard.h.oss3

Indeed oss4 API rely on standard syscalls (open/ioctl ...). No library needed.



 --- a/debian/rules
 +++ b/debian/rules
 @@ -15,6 +15,7 @@
 --disable-altivec \
 --disable-psf \
 --disable-rpath \
 +   --enable-oss4 \
 $(additional_confflags)

Will that result in a usable package on kFreeBSD, or do we need to
enable that flag on Linux only?


Have you oss4 devices working on kFreeBSD ?




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



Bug#631899: nis install fails when portmap replaced by rpcbind

2011-06-28 Thread Michel Briand
Package: nis
Version: 3.17-31
Severity: normal

Hi,

before nis installation, the system has rpcbind installed, 
which should replace portmap.

nis installation failed: dpkg returned an error during the
configure stage, when update-rc.d is called.

The debug output shows the problem:

debconf (developer): starting /var/lib/dpkg/info/nis.postinst configure
...
update-rc.d nis start 18 2 3 4 5 . stop 18 1 .  
update-rc.d: using dependency based boot sequencing
insserv: Service portmap has to be enabled to start service ypbind
insserv: exiting now!
update-rc.d: error: insserv rejected the script header

It seems that this step does not handle the rpcbind case.

Best regards,
Michel



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



Bug#593648: grub-pc: install fails on RAID1 - a possible workaround

2011-06-20 Thread Michel Briand
Package: grub-pc
Version: 1.99-6
Followup-For: Bug #593648

Hi,

I've experienced the same problem as per this bug.
Debian installer reported an error about grub installation.

Error message told:

/proc/devices: fopen failed: No such file or directory

So I though of mounting /proc.
I did it, ran again grub-install and it worked !

Hope that it actually worked :)

Best regards,
and long live Debian !


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

Kernel: Linux 2.6.38-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]1.5.39  Debian configuration management sy
ii  grub-common  1.99-6  GRand Unified Bootloader (common f
ii  grub-pc-bin  1.99-6  GRand Unified Bootloader, version 
ii  grub2-common 1.99-6  GRand Unified Bootloader (common f
ii  ucf  3.0025+nmu2 Update Configuration File: preserv

grub-pc recommends no packages.

grub-pc suggests no packages.

-- debconf information:
  grub-pc/kopt_extracted: false
  grub2/kfreebsd_cmdline:
  grub2/device_map_regenerated:
* grub-pc/install_devices:
  grub-pc/postrm_purge_boot_grub: false
  grub-pc/install_devices_failed_upgrade: true
  grub-pc/disk_description:
* grub2/linux_cmdline:
* grub-pc/install_devices_empty: true
  grub2/kfreebsd_cmdline_default: quiet
  grub-pc/partition_description:
  grub-pc/install_devices_failed: false
  grub-pc/install_devices_disks_changed:
* grub2/linux_cmdline_default: quiet
  grub-pc/chainload_from_menu.lst: true
  grub-pc/mixed_legacy_and_grub2: true



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



Bug#621921: phonon 4.6.0 is in reality 4.4.2 : is it possible to upgrade to 4.4.3 in squeeze ?

2011-04-24 Thread Michel Briand

Modestas Vainius mo...@debian.org - Fri, 22 Apr 2011 13:56:19 +0300

Hello,

On ketvirtadienis 21 Balandis 2011 11:31:21 Michel Briand wrote:
 Modestas Vainius mo...@debian.org - Sun, 10 Apr 2011 14:15:07 +0300
 
 reassign 621921 phonon-backend-xine 4:4.6.0really4.4.2-1
 close 621921 4:4.6.0really4.4.3-1
 severity 621921 normal
 retitle 621921 xine backend won't play files with non-ascii names in
 non-UTF8 locales forwarded 621921
 https://bugs.kde.org/show_bug.cgi?id=172242
 tags 621921 squeeze
 thanks
 
 Hello,
 
 On Sunday 10 April 2011 13:12:44 Michel Briand wrote:
  Maybe somebody will build backports. Though it's troublesome as 4.4.4+
  has many changes. If I were you, I would switch locale to UTF-8. Do
  not delay invetitable.
  
  Yes and no : when you have a legacy of hard drive / data you want to be
  able to access them even with the latest distro / software !
 
 Maybe but it's a non-default configuration hence this bug is by no means
 very important. Switch locale to UTF-8 and use something like convmv to
 convert filenames. Or, since this appears to be a xine backend problem,
 you might as well switch Phonon backend to gstreamer or vlc. Or upgrade
 to testing.
 
 I think saying that iso-8859-* filesystem is non-default
 configuration is really excessive. It's just legacy configuration.

It is a non-default configuration because UTF-8 has been the default for two 
Debian stable releases already.

 I don't think that all data should be adapted because programs tend to
 lack proper support for it. This rationale is the worst thing for
 perennial computer systems.

I have suggested a couple of options how to proceed forward in the previous 
mails. Let's stick to that and start from there. Arguing about small details 
and perceptions won't solve anything.


Hi Modestas,

I don't want to argue about small details. Just about usability.
Free software is for control not to be controlled. I have a lot of
data, like a lot of people, and I want softwares to adapt rather than
adapt my data... What would say your boss if you ask the datacenter
administrators to upgrade (sic) all the file names ???

Best solution for a Debian user that don't want to bother with a long
and delicate process : use another software to play all files (new 
old, with file names in whatever encoding).

I tried Exaile and it rocks. Glib considers all file names are UTF-8,
but if you use G_BROKEN_FILENAMES or G_FILENAME_ENCODING you would
have a better control [1].

Farewell Amarok...
By the way I feel that most of KDE 4 programs have strong
regressions.

Best regards,
Michel

[1]
http://developer.gnome.org/glib/stable/glib-running.html#G_FILENAME_ENCODING


signature.asc
Description: PGP signature


Bug#621921: phonon 4.6.0 is in reality 4.4.2 : is it possible to upgrade to 4.4.3 in squeeze ?

2011-04-21 Thread Michel Briand

Modestas Vainius mo...@debian.org - Sun, 10 Apr 2011 14:15:07 +0300

reassign 621921 phonon-backend-xine 4:4.6.0really4.4.2-1
close 621921 4:4.6.0really4.4.3-1
severity 621921 normal
retitle 621921 xine backend won't play files with non-ascii names in non-UTF8 
locales
forwarded 621921 https://bugs.kde.org/show_bug.cgi?id=172242
tags 621921 squeeze
thanks

Hello,

On Sunday 10 April 2011 13:12:44 Michel Briand wrote:
 Maybe somebody will build backports. Though it's troublesome as 4.4.4+ has
 many changes. If I were you, I would switch locale to UTF-8. Do not delay
 invetitable.
 
 Yes and no : when you have a legacy of hard drive / data you want to be
 able to access them even with the latest distro / software !

Maybe but it's a non-default configuration hence this bug is by no means
very important. Switch locale to UTF-8 and use something like convmv to
convert filenames. Or, since this appears to be a xine backend problem, you
might as well switch Phonon backend to gstreamer or vlc. Or upgrade to
testing.

I think saying that iso-8859-* filesystem is non-default
configuration is really excessive. It's just legacy configuration. 

I don't think that all data should be adapted because programs tend to
lack proper support for it. This rationale is the worst thing for
perennial computer systems.

Regards,
Michel



signature.asc
Description: PGP signature


Bug#621921: phonon 4.6.0 is in reality 4.4.2 : is it possible to upgrade to 4.4.3 in squeeze ?

2011-04-09 Thread Michel Briand
Package: phonon
Version: 4:4.6.0really4.4.2-1
Severity: wishlist

Hi,

phonon 4.4.3 has fixed a *very important bug* [1].

This bug prevents amarok from playing file 
which names are not ascii (iso-8859-15 for example).

Is it possible to bump squeeze version ?

[1] KDE bug 172242
https://bugs.kde.org/show_bug.cgi?id=172242

Best regards,
Michel

-- System Information:
Debian Release: 6.0.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR@euro, LC_CTYPE=fr_FR@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages phonon depends on:
ii  libphonon4  4:4.6.0really4.4.2-1 the core library of the Phonon mul
ii  phonon-backend-xine 4:4.6.0really4.4.2-1 Phonon Xine 1.1.x backend

phonon recommends no packages.

Versions of packages phonon suggests:
pn  phonon-backend-gstr none   (no description available)
pn  phonon-backend-mpla none   (no description available)
pn  phonon-backend-vlc  none   (no description available)
ii  phonon-backend-xine 4:4.6.0really4.4.2-1 Phonon Xine 1.1.x backend

-- no debconf information



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



Bug#604010: x11-common: xsession should use $SHELL and not sh directly

2011-02-17 Thread Michel Briand

Vincent Lefevre vinc...@vinc17.net - Tue, 15 Feb 2011 12:17:25 +0100

On 2011-02-12 12:58:46 +0100, Cyril Brulebois wrote:
 Hi Michel,
 
 Michel Briand michelbri...@free.fr (19/11/2010):
  50x11-common_determine-startup SHOULD not use sh $STARTUPFILE
  but $SHELL $STARTUPFILE
 
 I've just replaced that with:
 +  shell=${SHELL:-sh}
 +  STARTUP=$shell $STARTUPFILE
 
 which should do what you want.

I think this change should be reverted, as this may break existing
scripts. The .xsession file has always been described as a Bourne
shell (sh(1)) script (see Xsession(5) man page), and if the user
has a $SHELL not compatible with sh(1), typically zsh, the script
may no longer run correctly.

Moreover I think this is a misuse of the SHELL environment variable,
which is there to run simple commands (for which the shell can only
be provided by external information), not full scripts.


I don't think $SHELL is only there to run simple commands. IIRC the
$SHELL variable is set after the value in /etc/passwd (or whatever
account mgt system) and represent the preferred shell and what we can
refer as the login shell. 

If I setup my profile in .bash_profile, for example, I'd like to
have it loaded during X session. If sh is used instead then all child
processes of the session will not have profile variables set up. This
could be very annoying.



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



Bug#604010: x11-common: xsession should use $SHELL and not sh directly

2011-02-12 Thread Michel Briand

Cyril Brulebois k...@debian.org - Sat, 12 Feb 2011 12:58:46 +0100

Hi Michel,

Michel Briand michelbri...@free.fr (19/11/2010):
 50x11-common_determine-startup SHOULD not use sh $STARTUPFILE
 but $SHELL $STARTUPFILE

I've just replaced that with:
+  shell=${SHELL:-sh}
+  STARTUP=$shell $STARTUPFILE

which should do what you want.


Yes. It works. Thank you.

Anyway, why don't you make your script executable? This way, it's used
directly, without going through sh/SHELL, and you get to decide,
through your shebang.


Sure. But your modification makes the trick bulletproof: a lot of users
won't think about the shebang and the x flag, isn't it ?

Regards,
Michel


signature.asc
Description: PGP signature


Bug#570365: nvidia-glx: problem confirmed in with latest xen hypervisor

2011-01-15 Thread Michel Briand
Hi,

I'm sorry Andreas, but I didn't have the time to test your proposed
change before now. It seems that someone did it (Joseph) and that the
driver does not compile.

It does not compile here either:

In file included from .../tmp/nvidia-195.36.31/nv.c:14:
.../tmp/nvidia-195.36.31/nv-linux.h:153:23: error: asm/maddr.h: Aucun fichier 
ou dossier de ce type

and

/usr/src/linux-headers-2.6.32-5-common/include/xen/interface/memory.h: At top 
level:
/usr/src/linux-headers-2.6.32-5-common/include/xen/interface/memory.h:32: 
error: expected specifier-qualifier-list before 'GUEST_HANDLE'

... plus 3 more definition errors.

and

.../tmp/nvidia-195.36.31/nv.c: In function 'nv_kern_open':
.../tmp/nvidia-195.36.31/nv.c:2245: error: implicit declaration of function 
'HYPERVISOR_memory_op'

maddr.h does not exist on my machine.

I've found that HYPERVISOR_memory_op is defined in hypercall.h.
So I've added hypercall.h to try to make this compile :

#if defined(CONFIG_XEN) //  !defined(CONFIG_PARAVIRT)
//#include asm/maddr.h
#include asm/xen/hypercall.h
#include xen/interface/memory.h
#define NV_XEN_SUPPORT_OLD_STYLE_KERNEL
#endif

But it fails soon after :

.../tmp/nvidia-195.36.31/nv-vm.c: In function 'nv_vm_malloc_pages':
.../tmp/nvidia-195.36.31/nv-vm.c:507: error: implicit declaration of function 
'phys_to_machine'

I believe this comes from :

#if defined(NV_XEN_SUPPORT_OLD_STYLE_KERNEL)
#define NV_GET_DMA_ADDRESS(phys_addr) phys_to_machine(phys_addr)
#else
#define NV_GET_DMA_ADDRESS(phys_addr) (phys_addr)
#endif

---

However I managed to try a new test at work : I've installed latest
squeeze kernel, xen and nvidia packages (as of 09/01/2011).

I used the dkms -- great tool ;) -- to try nvidia driver version 195
and version 260 (from experimental). Both of them are nicely
compiled and installed by dkms !

But none of them would work under Xen (DOM0). Same problem with black
screen and freeze a few seconds after X starts.

Best regards,
Michel




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



Bug#604010: x11-common: xsession should use $SHELL and not sh directly

2010-11-19 Thread Michel Briand
Package: x11-common
Version: 1:7.5+7
Severity: normal

I'm used to bash since ages.

Debian recently moved to /bin/dash - /bin/sh to speed up system scripts.

I use many bashisms in my .xsession.
I've configured /bin/bash as my prefered shell.

50x11-common_determine-startup SHOULD not use sh $STARTUPFILE
but $SHELL $STARTUPFILE

Regards,
Michel

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages x11-common depends on:
ii  debconf [debconf-2.0] 1.5.36 Debian configuration management sy
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip

x11-common recommends no packages.

x11-common suggests no packages.

-- debconf information:
  x11-common/xwrapper/allowed_users: Console Users Only
  x11-common/xwrapper/actual_allowed_users: console



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



Bug#603342: libgutenprintui2-1: ui problems with PPD provided by printer manufacturer

2010-11-13 Thread Michel Briand
Package: libgutenprintui2-1
Version: 5.2.6-1
Severity: normal

Hello,

I've a Postscript printer configured with the PPD provided by the manufacturer. 
Cups is ok.

NOTE: I've decided to use Gutenprint because printing very large images with 
Cups alone leads to printer memory error !!!

When setting up Gutenprint parameters (launched via Gimp), I've strange 
messages until I change the command line lp -s -d 'laserjet' to something
more sensible lp... (NB: laserjet is my old printer which is no more 
accessible).

When printing in Gimp through Gutenprint I've this message after job is 
launched:

Erreur d'appel pour la procédure « gimp-message » :
La procédure « gimp-message » a été appelée avec la valeur « 
l?identifiant de la requête est antares-79 (0 fichier(s))
 » pour le paramÃ#tre « message » (#1, type gchararray). 
Cette valeur est hors-limite.

A lot of utf-8 text, whereas my locale is iso-8859-15, and a problem reporting 
the cups/lp message.

Best regards,
Michel

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages libgutenprintui2-1 depends on:
ii  libatk1.0-0 1.30.0-1 The ATK accessibility toolkit
ii  libc6   2.11.2-6 Embedded GNU C Library: Shared lib
ii  libcairo2   1.8.10-6 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.8.0-2.1generic font configuration library
ii  libfreetype62.4.2-1  FreeType 2 font engine, shared lib
ii  libglib2.0-02.24.2-1 The GLib library of C routines
ii  libgtk2.0-0 2.20.1-2 The GTK+ graphical user interface 
ii  libgutenprint2  5.2.6-1  runtime for the Gutenprint printer
ii  libpango1.0-0   1.28.3-1 Layout and rendering of internatio
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages libgutenprintui2-1 recommends:
ii  gutenprint-locales5.2.6-1locale data files for Gutenprint

libgutenprintui2-1 suggests no packages.

-- no debconf information



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



Bug#603342: libgutenprintui2-1: ui problems with PPD provided by printer manufacturer

2010-11-13 Thread Michel Briand

Roger Leigh rle...@codelibre.net - Sat, 13 Nov 2010 12:48:51 +

On Sat, Nov 13, 2010 at 10:27:38AM +0100, Michel Briand wrote:
 I've a Postscript printer configured with the PPD provided by the 
 manufacturer. 
 Cups is ok.
 
 NOTE: I've decided to use Gutenprint because printing very large images with 
 Cups alone leads to printer memory error !!!

What do you mean by cups alone in this context.  Can you take me
though exactly you are doing in each case?

I mean I print to the cups's queue configured with the PPD [1]. No
filter. As I understood when I use Gutenprint from Gimp, it processes
the data and then send it to the queue.

[1]
http://www.brother.com/cgi-bin/agreement/agreement.cgi?dlfile=http://www.brother.com/pub/bsc/linux/dlf/BR9320_2_GPL.ppd.gzlang=English_gpl
Do you know this printer ?

Please note that when I print (this particularly big image (*)) with
Gimp directly to the queue, the job fails : the printer stops and cries
about memory error.

(*) ImageMagick tells me:
PNG 4440x6240 4440x6240+0+0 16-bit DirectClass 125.2MB 4.220u 0:04.379

--- this problem is indeed the reason I tried Gutenprint ;) If we
could also discuss about that :)

Note also that my queue is working correctly for other documents
(ooffice, scribus, ...).

 When setting up Gutenprint parameters (launched via Gimp), I've strange 
 messages until I change the command line lp -s -d 'laserjet' to something
 more sensible lp... (NB: laserjet is my old printer which is no more 
 accessible).

You may need to set up an entirely new profile in Gutenprint for
your printer; the old profile may be safely deleted.

Ok it worked.

 When printing in Gimp through Gutenprint I've this message after job is 
 launched:
 
 Erreur d'appel pour la procédure « gimp-message » :
 La procédure « gimp-message » a été appelée avec la valeur « 
 l?identifiant de la requête est antares-79 (0 fichier(s))
  » pour le paramÃ#tre « message » (#1, type gchararray). 
 Cette valeur est hors-limite.
 
 A lot of utf-8 text, whereas my locale is iso-8859-15, and a problem 
 reporting 
 the cups/lp message.

If you send the entire set of logs, that would be useful.  Also,
if you run in a C or en locale, I'll be better able to understand
them.

export LANG=C
gimp ... 

I've attached the screenshot of the resulting message.

Regards,
Michel

attachment: snapshot_gimp_message.png

signature.asc
Description: PGP signature


Bug#602306: update-notifier-common: segmentation fault

2010-11-04 Thread Michel Briand

Julian Andres Klode j...@debian.org - Wed, 03 Nov 2010 17:31:54 +0100

On Mi, 2010-11-03 at 16:58 +0100, Michel Briand wrote:
 Package: update-notifier-common
 Version: 0.99.3debian6
 Severity: normal
 
 apt_check seems to be broken.
 
 Repeating messages in /var/log/messages rang a bell :
 
 Nov  3 14:42:14 eana kernel: [267334.156043] apt-check[20433]: segfault at 0 
 ip 7fea023498ab sp 7fff54e24878 error 6 in 
 libc-2.11.2.so[7fea022ca000+158000]
 
 Trying as a normal user:
 
 $ /usr/lib/update-notifier/apt_check.py
 Erreur de segmentation
 
That's clearly not a bug in apt_check, it's just a Python script. Please
get a backtrace and if you can identify the cause of the bug, reassign
the bug, otherwise add the backtrace to the bug. For information on how
to get a backtrace, see http://wiki.debian.org/HowToGetABacktrace

You might need to install python-apt-dbg and/or python-dbg to get a
useful backtrace.

Python won't provide a backtrace by itself.

So ...

$ gdb python
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show copying
and show warranty for details.
This GDB was configured as x86_64-linux-gnu.
For bug reporting instructions, please see:
http://www.gnu.org/software/gdb/bugs/...
Reading symbols from /usr/bin/python...Reading symbols from 
/usr/lib/debug/usr/bin/python2.6...done.
(no debugging symbols found)...done.
(gdb) run /usr/lib/update-notifier/apt_check.py
Starting program: /usr/bin/python /usr/lib/update-notifier/apt_check.py
[Thread debugging using libthread_db enabled]

Program received signal SIGSEGV, Segmentation fault.
0x76a4b8ab in memcpy () from /lib/libc.so.6
(gdb) bt
#0  0x76a4b8ab in memcpy () from /lib/libc.so.6
#1  0x76318e05 in pkgCacheGenerator::pkgCacheGenerator(DynamicMMap*, 
OpProgress*) ()
   from /usr/lib/libapt-pkg.so.4.10
#2  0x7631b315 in pkgCacheGenerator::MakeStatusCache(pkgSourceList, 
OpProgress*, MMap**, bool) ()
   from /usr/lib/libapt-pkg.so.4.10
#3  0x7630ed73 in pkgCacheFile::BuildCaches(OpProgress*, bool) () from 
/usr/lib/libapt-pkg.so.4.10
#4  0x7630eebc in pkgCacheFile::Open(OpProgress*, bool) () from 
/usr/lib/libapt-pkg.so.4.10
#5  0x765b0afa in pkgCacheFile::Open (type=0x767d7220, Args=value 
optimized out, 
kwds=value optimized out) at /usr/include/apt-pkg/cachefile.h:59
#6  PkgCacheNew (type=0x767d7220, Args=value optimized out, kwds=value 
optimized out)
at python/cache.cc:309
#7  0x0046f0a3 in type_call (type=0x0, args=
(OpNullProgress(subop='', percent=float at remote 0x8ab5b0, subOp='', 
major_change=1, majorChange=1, op='Reading package lists', Op='Reading package 
lists') at remote 0x77e8f2d0,), kwds=0x0)
at ../Objects/typeobject.c:726
#8  0x0041ef47 in PyObject_Call (func=type at remote 0x767d7220, 
arg=
unknown at remote 0x7fff9310, kw=unknown at remote 0x42e8) at 
../Objects/abstract.c:2492
#9  0x004a72b8 in do_call (f=
Frame 0x9f33c0, for file /usr/lib/update-notifier/apt_check.py, line 95, in 
run (options=Values(security_updates_unattended=None, show_package_names=None, 
readable_output=None) at remote 0x77e383f8), 
throwflag=value optimized out) at ../Python/ceval.c:3968
#10 call_function (f=
Frame 0x9f33c0, for file /usr/lib/update-notifier/apt_check.py, line 95, in 
run (options=Values(security_updates_unattended=None, show_package_names=None, 
readable_output=None) at remote 0x77e383f8), 
throwflag=value optimized out) at ../Python/ceval.c:3773
#11 PyEval_EvalFrameEx (f=
Frame 0x9f33c0, for file /usr/lib/update-notifier/apt_check.py, line 95, in 
run (options=Values(security_updates_unattended=None, show_package_names=None, 
readable_output=None) at remote 0x77e383f8), 
throwflag=value optimized out) at ../Python/ceval.c:2412
#12 0x004a95c1 in PyEval_EvalCodeEx (co=0x77f0a6c0, globals=value 
optimized out, 
locals=value optimized out, args=0x1, argcount=value optimized out, 
kws=value optimized out, 
kwcount=0, defs=0x77e8f7a8, defcount=1, closure=0x0) at 
../Python/ceval.c:3000
#13 0x004a7752 in fast_function (f=
Frame 0x92f0d0, for file /usr/lib/update-notifier/apt_check.py, line 197, 
in module (), 
throwflag=value optimized out) at ../Python/ceval.c:3846
#14 call_function (f=
Frame 0x92f0d0, for file /usr/lib/update-notifier/apt_check.py, line 197, 
in module (), 
throwflag=value optimized out) at ../Python/ceval.c:3771
#15 PyEval_EvalFrameEx (f=
Frame 0x92f0d0, for file /usr/lib/update-notifier/apt_check.py, line 197, 
in module (), 
throwflag=value optimized out) at ../Python/ceval.c:2412
#16 0x004a95c1 in PyEval_EvalCodeEx (co=0x77f0a738, globals=value 
optimized out

Bug#602306: update-notifier-common: segmentation fault

2010-11-03 Thread Michel Briand
Package: update-notifier-common
Version: 0.99.3debian6
Severity: normal

apt_check seems to be broken.

Repeating messages in /var/log/messages rang a bell :

Nov  3 14:42:14 eana kernel: [267334.156043] apt-check[20433]: segfault at 0 ip 
7fea023498ab sp 7fff54e24878 error 6 in 
libc-2.11.2.so[7fea022ca000+158000]

Trying as a normal user:

$ /usr/lib/update-notifier/apt_check.py
Erreur de segmentation


Best regards,
Michel

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

Kernel: Linux 2.6.32-5-amd64 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages update-notifier-common depends on:
ii  python  2.6.6-3+squeeze1 interactive high-level object-orie
ii  python-apt  0.7.98.1 Python interface to libapt-pkg

Versions of packages update-notifier-common recommends:
ii  libpam-modules1.1.1-6.1  Pluggable Authentication Modules f

update-notifier-common suggests no packages.

-- Configuration Files:
/etc/apt/apt.conf.d/10periodic changed:
APT::Periodic::Update-Package-Lists 0;
APT::Periodic::Download-Upgradeable-Packages 0;
APT::Periodic::AutocleanInterval 0;
APT::Periodic::Unattended-Upgrade 0;


-- no debconf information



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



Bug#570365: nvidia-glx: problem confirmed in with latest xen hypervisor

2010-10-31 Thread Michel Briand
Hello,

my latest try : X11 starts up and freeze with a black screen.

I've updated the nvidia package to 195.36.31-5.

ii  nvidia-glx195.36.31-5
ii  nvidia-kernel-2.6-xen-amd64   195.36.31+1
ii  nvidia-kernel-2.6.32-5-amd64  195.36.31+2+4+2.6.32-24
ii  nvidia-kernel-2.6.32-5-xen-am 195.36.31+1+2+2.6.32-21
ii  nvidia-kernel-common  20100522+1
ii  nvidia-kernel-dkms195.36.31-5
ii  nvidia-settings   195.36.24-1
ii  nvidia-vdpau-driver   195.36.31-5

Xen and Kernel packages are up to date with testing :

ii  xen-hypervisor-4.0-amd64  4.0.1-1

ii  linux-image-2.6-amd64 2.6.32+28
ii  linux-image-2.6.32-5-amd642.6.32-26
ii  linux-image-2.6.32-5-xen-amd6 2.6.32-26
ii  linux-image-xen-amd64 2.6.32+28

When I boot with Xen hypervisor + Linux 2.6.32-5, X11 starts up and
freeze with a black screen.

I've attached Xorg.log and an extract of /var/log/messages : 

- messages.firstTrace : is similar to which I sent to debian bug #601869
  (even if in the first place (in 601869) the nvidia module was not
  loaded) -- at this time the boot process did not reach X startup.

- messages.secondTrace : kernel messages when X has started.


Kind regards,
Michel

PS: I don't understand why some package has a number with a - and some
with a + in their version.



Xorg.0.log.blackfreeze
Description: Binary data


messages.firstTrace
Description: Binary data


messages.secondTrace
Description: Binary data


Bug#601869: xen-hypervisor-4.0-amd64: xen boot reports a kernel trace : memory problem

2010-10-30 Thread Michel Briand
Package: xen-hypervisor-4.0-amd64
Version: 4.0.1-1
Severity: normal

Hello,

I've this message in dmesg that I can't understand:


[4.032472] [ cut here ]
[4.032521] WARNING: at 
/build/buildd-linux-2.6_2.6.32-26-amd64-KkHF2p/linux-2.6-2.6.32/debian/build/source_amd64_xen/mm/page_alloc.c:1833
 __alloc_pages_nodemask+0x177/0x5f5()
[4.032590] Hardware name: MS-7311
[4.032630] Modules linked in: processor(+) button soundcore snd_page_alloc 
i2c_core acpi_processor usbhid hid xfs exportfs dm_mod usb_storage sd_mod 
crc_t10dif uhci_hcd fan ahci firewire_ohci ehci_hcd r8169 mii firewire_core 
crc_itu_t libata thermal floppy thermal_sys e1000e scsi_mod usbcore nls_base 
[last unloaded: scsi_wait_scan]
[4.033512] Pid: 431, comm: modprobe Not tainted 2.6.32-5-xen-amd64 #1
[4.033512] Call Trace:
[4.033512]  [810bad5a] ? __alloc_pages_nodemask+0x177/0x5f5
[4.033512]  [810bad5a] ? __alloc_pages_nodemask+0x177/0x5f5
[4.033512]  [8104ec7c] ? warn_slowpath_common+0x77/0xa3
[4.033512]  [810bad5a] ? __alloc_pages_nodemask+0x177/0x5f5
[4.033512]  [810ba13b] ? __get_free_pages+0x9/0x46
[4.033512]  [810e89c9] ? __kmalloc+0x3f/0x141
[4.033512]  [811d9594] ? acpi_ex_load_op+0xbc/0x269
[4.033512]  [811d95ae] ? acpi_ex_load_op+0xd6/0x269
[4.033512]  [811da637] ? acpi_ex_resolve_to_value+0x1fb/0x20c
[4.033512]  [811d3b1b] ? acpi_ds_exec_end_op+0xe7/0x3b8
[4.033512]  [811e4f92] ? acpi_ps_parse_loop+0x7c0/0x946
[4.033512]  [811e40d8] ? acpi_ps_parse_aml+0x8f/0x2ca
[4.033512]  [811e5762] ? acpi_ps_execute_method+0x1e7/0x2b1
[4.033512]  [811e1219] ? acpi_ns_evaluate+0xe1/0x19e
[4.033512]  [811e0cb6] ? acpi_evaluate_object+0xf7/0x1ec
[4.033512]  [810244e7] ? init_intel_pdc+0x101/0x20c
[4.033512]  [a01b3bd1] ? xen_acpi_processor_add+0x2c2/0x405 
[processor]
[4.033512]  [811cb363] ? acpi_device_probe+0x4a/0x10e
[4.033512]  [8122fc3c] ? driver_probe_device+0xa3/0x14b
[4.033512]  [8122fd33] ? __driver_attach+0x4f/0x6f
[4.033512]  [8122fce4] ? __driver_attach+0x0/0x6f
[4.033512]  [8122f50b] ? bus_for_each_dev+0x43/0x74
[4.033512]  [8122eecb] ? bus_add_driver+0xaf/0x1f8
[4.033512]  [8122ffeb] ? driver_register+0xa7/0x111
[4.033512]  [a01ba000] ? acpi_processor_init+0x0/0x12f [processor]
[4.033512]  [a01ba0ad] ? acpi_processor_init+0xad/0x12f 
[processor]
[4.033512]  [81069581] ? __blocking_notifier_call_chain+0x51/0x5f
[4.033512]  [8100a065] ? do_one_initcall+0x64/0x174
[4.033512]  [8107b4f8] ? sys_init_module+0xc5/0x21a
[4.033512]  [81011b42] ? system_call_fastpath+0x16/0x1b
[4.033512] ---[ end trace 5ffea4bc40debc2d ]---


Best regards,
Michel

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

Kernel: Linux 2.6.32-5-xen-amd64 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

xen-hypervisor-4.0-amd64 depends on no packages.

Versions of packages xen-hypervisor-4.0-amd64 recommends:
ii  xen-utils-4.0 4.0.1-1XEN administrative tools

Versions of packages xen-hypervisor-4.0-amd64 suggests:
ii  xen-docs-4.0  4.0.1-1Documentation for Xen

-- no debconf information



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



Bug#570365: nvidia-glx: problem confirmed in with latest xen hypervisor

2010-08-14 Thread Michel Briand
Package: nvidia-glx
Version: 195.36.24-4
Severity: normal

Tested theses setup:

1/
xen hypervisor 4.0.1~rc3-1
+ linux-image xen (linux-image-2.6.32-bpo.5-xen-amd64)
+ nvidia 195.36.24 built from dkms

2/
linux-image xen (linux-image-2.6.32-bpo.5-xen-amd64)
+ nvidia 195.36.24 built from dkms

3/
linux-image without xen (linux-image-2.6.32-bpo.5-amd64)
+ nvidia 195.36.24 built from dkms

Test results: 1 fails, whereas 2 and 3 work.
When the system fails, we have the message:

   Xorg: Corrupted page table

Tests 2 and 3 work well: launched successfully glxinfo, 
glxgears and openarena.

Maybe this bug is related to #470817 ?

Test results point at a problem between Xen Hypervisor and 
NVIDIA driver memory management.

Best regards,
Michel


-- Package-specific info:
uname -a:
Linux nipour 2.6.32-bpo.5-xen-amd64 #1 SMP Fri Jun 11 12:21:09 UTC 2010 x86_64 
GNU/Linux

/proc/version:
Linux version 2.6.32-bpo.5-xen-amd64 (Debian 2.6.32-15~bpo50+1) 
(norb...@tretkowski.de) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Fri Jun 
11 12:21:09 UTC 2010

/proc/driver/nvidia/version: 
NVRM version: NVIDIA UNIX x86_64 Kernel Module  195.36.24  Thu Apr 22 19:10:14 
PDT 2010
GCC version:  gcc version 4.3.5 (Debian 4.3.5-2) 

lspci 'VGA compatible controller [0300]':
01:00.0 VGA compatible controller [0300]: nVidia Corporation G73 [GeForce 7600 
GS] [10de:0392] (rev a1) (prog-if 00 [VGA controller])
Subsystem: Micro-Star International Co., Ltd. Device [1462:0620]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- INTx-
Latency: 0
Interrupt: pin A routed to IRQ 16
Region 0: Memory at fa00 (32-bit, non-prefetchable) [size=16M]
Region 1: Memory at d000 (64-bit, prefetchable) [size=256M]
Region 3: Memory at fb00 (64-bit, non-prefetchable) [size=16M]
Region 5: I/O ports at cf00 [size=128]
[virtual] Expansion ROM at fc00 [disabled] [size=128K]
Capabilities: access denied
Kernel driver in use: nvidia
Kernel modules: nouveau, nvidiafb


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

Kernel: Linux 2.6.32-bpo.5-xen-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages nvidia-glx depends on:
ii  dpkg 1.15.7.2Debian package management system
ii  libc62.11.2-2Embedded GNU C Library: Shared lib
ii  libx11-6 2:1.3.3-3   X11 client-side library
ii  libxext6 2:1.1.2-1   X11 miscellaneous extension librar
ii  nvidia-kernel-dkms [nvidia-k 195.36.24-4 NVIDIA binary kernel module DKMS s

Versions of packages nvidia-glx recommends:
ii  nvidia-vdpau-driver  195.36.24-4 NVIDIA vdpau driver

Versions of packages nvidia-glx suggests:
ii  nvidia-kernel-dkms   195.36.24-4 NVIDIA binary kernel module DKMS s
ii  nvidia-settings  195.36.24-1 Tool for configuring the NVIDIA gr

Versions of packages nvidia-kernel-dkms depends on:
ii  dkms  2.1.1.2-4  Dynamic Kernel Module Support Fram
ii  nvidia-kernel-common  20100522+1 NVIDIA binary kernel module suppor

Versions of packages nvidia-glx is related to:
ii  binutils   2.20.1-12 The GNU assembler, linker and bina
pn  binutils-gold  none(no description available)
ii  linux-headers-2.6-amd6 2.6.32+28 Header files for Linux 2.6-amd64 (
ii  linux-headers-2.6.32-5 2.6.32-18 Header files for Linux 2.6.32-5-am
ii  linux-headers-2.6.32-b 2.6.32-15~bpo50+1 Header files for Linux 2.6.32-bpo.
ii  linux-headers-2.6.32-b 2.6.32-15~bpo50+1 Header files for Linux 2.6.32-bpo.
ii  nvidia-glx 195.36.24-4   NVIDIA binary Xorg driver
ii  nvidia-kernel-common   20100522+1NVIDIA binary kernel module suppor
ii  nvidia-kernel-dkms 195.36.24-4   NVIDIA binary kernel module DKMS s
pn  nvidia-kernel-source   none(no description available)
ii  xserver-xorg   1:7.5+6   the X.Org X server
ii  xserver-xorg-core  2:1.7.7-3 Xorg X server - core server

-- no debconf information



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



Bug#592862: reportbug: ui gtk launched through ssh -X crashes due to X11 BadValue error

2010-08-14 Thread Michel Briand

$ python -c import gtk ; print gtk.ver 
(2, 21, 1)



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



Bug#592938: installation of debhelper make dkms work

2010-08-14 Thread Michel Briand
Package: dkms
Version: 2.1.1.2-4
Severity: normal

After installation of debhelper, the dkms command worked normally.

apt-get install debhelper pulled those packages: autopoint debhelper gettext
git html2text intltool-debian libdigest-sha1-perl liberror-perl
libmailsendmail-perl libsys-hostname-long-perl libunistring0 po-debconf.



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

Kernel: Linux 2.6.32-bpo.5-xen-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages dkms depends on:
ii  build-essential   11.5   Informational list of build-essent
ii  coreutils 8.5-1  GNU core utilities
ii  dpkg-dev  1.15.7.2   Debian package development tools
ii  gcc   4:4.4.4-2  The GNU C compiler
ii  lsb-release   3.2-23.1   Linux Standard Base version report
ii  make  3.81-8 An utility for Directing compilati
ii  module-init-tools 3.12-1 tools for managing Linux kernel mo

Versions of packages dkms recommends:
ii  fakeroot   1.14.4-1  Gives a fake root environment
ii  linux-headers-2.6-amd6 2.6.32+28 Header files for Linux 2.6-amd64 (
ii  linux-headers-2.6.32-5 2.6.32-18 Header files for Linux 2.6.32-5-am
ii  linux-image-2.6.32-5-a 2.6.32-18 Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-5-x 2.6.32-18 Linux 2.6.32 for 64-bit PCs, Xen d
ii  linux-image-2.6.32-bpo 2.6.32-15~bpo50+1 Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-bpo 2.6.32-15~bpo50+1 Linux 2.6.32 for 64-bit PCs, Xen d
ii  menu   2.1.43generates programs menu for all me
ii  patch  2.6-2 Apply a diff file to an original
ii  sudo   1.7.2p7-1 Provide limited super user privile

dkms suggests no packages.

-- no debconf information



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



Bug#592862: reportbug: ui gtk launched through ssh -X crashes due to X11 BadValue error

2010-08-14 Thread Michel Briand
I cannot reproduce the problem.

I'd rather say that this was a GTK related problem.





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



Bug#592862: reportbug: ui gtk launched through ssh -X crashes due to X11 BadValue error

2010-08-13 Thread Michel Briand
Package: reportbug
Version: 4.12.4
Severity: important

Hello,

using ssh -X to admin my machine, I tried to report a bug with the gtk ui.
It crashed with the error:

mic...@nipour:~$ reportbug dkms
The program 'reportbug' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadValue (integer parameter out of range for operation)'.
  (Details: serial 162 error_code 2 request_code 148 minor_code 3)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

Best regards,
Michel

-- Package-specific info:
** Environment settings:
DEBEMAIL=michelbri...@free.fr
INTERFACE=text

** /home/michel/.reportbugrc:
reportbug_version 4.12.4
mode advanced
ui gtk2
realname Michel Briand

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

Kernel: Linux 2.6.32-bpo.5-xen-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages reportbug depends on:
ii  apt   0.7.25.3   Advanced front-end for dpkg
ii  python2.6.5-11   interactive high-level object-orie
ii  python-reportbug  4.12.4 Python modules for interacting wit

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utilsnone  (no description available)
pn  debsums  none  (no description available)
ii  dlocate  1.02fast alternative to dpkg -L and dp
ii  emacs23-bin-common   23.1+1-5The GNU Emacs editor's shared, arc
ii  file 5.04-4  Determines file type using magic
ii  gnupg1.4.10-4GNU privacy guard - a free PGP rep
ii  postfix [mail-transp 2.7.1-1 High-performance mail transport ag
ii  python-gtk2  2.17.0-3Python bindings for the GTK+ widge
pn  python-gtkspell  none  (no description available)
pn  python-urwid none  (no description available)
ii  python-vte   1:0.24.3-1  Python bindings for the VTE widget
ii  xdg-utils1.0.2+cvs20100307-1 desktop integration utilities from

-- no debconf information



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



Bug#592863: dkms is missing a dependency on debhelper

2010-08-13 Thread Michel Briand
Package: dkms
Version: 2.1.1.2-4
Severity: important

Hello,

I use dkms to build the nvidia module.
I issued this command:
# dkms --all mkdeb -m nvidia -v 195.36.24

dkms exited with an error because dh_testdir is not found.

Complete execution log:

r...@nipour ~ # dkms --all mkdeb -m nvidia -v 195.36.24
Using /etc/dkms/template-dkms-mkdeb
copying template...
modifying debian/changelog...
modifying debian/compat...
modifying debian/control...
modifying debian/copyright...
modifying debian/dirs...
modifying debian/postinst...
modifying debian/prerm...
modifying debian/README.Debian...
modifying debian/rules...
copying legacy postinstall template...
Copying source tree...
Gathering binaries...Marking modules for 2.6.32-5-amd64 (x86_64) for 
archiving...

Creating special tarball structure to accomodate only binaries.


Tarball location: 
/var/lib/dkms/nvidia/195.36.24/tarball/nvidia-195.36.24.dkms.tar.gz

DKMS: mktarball Completed.

Copying DKMS tarball into DKMS tree...
Building binary package...dpkg-buildpackage: warning: using a gain-root-command 
while being root
 fakeroot debian/rules clean
make: dh_testdir: Command not found
make: *** [clean] Error 127
dpkg-buildpackage: error: fakeroot debian/rules clean gave error exit status 2
(bad exit status: 2)

Error! There was a problem creating your deb.


Cheers,
Michel

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

Kernel: Linux 2.6.32-bpo.5-xen-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages dkms depends on:
ii  build-essential   11.5   Informational list of build-essent
ii  coreutils 8.5-1  GNU core utilities
ii  dpkg-dev  1.15.7.2   Debian package development tools
ii  gcc   4:4.4.4-2  The GNU C compiler
ii  lsb-release   3.2-23.1   Linux Standard Base version report
ii  make  3.81-8 An utility for Directing compilati
ii  module-init-tools 3.12-1 tools for managing Linux kernel mo

Versions of packages dkms recommends:
ii  fakeroot   1.14.4-1  Gives a fake root environment
ii  linux-headers-2.6-amd6 2.6.32+28 Header files for Linux 2.6-amd64 (
ii  linux-headers-2.6.32-5 2.6.32-18 Header files for Linux 2.6.32-5-am
ii  linux-image-2.6.32-5-a 2.6.32-18 Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-5-x 2.6.32-18 Linux 2.6.32 for 64-bit PCs, Xen d
ii  linux-image-2.6.32-bpo 2.6.32-15~bpo50+1 Linux 2.6.32 for 64-bit PCs
ii  linux-image-2.6.32-bpo 2.6.32-15~bpo50+1 Linux 2.6.32 for 64-bit PCs, Xen d
ii  menu   2.1.43generates programs menu for all me
ii  patch  2.6-2 Apply a diff file to an original
ii  sudo   1.7.2p7-1 Provide limited super user privile

dkms suggests no packages.

-- no debconf information



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



Bug#592862: reportbug: ui gtk launched through ssh -X crashes due to X11 BadValue error

2010-08-13 Thread Michel Briand
Yes, sure.

xterm, xclock, emacs (gtk version) ...




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



Bug#591232: network-manager uninstall should not deactivate network

2010-08-01 Thread Michel Briand
Package: network-manager
Version: 0.6.6-3
Severity: critical
Justification: breaks the whole system

Hello,

network-manager removal script triggers network interfaces shutdown.

Since the apt-get process was launched through ssh, it hangs.

Hopefully, when logged in with the console, I were able to restart the
interfaces manually, and ssh recovered the connection, even if it took
me 2 min to do so ... !

(( Removing useless packages from a server (did a normal install), is
a somewhat normal task ... Because network-manager comes automatically
with gnome which comes from the normal install ... it's justified to
be able to remove it through a ssh session, isn't it ? ))

Regards

-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (901, 'stable'), (900, 'stable'), (90, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages network-manager depends on:
ii  adduser 3.110add and remove users and groups
ii  dbus1.2.1-5+lenny1   simple interprocess messaging syst
pn  dhcdbd  none   (no description available)
ii  hal 0.5.11-8 Hardware Abstraction Layer
ii  ifupdown0.6.8+nmu1   high level tools to configure netw
ii  iproute 20080725-2   networking and traffic control too
pn  iputils-arping  none   (no description available)
ii  libc6   2.7-18lenny4 GNU C Library: Shared libraries
ii  libdbus-1-3 1.2.1-5+lenny1   simple interprocess messaging syst
ii  libdbus-glib-1-20.84-1~bpo50+1   simple interprocess messaging syst
ii  libgcrypt11 1.4.1-1  LGPL Crypto library - runtime libr
ii  libglib2.0-02.22.4-1~bpo50+1 The GLib library of C routines
ii  libgpg-error0   1.4-2library for common error values an
ii  libhal1 0.5.11-8 Hardware Abstraction Layer - share
ii  libiw29 29-1.1   Wireless tools - library
pn  libnl1-pre6 none   (no description available)
pn  libnm-util0 none   (no description available)
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
pn  wpasupplicant   none   (no description available)

Versions of packages network-manager recommends:
pn  network-manager-gnome | netwo none (no description available)

network-manager suggests no packages.



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



Bug#591232: network-manager uninstall should not deactivate network

2010-08-01 Thread Michel Briand

Alexander Kurtz kurtz.a...@googlemail.com - Sun, 01 Aug 2010 19:20:23
+0200

fixed 591232 0.8.0.999-1
tag 591232 confirmed
severity 591232 important
thanks

Hi,

I investigated this problem in a VM. Here's what I found:

Test time   | Network-Manager Version | Network connection is configured by
| | /etc/network/interfaces | 
 Network-Manager
+-+-+
after install   | 0.6.6-3 (lenny) | connection is recreated | 
connection is recreated
after remove| 0.6.6-3 (lenny) | connection is down  | 
connection is down
after install   | 0.8.0.999-1 (squeeze)   | connection is untouched | 
connection is recreated
after remove| 0.8.0.999-1 (squeeze)   | connection is untouched | 
connection is untouched

So my conclusions are:

 a) Network-Manager does indeed have the described bug (connection down 
after removal).

 b) The connection is also down after removal even if it was configured 
manually.

 c) a) and b) only apply to the version in lenny, the NM version in 
squeeze seems to behave in a sensible way

 d) The package description clearly says that Network Manager

 is intended only for the desktop use-case, and is not intended
  for usage on servers

Therefore you should expect things to break if you have it installed
on a server. If you want to install Gnome on your server do a 
standard (non-graphical) install and then use

 apt-get install gnome network-manager-

This will install gnome without NM.

I have changed the bug report according to the above. If you or the
maintainer think that is wrong, feel free to revert the changes.

Best regards

Alexander

Thank you very much for this investigation.

My use case was not to install NM on a server, but, with a fresh
normal install (which includes gnome and this NM), was to try to
remove it :).

Anyway, if squeeze's version seems to behave correctly, then that's
nice !

Regards,

Michel


signature.asc
Description: PGP signature


Bug#575709: fortunes-fr: too many different flavors and too many offensive sentences

2010-03-28 Thread Michel Briand
Package: fortunes-fr
Version: 0.65
Severity: normal

The package fortunes-fr contains too many different flavors of fortunes
(litterature, irc quotes, dirty sentences, ...) and too many offensive
sentences.

This make the package unusable (not usefull, offending, ...) for most users.

Beside that most of irc quotes and dirty sentences (tribune-linuxfr, gfa, gcu,
gpj, glp, mauriceetpatapon, ...) are of no interest for most educated french
speaking people.

It'd be nice to split the package in two: fortunes-fr (litterature,
philosophie, cinema, poetry, ...) and fortunes-fr-geek (the rest).

Best regards,
Michel


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (901, 'stable'), (900, 'stable'), (90, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages fortunes-fr depends on:
ii  coreutils   6.10-6   The GNU core utilities
ii  debconf [debconf-2.0]   1.5.24   Debian configuration management sy
ii  fortune-mod 1:1.99.1-3.1 provides fortune cookies on demand
ii  grep2.5.3~dfsg-6 GNU grep, egrep and fgrep
ii  sed 4.1.5-6  The GNU sed stream editor

fortunes-fr recommends no packages.

fortunes-fr suggests no packages.

-- debconf-show failed



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



Bug#509573: xserver-xorg-video-vesa: reproduced with another nvidia board

2010-03-28 Thread Michel Briand
Package: xserver-xorg-video-vesa
Version: 1:1.3.0-4
Followup-For: Bug #509573

Hello,

bug reproduced with another nvidia board.

Fresh install of Lenny on an old PC with an old CRT (NEC MultiSync FE 700+).

Card (lspci): nvidia GeForce 7600 GS
Xorg detected product (vbe driver): G73 Bord - p508h4

The main problem seems to be that nvidia cards (BIOS) are broken and vbe driver
cannot pick up DDC information correctly.

The driver cannot get proper information so it falls back to VESA modes.  The
default VESA modes are not so ubiquitous default as they may be (thanks
nvidia).

The X server is not hanged yet. One can use the shortcuts CTRL+ALT+'+' and
CTRL+ALT+'-' to switch to another resolution.

Solution for the impatient: declare a working screen frequency / working
resolution in xorg.conf (hardcode, specific to installed monitor).

Resolution of this problem: try to be less specific.

Suggestion for vbe driver of Xorg: implement a workaround for nvidia cards when
vbe driver fails to read DDC information.

Maybe this suggestion also apply to xserver-xorg-video-nv.

NOTE: when switched to a working resolution with the shortcut explained above,
launch the resolution tool from the GNOME menu. You'll see an empty list of
modes. Annoying :P ...

Cheers,
Michel


-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

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

X server symlink status:
lrwxrwxrwx 1 root root 13 nov  1  2006 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718484 jun  8  2009 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation GeForce 7600 GT (rev a2)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3873 ao? 2009 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg
#Section Device
#   Identifier  nVidia Corporation NV43 [GeForce 6600/GeForce 6600 GT]
#   Driver  nvidia
#   BusID   PCI:1:0:0
#   # compiz
#   Option XAANoOffscreenPixmaps true
#   Option AllowGLXWithComposite true
#   Option AddARGBGLXVisuals true
#   Option TripleBuffer  true
#EndSection

Section ServerFlags
Option  DontZap   true
Option  AIGLX on
EndSection

Section ServerLayout
#   InputDevice Magellan
Identifier Default Layout
Screen  0  Default Screen 0 0
InputDeviceGeneric Keyboard
InputDeviceConfigured Mouse
EndSection

Section Files

# path to defoma fonts
FontPath /usr/share/fonts/X11/misc
FontPath /usr/X11R6/lib/X11/fonts/misc
FontPath /usr/share/fonts/X11/100dpi/:unscaled
FontPath /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath /usr/share/fonts/X11/75dpi/:unscaled
FontPath /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath /usr/share/fonts/X11/Type1
FontPath /usr/X11R6/lib/X11/fonts/Type1
FontPath /usr/share/fonts/X11/100dpi
FontPath /usr/X11R6/lib/X11/fonts/100dpi
FontPath /usr/share/fonts/X11/75dpi
FontPath /usr/X11R6/lib/X11/fonts/75dpi
FontPath /var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
#   Loadi2c   (built-in)
#   Load  bitmap  (module non trouv ???)
Load  dbe
#   Loadddc   (built-in)
Load  extmod
Load  freetype
LoadGLcore
Load  glx
Load  int10
Load  record
Load  v4l
Load  vbe
#   Loadtype1
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules xorg
Option  XkbModel pc105
Option  XkbLayout fr
Option  XkbVariant latin9
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device /dev/input/mice
Option  Protocol ImPS/2
EndSection

#Section InputDevice
##  Option  Device/dev/input/js0
#   Option  Device/dev/ttyS0
#   Identifier  Magellan
# 

Bug#542028: iceweasel: fails to parse -remote openurl()

2009-12-20 Thread Michel Briand

Mike Hommey m...@glandium.org - Sun, 20 Dec 2009 22:24:59 +0100

On Sun, Dec 20, 2009 at 01:38:09PM +0100, Michel Briand wrote:
 
 Mike Hommey m...@glandium.org - Sat, 19 Dec 2009 20:27:13 +0100
 
 Hi,
 
 Sorry for the delayed answer.
 
 On Tue, Aug 18, 2009 at 12:32:44PM +0200, Michel Briand wrote:
  I've used strace to investigate this, to trace my shell script that
  used to work (that because it used to work for year that I posted to
  reopen the bug) :
  
  $ strace -s 128 -o totolog2 -f sh -c /usr/lib/iceweasel/firefox-bin 
  -remote 'openurl(http://www.debian.org,new-tab)'
  Error: Failed to send command: 500 command not parseable
  $ grep exec totolog2
  5728  execve(/bin/sh, [sh, -c, /usr/lib/iceweasel/firefox-bin 
  -remote 'openurl(http://www.debian.org,new-tab)'], [/* 57 vars */]) = 0
  5728  set_thread_area({entry_number:-1 - 6, base_addr:0xb7f276b0, 
  limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, 
  limit_in_pages:1, seg_not_present:0, useable:1}) = 0
  5729  execve(/usr/lib/iceweasel/firefox-bin, 
  [/usr/lib/iceweasel/firefox-bin, -remote, 
  openurl(http://www.debian.org,new-tab)], [/* 57 vars */]) = 0
  5729  set_thread_area({entry_number:-1 - 6, base_addr:0xb7d778d0, 
  limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, 
  limit_in_pages:1, seg_not_present:0, useable:1}) = 0
  ...
  5729  write(2, Error: Failed to send command: 500 command not 
  parseable\n..., 57) = 57
  ...
  
  You see: no  in argument to execve, just the string openurl
  
  Strange, isn't it ?
 
 Running directly with firefox-bin should work properly, and it does work
 properly on my system (both lenny and squeeze tested).
 
 Are you sure the strace command above does trigger the bug ?
 
 Yes. This is still an issue. I've Iceweasel 3.0.6-3.

What version of xulrunner-1.9 ?

ii  xulrunner-1.9  1.9.0.15-0lenn XUL + XPCOM application runner

 -- Error: Failed to send command: 500 command not parseable
 
 Do you want the log file ?

yes please, and the exact command line.

Exactly the same as in the email above.


 
 Thank you,
 Michel
 
 Beside this, when it's not running:
 
 $ strace -s 128 -o totolog2 -f sh -c /usr/lib/iceweasel/firefox-bin
 -remote 'openurl(http://www.debian.org,new-tab)'
 Error: No running window found

This is expected.

Strace log attached.

Thank you :).


iceweasel-remote-openurl-problem.log.gz
Description: GNU Zip compressed data


Bug#547441: apt error Dynamic MMap ran out of room

2009-09-19 Thread Michel Briand
Package: apt
Version: 0.7.20.2+lenny1
Severity: normal

Hi,
running Synaptic, button Reload:

E: Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. 
Current value: 1850. (man 5 apt.conf)
E: Erreur apparue lors du traitement de fireflier-server (NewPackage)
E: Problem with MergeList /var/lib/dpkg/status
E: Impossible d'ouvrir ou d'analyser le fichier contenant la liste des états ou 
celui des paquets disponibles.
E: _cache-open() failed, please report.


-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Acquire ;
APT::Acquire::Translation environment;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::Periodic ;
APT::Periodic::Update-Package-Lists 0;
APT::Periodic::Download-Upgradeable-Packages 0;
APT::Periodic::AutocleanInterval 0;
APT::Update ;
APT::Update::Post-Invoke-Success ;
APT::Update::Post-Invoke-Success touch 
/var/lib/apt/periodic/update-success-stamp 2/dev/null || true;
APT::Archives ;
APT::Archives::MaxAge 30;
APT::Archives::MinAge 2;
APT::Archives::MaxSize 500;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::Cache-Limit 1850;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;
Unattended-Upgrade ;
Unattended-Upgrade::Allowed-Origins ;
Unattended-Upgrade::Allowed-Origins:: Debian stable;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Post-Invoke ;
DPkg::Post-Invoke:: if [ -x /usr/bin/debsums ]; then /usr/bin/debsums 
--generate=nocheck -sp /var/cache/apt/archives; fi;
DPkg::Post-Invoke:: if [ -d /var/lib/update-notifier ]; then  touch 
/var/lib/update-notifier/dpkg-run-stamp; fi;

-- /etc/apt/preferences --

Package: nvidia-glx nvidia-glx-dev nvidia-kernel-source nvidia-kernel-185.18.14
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 990

Package: *
Pin: release o=myosotis,a=unstable,l=myosotis
Pin-Priority: 880

Package: *
Pin: release o=Debian,a=stable,l=Debian-Security
Pin-Priority: 1000

Package: *
Pin: release o=Debian,a=stable,l=Debian
Pin-Priority: 900

Package: *
Pin: release o=Debian,a=testing,l=Debian-Security
Pin-Priority: 690

Package: *
Pin: release o=Debian,a=testing,l=Debian
Pin-Priority: 688

Package: *
Pin: release o=Unofficial Multimedia Packages,a=stable,l=Unofficial Multimedia 
Packages
Pin-Priority: 850

Package: *
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 90

Package: e17*
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: libecore*
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: libedje*
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: libedbus*
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: libevas*
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: libeet*
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: efl-dev
Pin: release o=Debian,a=unstable,l=Debian
Pin-Priority: 910

Package: *
Pin: release o=Unofficial Multimedia Packages,a=unstable,l=Unofficial 
Multimedia Packages
Pin-Priority: 50

Package: fglrx-amdcccle fglrx-atieventsd fglrx-control fglrx-driver fglrx-glx 
fglrx-kernel-src fglrx-source
Pin: release o=Debian,a=stable,l=Debian
Pin-Priority: 1000

-- /etc/apt/sources.list --

# 
# deb cdrom:[Debian GNU/Linux testing _Etch_ - Official Snapshot i386 Binary-1 
(20060810)]/ stable main contrib non-free

#deb http://ftp.fr.debian.org/debian/ stable main contrib non-free
#deb-src http://ftp.fr.debian.org/debian/ stable main contrib non-free

#deb http://security.debian.org/ stable/updates main contrib non-free
#deb-src http://security.debian.org/ stable/updates main contrib non-free

deb http://ftp.fr.debian.org/debian/ lenny main contrib non-free
deb http://security.debian.org/ lenny/updates main contrib non-free

deb-src http://ftp.fr.debian.org/debian/ lenny main contrib non-free

deb http://ftp.fr.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.fr.debian.org/debian/ unstable main contrib non-free

# Pour e17...
#deb http://ftp.fr.debian.org/debian/ experimental main contrib non-free
#deb http://debian.alphagemini.org/ unstable main

#deb 

Bug#543792: initial setup : crosshurd failed with apt-get error due to missing gpg key

2009-08-30 Thread Michel Briand

Michael Banck mba...@debian.org - Sun, 30 Aug 2009 14:19:57 +0200

On Sun, Aug 30, 2009 at 01:23:26PM +0200, Michel Briand wrote:
 Michael Banck mba...@debian.org - Sun, 30 Aug 2009 10:14:38 +0200
 On Sun, Aug 30, 2009 at 03:04:06AM +0200, Michel Briand wrote:
  
  Michael Banck mba...@debian.org - Sat, 29 Aug 2009 20:56:37 +0200
  
  On Thu, Aug 27, 2009 at 02:04:46AM +0200, Michel Briand wrote:
   W: Failed to fetch
   http://kheb.homelinux.org/debian/dists/unstable/Release  Unable
   to find expected entry  main/binary-hurd-i386/Packages in
   Meta-index file (malformed Release file?)
  
  Where is this repository from?
 
  This is mine.
  But this should not bother apt, isn't it ?
 
 Well, not sure; can you try commenting it out temporarily?
 
 Better now, but I don't understand why it works now.

Just to be clear, where was this apt source listed, in your regular
host's /etc/apt/sources.list?

No, in /etc/apt/sources.list.d/my.list
But that's equivalent, no ?


In this case, I agree that crosshurd should not trip over this.

 Anyway it fails a little farther:

 Investigating diff
 Package diff has broken dep on diffutils
[...]
 The following packages have unmet dependencies:
   diff: Depends: diffutils but it is not installable

OK, that is sort-of-regular unstable breakage which must be addressed at
the porter/archive level.  Thanks for the notification.


Michael

Ok, then I'll wait for a few days 'til trying again.

Thank you very much.

Michel



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



Bug#543792: initial setup : crosshurd failed with apt-get error due to missing gpg key

2009-08-26 Thread Michel Briand
Package: crosshurd
Version: 1.7.33
Severity: grave
Justification: renders package unusable

Hello,

following instructions in /usr/share/doc/crosshurd/README.gnu
I'm trying to install Hurd.

I've loop mounted the target partition, and issued the 
/usr/sbin/crosshurd command. It fails with an apt-get error
saying it misses a gpg key:


Ign http://ftp.debian-ports.org unreleased/main Packages/DiffIndex
Get:3 http://ftp.de.debian.org unstable/main Packages/DiffIndex [2038B]
Hit http://ftp.debian-ports.org unreleased/main Packages
Fetched 17.2kB in 1s (13.9kB/s)
W: GPG error: http://ftp.debian-ports.org unreleased Release: The following 
signatures couldn't be verified because the public key is not available: 
NO_PUBKEY AE4A31290917E535
W: Failed to fetch http://kheb.homelinux.org/debian/dists/unstable/Release  
Unable to find expected entry  main/binary-hurd-i386/Packages in Meta-index 
file (malformed Release file?)

E: Some index files failed to download, they have been ignored, or old ones 
used instead.
Failed to download the Packages files.


How do I continue ?

Best regards,
Michel


-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (1000, 'stable'), (900, 'stable'), (90, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages crosshurd depends on:
ii  dialog1.1-20080316-1 Displays user-friendly dialog boxe
ii  dpkg-dev  1.14.25Debian package development tools

Versions of packages crosshurd recommends:
ii  attr  1:2.4.43-2 Utilities for manipulating filesys

crosshurd suggests no packages.

-- no debconf information



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



Bug#543145: xine-engine: FLAC decoder buggy with transition and seek

2009-08-22 Thread Michel Briand
Package: amarok
Version: 1.4.10-2
Severity: important

Hello,

I reopen this bug. But I experienced the problem since
a few days only (~10)... Strange.

Seeking in Flac music is buggy like was said above.

Furthermore when Amarok starts a new song it eats the first
few seconds (randomly: this is not a bug reproduced every time).

I think this is related to the xine engine ([1] and [2]).
If I launch Amarok though Xterm, I can see the same error log
as mentioned in those links.

[1] http://bugs.xine-project.org/show_bug.cgi?id=196
[2] http://bbs.archlinux.org/viewtopic.php?id=64274

Best regards,
Michel

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (1000, 'stable'), (900, 'stable'), (90, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages amarok depends on:
ii  amarok-common1.4.10-2architecture independent files for
ii  amarok-engine-xi 1.4.10-2Xine engine for the Amarok audio p
ii  kdelibs4c2a  4:3.5.10.dfsg.1-0lenny1 core libraries and binaries for al
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libgl1-mesa-glx  7.0.3-7 A free implementation of the OpenG
ii  libglib2.0-0 2.16.6-1+lenny1 The GLib library of C routines
ii  libgpod3-nogtk   0.6.0-6 library to read and write songs to
ii  libifp4  1.0.0.2-3   communicate with iRiver iFP audio 
ii  libkarma00.0.6-4 Rio Karma access library [runtime 
ii  libmtp7  0.2.6.1-3   Media Transfer Protocol (MTP) libr
ii  libmysqlclient15 5.0.51a-24+lenny1   MySQL database client library
ii  libnjb5  2.2.5-4.2   Creative Labs Nomad Jukebox librar
ii  libpq5   8.3.7-0lenny1   PostgreSQL C client library
ii  libqt3-mt3:3.3.8b-5+b1   Qt GUI Library (Threaded runtime v
ii  libruby1.8   1.8.7.72-3  Libraries necessary to run Ruby 1.
ii  libsdl1.2debian  1.2.13-2Simple DirectMedia Layer
ii  libsqlite3-0 3.5.9-6 SQLite 3 shared library
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libtag1c2a   1.5-3   TagLib Audio Meta-Data Library
ii  libtunepimp5 0.5.3-7 MusicBrainz tagging library
ii  libusb-0.1-4 2:0.1.12-13 userspace USB programming library
ii  libvisual-0.4-0  0.4.0-2.1   Audio visualization framework
ii  unzip5.52-12 De-archiver for .zip files

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

Versions of packages amarok suggests:
pn  amarok-engines  none   (no description available)
ii  dillo [www-browser] 0.8.6-3  Small and fast web browser
ii  iceweasel [www-browser] 3.0.6-1  lightweight web browser based on M
ii  konqueror [www-browser] 4:3.5.9.dfsg.1-6 KDE's advanced file manager, web b
ii  libvisual-0.4-plugins   0.4.0.dfsg.1-2   Audio visualization framework plug
ii  lynx-cur [www-browser]  2.8.7dev9-2.1Text-mode WWW Browser with NLS sup
pn  moodbar none   (no description available)
ii  w3m [www-browser]   0.5.2-2+b1   WWW browsable pager with excellent

-- no debconf information



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



Bug#542028: iceweasel: fails to parse -remote openurl()

2009-08-18 Thread Michel Briand

Stéphane Glondu st...@glondu.net - Tue, 18 Aug 2009 09:23:03 +0200

Hello,

Michel Briand a écrit :
 [...]
 Error: Failed to send command: 500 command not parseable
 
 [debug of a script]
 ...
 + /usr/bin/iceweasel -remote openurl(http://www.debian.org/,new-window)
 [...]

On my system (with iceweasel 3.5-1), this:

  iceweasel -remote 'openurl(http://www.debian.org/,new-window)'

works perfectly, whereas this:

  iceweasel -remote 'openurl(http://www.debian.org/,new-window)'

or any other attempt to quote a substring in the openurl call fails with
the error you mention.

How exactly do you call iceweasel? I mean, what do you type in the shell
prompt? (before it does any expansion)


Cheers,


Stéphane,

I've read the bug #289745:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=289745

There is already a discussion here about arguments. So I tried to
conform to conclusions expressed there :).

Since it's necessary to escape the () because of the shell, but the
browser won't accept arguments with , this is tricky.

I've used strace to investigate this, to trace my shell script that
used to work (that because it used to work for year that I posted to
reopen the bug) :

$ strace -s 128 -o totolog2 -f sh -c /usr/lib/iceweasel/firefox-bin -remote 
'openurl(http://www.debian.org,new-tab)'
Error: Failed to send command: 500 command not parseable
$ grep exec totolog2
5728  execve(/bin/sh, [sh, -c, /usr/lib/iceweasel/firefox-bin -remote 
'openurl(http://www.debian.org,new-tab)'], [/* 57 vars */]) = 0
5728  set_thread_area({entry_number:-1 - 6, base_addr:0xb7f276b0, 
limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, 
seg_not_present:0, useable:1}) = 0
5729  execve(/usr/lib/iceweasel/firefox-bin, 
[/usr/lib/iceweasel/firefox-bin, -remote, 
openurl(http://www.debian.org,new-tab)], [/* 57 vars */]) = 0
5729  set_thread_area({entry_number:-1 - 6, base_addr:0xb7d778d0, 
limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, 
seg_not_present:0, useable:1}) = 0
...
5729  write(2, Error: Failed to send command: 500 command not parseable\n..., 
57) = 57
...

You see: no  in argument to execve, just the string openurl

Strange, isn't it ?

Cordialement,
Michel



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



Bug#542028: iceweasel: fails to parse -remote openurl()

2009-08-17 Thread Michel Briand
Package: iceweasel
Version: 3.0.6-1
Severity: important

Hello,

having read bug #289745 and tried a lot of techniques
to launch the browser with scripts (including [1], [2]),
I still reproduce the bug identified by this weird error message:

Error: Failed to send command: 500 command not parseable

[debug of a script]
...
+ /usr/bin/iceweasel -remote openurl(http://www.debian.org/,new-window)
...

Tryied the 'browse' program from [2]:
$ ~/browse -- http://www.debian.org/
$ Error: Failed to send command: 500 command not parseable

I disabled all extensions in Iceweasel : same result.

Starting with a new profile (another user, ~/.mozilla removed), the
problem disappears !

There is something wrong somewhere in the Firefox realm, but where ?

Cheers,
Michel

[1] http://www.mozilla.org/unix/remote.html
[2] http://www.dwheeler.com/browse/

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (1000, 'stable'), (900, 'stable'), (90, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages iceweasel depends on:
ii  debianutils 2.30 Miscellaneous utilities specific t
ii  fontconfig  2.6.0-3  generic font configuration library
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.2-1.1  GCC support library
ii  libglib2.0-02.16.6-1+lenny1  The GLib library of C routines
ii  libgtk2.0-0 2.12.12-1~lenny1 The GTK+ graphical user interface 
ii  libnspr4-0d 4.7.1-4  NetScape Portable Runtime Library
ii  libstdc++6  4.3.2-1.1The GNU Standard C++ Library v3
ii  procps  1:3.2.7-11   /proc file system utilities
ii  psmisc  22.6-1   Utilities that use the proc filesy
ii  xulrunner-1.9   1.9.0.12-0lenny1 XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts 0.1-8Xft-compatible versions of some La
ii  libkrb531.6.dfsg.4~beta1-5lenny1 MIT Kerberos runtime libraries
ii  mozplugger  1.10.2-2 Plugin allowing external viewers t
ii  ttf-mathematica 6Installer of Mathematica TrueType 
ii  xfonts-mathml   2Type1 Symbol font for MathML
ii  xprint  2:1.4.2-10.lenny2X11 print system (binary)
pn  xulrunner-1.9-g none   (no description available)

-- no debconf information



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



Bug#514137: libc6-dev: getopt_long error confusing on missing argument

2009-02-04 Thread Michel Briand
Package: libc6-dev
Version: 2.7-18
Severity: normal


As GNU documentation says, getopt_long would return '?'
when an option is missing from optstring and would return
':' when an option declared with ':' in optstring is parsed
but there is no argument.

info libc getopt (§25.2.1)

But calling getopt_long with an optstring that contains 'g:'
with arguments like this: app -g, lead to the '?' return code.

(Even if program is compiled with either __USE_GNU or __USE_XOPEN).

--
Test result:

$ ./test -g
Received options:
./test: option requires an argument -- g
error: option not understood: g

One could see that the '?' case is triggered, not the ':' case.

Cheers,
Michel


---
Test program:

#include getopt.h
#include stdio.h

int
main(int argc, char *argv[])
{
int c = 0;
struct option long_options[] = {
{geometry, required_argument, NULL, 'g'},
{0, 0, 0, 0}
};
int option_index = 0;

printf(Received options:\n);

while ((c = getopt_long_only(argc, argv, g:, long_options,
 option_index)) != -1) {

switch (c) {
case 0:
printf(  --%s\n, long_options[option_index].name);
break;
  
case '?':
printf(error: option not understood: %c\n, optopt);
goto getoutofhere;
break;

case ':':
printf(error: missing arguement for option: %c\n, optopt);
goto getoutofhere;
break;

default:
printf(  -%c\n, c);
}
}

getoutofhere:
if (optind  argc) {
printf(Non-option arguments:\n);
while (optind  argc)
printf(  %s\n, argv[optind++]);
}

return 0;
}




-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (990, 'testing'), (888, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages libc6-dev depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  linux-libc-dev2.6.26-13  Linux support headers for userspac

Versions of packages libc6-dev recommends:
ii  gcc [c-compiler]  4:4.3.2-2  The GNU C compiler
ii  gcc-3.4 [c-compiler]  3.4.6-9The GNU C compiler
ii  gcc-4.1 [c-compiler]  4.1.2-25   The GNU C compiler
ii  gcc-4.2 [c-compiler]  4.2.4-6The GNU C compiler
ii  gcc-4.3 [c-compiler]  4.3.2-1.1  The GNU C compiler

Versions of packages libc6-dev suggests:
ii  glibc-doc 2.7-18 GNU C Library: Documentation
ii  manpages-dev  3.05-1 Manual pages about using GNU/Linux

-- no debconf information



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



Bug#509096: closed by Oleksandr Moskalenko ma...@debian.org (not a bug)

2009-01-23 Thread Michel Briand
Your suggestion does not work.

Maybe this is a bug in the print dialog / or cups ? I don't know. But
from the user's point of view the problem is still there... !

Best regards,
Michel




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



Bug#377468: Plugin architecture library conflicts

2008-12-27 Thread Michel Briand
Hi all,

I'd like to add a small comment to the last post from Leon.

I agree that libXt is not changing often. And that many browser would
have loaded it already. So the plugin should bid that it's
available... But that's dangerous, and I'll dig into Netscape /
Mozilla specs to assert that it's recommended or not ...

If the plugin is built on the debian machine that it targets
(certainly :)...) it should use the default libXt provided on this
distribution. So I see no problem for all debian built browsers.

If a different browser is used (i.e. not built by debian), then, one
solution could be to test them and mark them supported or not
supported by this debian-distributed plugin. This clearly out-pass the
debian work, and should be considered a smart gift from the
maintainer ;).

But I'd suggest another approach.

The plugin could be a split between a very simple wrapper and a
distinct application. The plugin would swallow the X window of
the real plugin : the separate application. That's the design of
FreeWRL's plugin and it works. Even with this design we can receive X
events from the browser (passthrough).

The separate application could have any dependency you can imagine.

I'd recommend to adopt this easier approach. But it has the drawback
to require a new plugin design / implementation from upstream. It also
out-pass the Debian context ;).

Hoping that this make sense.
Best regards,

Michel



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



Bug#509096: scribus: choosing landscape in print dialog won't work (page printed in portrait)

2008-12-18 Thread Michel Briand
Package: scribus
Version: 1.3.3.12.dfsg-1
Severity: normal

Hi

created a landscape document.
Print menu, choose landscape in printer's option dialog.
Page is printed in portrait.



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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: lang=fr...@euro, lc_ctype=fr...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages scribus depends on:
ii  ghostscript8.62.dfsg.1-3.1   The GPL Ghostscript PostScript/PDF
ii  ghostscript-x [gs-gpl] 8.62.dfsg.1-3.1   The GPL Ghostscript PostScript/PDF
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libcups2   1.3.8-1lenny4 Common UNIX Printing System(tm) - 
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.2-1 GCC support library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  liblcms1   1.17.dfsg-1   Color management library
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-11  Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  python 2.5.2-3   An interactive high-level object-o
ii  python-tk  2.5.2-1   Tkinter - Writing Tk applications 
ii  python2.5  2.5.2-14  An interactive high-level object-o
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages scribus recommends:
ii  cups-bsd [cupsys-bsd]  1.3.8-1lenny4 Common UNIX Printing System(tm) - 
ii  cupsys-bsd 1.3.8-1lenny4 Common UNIX Printing System (trans
ii  gsfonts-x110.21  Make Ghostscript fonts available t
ii  xfonts-scalable1:1.0.0-6 scalable fonts for X

Versions of packages scribus suggests:
pn  scribus-doc   none (no description available)
pn  scribus-template  none (no description available)

-- no debconf information



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



Bug#506746: e16: critical Event propagation problem with BBO

2008-11-24 Thread Michel Briand
Package: e16
Version: 0.16.8.13-4
Severity: normal

Hello,

with current e16 version there is a critical Event problem, with the BBO window 
launched through Wine.

Everything was ok with e16 previous version.
With current version (Enlightenment 0.16.8.13 - $Date: 2008/05/01
11:33:44 $), when I click left button in the BBO window the event don't
go to the application but moves the window 5 pixels toward bottom of
screen.

On E's mailing list I learned that the problem seems fixed in 0.16.8.14.

Could you bump the version in Debian, please ?

Best regars,
Michel



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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages e16 depends on:
ii  e16-data 0.16.8.13-4 e16 window manager support files
ii  libaudiofile00.2.6-7 Open-source version of SGI's audio
ii  libc62.7-16  GNU C Library: Shared libraries
ii  libdbus-1-3  1.2.1-4 simple interprocess messaging syst
ii  libesd0  0.2.36-3Enlightened Sound Daemon - Shared 
ii  libglib2.0-0 2.16.6-1The GLib library of C routines
ii  libice6  2:1.0.4-1   X11 Inter-Client Exchange library
ii  libimlib21.4.0.001-1 Powerful image loading and renderi
ii  libpango1.0-01.20.5-3Layout and rendering of internatio
ii  libsm6   2:1.0.3-2   X11 Session Management library
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxcomposite1   1:0.4.0-3   X11 Composite extension library
ii  libxdamage1  1:1.1.1-4   X11 damaged region extension libra
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxfixes3   1:4.0.3-2   X11 miscellaneous 'fixes' extensio
ii  libxft2  2.1.12-3FreeType-based font drawing librar
ii  libxinerama1 2:1.0.3-2   X11 Xinerama extension library
ii  libxrandr2   2:1.2.3-1   X11 RandR extension library
ii  libxrender1  1:0.9.4-2   X Rendering Extension client libra
ii  libxxf86vm1  1:1.0.2-1   X11 XFree86 video mode extension l

Versions of packages e16 recommends:
ii  esound0.2.36-3   Enlightened Sound Daemon - Support
ii  menu  2.1.40 generates programs menu for all me

Versions of packages e16 suggests:
ii  e16keyedit  0.5.0-1  a keybinding editor for the enligh
pn  e16menuedit2none   (no description available)
ii  gnome-terminal [x-termi 2.22.3-3 The GNOME 2 terminal emulator appl
ii  konsole [x-terminal-emu 4:3.5.9.dfsg.1-5 X terminal emulator for KDE
ii  xfce4-terminal [x-termi 0.2.8-5  Xfce terminal emulator
ii  xterm [x-terminal-emula 235-1X terminal emulator

-- no debconf information



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



Bug#506257: pbuilder: when creating build env, OTHERMIRROR is written first, and cause an error

2008-11-19 Thread Michel Briand
Package: pbuilder
Version: 0.181
Severity: normal

Hi,

I traced / looked into the code, to watch how pbuilder would add my OTHERMIRROR 
to the build environment.

It seems that OTHERMIRROR is written first in the sources.list. That's 
strange...

Anyway, it should work like that, but I get an error message:


P: Writing resolv.conf
 - debootstrap finished
 - copying local configuration
  - Installing apt-lines
Refreshing the base.tgz 
 - upgrading packages
 - mounting /proc filesystem
 - mounting /dev/pts filesystem
 - policy-rc.d already exists
E: Malformed line 1 in source list /etc/apt/sources.list (URI)
 - Aborting with an error
 - unmounting dev/pts filesystem
 - unmounting proc filesystem
 - cleaning the build env 


Any idea ?

Michel

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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages pbuilder depends on:
ii  cdebootstrap  0.5.3  Bootstrap a Debian system
ii  coreutils 6.10-6 The GNU core utilities
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  debootstrap   1.0.10 Bootstrap a basic Debian system
ii  gcc   4:4.3.2-2  The GNU C compiler
ii  wget  1.11.4-2   retrieves files from the web

Versions of packages pbuilder recommends:
ii  cowdancer 0.47   Copy-on-write directory tree utili
ii  devscripts2.10.35scripts to make the life of a Debi
ii  fakeroot  1.10.1 Gives a fake root environment
ii  sudo  1.6.9p17-1 Provide limited super user privile

Versions of packages pbuilder suggests:
pn  pbuilder-uml  none (no description available)

-- debconf information:
  pbuilder/nomirror:
  pbuilder/mirrorsite: http://cdn.debian.net/debian
  pbuilder/rewrite: false



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



Bug#506257: additional comment

2008-11-19 Thread Michel Briand
Replying to my own bug :).

After lot of rework on the way pbuilder could be invoked
...I discovered that :

* --distribution should be place early in parameters to be really
taken into account. If not 'sid' is chosen whatever your parameter is.

* --mirror and --othermirror have different semantics, so the manual
may be improved to focus attention of the [new] user. For example I use
a combinaison like this:

--mirror http://ftp.fr.debian.org/debian/ \
--othermirror deb http://localhost/debian unstable main

Best regards,
Michel



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



Bug#506175: jde: during installation many .el files are (re)-compiled many times

2008-11-18 Thread Michel Briand
Package: jde
Version: 2.3.5.1-5
Severity: normal

Hello,

I wonder why, when installing jde, lisp files are compiled many times:

(maybe those lisp files come from jde dependencies...)

for example 

Wrote /usr/share/emacs21/site-lisp/semantic/bovine/semantic-c.elc

appears more than 3 times.

To reproduce remove all the packages (with purge): 

cedet-common cedet-contrib cogre ecb ede eieio elib jde semantic speedbar

And install them again.

If I'm wrong, tell me ;).

Cheers,
Michel


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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages jde depends on:
ii  bsh  2.0b4-8 Java scripting environment (BeanSh
ii  cedet-contrib1:1.0pre4-3 Collection of Emacs Development En
ii  cogre1:1.0pre4-3 Connected Graph Editor
ii  eieio1:1.0pre4-3 Enhanced Implementation of Emacs I
ii  elib 1.0-11.1Library of commonly-used Emacs fun
ii  emacs21 [emacsen]21.4a+1-5.6 The GNU Emacs editor
pi  emacsen-common   1.4.17  Common facilities for all emacsen
ii  java-common  0.30Base of all Java packages
ii  semantic 1:1.0pre4-3 Parser Infrastructure for Emacsen
ii  speedbar 1:1.0pre4-3 Everything browser, or Dired on st

Versions of packages jde recommends:
ii  ecb   2.32-1 code browser for Emacs supporting 
ii  gcj [java-compiler]   4:4.3.2-2  The GNU Java compiler
ii  gcj-4.3 [java-compiler]   4.3.2-2The GNU compiler for Java(TM)
ii  gij [java-virtual-machine]4:4.3.2-2  The GNU Java bytecode interpreter
ii  gij-4.3 [java-virtual-machine 4.3.2-2The GNU Java bytecode interpreter
ii  java-gcj-compat [java-virtual 1.0.78-2   Java runtime environment using GIJ
ii  java-gcj-compat-headless [jav 1.0.78-2   Java runtime environment using GIJ
ii  jikes-sablevm [java-compiler] 1.13-1.4   Wrapper for jikes using classes fr
ii  sablevm [java-virtual-machine 1.13-1.4   Free implementation of Java Virtua
ii  sun-java6-jdk [java-compiler] 6-07-4 Sun Java(TM) Development Kit (JDK)
ii  sun-java6-jre [java-virtual-m 6-07-4 Sun Java(TM) Runtime Environment (

Versions of packages jde suggests:
ii  ant   1.7.0-6Java based build tool like make
pn  checkstylenone (no description available)
pn  libtomcat5.5-java none (no description available)

-- no debconf information



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



Bug#498702: additional comment: PATA HD not detected

2008-10-19 Thread Michel Briand
Quote from #495273:

  I've crossposted this to every relevant debian bug I could find with:

  http://www.google.com/search?q=site:bugs.debian.org+marvell+88se6121

  I believe the bug to be caused by the regression under discussion in
  this thread:

  http://www.gossamer-threads.com/lists/linux/kernel/968813

  It looks like Alan Cox's patch will be in 2.6.27, and in the meantime
  you can achieve a work around by rebuilding your initrd to load
  pata_marvell before ahci.

  I hope this helps everyone who's been affected by this problem!

  --alex



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



Bug#501241: [Pkg-db-devel] Bug#501241: libdb4.6-dev: upgrade failure (unpack)

2008-10-07 Thread Michel Briand

Clint Adams [EMAIL PROTECTED] - Tue, 7 Oct 2008 08:25:32 +

On Sun, Oct 05, 2008 at 11:04:15PM +0200, Michel Briand wrote:
 upgrading today (standard aptitude upgrade).
 
 Something went wrong (log pasted below).

Yes, if you try running it again, it will probably go smoothly.


Yes, next upgrade has run smoothly.

 One question: I installed libdb and libdb-dev via aptitude.
 I noted that many packages libdb* where installed since that first manual 
 installation.
 I wonder why there is all theses packages... ???

There is work going on to reduce the number.

Thank you.



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



Bug#501295: iceweasel: crash with vlc plugin

2008-10-06 Thread Michel Briand
Package: iceweasel
Version: 3.0.1-1
Severity: important

Hello,

Iceweasel crashed this morning because of the vlc plugin.

I updated last night with aptitude. My vlc installed packages are:

ii  libvlc0   0.8.6.h-4
ii  mozilla-plugin-vlc0.8.6.h-4
ii  vlc   0.8.6.h-4
ii  vlc-nox   0.8.6.h-4

I have all packages from debian.org and not from
debian-multimedia.org...

I browse to http://www.avamip.fr/, where there is a video embedded.

I started in command line to produce 2 reports. One normal and one in
safe mode. I attach them to this mail.

The crash is reproduced everytime in normal mode.
In safe mode the browser don't crash.

I tried to remove my ~/.vlc to clean-up the vlc's cache... But it didn't
help.


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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages iceweasel depends on:
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  fontconfig2.6.0-1generic font configuration library
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.1-9  GCC support library
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libnspr4-0d   4.7.1-4NetScape Portable Runtime Library
ii  libstdc++64.3.1-9The GNU Standard C++ Library v3
ii  procps1:3.2.7-8  /proc file system utilities
ii  psmisc22.6-1 Utilities that use the proc filesy
ii  xulrunner-1.9 1.9.0.1-1  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
ii  latex-xft-fonts   0.1-8  Xft-compatible versions of some La
ii  libkrb53  1.6.dfsg.4~beta1-4 MIT Kerberos runtime libraries
ii  mozplugger1.10.2-1   Plugin allowing external viewers t
ii  ttf-mathematica4.15  Installer of Mathematica TrueType 
ii  xfonts-mathml 2  Type1 Symbol font for MathML
ii  xprint2:1.4.2-6  X11 print system (binary)
pn  xulrunner-1.9-gnome-s none (no description available)

-- no debconf information
OpenOffice path is '/usr/lib/openoffice'
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
sh: acroread: not found
argn=adblockframename, argv=adblock-frame-n0
argn=adblockframedobject2, argv=true
argn=adblockframedobject, argv=true
argn=src, argv=INPTLTJrlEmploi25060719h.mpg
argn=autostart, argv=False
argn=showcontrols, argv=true
argn=controller, argv=true
argn=showpositioncontrols, argv=false
argn=showaudiocontrols, argv=true
argn=showtracker, argv=true
argn=showstatusbar, argv=false
argn=autosize, argv=true
argn=scale, argv=aspect
argn=autorewind, argv=false
argn=allowscan, argv=true
argn=enablecontextmenu, argv=true
argn=pluginspage, argv=http://www.microsoft.com/Windows/MediaPlayer/download/
argn=height, argv=125
argn=width, argv=109
argn=align, argv=baseline
argn=border, argv=0
[0001] main private debug: checking builtin modules
[0001] main private debug: checking plugin modules
[0001] main private debug: loading plugins cache file 
/home/michel/.vlc/cache/plugins-04041e.dat
[0001] main private debug: recursively browsing `/usr/lib/vlc'
[0001] main private debug: module bank initialized, found 216 modules
[0001] main private debug: opening config file /home/michel/.vlc/vlcrc
[0001] main private debug: CPU has capabilities 486 586 MMX MMXEXT SSE SSE2 
FPU 
[0001] main private debug: looking for memcpy module: 1 candidate
[0001] main private debug: using memcpy module memcpy
[0281] main playlist debug: waiting for thread completion
[0281] main playlist debug: thread 2927877008 (playlist) created at 
priority 0 (playlist/playlist.c:184)
[0282] main private debug: waiting for thread completion
[0282] main private debug: thread 2919484304 (preparser) created at 
priority 0 (playlist/playlist.c:210)
[0283] main interface debug: looking for interface module: 1 candidate
[0283] main interface debug: using interface module hotkeys
[0283] main interface debug: thread 2911091600 (interface) created at 
priority 0 (interface/interface.c:231)
[0285] main interface 

Bug#501241: libdb4.6-dev: upgrade failure (unpack)

2008-10-05 Thread Michel Briand
Package: libdb4.6-dev
Version: 4.6.21-11
Severity: important

Hi,

upgrading today (standard aptitude upgrade).

Something went wrong (log pasted below).

One question: I installed libdb and libdb-dev via aptitude.
I noted that many packages libdb* where installed since that first manual 
installation.
I wonder why there is all theses packages... ???

Best regards,
Michel

The aptitude's log:
--
Extraction des modèles depuis les paquets : 100%
Préconfiguration des paquets...
(Lecture de la base de données... 389651 fichiers et répertoires déjà 
installés.)
Préparation du remplacement de x11-apps 7.3+3 (en utilisant 
.../x11-apps_7.3+4_i386.deb) ...
Dépaquetage de la mise à jour de x11-apps ...
Sélection du paquet libdb4.6-dev précédemment désélectionné.
Dépaquetage de libdb4.6-dev (à partir de .../libdb4.6-dev_4.6.21-11_i386.deb) 
...
dpkg : erreur de traitement de 
/var/cache/apt/archives/libdb4.6-dev_4.6.21-11_i386.deb (--unpack) :
 tentative de remplacement de « /usr/lib/libdb-4.6.a », qui appartient aussi au 
paquet libdb-dev
dpkg-deb: sous-processus paste tué par le signal (Relais brisé (pipe))
Préparation du remplacement de libdb-dev 4.6.21-8 (en utilisant 
.../libdb-dev_4.7.25.2_i386.deb) ...
Dépaquetage de la mise à jour de libdb-dev ...
Préparation du remplacement de libdb4.6 4.6.21-8 (en utilisant 
.../libdb4.6_4.6.21-11_i386.deb) ...
Dépaquetage de la mise à jour de libdb4.6 ...
Traitement des actions différées (« triggers ») pour « man-db »...
Traitement des actions différées (« triggers ») pour « menu »...
Des erreurs ont été rencontrées pendant l'exécution :
 /var/cache/apt/archives/libdb4.6-dev_4.6.21-11_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
Échec de l'installation d'un paquet. Tentative de réparation : 
Paramétrage de libdb4.6 (4.6.21-11) ...
Paramétrage de x11-apps (7.3+4) ...
dpkg : des problèmes de dépendances empêchent la configuration de libdb-dev :
 libdb-dev dépend de libdb4.6-dev (= 4.6.21-9) ; cependant :
  Le paquet libdb4.6-dev n'est pas installé.
dpkg : erreur de traitement de libdb-dev (--configure) :
 problèmes de dépendances - laissé non configuré
Traitement des actions différées (« triggers ») pour « menu »...
Des erreurs ont été rencontrées pendant l'exécution :
 libdb-dev
Appuyez sur Entrée pour continuer.
--


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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages libdb4.6-dev depends on:
ii  libdb4.6  4.6.21-11  Berkeley v4.6 Database Libraries [

libdb4.6-dev recommends no packages.

Versions of packages libdb4.6-dev suggests:
pn  db4.6-doc none (no description available)



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



Bug#237131: gpa: crash when pressing browse button in backup dialog

2008-10-03 Thread Michel Briand
Package: gpa
Version: 0.7.0-1.1
Followup-For: Bug #237131

Hi,

I can reproduce bug here, everytime.

1. Select a key
2. Choose Backup... from the Keys menu
3. Click on the Browse button
4. ...crash...

Best regards,
Michel

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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages gpa depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libglib2.0-0   2.16.5-1  The GLib library of C routines
ii  libgpg-error0  1.4-2 library for common error values an
ii  libgpgme11 1.1.6-2   GPGME - GnuPG Made Easy
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libpango1.0-0  1.20.5-2  Layout and rendering of internatio
ii  libx11-6   2:1.1.5-1 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

gpa recommends no packages.

gpa suggests no packages.

-- no debconf information



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



Bug#498702: linux-image-2.6.26-1-686: SATA DVD drive recognized

2008-09-22 Thread Michel Briand
Hi all,

same problem here. Upgrade from 2.6.24 to 2.6.26 makes DVD not usable.

With the 2.6.24-7 the DVD drive was recognized :

dmesg.0:libata version 3.00 loaded.
dmesg.0:ata_piix :00:1f.2: version 2.12
dmesg.0:ata_piix :00:1f.2: MAP [ P0 -- P1 -- ]
dmesg.0:scsi0 : ata_piix
dmesg.0:scsi1 : ata_piix
dmesg.0:ata1: SATA max UDMA/133 cmd 0xc000 ctl 0xbc00 bmdma 0xb480 irq 22
dmesg.0:ata2: SATA max UDMA/133 cmd 0xb880 ctl 0xb800 bmdma 0xb488 irq 22
dmesg.0:ata1.00: ATA-7: SAMSUNG HD250HJ, FH100-06, max UDMA7
dmesg.0:ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
dmesg.0:ata1.00: configured for UDMA/133
dmesg.0:ata_piix :00:1f.5: MAP [ P0 -- P1 -- ]
dmesg.0:scsi2 : ata_piix
dmesg.0:scsi3 : ata_piix
dmesg.0:ata3: SATA max UDMA/133 cmd 0xd000 ctl 0xcc00 bmdma 0xc480 irq 22
dmesg.0:ata4: SATA max UDMA/133 cmd 0xc880 ctl 0xc800 bmdma 0xc488 irq 22
dmesg.0:scsi4 : pata_marvell
dmesg.0:scsi5 : pata_marvell
dmesg.0:ata5: PATA max UDMA/100 cmd 0xec00 ctl 0xe880 bmdma 0xe400 irq 16
dmesg.0:ata6: PATA max UDMA/133 cmd 0xe800 ctl 0xe480 bmdma 0xe408 irq 16
dmesg.0:ata5.00: ATAPI: Optiarc DVD RW AD-7200A, 1.01, max UDMA/66
dmesg.0:ata5.00: configured for UDMA/66

But with the 2.6.26-4 it's not.

dmesg:[3.536498] ata1: SATA max UDMA/133 abar [EMAIL PROTECTED] port 
0xfebffd00 irq 16
dmesg:[3.536498] ata2: SATA max UDMA/133 abar [EMAIL PROTECTED] port 
0xfebffd80 irq 16
dmesg:[3.536498] ata3: DUMMY
dmesg:[3.855031] ata1: SATA link down (SStatus 0 SControl 300)
dmesg:[4.739485] ata2: SATA link down (SStatus 0 SControl 300)
dmesg:[4.743013] ata_piix :00:1f.2: version 2.12
dmesg:[4.743013] ata_piix :00:1f.2: MAP [ P0 -- P1 -- ]
dmesg:[4.743013] scsi3 : ata_piix
dmesg:[4.743035] scsi4 : ata_piix
dmesg:[4.743508] ata4: SATA max UDMA/133 cmd 0xc000 ctl 0xbc00 bmdma 0xb480 
irq 22
dmesg:[4.743508] ata5: SATA max UDMA/133 cmd 0xb880 ctl 0xb800 bmdma 0xb488 
irq 22
dmesg:[5.283529] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
dmesg:[5.291750] ata4.00: ATA-7: SAMSUNG HD250HJ, FH100-06, max UDMA7
dmesg:[5.291796] ata4.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 
0/32)
dmesg:[5.303431] ata4.00: configured for UDMA/133
dmesg:[5.757750] ata5: SATA link down (SStatus 0 SControl 300)
dmesg:[5.757750] ata_piix :00:1f.5: MAP [ P0 -- P1 -- ]
dmesg:[5.757750] scsi5 : ata_piix
dmesg:[5.757750] scsi6 : ata_piix
dmesg:[5.758718] ata6: SATA max UDMA/133 cmd 0xd000 ctl 0xcc00 bmdma 0xc480 
irq 22
dmesg:[5.758718] ata7: SATA max UDMA/133 cmd 0xc880 ctl 0xc800 bmdma 0xc488 
irq 22
dmesg:[6.091486] ata6: SATA link down (SStatus 0 SControl 300)
dmesg:[6.769273] ata7: SATA link down (SStatus 0 SControl 300)


Looking at the differences, I suspect the message SATA link down 
maybe be related to the problem.

Cheers,
Michel




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



Bug#499381: two sound cards - vlc fails to open ice1712 : unable to set stream sample size and word order

2008-09-18 Thread Michel Briand
Package: vlc
Version: 0.8.6.h-1
Severity: normal

Hi,

I've two sound cards.

$ cat /proc/asound/cards
 0 [ICH5   ]: ICH4 - Intel ICH5
  Intel ICH5 with AD1985 at irq 17
 1 [M2496  ]: ICE1712 - M Audio Audiophile 24/96
  M Audio Audiophile 24/96 at 0xdf80, irq 23

[Kernel has a race problem: card order changes between boots...]

When selecting the sound card through the vlc gui menu, it doesn't
work on the chosen sound card (ICE1712), output this message:

[0338] main audio output debug: looking for audio output module: 3 
candidates
[0338] alsa audio output warning: unable to set stream sample size and word 
order, disabling linear PCM audio
[0338] main audio output debug: thread 2959260560 (aout) created at 
priority 0 (oss.c:520)
[0338] main audio output debug: using audio output module oss
[0338] main audio output debug: output 's16l' 48000 Hz Stereo frame=1 
samples/4 bytes
[0338] main audio output debug: mixer 'fl32' 48000 Hz Stereo frame=1 
samples/8 bytes
[0338] main audio output debug: filter(s) 'fl32'-'s16l' 48000 Hz-48000 Hz 
Stereo-Stereo


and falls back to the other sound card.

When I specify explicitly the target sound card:

vlc --alsadev default:CARD=M2496 

It works!

[0338] main audio output debug: looking for audio output module: 3 
candidates
[0338] alsa audio output debug: opening ALSA device `default:CARD=M2496'
[0338] main audio output debug: thread 2948311952 (aout) created at 
priority 0 (alsa.c:662)
[0338] main audio output debug: using audio output module alsa
[0338] main audio output debug: output 'fl32' 48000 Hz Stereo frame=1 
samples/8 bytes
[0338] main audio output debug: mixer 'fl32' 48000 Hz Stereo frame=1 
samples/8 bytes
[0338] main audio output debug: no need for any filter
[0338] main audio output debug: looking for audio mixer module: 3 candidates
[0338] main audio output debug: using audio mixer module float32_mixer
[0338] main audio output debug: input 'a52 ' 48000 Hz 3F2R/LFE frame=1536 
samples/1792 bytes
[0338] main audio output debug: filter(s) 'a52 '-'fl32' 48000 Hz-48000 Hz 
3F2R/LFE-Stereo


Is there something to improve in vlc ?

Cheers,
Michel


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

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages vlc depends on:
ii  libaa1 1.4p5-37+b1   ascii art library
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libavcodec51   0.svn20080206-12  ffmpeg codec library
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcaca0   0.99.beta14-1 colour ASCII art library
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libcdio7   0.78.2+dfsg1-3library to read and control CD-ROM
ii  libcucul0  0.99.beta14-1 low-level Unicode character drawin
ii  libdbus-1-31.2.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libgcc11:4.3.1-9 GCC support library
ii  libgl1-mesa-glx [libgl 7.0.3-5   A free implementation of the OpenG
ii  libglib2.0-0   2.16.5-1  The GLib library of C routines
ii  libglu1-mesa [libglu1] 7.0.3-5   The OpenGL utility library (GLU)
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libiso9660-5   0.78.2+dfsg1-3library to work with ISO9660 files
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  libpango1.0-0  1.20.5-2  Layout and rendering of internatio
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libsdl-image1.21.2.6-3   image loading library for Simple D
ii  libsdl1.2debian1.2.13-2  Simple DirectMedia Layer
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstdc++6 4.3.1-9   The GNU Standard C++ Library v3
ii  libtar 1.2.11-5  C library for manipulating tar arc
ii  libtiff4   3.8.2-11  Tag Image File Format (TIFF) libra
ii  libvcdinfo00.7.23-4  library to extract information fro
ii  libvlc00.8.6.h-1 multimedia player and streamer lib
ii  libwxbase2.6-0 2.6.3.2.2-2

Bug#491324: ssh depends on too many packages (x11, ...)

2008-07-18 Thread Michel Briand
Package: ssh
Version: 1:4.7p1-12
Severity: normal

Installing ssh (metapackage) on a fresh system (just base system
installed), I note that ssh pull those dependencies :

libx11-6
libx11-data
libxau6
libxcb-xlib0
libxcb1
libxdcmp6
libxext6
libxmmu1
x11-common
xauth

I mean that installing a minimal system or a server system, I do not
want X11.

Is this reasonable ?

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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages ssh depends on:
ii  openssh-client1:4.7p1-12 secure shell client, an rlogin/rsh
ii  openssh-server1:4.7p1-12 secure shell server, an rshd repla

ssh recommends no packages.

-- no debconf information



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



Bug#490158: bash: history problem with long HISTIGNORE

2008-07-10 Thread Michel Briand
Package: bash
Version: 3.2-4
Severity: normal

Hello,

when using the [ \t]* pattern in HISTIGNORE to ignore all command
beginning with a space, commands that begin with t won't be saved.

Example:
$ export HISTIGNORE=:[bf]g:exit:[ \t]*:history*
$ tar --help
$ history|tail

This prevent the use of this pattern but can also have an impact on all
patterns that include \... Maybe someone could imagine a test for that.

Best regards,
Michel


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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages bash depends on:
ii  base-files4.0.4  Debian base system miscellaneous f
ii  debianutils   2.28.4 Miscellaneous utilities specific t
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libncurses5   5.6+20080308-1 Shared libraries for terminal hand

Versions of packages bash recommends:
pn  bash-completion   none (no description available)

-- no debconf information



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



Bug#488239: readpst crashes when it encounters unknown ref type

2008-06-27 Thread Michel Briand
Package: readpst
Version: 0.5.2-1
Severity: important

Hi,

Some pst are processed by readpst without error.

But, repeatedly with some pst, it crashes with this message:

Processing Folder Calendrier
debug_fp is NULL
ERROR Unknown ref_type 0x1048
Erreur de segmentation

This last line means Segmentation fault.

Best regards,
Michel

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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages readpst depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries

readpst recommends no packages.

-- no debconf information



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



Bug#485524: cdcd fails to retrieve CDDB information

2008-06-09 Thread Michel Briand
Package: cdcd
Version: 0.6.6-6
Severity: normal

While Kscd gets CDDB informations correctly,
cdcd fails to do that job.

Here is the message:

Trying CDDB server http://www.freedb.org:80/cgi-bin/cddb.cgi
Connection established.
Retrieving information on ba121d0d.
CDDB query error: cannot parse

Maybe this error is in libcdaudio.


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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages cdcd depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libcdaudio1   0.99.12p2-4library for controlling a CD-ROM w
ii  libncurses5   5.6+20080308-1 Shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries

cdcd recommends no packages.

-- no debconf information



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



Bug#485526: kdemultimedia: kio_audiocd / kscd : refreshing media/storage view stops audio cd playing

2008-06-09 Thread Michel Briand
Package: kdemultimedia
Version: 4:3.5.9-1
Severity: normal

An audio CD is playing in drive...

If you refresh the media/storage view in Konqueror then the CD stops
playing. If a storage device is added to the system (usb for example), 
the same stop occurs.

This is (seemingly) related to this bug in KDE:

http://bugs.kde.org/show_bug.cgi?id=122524

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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages kdemultimedia depends on:
ii  artsbuilder   4:3.5.9-1  synthesizer designer for aRts
ii  juk   4:3.5.9-1  music organizer and player for KDE
ii  kaudiocreator 4:3.5.9-1  CD ripper and audio encoder fronte
ii  kdemultimedia-kappfinder-data 4:3.5.9-1  multimedia data for kappfinder
ii  kdemultimedia-kfile-plugins   4:3.5.9-1  au/avi/m3u/mp3/ogg/wav plugins for
ii  kdemultimedia-kio-plugins 4:3.5.9-1  enables the browsing of audio CDs 
ii  kmid  4:3.5.9-1  MIDI/karaoke player for KDE
ii  kmix  4:3.5.9-1  sound mixer applet for KDE
ii  krec  4:3.5.9-1  sound recorder utility for KDE
ii  kscd  4:3.5.9-1  audio CD player for KDE
ii  libarts1-akode4:3.5.9-1  akode plugin for aRts
ii  libarts1-audiofile4:3.5.9-1  audiofile plugin for aRts
ii  libarts1-mpeglib  4:3.5.9-1  mpeglib plugin for aRts, supportin
ii  libarts1-xine 4:3.5.9-1  aRts plugin enabling xine support
ii  mpeglib   4:3.5.9-1  MP3 and MPEG-1 audio and video lib

Versions of packages kdemultimedia recommends:
ii  kaffeine  0.8.6-2versatile media player for KDE

-- no debconf information



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



Bug#482397: libapache2-mod-auth-pam: mod_auth_pam does not work with Require group

2008-05-22 Thread Michel BRIAND
Package: libapache2-mod-auth-pam
Version: 1.1.1-6.1
Severity: important

Hello,

(related to bugs #394097)

I need to authenticate web users with PAM, but I also want to check their 
group membership.

Directive Require group somegroup cannot be honoured by the module.

Because:
- the package does not install mod_auth_sys_group.so in 
/usr/lib/apache2/modules,
  neither does it provide /etc/apache2/mods-available/auth_sys_group.load ;

- directive AuthGROUP_Enabled on should be added to the configuration for 
this 
authentication method to work.

Having manually installed mod_auth_sys_group.so and enabled it in
configuration with the proper Load directive, having added the 
AuthGROUP_Enabled directive, authentication with group checking 
works correctly.

Cheers,
Michel


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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages libapache2-mod-auth-pam depends on:
ii  apache2.2-common  2.2.8-3Next generation, scalable, extenda
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libpam0g  0.99.7.1-6 Pluggable Authentication Modules l

libapache2-mod-auth-pam recommends no packages.

-- no debconf information



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



Bug#482397: discovered libapache2-mod-auth-sys-group

2008-05-22 Thread Michel Briand
Hello,

I didn't look enough long: package libapache2-mod-auth-sys-group
provides the files I installed manually. Forget this part of my report.

Anyway I wonder why there are two packages to provide two features of
authentication with PAM.

Those two features are often used together, so release only one package
should help most administrators that expect those two features to be
available.

If you don't agree with that, libapache2-mod-auth-pam should really
recommend libapache2-mod-auth-sys-group.

Cheers,
Michel




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



Bug#478476: Obsolete autoconf macro (AC_FUNC_GETLOADAVG) is generated by autoscan

2008-04-29 Thread Michel BRIAND
Package: autoconf
Version: 2.61-7
Severity: important

Hi,

autoscan generates an obsolete macro in configure.scan:

AC_FUNC_GETLOADAVG

Autoconf's manual states that its obsolete:
http://www.gnu.org/software/autoconf/manual/autoconf-2.57/html_chapter/autoconf_15.html

Best regards,
Michel

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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages autoconf depends on:
ii  debianutils   2.28.4 Miscellaneous utilities specific t
ii  m41.4.10-1   a macro processing language
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 

Versions of packages autoconf recommends:
ii  automake1.7 [automaken]   1.7.9-9A tool for generating GNU Standard
ii  automake1.9 [automaken]   1.9.6+nogfdl-3 A tool for generating GNU Standard

-- no debconf information



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



Bug#471339: nvidia-cg-toolkit: installation script needs more attention

2008-04-17 Thread Michel BRIAND

Andres Mejia [EMAIL PROTECTED] - Thu, 17 Apr 2008 12:33:23 -0400
 Alright. For this case, usually the reason you get a 501 Protocol
 scheme '' is not supported is because in either apt-config or your
 wgetrc files, your proxy is set as only proxy.com or something
 similar instead of http://proxy.com;. What are your settings for
 your proxy in 'apt-config dump' and/or your wgetrc files? Don't
 give me your login or password of course, just the general form you
 use.

 Yes, there is something in apt's config:

 $ apt-config dump|grep -i proxy
 Acquire::http::Proxy false;

 But I do not have any proxy setting in ~/.wgetrc nor in /etc/wgetrc.

If it's left as 'false', this would be the reason why the installer
fails with the 501 Protocol scheme '' is not supported error. It
should be in the form http://[[user][:[EMAIL PROTECTED]:port] depending on
your proxy configuration. It's even stated in the apt.conf(5) manual
page.

Hi Andres,

well spotted ;) !

I can confirm that's the cause of the script error. I removed this line
(Acquire::http::Proxy false;) from apt.conf (I still wonder where
does it come from ?). It downloads correctly now.

But there's still a problem:

# ./nvidia-cg-toolkit-installer --install

Downloading
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_x86.tar.gz
on the i386 architecture. 0KB
[...]
609 KB/s Download successful.
Total size of content downloaded: 10349KB
Downloading
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_LanguageSpecification.pdf
on the i386 architecture.
Download successful.
Total size of content downloaded: 0KB
Checking MD5 sum for NVIDIA Cg Toolkit file...passed. Checking MD5 sum
for NVIDIA Cg Toolkit spec file...failed.
Checksum mismatch.
Expected checksum 53736712db34dc6ccf1e850ea6eaefe5 for the NVIDIA Cg
Toolkit spec file.

Best regards,
Michel



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



Bug#377424: apt: problem reproduced with blender from main archive

2008-04-16 Thread Michel BRIAND
Package: apt
Version: 0.7.11
Followup-For: Bug #377424

Hi,

problem reproduced here, trying to build blender from sources.
Blender is in main archive. Listing archive directory shows:

http://ftp.fr.debian.org/debian/pool/main/b/blender/
[...]
[   ] blender_2.45-4.diff.gz   03-Mar-2008 22:3226k  
[   ] blender_2.45-4.dsc   03-Mar-2008 22:32 1k  
[   ] blender_2.45-4_armel.deb 27-Mar-2008 20:32   7.1M  
[   ] blender_2.45-4_m68k.deb  10-Mar-2008 03:02   6.5M  
[   ] blender_2.45.orig.tar.gz 22-Sep-2007 00:02  14.4M  
[...]

Command issued:

$ LANG=C apt-get source --compile blender
Reading package lists... Done
Building dependency tree   
Reading state information... Done
E: Unable to find a source package for blender

By the way I would like to know how to tell apt-get to print more information. 
It's very difficult to find information about debug/verbose options for apt-get.

Best regards,
Michel

-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 1;
APT::Install-Suggests 0;
APT::Acquire ;
APT::Acquire::Translation environment;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::Periodic ;
APT::Periodic::Update-Package-Lists 0;
APT::Periodic::Download-Upgradeable-Packages 0;
APT::Periodic::AutocleanInterval 0;
APT::Authentication ;
APT::Authentication::TrustCDROM true;
APT::Default-Release testing;
APT::Cache-Limit 1850;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
Dir::Log var/log/apt;
Dir::Log::Terminal term.log;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
Acquire ;
Acquire::http ;
Acquire::http::Proxy false;

-- /etc/apt/preferences --

Package: *
Pin: release o=winehq 
Pin-Priority: 999

-- /etc/apt/sources.list --

# 
# deb cdrom:[Debian GNU/Linux testing _Etch_ - Official Snapshot i386 Binary-1 
(20060810)]/ stable main contrib non-free

#deb http://ftp.fr.debian.org/debian/ stable main contrib non-free
#deb-src http://ftp.fr.debian.org/debian/ stable main contrib non-free

#deb http://security.debian.org/ stable/updates main contrib non-free
#deb-src http://security.debian.org/ stable/updates main contrib non-free

deb http://ftp.fr.debian.org/debian/ testing main contrib non-free
deb-src http://ftp.fr.debian.org/debian/ testing main contrib non-free

deb http://ftp.fr.debian.org/debian/ unstable main contrib non-free
deb-src http://ftp.fr.debian.org/debian/ unstable main contrib non-free

#deb http://edevelop.org/debian/ testing main contrib non-free contrib non-free
#deb-src http://edevelop.org/debian/ testing main contrib non-free contrib 
non-free

#deb http://www.debian-multimedia.org stable main
#deb-src http://www.debian-multimedia.org stable main

deb http://www.debian-multimedia.org testing main
#deb-src http://www.debian-multimedia.org testing main

#deb ftp://ftp.mowgli.ch/pub/debian stable unofficial
#deb-src ftp://ftp.mowgli.ch/pub/debian stable unofficial

# Ne marche plus:
#deb http://blabluga.hell.pl/QGLViewer/testing ./
#deb-src http://blabluga.hell.pl/QGLViewer/testing ./

#deb http://ftp.debian-unofficial.org/debian/ stable main contrib non-free 
restricted
#deb-src http://ftp.debian-unofficial.org/debian/ stable main contrib non-free 
restricted

#deb http://ftp.debian-unofficial.org/debian/ testing main contrib non-free 
restricted
#deb-src http://ftp.debian-unofficial.org/debian/ testing main contrib non-free 
restricted

# Cinelerra
#deb http://giss.tv/~vale/debian64 ./

# LOCAL
#deb file:/var/lib/debarchiver/ testing main contrib non-free
#deb file:///var/www/default/debian unstable main

# Wine
deb http://wine.budgetdedicated.com/apt etch main #WineHQ - Debian 4.0 Etch
#deb-src http://wine.budgetdedicated.com/apt etch main #WineHQ - Debian 4.0 
Etch

# VirtualBox
deb http://www.virtualbox.org/debian etch non-free

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

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages apt depends on:
ii  debian-archive-keyring2007.07.31 GnuPG 

Bug#467290: how to setup good LANG environment for aptitude ?

2008-04-12 Thread Michel BRIAND

Sven Joachim [EMAIL PROTECTED] - Fri, 11 Apr 2008 16:32:54 +0200

On 2008-02-24 14:32 +0100, Michel BRIAND wrote:

 Package: aptitude
 Version: 0.4.10-1+b2
 Severity: minor

 I'm using aptitude with sudo and I always get those messages 
 with aptitude is running installation :


 perl: warning: Setting locale failed.
 perl: warning: Please check that your locale settings:
 LANGUAGE = (unset),
 LC_ALL = (unset),
 LANG = en
 are supported and installed on your system.
 perl: warning: Falling back to the standard locale (C).
 locale: Cannot set LC_CTYPE to default locale: No such file or
 directory locale: Cannot set LC_MESSAGES to default locale: No such
 file or directory locale: Cannot set LC_ALL to default locale: No
 such file or directory

I cannot reproduce this at all, in any case it almost certainly has
nothing to do with aptitude, but is some misconfiguration on your side.

 How to get a good environment for it ?

 I don't want to have LANG= set in /etc/environment. I have LANG= set
 in ~/.bash_profile and only there.

Should be fine.  Please post

- the contents of /etc/environment and /etc/default/locale
  (if these files exist)

- the output of `sudo locale' and `sudo printenv'

- the value of env_reset in /etc/sudoers

TIA,
Sven

Hi,

- my /etc/environment contains:
LANG=POSIX

- sudo locale gives me:
[EMAIL PROTECTED]
LANGUAGE=fr
LC_CTYPE=[EMAIL PROTECTED]
LC_NUMERIC=[EMAIL PROTECTED]
LC_TIME=[EMAIL PROTECTED]
LC_COLLATE=[EMAIL PROTECTED]
LC_MONETARY=[EMAIL PROTECTED]
LC_MESSAGES=[EMAIL PROTECTED]
LC_PAPER=[EMAIL PROTECTED]
LC_NAME=[EMAIL PROTECTED]
LC_ADDRESS=[EMAIL PROTECTED]
LC_TELEPHONE=[EMAIL PROTECTED]
LC_MEASUREMENT=[EMAIL PROTECTED]
LC_IDENTIFICATION=[EMAIL PROTECTED]
LC_ALL=

- in /etc/sudoers, there is:
Defaultsenv_reset

Right, I'm nearly sure there is no en locale on this system
installed.
Calling dpkg-reconfigure locales as root and selecting an English
locale should be sufficient.
Jens

Yes, I've done that, and now

- in /etc/default/locale there is:
LANG=en_US

- sudo aptitude runs in English

- I've launched an upgrade, and seen:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = en
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).


Here is all that I can do to help report more information.

Thank you very much,
Michel



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



Bug#471339: nvidia-cg-toolkit: installation script needs more attention

2008-04-12 Thread Michel BRIAND

Andres Mejia [EMAIL PROTECTED] - Fri, 11 Apr 2008 16:08:55 -0400

On Tuesday 08 April 2008 2:23:27 am Michel BRIAND wrote:
 Hello,
 
 Can you try
 running 'nvidia-cg-toolkit-installer --proxy
 http://your_login:[EMAIL PROTECTED] on they command line? Can you
 then try running just 'nvidia-cg-toolkit-installer --proxy'?

 Hello,

 none of the above lines work. Sorry. Same errors as before.

 It seems that you have to look into your calls to LWP (Protocol.pm)
 to see if you don't forget any parameter (remind of the Use of
 uninitialized... warnings).

 Cheers,
 Michel

Looks like I'm able to reproduce this bug when I specify the proxy
without the http://; part.

nvidia-cg-toolkit-installer --install --proxy proxy

It gives me this error (with the new release 2.0.0012.deb3).

Downloading 
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_x86.tar.gz
 
on the i386 architecture.
Use of uninitialized value in hash element
at /usr/share/perl5/LWP/Protocol.pm line 55.
Use of uninitialized value in pattern match (m//) 
at /usr/share/perl5/LWP/Protocol.pm line 58.
Use of uninitialized value in concatenation (.) or string 
at /usr/share/perl5/LWP/Protocol.pm line 38.
Use of uninitialized value in string eq
at /usr/share/perl5/LWP/UserAgent.pm line 195.
501 Protocol scheme '' is not supported
Failed to download NVIDIA Cg Toolkit.

Can you try running the commands as follows?

nvidia-cg-toolkit-installer --install --proxy proxy

and

nvidia-cg-toolkit-installer --install --proxy http://proxy;


Hi Andres,

I cannot run this test because I do not have the same configuration at
home (at work I used a proxy).

But the last message report I sent to you was also intended to show you
that the script emits those message even without a proxy specified.

I ran the script here at home without a proxy (direct connection to the
internet). Here is what it outputs:

[EMAIL PROTECTED] ~ # nvidia-cg-toolkit-installer --install
Downloading
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_x86.tar.gz
for the i386 architecture. Use of uninitialized value in hash element
at /usr/share/perl5/LWP/Protocol.pm line 55. Use of uninitialized value
in pattern match (m//) at /usr/share/perl5/LWP/Protocol.pm line 58. Use
of uninitialized value in concatenation (.) or string
at /usr/share/perl5/LWP/Protocol.pm line 38. Use of uninitialized value
in string eq at /usr/share/perl5/LWP/UserAgent.pm line 195. Downloading
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_LanguageSpecification.pdf
for the i386 architecture. Use of uninitialized value in hash element
at /usr/share/perl5/LWP/Protocol.pm line 55. Use of uninitialized value
in pattern match (m//) at /usr/share/perl5/LWP/Protocol.pm line 58. Use
of uninitialized value in concatenation (.) or string
at /usr/share/perl5/LWP/Protocol.pm line 38. Use of uninitialized value
in string eq at /usr/share/perl5/LWP/UserAgent.pm line 195. Can't open
'/tmp/toolkit_file35007.tar.gz': No such file or directory
at /usr/bin/nvidia-cg-toolkit-installer line 222. Checking MD5 sum for
NVIDIA Cg Toolkit file...

Then I decided to use your suggested command line argument with a proxy
that my ISP have, it doesn't hurt :).

You're right, the proxy argument has to be correctly spelled. Like this
http://x:;. Then it works !

But when you specify no proxy argument the script fails as well.

Conclusion:

- you have to check for the no proxy case, and be sure you do not use
unset variables, or output empty options to the LWP library,

- you have to check the syntax for the proxy argument, and fails if it
does not match you critera

On suggestion: create a list of all files installed through
nvidia-cg-toolkit-installer and, when uninstall option is called, use
that list to remove all those files. Instead of having an hard coded
list of files in your Perl :^)

Cheers,
Michel
-- 

 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.

 



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



Bug#471339: nvidia-cg-toolkit: installation script needs more attention

2008-04-08 Thread Michel BRIAND
Hello,

Can you try 
running 'nvidia-cg-toolkit-installer --proxy
http://your_login:[EMAIL PROTECTED] on they command line? Can you then
try running just 'nvidia-cg-toolkit-installer --proxy'?


Hello,

none of the above lines work. Sorry. Same errors as before.

It seems that you have to look into your calls to LWP (Protocol.pm) to
see if you don't forget any parameter (remind of the Use of
uninitialized... warnings).

Cheers,
Michel



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



Bug#471339: nvidia-cg-toolkit: installation script needs more attention

2008-04-06 Thread Michel BRIAND
Hello,

today, update of nvidia-cg-toolkit to version 2.0.0012.deb2.

Here is the log of this operation that seems to need still some attention:


Paramétrage de nvidia-cg-toolkit (2.0.0012.deb2) ...
Option proxy requires an argument
Downloading 
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_x86.tar.gz
 for the i386 architecture.
Use of uninitialized value in hash element at /usr/share/perl5/LWP/Protocol.pm 
line 55.
Use of uninitialized value in pattern match (m//) at 
/usr/share/perl5/LWP/Protocol.pm line 58.
Use of uninitialized value in concatenation (.) or string at 
/usr/share/perl5/LWP/Protocol.pm line 38.
Use of uninitialized value in string eq at /usr/share/perl5/LWP/UserAgent.pm 
line 195.
Downloading 
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_LanguageSpecification.pdf
 for the i386 architecture.
Use of uninitialized value in hash element at /usr/share/perl5/LWP/Protocol.pm 
line 55.
Use of uninitialized value in pattern match (m//) at 
/usr/share/perl5/LWP/Protocol.pm line 58.
Use of uninitialized value in concatenation (.) or string at 
/usr/share/perl5/LWP/Protocol.pm line 38.
Use of uninitialized value in string eq at /usr/share/perl5/LWP/UserAgent.pm 
line 195.
Can't open '/tmp/toolkit_file61459.tar.gz': Aucun fichier ou répertoire de ce 
type at /usr/bin/nvidia-cg-toolkit-installer line 222.
Checking MD5 sum for NVIDIA Cg Toolkit file...



Cheers,
Michel
-- 

 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.

 




Bug#471315: aptitude: [regression] preferences not saved : display format string

2008-03-17 Thread Michel BRIAND
Package: aptitude
Version: 0.4.10-1+b2
Severity: important

Hi,

Some preferences of aptitude's interface are not saved
to disk when one quits the application.

I'm used to set display format with a %t at the end,
to show for each package the distribution it cames from.
Go to Options-Preferences and then edit the 
format for displaying package.

In recent version, not sure but since one month, this
field is reset to default value each time aptitude is
closed : apparently it's no more saved. As may are other
preferences. I did not test every pref -- but the few
I've tested are not saved.

This is clearly a regression since I used to set this
preference for a long long time.

Best regards,
Michel

-- Package-specific info:
Terminal: xterm
$DISPLAY is set.

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.7 0.7.11   Advanced front-end for dpkg
ii  libc6   2.7-6GNU C Library: Shared libraries
ii  libcwidget1 0.5.6.1-3high-level terminal interface libr
ii  libgcc1 1:4.3-20080202-1 GCC support library
ii  libncursesw55.6+20080203-1   Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a  2.0.17-2 type-safe Signal Framework for C++
ii  libstdc++6  4.3-20080202-1   The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)
ii  libparse-debianchangelog-perl 1.1.1-2parse Debian changelogs and output

-- no debconf information



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



Bug#471316: k3b serious problems: no verification and can not quit

2008-03-17 Thread Michel BRIAND
Package: k3b
Version: 1.0.4-3
Severity: normal

Hi,

I'm using k3b frequently, one time a week, and every time I
do a DVD backup, with verification enabled, I notice
two problems, after the successful (hopefully) burn:

- the verification process does not start, I have to cancel, no
way to continue

- the Quit menu item is no-op: the application does not quit, I
have to kill it

Cheers,
Michel

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages k3b depends on:
ii  cdparanoia   3.10+debian~pre0-6  audio extraction tool for sampling
ii  cdrdao   1:1.2.2-7   records CDs in Disk-At-Once (DAO) 
ii  genisoimage  9:1.1.6-1   Creates ISO-9660 CD-ROM filesystem
ii  kdebase-bin  4:3.5.8.dfsg.1-7core binaries for the KDE base mod
ii  kdelibs-data 4:3.5.8.dfsg.1-7core shared data for all KDE appli
ii  kdelibs4c2a  4:3.5.8.dfsg.1-7core libraries and binaries for al
ii  libacl1  2.2.45-1Access control list shared library
ii  libart-2.0-2 2.3.20-1Library of functions for 2D graphi
ii  libattr1 1:2.4.41-1  Extended attribute shared library
pn  libaudio2none  (no description available)
ii  libc62.7-6   GNU C Library: Shared libraries
ii  libdbus-1-3  1.1.2-1 simple interprocess messaging syst
ii  libdbus-qt-1-1c2 0.62.git.20060814-2 simple interprocess messaging syst
pn  libdvdread3  none  (no description available)
ii  libexpat11.95.8-4XML parsing C library - runtime li
ii  libfontconfig1   2.5.0-2 generic font configuration library
ii  libfreetype6 2.3.5-1+b1  FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0]  0.1.9-2 Client library for the gamin file 
ii  libgcc1  1:4.3.0~rc2-1   GCC support library
pn  libhal1  none  (no description available)
ii  libice6  2:1.0.4-1   X11 Inter-Client Exchange library
ii  libidn11 1.4-1   GNU libidn library, implementation
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libk3b3  1.0.4-3 The KDE cd burning application lib
ii  libmusicbrainz4c2a   2.1.5-1 Second generation incarnation of t
ii  libpng12-0   1.2.15~beta5-3  PNG library - runtime
ii  libqt3-mt3:3.3.8b-4  Qt GUI Library (Threaded runtime v
ii  libsm6   2:1.0.3-1+b1X11 Session Management library
ii  libstdc++6   4.3.0~rc2-1 The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcursor1  1:1.1.9-1   X cursor management library
pn  libxext6 none  (no description available)
ii  libxft2  2.1.12-2FreeType-based font drawing librar
ii  libxi6   2:1.1.3-1   X11 Input extension library
ii  libxinerama1 1:1.0.2-1   X11 Xinerama extension library
ii  libxrandr2   2:1.2.2-1   X11 RandR extension library
ii  libxrender1  1:0.9.4-1   X Rendering Extension client libra
ii  libxt6   1:1.0.5-3   X11 toolkit intrinsics library
ii  wodim9:1.1.6-1   command line CD/DVD writing tool
ii  zlib1g   1:1.2.3.3.dfsg-11   compression library - runtime

Versions of packages k3b recommends:
ii  dvd+rw-tools7.0-9DVD+-RW/R tools
ii  kcontrol4:3.5.8.dfsg.1-7 control center for KDE
ii  kdebase-kio-plugins 4:3.5.8.dfsg.1-7 core I/O slaves for KDE
ii  vcdimager   0.7.23-4 A VideoCD (VCD) image mastering an

-- no debconf information



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



Bug#471339: nvidia-cg-toolkit: installation script needs more attention

2008-03-17 Thread Michel BRIAND
Package: nvidia-cg-toolkit
Version: 2.0.0012.deb1
Severity: normal

Hi Andres,

(please update your address book, my email address has changed)

It seems that the installation script needs some attention:
- it produces Perl warnings
- it, apparently, fails to get the tarball from Internet
- it, apparently, does not check for error at the end (look the last
  line)

The installation gives me this result today:

Paramétrage de nvidia-cg-toolkit (2.0.0012.deb1) ...
Option proxy requires an argument
Downloading 
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_x86.tar.gz
 for t
Use of uninitialized value in hash element at
/usr/share/perl5/LWP/Protocol.pm line 55.
Use of uninitialized value in pattern match (m//) at
/usr/share/perl5/LWP/Protocol.pm line 58.
Use of uninitialized value in concatenation (.) or string at
/usr/share/perl5/LWP/Protocol.pm line 
Use of uninitialized value in string eq at
/usr/share/perl5/LWP/UserAgent.pm line 195.
Downloading 
http://developer.download.nvidia.com/cg/Cg_2.0/2.0.0012/Cg-2.0_Jan2008_LanguageSpecific
6 architecture.
Use of uninitialized value in hash element at
/usr/share/perl5/LWP/Protocol.pm line 55.
Use of uninitialized value in pattern match (m//) at
/usr/share/perl5/LWP/Protocol.pm line 58.
Use of uninitialized value in concatenation (.) or string at
/usr/share/perl5/LWP/Protocol.pm line 
Use of uninitialized value in string eq at
/usr/share/perl5/LWP/UserAgent.pm line 195.
Can't open '/tmp/toolkit_file85442.tar.gz': Aucun fichier ou répertoire de ce 
type at /usr/bin/nvid
er line 222.
Checking MD5 sum for NVIDIA Cg Toolkit file...Paramétrage de phpmyadmin 
(4:2.11.5-1) ...


Cheers,
Michel

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages nvidia-cg-toolkit depends on:
ii  debconf [debconf-2.0] 1.5.19 Debian configuration management sy
ii  libcompress-zlib-perl 2.008-1Perl module for creation and manip
ii  libfile-copy-recursive-perl   0.35-1 Perl extension for recursively cop
ii  libwww-perl   5.808-1WWW client/server library for Perl
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 

nvidia-cg-toolkit recommends no packages.

-- debconf information:
  nvidia-cg-toolkit/http_proxy:
  nvidia-cg-toolkit/delete: false
  nvidia-cg-toolkit/httpget: true
  nvidia-cg-toolkit/local:
  nvidia-cg-toolkit/not_exist:




Bug#469641: alsa-base: alsa makes lot of output to .xsession-errors

2008-03-06 Thread Michel BRIAND
Package: alsa-base
Version: 1.0.16-1
Severity: normal

In my .xsession-errors I get lot of lines like this:

ALSA lib pcm.c:6618:(snd_pcm_slave_conf) unknown format unchanged

It seems there is a problem with alsa 1.0.16 [1]

Regards,
Michel

[1] - http://ubuntuforums.org/showthread.php?t=705943

-- Package-specific info:
--- Begin additional package status ---
Souhait=inconnU/Install?uppRim?urg?=?arder
| ?at=Non/Install?ichier-Config/d?qUet?chec-conFig/H=semi-install?/ 
Err?=(aucune)/H=?arder/besoin R?stallation/X=les deux (?at,Err: 
majuscule=mauvais)
||/ Nom   Version   Description
+++-=-=-==
ii  libasound21.0.16-1  ALSA library
--- End additional package status ---
--- Begin /proc/asound/version ---
Advanced Linux Sound Architecture Driver Version 1.0.14 (Thu May 31 09:03:25 
2007 UTC).
--- End /proc/asound/version ---
--- Begin /proc/asound/cards ---
 0 [ICH5   ]: ICH4 - Intel ICH5
  Intel ICH5 with AD1985 at irq 22
--- End /proc/asound/cards ---
--- Begin /dev/snd/ listing ---
total 0
crw-rw 1 root audio 116,  0 2008-02-17 22:13 controlC0
crw-rw 1 root audio 116, 24 2008-02-17 22:13 pcmC0D0c
crw-rw 1 root audio 116, 16 2008-02-17 22:13 pcmC0D0p
crw-rw 1 root audio 116, 25 2008-02-17 22:13 pcmC0D1c
crw-rw 1 root audio 116, 26 2008-02-17 22:13 pcmC0D2c
crw-rw 1 root audio 116, 27 2008-02-17 22:13 pcmC0D3c
crw-rw 1 root audio 116, 20 2008-02-17 22:13 pcmC0D4p
crw-rw 1 root audio 116,  1 2008-02-21 19:35 seq
crw-rw 1 root audio 116, 33 2008-02-17 22:13 timer
--- End /dev/snd/ listing ---

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages alsa-base depends on:
ii  linux-sound-base   1.0.16-1  base package for ALSA and OSS soun
ii  lsof   4.78.dfsg.1-4 List open files
ii  module-init-tools  3.3-pre11-4   tools for managing Linux kernel mo

Versions of packages alsa-base recommends:
ii  alsa-utils1.0.15-3   ALSA utilities

Versions of packages libasound2 depends on:
ii  libc6 2.7-6  GNU C Library: Shared libraries

-- no debconf information



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



Bug#467290: how to setup good LANG environment for aptitude ?

2008-02-24 Thread Michel BRIAND
Package: aptitude
Version: 0.4.10-1+b2
Severity: minor

I'm using aptitude with sudo and I always get those messages 
with aptitude is running installation :


perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = en
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory

How to get a good environment for it ?

I don't want to have LANG= set in /etc/environment. I have LANG= set in
~/.bash_profile and only there.

Cheers,
M.

-- Package-specific info:
Terminal: xterm
$DISPLAY is set.

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

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.7 0.7.11   Advanced front-end for dpkg
ii  libc6   2.7-6GNU C Library: Shared libraries
ii  libcwidget1 0.5.6.1-3high-level terminal interface libr
ii  libgcc1 1:4.3-20080202-1 GCC support library
ii  libncursesw55.6+20080203-1   Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a  2.0.17-2 type-safe Signal Framework for C++
ii  libstdc++6  4.3-20080202-1   The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)
ii  libparse-debianchangelog-perl 1.1.1-2parse Debian changelogs and output

-- no debconf information



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



  1   2   >