Bug#528212: Downgrading python-pysqlite2 seems to solve this problem

2009-05-18 Thread Adam Szojda
Hi

I'm running debian stable/testing/unstable mix... Mostly unstable with 
KDE3 from Lenny.

I've noticed that downgrading python-pyslite2 package to version 2.4.1-1
(lenny) seems to solve the problem.

aszo...@aszojda-laptop:~$ LANG=en apt-cache policy python-pysqlite2
python-pysqlite2:
  Installed: 2.4.1-1
  Candidate: 2.4.1-1
  Version table:
 2.5.5-1 0
600 http://ftp.de.debian.org unstable/main Packages
 *** 2.4.1-1 0
700 http://ftp.de.debian.org lenny/main Packages
100 /var/lib/dpkg/status
aszo...@aszojda-laptop:~$

So it may be a bug in python-pysqlite2. Bug or some other compatibility
issue / change in pysqlite2 between versions 2.4.1 and 2.5.5 ...
 
Regards,
Adam




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



Bug#521150: postgresql-8.3: Function pg_total_relation_size(text) fails if relation is using MixedCaseNames

2009-03-25 Thread Adam Szojda
Package: postgresql-8.3
Version: 8.3.6-1
Severity: normal

Hi

Text version of pg_total_relation_size function fails on relations with
CamelCase names:

test3=# create table simple_test (id serial primary key, data
integer);
NOTICE:  CREATE TABLE will create implicit sequence simple_test_id_seq
for serial column simple_test.id
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index
simple_test_pkey for table simple_test
CREATE TABLE
test3=# create table CamelCaseTest (id serial primary key, data
integer);
NOTICE:  CREATE TABLE will create implicit sequence
CamelCaseTest_id_seq for serial column CamelCaseTest.id
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index
CamelCaseTest_pkey for table CamelCaseTest
CREATE TABLE
test3=# select pg_total_relation_size('simple_test');
 pg_total_relation_size

   8192
(1 row)

test3=# select pg_total_relation_size('CamelCaseTest');
ERROR:  relation camelcasetest does not exist
Test3=#

The OID version works OK:

test3=# select pg_total_relation_size((select oid from pg_class where
relname='CamelCaseTest'));
 pg_total_relation_size

   8192
(1 row)


Regards,
Adam Szojda


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

Kernel: Linux 2.6.26-1-amd64 (SMP w/8 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 postgresql-8.3 depends on:
ii  libc6 2.7-18 GNU C Library: Shared
libraries
ii  libcomerr21.41.3-1   common error description
library
ii  libkrb53  1.6.dfsg.4~beta1-5 MIT Kerberos runtime
libraries
ii  libldap-2.4-2 2.4.11-1   OpenLDAP libraries
ii  libpam0g  1.0.1-5Pluggable Authentication
Modules l
ii  libpq58.3.6-1PostgreSQL C client library
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  libxml2   2.6.32.dfsg-5  GNOME XML library
ii  locales   2.7-18 GNU C Library: National
Language (
ii  postgresql-client-8.3 8.3.6-1front-end programs for
PostgreSQL 
ii  postgresql-common 94lenny1   PostgreSQL database-cluster
manage
ii  ssl-cert  1.0.23 simple debconf wrapper for
OpenSSL
ii  tzdata2008h-2time zone and
daylight-saving time

postgresql-8.3 recommends no packages.

Versions of packages postgresql-8.3 suggests:
pn  oidentd | ident-servernone (no description available)

-- no debconf information


Bug#519186: python-tagpy: Crash on unicode file names

2009-03-11 Thread Adam Szojda
On Wed, Mar 11, 2009 at 02:50:11PM +0100, Michal Čihař wrote:
 
 What is correct according to upstream, your application should take
 care of conversion unicode sting to whatever is proper representation
 of it on filesystem.
 

Oh. Strange. That illusion seems to be supported by the Python itself:

$ python
Python 2.5.2 (r252:60911, Jan  4 2009, 21:59:32)
[GCC 4.3.2] on linux2
Type help, copyright, credits or license for more information.
 f = open(ułä.mp3, rb)
 f
open file u'\u0142\xe4.mp3', mode 'rb' at 0x7f8c25faca08

 for i in os.listdir(u'.'):
... if i[-3:] == ump3:
... print i
...
łä.mp3

and using non-latin chars:

 f = open(uचीन.mp3, w)
 f
open file u'\u091a\u0940\u0928.mp3', mode 'w' at 0x7f3520079cd8
 for i in os.listdir(u.):
... if i[-3:] == ump3:
... print i
...
łä.mp3
चीन.mp3

So basicly, one can write an app in python that's using unicode
for everyting, including filenames and will be forsed to recode
them manually to filesystem encoding for tagpy.

It is a bug IMHO.

Regards,
A.




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



Bug#519186: python-tagpy: Crash on unicode file names

2009-03-10 Thread Adam Szojda
Package: python-tagpy
Version: 0.94.5-2
Severity: normal

Hi

tagpy.FileRef(..) is crashing when called with unicode object as argument. 
I have a script, created and used without problems on Ubuntu 8.04. It's now
crashing on Debian Lenny... 

Simple test script:

aszo...@aszojda-laptop:/tmp$ cat test.py
#!/usr/bin/python
# -*- coding: utf-8 -*-

import tagpy

f = tagpy.FileRef(ula.mp3)


Running it results in a crash:

aszo...@aszojda-laptop:/tmp$ python test.py
Traceback (most recent call last):
  File test.py, line 6, in module
f = tagpy.FileRef(ula.mp3)
  File /usr/lib/python2.5/site-packages/tagpy/__init__.py, line 53, in 
__init__
audioPropertiesStyle)
  File /usr/lib/python2.5/site-packages/tagpy/__init__.py, line 115, in create
return module.File(fileName, readAudioProperties, audioPropertiesStyle)
Boost.Python.ArgumentError: Python argument types in
mpeg_File.__init__(mpeg_File, unicode, bool, _tagpy.ReadStyle)
did not match C++ signature:
__init__(_object*, char const*, TagLib::ID3v2::FrameFactory*)
__init__(_object*, char const*, TagLib::ID3v2::FrameFactory*, bool)
__init__(_object*, char const*, TagLib::ID3v2::FrameFactory*, bool, 
TagLib::AudioProperties::ReadStyle)
__init__(_object*, char const*)
__init__(_object*, char const*, bool)
__init__(_object*, char const*, bool, TagLib::AudioProperties::ReadStyle)
aszo...@aszojda-laptop:/tmp$ 


Regards,
Adam Szojda


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

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

Versions of packages python-tagpy depends on:
ii  libboost-python1.34.11.34.1-14   Boost.Python Library
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libtag1c2a   1.5-3   TagLib Audio Meta-Data Library
ii  python   2.5.2-3 An interactive high-level object-o
ii  python-central   0.6.8   register and build utility for Pyt

python-tagpy recommends no packages.

python-tagpy 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#462429: SIGILL in libGLcore.so.1 from nvidia-glx 169.07-2 due to SSE instructions

2008-05-04 Thread Adam Szojda
Hi.

OK. I have - rather caressly - closed this bug without testing... I
had not time to upgrade since then - I've been running version
100.14.19 until today.

Now I've run some tests and yes - setting __GL_FORCE_GENERIC_CPU to 1
doesn't seem to solve this... so... reopen #462429 ...

You can get the old nvidia drivers from snapshot.debian.net. Just add
this line to /etc/apt/sources.list:

deb http://snapshot.debian.net/archive pool nvidia-graphics-drivers

Regards
Adam



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



Bug#463563: annodex-tools: anxenc fails on files with .ogv extension

2008-02-01 Thread Adam Szojda
Package: annodex-tools
Version: 0.7.3-3.1
Severity: normal

Hello

anxenc can't process files with .ogv extension:

/mnt/temp/Filmy $ anxenc -o Nora_inu-Stray_Dog.anx Nora_inu-Stray_Dog.ogv 
Nora_inu-Stray_Dog.cmml
anxenc: Error importing Nora_inu-Stray_Dog.ogv: No importer


Changing extension to .ogg helps:

/mnt/temp/Filmy $ ln -s Nora_inu-Stray_Dog.ogv Nora_inu-Stray_Dog.ogg
/mnt/temp/Filmy $ anxenc -o Nora_inu-Stray_Dog.anx Nora_inu-Stray_Dog.ogg 
Nora_inu-Stray_Dog.cmml
/mnt/temp/Filmy $ anxinfo Nora_inu-Stray_Dog.anx
-- unidentified --  15088872931000/1   3 text/x-cmml
basegranule 0   preroll 0   granuleshift 32
-- unidentified --  213300094224000/1001   3 video/x-theora
basegranule 0   preroll 0   granuleshift 6
-- unidentified --  0598227827   48000/1   3 audio/x-vorbis
basegranule 0   preroll 2   granuleshift 0


.ogv is new official extension of video/ogg files
http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions#.ogv_-_video.2Fogg

A.

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

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

Versions of packages annodex-tools depends on:
ii  libannodex0   0.7.3-3.1  annotated and indexed media librar

annodex-tools recommends no packages.

-- no debconf information


--
Zmus swojego faceta, zeby to przeczytal
Kliknij  http://link.interia.pl/f1ceb




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



Bug#462429: SIGILL in libGLcore.so.1 from nvidia-glx 169.07-2 due to SSE instructions

2008-01-24 Thread Adam Szojda
Package: nvidia-glx
Version: 169.07-2
Severity: grave
Justification: renders package unusable

Hi.

libGLcore.so.169.07 seems to be compiled with SSE instructions enabled.

$ gdb glxgears
GNU gdb 6.7.1-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...
(no debugging symbols found)
Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
(gdb) run
Starting program: /usr/bin/glxgears
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)

Program received signal SIGILL, Illegal instruction.
0xb7978840 in ?? () from /usr/lib/libGLcore.so.1
(gdb) disass 0xb7978840 0xb7978848
Dump of assembler code from 0xb7978840 to 0xb7978848:
0xb7978840: movups (%ecx),%xmm0
0xb7978843: movups 0x10(%ecx),%xmm1
0xb7978847: movups 0x20(%ecx),%xmm2
End of assembler dump.
(gdb)


This makes it unusable on older hardware without SSE support like mine:

$ grep ^flags /proc/cpuinfo
flags   : fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat 
pse36 mmx fxsr syscall mmxext 3dnowext 3dnow up



-- Package-specific info:
uname -r:
Linux dom 2.6.23.1-my2 #1 SMP Wed Oct 17 01:10:33 CEST 2007 i686 GNU/Linux


/proc/version:
Linux version 2.6.23.1-my2 ([EMAIL PROTECTED]) (gcc version 4.2.1 (Debian 
4.2.1-6)) #1 SMP Wed Oct 17 01:10:33 CEST 2007


/proc/driver/nvidia/version:


01:00.0 VGA compatible controller: nVidia Corporation NV44A [GeForce 6200] (rev 
a1)


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

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

Versions of packages nvidia-glx depends on:
ii  libc6  2.7-6 GNU C Library: Shared libraries
ii  libgl1-mesa-glx [l 7.0.2-4   A free implementation of the OpenG
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  nvidia-kernel-2.6. 169.07-2+2.6.23+my2   NVIDIA binary kernel module for Li
ii  x11-common 1:7.3+10  X Window System (X.Org) infrastruc
ii  xlibmesa-gl1:7.3+10  transitional package for Debian et
ii  xserver-xorg-core  2:1.4.1~git20080118-1 Xorg X server - core server

nvidia-glx recommends no packages.

-- no debconf information


--
Nadchodzi galaktyczna wojna!
Sprawdz  http://link.interia.pl/f1ce0




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



Bug#457297: gajim: Missing dependency: python-gnome2-desktop

2007-12-21 Thread Adam Szojda
Package: gajim
Version: 0.11.4-1
Severity: grave
Justification: renders package unusable


After last upgrade gajim fails to start:

$ gajim
ImportError: could not import bonobo.ui
Traceback (most recent call last):
  File gajim.py, line 2279, in ?
cli.set_restart_command(len(argv), argv)
AttributeError: '__main__.GnomeClient' object has no attribute 
'set_restart_command'


Installing python-gnome2-desktop package fixies this problem.



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

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

Versions of packages gajim depends on:
ii  dnsutils  1:9.4.2-1  Clients provided with BIND
ii  python2.4.4-6An interactive high-level object-o
ii  python-glade2 2.12.0-2   GTK+ bindings: Glade support
ii  python-gtk2   2.12.0-2   Python bindings for the GTK+ widge
ii  python-pysqlite2  2.4.0-2python interface to SQLite 3
ii  python-support0.7.5  automated rebuilding support for p

Versions of packages gajim recommends:
ii  dbus  1.1.2-1simple interprocess messaging syst
ii  notification-daemon   0.3.7-1+b1 a daemon that displays passive pop
ii  python-dbus   0.82.4-1   simple interprocess messaging syst
ii  python-gnupginterface 0.3.2-9Python interface to GnuPG (GPG)

-- no debconf information


--
Wejdz do swiata wojny wampirow!
http://link.interia.pl/f1cb4




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



Bug#407436: strigi-daemon creates a lot of zombie processes...

2007-01-18 Thread Adam Szojda
Package: strigi-daemon
Version: 0.3.9-1
Severity: important

Hi.

While indexing strigi-daemon created a lot of zombie processes:

$ ps aux | grep defunct | wc -l
1035

All of them ware pdftotext and wvWare:

$ pstree | grep -C 1 strigi
 |-kicker-+-2*[kfmclient]
 |`-strigidaemon-+-444*[pdftotext]
 |   |-666*[wvWare]
 |   `-2*[{strigidaemon}]
 |-kio_uiserver

Number of zombies growed fast and then daemon crushed with 
SIGABRT...

A.



-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages strigi-daemon depends on:
ii  libbz2-1.0  1.0.3-6  high-quality block-sorting file co
ii  libc6   2.3.6.ds1-10 GNU C Library: Shared libraries
ii  libclucene0 0.9.16a-1library for full-featured text sea
ii  libdbus-1-3 1.0.2-1  simple interprocess messaging syst
ii  libexpat1   1.95.8-3.4   XML parsing C library - runtime li
ii  libgcc1 1:4.1.1-21   GCC support library
ii  liblog4cxx9c2a  0.9.7-6  A logging library for C++
ii  libmagic1   4.17-5   File type determination library us
ii  libssl0.9.8 0.9.8c-4 SSL shared libraries
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3
ii  wv  1.2.4-2  Programs for accessing Microsoft W
ii  xpdf-utils [poppler-utils]  3.01-9   Portable Document Format (PDF) sui
ii  zlib1g  1:1.2.3-13   compression library - runtime

strigi-daemon recommends no packages.

-- no debconf information

--
Zatrudnij zgrabna asystentke! Zobacz  http://link.interia.pl/f19de



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



Bug#375642: texlive-base-bin: Cannot install - missing texlive-common package.

2006-06-27 Thread Adam Szojda
Package: texlive-base-bin
Severity: grave
Justification: renders package unusable

Hello.

TeXLive can't be installed on debian/unstable because texlive-common is
missing:

~# LANG=en apt-get install texlive-base-bin
Reading package lists... Done
Building dependency tree... 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.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  texlive-base-bin: Depends: texlive-common but it is not installable
  E: Broken packages

A.



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

--
PS. Fajny portal...  http://link.interia.pl/f196a



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



Bug#356876: Message from Robert...

2006-03-22 Thread Adam . Szojda
Hello.

Robert Gomułka (carramba at epf.pl) has some problems with epf.pl mail
service. He asked me to send following message to you:



My mistake - I have sent it to wrong bug report. The correct number is
356876.
---
[cut]

 Look for bug # 356876.

 John
Bug forwarded upstream:
http://bugs.kde.org/show_bug.cgi?id=124032

Please correct this if it is a duplicate or contains incorrect
information.

Regards,
Robert



A.



Bug#357487: optipng: existing .bak files are deleted...

2006-03-17 Thread Adam . Szojda
Package: optipng
Version: 0.5-1
Severity: normal

Existing .bak files are deleted by optipng:

([EMAIL PROTECTED]) 16:25:06
/tmp/test $ ls
test.png  test.png.bak

([EMAIL PROTECTED]) 16:25:08
/tmp/test $ optipng -o7 -q test.png

([EMAIL PROTECTED]) 16:26:41
/tmp/test $ ls
test.png

([EMAIL PROTECTED]) 16:26:45
/tmp/test $


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages optipng depends on:
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  zlib1g1:1.2.3-11 compression library - runtime

optipng recommends no packages.

-- no debconf information

--
Kliknij po wiecej!  http://link.interia.pl/f18ed



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



Bug#317581: kernel-image-2.6.11-1-k7: kernel oops while reading udf disk

2006-01-03 Thread Adam . Szojda
On Tue, Jan 03, 2006 at 08:09:45PM +0100, David Schmitt wrote:

 Could you please retest this with a current linux image?

I'm on self built kernel-image-2.6.14 and everything seems OK.
(Same burner but different, freshly formated disc...)

 2.6.15 will enter unstable tomorrow.

Hmm... I wanted to wait a few days before upgrading to 2.6.15, it's a
huge six-meg patch, but ok I'll test that package as soon as it will be
available on ftp.pl.debian.org.

A.

--
Kobieta na Nowy Rok!  http://link.interia.pl/f18ec 



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



Bug#317581: kernel-image-2.6.11-1-k7: kernel oops while reading udf disk

2005-07-09 Thread Adam Szojda
Package: kernel-image-2.6.11-1-k7
Version: 2.6.11-7
Severity: important


Kernel oops while reading UDF formated DVD+RW disk. Tested on two disks:
one formated and burned with InCD on Windows and the other with linux
udftools... Both mounted standard way: mount -t udf /dev/hdc /tmp/1
pktcdvd module wasn't loaded. After oops drive is busy - cannot umount
and drive led is on.

hdc: tray open
end_request: I/O error, dev hdc, sector 19228
udf: udf_read_inode(ino 4807) failed !bh
Unable to handle kernel NULL pointer dereference at virtual address 0038
 printing eip:
f10c8112
*pde = 
Oops:  [#1]
Modules linked in: ntfs udf nls_cp437 isofs appletalk ax25 ipx sd_mod 
usb_storage scsi_mod lp thermal fan button processor ac battery ipv6 
sch_ingress cls_fw cls_u32 sch_sfq sch_htb ipt_MARK ipt_MASQUERADE ipt_REDIRECT 
ipt_REJECT ipt_LOG ipt_state ipt_pkttype ipt_owner ipt_recent ipt_iprange 
ipt_physdev ipt_multiport ipt_conntrack iptable_mangle ip_nat_irc ip_nat_tftp 
ip_nat_ftp iptable_nat ip_conntrack_irc ip_conntrack_tftp ip_conntrack_ftp 
ip_conntrack iptable_filter ip_tables mousedev tsdev evdev analog rtc 8139cp 
tuner bttv video_buf firmware_class i2c_algo_bit v4l2_common btcx_risc tveeprom 
videodev snd_intel8x0 i2c_sis96x i2c_sis630 pci_hotplug ohci_hcd usbcore 
snd_ens1371 snd_rawmidi snd_seq_device snd_ac97_codec snd_pcm_oss snd_mixer_oss 
snd_pcm snd_timer snd soundcore snd_page_alloc gameport ne2k_pci 8390 8139too 
mii dm_mod capability commoncap pcspkr parport_pc ppdev parport psmouse it87 
i2c_sensor i2c_isa i2c_dev i2c_core radeon drm sis_agp agpgart ide_cd cdrom 
reiserfs ex
 t2 ext3 jbd mbcache ide_disk ide_generic siimage aec62xx trm290 alim15x3 
hpt34x hpt366 cmd64x piix rz1000 slc90e66 generic cs5530 cs5520 sc1200 triflex 
atiixp pdc202xx_old pdc202xx_new opti621 ns87415 cy82c693 amd74xx sis5513 
via82cxxx serverworks ide_core unix fbcon font bitblit vesafb cfbcopyarea 
cfbimgblt cfbfillrect
CPU:0
EIP:0060:[f10c8112]Not tainted VLI
EFLAGS: 00210293   (2.6.11-1-k7)
EIP is at udf_get_fileshortad+0x22/0x50 [udf]
eax: 0038   ebx: c591b2f8   ecx: d32efd50   edx: 00f0
esi: 0038   edi: 00f8   ebp: d32efd50   esp: d32efc98
ds: 007b   es: 007b   ss: 0068
Process mc (pid: 8320, threadinfo=d32ee000 task=d2cca020)
Stack: d32efcc0 f10bf9fe 0038 00f8 d32efd50 0001  
   eabe1f44 0001 d32efd00 c012bf4f d32efd48 d32efd60 c591b330 d32efd54
   f10bf833 c591b330 d32efd48 d32efd50 d32efd54 d32efd5c d32efd60 0001
Call Trace:
 [f10bf9fe] udf_current_aext+0x14e/0x1c0 [udf]
 [c012bf4f] autoremove_wake_function+0x2f/0x60
 [f10bf833] udf_next_aext+0x43/0xc0 [udf]
 [f10c6f14] udf_discard_prealloc+0xd4/0x2e0 [udf]
 [c011d801] current_fs_time+0x51/0x70
 [f10bb33c] udf_clear_inode+0x3c/0x40 [udf]
 [c016946e] clear_inode+0xde/0x120
 [c016a317] generic_forget_inode+0xe7/0x120
 [c016a3c5] iput+0x55/0x70
 [f10bf055] udf_iget+0x95/0xd0 [udf]
 [f10c0d0f] udf_lookup+0xaf/0xe0 [udf]
 [c015de41] real_lookup+0xc1/0xf0
 [c015e0d6] do_lookup+0x96/0xb0
 [c015e6a6] link_path_walk+0x5b6/0xb70
 [c015eeb0] path_lookup+0x70/0x110
 [c015f103] __user_walk+0x33/0x60
 [f098a0e7] reiserfs_delete_inode+0x27/0x100 [reiserfs]
 [c0159f3c] vfs_lstat+0x1c/0x60
 [c015dbf0] permission+0xb0/0xd0
 [f099784b] reiserfs_destroy_inode+0x1b/0x20 [reiserfs]
 [c0169223] destroy_inode+0x43/0x60
 [c015a66b] sys_lstat64+0x1b/0x40
 [c010755a] do_gettimeofday+0x1a/0xb0
 [c011cfdb] sys_time+0x1b/0x60
 [c0102fad] sysenter_past_esp+0x52/0x75
Code: 00 00 8d bc 27 00 00 00 00 83 ec 04 8b 44 24 08 8b 4c 24 10 85 c0 74 29 
85 c9 74 25 8b 11 85 d2 78 1b 83 c2 08 3b 54 24 0c 77 12 83 38 00 74 0d 83 7c 
24 14 00 74 02 89 11 83 c4 04 c3 31 c0 eb


I'm on 2.6.8 and have no problem reading those disks.

A.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages kernel-image-2.6.11-1-k7 depends on:
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  initrd-tools  0.1.81.1   tools to create initrd image for p
ii  module-init-tools 3.2-pre1-2 tools for managing Linux kernel mo

kernel-image-2.6.11-1-k7 recommends no packages.

-- no debconf information


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



Bug#314784: avra: AVRA is outdated. Please update.

2005-06-18 Thread Adam Szojda
Package: avra
Version: 0.7-1
Severity: wishlist


Version of avra in Debian is outdated. Current - released 
about a year ago - version is 1.0.1. Please update.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages avra depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

avra recommends no packages.

-- no debconf information


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



Bug#304889: python-gst: Missing dependency

2005-04-16 Thread Adam Szojda
Package: python-gst
Version: 0.8.1-1
Severity: important

Importing gst module fails with this error message:
~/projects/oggrecord $ ./player.py nmp-2005-04-09.ogg
Traceback (most recent call last):
  File ./player.py, line 22, in ?
import gst
  File /usr/lib/python2.3/site-packages/gst/__init__.py, line 29, in ?
import gobject
ImportError: No module named gobject

After installing package python-gtk2 everything works fine.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-k7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages python-gst depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libglib2.0-02.6.4-1  The GLib library of C routines
ii  libgstreamer-plugins0.8-0   0.8.8-3  Various GStreamer libraries and li
ii  libgstreamer0.8-0   0.8.9-2  Core GStreamer libraries, plugins,
ii  libxml2 2.6.16-7 GNOME XML library
ii  python  2.3.5-2  An interactive high-level object-o
ii  zlib1g  1:1.2.2-4compression library - runtime

-- no debconf information


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