Bug#557437: no mention of how to turn on/off escaping for -t/-tv
On Sun, Nov 22, 2009 at 02:05:25AM +0800, jida...@jidanni.org wrote: > However, verbose has another effect, > $ 980731/QGIS/登革熱02-09.shx > 103896 blocks > $ -rw-r--r-- 1 jidanni jidanni 2964 Jul 22 22:37 > 980731/QGIS/\265n\255\262\274\36602-09.shx > 103896 blocks > > As you see, it escapes the filenames. I think this is the same as #416701, no? -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557446: libgtop2: FTBFS on hurd-i386
Package: libgtop2 Severity: important Tags: patch Hello, The stub backend doesn't build any more, so that libgtop2 doesn't build on hurd-i386, making a bunch of package bd-uninstallable. Here is a patch to fix the stub backend (of course, re-autoreconf is needed). Samuel -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.31 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash -- Samuel Thibault (03:13:14) bon (03:13:19) il est tard :p (03:13:25) c'est l'heure de manger (03:13:38) hm j'ai mang� � 1h moi, j'ai des horaires raisonnables diff -urN --exclude='*.o' --exclude='*.lo' --exclude='*.in' libgtop2-2.28.0.sav/sysdeps/stub/Makefile.am libgtop2-2.28.0/sysdeps/stub/Makefile.am --- libgtop2-2.28.0.sav/sysdeps/stub/Makefile.am2009-04-18 23:29:49.0 + +++ libgtop2-2.28.0/sysdeps/stub/Makefile.am2009-11-22 01:07:39.0 + @@ -8,7 +8,8 @@ sem_limits.c proclist.c procstate.c procuid.c \ proctime.c procmem.c procsignal.c prockernel.c \ procsegment.c procargs.c procmap.c netload.c \ - ppp.c netlist.c procopenfiles.c + ppp.c netlist.c procopenfiles.c procwd.c \ + procaffinity.c sysinfo.c libgtop_sysdeps_2_0_la_LDFLAGS = $(LT_VERSION_INFO) diff -urN --exclude='*.o' --exclude='*.lo' --exclude='*.in' libgtop2-2.28.0.sav/sysdeps/stub/glibtop_server.h libgtop2-2.28.0/sysdeps/stub/glibtop_server.h --- libgtop2-2.28.0.sav/sysdeps/stub/glibtop_server.h 2009-04-18 23:29:49.0 + +++ libgtop2-2.28.0/sysdeps/stub/glibtop_server.h 2009-11-22 01:02:16.0 + @@ -45,6 +45,8 @@ #define GLIBTOP_SUID_NETLOAD 0 #define GLIBTOP_SUID_NETLIST 0 #define GLIBTOP_SUID_PPP 0 +#define GLIBTOP_SUID_PROC_WD 0 +#define GLIBTOP_SUID_PROC_AFFINITY 0 G_END_DECLS diff -urN --exclude='*.o' --exclude='*.lo' --exclude='*.in' libgtop2-2.28.0.sav/sysdeps/stub/procaffinity.c libgtop2-2.28.0/sysdeps/stub/procaffinity.c --- libgtop2-2.28.0.sav/sysdeps/stub/procaffinity.c 1970-01-01 00:00:00.0 + +++ libgtop2-2.28.0/sysdeps/stub/procaffinity.c 2009-11-22 01:06:58.0 + @@ -0,0 +1,44 @@ +/* + + This file is part of LibGTop 2. + + LibGTop is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + LibGTop is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + for more details. + + You should have received a copy of the GNU General Public License + along with LibGTop; see the file COPYING. If not, write to the + Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +#include +#include +#include + +#include + +void +_glibtop_init_proc_affinity_s(glibtop *server) +{ + server->sysdeps.proc_affinity = +(1 << GLIBTOP_PROC_AFFINITY_NUMBER) | +(1 << GLIBTOP_PROC_AFFINITY_ALL); + +} + + +guint16 * +glibtop_get_proc_affinity_s(glibtop *server, glibtop_proc_affinity *buf, pid_t pid) +{ + memset(buf, 0, sizeof *buf); + + return NULL; +} + diff -urN --exclude='*.o' --exclude='*.lo' --exclude='*.in' libgtop2-2.28.0.sav/sysdeps/stub/proclist.c libgtop2-2.28.0/sysdeps/stub/proclist.c --- libgtop2-2.28.0.sav/sysdeps/stub/proclist.c 2009-04-18 23:29:49.0 + +++ libgtop2-2.28.0/sysdeps/stub/proclist.c 2009-11-22 01:30:53.0 + @@ -42,7 +42,7 @@ * On success, it returnes a pointer to a list of buf->number elements * each buf->size big. The total size is stored in buf->total. */ -unsigned * +pid_t * glibtop_get_proclist_s (glibtop *server, glibtop_proclist *buf, gint64 which, gint64 arg) { diff -urN --exclude='*.o' --exclude='*.lo' --exclude='*.in' libgtop2-2.28.0.sav/sysdeps/stub/procwd.c libgtop2-2.28.0/sysdeps/stub/procwd.c --- libgtop2-2.28.0.sav/sysdeps/stub/procwd.c 1970-01-01 00:00:00.0 + +++ libgtop2-2.28.0/sysdeps/stub/procwd.c 2009-11-22 01:46:06.0 + @@ -0,0 +1,48 @@ +/* + This file is part of LibGTop 2.0. + + LibGTop is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, + or (at your option) any later version. + + LibGTop is distribu
Bug#557445: mikmod doesn't handle bz2/gz/... files
Package: mikmod Version: 3.2.1-2 Severity: normal The manpage for ikmod claims it handled files compressed with gzip or bzip2, but this doesn't work: MikMod error: can't load "z-motion.xm" from archive "z-motion.xm.gz". When unpacked manually, the z-motion.xm plays fine in mikmod. I get the same error message for .bz2 compressed mods (with .gz replaced by .bz2). I have tried this on .s3m, and .it mods, and none of those work, either. -- System Information: Debian Release: 5.0.2 APT prefers stable APT policy: (990, 'stable'), (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.26-2-amd64 (SMP w/4 CPU cores) Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages mikmod depends on: hi libc6 2.7-18 GNU C Library: Shared libraries ii libmikmod23.1.11-a-6 A portable sound library ii libncurses5 5.7+20081213-1 shared libraries for terminal hand mikmod recommends no packages. Versions of packages mikmod suggests: ii bzip2 1.0.5-1high-quality block-sorting file co ii lha 1.14i-10.3 lzh archiver ii unrar 1:3.8.2-1 Unarchiver for .rar files (non-fre ii unzip 5.52-12De-archiver for .zip files ii zoo 2.10-21manipulate zoo archives -- 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#522078: [Debian-eeepc-devel] Bug#522078: rt2860-source: 2.6.31-0.slh.3-sidux either
-=| Andreas Marschke, Sun, Nov 22, 2009 at 04:26:46AM +0100 |=- > Package: rt2860-source > Version: 1.8.0.0-3 > Severity: normal > [...] > file the next thing is the actual compiling. This will show this > output: > cp -f os/linux/Makefile.6 /usr/src/modules/rt2860/os/linux/Makefile > make -C /lib/modules/2.6.31-0.slh.3-sidux-686/build > SUBDIRS=/usr/src/modules/rt2860/os/linux modules > make: Entering an unknown directory > make: *** /lib/modules/2.6.31-0.slh.3-sidux-686/build: No such file or > directory. Stop. > make: Leaving an unknown directory > make[1]: *** [LINUX] Error 2 > make[1]: Leaving directory `/usr/src/modules/rt2860' > make: *** [binary-modules] Error 2 > dpkg-buildpackage: error: debian/rules build gave error exit status 2 FYI, rt2860 is included in Linux 2.6.31, so you don't need to compile additional modules. AFAIR, we keep it only for the sake of users of Lenny. -- dam signature.asc Description: Digital signature
Bug#557447: cplay: crash once we forward, with right arrow, the music
Package: cplay Version: 1.49-10 Severity: important Dear Sir cplay hangs while playing music. I had ogg123 that was running, i listen mp3 and press RIGHT arrow to go bit further in the mp3 it directly jumps to the next track insted :( I thought that it can for ogg123 ... so les beta testing apt-get remove ogg123 then restart cplay. and here we go splay plays the music and it hangs again as soon as we fool around to listen bit forward (right key) on several mp3... so it hangs again 1. It was workign under Debian Stable 2. It hangs, please it s crashing 3. It is an important or serious issue lsmod | grep snd lsmod | grep snd snd_usb_audio 70272 0 snd_usb_lib13440 1 snd_usb_audio snd_hwdep 6212 1 snd_usb_audio snd_hda_intel 325688 0 snd_pcm_oss32800 0 snd_mixer_oss 12320 1 snd_pcm_oss snd_pcm62660 3 snd_usb_audio,snd_hda_intel,snd_pcm_oss snd_page_alloc 7816 2 snd_hda_intel,snd_pcm snd_seq_dummy 2660 0 snd_seq_oss24992 0 snd_seq_midi5728 0 snd_rawmidi18496 2 snd_usb_lib,snd_seq_midi snd_seq_midi_event 6432 2 snd_seq_oss,snd_seq_midi snd_seq41456 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event snd_timer 17800 2 snd_pcm,snd_seq snd_seq_device 6380 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq snd45636 11 snd_usb_audio,snd_hwdep,snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device soundcore 6368 1 snd usbcore 118192 6 snd_usb_audio,snd_usb_lib,usbhid,ehci_hcd,uhci_hcd Best regards Y. -- System Information: Debian Release: 5.0.3 APT prefers oldstable APT policy: (500, 'oldstable'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.26-2-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages cplay depends on: ii python2.5.2-3An interactive high-level object-o Versions of packages cplay recommends: ii python-pyvorbis 1.3-2 A Python interface to the Ogg Vorb ii vorbis-tools 1.2.0-5several Ogg Vorbis tools Versions of packages cplay suggests: pn mikmod (no description available) ii mpg123 1.4.3-4 MPEG layer 1/2/3 audio player ii mpg321 [mpg123] 0.2.10.6mpg123 clone that doesn't use floa pn python-id3 (no description available) ii sox 14.0.1-2+b1 Swiss army knife of sound processi pn speex (no description available) ii splay0.9.5.2-11 Sound player for MPEG-1,2 layer 1, pn xmp(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#123914: Missing info
Hello, 1) The reporter did not tell which *particular* symbol, that when deleted, causes the crash. 2) The reporter has not replied Hamish regarding his symbol library, since 6 years. Should this bug be closed or what ? -- أحمد المحمودي (Ahmed El-Mahmoudy) Digital design engineer GPG KeyID: 0xEDDDA1B7 (@ subkeys.pgp.net) GPG Fingerprint: 8206 A196 2084 7E6D 0DF8 B176 BC19 6A94 EDDD A1B7 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557427: cssc: many SCCS utilities are not in the default PATH
On Sun, Nov 22, 2009 at 02:46:13AM +0200, Dmitri Vorobiev wrote: > The `cssc' package provides a set of SCCS utilities with binaries > buried in /usr/lib/cssc. This bug is to request putting symlinks > to these utilities to /usr/bin to have them usable not only via > the `sccs' frontend but also directly. > > Note that POSIX specifies that at least the following utilities > be available under the DEVELOPMENT option: `admin', `delta', `get', > `prs', `rmdel', `sact', `unget', `val', `what'. All those utilities > are already present in the cssc package, but not visible in the > default PATH. Given that sccs is a legacy system, and that other major unices do not have them in their default PATH (eg. Solaris requires you to add /usr/ccs/bin to you PATH to get them), I find it reasonable to let the user the Debian user add /usr/lib/cssc to his own, and not deviate from upstream. Given that you're not the 1st person to request this, I guess it would make sense to add a note in README.Debian about that. Best regards, -- Yann -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557448: linux-image-2.6.31-1-amd64: net.ipv4.conf.all.secure_redirects not working
Package: linux-2.6 Version: 2.6.31-2 Severity: normal Hi I have a local lan network 192.168.11.0/24 dgw - 192.168.11.1 I also have a wireless network 192.168.10.0/24 dgw - 192.168.10.1 the router at 192.168.10.1 is a linux server with the address 192.168.11.10 as well. I have placed a ip route add/replace 192.168.10.0/24 via 192.168.11.10 on 192.168.11.1 this send the appropiate icmp redirects for 192.168.10.0/24 via 192.168.11.10 what seems to be failing is this scenario. laptop connected to 192.168.11.0/24 (ip via dhcp) with net.ipv4.conf.all.accept_redirects = 0 net.ipv4.conf.all.secure_redirects = 1 All the other interface redirects set to 1 with another linux machine (alex-mini) on the wireless (192.168.10.0/24 - ip via dhcp), I try and ssh to laptop - which fails. When I look at the tcpdump on laptop I see the packets coming in but laptop is trying to send the packets via 192.168.11.1, it doesn't seem to acknowledge the icmp redirects even though I have secure_redirects set to 1 and 192.168.11.1 is the default gateway.. when I set net.ipv4.conf.all.accept_redirects to 1 everything works fine, the icmp redirect is accepted this seems to be contry to the documenation in sysctl.conf , which says these flags are OR Alex -- Package-specific info: ** Version: Linux version 2.6.31-1-amd64 (Debian 2.6.31-2) (b...@decadent.org.uk) (gcc version 4.3.4 (Debian 4.3.4-6) ) #1 SMP Mon Nov 16 04:44:38 UTC 2009 ** Command line: BOOT_IMAGE=/vmlinuz-2.6.31-1-amd64 root=UUID=f0b97f9e-1483-4764-bd56-d321a42de30b ro quiet ** Tainted: P (1) * Proprietary module has been loaded. ** Kernel log: [ 18.656321] sysctl net.netfilter.nf_conntrack_acct=1 to enable it. [ 18.921469] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 19.430416] r8169: eth1: link up [ 19.430422] r8169: eth1: link up [ 19.678609] r8169: eth0: link up [ 19.678618] r8169: eth0: link up [ 19.681986] ADDRCONF(NETDEV_UP): eth2: link is not ready [ 19.684488] ADDRCONF(NETDEV_UP): eth3: link is not ready [ 19.717614] Bridge firewalling registered [ 19.721071] device eth0 entered promiscuous mode [ 19.723618] device eth2 entered promiscuous mode [ 19.726307] device eth3 entered promiscuous mode [ 19.727732] br0: port 1(eth0) entering learning state [ 34.724008] br0: port 1(eth0) entering forwarding state [ 35.705179] powernow-k8: Found 1 AMD Phenom(tm) II X4 945 Processor processors (4 cpu cores) (version 2.20.00) [ 35.705215] powernow-k8:0 : pstate 0 (3000 MHz) [ 35.705217] powernow-k8:1 : pstate 1 (2300 MHz) [ 35.705218] powernow-k8:2 : pstate 2 (1800 MHz) [ 35.705219] powernow-k8:3 : pstate 3 (800 MHz) [ 53.660882] lp0: using parport0 (interrupt-driven). [ 53.668471] ppdev: user-space parallel port driver [ 73.743443] warning: `jsvc' uses 32-bit capabilities (legacy support in use) [ 74.405449] RPC: Registered udp transport module. [ 74.405457] RPC: Registered tcp transport module. [ 74.606950] Installing knfsd (copyright (C) 1996 o...@monad.swb.de). [ 74.833354] svc: failed to register lockdv1 RPC service (errno 97). [ 74.835947] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory [ 74.886996] NFSD: starting 90-second grace period [ 77.630445] nvidia: module license 'NVIDIA' taints kernel. [ 77.630454] Disabling lock debugging due to kernel taint [ 77.892039] nvidia :01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18 [ 77.892089] nvidia :01:00.0: setting latency timer to 64 [ 77.893150] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 190.42 Tue Oct 20 20:25:42 PDT 2009 [ 86.076377] xfce4-settings-[5207]: segfault at 1 ip 00406acb sp 7fff7784be70 error 4 in xfce4-settings-helper[40+a000] [ 86.135653] xfce4-settings-[5209]: segfault at 1 ip 00406acb sp 7fff10e88800 error 4 in xfce4-settings-helper[40+a000] [ 258.680468] Intel AES-NI instructions are not detected. [ 258.724491] padlock: VIA PadLock not detected. [ 258.772524] padlock: VIA PadLock Hash Engine not detected. [ 259.071662] EXT4-fs (dm-27): barriers enabled [ 259.086847] kjournald2 starting: pid 6326, dev dm-27:8, commit interval 5 seconds [ 259.114048] EXT4-fs (dm-27): internal journal on dm-27:8 [ 259.114052] EXT4-fs (dm-27): delayed allocation enabled [ 259.114054] EXT4-fs: file extents enabled [ 259.172902] EXT4-fs: mballoc enabled [ 259.172919] EXT4-fs (dm-27): mounted filesystem with ordered data mode [ 259.298416] EXT4-fs (dm-26): barriers enabled [ 259.303782] kjournald2 starting: pid 6333, dev dm-26:8, commit interval 5 seconds [ 259.312974] EXT4-fs (dm-26): internal journal on dm-26:8 [ 259.312985] EXT4-fs (dm-26): delayed allocation enabled [ 259.312993] EXT4-fs: file extents enabled [ 259.336332] EXT4-fs: mballoc enabled [ 259.336344] EXT4-fs (dm-26): mounted filesystem with ordered data mode [ 6603.814713] vboxdrv: Trying to deactivate the NMI watchdog permanently... [ 6603.814722] v
Bug#557449: Current lintian problems in ffmpeg
Package: lintian Version: 2.2.17 Severity: normal Hi dear lintian Maintainers. we discovered an lintian error in the ffmpeg package and I would like you to ask for advice on this issue: Andres Mejia writes: > Have you seen the latest lintian problems? > http://lintian.debian.org/full/pkg-multimedia-maintain...@lists.alioth.debian.org.html#ffmpeg Andreas is talking about this error: E: weak-library-dev-dependency libavutil-dev on libavutil49 (>= ${binary:Version}) | libavutil-unstripped-49 (>= ${binary:Version}) libavutil-dev on libavutil49 (<= ${source:Upstream-Version}-99) | libavutil-unstripped-49 (<= ${source:Upstream-Version}-99) libavcodec-dev on libavcodec52 (>= ${binary:Version}) | libavcodec-unstripped-52 (>= ${binary:Version}) libavcodec-dev on libavcodec52 (<= ${source:Upstream-Version}-99) | libavcodec-unstripped-52 (<= ${source:Upstream-Version}-99) libavdevice-dev on libavdevice52 (>= ${binary:Version}) | libavdevice-unstripped-52 (>= ${binary:Version}) libavdevice-dev on libavdevice52 (<= ${source:Upstream-Version}-99) | libavdevice-unstripped-52 (<= ${source:Upstream-Version}-99) libavformat-dev on libavformat52 (>= ${binary:Version}) | libavformat-unstripped-52 (>= ${binary:Version}) libavformat-dev on libavformat52 (<= ${source:Upstream-Version}-99) | libavformat-unstripped-52 (<= ${source:Upstream-Version}-99) libavfilter-dev on libavfilter0 (>= ${binary:Version}) | libavfilter-unstripped-0 (>= ${binary:Version}) libavfilter-dev on libavfilter0 (<= ${source:Upstream-Version}-99) | libavfilter-unstripped-0 (<= ${source:Upstream-Version}-99) libpostproc-dev on libpostproc51 (>= ${binary:Version}) | libpostproc-unstripped-51 (>= ${binary:Version}) libpostproc-dev on libpostproc51 (<= ${source:Upstream-Version}-99) | libpostproc-unstripped-51 (<= ${source:Upstream-Version}-99) libswscale-dev on libswscale0 (>= ${binary:Version}) | libswscale-unstripped-0 (>= ${binary:Version}) libswscale-dev on libswscale0 (<= ${source:Upstream-Version}-99) | libswscale-unstripped-0 (<= ${source:Upstream-Version}-99) I think this is an false positive. Let me explain: - there exists 2 flavors of ffmpeg. One is the regular set of packages, these can be found in the debian archive. Then there is an set of extra packages that are built against libraries that are currently not in debian. They are marked with -unstripped- in this lintian report, but this has already been changed to -extra- in git. - Both sets are supposed to be ABI compatible. - the version numbers of these package sets do no necessarily need to be kept in sync. They are different uploads and keeping them in sync is difficult. In this situation, I think the error is overexaggeratd. What do you as lintian maintainer think about this? Shall we add an override, or do you think that lintian should be changed here? If the former, please reassing and retitle this bug appropriately. -- Gruesse/greetings, Reinhard Tartler, KeyID 945348A4 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557450: libgnutls26: gnutls_record_recv returned -24 (Decryption has failed.) on data connection
Package: libgnutls26 Version: 2.8.5-2 Severity: important -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nov 21 22:24:16 wzdftpd[3467]: DEBUG IPv4 connection accepted Nov 21 22:24:18 wzdftpd[3467]: Data connection succesfully switched to ssl (cipher: AES-128-CBC) Nov 21 22:24:19 wzdftpd[3467]: DEBUG parse_ftp_command("PASV") Nov 21 22:24:19 wzdftpd[3467]: DEBUG parse_ftp_command("APPE DSC02520.jpg") Nov 21 22:24:19 wzdftpd[3467]: DEBUG IPv4 connection accepted Nov 21 22:24:20 wzdftpd[3467]: Data connection succesfully switched to ssl (cipher: AES-128-CBC) Nov 21 22:24:23 wzdftpd[3467]: gnutls_record_recv returned -24 (Decryption has failed.) on data connection Nov 21 22:24:24 wzdftpd[3467]: DEBUG parse_ftp_command("PASV") Nov 21 22:24:24 wzdftpd[3467]: DEBUG parse_ftp_command("MLSD") Nov 21 22:24:24 wzdftpd[3467]: DEBUG IPv4 connection accepted Nov 21 22:24:25 wzdftpd[3467]: Data connection succesfully switched to ssl (cipher: AES-128-CBC) Nov 21 22:24:25 wzdftpd[3467]: DEBUG parse_ftp_command("PASV") Nov 21 22:24:25 wzdftpd[3467]: DEBUG parse_ftp_command("APPE DSC02520.jpg") Nov 21 22:24:25 wzdftpd[3467]: DEBUG IPv4 connection accepted Nov 21 22:24:26 wzdftpd[3467]: Data connection succesfully switched to ssl (cipher: AES-128-CBC) Nov 21 22:24:29 wzdftpd[3467]: gnutls_record_recv returned -24 (Decryption has failed.) on data connection Nov 21 22:24:29 wzdftpd[3467]: DEBUG parse_ftp_command("PASV") Nov 21 22:24:29 wzdftpd[3467]: DEBUG parse_ftp_command("MLSD") Nov 21 22:24:29 wzdftpd[3467]: DEBUG IPv4 connection accepted Nov 21 22:24:31 wzdftpd[3467]: Data connection succesfully switched to ssl (cipher: AES-128-CBC) Nov 21 22:24:31 wzdftpd[3467]: DEBUG parse_ftp_command("PASV") Nov 21 22:24:31 wzdftpd[3467]: DEBUG parse_ftp_command("APPE DSC02520.jpg") Nov 21 22:24:31 wzdftpd[3467]: DEBUG IPv4 connection accepted Nov 21 22:24:32 wzdftpd[3467]: Data connection succesfully switched to ssl (cipher: AES-128-CBC) Nov 21 22:24:35 wzdftpd[3467]: gnutls_record_recv returned -24 (Decryption has failed.) on data connection - -- System Information: Debian Release: squeeze/sid Architecture: amd64 (x86_64) Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages libgnutls26 depends on: ii libc6 2.10.1-7 GNU C Library: Shared libraries ii libgcrypt111.4.4-5 LGPL Crypto library - runtime libr ii libtasn1-3 2.3-1 Manage ASN.1 structures (runtime) ii zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime libgnutls26 recommends no packages. Versions of packages libgnutls26 suggests: pn gnutls-bin (no description available) - -- no debconf information -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) iEYEARECAAYFAksI/DMACgkQw5UvgfnzqGo7PgCgh0pnv5ESAI0ZzvQ++AfhEhtn njQAoJ0N4Q6dtcfb7x2KP6pJ5MMlnT7G =ozsp -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#556426: install overwrites /etc/default/console-setup without warning
Hi Anton, First of all, thanks for solving the bug (though I have yet to test it at home). Your effort is much appreciated. Second, On Wednesday 18 November 2009 20:15:47 Anton Zinoviev wrote: > > BTW, your bug report is not a duplicate of 527641, it is a new one. > I disagree. The symptoms are different, but the cause is one -- that is still not fixed -- and that is the fact that console-setup will overwrite a configuration file changed by the user, under /etc, instead of asking the user to resolve the difference. You have solved separately the two instances (that I know of) of problems this caused, by making the package understand the relevant changes; but unless the root cause is handled, I suspect instances will continue to pop up. Hope this helps, Shai. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#554574: libstdc++6: apt segfaults on hppa
On Sat, Nov 21, 2009 at 10:00:59PM -0500, John David Anglin wrote: > > > > On Sat, Nov 21, 2009 at 5:37 AM, Aurelien Jarno > > wrote: > > > > > > I confirm, it's what I see in the testsuite log: > > > > > > | 77 > > > | __signbitl > > > | version status: incompatible > > > | GLIBCXX_3.4 > > > | type: function > > > | status: added > > > > If __signbitl is the only failure in the abi_check, then that's easy > > to fix, the testsuite needs to be updated. > > The fail is somewhat puzzling because the problem is supposed fixed > in the 4.4 branch. > > > With cloog/ppl disabled I still get 7 testsuite failures, so I'll have > > to dig into each failure tommorow and see what's wrong. > > > > ~~~ > > Running target unix > > FAIL: abi_check > > FAIL: 26_numerics/complex/13450.cc (test for excess errors) > > UNRESOLVED: 26_numerics/complex/13450.cc compilation failed to produce > > executable > > FAIL: 26_numerics/complex/pow.cc (test for excess errors) > > UNRESOLVED: 26_numerics/complex/pow.cc compilation failed to produce > > executable > > XPASS: 26_numerics/headers/cmath/c99_classification_macros_c.cc (test > > for excess errors) > > FAIL: 29_atomics/atomic_flag/clear/1.c execution test > > FAIL: 29_atomics/atomic_flag/test_and_set/explicit.c execution test > > FAIL: tr1/8_c_compatibility/complex/overloads_float.cc (test for excess > > errors) > > FAIL: tr1/8_c_compatibility/complex/overloads_int.cc (test for excess > > errors) > > UNRESOLVED: tr1/8_c_compatibility/complex/overloads_int.cc compilation > > failed to produce executable > > Try adding --disable-libstdcxx-pch as mentioned earlier in this thread. > This is PR 39355: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39355 > > Good luck in debugging this bug! I was not able to determine the > actual cause. It appears GCC's internal data are somewhat corrupt > when the pch header files are generated. This causes various tests > to ICE when compiled with the pch headers. > > The problem appears to have gone away with head. I don't see it with > hpux. > Note that latest version of gcc 4.4 in Debian is built with --disable-libstdcxx-pch, but the segfault is this present :( -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#554574: libstdc++6: apt segfaults on hppa
On Sat, Nov 21, 2009 at 08:55:12PM -0500, Carlos O'Donell wrote: > On Sat, Nov 21, 2009 at 5:37 AM, Aurelien Jarno wrote: > > > > I confirm, it's what I see in the testsuite log: > > > > | 77 > > | __signbitl > > | version status: incompatible > > | GLIBCXX_3.4 > > | type: function > > | status: added > > If __signbitl is the only failure in the abi_check, then that's easy > to fix, the testsuite needs to be updated. For the testsuite part yes, but not the segfault :( > With cloog/ppl disabled I still get 7 testsuite failures, so I'll have > to dig into each failure tommorow and see what's wrong. > > ~~~ > Running target unix > FAIL: abi_check > FAIL: 26_numerics/complex/13450.cc (test for excess errors) > UNRESOLVED: 26_numerics/complex/13450.cc compilation failed to produce > executable > FAIL: 26_numerics/complex/pow.cc (test for excess errors) > UNRESOLVED: 26_numerics/complex/pow.cc compilation failed to produce > executable > XPASS: 26_numerics/headers/cmath/c99_classification_macros_c.cc (test > for excess errors) > FAIL: 29_atomics/atomic_flag/clear/1.c execution test > FAIL: 29_atomics/atomic_flag/test_and_set/explicit.c execution test > FAIL: tr1/8_c_compatibility/complex/overloads_float.cc (test for excess > errors) > FAIL: tr1/8_c_compatibility/complex/overloads_int.cc (test for excess errors) > UNRESOLVED: tr1/8_c_compatibility/complex/overloads_int.cc compilation > failed to produce executable > Does the resulting binary works correctly with apt-get? -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557451: xfce4-terminal: background transparency is broken
Package: xfce4-terminal Version: 0.4.2-1 Severity: normal The option 'Edit->Preferences->Appearance->Background' set to 'Transparent background' enables only transparency against selected background color and not against other windows. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (990, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages xfce4-terminal depends on: ii exo-utils 0.3.102-1 Utility files for libexo ii libatk1.0-0 1.26.0-1 The ATK accessibility toolkit ii libc6 2.10.1-2 GNU C Library: Shared libraries ii libdbus-1-3 1.2.16-2 simple interprocess messaging syst ii libdbus-glib-1-2 0.82-1 simple interprocess messaging syst ii libexo-0.3-0 0.3.102-1 Library with extensions for Xfce ii libglib2.0-0 2.22.2-2 The GLib library of C routines ii libgtk2.0-0 2.18.3-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.0-1 Layout and rendering of internatio ii libvte9 1:0.22.4-1 Terminal emulator widget for GTK+ ii libx11-6 2:1.2.2-1 X11 client-side library ii libxfce4util4 4.6.1-1Utility functions library for Xfce Versions of packages xfce4-terminal recommends: ii dbus-x11 1.2.16-2 simple interprocess messaging syst xfce4-terminal 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#557444: try to remove /etc/rc0.d/K20cpufrequtils which doesn't exist (/etc/rc0.d/K01cpufrequtils exists)
Package: cpufrequtils Version: 006-1 Severity: normal Hi, During the upgrade of cpufrequtils an error occurs. It tries to remove /etc/rc0.d/K20cpufrequtils. But the file doesn't exist. On my SID I have : /etc/rc0.d/K01cpufrequtils which is link to ../init.d/cpufrequtils Best regards, Guillaume -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.31.6-1 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to fr_FR.UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages cpufrequtils depends on: ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii libc6 2.10.1-7 GNU C Library: Shared libraries ii libcpufreq0 006-1 shared library to deal with the cp ii lsb-base 3.2-23 Linux Standard Base 3.2 init scrip cpufrequtils recommends no packages. cpufrequtils suggests no packages. -- debconf information: cpufrequtils/enable: true -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#184140: Please encode URLs containing plus signs
tag 184140 + patch thanks Heya, I found the issue and prepared a patch. Marc -- BOFH #14: sounds like a Windows problem, try calling Microsoft support >From 59a8ad502123e34f496a0f9d9cd381f9c190a829 Mon Sep 17 00:00:00 2001 From: Marc Brockschmidt Date: Wed, 23 Sep 2009 17:52:48 + Subject: [PATCH] Quote input used in URLs (closes: #184140) --- update_out/update_out.py | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/update_out/update_out.py b/update_out/update_out.py index fe566a4..70fad9d 100755 --- a/update_out/update_out.py +++ b/update_out/update_out.py @@ -12,7 +12,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -import sys, re, string, time, random, math +import sys, re, string, time, random, math, urllib import britney if len(sys.argv) != 4: @@ -563,8 +563,8 @@ def should_upgrade_src(src, suite, orig, origpkgs, new, newpkgs, approvals, for v in oodbins.keys(): if oodtxt: oodtxt = oodtxt + "; " oodtxt = oodtxt + "%s (from http://buildd.debian.org/build.php?arch=%s&pkg=%s&ver=%s\"; target=\"_blank\">%s)" % \ - (", ".join(oodbins[v]), arch, src, v, v) - text = "out of date on http://buildd.debian.org/build.php?arch=%s&pkg=%s&ver=%s\"; target=\"_blank\">%s: %s" % (arch, src, srcv, arch, oodtxt) + (", ".join(oodbins[v]), arch, urllib.quote(src), urllib.quote(srcv), v) + text = "out of date on http://buildd.debian.org/build.php?arch=%s&pkg=%s&ver=%s\"; target=\"_blank\">%s: %s" % (arch, urllib.quote(src), urllib.quote(srcv), arch, oodtxt) if arch in fuckedarches: text = text + " (but %s isn't keeping up," % \ @@ -589,10 +589,10 @@ def should_upgrade_src(src, suite, orig, origpkgs, new, newpkgs, approvals, if len(newb) > 0: updatecand = 0 exc.addhtml("%s (%s) http://bugs.debian.org/cgi-bin/pkgreport.cgi?which=pkg&data=%s&sev-inc=critical&sev-inc=grave&sev-inc=serious\"; target=\"_blank\">has new bugs!" % \ - (pkg, ", ".join(pkgs[pkg]), pkg)) -exc.addhtml("Updating %s introduces new bugs: %s" % (pkg, ", ".join(["http://bugs.debian.org/%s\";>#%s" % (a,a) for a in newb]))) + (pkg, ", ".join(pkgs[pkg]), urllib.quote(pkg))) +exc.addhtml("Updating %s introduces new bugs: %s" % (pkg, ", ".join(["http://bugs.debian.org/%s\";>#%s" % (urllib.quote(a),a) for a in newb]))) if len(oldb) > 0: -exc.addhtml("Updating %s fixes old bugs: %s" % (pkg, ", ".join(["http://bugs.debian.org/%s\";>#%s" % (a,a) for a in oldb]))) +exc.addhtml("Updating %s fixes old bugs: %s" % (pkg, ", ".join(["http://bugs.debian.org/%s\";>#%s" % (urllib.quote(a),a) for a in oldb]))) if len(oldb) > len(newb) and len(newb) > 0: exc.addhtml("%s introduces new bugs, so still ignored (even though it fixes more than it introduces, whine at debian-release)" % (pkg)) -- 1.6.3.3
Bug#557446: libgtop2: FTBFS on hurd-i386
Le dimanche 22 novembre 2009 à 09:00 +0100, Samuel Thibault a écrit : > Package: libgtop2 > Severity: important > Tags: patch > > Hello, > > The stub backend doesn't build any more, so that libgtop2 doesn't build > on hurd-i386, making a bunch of package bd-uninstallable. Here is a > patch to fix the stub backend (of course, re-autoreconf is needed). While you’re at it, do you know whether it needs the daemon and the setuid helper installed? I already have to fix the kfreebsd package for that effect, but I don’t know whether the hurd version requires them. (If you don’t know, I should be able to tell from the logs of make install.) Thanks, -- .''`. Josselin Mouette : :' : `. `' “I recommend you to learn English in hope that you in `- future understand things” -- Jörg Schilling signature.asc Description: Ceci est une partie de message numériquement signée
Bug#557168: amarok: Lots of crashes
Hello, On sekmadienis 22 Lapkritis 2009 03:24:38 Gordon Haverland wrote: > I'm running 2.2.1-1 here. Now at 5 crashes (3 with 1 star, 2 with > 0 stars). I have the apt-get for the kdelibs5-dbg going at the > moment. > > Before I sent this note, I got another crash (with the other dbg > packages installed). This came up as a 3 star crash report (which > I have saved locally). However, I have no accounts at bugs.kde > nor any desire to join. I have always found the KDE bug system > un-useful. And I really don't like the idea of registering to > submit a bug. If I mail in a report, you have my email address to > send questions to. Why do I need to register? Well, it's how their system works. Anyway, attach backtraces to your next mail. All of them. It is very likely that those crashes are already reported upstream. > If I get another 3 start report, I'll do the -2 upgrade, and see > what happens there. And rescan collection. -- Modestas Vainius signature.asc Description: This is a digitally signed message part.
Bug#557452: xfce4-xkb-plugin: segfaults repeatedly after add and removal of the 'fi' layout
Package: xfce4-xkb-plugin Version: 0.5.3.2-2 Severity: important I had three keyboard layouts (en, ru, ua), controlled by xfce4-xkb-plugin (i.e. no XkbLayout entries in xorg.conf). Then I tried to add the 'fi' keyboard layout, and it worked. Then I tried to remove it, and the plugin segfaulted. Now I can't even launch it - the plugin just repeatedly segfaults: Nov 22 11:39:05 1501-debian kernel: [48995.014079] xfce4-xkb-plugi[4928]: segfault at 20 ip 7fd83e36e411 sp 7fffbb35d548 error 4 in libc-2.10.1.so[7fd83e2f5000+14a000] Nov 22 11:39:32 1501-debian kernel: [49021.617278] xfce4-xkb-plugi[9745]: segfault at 60 ip 7f3037bd5411 sp 7fffbfcc3298 error 4 in libc-2.10.1.so[7f3037b5c000+14a000] Nov 22 11:39:46 1501-debian kernel: [49035.776836] xfce4-xkb-plugi[9753]: segfault at 20 ip 7fc154f0c411 sp 7fffd202dd68 error 4 in libc-2.10.1.so[7fc154e93000+14a000] -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (990, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages xfce4-xkb-plugin depends on: ii libatk1.0-01.26.0-1 The ATK accessibility toolkit ii libc6 2.10.1-2 GNU C Library: Shared libraries ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.6.0-4 generic font configuration library ii libfreetype6 2.3.11-1 FreeType 2 font engine, shared lib ii libglib2.0-0 2.22.2-2 The GLib library of C routines ii libgtk2.0-02.18.3-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.0-1 Layout and rendering of internatio ii librsvg2-2 2.26.0-1 SAX-based renderer library for SVG ii libwnck22 2.26.1-1 Window Navigator Construction Kit ii libxfce4util4 4.6.1-1 Utility functions library for Xfce ii libxfcegui4-4 4.6.1-1+b1Basic GUI C functions for Xfce4 ii libxklavier15 4.0-2 X Keyboard Extension high-level AP ii libxml22.7.6.dfsg-1 GNOME XML library ii xfce4-panel4.6.2-1 The Xfce4 desktop environment pane ii zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime xfce4-xkb-plugin recommends no packages. xfce4-xkb-plugin 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#557453: discus: Disk usage reported inconsistant with "df" ones
Package: discus Version: 0.2.9-5 Severity: normal -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've an ext3 partition (lvm2), it is reported with 346M left with df and 1.07G with discus, here are the output of both the discus and the df command together with the structure of the ext2 filesystem. The filesystem (lvm logical volume) is /dev/cryptvg00/photos_lv, mount point is /photos. /dev/sdd1 20G 1.4G19G 7% /media/rn int(rand [jean-...@tangerine] % discus ~ Mount Total Used Avail Prcnt Graph / 461.0 Mo 218.7 Mo 242.2 Mo47.5% [*-] /boot 227.8 Mo 46.5 Mo 181.3 Mo20.4% [**] /usr 9.17 Go 8.09 Go 1.07 Go88.3% [*-] /opt 3.71 Go 1.29 Go 2.43 Go34.7% [***---] /var 1.83 Go 985.5 Mo 888.5 Mo52.6% [*-] /home6.01 Go 4.95 Go 1.06 Go82.4% [--] /tmp 5.58 Go 4.9 Mo 5.57 Go 0.1% [--] /usr/local 7.65 Go 4.20 Go 3.45 Go54.9% [*-] /usr/mail 947.3 Mo 4.2 Mo 943.2 Mo 0.4% [--] /photos 14.76 Go 13.69 Go 1.07 Go92.7% [*-] /music 4.92 Go 3.26 Go 1.66 Go66.3% [***---] /extra 75.13 Go 11.59 Go 63.54 Go15.4% [**] +n int(rand 18.62 Go 1.23 Go 17.39 Go 6.6% [*-] [jean-...@tangerine] % df Filesystem 1K-blocks Used Available Use% Mounted on /dev/mapper/vg00-root_lv 472036223998223667 51% / tmpfs 1900964 4 1900960 1% /lib/init/rw udev 10240 392 9848 4% /dev tmpfs 1900964 0 1900964 0% /dev/shm /dev/md3233225 47577173607 22% /boot /dev/mapper/vg00-usr_lv 9611492 8485048638204 94% /usr /dev/mapper/vg00-opt_lv 3893248 1350324 2542924 35% /opt /dev/mapper/vg00-var_lv 1919048 1009064812500 56% /var /dev/mapper/cryptvg00-home_lv 6297600 5188324 1109276 83% /home /dev/mapper/cryptvg00-tmp_lv 5847040 4968 5842072 1% /tmp /dev/mapper/cryptvg00-local_lv 8017920 4402448 3615472 55% /usr/local /dev/mapper/cryptvg00-mail_lv 970048 4256965792 1% /usr/mail /dev/mapper/cryptvg00-photos_lv 15481840 14358492337084 98% /photos /dev/mapper/cryptvg00-music_lv 5160576 3422008 1476424 70% /music /dev/sdb1 78779268 12156416 62621064 17% /extra /dev/sdd1 19525456 1294688 18230768 7% /media/rn int(rand tune2fs 1.41.9 (22-Aug-2009) Filesystem volume name: Last mounted on: Filesystem UUID: 3b531f5c-1772-440b-b331-b86d4e1894fc Filesystem magic number: 0xEF53 Filesystem revision #:1 (dynamic) Filesystem features: has_journal ext_attr resize_inode dir_index filetype needs_recovery sparse_super large_file Filesystem flags: signed_directory_hash Default mount options:(none) Filesystem state: clean Errors behavior: Continue Filesystem OS type: Linux Inode count: 983040 Block count: 3932160 Reserved block count: 196566 Free blocks: 280837 Free inodes: 977562 First block: 0 Block size: 4096 Fragment size:4096 Reserved GDT blocks: 127 Blocks per group: 32768 Fragments per group: 32768 Inodes per group: 8192 Inode blocks per group: 512 Filesystem created: Tue Sep 15 18:31:23 2009 Last mount time: Sun Nov 22 09:50:42 2009 Last write time: Sun Nov 22 09:50:42 2009 Mount count: 44 Maximum mount count: -1 Last checked: Mon Nov 9 20:15:03 2009 Check interval: 5184000 (2 months) Next check after: Fri Jan 8 20:15:03 2010 Reserved blocks uid: 0 (user root) Reserved blocks gid: 0 (group root) First inode: 11 Inode size: 256 Required extra isize: 28 Desired extra isize: 28 Journal inode:8 Default directory hash: half_md4 Directory Hash Seed: d0dfbdf3-230c-4aab-938f-7e98b58e245e Journal backup: inode blocks Regards Jean-Luc -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.10 (GNU/Linux) iD8DBQFLCQveUdGGXzzGnNARAkzEAKCFJEk/3cu2+VGNU0i1gt6EyqGLjwCfR1tZ Qt/AtY+0xInHV9AaSud7LLc= =PELG -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#547623: thunar: MS Office .doc treated as plain text document which means OOo doesn't launch rather text editor
On sam., 2009-11-21 at 19:37 -0500, John Lindgren wrote: > I did some debugging on this. In short, Thunar does not handle > multiple > MIME types being specified for the same file extension. For a given > extension, Thunar seems to use whatever MIME type is listed last > in /usr/share/mime/globs. Relevant code is at > thunar-vfs-mime-legacy.c:660 (Thunar 1.0.1). > > There may be extensions which can legitimately be used for more than > one > MIME type, I don't know. But in this case, I think the problem is > with > the MIME database, not Thunar. That is, .ogg should always be > audio/ogg, and .doc should always be application/msword. Correct me > if > I'm wrong. I'm not so sure about that. Extensions are the vintage windows way to determine the mime type, but not really the only one nor the more reliable. ogg is a good example, because it can be ogg vorbis, ogg theora or ogg speex. Speex and Vorbis are both audio codecs so it doesn't really matter (though I'm not sure you really want to play speex files with rhythmbox or quodlibet), but Theora are video files which have no point being played in an audio player. There are other extensions (like, ogv/ogt/ogs I think, though I'm not that sure) but ogg is still the generic one. I really think we shouldn't limit ourself to the extension for the mimetype, so that means we should be able to accept multiple extensions for those files. (so that means the bug is indeed in Thunar, damn! :) Cheers, -- Yves-Alexis signature.asc Description: This is a digitally signed message part
Bug#557454: arora: coredump if navigate to http://google.com/reader
Package: arora Version: 0.10.1-1 Severity: normal backtrace: Program terminated with signal 11, Segmentation fault. #0 0xb591dba8 in ?? () from /lib/i686/cmov/libc.so.6 (gdb) bt #0 0xb591dba8 in ?? () from /lib/i686/cmov/libc.so.6 #1 0xb591e196 in free () from /lib/i686/cmov/libc.so.6 #2 0xb6bcbeed in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #3 0x0b0613f0 in ?? () #4 0xb6c54d8f in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #5 0xb6c96667 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #6 0xb6d08011 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #7 0xb6d084c9 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #8 0xb6df876c in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #9 0xb6dea0a4 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #10 0xb6dee2a6 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #11 0xb6df09b3 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #12 0xb6df0382 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #13 0xb6e084f3 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #14 0xb6e0a7ce in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #15 0xb6e0c7da in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #16 0xb6e0d35b in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #17 0xb6e06605 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #18 0xb6e445dc in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #19 0xb6e799ca in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #20 0xb6e86e13 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #21 0xb6e82281 in ctiVMThrowTrampoline () from /usr/lib/libQtWebKit.so.4 #22 0xb70547ec in ?? () from /usr/lib/libQtWebKit.so.4 #23 0xb7054ba1 in ?? () from /usr/lib/libQtWebKit.so.4 #24 0xb5cc0b0b in QMetaCallEvent::placeMetaCall(QObject*) () from /usr/lib/libQtCore.so.4 #25 0xb5cc25e0 in QObject::event(QEvent*) () from /usr/lib/libQtCore.so.4 #26 0xb6001a94 in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib/libQtGui.so.4 #27 0xb6009bee in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libQtGui.so.4 #28 0xb5cb21eb in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /usr/lib/libQtCore.so.4 #29 0xb5cb2e2e in QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) () from /usr/lib/libQtCore.so.4 #30 0xb5cb300d in QCoreApplication::sendPostedEvents(QObject*, int) () from /usr/lib/libQtCore.so.4 #31 0xb5cdd4cf in ?? () from /usr/lib/libQtCore.so.4 ---Type to continue, or q to quit--- #32 0xb563ce98 in g_main_context_dispatch () from /lib/libglib-2.0.so.0 #33 0xb5640623 in ?? () from /lib/libglib-2.0.so.0 #34 0xb56407a8 in g_main_context_iteration () from /lib/libglib-2.0.so.0 #35 0xb5cdd041 in QEventDispatcherGlib::processEvents(QFlags) () from /usr/lib/libQtCore.so.4 #36 0xb60a1305 in ?? () from /usr/lib/libQtGui.so.4 #37 0xb5cb083a in QEventLoop::processEvents(QFlags) () from /usr/lib/libQtCore.so.4 #38 0xb5cb0c82 in QEventLoop::exec(QFlags) () from /usr/lib/libQtCore.so.4 #39 0xb5cb30d9 in QCoreApplication::exec() () from /usr/lib/libQtCore.so.4 #40 0xb6001917 in QApplication::exec() () from /usr/lib/libQtGui.so.4 #41 0x0810d4a4 in ?? () #42 0xb58c3775 in __libc_start_main () from /lib/i686/cmov/libc.so.6 #43 0x0806ff81 in ?? () steps to reproduce: 1. run arora 2. navigate to http://google.com/reader -- System Information: Debian Release: 5.0 APT prefers testing APT policy: (600, 'testing'), (600, 'stable'), (501, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.31.4 Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages arora depends on: ii libc6 2.9-4 GNU C Library: Shared libraries ii libgcc1 1:4.4.1-4 GCC support library ii libqt4-network4:4.5.3-4 Qt 4 network module ii libqt4-script 4:4.5.3-4 Qt 4 script module ii libqt4-sql4:4.5.3-4 Qt 4 SQL module ii libqt4-webkit 4:4.5.3-4 Qt 4 WebKit module ii libqtcore44:4.5.3-4 Qt 4 core module ii libqtgui4 4:4.5.3-4 Qt 4 GUI module ii libstdc++64.4.1-4The GNU Standard C++ Library v3 arora recommends no packages. arora 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#557451: [Pkg-xfce-devel] Bug#557451: xfce4-terminal: background transparency is broken
On dim., 2009-11-22 at 11:17 +0200, Eugene V. Lyubimkin wrote: > Package: xfce4-terminal > Version: 0.4.2-1 > Severity: normal > > The option 'Edit->Preferences->Appearance->Background' set to > 'Transparent background' enables only transparency against selected > background color and not against other windows. Is compositing enabled in the general settings, Window Manager Tweaks, Compositing tab? Cheers, -- Yves-Alexis signature.asc Description: This is a digitally signed message part
Bug#557452: [Pkg-xfce-devel] Bug#557452: xfce4-xkb-plugin: segfaults repeatedly after add and removal of the 'fi' layout
On dim., 2009-11-22 at 11:45 +0200, Eugene V. Lyubimkin wrote: > I had three keyboard layouts (en, ru, ua), controlled by > xfce4-xkb-plugin (i.e. no XkbLayout entries in xorg.conf). Then I tried > to add the 'fi' keyboard layout, and it worked. Then I tried to remove > it, and the plugin segfaulted. Now I can't even launch it - the plugin > just repeatedly segfaults: You should be able to manually correct the config in .config/xfce4/panel, look at a file named xfce4-xkb-plugin-1234567890.rc. > > Nov 22 11:39:05 1501-debian kernel: [48995.014079] > xfce4-xkb-plugi[4928]: segfault at 20 ip 7fd83e36e411 sp > 7fffbb35d548 error 4 in libc-2.10.1.so[7fd83e2f5000+14a000] > Nov 22 11:39:32 1501-debian kernel: [49021.617278] > xfce4-xkb-plugi[9745]: segfault at 60 ip 7f3037bd5411 sp > 7fffbfcc3298 error 4 in libc-2.10.1.so[7f3037b5c000+14a000] > Nov 22 11:39:46 1501-debian kernel: [49035.776836] > xfce4-xkb-plugi[9753]: segfault at 20 ip 7fc154f0c411 sp > 7fffd202dd68 error 4 in libc-2.10.1.so[7fc154e93000+14a000] Could you try to backtrace it (replace the executable by a wrapper running in gdb (more info at http://wiki.xfce.org/howto/panel_plugin_debug) Cheers, -- Yves-Alexis signature.asc Description: This is a digitally signed message part
Bug#557457: subversion: FTBFS due to conflicting db-dev requirements in the build-deps
Package: subversion Version: 1.6.6dfsg-1 Severity: serious Heya, Just so that this doesn't get lost: peterS: Around? Are you aware of the fact that subversion is FTBFSing? peterS: The problem is that subversion build-depends on libdb4.7-dev, libaprutil1-dev, and libaprutil1-dev depends on libdb4.8-dev. No way to get the build-deps installed. peterS: So I guess the sane solution would be to upgrade subversion to use db4.8, but I have no idea how much breaks in that setup. It would be nice to get it solved, though, as a missing subversion makes anjuta unbuildable, and anjuta is part of a horrible gnome transition. Thanks for the fish, Marc -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557456: Typo in package description: "This packages"
Package: claws-mail-doc Version: 3.7.3-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages provides ... Should be: This package provides ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJDqkACgkQuoq9E0RAnd5fqQCeKNo9tWmbxKZ/JGq8ZOkqVnGw RB4AoI/IGJWP91SgvM5Mcoz/mkbxKFge =T/NX -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557455: Typo in package description: "This packages"
Package: apcalc-common Version: 2.12.3.3-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJDmIACgkQuoq9E0RAnd5RTACeL+T2ShNRzQF3hzZhJRL5Cxts RDEAoKb8t3+yftbCZZ4Rsbs1knUHErQO =puhl -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557444: Fail to upgrade
Package: cpufrequtils Version: 006-1 Severity: grave This also happens on a new install. (to be exact: first purging the package and then installing it) I think this bug qualifies for "grave", as it is uninstallable. - moria:/home/tobi# aptitude purge cpufrequtils -y; aptitude install cpufrequtils -y Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information... Done Initializing package states... Done Reading task descriptions... Done The following packages will be REMOVED: cpufrequtils{p} 0 packages upgraded, 0 newly installed, 1 to remove and 4 not upgraded. Need to get 0B of archives. After unpacking 274kB will be freed. Writing extended state information... Done (Reading database ... 212471 files and directories currently installed.) Removing cpufrequtils ... Purging configuration files for cpufrequtils ... Processing triggers for man-db ... Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information... Done Initializing package states... Done Writing extended state information... Done Reading task descriptions... Done Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information... Done Initializing package states... Done Reading task descriptions... Done The following NEW packages will be installed: cpufrequtils 0 packages upgraded, 1 newly installed, 0 to remove and 4 not upgraded. Need to get 0B/39.3kB of archives. After unpacking 274kB will be used. Writing extended state information... Done Preconfiguring packages ... Selecting previously deselected package cpufrequtils. (Reading database ... 212451 files and directories currently installed.) Unpacking cpufrequtils (from .../cpufrequtils_006-1_i386.deb) ... Processing triggers for man-db ... Setting up cpufrequtils (006-1) ... rm: cannot remove `/etc/rc0.d/K20cpufrequtils': No such file or directory dpkg: error processing cpufrequtils (--configure): subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: cpufrequtils E: Sub-process /usr/bin/dpkg returned an error code (1) A package failed to install. Trying to recover: Setting up cpufrequtils (006-1) ... rm: cannot remove `/etc/rc0.d/K20cpufrequtils': No such file or directory dpkg: error processing cpufrequtils (--configure): subprocess installed post-installation script returned error exit status 1 Errors were encountered while processing: cpufrequtils Reading package lists... Done Building dependency tree Reading state information... Done Reading extended state information... Done Initializing package states... Done Writing extended state information... Done Reading task descriptions... Done moria:/home/tobi# -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.31-1-686 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages cpufrequtils depends on: ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii libc6 2.10.1-7 GNU C Library: Shared libraries ii libcpufreq0 006-1 shared library to deal with the cp ii lsb-base 3.2-23 Linux Standard Base 3.2 init scrip cpufrequtils recommends no packages. cpufrequtils suggests no packages. -- debconf information: cpufrequtils/enable: true -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557459: dpkg-source: should not fallback to other formats without user intervention
Package: dpkg-dev Version: 1.15.5.2 Severity: wishlist It has been suggested on IRC that having dpkg-source switch back to native mode if it can't find the .orig tarball was probably a bad idea from the beginning and that it tends to confuse people. However, with the addition of new formats, I generalized that concept of fallbacks... we have a list of formats to try and the first one whose prerequisite is satisfied is used. ron just found out that passing -Zbzip2 generated a 3.0 (native) source package because "1.0" accepts gzip only and that "3.0 (native)" is in the fallback list. Now that we have native and non-native in different formats we have an opportunity to fix that. We could just make dpkg-source fail if the prerequisite for the current format is not satisfied. So people that want native source packages would have to be explicit about that choice and put "3.0 (native)" in debian/source/format. Since that is an important interface change, I'm soliciting some more feedback from debian-devel before I decide to do it. On a sidenote, with such a change when "3.0 (quilt)" is made the default format, 1.0 native source packages would fail to build because the fallback to native would then be specific to 1.0. When we do that, dpkg-source -x should thus be modified to auto-create debian/source/format to mitigate this problem in this specific case. Here's the log for reference: 00:02 buxy: I'm not sure sure this "fall back through a range of default formats" idea is so hot. 00:04 if I pass -Zbzip2 to dpkg-source, for a package with no other qualifiers, having it default to 3.0 (native) is far more likely to be wrong than right 00:05 there is a perfectly good orig.tar.bz2 there, and a perfectly good debian dir, so it seems quite unintuitive that it makes a native package out of that 09:44 ron: good remark, I can add 3.0 (quilt) before 3.0 (native) in the fallback list 10:26 buxy: I'm not sure that really makes it better, it may just be wrong for different (and maybe fewer) people ... 10:26 ron: you would rather have it fail? 10:26 I do think I'd prefer it if the user had to be explicit about what format they wanted, since I don't really have the sanity checks of specifying -sX anymore to cross check that against ... 10:27 I think I'd rather have it fail at build time, than potentially make and upload a "bogus" package yeah ... 10:28 ron: well, the idea was to keep the same logic than with 1.0, if you don't have any .orig, you fallback to the native mode 10:28 I just generalized it a bit 10:28 buxy: that confuses very many people ;) 10:28 basically something like "format 1.0 assumed if no s/format exists or --format specified, if illegal options for 1.0 are passed with no format, bail out rather than trying to guess which format it may be" 10:29 lifeless: at least now, dpkg-source explains its behaviour with warnings 10:30 native should probably have to be forced. either with -sn or "3.0 (native)". that seems to be a common screw up even with the 1.0 format, so it would be nice to make that harder to happen rather than easier 10:30 +1 10:31 i think i agree 10:33 ok, it deserves some discussion on -devel, but I'm not opposed to the principle -- Raphaël Hertzog -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557451: [Pkg-xfce-devel] Bug#557451: xfce4-terminal: background transparency is broken
Yves-Alexis Perez wrote: > On dim., 2009-11-22 at 11:17 +0200, Eugene V. Lyubimkin wrote: >> Package: xfce4-terminal >> Version: 0.4.2-1 >> Severity: normal >> >> The option 'Edit->Preferences->Appearance->Background' set to >> 'Transparent background' enables only transparency against selected >> background color and not against other windows. > > Is compositing enabled in the general settings, Window Manager Tweaks, > Compositing tab? > > Cheers, Sure. It's enabled, all other transparency tweaking bars on the Window Manager Tweaks controls transparency work well. And I surely remember that it (transparent background) worked in some of previous versions of xfce4-terminal, however I didn't need terminal transparency for a while and can't say which last good version was. -- Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com C++/Perl developer, Debian Developer signature.asc Description: OpenPGP digital signature
Bug#557458: Typo in package description: "This packages"
Package: coq Version: 8.2.pl1+dfsg-3 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages provides ... Should be: This package provides ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJEFMACgkQuoq9E0RAnd7XOgCfcMcqmgI9rU1b8V57djZ4J6gQ 50MAn0mu8W+NXvE7hmxsu/J+s8CVgTKg =AXa6 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557460: Typo in package description: "This packages"
Package: debian-zh-faq-s Version: 1.11 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJEb0ACgkQuoq9E0RAnd7fJwCgkjIDvJYJ+3iLXUzK5LgwuXPL ObIAoMO8EDJnNKbr++KflXpjWxz00ijy =LRh9 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557461: Typo in package description: "This packages"
Package: debian-zh-faq-t Version: 1.11 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJEogACgkQuoq9E0RAnd7GxwCfeTWWXqLmRghIXOTFmLAghrEa sTcAoKs3FdO2eiP6cauLRYlcz9J0SEgc =8Hjp -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557451: [Pkg-xfce-devel] Bug#557451: xfce4-terminal: background transparency is broken
On dim., 2009-11-22 at 12:17 +0200, Eugene V. Lyubimkin wrote: > > Cheers, > Sure. It's enabled, all other transparency tweaking bars on the Window Manager > Tweaks controls transparency work well. Hu ho, weird. So if you enable the other (like transparent windows when moving windows etc.), they do work fine? And you are definitely sure you're using xfce4-terminal and not something else? > > And I surely remember that it (transparent background) worked in some of > previous versions of xfce4-terminal, however I didn't need terminal > transparency for a while and can't say which last good version was. And it still work perfectly fines everywhere else I tried. Which video driver do you use? Not sure if gnome-terminal or other vte terminals do manage transparency but it'd be worth a try. Cheers, -- Yves-Alexis signature.asc Description: This is a digitally signed message part
Bug#557462: wicd-curses fails to start: AttributeError: 'WiredComboBox' object has no attribute 'set_w'
Package: wicd Version: 1.6.2.2-3 Severity: normal When launching, I get errors because of urwid/curses (python-urwid was recently upgraded). % wicd-curses /usr/lib/python2.5/site-packages/zope/__init__.py:3: UserWarning: Module urwid was already imported from /usr/lib/pymodules/python2.5/urwid/__init__.py, but /usr/lib/pymodules/python2.5 is being added to sys.path import pkg_resources EXCEPTION! Please report this to the maintainer and file a bug report with the backtrace below: EXCEPTION! Please report this to the maintainer and file a bug report with the backtrace below: Traceback (most recent call last): File "/usr/share/wicd/wicd-curses.py", line 1055, in main() File "/usr/share/wicd/wicd-curses.py", line 986, in main ui.run_wrapper(run) File "/usr/lib/pymodules/python2.5/urwid/raw_display.py", line 234, in run_wrapper return fn() File "/usr/share/wicd/wicd-curses.py", line 89, in wrapper return func(*args, **kargs) File "/usr/share/wicd/wicd-curses.py", line 994, in run app = appGUI() File "/usr/share/wicd/wicd-curses.py", line 524, in __init__ self.update_netlist(force_check=True,firstrun=True) File "/usr/share/wicd/wicd-curses.py", line 89, in wrapper return func(*args, **kargs) File "/usr/share/wicd/wicd-curses.py", line 645, in update_netlist self.wiredCB.get_body().build_combobox(self.frame,ui,3) File "/usr/share/wicd/curses_misc.py", line 384, in build_combobox self.set_w(w) AttributeError: 'WiredComboBox' object has no attribute 'set_w' -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (700, 'unstable'), (650, 'testing'), (600, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.31-1-686 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages wicd depends on: ii adduser 3.111add and remove users and groups ii dbus1.2.16-2 simple interprocess messaging syst ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii dhcp3-client3.1.3-1 DHCP client ii iproute 20090324-1 networking and traffic control too ii iputils-ping3:20071127-2 Tools to test the reachability of ii lsb-base3.2-23 Linux Standard Base 3.2 init scrip ii net-tools 1.60-23 The NET-3 networking toolkit ii psmisc 22.8-1 utilities that use the proc file s ii python 2.5.4-2 An interactive high-level object-o ii python-dbus 0.83.0-1 simple interprocess messaging syst ii python-glade2 2.16.0-1 GTK+ bindings: Glade support ii python-gtk2 2.16.0-1 Python bindings for the GTK+ widge ii python-support 1.0.4automated rebuilding support for P ii python-urwid0.9.9-1 curses-based UI/widget library for ii wireless-tools 29-2 Tools for manipulating Linux Wirel ii wpasupplicant 0.6.9-3 client support for WPA and WPA2 (I Versions of packages wicd recommends: ii gksu 2.0.2-2+b1 graphical frontend to su ii python-notify 0.1.1-2+b1 Python bindings for libnotify ii sudo 1.7.2p1-1 Provide limited super user privile Versions of packages wicd suggests: ii pm-utils 1.2.6.1-1 utilities and scripts for power ma -- debconf information: * wicd/users: manu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557463: localepurge: missing debsums integration
Package: localepurge Version: 0.6.1 Severity: normal the daily debsums run spits out a few tens of messages like these: debsums: missing file /usr/share/gnome/help/glade/pt_BR/glade.xml (from glade package) the problem is documented in the man page, but this doesn't make it less annoying. localepurge should either directly remove the entries from the .list files or create "difference files" which debsums would take into account. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.31.6 (PREEMPT) Locale: LANG=C, LC_CTYPE=en_US (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/dash Versions of packages localepurge depends on: ii debconf [debconf-2.0] 1.5.28 Debian configuration management sy ii locales 2.10.1-7 GNU C Library: National Language ( ii procps1:3.2.8-2 /proc file system utilities ii ucf 3.0025 Update Configuration File: preserv localepurge recommends no packages. Versions of packages localepurge suggests: pn bleachbit (no description available) ii debfoster 2.7-1 Install only wanted Debian package ii deborphan 1.7.28 program that can find unused packa -- debconf information: * localepurge/mandelete: true * localepurge/showfreedspace: true * localepurge/quickndirtycalc: false localepurge/remove_no: * localepurge/none_selected: yes * localepurge/nopurge: C, de, de.UTF-8, de_DE, de_DE.UTF-8, de...@euro, en_US, en_US.ISO-8859-15 * localepurge/dontbothernew: false * localepurge/verbose: false -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557386: quilt - Unable to clone a quilt-patched tree
Hi, On Sat, 21 Nov 2009, Bastian Blank wrote: > It is impossible to clone a quilt-patched tree with standard tools. > > I tried the following: > * Complete copy with "cp -a" or "cp -r": > Fails on unreadable files in .pc. > * Hardlinked clone with "cp -al": > Fails because quilt appends to .pc/applied-patches and the list of > applied patches gets out-of-sync quickly. > > Setting to important as this breaks building of other packages. Don't expect any fix soon, despite the RFH, not much has changed on quilt's maintenance. We still have lots of debian specific patch and fixing this certainly requires upstream cooperation which none of us seems to have the time (even if Ryan told me that he would work on it). I also think that fixing #534840 would be enough to fix your problem. AFAIK, it's the only reason that makes cp -a fail. Cheers, -- Raphaël Hertzog -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#555053: [Pkg-alsa-devel] Bug#557319: alsa-base: no sound in alsa, due to USB
* yellow protoss [091122 11:29 +0100] > Bonjour ! Hey ! > > Sunday morning. I have restarted / reboot the machine. Power off and on. > I am now listening music, sinclair, it seems to be fully working. > I used cplay and splay to do the job. Bugs closed. Elimar -- Numeric stability is probably not all that important when you're guessing;-) signature.asc Description: Digital signature
Bug#557464: Typo in package description: "This packages"
Package: dvbackup Version: 0.0.4rj1-6.1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages also contains ... Should be: This package also contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJF0IACgkQuoq9E0RAnd6dGACfaZZuZznE2USxfb7P8EB/mBEY OrIAoJ6ryPvj02KsLvH7rU637Xdllwyj =AbpO -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557466: Typo in package description: "this packages"
Package: fakepop Version: 10 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: courier-pop-ssl is one of this packages (it requires courier-pop). Should be: courier-pop-ssl is one of these packages (it requires courier-pop). -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJGGAACgkQuoq9E0RAnd5XtgCfcuKav1K3f767zoAI13E2agZc z3EAnRapZ1hLDVzH/3rmRUKc/bYw8FPt =JhiY -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557465: Typo in package description: "This packages"
Package: dvsink Version: 0.8.3.1-1+b2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages provides ... Should be: This package provides ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJF6cACgkQuoq9E0RAnd7A5ACgsNCDE1YI3/r2Sj86CcLiwW4B oF4An2owG1nF3RPztDEjBtpUnkdN6Qu6 =KFF7 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557468: Typo in package description: "This packages"
Package: fso-frameworkd Version: 0.8.5.1-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages provides ... Should be: This package provides ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJGmMACgkQuoq9E0RAnd5PfACfdJXiq5FVwkOUYh1Jp1LxiEu3 dYQAnjVzdvBjmg7CcLOHjjpfoLhpHKXX =42L4 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557469: Typo in package description: "This packages"
Package: fso-sounds-none Version: 0.8.5.1-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages configures ... Should be: This package configures ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJGqUACgkQuoq9E0RAnd6FWwCdEM0EAwQE8mjNqAPKsHAGalsg ojoAoJsJdjeYjaMVregNBzB6EYaodpQ+ =6UEz -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557467: Typo in package description: "This packages"
Package: fso-config-general Version: 0.8.5.1-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages provides ... Should be: This package provides ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJGeMACgkQuoq9E0RAnd41WgCgkhu0ZN7C9J51qT6o+z569EcQ UfoAn3XQ73mpXIyu3/xW1tfslBp0jjIT =ZqNB -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557472: Typo in package description: "This packages"
Package: gstreamer0.10-plugins-ugly Version: 0.10.13-2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJG8oACgkQuoq9E0RAnd6t8ACfaO4aiFijSbERYHY/2+mg/Lg6 KlUAn11i8LtrgKnSjwkWITOzpzcSOkez =xr7g -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557471: Typo in package description: "This packages"
Package: gpib-modules-source Version: 3.2.11-2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJG3QACgkQuoq9E0RAnd43BQCghlfkNElieofebfv3qzsJ9XEk CAwAoLxbAgi0qdQMmSWdTCbw3yR/g2vb =uJ6o -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557470: Typo in package description: "This packages"
Package: gl-117-data Version: 1.3.2-2.1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJGv0ACgkQuoq9E0RAnd422gCgvmuh8yAW+pguf38g3gSZdvFV JScAnizX/jQDC0Toshuk2wltrG+ilPFc =CGRI -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#494704: [abiword] depends on libgnome and libbonobo through libgoffice
Hello: Tue, 17 Nov 2009 19:05:12 +0100 eguna, Patrik Fimml (e)k idatzi zuen: > Version: 2.8.1-1 > > Hey, > > the latest version of the abiword package uses goffice 0.8, which has > modest dependencies besides GTK+. In particular, libgnome and libbonobo > are no longer among them. I am thus closing this bug. Yes, I agree. I install the new abiword 2.8.1-1 from SID and it pull only the following packages in my box: libgoffice-0-8 libgoffice-0-8-common libgucharmap7 libpsiconv6 I have installed from other packages too: ii libgnomecanvas2-0 2.26.0-1 A powerful object-oriented ii libgnomeprint2.2-0 2.18.6-1 The GNOME 2.2 print ii libgnomeprint2.2-data 2.18.6-1 The GNOME 2.2 print archite ii libgnomeprintui2.2-0 2.18.4-1 GNOME 2.2 print ii libgnomeprintui2.2-common 2.18.4-1 GNOME 2.2 print But the others packages (libgnome, libbonobo...) now there isn't in my box and now I have some more room in it. Many thanks for the work. Greetings. Martintxo. -- La risa es el orgasmo del rostro. -- Alfredo Arias. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557452: [Pkg-xfce-devel] Bug#557452: xfce4-xkb-plugin: segfaults repeatedly after add and removal of the 'fi' layout
Yves-Alexis Perez wrote: >> Nov 22 11:39:05 1501-debian kernel: [48995.014079] >> xfce4-xkb-plugi[4928]: segfault at 20 ip 7fd83e36e411 sp >> 7fffbb35d548 error 4 in libc-2.10.1.so[7fd83e2f5000+14a000] >> Nov 22 11:39:32 1501-debian kernel: [49021.617278] >> xfce4-xkb-plugi[9745]: segfault at 60 ip 7f3037bd5411 sp >> 7fffbfcc3298 error 4 in libc-2.10.1.so[7f3037b5c000+14a000] >> Nov 22 11:39:46 1501-debian kernel: [49035.776836] >> xfce4-xkb-plugi[9753]: segfault at 20 ip 7fc154f0c411 sp >> 7fffd202dd68 error 4 in libc-2.10.1.so[7fc154e93000+14a000] > > Could you try to backtrace it (replace the executable by a wrapper > running in gdb (more info at > http://wiki.xfce.org/howto/panel_plugin_debug) > Here's. However, not much info there. Should I try to capture STDERR? It segfaulted earlier, but now it just returns 1 and exits (still unexpectedly). -- Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com C++/Perl developer, Debian Developer xfce4-xkb-plugin-gdb.log.gz Description: application/gzip xfce4-xkb-plugin-valgrind.log.gz Description: application/gzip signature.asc Description: OpenPGP digital signature
Bug#557473: 30_os-prober generates invalid boot entries
Package: grub-common Version: 1.97+20091115-1 I've got a root partition using raid0 (2 disks), and a regular boot partition, usually mounted on /boot: % df Filesystem 1K-blocks Used Available Use% Mounted on /dev/md0p133553404 6486848 27066556 20% / tmpfs 2030704 0 2030704 0% /lib/init/rw udev 10240 344 9896 4% /dev tmpfs 2030704 0 2030704 0% /dev/shm /dev/sdb1 33558712353776 33204936 2% /boot Problem: /etc/grub.d/30_os-prober adds entries for /dev/md0p1 to grub.cfg, even though /boot is on /dev/sdb1 (not to mention that grub2 does not support raid0). See attachment. If I select an entry generated via os-prober at boot time, then I get a message that I have to load a kernel first. Regards Harri # # DO NOT EDIT THIS FILE # # It is automatically generated by /usr/sbin/grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### set default=saved insmod raid insmod mdraid insmod reiserfs set root=(md0,1) search --no-floppy --fs-uuid --set e8d59336-6621-4061-96f7-fe294e58b3ce if loadfont /usr/share/grub/unicode.pf2 ; then set gfxmode=1920x1200 insmod gfxterm insmod vbe if terminal_output gfxterm ; then true ; else # For backward compatibility with versions of terminal.mod that don't # understand terminal_output terminal gfxterm fi set gfxpayload=keep fi set timeout=10 ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=cyan/blue set menu_color_highlight=white/blue ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### menuentry "Debian GNU/Linux, with Linux 2.6.32-rc8" { insmod reiserfs set root=(hd1,1) search --no-floppy --fs-uuid --set 589c1019-ecc1-48f5-b7ef-8e3c8c5ec2cb linux /vmlinuz-2.6.32-rc8 root=UUID=e8d59336-6621-4061-96f7-fe294e58b3ce ro video=vesafb:ypan quiet initrd /initrd.img-2.6.32-rc8 } menuentry "Debian GNU/Linux, with Linux 2.6.31.6" { insmod reiserfs set root=(hd1,1) search --no-floppy --fs-uuid --set 589c1019-ecc1-48f5-b7ef-8e3c8c5ec2cb linux /vmlinuz-2.6.31.6 root=UUID=e8d59336-6621-4061-96f7-fe294e58b3ce ro video=vesafb:ypan quiet initrd /initrd.img-2.6.31.6 } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_memtest86 ### menuentry "Memory test (memtest86)" { linux /memtest86.bin } ### END /etc/grub.d/20_memtest86 ### ### BEGIN /etc/grub.d/30_os-prober ### menuentry "Debian GNU/Linux, with Linux 2.6.32-rc8 (on /dev/md0p3)" { insmod raid insmod mdraid insmod reiserfs set root=(md0,3) search --no-floppy --fs-uuid --set f3f11a99-cd48-49ae-9455-189ad251b209 linux /boot/vmlinuz-2.6.32-rc8 root=UUID=e8d59336-6621-4061-96f7-fe294e58b3ce ro video=vesafb:ypan quiet initrd /boot/initrd.img-2.6.32-rc8 } menuentry "Debian GNU/Linux, with Linux 2.6.31.6 (on /dev/md0p3)" { insmod raid insmod mdraid insmod reiserfs set root=(md0,3) search --no-floppy --fs-uuid --set f3f11a99-cd48-49ae-9455-189ad251b209 linux /boot/vmlinuz-2.6.31.6 root=UUID=e8d59336-6621-4061-96f7-fe294e58b3ce ro video=vesafb:ypan quiet initrd /boot/initrd.img-2.6.31.6 } menuentry "Memory test (memtest86) (on /dev/md0p3)" { insmod raid insmod mdraid insmod reiserfs set root=(md0,3) search --no-floppy --fs-uuid --set f3f11a99-cd48-49ae-9455-189ad251b209 linux /boot/memtest86.bin } ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_otheros ### ### END /etc/grub.d/30_otheros ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ###
Bug#557474: python-django: Incosistent behaviour of LocaleMiddleware w.r.t. to default language
Package: python-django Version: 1.1.1-1 Severity: minor In some situations locale middleware sets LANGUAGE_CODE to the global LANGUAGE_CODE setting, even if it is not in listed in the LANGUAGES setting. (Surprisingly, this is the case for the default configuration.) $ curl -H 'Accept-Language: en-us' http://localhost:8000/ LANGUAGES = ar bn bg ca cs cy da de el en es et es-ar eu fa fi fr ga gl hu he hi hr is it ja ka ko km kn lv lt mk nl no pl pt pt-br ro ru sk sl sr sv ta te th tr uk zh-cn zh-tw LANGUAGE_CODE = en $ curl -H 'Accept-Language: xy-zw' http://localhost:8000/ LANGUAGES = ar bn bg ca cs cy da de el en es et es-ar eu fa fi fr ga gl hu he hi hr is it ja ka ko km kn lv lt mk nl no pl pt pt-br ro ru sk sl sr sv ta te th tr uk zh-cn zh-tw LANGUAGE_CODE = en-us -- Jakub Wilk i18ntest.tar.gz Description: Binary data signature.asc Description: Digital signature
Bug#516210: xserver-xorg-video-radeonhd: "unsupported chipset" despite 1650
Jeff Abrahamson wrote: > Package: xserver-xorg-video-radeonhd > Version: 1.2.5-1 > Severity: normal > > > Further details. I suspect that, despite claiming that the X1650 > chipset is supported, it is not fully. Excerpts from my most recent > experiments: > > (EE) RADEONHD(0): [dri] CP_INIT failed > (EE) RADEONHD(0): RHDDRIFinishScreenInit: RHDDRIKernelInit Failed. > (EE) RADEONHD(0): TMDSBVoltageControl: unhandled chipset: 0x71C7. > (EE) RADEONHD(0): RHDCSStop: Command Submission backend is not active! > You need to install firmware-linux, see the kernel log. Brice -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557444: try to remove /etc/rc0.d/K20cpufrequtils which doesn't exist (/etc/rc0.d/K01cpufrequtils exists)
* giggz [20091122 10:48]: > During the upgrade of cpufrequtils an error occurs. It tries to remove > /etc/rc0.d/K20cpufrequtils. But the file doesn't exist. On my SID I > have : > /etc/rc0.d/K01cpufrequtils which is link to ../init.d/cpufrequtils Quoting cpufrequtils.postinst from cpufrequtils (006-2): [...] # Remove unused stop scripts in /etc/rc[016].d # The stop action does nothing anyway and the were # not created for a while. Unfortunately they have never # been removed after the postinst script stopped creating # them. # Make sure they are not there. for i in 0 1 6 ; do link="/etc/rc$i.d/K20cpufrequtils" [ -f $link ] && rm $link done [...] Notes: * the -f should be a -L * the code doesn't check whether /etc/rc$i.d/K20cpufrequtils points to the original cpufrequtils script (so ignoring any possible user related changes) * the code doesn't work for users that don't use sysv-rc at all * why not just use update-rc.d? regards, -mika- signature.asc Description: Digital signature
Bug#529744: Seems to be leaking file descriptors, leads to 100% CPU usage
Version: 0.3.12-2 #include * Andras Korn [Thu, May 21 2009, 11:22:09AM]: > Package: apt-cacher-ng > Version: 0.3.11-1 > Severity: normal > > Hi, > > I noticed that apt-cacher-ng's CPU usage goes to 100% and stays there after > a few days of running. stracing it revealed the following: > > select(7, [6], [], NULL, NULL) = 1 (in [6]) > accept(6, 0x7fff3bdad5a0, [171252509438902400]) = -1 EMFILE (Too many open > files) There were no more reports of this kind after minor changes in 0.3.12, closing the bug report. apt-cacher-ng (0.3.12-1) unstable; urgency=low * New upstream release + more reliable closing of file handles (might solve #529744) + reveals origin of 40x HTTP errors to the user (for #530021) * verbose Debconf configuration for automated backend setup which repeatedly confused some users in the past (closes: #530021). Deprecates the truncate-and-reconfigure trick. -- Eduard Bloch Mon, 25 May 2009 01:21:29 +0200 -- Und nun sehen sie das alphascorpii in der freien Wildbahn... Es umschleicht den Malzkaffe, sein natürliches Beutetier.. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#553125: vdkxdb2: diff for NMU version 2.4.0-3.1
Here is an updated NMU diff: in the former I overlooked a lintian error that needed to be fixed, namely an rpath on the lib *.so. It was in fact an useless rpath given that it was pointing to /usr/lib, but enough to get the NMU rejected. I've fixed this by removing a posteriori the rpath with chrpath. Given that I've got no feedback from the maintainer from the former NMU (which expired today), this time I've uploaded directly to the main queue. Cheers. -- Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7 z...@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/ Dietro un grande uomo c'è ..| . |. Et ne m'en veux pas si je te tutoie sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime diff -u vdkxdb2-2.4.0/debian/rules vdkxdb2-2.4.0/debian/rules --- vdkxdb2-2.4.0/debian/rules +++ vdkxdb2-2.4.0/debian/rules @@ -59,10 +59,11 @@ dh_strip -plibvdkxdb2-2c2 dh_compress -plibvdkxdb2-2c2 dh_fixperms -plibvdkxdb2-2c2 - dh_installdeb -plibvdkxdb2-2c2 + chrpath -d debian/$@/usr/lib/*.so + dh_makeshlibs -plibvdkxdb2-2c2 -V 'libvdkxdb2-2c2 (>= 2.0.2-5.2)' dh_shlibdeps -plibvdkxdb2-2c2 dh_gencontrol -plibvdkxdb2-2c2 - dh_makeshlibs -plibvdkxdb2-2c2 -V 'libvdkxdb2-2c2 (>= 2.0.2-5.2)' + dh_installdeb -plibvdkxdb2-2c2 dh_md5sums -plibvdkxdb2-2c2 dh_builddeb -plibvdkxdb2-2c2 diff -u vdkxdb2-2.4.0/debian/changelog vdkxdb2-2.4.0/debian/changelog --- vdkxdb2-2.4.0/debian/changelog +++ vdkxdb2-2.4.0/debian/changelog @@ -1,3 +1,13 @@ +vdkxdb2 (2.4.0-3.1) unstable; urgency=low + + * Non-maintainer upload. + * debian/rules: fix dh_installdeb order (move it past dh_makeshlibs), so +that ldconfig postinst snippet is actually used (Closes: #553125) + * remove (pointless) /usr/lib rpath from .so, using chrpath (added as a +build-dep) + + -- Stefano Zacchiroli Thu, 19 Nov 2009 10:41:29 +0100 + vdkxdb2 (2.4.0-3) unstable; urgency=low * c++ transition (finally) diff -u vdkxdb2-2.4.0/debian/control vdkxdb2-2.4.0/debian/control --- vdkxdb2-2.4.0/debian/control +++ vdkxdb2-2.4.0/debian/control @@ -2,7 +2,7 @@ Priority: optional Maintainer: Michael Vogt Standards-Version: 3.6.2.1 -Build-Depends: debhelper (>> 4.0), libgtk2.0-dev, libglib2.0-dev , libvdk2-dev (>= 2.4.0-3), libxbase2.0-dev, doxygen, autotools-dev +Build-Depends: debhelper (>> 4.0), libgtk2.0-dev, libglib2.0-dev , libvdk2-dev (>= 2.4.0-3), libxbase2.0-dev, doxygen, autotools-dev, chrpath Package: libvdkxdb2-2c2 Section: libs
Bug#534840: Bug#557386: quilt - Unable to clone a quilt-patched tree
On Sun, Nov 22, 2009 at 11:43:10AM +0100, Raphael Hertzog wrote: > I also think that fixing #534840 would be enough to fix your problem. > AFAIK, it's the only reason that makes cp -a fail. Yes, this will work for me. The large packages that needs the hardlinks don't use quilt right now. Will you fix that bug ASAP or do you prefer a NMU? Bastian -- War isn't a good life, but it's life. -- Kirk, "A Private Little War", stardate 4211.8 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557429: dwm: create yet another alternative for Winkey
forcemerge 493819 557429 thanks Dmitri Vorobiev wrote: It was proven convenient to use dwm with WinKey to issue commands to the window manager. This wishlist bug requests creating a new alternative for a dwm compilation that uses the Windows key as the dwm's modifier. this customization is too 'minor' to justify another alternative within the main dwm package (dwm itself should be kept small). however, i'll be adding soon dwm-alternatives, where you can put configs and/or patches into a place in /etc/ and call a script (/usr/sbin/dwm-alternatives or something) that compiles and registers your custom dwm alternative. Regards, Daniel -- Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist Email: daniel.baum...@panthera-systems.net Internet: http://people.panthera-systems.net/~daniel-baumann/ -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#65975: Fixed (mostly) ages ago
tags + wontfix severity wishlist stop The main thrust of this bug report (about the fprintf) was fixed ages ago upstream (I think in response to this bug report, so that would have been back in 2000. It was certainly fixed by version 1.2.0, released in 2001) I'm afraid I suffered decision-failure when contemplating the second "it shouldn't go to stderr" section of the bug, which is why I've left it fallow for all these years. I thought at the time, and still think, that many of the things that might cause ssh-askpass to fail will also cause the error pop-up to fail, at which point you'll need to look in your .xsession-errors to find out what's up anyway. In the particular case of failed keyboard-grab, it's quite likely that the pop-up would still work, but you're going to know that something was wrong by the fact that ssh-askpass didn't end up prompting you for input. I'm open to persuasion that there should be some mention of the fact that errors are logged to stderr, although I do feel that that is a case of stating the obvious, and that we could end up adding such statements to every manpage in the distribution, which would be somewhat pointless, as those who do not already know that are also those who don't read manpages, on the whole. Cheers, Phil. -- |)| Philip Hands [+44 (0)20 8530 9560]http://www.hands.com/ |-| HANDS.COM Ltd.http://www.uk.debian.org/ |(| 10 Onslow Gardens, South Woodford, London E18 1NE ENGLAND -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557386: quilt - Unable to clone a quilt-patched tree
On Sun, 22 Nov 2009, Bastian Blank wrote: > On Sun, Nov 22, 2009 at 11:43:10AM +0100, Raphael Hertzog wrote: > > I also think that fixing #534840 would be enough to fix your problem. > > AFAIK, it's the only reason that makes cp -a fail. > > Yes, this will work for me. The large packages that needs the hardlinks > don't use quilt right now. Will you fix that bug ASAP or do you prefer a > NMU? Well, I would prefer that you ask upstream on their reason for using this mode instead of changing it without thinking more. Please don't NMU the package but feel free to help by finding out whether upstream would be ok for this change. Cheers, -- Raphaël Hertzog -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#504391: [PATCH] mmc: add module parameter to set whether cards are assumed removable
On Mon, Nov 16, 2009 at 10:31:49PM +, Ben Hutchings wrote: > On Mon, 2009-11-16 at 12:23 -0800, Andrew Morton wrote: > > On Wed, 11 Nov 2009 04:44:36 + > > Ben Hutchings wrote: > > > > > Some people run general-purpose distribution kernels on netbooks with > > > a card that is physically non-removable or logically non-removable > > > (e.g. used for /home) and cannot be cleanly unmounted during suspend. > > > Add a module parameter to set whether cards are assumed removable or > > > non-removable, with the default set by CONFIG_MMC_UNSAFE_RESUME. > > > > > > > The description really doesn't give me enough info to work out what's > > happening here and why this is being proposed. But it smells nasty. > > In general, it is not possible to tell whether a card present in an MMC > slot after resume is the same that was there before suspend. So there > are two possible behaviours, each of which will cause data loss in some > cases: > > CONFIG_MMC_UNSAFE_RESUME=n (default): Cards are assumed to be removed > during suspend. Any filesystem on them must be unmounted before > suspend; otherwise, buffered writes will be lost. > > CONFIG_MMC_UNSAFE_RESUME=y: Cards are assumed to remain present during > suspend. They must not be swapped during suspend; otherwise, buffered > writes will be flushed to the wrong card. > > Currently the choice is made at compile time and this allows that to be > overridden at module load time. I'm running 2.6.32-rc7 with this patch applied and CONFIG_MMC_UNSAFE_RESUME=y That works as desired for my non-removable case. Is it desired that I test if 'removable=1' will thrash my filesystem? Wouter van Heyst -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#65975: Additional info re: "stderr will be a blackhole"
I realise that I've not explicitly addressed Zack's comment about stderr being a blackhole in the mail where I set this bug to "wontfix". I think this demonstrates that stderr survives being run under ssh-add: p...@palm:~$ keygrabtest() { { ( ssh-add & ) ; ssh-add ; } > /dev/null < /dev/null ; } p...@palm:~$ keygrabtest ssh-askpass[13977]: Trying to grab keyboard ... ssh-askpass[13977]: Could not grab keyboard (someone else already has it) It seems reasonable to expect that that stderr output will end up being logged in ~/.xsession-errors, assuming one runs ssh-add from .xsession Cheers, Phil. -- |)| Philip Hands [+44 (0)20 8530 9560]http://www.hands.com/ |-| HANDS.COM Ltd.http://www.uk.debian.org/ |(| 10 Onslow Gardens, South Woodford, London E18 1NE ENGLAND -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557475: "Error: Unknown command: applied"
Package: stgit-contrib Version: 0.15-1 stg-dispatch doesn't work with stgit 0.15, because it uses a stgit command which has been removed: stg-dispatch foo filename.bar Error: Unknown command: applied Try "stg help" for a list of supported commands stg-dispatch error: cannot dispatch to unapplied patch 'foo' -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557477: git-svn: git svn dcommit doesn't handle network failure
Package: git-svn Version: 1:1.6.5-1 Severity: important Hello, If the network fails during dcommit, git svn gets totally screwed up. It will give you the prompt back with HEAD pointing to the last SVN-pushed commit, and the next one applied and not git-committed. $ git svn dcommit Committing to svn+ssh://bgog...@scm.gforge.inria.fr/svn/knem/branches/rma ... M common/knem_io.h Committed r237 M common/knem_io.h r237 = f839e16b94052f8b71aa4b66124b37a8337182e0 (refs/remotes/rma) No changes between current HEAD and refs/remotes/rma Resetting to the latest refs/remotes/rma Unstaged changes after reset: M common/knem_io.h M driver/linux/knem_main.c ssh: connect to host scm.gforge.inria.fr port 22: Connection timed out Use of uninitialized value in concatenation (.) or string at /usr/lib/perl5/SVN/Core.pm line 584. Network connection closed unexpectedly: at /usr/lib/git-core/git-svn line 557 Now the only way I found to solve this mess is to git-reset --hard, git checkout the old HEAD again, and git svn dcommit the remaining stuff. The big problem is that I don't see any easy way to find the old HEAD. I had to look back in my terminal history in case there's still the output of a git log showing the old HEAD commitid. I don't know how dcommit works internally, but my feeling is that it should go to a new temporary branch during dcommit. This way, we would just have to checkout the non-temporary branch on failure. For now, I do it manually in case the SVN server fails again, but that's really annoying. thanks, Brice -- System Information: Debian Release: squeeze/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.32-rc8=topinambour (SMP w/2 CPU cores) Locale: LANG=fr_FR.utf8, LC_CTYPE=fr_FR.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages git-svn depends on: ii git-core 1:1.6.5-1 fast, scalable, distributed revisi ii libsvn-perl [libsvn-core-per 1.6.3dfsg-1 Perl bindings for Subversion ii libterm-readkey-perl 2.30-4 A perl module for simple terminal ii libwww-perl 5.833-1 Perl HTTP/WWW client/server librar git-svn recommends no packages. Versions of packages git-svn suggests: pn git-doc(no description available) ii subversion 1.6.3dfsg-1 Advanced version control system -- 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#552349:
Hi, the issue is still not fixed in your previous upload. wget http://ftp.de.debian.org/debian/pool/main/v/vtk/libvtk5.2_5.2.1-12_amd64.deb ar xvf libvtk5.2_5.2.1-12_amd64.deb tar xvfz data.tar.gz ldd ./usr/lib/libvtkRendering.so.5.2.1 | grep ftgl The package is still using the convenient copy of ftgl. -- Mathieu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557476: setting not restored on suspend/resume and login/logout
Package: gsynaptics Version: 0.9.16-3 Severity: normal The "enable tapping" settings of gsynaptics are not restored upon suspend/resume or restart. I have to run "gsynatiptics-init" every time by hand to restore tapping functionality. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.6.30-2-686 (SMP w/2 CPU cores) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gsynaptics depends on: ii libatk1.0-01.28.0-1 The ATK accessibility toolkit ii libc6 2.10.1-3 GNU C Library: Shared libraries ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra ii libfontconfig1 2.6.0-4 generic font configuration library ii libfreetype6 2.3.11-1 FreeType 2 font engine, shared lib ii libgconf2-42.28.0-1 GNOME configuration database syste ii libglade2-01:2.6.4-1 library to load .glade files at ru ii libglib2.0-0 2.22.2-2 The GLib library of C routines ii libgtk2.0-02.18.3-1 The GTK+ graphical user interface ii libpango1.0-0 1.26.0-1 Layout and rendering of internatio ii libxml22.7.6.dfsg-1 GNOME XML library ii xserver-xorg-input-syn 1.1.2-1 Synaptics TouchPad driver for X.Or ii zlib1g 1:1.2.3.3.dfsg-15 compression library - runtime gsynaptics recommends no packages. gsynaptics 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#557478: Typo in package description: "This packages"
Package: gstreamer0.10-plugins-ugly-doc Version: 0.10.13-2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJJQEACgkQuoq9E0RAnd5tKwCgr5KNqlCJ6OIeaHjF7CzB+4vW 9SUAnjWgtsaHb+gWu9z+LEe41ya+5kf9 =h2iS -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557480: ITP: python-elementary -- Python bindings for the Elementary widget set
Package: wnpp Severity: wishlist Owner: Debian Pkg-e Team * Package name: python-elementary Version : 0.1 Upstream Author : Simon Busch * URL : http://www.enlightenment.org * License : LGPL Programming Lang: Python Description : Python bindings for the Elementary widget set Elementary is a widget set based on the Enlightenment Foundation Libraries, primarily aimed at creating graphical user interfaces for mobile and embedded devices. . This package contains modules that allow using Elementary from Python. -- Albin Tonnerre -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#498717: Not fixed?
Hi, I still get the following error message. To reproduce I used aptitude reinstall: Setting up cpufrequtils (006-2) ... insserv: warning: current stop runlevel(s) (0 1 6) of script `cpufrequtils' overwrites defaults (empty). insserv: warning: current stop runlevel(s) (0 1 6) of script `cpufrequtils' overwrites defaults (empty). CPUFreq Utilities: Setting ondemand CPUFreq governor...CPU0...CPU1...done. Regards, Matthias -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557482: O: bug-triage -- Bug triaging and forwarding tool
Package: wnpp Severity: normal Hello, Unfortunately, due to time/real life constraints I've been unable to give the needed care to some of my packages. So, I'm orphaning python-bzutils and bug-triage, which are part of the same project, "Bug Triage and Forwarding Tool", started back on Google's Summer of Code 2007. If no one wishes to maintain them I believe they can be removed from the archive, as they don't seem to have taken to much interest. The package description for bug-triage is: bug-triage is a graphical tool to help triaging and forwarding bugs in the Debian Bug Tracking System. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557479: python-gnome2-extras: uninstallable
Package: python-gnome2-extras Severity: normal # apt-get install python-gnome2-extras Reading package lists... Done Building dependency tree Reading state information... Done Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: python-gnome2-extras: Depends: python-gtkhtml2 (= 2.25.3-2) but 2.25.3-4.1 is to be installed Depends: python-gtkmozembed (= 2.25.3-2) but 2.25.3-4.1 is to be installed Depends: python-eggtrayicon (= 2.25.3-2) but 2.25.3-4.1 is to be installed Depends: python-gtkspell (= 2.25.3-2) but 2.25.3-4.1 is to be installed Depends: python-gksu2 (= 2.25.3-2) but 2.25.3-4.1 is to be installed Depends: python-gdl (= 2.25.3-2) but 2.25.3-4.1 is to be installed E: Broken packages -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557481: O: python-bzutils -- Python module to interact with bugzilla servers
Package: wnpp Severity: normal Hello, Unfortunately, due to time/real life constraints I've been unable to give the needed care to some of my packages. So, I'm orphaning python-bzutils and bug-triage, which are part of the same project, "Bug Triage and Forwarding Tool", started back on Google's Summer of Code 2007. If no one wishes to maintain them I believe they can be removed from the archive, as they don't seem to have taken to much interest. The package description for python-bzutils is: Bugzilla is a widely used Bug Tracking System. This module allows to query and manipulate bug reports on bugzilla servers from Python scripts. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#522078: [Debian-eeepc-devel] Bug#522078: Bug#522078: rt2860-source: 2.6.31-0.slh.3-sidux either
On Sun, 22 Nov 2009 09:45:22 +0200 Damyan Ivanov wrote: > FYI, rt2860 is included in Linux 2.6.31, so you don't need to compile > additional modules. > > AFAIR, we keep it only for the sake of users of Lenny. Yes. Although I should point out that you now need firmware-ralink (from non-free) for it to work (as per http://wiki.debian.org/DebianEeePC/HowTo/Upgrade). Ben -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557483: esperanza failed with segmentation fault
Package: esperanza Version: 0.4.0+git20090708-1.0.0.0.1 Severity: grave Justification: renders package unusable On amd64, esperanza failed to run because of a segmenation fault. Rebuilding the package localy fix the problem. -- System Information: Debian Release: squeeze/sid APT prefers transitional APT policy: (500, 'transitional'), (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.31-trunk-amd64 (SMP w/2 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages esperanza depends on: ii libboost-signals1 1.40.0-4 managed signals and slots library ii libc6 2.10.1-7 GNU C Library: Shared libraries ii libgcc1 1:4.4.2-3 GCC support library ii libqt4-network4:4.5.3-4 Qt 4 network module ii libqt4-xml4:4.5.3-4 Qt 4 XML module ii libqtcore44:4.5.3-4 Qt 4 core module ii libqtgui4 4:4.5.3-4 Qt 4 GUI module ii libstdc++64.4.2-3The GNU Standard C++ Library v3 ii libx11-6 2:1.2.2-1 X11 client-side library ii libxmmsclient++3 0.6DrMattDestruction-6 XMMS2 - client library for c++ ii libxmmsclient50.6DrMattDestruction-6 XMMS2 - client library ii xmms2-icon0.6DrMattDestruction-6 XMMS2 - icon package esperanza recommends no packages. Versions of packages esperanza suggests: ii xmms2-core0.6DrMattDestruction-6 XMMS2 - core package -- 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#536084: mouse trapped on second screen when using xinerama
Package: xserver-xorg Version: 1:7.4+4 Severity: normal I'm still having this issue with, though I got a few steps further: Only my synaptics touchpad is affected. If I plug-in a USB-mouse, this one can freely move between the two screens (while the synaptics touchpad can't). I'll have a look soon, wheather xserver-xorg-input-synaptics 1.1.0-1, 1.1.1~git20090510-1 or 1.1.2-1 broke it. Cheers, Linus -- Package-specific info: /var/lib/x11/X.roster does not exist. /var/lib/x11/X.md5sum does not exist. X server symlink status: lrwxrwxrwx 1 root root 13 Mar 2 2008 /etc/X11/X -> /usr/bin/Xorg -rwxr-xr-x 1 root root 1689944 Oct 13 13:31 /usr/bin/Xorg /var/lib/x11/xorg.conf.roster does not exist. VGA-compatible devices on PCI bus: 01:00.0 VGA compatible controller: nVidia Corporation G84 [GeForce 8600M GT] (rev a1) /var/lib/x11/xorg.conf.md5sum does not exist. Xorg X server configuration file status: -rw-r--r-- 1 root root 2486 Nov 14 16:21 /etc/X11/xorg.conf Contents of /etc/X11/xorg.conf: # nvidia-settings: X configuration file generated by nvidia-settings # nvidia-settings: version 1.0 (bui...@murphy) Sat Aug 22 07:54:25 UTC 2009 Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" 0 1200 Screen 1 "Screen1" Above "Screen0" InputDevice"Keyboard0" "CoreKeyboard" #InputDevice"Mouse0" "CorePointer" EndSection Section "Files" EndSection Section "ServerFlags" Option "Xinerama" "1" EndSection #Section "InputDevice" ## generated from default #Identifier "Mouse0" #Driver "mouse" #Option "Protocol" "auto" #Option "Device" "/dev/psaux" #Option "Emulate3Buttons" "no" #Option "ZAxisMapping" "4 5" #EndSection Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "kbd" EndSection Section "Monitor" # HorizSync source: edid, VertRefresh source: edid Identifier "Monitor0" VendorName "Unknown" ModelName "LPL" HorizSync 30.0 - 75.0 VertRefresh 60.0 Option "DPMS" EndSection Section "Monitor" # HorizSync source: edid, VertRefresh source: edid Identifier "Monitor1" VendorName "Unknown" ModelName "LG 901B" HorizSync 30.0 - 98.0 VertRefresh 50.0 - 160.0 Option "DPMS" EndSection Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" BoardName "GeForce 8600M GT" BusID "PCI:1:0:0" Screen 0 EndSection Section "Device" Identifier "Device1" Driver "nvidia" VendorName "NVIDIA Corporation" BoardName "GeForce 8600M GT" BusID "PCI:1:0:0" Screen 1 EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor"Monitor0" DefaultDepth24 Option "TwinView" "0" Option "metamodes" "DFP: 1280x800 +0+0; DFP: 1024x768 +0+0; DFP: 800x600 +0+0; DFP: 640x480 +0+0" SubSection "Display" Depth 24 EndSubSection EndSection Section "Screen" Identifier "Screen1" Device "Device1" Monitor"Monitor1" DefaultDepth24 Option "TwinView" "0" Option "metamodes" "CRT: 1600x1200 +0+0" SubSection "Display" Depth 24 EndSubSection EndSection Xorg X server log files on system: -rw-r--r-- 1 root root 28435 Jul 30 2008 /var/log/Xorg.20.log -rw-r--r-- 1 root root 16909 May 13 2009 /var/log/Xorg.1.log -rw-r--r-- 1 root root 20693 Nov 22 12:38 /var/log/Xorg.0.log Contents of most recent Xorg X server log file /var/log/Xorg.0.log: X.Org X Server 1.6.5 Release Date: 2009-10-11 X Protocol Version 11, Revision 0 Build Operating System: Linux 2.6.30.8-dsa-ia32 i686 Debian Current Operating System: Linux Linus-Debian 2.6.31-1-amd64 #1 SMP Sun Nov 15 22:05:44 UTC 2009 x86_64 Build Date: 13 October 2009 11:25:51AM xorg-server 2:1.6.5-1 (bui...@murphy.debian.org) Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Sun Nov 22 12:35:00 2009 (==) Using config file: "/etc/X11/xorg.conf" (==) ServerLayout "Layout0" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Device0" (**) |-->Screen "Screen1" (1) (**) | |-->Monitor "Monitor1" (**) | |-->Device "Device1" (**) |-->Input Device "Keyboard0" (**) Option "Xinerama" "1" (==) Automatically adding devices (==) Automatically enabling devices (**) Xinerama: enabled (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist. En
Bug#557484: gnome-shell: causes slow rendering in graphic-intensive apps
Package: gnome-shell Version: 2.28.1~git20091117-1 Severity: normal I normally use compiz, but decided to give gnome-shell a try. However, when I loaded simutrans, which is a fairly graphic-intensive program (it uses SDL but not OpenGL), it runs much more slowly than under compiz. The difference is easily noticeable: whereas simutrans normally takes about a second to load a saved game, under gnome-shell it takes two to three times that long. Another example is meritous: there is noticable lag in the graphics at some points; the rendering is not smooth as it is under compiz. This is present even when displaying the splash screen and menu (look at the speed of the background animation). My graphics card is 00:02.0 VGA compatible controller: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller (rev 03) 00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03) I am using i915 with kernel modesetting on. If you need me to provide more information or test something, please let me know. -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.31-1-amd64 (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages gnome-shell depends on: ii gconf2 2.28.0-1 GNOME configuration database syste ii gir1.0-clutter-1.0 1.0.8-1 GObject introspection data for the ii gir1.0-freedesktop 0.6.5-4 Introspection data for some FreeDe ii gir1.0-glib-2.0 0.6.5-4 Introspection data for GLib, GObje ii gir1.0-gtk-2.0 0.6.5-3 GObject introspection data for the ii gir1.0-mutter-2.28 2.28.1~git20091024-1 GObject introspection data for Mut ii libatk1.0-0 1.28.0-1 The ATK accessibility toolkit ii libc6 2.10.1-7 GNU C Library: Shared libraries ii libcairo2 1.8.8-2 The Cairo 2D vector graphics libra ii libclutter-1.0-01.0.8-1 Open GL based interactive canvas l ii libcroco3 0.6.2-1 a generic Cascading Style Sheet (C ii libdbus-1-3 1.2.16-2 simple interprocess messaging syst ii libdbus-glib-1-20.82-2 simple interprocess messaging syst ii libfontconfig1 2.6.0-4 generic font configuration library ii libfreetype62.3.11-1 FreeType 2 font engine, shared lib ii libgconf2-4 2.28.0-1 GNOME configuration database syste ii libgirepository1.0- 0.6.5-4 Library for handling GObject intro ii libgjs0 0.4-3Mozilla-based javascript bindings ii libgl1-mesa-glx [li 7.6-1A free implementation of the OpenG ii libglib2.0-02.22.2-2 The GLib library of C routines ii libgnome-desktop-2- 2.28.1-3 Utility library for loading .deskt ii libgnome-menu2 2.28.0.1-1 an implementation of the freedeskt ii libgstreamer0.10-0 0.10.25-3Core GStreamer libraries and eleme ii libgtk2.0-0 2.18.3-1 The GTK+ graphical user interface ii libmozjs2d 1.9.1.5-1The Mozilla SpiderMonkey JavaScrip ii libnspr4-0d 4.8.2-1 NetScape Portable Runtime Library ii libpango1.0-0 1.26.1-1 Layout and rendering of internatio ii librsvg2-2 2.26.0-1 SAX-based renderer library for SVG ii libstartup-notifica 0.10-1 library for program launch feedbac ii libx11-62:1.2.2-1X11 client-side library ii libxcomposite1 1:0.4.0-4X11 Composite extension library ii libxdamage1 1:1.1.1-4X11 damaged region extension libra ii libxext62:1.0.4-1X11 miscellaneous extension librar ii libxfixes3 1:4.0.3-2X11 miscellaneous 'fixes' extensio ii libxml2 2.7.6.dfsg-1 GNOME XML library ii mesa-utils 7.6-1Miscellaneous Mesa GL utilities ii mutter 2.28.1~git20091024-1 lightweight GTK+ window manager ii pkg-config 0.22-1 manage compile and link flags for ii python 2.5.4-2 An interactive high-level object-o ii zlib1g 1:1.2.3.3.dfsg-15compression library - runtime Versions of packages gnome-shell recommends: ii xserver-xephyr2:1.6.5-1 nested X server gnome-shell suggests no packages. -- no debconf information -- brian m. carlson / brian with sandals: Houston, Texas, US +1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only OpenPGP: RSA v4 4096b 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187 signature.asc
Bug#473207:
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have prepared the packages for libdc0 and valknut and filed an RFS. For more details, see: http://lists.debian.org/debian-mentors/2009/11/msg00140.html -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJLCSw9AAoJEDqDNnQ69yYSxg8IALw+P8lQzfnH5XPWMmhSLX8I c13TjOBDNDjRK1BJKhJnNpCM+UF02xqNqWsKWr2au/XuT36TyrFrmCGaghGIGxRK WJ/+pteLYbTqrQdRbKcwMWEVoJi+TVDfaKuYVmfjBcA61LSWT4+MkTPsp+yhiHUQ GwFga+0BDWp/+Mw9BzsL1+ZMMCXbXHE8Tyc6ovJAdAofPS1rJWuB8K0VR5acble5 zCfKJ2TWbWrwh9m849zD79+VeL8y1AA0hmgJD46moxzpTdbTdkhK0sAUOdVCiQky MmiKUTOhHGN9LUDGkpVhxmKyi3rdv95To5rIhprchKinncCOgXYAc4ENar91/Jk= =dwbk -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#519290: ITP: libphash -- Perceptual hashing library
retitle 519290 ITP: libphash -- Perceptual hashing library owner 519290 ! thanks I'm using phash for a internal project in my job and I'll be happy having it in Debian. pHash 0.6 was released after your patches sent. Could you confirm this? Also, could you publish your progress in this package somewhere? I'm pretty sure we'll need a specific version of cimg-dev. I'll contact cimg* maintainer. Regards, -- Tiago Bortoletto Vaz http://tiagovaz.org 0xA504FECA - http://pgp.mit.edu -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557452: [Pkg-xfce-devel] Bug#557452: xfce4-xkb-plugin: segfaults repeatedly after add and removal of the 'fi' layout
On dim., 2009-11-22 at 13:11 +0200, Eugene V. Lyubimkin wrote: > Yves-Alexis Perez wrote: > >> Nov 22 11:39:05 1501-debian kernel: [48995.014079] > >> xfce4-xkb-plugi[4928]: segfault at 20 ip 7fd83e36e411 sp > >> 7fffbb35d548 error 4 in libc-2.10.1.so[7fd83e2f5000+14a000] > >> Nov 22 11:39:32 1501-debian kernel: [49021.617278] > >> xfce4-xkb-plugi[9745]: segfault at 60 ip 7f3037bd5411 sp > >> 7fffbfcc3298 error 4 in libc-2.10.1.so[7f3037b5c000+14a000] > >> Nov 22 11:39:46 1501-debian kernel: [49035.776836] > >> xfce4-xkb-plugi[9753]: segfault at 20 ip 7fc154f0c411 sp > >> 7fffd202dd68 error 4 in libc-2.10.1.so[7fc154e93000+14a000] > > > > Could you try to backtrace it (replace the executable by a wrapper > > running in gdb (more info at > > http://wiki.xfce.org/howto/panel_plugin_debug) > > > > Here's. However, not much info there. Should I try to capture STDERR? > It segfaulted earlier, but now it just returns 1 and exits (still > unexpectedly). Hm yeah so the gdb stuff is useless. Maybe try to rebuild the package with debug output, that could help too. Which keyboard exactly do you chose in the layout list? Cheers, -- Yves-Alexis signature.asc Description: This is a digitally signed message part
Bug#123914: [ahve...@seul.org: Re: gEDA: [...@shadow.org.uk: Re: Bug#123914: geda-gschem: Deleting component crashes]]
- Forwarded message from Ales Hvezda - Date: Mon, 17 Dec 2001 07:42:51 -0500 From: Ales Hvezda To: geda-...@seul.org Cc: r...@shadow.org.uk, ahve...@seul.org Subject: Re: gEDA: [...@shadow.org.uk: Re: Bug#123914: geda-gschem: Deleting component crashes] Hi Hamish and Rich, [snip] >Here is the .tar.bz2 containing the schematic and our local symbols. The >crash occurs on any attempt to delete the PIC16F873 from the middle of >the schematic. hope this helps, any more questions, ... >cheers, Rich I know why the program crashes now. It is most certainly a bug in gschem. The short term solution is remove the extra small pin that hidden underneath pin 15 in PIC16F873. The long term solution is a little bit more complicated (but needs to happen to, since the user should never be able to feed gschem bad data to cause a segfault). I'll keep working on the long term solution. -Ales [ Basically what was happening was gschem was create a "connection" (between two pins) that was within a component and that is something I didn't expect ever to happen. ] - End forwarded message - -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#123914: [Pkg-electronics-devel] Bug#123914: Missing info
On Sun, Nov 22, 2009 at 10:16:11AM +0200, أحمد المحمودي wrote: > Hello, > > 1) The reporter did not tell which *particular* symbol, that when > deleted, causes the crash. > 2) The reporter has not replied Hamish regarding his symbol library, > since 6 years. > > Should this bug be closed or what ? I found the files, and I could not reproduce the crash by deleting the PIC, which Ales said was the problem component (in another email from 2001 which I just forwarded to the BTS). So this should be closed. Hamish -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#516210: xserver-xorg-video-radeonhd: "unsupported chipset" despite 1650
On Sun, Nov 22, 2009 at 12:04:15PM +0100, Brice Goglin wrote: > [20 lines, 81 words, 589 characters] Top characters: etino\nal > > Jeff Abrahamson wrote: > > Package: xserver-xorg-video-radeonhd > > Version: 1.2.5-1 > > Severity: normal > > > > > > Further details. I suspect that, despite claiming that the X1650 > > chipset is supported, it is not fully. Excerpts from my most recent > > experiments: > > > > (EE) RADEONHD(0): [dri] CP_INIT failed > > (EE) RADEONHD(0): RHDDRIFinishScreenInit: RHDDRIKernelInit Failed. > > (EE) RADEONHD(0): TMDSBVoltageControl: unhandled chipset: 0x71C7. > > (EE) RADEONHD(0): RHDCSStop: Command Submission backend is not active! > > > > You need to install firmware-linux, see the kernel log. > > Brice Thanks, that looks quite promising! But after apt-get install, reboot, and a new Xorg -configure, I think I'm in the same position. On running X thus (sudo only because otherwise I get an error about moving log files, and it seems easier just to sudo than to move logs around): sudo X -config /home/jeff/Xorg.conf.new this appeared in /var/log/kern.log: Nov 22 12:13:11 aragorn kernel: [ 177.345095] [drm] Initialized drm 1.1.0 20060810 Nov 22 12:13:11 aragorn kernel: [ 177.356710] ACPI: PCI Interrupt Link [APC6] enabled at IRQ 16 Nov 22 12:13:11 aragorn kernel: [ 177.356717] pci :02:00.0: PCI INT A -> Link[APC6] -> GSI 16 (level, low) -> IRQ 16 Nov 22 12:13:11 aragorn kernel: [ 177.356722] pci :02:00.0: setting latency timer to 64 Nov 22 12:13:11 aragorn kernel: [ 177.356880] [drm] Initialized radeon 1.30.0 20080528 for :02:00.0 on minor 0 Nov 22 12:13:12 aragorn kernel: [ 177.589065] [drm] Setting GART location based on new memory map Nov 22 12:13:12 aragorn kernel: [ 177.589289] [drm] Loading R500 Microcode Nov 22 12:13:12 aragorn kernel: [ 177.589293] platform radeon_cp.0: firmware: requesting radeon/R520_cp.bin Nov 22 12:13:12 aragorn kernel: [ 177.649476] [drm] Num pipes: 1 Nov 22 12:13:12 aragorn kernel: [ 177.649483] [drm] writeback test succeeded in 1 usecs Nov 22 12:13:26 aragorn kernel: [ 192.216096] [drm] Num pipes: 1 Nov 22 12:13:33 aragorn kernel: [ 198.416261] mtrr: no MTRR for e000,1000 found Odd, that address range (e000,1000) seems like it should exist (see below). /proc/mtrr contains this: reg00: base=0x0 (0MB), size= 2048MB, count=1: write-back reg01: base=0x08000 ( 2048MB), size= 1024MB, count=1: write-back reg02: base=0x0c000 ( 3072MB), size= 512MB, count=1: write-back reg03: base=0x1 ( 4096MB), size= 512MB, count=1: write-back Xorg.conf and Xorg.0.log attached, in case they might be of help. Any further pointers much appreciated. Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice"Mouse0" "CorePointer" InputDevice"Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/lib/xorg/modules" FontPath "/usr/share/fonts/X11/misc" FontPath "/usr/share/fonts/X11/cyrillic" FontPath "/usr/share/fonts/X11/100dpi/:unscaled" FontPath "/usr/share/fonts/X11/75dpi/:unscaled" FontPath "/usr/share/fonts/X11/Type1" FontPath "/usr/share/fonts/X11/100dpi" FontPath "/usr/share/fonts/X11/75dpi" FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" FontPath "built-ins" EndSection Section "Module" Load "dri2" Load "record" Load "dbe" Load "dri" Load "extmod" Load "glx" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName"Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "AccelMethod" # [] #Option "offscreensize" # [] #Option "SWcursor" # [] #Option "ignoreconnector" # [] #Option "forcereduced" # [] #Option "forcedpi" # #Option "useconfiguredmonitor" # [] #Option "HPD" # #Option "NoRandr" # [] #Option "RROutputOrder" # [] #Option "DRI" # [] #Option "TVMode"
Bug#504391: [PATCH] mmc: add module parameter to set whether cards are assumed removable
On Sun, 2009-11-22 at 12:42 +0100, Wouter van Heyst wrote: > On Mon, Nov 16, 2009 at 10:31:49PM +, Ben Hutchings wrote: [...] > > In general, it is not possible to tell whether a card present in an MMC > > slot after resume is the same that was there before suspend. So there > > are two possible behaviours, each of which will cause data loss in some > > cases: > > > > CONFIG_MMC_UNSAFE_RESUME=n (default): Cards are assumed to be removed > > during suspend. Any filesystem on them must be unmounted before > > suspend; otherwise, buffered writes will be lost. > > > > CONFIG_MMC_UNSAFE_RESUME=y: Cards are assumed to remain present during > > suspend. They must not be swapped during suspend; otherwise, buffered > > writes will be flushed to the wrong card. > > > > Currently the choice is made at compile time and this allows that to be > > overridden at module load time. > > I'm running 2.6.32-rc7 with this patch applied and CONFIG_MMC_UNSAFE_RESUME=y > That works as desired for my non-removable case. Is it desired that I > test if 'removable=1' will thrash my filesystem? Please test with CONFIG_MMC_UNSAFE_RESUME=n (which Debian will continue to use) and removable=0. Ben. -- Ben Hutchings Unix is many things to many people, but it's never been everything to anybody. signature.asc Description: This is a digitally signed message part
Bug#557485: ixp4xx-microcode: source package without binary in unstable
Package: ixp4xx-microcode Version: 2.4-5 Severity: grave Justification: renders package unusable Hi, your package has been built only on arch: arm which is no longer part of unstable. We have a source package without a binary in unstable now. Is your package able to build on armel? If yes, please upload soon. Otherwise we need to remove the source from the archive. Cheers, Torsten -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#516210: xserver-xorg-video-radeonhd: "unsupported chipset" despite 1650
Jeff Abrahamson wrote: > Nov 22 12:13:33 aragorn kernel: [ 198.416261] mtrr: no MTRR for > e000,1000 found > > > Odd, that address range (e000,1000) seems like it should exist > It's saying there's no MTRR for this exact address range, it's not saying that the address range doesn't exist. You might want to try building a more recent version of the driver. Brice -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#556790: Reduced testcase from libssh2
Hi, Here is a reduced testcase based on libssh2. I get the ICE with gcc-4.3 -O2 only. typedef long unsigned int size_t; typedef struct _LIBSSH2_SESSION LIBSSH2_SESSION; typedef struct _LIBSSH2_CHANNEL LIBSSH2_CHANNEL; typedef struct _LIBSSH2_SFTP LIBSSH2_SFTP; typedef struct _LIBSSH2_SFTP_ATTRIBUTES LIBSSH2_SFTP_ATTRIBUTES; struct _LIBSSH2_SFTP_ATTRIBUTES { unsigned long flags; }; struct _LIBSSH2_CHANNEL { LIBSSH2_SESSION *session; }; struct _LIBSSH2_SFTP { LIBSSH2_CHANNEL *channel; unsigned char *stat_packet; }; struct _LIBSSH2_SESSION { void *abstract; void *(*alloc)(size_t count, void **abstract); }; static int sftp_attrsize(const LIBSSH2_SFTP_ATTRIBUTES * attrs) { int attrsize = 4; if (!attrs) { return attrsize; } if (attrs->flags & 0x0001) if (attrs->flags & 0x0002) attrsize += 8; if (attrs->flags & 0x0004) attrsize += 4; if (attrs->flags & 0x0008) attrsize += 8; return attrsize; } static int sftp_stat(LIBSSH2_SFTP *sftp, const char *path, unsigned int path_len, int stat_type, LIBSSH2_SFTP_ATTRIBUTES * attrs) { LIBSSH2_CHANNEL *channel = sftp->channel; LIBSSH2_SESSION *session = channel->session; sftp->stat_packet = session->alloc((sftp_attrsize(attrs)), &(session)->abstract); } libssh2_sftp_stat_ex(LIBSSH2_SFTP *sftp, const char *path, unsigned int path_len, int stat_type, LIBSSH2_SFTP_ATTRIBUTES *attrs) { int rc; BLOCK_ADJUST(rc, sftp->channel->session, sftp_stat(sftp, path, path_len, stat_type, attrs)); } -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557340: IDE CD not recognized
The same problem is happening here on an Asus x51r. The machine use the same IDE chipset: ATI sb600. But this is a 2.6.31-1-686 kernel (from debain sid). -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#556943: python-matplotlib: Segfaults with Qt4Agg backend
Am Mittwoch, den 18.11.2009, 15:01 +0100 schrieb Teemu Ikonen: > >>> import matplotlib.pyplot as plt > >>> plt.plot([1,2]) > Segmentation fault I enabled Qt4Agg backend and tried this example code without an segmentation fault in an up-to-date squeeze environment. > This is could be a bug in python-qt4, which was updated recently, but other > PyQt4 applications work fine here. That's possible. Is your system up-to-date? Where there any PyQt4 updates since you reported this bug? Do you still experience the bug? -- Benjamin Drung Ubuntu Developer (www.ubuntu.com) | Debian Maintainer (www.debian.org) signature.asc Description: Dies ist ein digital signierter Nachrichtenteil
Bug#557486: Typos in package description
Package: haskell-cpphs-doc Version: 1.9-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages provides ... Should be: This package provides ... Also there seems to be an unwanted extra space in front of the "." on the second line (which can be seen on http://packages.debian.org/sid/haskell-cpphs-doc). -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJONwACgkQuoq9E0RAnd4dwgCgmoIK2r3GFGgmmcNMDBuYiU6R DfAAnjvvxXdAMlY20hxccGZsRxq8DPZK =ht5z -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557490: Typo in package description: "This packages"
Package: kdesvn-kio-plugins Version: 1.4.1-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages includes ... Should be: This package includes ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJOlgACgkQuoq9E0RAnd7QSQCgp6C7xMZ1/tg6Qnu8YJWEy/fu gXwAoKcLJXxyEqHjKeMmBFHFUvZmXohp =nxB7 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557488: Typo in package description: "This packages"
Package: kdenlive-data Version: 0.7.6-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJOgcACgkQuoq9E0RAnd633gCgxHtC4+cxq/AHMo027+cXmSnb K20An1Rc77p5Y6rj4y2P6zTRGmU+YCJo =hBGI -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557487: Typo in package description: "This packages"
Package: hostap-utils Version: 1:0.4.7-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages cotnains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJOcMACgkQuoq9E0RAnd4AnwCgu9OlxR6PtmM3sJjYoyAIR3Be P88AoMdRuqmG6BIb0HJKRxrQGkkSt/F2 =QYzo -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557489: halevt: Halevt cant mount my external hd without pmount
Package: halevt Version: 0.1.5-1 Severity: normal Hi, halevt don't mount my external hd when I don't have pmount installed. Follow log messages when i plug my USB ext HD. --- /var/log/messages (without pmount installed ) Nov 22 09:54:41 case kernel: [ 4122.082738] sd 6:0:0:0: [sdc] Attached SCSI disk Nov 22 09:54:43 case halevt: Running: hvmount mount -u /org/freedesktop/Hal/devices/volume_uuid_3A0C48E00C489931 -d /dev/sdc1 -s -m 002 Nov 22 09:54:43 case halevt: Running: halevt-mount -u /org/freedesktop/Hal/devices/volume_uuid_3A0C48E00C489931 -o sync -m 002 --- /var/log/messages (with pmount installed ) --- Nov 22 09:58:06 case kernel: [ 4327.290297] sd 8:0:0:0: [sdb] Attached SCSI disk Nov 22 09:58:07 case halevt: Running: hvmount mount -u /org/freedesktop/Hal/devices/volume_uuid_3A0C48E00C489931 -d /dev/sdb1 -s -m 002 Nov 22 09:58:07 case halevt: Running: halevt-mount -u /org/freedesktop/Hal/devices/volume_uuid_3A0C48E00C489931 -o sync -m 002 Nov 22 09:58:07 case halevt: Running: hvmount mountpoint -u /org/freedesktop/Hal/devices/volume_uuid_3A0C48E00C489931 -d /dev/sdb1 -p "/media/FreeAgent Drive" Nov 22 09:58:07 case halevt: Running: halevt-mount -s $ dpkg -l pmount ii pmount0.9.20-2 mount removable devices as normal user -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.29-1-686 (SMP w/1 CPU core) Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages halevt depends on: ii adduser 3.111add and remove users and groups ii hal 0.5.13-4 Hardware Abstraction Layer ii libboolstuff-0.1-0 0.1.12-3 library for operating on boolean e ii libc6 2.10.1-7 GNU C Library: Shared libraries ii libdbus-1-3 1.2.16-2 simple interprocess messaging syst ii libdbus-glib-1-20.82-2 simple interprocess messaging syst ii libglib2.0-02.22.2-2 The GLib library of C routines ii libhal1 0.5.13-4 Hardware Abstraction Layer - share ii libxml2 2.7.6.dfsg-1 GNOME XML library halevt recommends no packages. halevt 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#557496: Typo in package description: "This packages"
Package: libcap2-bin Version: 1:2.17-2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJO9YACgkQuoq9E0RAnd5fzwCeN2WWBdCS85GKafXEWsRDrFdF P8cAoN8Uq9S/+1F/RYSEq9PePT1EfW/W =gzCE -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557498: Typo in package description: "This packages"
Package: libchipcard-data Version: 4.2.8-2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJPBYACgkQuoq9E0RAnd51sACePvZWI6chpBdVECM1klOtxpvY mTIAoNxwzP28ts6g6BpzEa4TNJLcdhX1 =egd4 -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557495: libtowitoko-dev and libctapimkt0-dev: error when trying to install together
Package: libctapimkt0-dev,libtowitoko-dev Version: libctapimkt0-dev/1.0.1-1 Version: libtowitoko-dev/2.0.7-8+b1 Severity: serious User: trei...@debian.org Usertags: edos-file-overwrite Date: 2009-11-22 Architecture: amd64 Distribution: sid Hi, automatic installation tests of packages that share a file and at the same time do not conflict by their package dependency relationships has detected the following problem: WARNING: The following packages cannot be authenticated! libc-dev-bin linux-libc-dev libc6-dev libctapimkt0 libctapimkt0-dev libtowitoko2 libtowitoko-dev Preconfiguring packages ... Authentication warning overridden. Can not write log, openpty() failed (/dev/pts not mounted?) Selecting previously deselected package libc-dev-bin. (Reading database ... 10432 files and directories currently installed.) Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.1-7_amd64.deb) ... Selecting previously deselected package linux-libc-dev. Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.31-2_amd64.deb) ... Selecting previously deselected package libc6-dev. Unpacking libc6-dev (from .../libc6-dev_2.10.1-7_amd64.deb) ... Selecting previously deselected package libctapimkt0. Unpacking libctapimkt0 (from .../libctapimkt0_1.0.1-1_amd64.deb) ... Selecting previously deselected package libctapimkt0-dev. Unpacking libctapimkt0-dev (from .../libctapimkt0-dev_1.0.1-1_amd64.deb) ... Selecting previously deselected package libtowitoko2. Unpacking libtowitoko2 (from .../libtowitoko2_2.0.7-8+b1_amd64.deb) ... Selecting previously deselected package libtowitoko-dev. Unpacking libtowitoko-dev (from .../libtowitoko-dev_2.0.7-8+b1_amd64.deb) ... dpkg: error processing /var/cache/apt/archives/libtowitoko-dev_2.0.7-8+b1_amd64.deb (--unpack): trying to overwrite '/usr/include/ctapi.h', which is also in package libctapimkt0-dev 0:1.0.1-1 Processing triggers for man-db ... Errors were encountered while processing: /var/cache/apt/archives/libtowitoko-dev_2.0.7-8+b1_amd64.deb E: Sub-process /usr/bin/dpkg returned an error code (1) This is a serious bug as it makes installation fail, and violate section 7.6.1 of the policy. Possible solutions are to have the two packages conflict, to rename the common file in one of the two packages, or to remove the file from one package and have this package depend on the other package. File diversions or a Replace relation are another possibility. Here is a list of files that are known to be shared by both packages (according to the Contents file for sid/amd64, which may be slightly out of sync): usr/include/ctapi.h This bug is assigned to both packages. If you, the maintainers of the two packages in question, have agreed on which of the packages will resolve the problem please reassign the bug to that package. -Ralf. PS: for more information about the detection of file overwrite errors of this kind see http://edos.debian.net/file-overwrites/. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557497: libxmlada-dev and libxmlada-doc: error when trying to install together
Package: libxmlada-doc,libxmlada-dev Version: libxmlada-doc/3.02-1 Version: libxmlada-dev/3.0-6 Severity: serious User: trei...@debian.org Usertags: edos-file-overwrite Date: 2009-11-22 Architecture: amd64 Distribution: sid Hi, automatic installation tests of packages that share a file and at the same time do not conflict by their package dependency relationships has detected the following problem: WARNING: The following packages cannot be authenticated! binutils libgmp3c2 libmpfr1ldbl cpp-4.3 libgomp1 gcc-4.3 gnat-4.3-base libgnat-4.3 libc-dev-bin linux-libc-dev libc6-dev libgnatvsn4.3 libgnatprj4.3 gnat-4.3 libxmlada3 libxmlada-dev libxmlada-doc Authentication warning overridden. Can not write log, openpty() failed (/dev/pts not mounted?) Selecting previously deselected package binutils. (Reading database ... 10432 files and directories currently installed.) Unpacking binutils (from .../binutils_2.20-4_amd64.deb) ... Selecting previously deselected package libgmp3c2. Unpacking libgmp3c2 (from .../libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb) ... Selecting previously deselected package libmpfr1ldbl. Unpacking libmpfr1ldbl (from .../libmpfr1ldbl_2.4.1-2_amd64.deb) ... Selecting previously deselected package cpp-4.3. Unpacking cpp-4.3 (from .../cpp-4.3_4.3.4-6_amd64.deb) ... Selecting previously deselected package libgomp1. Unpacking libgomp1 (from .../libgomp1_4.4.2-3_amd64.deb) ... Selecting previously deselected package gcc-4.3. Unpacking gcc-4.3 (from .../gcc-4.3_4.3.4-6_amd64.deb) ... Selecting previously deselected package gnat-4.3-base. Unpacking gnat-4.3-base (from .../gnat-4.3-base_4.3.4-4_amd64.deb) ... Selecting previously deselected package libgnat-4.3. Unpacking libgnat-4.3 (from .../libgnat-4.3_4.3.4-4_amd64.deb) ... Selecting previously deselected package libc-dev-bin. Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.1-7_amd64.deb) ... Selecting previously deselected package linux-libc-dev. Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.31-2_amd64.deb) ... Selecting previously deselected package libc6-dev. Unpacking libc6-dev (from .../libc6-dev_2.10.1-7_amd64.deb) ... Selecting previously deselected package libgnatvsn4.3. Unpacking libgnatvsn4.3 (from .../libgnatvsn4.3_4.3.4-4_amd64.deb) ... Selecting previously deselected package libgnatprj4.3. Unpacking libgnatprj4.3 (from .../libgnatprj4.3_4.3.4-4_amd64.deb) ... Selecting previously deselected package gnat-4.3. Unpacking gnat-4.3 (from .../gnat-4.3_4.3.4-4_amd64.deb) ... Selecting previously deselected package libxmlada3. Unpacking libxmlada3 (from .../libxmlada3_3.0-6_amd64.deb) ... Selecting previously deselected package libxmlada-dev. Unpacking libxmlada-dev (from .../libxmlada-dev_3.0-6_amd64.deb) ... Selecting previously deselected package libxmlada-doc. Unpacking libxmlada-doc (from .../libxmlada-doc_3.2-1_all.deb) ... dpkg: error processing /var/cache/apt/archives/libxmlada-doc_3.2-1_all.deb (--unpack): trying to overwrite '/usr/share/info/xmlada.info.gz', which is also in package libxmlada-dev 0:3.0-6 dpkg-deb: subprocess paste killed by signal (Broken pipe) Processing triggers for man-db ... Processing triggers for install-info ... Errors were encountered while processing: /var/cache/apt/archives/libxmlada-doc_3.2-1_all.deb E: Sub-process /usr/bin/dpkg returned an error code (1) cow-shell unlink .ilist: No such file or directory This is a serious bug as it makes installation fail, and violate section 7.6.1 of the policy. Possible solutions are to have the two packages conflict, to rename the common file in one of the two packages, or to remove the file from one package and have this package depend on the other package. File diversions or a Replace relation are another possibility. Here is a list of files that are known to be shared by both packages (according to the Contents file for sid/amd64, which may be slightly out of sync): usr/share/info/xmlada.info.gz This bug is assigned to both packages. If you, the maintainers of the two packages in question, have agreed on which of the packages will resolve the problem please reassign the bug to that package. -Ralf. PS: for more information about the detection of file overwrite errors of this kind see http://edos.debian.net/file-overwrites/. -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557494: Typo in package description: "This packages"
Package: libcalendar-ocaml-doc Version: 2.01.1-6 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJO44ACgkQuoq9E0RAnd4YiACg2k1tIJHo96vKJ+z9aSza9HqI blcAoPBimxfg+n7jy2LtKhouQNVdSkOx =SQMd -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557493: Typo in package description: "This packages"
Package: libaqbanking-data Version: 4.2.0-2 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJO08ACgkQuoq9E0RAnd5ovQCg7RSD4N1Cs7osBHcwPd3dneJm li0An2yEohIURsf8Oxnb/vbzxOb4fl37 =oBSD -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557491: Typo in package description: "This packages"
Package: lash-doc Version: 0.5.4-3 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJOqoACgkQuoq9E0RAnd74AwCg1xEoh/cPa+VpkUlrIG+e63fl vSoAn1fufc/kMZWRzpksJRJnuj7QRkbX =2QWh -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Bug#557492: Typo in package description: "This packages"
Package: ldnsutils Version: 1.6.1-1 Severity: minor User: ubuntu-de...@lists.ubuntu.com Usertags: origin-ubuntu lucid -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The package description contains a small typo: This packages contains ... Should be: This package contains ... -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) iEYEARECAAYFAksJOvIACgkQuoq9E0RAnd57pwCg1DYqu9XHcHc8pLO5yBKFLCmV rZ8An1tVUsq6hgKJTlakuo5TExtyIHIg =SIEd -END PGP SIGNATURE- -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org