Bug#823050: wxglade: cut/paste of items into sizer fails

2016-05-02 Thread Carsten Grohmann
Hi Georges,

may you add the attached patch to the current Debian package. It fixes
the bug reported by Karsten as well as a second minor bug in the Perl
code generator.

Yes, the fix isn't in a release version yet. The fix is in the stable
branch of wxGlade. You can download the stable version of wxGlade
always from Bitbucket
(https://bitbucket.org/agriggio/wxglade/downloads#branch-downloads) and
execute it directly.

Regards,
Carsten

Karsten Hilbert schrieb am 02.05.2016:
> Hi Carsten,
> 
> > this bug is already fixed in the stable branch of wxGlade 0.7.2 with
> > changeset 62797578d6d2 "Fix PyDeadObject errors and crashes during
> > cut and paste".  
> 
> Great !  You mean in an unreleased version thereof ?  Because:
> 
>   wxglade:
> Installiert:   0.7.2-1
> Installationskandidat: 0.7.2-1
> Versionstabelle:
>*** 0.7.2-1 990
>   990 ftp://ftp.de.debian.org/debian stretch/main i386
> Packages 500 ftp://ftp.de.debian.org/debian unstable/main i386
> Packages 100 /var/lib/dpkg/status
> 
> > You have three different possibibilties to report wxGlade bugs:
> >  - send bug reports to the mailing list,
> >  - file a ticket on Sourceforge
> > or 
> >  - send email to my private email address.  
> 
> I should've done as I used to do -- email you directly.
> 
> Anyway, no harm done.
> 
> Karsten

diff --git a/NEWS.txt b/NEWS.txt
--- a/NEWS.txt
+++ b/NEWS.txt
@@ -25,6 +25,9 @@ Bugs:
   - Fix generated code for wxDatePickerCtrl
   - Add workaround for missing wxDefaultDateTime in wxPerl
   - Fix missing icons in release packages
+  - Fix PyDeadObject errors and crashes during cut and paste
+  - System colour constants named incorrectly in Perl (sf bug #184,
+Thanks to Sue D. Nymme)
 
 Deprecation
   - In place modifications for generated source files will be removed in one
diff --git a/README.SF.md b/README.SF.md
--- a/README.SF.md
+++ b/README.SF.md
@@ -26,8 +26,8 @@ Files
 MD5 checksums
 -
 b13cdf9eff9857f6f07f1bd6bf50348a  wxGlade-0.7.2-setup.exe
-81d3270ba1c764d482b0fed00c6f9c59  wxGlade-0.7.2.tar.gz
-69885a306f694222655fe63d3443191b  wxGlade-0.7.2.zip
+16395cd62adba4b53da371fe59707a33  wxGlade-0.7.2.tar.gz
+61ca7513da4913045854c1b0a62a04a3  wxGlade-0.7.2.zip
 e57843ad4d0cb6bf1fc2aab7c46aaa73  wxGlade-SAE-0.7.2-setup.exe
 
 
diff --git a/edit_sizers/edit_sizers.py b/edit_sizers/edit_sizers.py
--- a/edit_sizers/edit_sizers.py
+++ b/edit_sizers/edit_sizers.py
@@ -372,9 +372,12 @@ class SizerSlot(object):
 self.menu.AppendSeparator()
 misc.append_item(self.menu, PREVIEW_ID, _('Preview'))
 
-wx.EVT_MENU(self.widget, REMOVE_ID, self.remove)
-wx.EVT_MENU(self.widget, PASTE_ID, self.clipboard_paste)
-wx.EVT_MENU(self.widget, PREVIEW_ID, self.preview_parent)
+def bind(method):
+return lambda e: wx.CallAfter(method)
+
+wx.EVT_MENU(self.widget, REMOVE_ID, bind(self.remove))
+wx.EVT_MENU(self.widget, PASTE_ID, bind(self.clipboard_paste))
+wx.EVT_MENU(self.widget, PREVIEW_ID, bind(self.preview_parent))
 
 def remove(self, *args):
 if not self.sizer.is_virtual():
@@ -409,9 +412,12 @@ class SizerSlot(object):
 
 @see: L{clipboard.paste()}
 """
+if self.widget:
+self.widget.Hide()
 if clipboard.paste(self.parent, self.sizer, self.pos):
 common.app_tree.app.saved = False
-self.widget.Hide()
+else:
+self.widget.Show()
 
 def on_select_and_paste(self, *args):
 """\
@@ -422,11 +428,11 @@ class SizerSlot(object):
 self.widget.SetFocus()
 self.clipboard_paste()
 
-def delete(self, delete_widget=True):
+def delete(self):
 if misc.currently_under_mouse is self.widget:
 misc.currently_under_mouse = None
 
-if delete_widget and self.widget:
+if self.widget:
 self.widget.Hide()
 
 # unbind events to prevent new created (and queued) events
@@ -1182,7 +1188,7 @@ class SizerBase(Sizer):
 try:
 old_child = self.children[pos]
 if isinstance(old_child.item, SizerSlot):
-old_child.item.delete(False)
+old_child.item.delete()
 self.children[pos] = SizerItem(item, pos, option, flag, border,
size)
 except IndexError:  # this shouldn't happen!
diff --git a/tests/casefiles/bug184.cpp b/tests/casefiles/bug184.cpp
new file mode 100755
--- /dev/null
+++ b/tests/casefiles/bug184.cpp
@@ -0,0 +1,74 @@
+// -*- C++ -*-
+//
+// generated by wxGlade f5bfb036bf72 on Fri Apr 22 21:37:27 2016
+//
+// Example for compiling a single file project under Linux using g++:
+//  g++ MyApp.cpp $(wx-config --libs) $(wx-config --cxxflags) -o MyApp
+//
+// Example for compiling a multi file project under Linux using g++:
+//  g++ main.cpp $(wx-config --libs) $(wx-config 

Bug#823050: wxglade: cut/paste of items into sizer fails

2016-05-02 Thread Carsten Grohmann
Hi Georges, Hi Karsten,

this bug is already fixed in the stable branch of wxGlade 0.7.2 with
changeset 62797578d6d2 "Fix PyDeadObject errors and crashes during cut
and paste".

You have three different possibibilties to report wxGlade bugs:
 - send bug reports to the mailing list,
 - file a ticket on Sourceforge
or 
 - send email to my private email address.

Regards,
Carsten


pgpmKHBLyCcro.pgp
Description: Digitale Signatur von OpenPGP


Bug#726094: libstdc++6-4.8-dbg: gdb complain about missing python module libstdcxx.v6.printers

2013-10-12 Thread Carsten Grohmann
Package: libstdc++6-4.8-dbg
Version: 4.8.1-10
Severity: normal

Dear Maintainer,

I've installed the package libstdc++6-4.8-dbg few days ago. Now gdb
complains at startup about a missing python module libstdcxx.v6.printers:

Traceback (most recent call last):
  File /usr/lib/debug/usr/lib/i386-linux-gnu/libstdc++.so.6.0.18-gdb.py, 
line 59, in module
from libstdcxx.v6.printers import register_libstdcxx_printers
ImportError: No module named libstdcxx.v6.printers
Traceback (most recent call last):
  File /usr/lib/debug/usr/lib/i386-linux-gnu/libstdc++.so.6.0.18-gdb.py, 
line 59, in module
from libstdcxx.v6.printers import register_libstdcxx_printers
ImportError: No module named libstdcxx.v6.printers

The module exists:
# ll /usr/share/gcc-4.8/python/libstdcxx/v6/printers.py 
-rw-r--r-- 1 root root 37546 Sep  5 09:54 
/usr/share/gcc-4.8/python/libstdcxx/v6/printers.py

Thereby it looks like a syspath issue. Please fix this issue.

Generally the bug is annoying but gdb works still fine.

Thanks,
Carsten


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

Kernel: Linux 3.10-3-686-pae (SMP w/4 CPU cores)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages libstdc++6-4.8-dbg depends on:
ii  gcc-4.8-base  4.8.1-10
ii  libc6 2.17-93
ii  libgcc1   1:4.8.1-10
ii  libgcc1-dbg   1:4.8.1-10
ii  libstdc++64.8.1-10

Versions of packages libstdc++6-4.8-dbg recommends:
ii  libstdc++-4.8-dev  4.8.1-10

libstdc++6-4.8-dbg 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#719252: update

2013-09-25 Thread Carsten Grohmann
reassign 719252 linux-image-3.9-1-686-pae
retitle 719252 ATA bus error caused with new kernel and IDE disk connacted via 
sata2ide adapter

thanks


I've replaced the old IDE disk connected to a new main board via sata2ide 
adapter by a current SATA disk. This change let the strange behaviour to gone.

Summary:
The issue occurs only with a new kernel e.g. 3.9-1 and an IDE disk connected 
via sata2ide only. The old kernel 3.2.0-4 doesn't show this behaviour.

A new kernel and a direct attached SATA disk works fine again.

Regards,
Carsten


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



Bug#719252: linux-image-3.9-1-686-pae: hard disk errors at end of shutdown

2013-08-15 Thread Carsten Grohmann
retitle 719252 ATA error message during stopping disk
affects 719252 + linux-image-3.10-2-686-pae 
thanks

The bug occurs with the current 3.10-2-686-pae kernel image.

Regards,
Carsten


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



Bug#719252: linux-image-3.9-1-686-pae: hard disk errors at end of shutdown

2013-08-09 Thread Carsten Grohmann
Package: linux-image-3.9-1-686-pae
Version: 3.9.8-1
Severity: normal

Dear Maintainer,

I've a system with two hard disks3s - a SSD and an older IDE disk. The
SSD is the boot disk. The IDE disk is used for storing mass data.

At end of the shutdown the IDE disk 
 1) spins down for fractions of a seconds but audible
 2) spins up again
 3) spins down permanently, the system turns off in same moment

I think the spinning down - up - down is a bug.

The issue occurs at every shutdown with kernel 3.9-1-686-pae. It doesn't
occur with kernel 3.2.0-4-686-pae.

The shutdown log is a transcription of a recording shutdown process.
The syslog doesn't contains any information about this part of the
shutdown process. There are no disk errors during the system is up and
running.

What's the reason of this behaviour and how can I fix it?

Regards,
Carsten

** Shutdown log:
[ 3621.791148] pcieport :00:1c.5: System wakeup enabled by ACPI
 done.
Will now unmount temporary filesystems:tmpfs has been unmounted
none has been unmounted
. ok
[] Will now deactivate swap:swapoff on /dev/sda2
. ok
[] Will now unmount local filesystems:/dev/sda3 has been unmounted
/dev/sdal has been unmounted
. ok
[ ok ] Mounting root filesystem read-only...done.
[ info] Will now halt.
[ 3624.923550] kvm: exiting hardware virtualization
[ 3624.924414] sd 4:0:0:0: [sdb] Synchronizing SCSI cache
[ 3624.924905] sd 4:0:0:0: [sdb] Stopping disk
[ 3625.212165] sd 2:0:0:0: [sda] Synchronizing SCSI cache
[ 3625.212326] ad 2:0:0:0: [sda] Stopping disk
[ 3625.615374] ata3.00: exception Emask 0x10 SAct 0x0 SErr 0x1 action 0xe 
frozen
[ 3625.615446] ata3.00: irq_stat 0x0041, PHY RDY changed
[ 3625.615497] ata3: SError: { PHYRdyChg }
[ 3625.615534] ata3.00: failed command: STANDBY IMMEDIATE
[ 3625.615585] ata3.00: cmd e0/00:00:00:00:00/00:00:00:00:00/a0 tag 0
[ 3625.615585]  res 50/00:00:00:00:00/00:00:00:00:00/a0 Emask 0x10 
(ATA bus error)
[ 3625.615705] ata3.00: status: { DRDY }
[ 3625.615746] ata3: hard resetting link
[ 3626.335749] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 3626.400368] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) rejected 
by device (Stat=0x51 Err=0x04)
[ 3626.400445] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) 
filtered out
[ 3626.400505] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION 
OVERLAY) filtered out
[ 3629.646801] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) rejected 
by device (Stat=0x51 Err=0x04)
[ 3629.646874] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) 
filtered out
[ 3629.646931] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION 
OVERLAY) filtered out
[ 3629.649227] ata3.00: configured for UDMA/100
[ 3629.665886] ata3.00: device reported invalid CHS sector 0
[ 3629.668636] ata3: EH complete
[ 3629.668666] sd 2:0:0:0: [sda] START_STOP FAILED
[ 3629.668668] sd 2:0:0:0: [sda]
[ 3629.668669] Result: hostbyte=DID_OK driverbyte=DRIVER_SENSE
[ 3629.668671] sd 2:0:0:0: [sda]
[ 3629.668673] Sense Key : Aborted Command [current] [descriptor]
[ 3629.668675] sd 2:0:0:0: [sda]
[ 3629.668686] Add. Sense: No additional sense information
[ 3629.690983] mei :00:16.0: stop
[ 3629.693846] ACPI: Preparing to enter system sleep state S5

Current ata3 details:
$ dmesg | grep ata3 
[0.881971] ata3: SATA max UDMA/133 abar m2048@0xf7c16000 port 0xf7c16200 
irq 44
[1.200526] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[1.202763] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) rejected 
by device (Stat=0x51 Err=0x04)
[1.202814] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) 
filtered out
[1.202859] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION 
OVERLAY) filtered out
[1.203017] ata3.00: ATA-7: SAMSUNG SP2514N, VF100-50, max UDMA/100
[1.203050] ata3.00: 488397168 sectors, multi 16: LBA48 
[1.203081] ata3.00: applying bridge limits
[1.222989] ata3.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) rejected 
by device (Stat=0x51 Err=0x04)
[1.223060] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) 
filtered out
[1.223102] ata3.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION 
OVERLAY) filtered out
[1.223223] ata3.00: configured for UDMA/100

$ cat /sys/block/sda/device/queue_depth 
1

$ cat /sys/block/sda/device/model   
SAMSUNG SP2514N 

-- Package-specific info:
** Version:
Linux version 3.9-1-686-pae (debian-ker...@lists.debian.org) (gcc version 
4.7.3 (Debian 4.7.3-4) ) #1 SMP Debian 3.9.8-1

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.9-1-686-pae root=UUID=71b3f925-391e-4f93-
aef2-3f58ac7da001 ro

** Tainted: O (4096)
 * Out-of-tree module has been loaded.

** Kernel log:
[1.600282] usb 6-1: new high-speed USB device number 2 using ehci-pci
[1.732559] usb 6-1: New USB device found, idVendor=8087, idProduct=0024
[1.732605] usb 6-1: New USB device strings: Mfr=0, Product=0, 
SerialNumber=0
[1.732818] 

Bug#719142: postinstall: argument expected

2013-08-08 Thread Carsten Grohmann

Package: libatlas3-base
Version: 3.10.1-2
Severity: normal

Dear Maintainer,

I've updated my debian testing today. The libaltas3-base packages raised
those messages during the postinstall:

libatlas3-base (3.10.1-2) wird eingerichtet ... update-alternatives: Warnung: 
Neuinstallation der Alternative /usr/lib/atlas-base/atlas/libblas.so.3 ist 
erzwungen, weil Linkgruppe libblas.so.3 defekt ist
/var/lib/dpkg/info/libatlas3-base.postinst: Zeile 22: [: Argument erwartet.

The first line is about re-newing a broken link group.

And the second line looks like a shell script error caused by an empty
variable. The translated message would be:
Line 22: [: argument expected

Please update the post install script.

Thank you,
Carsten

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

Kernel: Linux 3.9-1-686-pae (SMP w/4 CPU cores)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages libatlas3-base depends on:
ii  libc6 2.17-7
ii  libgcc1   1:4.8.1-2
ii  libgfortran3  4.8.1-2

libatlas3-base recommends no packages.

Versions of packages libatlas3-base suggests:
pn  liblapack3  none

-- 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#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2013-01-06 Thread Carsten Grohmann
Hu Julien,

Am Freitag, 4. Januar 2013 schrieb Julien Cristau:
 http://people.debian.org/~jcristau/linux-image-3.2.0-4.drm-686-pae_3.2.35-3
 ~jcristau.1_i386.deb sha1sum 17980ee5bafc40bb4e7bf42576ce40ac81c75833

Could you provide a header too, please? I'd like to run a virtual box at my 
box.

Thanks
Carsten


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



Bug#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2012-11-29 Thread Carsten Grohmann
Am Montag, 26. November 2012 schrieb Julien Cristau:
 New image is up at
 http://people.debian.org/~jcristau/linux-image-3.2.0-4.drm-amd64_3.2.34-1~j
 cristau.1_amd64.deb
I've use the new kernel without any trouble. All works fine.

Thanks,
Carsten


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


Bug#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2012-10-13 Thread Carsten Grohmann
Hi,

Am Sonntag, 30. September 2012 schrieb Carsten Grohmann:
 During the boot process the singnal to my DVI connected monitor disappears.
 I've created a video of the boot process. The last lines are:
 
 input: PC Speaker as /devices/platform/pcspkr/input/input4
 iTCO_vendor_support: vendor-support=0
 iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
 iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
 iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
 alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
 
 Unfortunately I could not provide anymore output.

I did some further tests today. The driver of the USB serial device has been 
loaded to late. Thereby I didn't get a serial 
log. But pressing the power button the system shutdown gracefully after many 
many seconds.
That's the log of this boot:

[6.998683] i915 :00:02.0: irq 53 for MSI/MSI-X
[6.998686] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[6.998718] [drm] Driver supports precise vblank timestamp query.
[6.999179] vgaarb: device changed decodes: 
PCI::00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[7.047886] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[7.233761] BUG: unable to handle kernel paging request at 001ff800
[7.233846] IP: [a03a28a2] i915_gem_init_ppgtt+0x93/0x16c [i915]
[7.233932] PGD 213742067 PUD 0
[7.234007] Oops: 0002 [#1] SMP
[7.235489] CPU 2
[7.235512] Modules linked in: snd_seq_midi snd_seq_midi_event snd_rawmidi 
ftdi_sio i915(+) snd_seq coretemp 
crc32c_intel usbserial snd_seq_device snd_timer ghash_clmulni_intel snd 
acpi_cpufreq mperf iTCO_wdt aesni_intel aes_x86_64 
soundcore i2c_i801 pcspkr iTCO_vendor_support aes_generic cryptd evdev 
processor xfs nouveau power_supply i2c_algo_bit 
drm_kms_helper ttm drm i2c_core usbhid hid sg sr_mod sd_mod crc_t10dif cdrom 
mxm_wmi firewire_ohci firewire_core crc_itu_t 
ahci libahci libata xhci_hcd ehci_hcd scsi_mod wmi tg3 libphy usbcore 
usb_common button video thermal_sys [last unloaded: 
scsi_wait_scan]
[7.236908]
[7.236943] Pid: 482, comm: modprobe Not tainted 3.2.0-4-amd64 #1 Debian 
3.2.30-1 To Be Filled By O.E.M. To Be Filled 
By O.E.M./Z77 Extreme6
[7.237066] RIP: 0010:[a03a28a2]  [a03a28a2] 
i915_gem_init_ppgtt+0x93/0x16c [i915]
[7.237162] RSP: 0018:8802136cfc38  EFLAGS: 00010206
[7.237203] RAX: 001ff800 RBX: 880211cca000 RCX: 001ff800
[7.237248] RDX: 880215741fc0 RSI:  RDI: 15434021
[7.237293] RBP:  R08: 6db6db6db6db6db7 R09: 1600
[7.237337] R10: 0246 R11: 0246 R12: 880215887000
[7.237382] R13:  R14: 1000 R15: 880211cca000
[7.237427] FS:  () GS:88021f30(0063) 
knlGS:f75d0b40
[7.237485] CS:  0010 DS: 002b ES: 002b CR0: 80050033
[7.237527] CR2: 001ff800 CR3: 000215625000 CR4: 001406e0
[7.237572] DR0:  DR1:  DR2: 
[7.237616] DR3:  DR6: 0ff0 DR7: 0400
[7.237661] Process modprobe (pid: 482, threadinfo 8802136ce000, task 
8802135daea0)
[7.237719] Stack:
[7.237754]  880215887000  880211cca000 

[7.237884]  1000 a03a29f3 880211cca000 
880215887000
[7.238015]  880211cca000   
a0394352
[7.238146] Call Trace:
[7.238197]  [a03a29f3] ? i915_gem_init_hw+0x78/0x9e [i915]
[7.238255]  [a0394352] ? i915_driver_load+0x9b7/0xe25 [i915]
[7.238306]  [a01315e9] ? drm_get_minor+0x21f/0x27c [drm]
[7.238355]  [a01330fd] ? drm_get_pci_dev+0x146/0x248 [drm]
[7.238401]  [810708a9] ? arch_local_irq_save+0x11/0x17
[7.238447]  [811c5353] ? local_pci_probe+0x39/0x68
[7.238491]  [811c5dfc] ? pci_device_probe+0xcd/0xfa
[7.238537]  [8124f991] ? driver_probe_device+0xa8/0x138
[7.238580]  [8124fa70] ? __driver_attach+0x4f/0x6f
[7.238624]  [8124fa21] ? driver_probe_device+0x138/0x138
[7.238669]  [8124e5c3] ? bus_for_each_dev+0x4a/0x75
[7.238713]  [8124f328] ? bus_add_driver+0xa5/0x1f5
[7.238756]  [a03ec000] ? 0xa03ebfff
[7.238799]  [8124fe98] ? driver_register+0x8d/0xf5
[7.238842]  [a03ec000] ? 0xa03ebfff
[7.238886]  [811c6617] ? __pci_register_driver+0x4d/0xb6
[7.238930]  [a03ec000] ? 0xa03ebfff
[7.238972]  [81002085] ? do_one_initcall+0x75/0x12c
[7.239016]  [a03ec000] ? 0xa03ebfff
[7.239059]  [81075040] ? sys_init_module+0x10c/0x25b
[7.239105]  [81352f70] ? sysenter_dispatch+0x7/0x2e
[7.239147] Code: 08 48

Bug#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2012-09-30 Thread Carsten Grohmann
Hi,

Am Freitag, 28. September 2012 schrieb Jonathan Nieder:
 If you have a 64-bit CPU, one possibility is
 
   sha1sum linux-image-3.2.0-4-amd64_3.2.30-1_amd64.deb
   dpkg --force-architecture --install
 linux-image-3.2.0-4-amd64_3.2.20-1_amd64.deb
 
 The magic of multi-arch (well, sort of). :)
Thanks Jonathan, it helped. I installed and bootet the kernel today.


During the boot process the singnal to my DVI connected monitor disappears. 
I've created a video of the boot process. The last lines are:

input: PC Speaker as /devices/platform/pcspkr/input/input4
iTCO_vendor_support: vendor-support=0
iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)

Unfortunately I could not provide anymore output. 

With the disabled KMS (i915.modeset=0) the boot was successful. 
Once I disabled KMS at boottime (i915.modeset=0). This boot process has been 
completed. Audio and network is working. The dmesg output is attached.

Regards,
Carsten


dmesg_20120930-nokms.log.bz2
Description: application/bzip


Bug#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2012-09-27 Thread Carsten Grohmann
Hi Julien,

Am Donnerstag, 20. September 2012 schrieb Julien Cristau:
 Test package at
 http://people.debian.org/~jcristau/linux-image-3.2.0-4-amd64_3.2.30-1_amd64
 .deb (the version number is wrong, and the ABI is most likely incompatible
 with the official 3.2.29-1 package, but I forgot to change those :/).
 sha1sum is 9e68d152e88464b57518bf3514b7bddb6ed0365b.

I'd like to test the new package. I've installed a 32-bit system currently. 

# uname -a
Linux max 3.5-trunk-686-pae #1 SMP Thu Aug 2 17:56:18 UTC 2012 i686 GNU/Linux

Could you provide proper package, please?

Regards,
Carsten


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



Bug#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2012-09-26 Thread Carsten Grohmann
Am Sonntag, 16. September 2012 schrieben Sie:
  The current Debian kernel 3.2.0 doesn't support the new Intel processors
  with built-in GPU.
 
 Sure it does.  Certainly the driver has an entry for your GPU's device
 ID:
 
   INTEL_VGA_DEVICE(0x0162, intel_ivybridge_d_info), /* GT2 desktop */
 
 Now, there may be *bugs*, but that's another matter.
 
  The kernel 3.2.0 has booted the system successfully after the processor
  has been replaced by a new Intel Ivy Bridge i5-3570K. Unfortunately
  neither X nor audio were working. An update to kernel 3.5 from
  experimental tree solved all issues.
 
 But audio has nothing to do with the processor... unless you are talking
 about audio over HDMI?
I'm sorry my bug report was a little bit incorrect. The mainboard uses the 
Intel chipset for audio too and the sound driver is part of the kernel.
I just use analog audio and not audio over HDMI. I tried audio over HDMI, but 
it doesn't work and I didn't spent time to fix it because the analog audio 
works fine.
 
 We are *considering* updating some or all of the graphics drivers to the
 versions found in Linux 3.4, which might fix this.  I don't know if
 packages are available for test yet.

Great, I'll test the package soon.

Regards,
Carsten


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



Bug#687442: linux-image-3.2.0-3-686-pae: Add Intel Ivy Bridge support

2012-09-12 Thread Carsten Grohmann
Package: src:linux
Version: 3.2.23-1
Severity: normal

Dear Maintainer,

please add support for Intel Ivy Bridge processors to the Debian
standard kernel.

The current Debian kernel 3.2.0 doesn't support the new Intel processors 
with built-in GPU.
The kernel 3.2.0 has booted the system successfully after the processor has 
been replaced by a new 
Intel Ivy Bridge i5-3570K. Unfortunately neither X nor audio were working. An 
update to kernel 3.5 
from experimental tree solved all issues.

Regards,
Carsten


-- Package-specific info:
** Model information
# cpuid 
 eax ineax  ebx  ecx  edx
 000d 756e6547 6c65746e 49656e69
0001 000306a9 04100800 7f9ae3bf bfebfbff
0002 76035a01 00f0b0ff  00ca
0003    
0004    
0005 0040 0040 0003 1120
0006 0077 0002 0009 
0007    
0008    
0009    
000a 07300803   0603
000b   0048 0004
000c    
000d    
8000 8008   
8001   0001 2810
8002 20202020 49202020 6c65746e 20295228
8003 65726f43 294d5428 2d356920 30373533
8004 5043204b 20402055 30342e33 007a4847
8005    
8006   01006040 
8007    0100
8008 3024   

Vendor ID: GenuineIntel; CPUID level 13

Intel-specific functions:
Version 000306a9:
Type 0 - Original OEM
Family 6 - Pentium Pro
Model 10 - 
Stepping 9
Reserved 12

Extended brand string:Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz
CLFLUSH instruction cache line size: 8
Initial APIC ID: 4
Hyper threading siblings: 16
[...]

** PCI devices:
00:00.0 Host bridge [0600]: Intel Corporation Xeon E3-1200 v2/3rd Gen Core 
processor DRAM Controller 
[8086:0150] (rev 09)
Subsystem: ASRock Incorporation Device [1849:0150]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- 
DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort+ SERR- PERR+ 
INTx-
Latency: 0
Capabilities: access denied
Kernel driver in use: agpgart-intel

00:02.0 VGA compatible controller [0300]: Intel Corporation Xeon E3-1200 v2/3rd 
Gen Core processor 
Graphics Controller [8086:0162] (rev 09) (prog-if 00 [VGA controller])
Subsystem: ASRock Incorporation Device [1849:0162]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- 
DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast TAbort- TAbort- 
MAbort- SERR- PERR- 
INTx-
Latency: 0
Interrupt: pin A routed to IRQ 53
Region 0: Memory at f740 (64-bit, non-prefetchable) [size=4M]
Region 2: Memory at e000 (64-bit, prefetchable) [size=256M]
Region 4: I/O ports at f000 [size=64]
Expansion ROM at unassigned [disabled]
Capabilities: access denied
Kernel driver in use: i915

00:14.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series Chipset 
Family USB xHCI Host 
Controller [8086:1e31] (rev 04) (prog-if 30 [XHCI])
Subsystem: ASRock Incorporation Device [1849:1e31]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- 
DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- 
INTx-
Latency: 0
Interrupt: pin A routed to IRQ 51
Region 0: Memory at f7c0 (64-bit, non-prefetchable) [size=64K]
Capabilities: access denied
Kernel driver in use: xhci_hcd

00:1a.0 USB controller [0c03]: Intel Corporation 7 Series/C210 Series Chipset 
Family USB Enhanced 
Host Controller #2 [8086:1e2d] (rev 04) (prog-if 20 [EHCI])
Subsystem: ASRock Incorporation Device [1849:1e2d]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- 
DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- 
INTx-
Latency: 0
Interrupt: pin A routed to IRQ 16
Region 0: Memory at f7c18000 (32-bit, non-prefetchable) [size=1K]
Capabilities: access denied
Kernel driver in use: ehci_hcd

00:1b.0 Audio device [0403]: Intel Corporation 7 Series/C210 Series Chipset 
Family High Definition 
Audio Controller [8086:1e20] (rev 04)
Subsystem: ASRock Incorporation Device [1849:1898]
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- 
DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast TAbort- TAbort- 

Bug#533031: mplayer-skin-blue: gmplayer fails to start due to bad PNG format

2012-03-15 Thread Carsten Grohmann
Package: mplayer-skin-blue
Version: 1.6-2
Followup-For: Bug #533031

Dear Maintainer,

I can't use gmplayer because loading of the default skin is failing.
Converting the png files like described in message #10 doesn't work.

The error message is:

$ gmplayer 
MPlayer svn r34540 (Debian), built with gcc-4.6 (C) 2000-2012 MPlayer
Team
Can't open joystick device /dev/input/js0: No such file or directory
Can't init input joystick
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote
control.
Error in skin config file on line 11: PNG read error in
/usr/share/mplayer/skins/default/main
Config file processing error with skin 'default'

Exiting... (Fatal error)

And after converting png files:
$ gmplayer 
MPlayer svn r34540 (Debian), built with gcc-4.6 (C) 2000-2012 MPlayer
Team
Can't open joystick device /dev/input/js0: No such file or directory
Can't init input joystick
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support. You will not be able to use your remote
control.
Error in skin config file on line 24: PNG read error in
/usr/share/mplayer/skins/default/subload
Config file processing error with skin 'default'

Exiting... (Fatal error)

Please fix this issue.

Regards,
Carsten

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

Kernel: Linux 3.1.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

mplayer-skin-blue depends on no packages.

Versions of packages mplayer-skin-blue recommends:
ii  mplayer 3:1.0~rc4+svn20120216-0.0
ii  mplayer2 [mplayer]  1:2.0~git20120128-0.0

mplayer-skin-blue suggests no packages.

-- no debconf information


Bug#638029: hugin: Reproduced - different backtrace

2012-02-05 Thread Carsten Grohmann
Package: hugin
Version: 2011.4.0+dfsg-1
Followup-For: Bug #638029

Dear Maintainer,
I add this comment because I've a different bt for same action (second
step in assistent).
LIBGL_ALWAYS_SOFTWARE=1 hugin works for me and glxgears runs fine too.

The backtrace is:
Program received signal SIGSEGV, Segmentation fault.
0x in ?? ()
(gdb) bt
#0  0x in ?? ()
#1  0x081d4e5d in TextureManager::TextureInfo::BindImageTexture() ()
#2  0x081d4f53 in TextureManager::TextureInfo::SetParameters() ()
#3  0x081d5384 in TextureManager::TextureInfo::TextureInfo(ViewState*, 
unsigned int, unsigned int) ()
#4  0x081d97e4 in TextureManager::CheckUpdate() ()
#5  0x081e66a9 in VisualizationState::DoUpdates() ()
#6  0x08190281 in GLViewer::Redraw() ()
#7  0x081904be in GLViewer::RedrawE(wxPaintEvent) ()
#8  0xb728e928 in wxAppConsole::HandleEvent(wxEvtHandler*, void 
(wxEvtHandler::*)(wxEvent), wxEvent) const ()
   from /usr/lib/i386-linux-gnu/libwx_baseu-2.8.so.0
#9  0xb731e13a in wxEvtHandler::ProcessEventIfMatches(wxEventTableEntryBase 
const, wxEvtHandler*, wxEvent) ()
   from /usr/lib/i386-linux-gnu/libwx_baseu-2.8.so.0
#10 0xb731e2bb in wxEventHashTable::HandleEvent(wxEvent, wxEvtHandler*) ()
   from /usr/lib/i386-linux-gnu/libwx_baseu-2.8.so.0
#11 0xb731e671 in wxEvtHandler::ProcessEvent(wxEvent) () from /usr/lib/i386-
linux-gnu/libwx_baseu-2.8.so.0
#12 0xb6ca964b in ?? () from /usr/lib/i386-linux-gnu/libwx_gtk2u_gl-2.8.so.0
#13 0xb5dbb8ec in g_cclosure_marshal_VOID__VOID () from /usr/lib/i386-linux-
gnu/libgobject-2.0.so.0
#14 0xb5dba3dc in g_closure_invoke () from /usr/lib/i386-linux-
gnu/libgobject-2.0.so.0
#15 0xb5dcd180 in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0 #16 
0xb5dd5f17 in g_signal_emit_valist () from
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0 #17 0xb5dd6083 in g_signal_emit () 
from
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0 #18 0xb6409f7a in gtk_widget_map 
() from
/usr/lib/i386-linux-gnu/libgtk-x11-2.0.so.0 #19 0xb61fc93d in ?? () from 
/usr/lib/i386-linux-gnu/libgtk-x11-2.0.so.0
#20 0xb633645b in ?? () from /usr/lib/i386-linux-gnu/libgtk-x11-2.0.so.0 #21 
0xb623aef7 in gtk_container_forall () from
/usr/lib/i386-linux-gnu/libgtk-x11-2.0.so.0 #22 0xb623b064 in ?? () from 
/usr/lib/i386-linux-gnu/libgtk-x11-2.0.so.0
#23 0xb5dbb8ec in g_cclosure_marshal_VOID__VOID () from /usr/lib/i386-linux-
gnu/libgobject-2.0.so.0
#24 0xb5db8e2d in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0 #25 
0xb5dba306 in g_closure_invoke () from
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0 #26 0xb5dcc947 in ?? () from 
/usr/lib/i386-linux-gnu/libgobject-2.0.so.0
#27 0xb5dd5f17 in g_signal_emit_valist () from /usr/lib/i386-linux-
gnu/libgobject-2.0.so.0
#28 0xb5dd6083 in g_signal_emit () from /usr/lib/i386-linux-
gnu/libgobject-2.0.so.0
#29 0xb6409f7a in gtk_widget_map () from /usr/lib/i386-linux-gnu/libgtk-
x11-2.0.so.0
#30 0xb7044c4b in ?? () from /usr/lib/i386-linux-gnu/libwx_gtk2u_core-2.8.so.0
#31 0xb5dbb8ec in g_cclosure_marshal_VOID__VOID () from /usr/lib/i386-linux-
gnu/libgobject-2.0.so.0
#32 0xb5db8e2d in ?? () from /usr/lib/i386-linux-gnu/libgobject-2.0.so.0 

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

Kernel: Linux 3.1.0-1-686-pae (SMP w/1 CPU core)
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages hugin depends on:
ii  enblend   4.0+dfsg-4+b1
ii  enfuse4.0+dfsg-4+b1
ii  hugin-tools   2011.4.0+dfsg-1
ii  libboost-signals1.46.11.46.1-8
ii  libboost-system1.46.1 1.46.1-8
ii  libboost-thread1.46.1 1.46.1-8
ii  libc6 2.13-24
ii  libexiv2-90.20-2.1
ii  libgcc1   1:4.6.1-4
ii  libgl1-mesa-glx [libgl1]  7.11.2-1
ii  libglew1.61.6.0-4
ii  libglu1-mesa [libglu1]7.11.2-1
ii  libimage-exiftool-perl8.60-2
ii  libpano13-2   2.9.18+dfsg-3
ii  libstdc++64.6.1-4
ii  libtiff4  3.9.5-2
ii  libwxbase2.8-02.8.12.1-7
ii  libwxgtk2.8-0 2.8.12.1-7
ii  make  3.81-8.1

hugin recommends no packages.

hugin 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#563575: Probably fixed

2010-02-02 Thread Carsten Grohmann
Hi,

it seems that the issue has been fixed automatically within one of the last 
updates.

Versions of packages kmail depends on:
ii  kdebase-runtime   4:4.3.2-1  runtime components from the 
offici
ii  kdelibs5  4:4.3.4-1  core libraries for all KDE 4 
appli
ii  kdepimlibs5   4:4.3.4-1  core libraries for KDE PIM 4 
appli
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libgcc1   1:4.4.2-9  GCC support library
ii  libkdepim44:4.3.1-2  KDE PIM library
ii  libkleo4  4:4.3.1-2  certificate based crypto library 
f
ii  libkontactinterfaces4 4:4.3.1-2  KDE Kontact interface library
ii  libkpgp4  4:4.3.1-2  gpg based crypto library for KDE
ii  libksieve44:4.3.1-2  KDE mail/news message filtering 
li
ii  libmimelib4   4:4.3.1-2  KDE mime library
ii  libphonon44:4.5.3-4  Qt 4 Phonon module
ii  libqt4-dbus   4:4.5.3-4  Qt 4 D-Bus module
ii  libqt4-network4:4.5.3-4  Qt 4 network module
ii  libqt4-qt3support 4:4.5.3-4  Qt 3 compatibility library for Qt
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-9The GNU Standard C++ Library v3
ii  perl  5.10.1-8   Larry Wall's Practical Extraction
ii  phonon4:4.5.3-4  Qt 4 Phonon module metapackage

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

Versions of packages kmail suggests:
pn  clamav | f-prot-installer none (no description available)
ii  gnupg 1.4.10-2   GNU privacy guard - a free PGP 
rep
ii  gnupg-agent   2.0.14-1   GNU privacy guard - password agent
ii  kaddressbook  4:4.3.1-2  KDE address book
pn  kleopatra none (no description available)
ii  pinentry-qt [pinentry-x11]0.7.6-1+b1 Qt-3-based PIN or pass-phrase 
entr
ii  spamassassin  3.2.5-7Perl-based spam filter using text

Regards,
Carsten



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



Bug#563575: kmail: segfault on deleting attachments

2010-01-03 Thread Carsten Grohmann
Package: kmail
Version: 4:4.3.1-2
Severity: normal

I tried to remove all four attachments of a mail get with POP3. kmail
crashed and the backtrace is attached:

Application: KMail (kmail), signal: Segmentation fault
[KCrash Handler]
#6  0xb76b0c99 in KMTrashMsgCommand::KMTrashMsgCommand(unsigned int) ()
from /usr/lib/libkmailprivate.so.4
#7  0xb76b0f30 in
AttachmentModifyCommand::messageStoreResult(KMFolderImap*, bool) () from
/usr/lib/libkmailprivate.so.4
#8  0xb76b1201 in
AttachmentModifyCommand::storeChangedMessage(KMMessage*) () from
/usr/lib/libkmailprivate.so.4
#9  0xb76b1a83 in KMDeleteAttachmentCommand::doAttachmentModify() ()
from /usr/lib/libkmailprivate.so.4
#10 0xb76b2442 in AttachmentModifyCommand::execute() () from
/usr/lib/libkmailprivate.so.4
#11 0xb7692162 in KMCommand::slotPostTransfer(KMCommand::Result) () from
/usr/lib/libkmailprivate.so.4
#12 0xb769c32c in KMCommand::qt_metacall(QMetaObject::Call, int, void**)
() from /usr/lib/libkmailprivate.so.4
#13 0xb76b1ada in
AttachmentModifyCommand::qt_metacall(QMetaObject::Call, int, void**) ()
from /usr/lib/libkmailprivate.so.4
#14 0xb76b1c02 in
KMDeleteAttachmentCommand::qt_metacall(QMetaObject::Call, int, void**)
() from /usr/lib/libkmailprivate.so.4
#15 0xb714a303 in QMetaObject::activate (sender=0x9824208,
from_signal_index=4, to_signal_index=4, argv=0xbfe37e0c) at
kernel/qobject.cpp:3112
#16 0xb714af42 in QMetaObject::activate (sender=0x9824208, m=0xb7abe634,
local_signal_index=0, argv=0xbfe37e0c) at kernel/qobject.cpp:3186
#17 0xb768e193 in KMCommand::messagesTransfered(KMCommand::Result) ()
from /usr/lib/libkmailprivate.so.4
#18 0xb76ab794 in KMCommand::transferSelectedMsgs() () from
/usr/lib/libkmailprivate.so.4
#19 0xb76ab9e3 in KMCommand::slotStart() () from
/usr/lib/libkmailprivate.so.4
#20 0xb769c33b in KMCommand::qt_metacall(QMetaObject::Call, int, void**)
() from /usr/lib/libkmailprivate.so.4
#21 0xb76b1ada in
AttachmentModifyCommand::qt_metacall(QMetaObject::Call, int, void**) ()
from /usr/lib/libkmailprivate.so.4
#22 0xb76b1c02 in
KMDeleteAttachmentCommand::qt_metacall(QMetaObject::Call, int, void**)
() from /usr/lib/libkmailprivate.so.4
#23 0xb714a303 in QMetaObject::activate (sender=0x9480410,
from_signal_index=4, to_signal_index=4, argv=0x0) at
kernel/qobject.cpp:3112
#24 0xb714af42 in QMetaObject::activate (sender=0x9480410, m=0xb7225d88,
local_signal_index=0, argv=0x0) at kernel/qobject.cpp:3186
#25 0xb7150007 in QSingleShotTimer::timeout (this=0x9480410) at
..moc/release-shared/qtimer.moc:76
#26 0xb715012c in QSingleShotTimer::timerEvent (this=0x9480410) at
kernel/qtimer.cpp:298
#27 0xb714539f in QObject::event (this=0x9480410, e=0xbfe3848c) at
kernel/qobject.cpp:1074
#28 0xb6774a94 in QApplicationPrivate::notify_helper (this=0x88535f8,
receiver=0x9480410, e=0xbfe3848c) at kernel/qapplication.cpp:4065
#29 0xb677cbee in QApplication::notify (this=0xbfe387a8,
receiver=0x9480410, e=0xbfe3848c) at kernel/qapplication.cpp:3605
#30 0xb7ed90fd in KApplication::notify (this=0xbfe387a8,
receiver=0x9480410, event=0xbfe3848c) at
.../../kdeui/kernel/kapplication.cpp:302
#31 0xb71351eb in QCoreApplication::notifyInternal (this=0xbfe387a8,
receiver=0x9480410, event=0xbfe3848c) at kernel/qcoreapplication.cpp:610
#32 0xb7163e21 in QCoreApplication::sendEvent (this=0x8855fb4) at
.../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:213
#33 QTimerInfoList::activateTimers (this=0x8855fb4) at
kernel/qeventdispatcher_unix.cpp:580
#34 0xb7160317 in timerSourceDispatch (source=0x8856400) at
kernel/qeventdispatcher_glib.cpp:184
#35 idleTimerSourceDispatch (source=0x8856400) at
kernel/qeventdispatcher_glib.cpp:231
#36 0xb4887f28 in g_main_context_dispatch () from /lib/libglib-2.0.so.0
#37 0xb488b6b3 in ?? () from /lib/libglib-2.0.so.0
#38 0xb488b838 in g_main_context_iteration () from /lib/libglib-2.0.so.0
#39 0xb7160041 in QEventDispatcherGlib::processEvents (this=0x882c8d0,
flags=...) at kernel/qeventdispatcher_glib.cpp:407
#40 0xb6814305 in QGuiEventDispatcherGlib::processEvents
(this=0x882c8d0, flags=...) at kernel/qguieventdispatcher_glib.cpp:202
#41 0xb713383a in QEventLoop::processEvents (this=0xbfe386b0, flags=...)
at kernel/qeventloop.cpp:149
#42 0xb7133c82 in QEventLoop::exec (this=0xbfe386b0, flags=...) at
kernel/qeventloop.cpp:201
#43 0xb71360d9 in QCoreApplication::exec () at
kernel/qcoreapplication.cpp:888
#44 0xb6774917 in QApplication::exec () at kernel/qapplication.cpp:3525
#45 0x0804a6d0 in _start ()

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

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

Versions of packages kmail depends on:
ii  kdebase-runtime   4:4.3.2-1  runtime components from the offici
ii  kdelibs5  4:4.3.2-2  core libraries for all KDE 4 appli
ii  kdepimlibs5   4:4.3.2-1  

Bug#545529: dpkg: Version numbers won't be displayed correctly

2009-09-08 Thread Carsten Grohmann
Am Montag, 7. September 2009 schrieb Raphael Hertzog:
 On Mon, 07 Sep 2009, Carsten Grohmann wrote:
  New version number isn't formatted properly. Especially the colon (:,
  hex 3a) won't be displayed correctly. It's properly an i18n/l10n problem
  because I use German language setting.

 What led you to believe that it's not displayed correctly? I don't see
 anything wrong in what you quoted. Furthermore : is the separator for
 epochs and epochs are often not displayed, it's done on purpose.

Sorry copy and paste of the example has failed. The example should shown that 
the second colon isn't show as : is't show as %3a. It's ugly (only).

New example:
Vorbereiten zum Ersetzen von libavutil49 4:0.5+svn20090609-2 (durch 
.../libavutil49_4%3a0.5+svn20090706-2_i386.deb) ... 
Entpacke Ersatz für libavutil49 ...

Vorbereiten zum Ersetzen von cdrdao 1:1.2.2-17 (durch 
.../cdrdao_1%3a1.2.2-18_i386.deb) ...   

Entpacke Ersatz für cdrdao ...  

Regards,
Carsten



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



Bug#545529: dpkg: Version numbers won't be displayed correctly

2009-09-07 Thread Carsten Grohmann
Subject: dpkg: Version numbers won't be displayed correctly 

Package: dpkg   

Version: 1.15.3.1   

Severity: minor 


*** Please type your report below this line ***
New version number isn't formatted properly. Especially the colon (:,
hex 3a) won't be displayed correctly. It's properly an i18n/l10n problem
because I use German language setting.  

Example:
Vorbereiten zum Ersetzen von libcdparanoia0 3.10.2+debian-7 (durch 
.../libcdparanoia0_3.10.2+debian-8_i386.deb) ...
   
Entpacke Ersatz für libcdparanoia0 ...  
 
Vorbereiten zum Ersetzen von cdparanoia 3.10.2+debian-7 (durch 
.../cdparanoia_3.10.2+debian-8_i386.deb) ...
   
Entpacke Ersatz für cdparanoia ...  
 

Please fix it.

Regards,
Carsten 


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

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

Versions of packages dpkg depends on:
ii  coreutils 7.4-2  The GNU core utilities
ii  libc6 2.9-25 GNU C Library: Shared libraries
ii  lzma  4.43-14Compression method of 7z format 
in

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt   0.7.22.2   Advanced front-end for dpkg

-- 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#532809: kamera: Unknown error is shown

2009-06-11 Thread Carsten Grohmann
Subject: kamera: Unknown error is shown
Package: kamera
Version: 4:4.2.2-2
Severity: normal

*** Please type your report below this line ***
During downloading images and movies from a standard USB PTP Class Camera
a dialog is display with Unbekannter Fehler Unspezifizierter Fehler
(english: Unknown Error Unspecified Error).

Downloading all stuff using the gphoto2 cli works fine without error
message.

A screenshot and the kio_kamera debug log is attached.

Please fix this bug!

Regards,
Carsten

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

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

Versions of packages kamera depends on:
ii  kdebase-runtime   4:4.2.2-1  runtime components from the 
offici
ii  kdelibs5  4:4.2.2-2  core libraries for all KDE 4 
appli
ii  libc6 2.9-12 GNU C Library: Shared libraries
ii  libgphoto2-2  2.4.6-1gphoto2 digital camera library
ii  libgphoto2-port0  2.4.6-1gphoto2 digital camera port 
librar
ii  libqt4-qt3support 4.5.1-2Qt 3 compatibility library for Qt 
ii  libqtcore44.5.1-2Qt 4 core module
ii  libqtgui4 4.5.1-2Qt 4 GUI module
ii  libstdc++64.4.0-5The GNU Standard C++ Library v3

kamera recommends no packages.

kamera suggests no packages.

-- no debconf information

attachment: kamera_errordlg.png

kamera.log.gz
Description: GNU Zip compressed data


Bug#514886: openoffice.org-calc: Segmentation fault in ResMgr::GetUInt64()

2009-02-16 Thread Carsten Grohmann
Hi,

Am Montag, 16. Februar 2009 schrieb Rene Engelhard:
  Today I've reinstalled the Open Office packages and it runs! I'm totally
  confused because I already did the  operations.

 Hrm, OK.
I'm really sorry.

  It run's fine now. Thank your for the support.

 Would you mind me closing this bug then?
Please close the bug.

Regards,
Carsten



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



Bug#514886: openoffice.org-calc: Segmentation fault in ResMgr::GetUInt64()

2009-02-15 Thread Carsten Grohmann
Hi Rene,

Am Freitag, 13. Februar 2009 schrieb Rene Engelhard:
  OK, no this also affect wrkter, so your OOo generally is broken.
 
  As well as on your last document, opening that works. (on powerpc,
  though)
 
  Will try now in a i386 chroot, but...

 Works for me in a i386 chroot too. The stw and the ods you posted
 previously...

Yesterday I've deinstalled and purged all openoffice packages a second time.  
I did a search using aptitude (aptitude search openoffice.org) and 
deinstalled all Open Office packages (aptitude pruge pkg1 pkg2 ...).

Today I've reinstalled the Open Office packages and it runs! I'm totally 
confused because I already did the  operations.

It run's fine now. Thank your for the support.

Regards,
Carsten



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



Bug#514886: openoffice.org-calc: Segmentation fault in ResMgr::GetUInt64()

2009-02-13 Thread Carsten Grohmann
Hi Rene,

Am Donnerstag, 12. Februar 2009 schrieb Rene Engelhard:
 And for lenny r0, the time is out now anyway, maybe we could get a fix into
 lenny r1 when we know the cause, have a minimal fix and get that
 approved... And of course the only if the issue is critical (which it
 currently sounds, though...)

Yesterday I've removed all debian packages of OO2 and installed the OO3 
packages direct from openoffice.org. After the tests I removed the OO3 
packages and installed the Debian OO2 packages using aptitude. 
It's a fresh installation now.

Today I want to open 
http://people.debian.org/~rene/bizcards/debian-swirl-card-ooo.stw (md5sum 
e82a99b8bb9ebccf485cee72950f9eab) and OO crashes again:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb4fe76c0 (LWP 3963)]
0xb7668f1d in ResMgr::GetUInt64 () 
from /usr/lib/openoffice/program/libtl680li.so
(gdb) bt full
#0  0xb7668f1d in ResMgr::GetUInt64 ()
   from /usr/lib/openoffice/program/libtl680li.so
No locals.

It annoying! OO crashes all times opening documents e.g. during 
reading /etc/passwd.

Regards,
Carsten



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



Bug#514886: openoffice.org-calc: Segmentation fault in ResMgr::GetUInt64()

2009-02-12 Thread Carsten Grohmann
Hi,

Am Donnerstag, 12. Februar 2009 schrieben Sie:
 Hi,

 Carsten Grohmann wrote:
  OpenOffice crashes opening different spreadsheets. All sheets have been

 But on specific ones, right? Not on all?

I've tested 8 files. All causes an core dump. All files are valid zip files. 
unzip -t don't show errors.

  created using older versions of OO.

 Can we get those - and are we allowed to give that to upstream too?
Hm, one ok? You can give that file to upstream too. You can get two files more 
beside official bug reports.

 Can you try whether 3.0.1 works, too?
I try it soon.

  Program received signal SIGSEGV, Segmentation fault.
  [Switching to Thread 0xb4fb16c0 (LWP 5214)]
  0xb7632f1d in ResMgr::GetUInt64 () from
  /usr/lib/openoffice/program/libtl680li.so
  (gdb) bt full
  #0  0xb7632f1d in ResMgr::GetUInt64 ()
 from /usr/lib/openoffice/program/libtl680li.so
  No symbol table info available.
  #1  0xb763589b in ?? () from /usr/lib/openoffice/program/libtl680li.so
  No symbol table info available.
  #2  0xb76370a9 in ?? () from /usr/lib/openoffice/program/libtl680li.so
  No symbol table info available.

 Was -dbg installed? if not, can you do that?
Yes, it's installed. Unfortunately I can't read yesterdays core dump. But it's 
reproducable:

[New Thread 0xb1d8bb90 (LWP 3628)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb50576c0 (LWP 3615)]
0xb76d8f1d in ResMgr::GetUInt64 () from 
/usr/lib/openoffice/program/libtl680li.so
(gdb) bt full
#0  0xb76d8f1d in ResMgr::GetUInt64 ()
   from /usr/lib/openoffice/program/libtl680li.so
No locals.
#1  0xb76db89b in InternalResMgr::Create ()
   from /usr/lib/openoffice/program/libtl680li.so
No locals.
#2  0xb76dd0a9 in ResMgrContainer::getResMgr ()
   from /usr/lib/openoffice/program/libtl680li.so
No locals.
#3  0xb76de17b in ResMgr::CreateResMgr ()
   from /usr/lib/openoffice/program/libtl680li.so
No locals.
#4  0xaf8b8f26 in DialogsResMgr::GetResMgr ()
   from /usr/lib/openoffice/program/libsvx680li.so
No locals.
#5  0xaf70ad9f in SvxErrorHandler ()
   from /usr/lib/openoffice/program/libsvx680li.so
No locals.
#6  0xaf70ae24 in SvxErrorHandler::Get ()
   from /usr/lib/openoffice/program/libsvx680li.so
No locals.
#7  0xaff826e2 in ScModule () from /usr/lib/openoffice/program/libsc680li.so
No locals.
#8  0xaff83b7a in ScDLL::Init () from /usr/lib/openoffice/program/libsc680li.so
(gdb) info f
Stack level 0, frame at 0xbfba5060:
 eip = 0xb76d8f1d in ResMgr::GetUInt64(void*); saved eip 0xb76db89b
 called by frame at 0xbfba50d0
 source language c++.
 Arglist at 0xbfba5058, args:
 Locals at 0xbfba5058, Previous frame's sp is 0xbfba5060
 Saved registers:
  ebp at 0xbfba5058, esi at 0xbfba5050, edi at 0xbfba5054, eip at 0xbfba505c

What more information do you need?

Ciao
Carsten




AusruestungslisteAltai.ods
Description: application/vnd.oasis.opendocument.spreadsheet


Bug#514886: openoffice.org-calc: Segmentation fault in ResMgr::GetUInt64()

2009-02-12 Thread Carsten Grohmann
Am Donnerstag, 12. Februar 2009 schrieb Rene Engelhard:
 Can you try whether 3.0.1 works, too?
3.0.1 works fine

Regards,
Carsten



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



Bug#514886: openoffice.org-calc: Segmentation fault in ResMgr::GetUInt64()

2009-02-11 Thread Carsten Grohmann
Package: openoffice.org-calc
Version: 1:2.4.1-17+b1
Severity: important

OpenOffice crashes opening different spreadsheets. All sheets have been
created using older versions of OO.

Crash details collected using gdb:
==
carsten   5214 1 16 18:08 pts/800:00:00 
/usr/lib/openoffice/program/soffic
carsten   5222  5133  0 18:08 pts/800:00:00 ps -ef
cars...@max:~$ gdb -p 5214
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show
copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
Attaching to process 5214
Reading symbols from /usr/lib/openoffice/program/soffice.bin...(no debugging 
symbols found)...done.

[...]

[New Thread 0xb1ce5b90 (LWP 5227)]

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb4fb16c0 (LWP 5214)]
0xb7632f1d in ResMgr::GetUInt64 () from
/usr/lib/openoffice/program/libtl680li.so
(gdb) bt full
#0  0xb7632f1d in ResMgr::GetUInt64 ()
   from /usr/lib/openoffice/program/libtl680li.so
No symbol table info available.
#1  0xb763589b in ?? () from /usr/lib/openoffice/program/libtl680li.so
No symbol table info available.
#2  0xb76370a9 in ?? () from /usr/lib/openoffice/program/libtl680li.so
No symbol table info available.
#3  0xb763817b in ResMgr::CreateResMgr ()
   from /usr/lib/openoffice/program/libtl680li.so
No symbol table info available.
#4  0xaf812f26 in DialogsResMgr::GetResMgr ()
   from /usr/lib/openoffice/program/libsvx680li.so
No symbol table info available.
#5  0xaf664d9f in SvxErrorHandler::SvxErrorHandler ()
   from /usr/lib/openoffice/program/libsvx680li.so
No symbol table info available.
#6  0xaf664e24 in SvxErrorHandler::Get ()
   from /usr/lib/openoffice/program/libsvx680li.so
No symbol table info available.
#7  0xafedc6e2 in ?? () from /usr/lib/openoffice/program/libsc680li.so
No symbol table info available.
#8  0xafeddb7a in ?? () from /usr/lib/openoffice/program/libsc680li.so
No symbol table info available.
#9  0x085f86f8 in ?? ()

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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages openoffice.org-calc depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libstlport4.6ldbl  4.6.2-3.2 STLport C++ class library
ii  libsuitesparse-3.1.0   3.1.0-3   collection of libraries for comput
ii  lp-solve   5.5.0.10-10   Solve (mixed integer) linear progr
ii  openoffice.org-base-core   1:2.4.1-17+b1 OpenOffice.org office suite -- lib
ii  openoffice.org-core1:2.4.1-17+b1 OpenOffice.org office suite archit

openoffice.org-calc recommends no packages.

openoffice.org-calc suggests no packages.

Versions of packages openoffice.org-core depends on:
ii  fontconfig 2.6.0-3   generic font configuration library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcairo2  1.6.4-7   The Cairo 2D vector graphics libra
ii  libcurl3   7.18.2-8  Multi-protocol file transfer libra
ii  libdb4.6   4.6.21-11 Berkeley v4.6 Database Libraries [
ii  libexpat1  2.0.1-4   XML parsing C library - runtime li
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgstreamer-plugins-b 0.10.19-2 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libhunspell-1.2-0  1.2.6-1   spell checker and morphological an
ii  libhyphen0 2.4-4 ALTLinux hyphenation library - sha
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libicu38   3.8.1-3   International Components for Unico
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libldap-2.4-2  2.4.11-1  OpenLDAP libraries
ii  libneon27  0.28.2-6.1An HTTP and WebDAV client library
ii  libnspr4-0d4.7.1-4   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.0-5  Network Security Service libraries
ii  libpam0g   1.0.1-5   Pluggable Authentication 

Bug#502134: Bug 502134

2008-10-19 Thread Carsten Grohmann
Please contact debian-release to let 0.98.1-1+lenny2 enter testing cause the 
package isn't usable on my lenny.

Thanks,
Carsten



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



Bug#501710: Please update package depedencies

2008-10-09 Thread Carsten Grohmann
Subject: python-wxglade: Please update package depedencies
Package: python-wxglade
Version: 0.6.3-0.1
Severity: wishlist

*** Please type your report below this line ***
Please update the package dependencies to allow running it using a newer
wxPython version.

I've found no need to limit the package to wxPython 2.6 only.

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

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-wxglade depends on:
ii  python   2.5.2-2 An interactive high-level 
object-o
ii  python-central   0.6.8   register and build utility for 
Pyt
ii  python-wxgtk2.6  2.6.3.2.2-3 wxWidgets Cross-platform C++ GUI 
t

python-wxglade recommends no packages.

python-wxglade suggests no packages.

-- no debconf information



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



Bug#500719: Update to mpg123 version 1.5.1

2008-09-30 Thread Carsten Grohmann
Subject: Update to mpg123 version 1.5.1
Package: mpg123
Version: 1.4.3-4

Please update the package to the current version 1.5.1.

Regards,
Carsten

$ dpkg --list mpg123
Gewünscht=Unbekannt/Installieren/R=Entfernen/P=Vollständig Löschen/Halten
| Status=Nicht/Installiert/Config/U=Entpackt/Fehlgeschl. Konfiguration/
 Halb installiert/Trigger erWartet/Trigger anhängig
|/ Fehler?=(kein)/Halten/R=Neuinst notw/X=beide (Status, Fehler: 
GROSS=schlecht)
||/ Name   VersionBeschreibung
+++-==-==-
ii  mpg123 1.4.3-4MPEG layer 1/2/3 audio player

$ dpkg --status mpg123
Package: mpg123
Status: install ok installed
Priority: optional
Section: sound
Installed-Size: 336
Maintainer: Daniel Kobras [EMAIL PROTECTED]
Architecture: i386
Version: 1.4.3-4
Replaces: mpg123-alsa, mpg123-esd, mpg123-nas, mpg123-oss-3dnow, 
mpg123-oss-i486
Provides: mp3-decoder, mpg123-oss-3dnow
Depends: libc6 (= 2.7-1), libltdl3 (= 1.5.2-2), libmpg123-0
Recommends: libasound2 ( 1.0.16) | oss-compat
Suggests: libartsc0 (= 1.5.9), libasound2 ( 1.0.16), libaudio2, 
libaudiofile0 (= 0.2.3-4), libesd0 (= 0.2.35) | libesd-alsa0 (= 0.2.35), 
libjack0 (= 0.109.2), libpulse0 (= 0.9.8)
Description: MPEG layer 1/2/3 audio player
 Mpg123 is a fast and portable MPEG audio player for Unix.  It supports
 MPEG 1.0/2.0 layers 1, 2 and 3 (those famous mp3 files).
 .
 For full CD quality playback (44 kHz, 16 bit, stereo) a Pentium,
 SPARCstation10, DEC Alpha or similar CPU is required.  Mono and/or reduced
 quality playback (22 kHz or 11 kHz) is even possible on 486 CPUs.
 .
 This package contains output plugins for several audio systems, including
 OSS/Lite, the Advanced Linux Sound Architecture (ALSA) on Linux systems,
 the Enlightened Sound Daemon (esound), the Network Audio System (NAS),
 and others.



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



Bug#459002: Additional debug messages

2008-01-04 Thread Carsten Grohmann
I've started boincmgr today and attached the running process using gdb. The 
process crashes again if I close the window clicking the cross right top.

full backtrace
=
(gdb) bt full
#0  0x0730 in ?? ()
No symbol table info available.
#1  0x08073aae in CAdvancedFrame::UpdateRefreshTimerInterval (this=0x8536910, 
iCurrentNotebookPage=0) at AdvancedFrame.cpp:2114
pwndNotebookPage = (struct wxWindow *) 0x857d598
pDoc = (class CMainDocument *) 0x8537b00
#2  0x08073b7a in CAdvancedFrame::OnNotebookSelectionChanged (this=0x8536910, 
[EMAIL PROTECTED]) at AdvancedFrame.cpp:2023
No locals.
#3  0xb79af9b1 in wxAppConsole::HandleEvent () from 
/usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#4  0xb7a3d9db in wxEvtHandler::ProcessEventIfMatches () from 
/usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#5  0xb7a3db38 in wxEventHashTable::HandleEvent () from 
/usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#6  0xb7a3dcb2 in wxEvtHandler::ProcessEvent () from 
/usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#7  0xb7cf1c7e in wxWindowBase::TryParent () from 
/usr/lib/libwx_gtk2u_core-2.6.so.0
No symbol table info available.
#8  0xb7a3dc6e in wxEvtHandler::ProcessEvent () from 
/usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#9  0xb7cf1c7e in wxWindowBase::TryParent () from 
/usr/lib/libwx_gtk2u_core-2.6.so.0
No symbol table info available.
#10 0xb7a3dc6e in wxEvtHandler::ProcessEvent () from 
/usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#11 0xb7c64aa0 in ?? () from /usr/lib/libwx_gtk2u_core-2.6.so.0
No symbol table info available.
#12 0xb720f7e1 in _gtk_marshal_VOID__POINTER_UINT (closure=0x85d4da8, 
return_value=0x0, n_param_values=3,
param_values=0xbfb46f54, invocation_hint=0xbfb46e5c, 
marshal_data=0xb7c64970)
at /tmp/buildd/gtk+2.0-2.12.1/gtk/gtkmarshalers.c:2633
data1 = (gpointer) 0x85178b8
data2 = value optimized out
__PRETTY_FUNCTION__ = _gtk_marshal_VOID__POINTER_UINT
#13 0xb6e4d619 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
No symbol table info available.
#14 0xb6e61e0f in ?? () from /usr/lib/libgobject-2.0.so.0
---Type return to continue, or q return to quit---
No symbol table info available.
#15 0x085d4da8 in ?? ()
No symbol table info available.
#16 0x in ?? ()
No symbol table info available.




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



Bug#459002: SEGSIGV on exit

2008-01-03 Thread Carsten Grohmann
Subject: boinc-manager: SEGSIGV on exit
Package: boinc-manager
Version: 5.10.30-2
Severity: important

*** Please type your report below this line ***
boincmgr crashes on exit with a segmentation voilation

carsten   3386  3098  0 19:36 ?00:00:13 konqueror [kdeinit]
--silent
carsten   3594  3098  0 19:41 ?00:00:00 kio_file [kdeinit] 
file /tmp/ksocket-carsten/klauncherciEZ
carsten   4632  3135  3 22:05 pts/000:00:00 boincmgr
carsten   4633  3126  0 22:05 pts/800:00:00 bash -l
carsten   4640  4633  0 22:05 pts/800:00:00 ps -ef
[EMAIL PROTECTED]:~$ gdb -p 4632
GNU gdb 6.6.90.20070912-debian
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show
copying
and show warranty for details.
This GDB was configured as i486-linux-gnu.
Attaching to process 4632
Reading symbols from /usr/bin/boincmgr...(no debugging symbols found)...done.
Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
Reading symbols from /usr/lib/libwx_gtk2u_xrc-2.6.so.0...(no debugging symbols 
found)...done.

[...]

Loaded symbols for
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
Failed to read a valid object file image from memory.
0xb7f27410 in ?? ()
(gdb) c
Continuing.

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb68e06c0 (LWP 4632)]
0x085b6700 in ?? ()
(gdb) br -f
Function  not defined.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb) help bt
Print backtrace of all stack frames, or innermost COUNT frames.
With a negative argument, print outermost -COUNT frames.
Use of the 'full' qualifier also prints the values of the local
variables.

(gdb) br full
Function full not defined.
Make breakpoint pending on future shared library load? (y or [n]) n
(gdb) bt full
#0  0x085b6700 in ?? ()
No symbol table info available.
#1  0x08529200 in ?? ()
No symbol table info available.
#2  0xbfadea9c in ?? ()
No symbol table info available.
#3  0x08526b00 in ?? ()
No symbol table info available.
#4  0xbfadea9c in ?? ()
No symbol table info available.
#5  0xbfade968 in ?? ()
No symbol table info available.
#6  0x08073b7a in ?? ()
No symbol table info available.
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
(gdb) gcore
Saved corefile core.4632
(gdb) q

[...]
After installing of some debug symbols

gdb --core core.4632 boincmg
GNU gdb 6.6.90.20070912-debian
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
http://gnu.org/licenses/gpl.html
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type show
copying
and show warranty for details.
This GDB was configured as i486-linux-gnu...
Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
[...]
Reading symbols from
/usr/lib/pango/1.6.0/modules/pango-basic-fc.so...done.
Loaded symbols for /usr/lib/pango/1.6.0/modules/pango-basic-fc.so
Reading symbols from
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so...Reading symbols
from
/usr/lib/debug/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so...done.
done.
Loaded symbols for
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
Failed to read a valid object file image from memory.
Core was generated by `/usr/bin/boincmgr'.
Program terminated with signal 11, Segmentation fault.
#0  0x085b6700 in ?? ()
(gdb) bt full
#0  0x085b6700 in ?? ()
No symbol table info available.
#1  0x08529200 in ?? ()
No symbol table info available.
#2  0xbfadea9c in ?? ()
No symbol table info available.
#3  0x08526b00 in ?? ()
No symbol table info available.
#4  0xbfadea9c in ?? ()
No symbol table info available.
#5  0xbfade968 in ?? ()
No symbol table info available.
#6  0x08073b7a in CAdvancedFrame::OnNotebookSelectionChanged (this=0x8073aae, 
[EMAIL PROTECTED]) at AdvancedFrame.cpp:2023
No locals.
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
(gdb)

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

Kernel: Linux 2.6.18-3-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages boinc-manager depends on:
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  libcurl3  7.17.1-1   Multi-protocol file transfer 
libra
ii  libgcc1   1:4.2.2-4  GCC support library
ii  libidn11  1.1-1  GNU libidn library, 
implementation
ii  libkrb53  1.6.dfsg.3~beta1-2 MIT Kerberos runtime libraries
ii  libldap2  2.1.30.dfsg-13.5   OpenLDAP libraries
ii  libssh2-1 0.18-1 SSH2 client-side library
ii  libssl0.9.8   

Bug#430985: kdelibs4c2a: Konqueror crashed on viewing a simple page

2007-06-28 Thread Carsten Grohmann
Subject: kdelibs4c2a: Konqueror crashed on viewing a simple page
Package: kdelibs4c2a
Version: 4:3.5.5a.dfsg.1-8
Severity: critical
Justification: breaks unrelated software

*** Please type your report below this line ***
Konqueror crashes short time after loading 
http://www.themenmix.de/witziges/hochzeitssprueche.html .
The bug is reproducible. The core file is to large to attach itself, It would 
sent on request.

GDB Output
==
(process:4292): GLib-GObject-CRITICAL **:
/tmp/buildd/glib2.0-2.12.12/gobject/gtype.c:2242: initialization
assertion failed, use IA__g_type_init() prior to this function

(process:4292): Gtk-CRITICAL **: gtk_clipboard_get_for_display:
assertion `GDK_IS_DISPLAY (display)' failed
Adobe FlashPlayer: gtk_clipboard_get(GDK_SELECTION_PRIMARY); failed.
Trying to call gtk_init(0,0);

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread -1234805984 (LWP 4237)]
0xb5faccad in non-virtual thunk to
DOM::HTMLEmbedElementImpl::~HTMLEmbedElementImpl() () from
/usr/lib/libkhtml.so.4
(gdb) help bt
Print backtrace of all stack frames, or innermost COUNT frames.
With a negative argument, print outermost -COUNT frames.
Use of the 'full' qualifier also prints the values of the local
variables.

(gdb) bt full
#0  0xb5faccad in non-virtual thunk to
DOM::HTMLEmbedElementImpl::~HTMLEmbedElementImpl() () from
/usr/lib/libkhtml.so.4
No symbol table info available.
#1  0xb5fc0580 in non-virtual thunk to
DOM::HTMLEmbedElementImpl::~HTMLEmbedElementImpl() () from
/usr/lib/libkhtml.so.4
No symbol table info available.
#2  0x0831145c in ?? ()
No symbol table info available.
#3  0x082d5aa8 in ?? ()
No symbol table info available.
#4  0x0001 in ?? ()
No symbol table info available.
#5  0xb61963e4 in ?? () from /usr/lib/libkhtml.so.4
No symbol table info available.
#6  0x0831145c in ?? ()
No symbol table info available.
#7  0x in ?? ()
No symbol table info available.




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

Kernel: Linux 2.6.18-3-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages kdelibs4c2a depends on:
ii  kdelibs- 4:3.5.5a.dfsg.1-8   core shared data for all KDE 
appli
ii  libacl1  2.2.42-1Access control list shared 
library
ii  libart-2 2.3.19-3Library of functions for 2D 
graphi
ii  libarts1 1.5.5-1 aRts sound system core components
ii  libasoun 1.0.14a-1   ALSA library
ii  libaspel 0.60.5-1GNU Aspell spell-checker runtime 
l
ii  libattr1 1:2.4.32-1.1Extended attribute shared library
ii  libaudio 1.9-2   The Network Audio System (NAS). 
(s
ii  libavahi 0.6.16-5Avahi client library
ii  libavahi 0.6.16-5Avahi common library
ii  libavahi 0.6.16-5Avahi Qt3 integration library
ii  libbz2-1 1.0.3-6 high-quality block-sorting file 
co
ii  libc62.5-9+b1GNU C Library: Shared libraries
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library
ii  libcupsy 1.2.7-4 Common UNIX Printing System(tm) - 
ii  libfam0  2.7.0-12Client library to control the FAM 
ii  libfontc 2.4.2-1.2   generic font configuration 
library
ii  libfreet 2.2.1-6 FreeType 2 font engine, shared 
lib
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libgnutl 1.4.4-3 the GNU TLS library - runtime 
libr
ii  libice6  1:1.0.3-2   X11 Inter-Client Exchange library
ii  libidn11 0.6.5-1 GNU libidn library, 
implementation
ii  libjaspe 1.701.0-2   The JasPer JPEG-2000 runtime 
libra
ii  libjpeg6 6b-13   The Independent JPEG Group's JPEG 
ii  libkrb53 1.4.4-8 MIT Kerberos runtime libraries
ii  liblua50 5.0.3-2 Main interpreter library for the 
L
ii  libluali 5.0.3-2 Extension library for the Lua 5.0 
ii  libopene 1.2.2-4.3   runtime files for the OpenEXR 
imag
ii  libpcre3 6.7-1   Perl 5 Compatible Regular 
Expressi
ii  libpng12 1.2.15~beta5-2  PNG library - runtime
ii  libqt3-m 3:3.3.7-4+b1Qt GUI Library (Threaded runtime 
v
ii  libsm6   2:1.0.3-1   X11 Session Management library
ii  libstdc+ 4.1.1-21The GNU Standard C++ Library v3
ii  libtiff4 3.8.2-7 Tag Image File Format (TIFF) 
libra
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcurs 1:1.1.8-2   

Bug#414801: core file

2007-06-28 Thread Carsten Grohmann
Hi!

The core file is too big (4MB compressed; 40MB uncompressed) to send it via 
email to the debian bug tracker :-/

I could provide a compressed version to a personal email address outside of 
debian.

Regards,
Carsten


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



Bug#416366: Also on local filesystems

2007-04-10 Thread Carsten Grohmann
Hi All,

I've the same problem on my box. I use Kmail 4:3.5.5.dfsg.1-6 on a ext3 fs.
The steps to reproduce the bug are the same on my system.

Regards,

Carsten


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



Bug#414801: udftools: man pktsetup: Wrong device names in EXAMPLE and FILES sections

2007-03-13 Thread Carsten Grohmann
Package: udftools
Version: 1.0.0b3-12
Severity: normal

*** Please type your report below this line ***
The device files are moved in the seprate directory /dev/pktcdvd/. The
current files are /dev/pktcdvd/control,/dev/pktcdvd/0, ... The major
device number has changed too.

The example section used the wrong path names. Calling 
pktsetup /dev/pktcdvd0 /dev/sr0 prints an error message like
ioctl: Inappropriate ioctl for device.

The new syntax works fine:
pktsetup 0 /dev/sr0
pktsetup -d 0

And could you add the option -s too?

Thanks

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages udftools depends on:
ii  debconf [debconf-2.0]   1.5.11   Debian configuration management 
sy
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libncurses5 5.5-5Shared libraries for terminal 
hand
ii  libreadline55.2-2GNU readline and history 
libraries
ii  makedev 2.3.1-83 creates device files in /dev

udftools recommends no packages.

-- debconf information:
  udftools/makedev-ask: Create device files


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



Bug#296464: initrd-tools: Asks for a password phrase for crypted disks with r andom keys

2005-02-23 Thread Carsten Grohmann
Am Dienstag, den 22.02.2005, 19:10 +0100 schrieb Wesley W. Terpstra:
 On Tue, Feb 22, 2005 at 05:48:50PM +0100, [EMAIL PROTECTED] wrote:
  There is also a second problem thru the early initializing of the crypt
  device for the swap space. /etc/init.d/cryptdisk (package cryptsetup)
  find a running crypt device and don't call mkswap and the system runs
  without swapspace.
 
 I don't understand what you mean here, could you clarify?

The crypt device initialized by the initrd will not processes
by /etc/init.d/cryptdisk. This often is OK. But in combination of
crypted swap devices with random pass phrases, the device have to
processes by cryptdisk to create a new swap signatur and add it as swap
space.
Best solution IMHO: Don't let the initrd initialize crypted swap devices
and also all devices with pass phrases from /dev/random
and /dev/urandom.

Greetings

Carsten




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



Bug#296464: initrd-tools: Asks for a password phrase for crypted disks with r andom keys

2005-02-22 Thread carsten . grohmann
Package: initrd-tools
Version: 0.1.77
Severity: important

At the moment I use only crypted swap space with keys read from
/dev/random.
mkinitrd creates an initial ramdisk, which ask my for a password to
start the crypted device. But this password should read from
/dev/random.

There is also a second problem thru the early initializing of the crypt
device for the swap space. /etc/init.d/cryptdisk (package cryptsetup)
find a running crypt device and don't call mkswap and the system runs
without swapspace.

-- /etc/crypttab
# target device source device key file options
cs1 /dev/hda2   /dev/random swap

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ac12
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages initrd-tools depends on:
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  cpio  2.5-1.2GNU cpio -- a program to manage ar
ii  cramfsprogs   1.1-6  Tools for CramFs (Compressed ROM F
ii  dash  0.5.2-1The Debian Almquist Shell
ii  util-linux2.12-10Miscellaneous system utilities

-- no debconf information



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



Bug#290328: kernel-image-2.6.8-1-386: slab error in kmem_cache_destroy(): cache `scsi_cmd_cache': Can't free all objects

2005-01-13 Thread carsten . grohmann
Package: kernel-image-2.6.8-1-386
Version: 2.6.8-10
Severity: important

After umounting and disconnection my usb stick, I got follow kernel
message:

slab error in kmem_cache_destroy(): cache `scsi_cmd_cache': Can't free
all objects
[c0133cb2] kmem_cache_destroy+0x79/0xe0
[dedca373] scsi_destroy_command_freelist+0x64/0x76 [scsi_mod]
[dedcb127] scsi_host_dev_release+0x59/0x72 [scsi_mod]
[c01d2a55] device_release+0x14/0x44
[c018ba98] kobject_cleanup+0x40/0x65
[ded562e9] usb_stor_release_resources+0x98/0xc0 [usb_storage]
[ded56555] storage_disconnect+0x56/0x62 [usb_storage]
[dea2e077] usb_unbind_interface+0x31/0x5b [usbcore]
[c01d3705] device_release_driver+0x40/0x4b
[c01d38a7] bus_remove_device+0x39/0x68
[c01d2cec] device_del+0x43/0x67
[dea33439] usb_disable_device+0x72/0xe4 [usbcore]
[dea2fa4f] usb_disconnect+0x95/0x10c [usbcore]
[dea30440] hub_port_connect_change+0x5e/0x313 [usbcore]
[dea30919] hub_events+0x224/0x2da [usbcore]
[dea309cf] hub_thread+0x0/0xe4 [usbcore]
[dea309ec] hub_thread+0x1d/0xe4 [usbcore]
[c0116fb4] autoremove_wake_function+0x0/0x3a
[c0105e6e] ret_from_fork+0x6/0x14
[dea309cf] hub_thread+0x0/0xe4 [usbcore]
[c0116fb4] autoremove_wake_function+0x0/0x3a
[c01041e1] kernel_thread_helper+0x5/0xb

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-386
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages kernel-image-2.6.8-1-386 depends on:
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  initrd-tools  0.1.76 tools to create initrd image for p
ii  module-init-tools 3.1-rel-2  tools for managing Linux kernel mo

-- no debconf information



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