Bug#1000293: jackd2: Method RequestRelease is not implemented on interface org.freedesktop.ReserveDevice1

2021-11-21 Thread Joenio Marques da Costa

Package: jackd2
Version: 1.9.19~dfsg-2
Severity: important


The same error here in my Desktop environment.


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

Kernel: Linux 5.14.0-4-amd64 (SMP w/8 CPU threads)
Kernel taint flags: TAINT_DIE, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE 
not set

Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages jackd2 depends on:
ii  debconf [debconf-2.0]  1.5.79
ii  libasound2 1.2.5.1-1
ii  libc6  2.32-4
ii  libdbus-1-31.12.20-3
ii  libexpat1  2.4.1-3
ii  libgcc-s1  11.2.0-10
ii  libjack-jackd2-0   1.9.19~dfsg-2
ii  libreadline8   8.1-2
ii  libsamplerate0 0.2.2-1
ii  libsndfile11.0.31-2
ii  libstdc++6 11.2.0-10
ii  libsystemd0249.5-2
ii  libzita-alsa-pcmi0 0.3.2-2
ii  libzita-resampler1 1.8.0-2
ii  python33.9.7-1
ii  python3-dbus   1.2.18-3+b1

Versions of packages jackd2 recommends:
ii  jackd2-firewire  1.9.19~dfsg-2
ii  libpam-modules   1.4.0-10
ii  qjackctl 0.9.5-1

Versions of packages jackd2 suggests:
pn  jack-tools   
ii  meterbridge  0.9.2-13+b1

-- debconf information:
* jackd/tweak_rt_limits: false

--
Joenio Marques da Costa
Invited Researcher at Université Gustave Eifell
Research Software Engineer at LISIS
Developer at CorTexT platform & RISIS Core Facility
http://umr-lisis.fr/membre/joenio



Bug#945954: monero: Scheduled network hard fork requires v0.15

2019-12-01 Thread Mario Costa
Package: monero
Version: 0.14.1.2-2
Severity: grave
Justification: renders package unusable

Since November 30th, a scheduled Monero network hard fork requires a version of
the Monero software >= 0.15.

Version 0.15.0.1 is currently the last upstream version.



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

Kernel: Linux 4.19.0-6-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8), 
LANGUAGE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled



Bug#897674: p7zip-rar: CVE-2018-10115

2019-02-24 Thread Raphael Kubo da Costa

I was recently looking at this CVE and CVE 2018 10115.patch.

According to upstream 7-zip [1], this bug was fixed in version 18.05. In 
the upstream release announcement, someone asked about variables like 
_errorMode that were introduced earlier to deal with CVE-2018-5996 [2] 
and how they had been removed from this release.


The 7-Zip maintainer replied it was intentional and both CVEs should be 
fixed with that code. I've diff'ed 18.03 and 18.05, and _errorMode is 
either commented out or removed in the code, while the existing 
CVE_2018_10115.patch still has them in addition to the _solidAllowed 
stuff. I just package p7zip so I don't know much about how its 
implementation works, but I figured it'd be a better idea to make the 
CVE-2018-10115 patch more similar to what upstream had.


This new version is attached and follows what 18.05 upstream does.

[1] https://www.7-zip.org/history.txt
[2] 
https://sourceforge.net/p/sevenzip/discussion/45797/thread/adc65bfa/#8b13
--- CPP/7zip/Compress/Rar1Decoder.cpp.orig	2019-02-24 20:16:23.682521000 +0100
+++ CPP/7zip/Compress/Rar1Decoder.cpp	2019-02-24 22:02:59.461303000 +0100
@@ -29,7 +29,7 @@
 };
 */
 
-CDecoder::CDecoder(): m_IsSolid(false), _errorMode(false) { }
+CDecoder::CDecoder(): _isSolid(false), _solidAllowed(false) { }
 
 void CDecoder::InitStructures()
 {
@@ -345,7 +345,7 @@
 
 void CDecoder::InitData()
 {
-  if (!m_IsSolid)
+  if (!_isSolid)
   {
 AvrPlcB = AvrLn1 = AvrLn2 = AvrLn3 = NumHuf = Buf60 = 0;
 AvrPlc = 0x3500;
@@ -391,6 +391,11 @@
   if (inSize == NULL || outSize == NULL)
 return E_INVALIDARG;
 
+  if (_isSolid && !_solidAllowed)
+return S_FALSE;
+
+  _solidAllowed = false;
+
   if (!m_OutWindowStream.Create(kHistorySize))
 return E_OUTOFMEMORY;
   if (!m_InBitStream.Create(1 << 20))
@@ -398,22 +403,18 @@
 
   m_UnpackSize = (Int64)*outSize;
   m_OutWindowStream.SetStream(outStream);
-  m_OutWindowStream.Init(m_IsSolid);
+  m_OutWindowStream.Init(_isSolid);
   m_InBitStream.SetStream(inStream);
   m_InBitStream.Init();
 
   // CCoderReleaser coderReleaser(this);
   InitData();
-  if (!m_IsSolid)
+  if (!_isSolid)
   {
-_errorMode = false;
 InitStructures();
 InitHuff();
   }
 
-  if (_errorMode)
-return S_FALSE;
-
   if (m_UnpackSize > 0)
   {
 GetFlagsBuf();
@@ -475,6 +476,7 @@
   }
   if (m_UnpackSize < 0)
 return S_FALSE;
+  _solidAllowed = true;
   return m_OutWindowStream.Flush();
 }
 
@@ -482,16 +484,16 @@
 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress)
 {
   try { return CodeReal(inStream, outStream, inSize, outSize, progress); }
-  catch(const CInBufferException ) { _errorMode = true; return e.ErrorCode; }
-  catch(const CLzOutWindowException ) { _errorMode = true; return e.ErrorCode; }
-  catch(...) { _errorMode = true; return S_FALSE; }
+  catch(const CInBufferException ) { return e.ErrorCode; }
+  catch(const CLzOutWindowException ) { return e.ErrorCode; }
+  catch(...) { return S_FALSE; }
 }
 
 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *data, UInt32 size)
 {
   if (size < 1)
 return E_INVALIDARG;
-  m_IsSolid = ((data[0] & 1) != 0);
+  _isSolid = ((data[0] & 1) != 0);
   return S_OK;
 }
 
--- CPP/7zip/Compress/Rar1Decoder.h.orig	2019-02-24 20:16:23.683118000 +0100
+++ CPP/7zip/Compress/Rar1Decoder.h	2019-02-24 22:01:21.915855000 +0100
@@ -38,8 +38,8 @@
   UInt32 LastLength;
 
   Int64 m_UnpackSize;
-  bool m_IsSolid;
-  bool _errorMode;
+  bool _isSolid;
+  bool _solidAllowed;
 
   UInt32 ReadBits(int numBits);
   HRESULT CopyBlock(UInt32 distance, UInt32 len);
--- CPP/7zip/Compress/Rar2Decoder.cpp.orig	2019-02-24 20:16:23.683974000 +0100
+++ CPP/7zip/Compress/Rar2Decoder.cpp	2019-02-24 20:16:23.691384000 +0100
@@ -80,7 +80,8 @@
 static const UInt32 kWindowReservSize = (1 << 22) + 256;
 
 CDecoder::CDecoder():
-  m_IsSolid(false),
+  _isSolid(false),
+  _solidAllowed(false),
   m_TablesOK(false)
 {
 }
@@ -320,6 +321,10 @@
   if (inSize == NULL || outSize == NULL)
 return E_INVALIDARG;
 
+  if (_isSolid && !_solidAllowed)
+return S_FALSE;
+  _solidAllowed = false;
+
   if (!m_OutWindowStream.Create(kHistorySize))
 return E_OUTOFMEMORY;
   if (!m_InBitStream.Create(1 << 20))
@@ -330,12 +335,12 @@
   UInt64 pos = 0, unPackSize = *outSize;
   
   m_OutWindowStream.SetStream(outStream);
-  m_OutWindowStream.Init(m_IsSolid);
+  m_OutWindowStream.Init(_isSolid);
   m_InBitStream.SetStream(inStream);
   m_InBitStream.Init();
 
   // CCoderReleaser coderReleaser(this);
-  if (!m_IsSolid)
+  if (!_isSolid)
   {
 InitStructures();
 if (unPackSize == 0)
@@ -343,6 +348,7 @@
   if (m_InBitStream.GetProcessedSize() + 2 <= m_PackSize) // test it: probably incorrect;
 if (!ReadTables())
   return S_FALSE;
+  _solidAllowed = true;
   return S_OK;
 }
 if (!ReadTables())
@@ -386,6 +392,9 @@
 
   if (!ReadLastTables())
 return S_FALSE;
+
+  _solidAllowed = true;
+
   return 

Bug#821223: virtualenv

2016-04-18 Thread Stefano Costa
Just to add more detail on the issue, I tried on a fresh sid install (with 
Docker) and the following works well:

root@62ae0c72d468:/# python3 get-pip.py 
Collecting pip
  Downloading pip-8.1.1-py2.py3-none-any.whl (1.2MB)
100% || 1.2MB 118kB/s 
Collecting setuptools
  Downloading setuptools-20.9.0-py2.py3-none-any.whl (508kB)
100% || 512kB 98kB/s 
Collecting wheel
  Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
100% || 71kB 105kB/s 
Installing collected packages: pip, setuptools, wheel
Successfully installed pip-8.1.1 setuptools-20.9.0 wheel-0.29.0
root@62ae0c72d468:/# pip3 install virtualenv
Collecting virtualenv
  Downloading virtualenv-15.0.1-py2.py3-none-any.whl (1.8MB)
100% || 1.8MB 85kB/s 
Installing collected packages: virtualenv
Successfully installed virtualenv-15.0.1
root@62ae0c72d468:/# virtualenv test
Using base prefix '/usr'
New python executable in /test/bin/python3
Also creating executable in /test/bin/python
Installing setuptools, pip, wheel...done.
root@62ae0c72d468:/# source test/bin/activate
(test) root@62ae0c72d468:/# python
Python 3.5.1+ (default, Apr 17 2016, 16:14:06) 
[GCC 5.3.1 20160409] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 


the resulting "test" virtual environment is created correctly. So it would seem 
a problem of the Debian package and not of upstream virtualenv or pip.

Thanks a lot for maintaining this package,
steko

-- 
Stefano Costa @stekosteko
Editor, Journal of Open Archaeology Data



Bug#821223: Unable to create a virtualenv: invalid requirement: '_markerlib'

2016-04-17 Thread Stefano Costa
Package: virtualenv
Version: 15.0.1+ds-1
Followup-For: Bug #821223

Dear Maintainer,
as already reported, I can confirm that I encounter the same bug
and identical error message, and I am therefore unable to create
a working virtual environment.

All the best
steko

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages virtualenv depends on:
ii  python3 3.5.1-3
ii  python3-virtualenv  15.0.1+ds-1

virtualenv recommends no packages.

virtualenv suggests no packages.

-- no debconf information



Bug#819235: xdg-app: unable to install, missing dependencies

2016-03-25 Thread Stefano Costa
Package: xdg-app
Version: 0.5.0-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

I had been using xdg-app from the external repository provided by upstream.

However, disabling the upstream Debian repository makes the new package in
experimental uninstallable since both libgsystem0 and libostree-1-1 are not
present in the archive.

steko@spheniscus:~$ LC_ALL=C sudo apt install xdg-app
[sudo] password for steko: 
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 xdg-app : Depends: libgsystem0 (>= 2015.2) but it is not installable
   Depends: libostree-1-1 (>= 2016.1) but it is not installable
E: Unable to correct problems, you have held broken packages.

Thanks,
steko

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)

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



Bug#806710: qgis cannot be installed

2015-11-30 Thread Stefano Costa
Package: qgis
Severity: grave
Justification: renders package unusable

Dear Maintainer,
I recently found out that qgis was uninstalled (presumably by dist-upgrading), 
and it cannot be installed.


sudo apt-get install qgis
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 qgis : Depends: libgsl2 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.



Thanks,
steko

-- System Information:
Debian Release: stretch/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (100, 'experimental')
Architecture: amd64 (x86_64)

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



Bug#751294: chromium: Does not display any web page or settings (Aw, Snap)

2014-06-19 Thread Raphael Kubo da Costa
Hi all,

Given that GCC 4.9 is related here, I believe this is the same bug that
has caused problems for other distros that have switched to GCC 4.9.

The root cause is very likely to be
https://code.google.com/p/angleproject/issues/detail?id=651, which I
reported a while ago and has been fixed in Chromium trunk.

There is also a merge request for the fix to be merged into Chromium's
beta channel (M36) in
https://code.google.com/p/chromium/issues/detail?id=385729, but upstream
was reluctant to include this into M35 (the stable channel).

It might be useful to try applying the M36 patch into the M35 tarball
currently being packaged in Debian nonetheless to get rid of the
problem.


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



Bug#716676: Installs correctly

2013-09-16 Thread Stefano Costa
I can install correctly the package with python3.3 on unstable.

--
Stefano Costa
http://www.iosa.it/ Open Archaeology


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



Bug#665741: freevo: fails to install due to insserv rejecting the script header

2012-03-26 Thread A. Costa
Package: freevo
Version: 1.9.2b2-3
Followup-For: Bug #665741

Confirm.  Among other messages, my upgrade shows:

update-rc.d: error: insserv rejected the script header

HTH...


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

Kernel: Linux 3.2.0-2-686-pae (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages freevo depends on:
ii  adduser3.113+nmu1
ii  debconf [debconf-2.0]  1.5.42
ii  freevo-data1.9.2b2-3
ii  kbd1.15.3-7
ii  lsdvd  0.16-3+b1
ii  mplayer3:1.0~rc4+svn20120313-0.0
ii  mplayer2 [mplayer] 1:2.0~git20120313-0.1
ii  python 2.7.2-10
ii  python-freevo  1.9.2b2-3
ii  xinit  1.3.1-1

Versions of packages freevo recommends:
ii  cdparanoia 3.10.2+debian-10.1
ii  libxmltv-perl  0.5.61-1
ii  xine-ui0.99.7~hg20120125-1
ii  xmltv-util 0.5.61-1

Versions of packages freevo suggests:
ii  fbset  2.1-25
ii  fbxine none
ii  flac   1.2.1-6
ii  fonts-liberation [ttf-liberation]  1.07.2-2
ii  lame   1:3.99.5-0.0
ii  libdvdcss2 1.2.12-0.0
ii  matrox-tools   none
ii  mencoder   3:1.0~rc4+svn20120313-0.0
ii  nvram-wakeup   none
ii  ttf-liberation 1.07.2-2
ii  ttf-mscorefonts-installer  3.4
ii  vorbis-tools   1.4.0-1

-- debconf information:
* freevo/display: x11
  freevo/path_to_audio: /var/lib/freevo/audio
  freevo/path_to_image: /var/lib/freevo/image
* freevo/norm: ntsc
  freevo/title_image: Image folder
* freevo/chanlist: us-bcast
* freevo/geometry: 640x480
  freevo/title_audio: Audio folder
  freevo/path_to_recordings: /var/lib/freevo/recordings
  freevo/path_to_video: /var/lib/freevo/video
  freevo/title_video: Video folder
* freevo/services:



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



Bug#589796: [gscan2pdf-help] Can't save PDF with gscan2pdf

2010-07-25 Thread A. Costa
Package: gscan2pdf
Version: 0.9.32~1
Severity: normal


I have the same bug on my system, currently can save as .PNG, but not .PDFs.  
As advised here:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=589796#70

...I installed the log-able version, then ran:

gscan2pdf --log=/tmp/gscan2pdf_wont_save.log

Scanned a blank page, tried to save as a .PDF and quit.  The log
is attached.

Hope this helps...



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

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages gscan2pdf depends on:
ii  imagemagick  7:6.6.2.6-1 image manipulation programs
ii  libconfig-general-perl   2.48-1  Generic Configuration Module
ii  libforks-perl0.34-1  Perl module to emulate threads wit
ii  libgoo-canvas-perl   0.06-1  Perl interface to the GooCanvas
ii  libgtk2-ex-simple-list-perl  0.50-2  simple interface to Gtk2's complex
ii  libgtk2-imageview-perl   0.05-1  Perl bindings for the GtkImageView
ii  libhtml-parser-perl  3.65-1  collection of modules that parse H
ii  liblocale-gettext-perl   1.05-6  Using libc functions for internati
ii  liblog-log4perl-perl 1.28-1  A Perl port of the widely popular 
ii  libpdf-api2-perl 0.73-1  module for creating or modifying P
ii  libproc-processtable-perl0.45-1  Perl library for accessing process
ii  libreadonly-perl 1.03-2  Facility for creating read-only sc
ii  librsvg2-common  2.26.3-1SAX-based renderer library for SVG
ii  libsane-perl 0.03-1  Perl bindings for the SANE (Scanne
ii  libset-intspan-perl  1.14-1  Perl module to manage sets of inte
ii  libtiff-tools3.9.4-1 TIFF manipulation and conversion t
ii  perl-modules [libarchive-tar 5.10.1-13   Core Perl modules
ii  perlmagick   7:6.6.0.4-2 Perl interface to the ImageMagick 
ii  sane-utils   1.0.21-1API library for scanners -- utilit

Versions of packages gscan2pdf recommends:
pn  cuneiformnone  (no description available)
ii  djvulibre-bin3.5.22-9Utilities for the DjVu image forma
ii  gocr 0.48-1  A command line OCR
ii  libgtk2-ex-podviewer 0.18-1  Perl Gtk2 widget for displaying Pl
ii  sane 1.0.14-9scanner graphical frontends
pn  tesseract-ocrnone  (no description available)
ii  unpaper  0.3-1   post-processing tool for scanned p
ii  xdg-utils1.0.2+cvs20100307-1 desktop integration utilities from

gscan2pdf suggests no packages.

-- no debconf information


gscan2pdf_wont_save.log.gz
Description: GNU Zip compressed data


Bug#578026: should not migrate to testing before linux-2.6

2010-05-03 Thread A. Costa
Package: xserver-xorg-video-nouveau
Version: 1:0.0.15+git20100329+7858345-3
Severity: normal


Me too.  I read the new package list in 'Debian Project News', then
eagerly installed 'xserver-xorg-video-nouveau', and was chagrined to
read:

zgrep -m 1 -B 3 -A 1 -n support 
/usr/share/doc/xserver-xorg-video-nouveau/README.Debian
5-with the libdrm-nouveau package in Debian.  Unfortunately,
6-libdrm-nouveau and the kernel module are coupled very tightly, and you
7-may not be able to upgrade one without the other.  As of this writing,
8:supported kernels are the Debian 2.6.32 kernel, starting with
9-linux-image-2.6.32-4-$arch versions, and any 2.6.33 kernel.  Upstream

Supposing there are good reasons (not obvious to users) to have the
package not depend on a newer kernel; perhaps the Suggests or
Recommends fields could mention a newer kernel.

HTH...

-- Package-specific info:
/var/lib/x11/X.roster does not exist.

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

X server symlink status:
lrwxrwxrwx 1 root root 13 Apr 14  2006 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1725368 Apr 19 14:17 /usr/bin/Xorg

/var/lib/x11/xorg.conf.roster does not exist.

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: nVidia Corporation NV15DDR [GeForce2 Ti] 
(rev a4)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 929 Mar  9 20:50 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 1.0  (buildmeis...@builder63)  Thu Jan 28 16:14:36 
PST 2010



Section Monitor
Identifier Sony Multiscan 300sf
HorizSync   30.0 - 86.0
VertRefresh 48.0 - 150.0
ModeLine   1280x...@85hz(VESA) 148.5 1280 1344 1504 1728 960 961 964 
1011 +hsync +vsync
ModeLine   1024x...@85hz(VESA) 94.5 1024 1072 1168 1376 768 769 772 
808 +hsync +vsync
ModeLine   800x...@85hz(VESA) 563.0 800 832 896 1048 600 601 604 631 
+hsync +vsync
EndSection

Section Device
Identifier nVidia
 Driver nv
EndSection

Section Screen
Identifier Default Screen
Device nVidia
MonitorSony Multiscan 300sf
SubSection Display
Modes  1280x...@85hz(VESA) 1024x...@85hz(VESA) 
800x...@85hz(VESA)
EndSubSection
EndSection



Kernel version (/proc/version):
Linux version 2.6.32-3-686 (Debian 2.6.32-9) (m...@debian.org) (gcc version 
4.3.4 (Debian 4.3.4-8) ) #1 SMP Thu Feb 25 06:14:20 UTC 2010

Xorg X server log files on system:
-rw-r--r-- 1 root root 32757 Jul  2  2009 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 45869 May  3 16:59 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the xorg product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.7.6.901 (1.7.7 RC 1)
Release Date: 2010-04-12
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.26-2-amd64 i686 Debian
Current Operating System: Linux Arf.obligatory.org 2.6.32-3-686 #1 SMP Thu Feb 
25 06:14:20 UTC 2010 i686
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-3-686 
root=UUID=43a9899e-2b04-11d3-889e-a2b694121295 ro quiet
Build Date: 19 April 2010  06:12:31PM
xorg-server 2:1.7.6.901-3 (Cyril Brulebois k...@debian.org) 
Current version of pixman: 0.16.4
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Mon May  3 15:15:55 2010
(==) Using config file: /etc/X11/xorg.conf
(==) Using system config directory /usr/share/X11/xorg.conf.d
(==) No Layout section.  Using the first Screen section.
(**) |--Screen Default Screen (0)
(**) |   |--Monitor Sony Multiscan 300sf
(**) |   |--Device nVidia
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory /usr/share/fonts/X11/cyrillic does not exist.
Entry deleted from font path.
(==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
built-ins
(==) ModulePath set to /usr/lib/xorg/modules
(II) The server relies on udev to provide the list of input 

Bug#568858: gnome-mousetrap: doesn't work (opencv 1 → 2 problem?)

2010-02-09 Thread Stefano Costa
Il giorno mar, 09/02/2010 alle 00.32 +0100, Samuel Thibault ha scritto:
 
 Right, I got it too. Could you try the attached patch?  (Ignore the
 fact that the second hook may fail) 

OK, it works!

Now I just need to understand how to have it properly move the pointer
(unless there are further bugs, which I think not because there are no
errors in the console) :-)

Thanks,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


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


Bug#568858: gnome-mousetrap: doesn't work (opencv 1 → 2 problem?)

2010-02-08 Thread Stefano Costa
Subject: gnome-mousetrap: doesn't work (opencv 1 → 2 problem?)
Package: gnome-mousetrap
Version: 0.3+zgit2872572a-1
Justification: renders package unusable
Severity: grave

Hi,
gnome-mousetrap doesn't work for me. I see no image from webcam, the
mouse pointer doesn't move. The following error message is shown when
running in a terminal.

It may be a problem with the new OpenCV 2.0 library.

Ciao,
steko

st...@gibreel:~$ mousetrap 
Xlib.protocol.request.QueryExtension
DEBUG: mousetrap.mouse - GNOME desktop has been detected
DEBUG: mouseTrap - Settings have been loaded
DEBUG: mouseTrap - DBus Service has been started
DEBUG: scripts - Mousetrap holdProfile Profile has been loaded
ERROR: scripts - The Profile load failed
Traceback (most recent call last):
  File /usr/lib/pymodules/python2.5/mouseTrap/scriptHdlr.py, line 57, in 
_loadThirdProfiles
modes[prof.setName] = prof.Profile
AttributeError: 'module' object has no attribute 'Profile'
DEBUG: scripts - Mousetrap dragProfile Profile has been loaded
DEBUG: scripts - Mousetrap screenProfile Profile has been loaded
ERROR: mainGui - All arguments must be INT
ERROR: mainGui - All arguments must be INT
DEBUG: events - New Area Listener Added
DEBUG: events - New Area Listener Added
DEBUG: scripts - Profile Started
DEBUG: mouseTrap - MainGui has been started
DEBUG: ocvfw - cmStartCamera: Camera Started
DEBUG: mouseTrap - Camera Module has been started
DEBUG: mouseTrap - Events handler has been started
Traceback (most recent call last):
  File /usr/lib/pymodules/python2.5/mouseTrap/cam.py, line 142, in _checkImg
self.cmQueryCapture( flip = self.settings.getboolean( cam, flipImage ) )
  File /usr/lib/pymodules/python2.5/mouseTrap/ocvfw.py, line 273, in 
cmQueryCapture
self.img.origin = frame.origin
  File /usr/lib/pymodules/python2.5/opencv/cv.py, line 2097, in lambda
__setattr__ = lambda self, name, value: _swig_setattr(self, CvMat, name, 
value)
  File /usr/lib/pymodules/python2.5/opencv/cv.py, line 48, in _swig_setattr
return _swig_setattr_nondynamic(self,class_type,name,value,0)
  File /usr/lib/pymodules/python2.5/opencv/cv.py, line 41, in 
_swig_setattr_nondynamic
if method: return method(self,value)
RuntimeError:  openCV Error:
Status=The function/feature is not implemented
function name=CvMat_origin_get
error message=IplImage is replaced by CvMat in Python, so its fields 
are read-only
file_name=_cv.cpp
line=6080
DEBUG: events - Event's handler has been stoped



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

Kernel: Linux 2.6.32-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-mousetrap depends on:
ii  python   2.5.4-9 An interactive high-level
object-o
ii  python-opencv2.0.0-3+b1  Python bindings for the
computer v
ii  python-pyatspi   1.28.1-3Assistive Technology
Service Provi
ii  python-support   1.0.6   automated rebuilding
support for P
ii  python-xlib  0.14+20091101-1 Interface for Python to the
X11 Pr

gnome-mousetrap recommends no packages.

gnome-mousetrap suggests no packages.

-- no debconf information
-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


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


Bug#568858: gnome-mousetrap: doesn't work (opencv 1 → 2 problem?)

2010-02-08 Thread Stefano Costa
Il giorno lun, 08/02/2010 alle 23.05 +0100, Samuel Thibault ha scritto:
 Could you try to applied the attached patch?

Well, one step forward it seems: I can see my image, but it's still
(grabbed when the program starts and not refreshed apparently). See the
attached log, which has a different traceback.

Ciao,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology
st...@gibreel:~$ mousetrap 
Xlib.protocol.request.QueryExtension
DEBUG: mousetrap.mouse - GNOME desktop has been detected
DEBUG: mouseTrap - Settings have been loaded
DEBUG: mouseTrap - DBus Service has been started
DEBUG: scripts - Mousetrap holdProfile Profile has been loaded
ERROR: scripts - The Profile load failed
Traceback (most recent call last):
  File /usr/lib/pymodules/python2.5/mouseTrap/scriptHdlr.py, line 57, in _loadThirdProfiles
modes[prof.setName] = prof.Profile
AttributeError: 'module' object has no attribute 'Profile'
DEBUG: scripts - Mousetrap dragProfile Profile has been loaded
DEBUG: scripts - Mousetrap screenProfile Profile has been loaded
ERROR: mainGui - All arguments must be INT
ERROR: mainGui - All arguments must be INT
DEBUG: events - New Area Listener Added
DEBUG: events - New Area Listener Added
DEBUG: scripts - Profile Started
DEBUG: mouseTrap - MainGui has been started
DEBUG: ocvfw - cmStartCamera: Camera Started
DEBUG: mouseTrap - Camera Module has been started
DEBUG: mouseTrap - Events handler has been started
DEBUG: ocvfw - cmGetHaarPoints: detected some matches
DEBUG: ocvfw - cmGetHaarROIPoints: detected some matches
DEBUG: ocvfw - cmGetHaarPoints: detected some matches
DEBUG: ocvfw - cmGetHaarROIPoints: detected some matches
DEBUG: ocvfw - cmSetLKPoints: New LK Point Added
Traceback (most recent call last):
  File /usr/lib/pymodules/python2.5/mouseTrap/cam.py, line 152, in _checkImg
self.cmShowLKPoints()
  File /usr/lib/pymodules/python2.5/mouseTrap/ocvfw.py, line 202, in cmShowLKPoints
if not status[counter]:
TypeError: 'NoneType' object is unsubscriptable
DEBUG: events - Event's handler has been stoped



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


Bug#568304:

2010-02-04 Thread Stefano Costa

 These two seems to be low:
 
 AccelFactor = 4.48416e-44
 TrackstickSpeed = 4.62428e-44


They are low indeed, but they weren't with the previous version of this
package

AccelFactor = 0.00995223
TrackstickSpeed = 40

so something wrong is happening during upgrade (having to manually
update these values after upgrade is a bug).

Ciao,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


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


Bug#530880: dpkg: E: _cache-open() failed

2009-05-29 Thread Stefano Costa
Il giorno gio, 28/05/2009 alle 19.35 +0200, Raphael Hertzog ha scritto:
 
 It's not needed to file a bug on linux-image-2.6.29-2-amd64, it's the
 same issue that caused its failure to install.

Right. Thanks,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#530880: dpkg: E: _cache-open() failed

2009-05-28 Thread Stefano Costa
Subject: E: _cache-open() failed
Package: dpkg
Version: 1.15.2
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***

Opening synaptic, I get the following error message:


 E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to 
 correct the problem. 
 E: _cache-open() failed, please report.

dpkg --configure -a fails. I have attached an strace. I know there are
some broken packages in my system, but they were there also before
upgrading dpkg, so I don't know it this is related.

I can't really understand well what's the problem, HTH.

Ciao,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology

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

Kernel: Linux 2.6.29-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dpkg depends on:
ii  coreutils 7.3-1  The GNU core utilities
ii  libc6 2.9-10 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.21 Advanced front-end for dpkg

-- no debconf information

execve(/usr/bin/dpkg, [dpkg, --configure, -a], [/* 16 vars */]) = 0
brk(0)  = 0x1a42000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cf67000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cf65000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=117261, ...}) = 0
mmap(NULL, 117261, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f2d2cf48000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/libpthread.so.0, O_RDONLY)  = 3
read(3, \177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0\0\1\0\0\0\300W\0\0\0\0\0\0..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=125836, ...}) = 0
mmap(NULL, 2204512, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2d2cb31000
mprotect(0x7f2d2cb47000, 2093056, PROT_NONE) = 0
mmap(0x7f2d2cd46000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f2d2cd46000
mmap(0x7f2d2cd48000, 13152, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cd48000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/libc.so.6, O_RDONLY)= 3
read(3, \177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0\0\1\0\0\0\300\346\1\0\0\0\0\0..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1375536, ...}) = 0
mmap(NULL, 3482264, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f2d2c7de000
mprotect(0x7f2d2c927000, 2097152, PROT_NONE) = 0
mmap(0x7f2d2cb27000, 20480, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x149000) = 0x7f2d2cb27000
mmap(0x7f2d2cb2c000, 17048, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cb2c000
close(3)= 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cf47000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cf46000
arch_prctl(ARCH_SET_FS, 0x7f2d2cf46780) = 0
open(/dev/urandom, O_RDONLY)  = 3
read(3, \21\262\360\200\24; \301, 8)  = 8
close(3)= 0
mprotect(0x7f2d2cb27000, 16384, PROT_READ) = 0
mprotect(0x7f2d2cd46000, 4096, PROT_READ) = 0
mprotect(0x7f2d2cf68000, 4096, PROT_READ) = 0
munmap(0x7f2d2cf48000, 117261)  = 0
set_tid_address(0x7f2d2cf46810) = 2158
set_robust_list(0x7f2d2cf46820, 0x18)   = 0
futex(0x7fff34f6765c, FUTEX_WAKE_PRIVATE, 1) = 0
rt_sigaction(SIGRTMIN, {0x7f2d2cb36650, [], SA_RESTORER|SA_SIGINFO, 0x7f2d2cb3f7b0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7f2d2cb366e0, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7f2d2cb3f7b0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
brk(0)  = 0x1a42000
brk(0x1a63000)  = 0x1a63000
open(/etc/selinux/config, O_RDONLY)   = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=584, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f2d2cf64000
read(3, # This file controls the state o..., 4096) = 584
read(3, , 4096)   = 0
close(3)= 0
munmap(0x7f2d2cf64000, 4096)= 0
statfs(/selinux, {f_type=EXT2_SUPER_MAGIC, f_bsize=4096, f_blocks

Bug#530880: dpkg: E: _cache-open() failed

2009-05-28 Thread Stefano Costa
Il giorno gio, 28/05/2009 alle 16.18 +0200, Raphael Hertzog ha scritto:
 
 Report against synaptic I guess... and not dpkg.

 What about copying its (english) output instead of an strace ?
 
 Please run LANG=C dpkg --configure -a and show us what it says.

Sorry. I somehow misinterpreted the error message. Here's the output:


st...@gibreel:~$ LANG=C dpkg --configure -a
dpkg: requested operation requires superuser privilege
st...@gibreel:~$ sudo !!
sudo LANG=C dpkg --configure -a
[sudo] password for steko: 
Setting up initramfs-tools (0.93.2) ...
update-initramfs: deferring update (trigger activated)
Setting up linux-image-2.6.29-2-amd64 (2.6.29-5) ...
Running depmod.
Running update-initramfs.
update-initramfs: Generating /boot/initrd.img-2.6.29-2-amd64
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
W: Possible missing firmware /lib/firmware/tigon/tg3_tso5.bin for module tg3
W: Possible missing firmware /lib/firmware/tigon/tg3_tso.bin for module tg3
W: Possible missing firmware /lib/firmware/tigon/tg3.bin for module tg3
cpio: ./etc/udev/rules.d/libmtp8.rules: Cannot stat: No such file or directory
update-initramfs: failed for /boot/initrd.img-2.6.29-2-amd64
update-initramfs failed to create initrd image.
Failed to create initrd image.
dpkg: error processing linux-image-2.6.29-2-amd64 (--configure):
 subprocess installed post-installation script returned error exit status 2
Processing triggers for initramfs-tools ...
update-initramfs: Generating /boot/initrd.img-2.6.29-1-amd64
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
dpkg: warning: obsolete option '--print-installation-architecture', please use 
'--print-architecture' instead.
W: Possible missing firmware /lib/firmware/tigon/tg3_tso5.bin for module tg3
W: Possible missing firmware /lib/firmware/tigon/tg3_tso.bin for module tg3
W: Possible missing firmware /lib/firmware/tigon/tg3.bin for module tg3
cpio: ./etc/udev/rules.d/libmtp8.rules: Cannot stat: No such file or directory
update-initramfs: failed for /boot/initrd.img-2.6.29-1-amd64
dpkg: subprocess installed post-installation script returned error exit status 1

Again, not sure if this matters,but:

st...@gibreel:~$ sudo apt-get update
[...]
E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct 
the problem. 

Ciao,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#530880: dpkg: E: _cache-open() failed

2009-05-28 Thread Stefano Costa
Il giorno gio, 28/05/2009 alle 18.26 +0200, Raphael Hertzog ha scritto:

 So the problem is not at all dpkg related... it's just
 linux-image-2.6.29-2-amd64 that can't be configured because
 update-initramfs fails for some unknown reason. Reassigning it to
 update-initramfs.
 
 Do you have enough space in /boot ? What gives df -h /boot ?

st...@gibreel:~$ LANG=C df -h /boot
FilesystemSize  Used Avail Use% Mounted on
/dev/sda1 108G   94G  7.8G  93% /

looks ok ?

 This is probably the core of the problem. Do you have libmtp8 installed ?
 What gives the following commands ?
 
 ls -al /etc/udev/ /etc/udev/rules.d/
 dpkg -s libmtp8 libmtp7

libmtp8 is installed, but indeed there seems to be a broken symlink:

st...@gibreel:~$ ls -al /etc/udev/ /etc/udev/rules.d/
/etc/udev/:
totale 128
drwxr-xr-x   4 root root  4096 27 mag 10:10 .
drwxr-xr-x 154 root root 12288 28 mag 12:35 ..
drwxr-xr-x   2 root root  4096  8 ago  2008 .dev
-rw-r--r--   1 root root92 17 giu  2008 hdparm.rules
-rw-r--r--   1 root root   297 10 set  2008 kino.rules
-rw-r--r--   1 root root 75443 15 apr 15:58 libgphoto2.rules
-rw-r--r--   1 root root   397  8 ago  2008 links.conf
-rw-r--r--   1 root root   949 19 ago  2007 pcmcia.rules
drwxr-xr-x   2 root root  4096 27 mag 10:25 rules.d
-rw-r--r--   1 root root   269 26 mar 22:35 udev.conf
-rw-r--r--   1 root root   590 27 gen  2008 xen-backend.rules

/etc/udev/rules.d/:
totale 116
drwxr-xr-x 2 root root  4096 27 mag 10:25 .
drwxr-xr-x 4 root root  4096 27 mag 10:10 ..
[...]
lrwxrwxrwx 1 root root16  6 mag 13:53 libmtp8.rules - ../libmtp8.rules

/etc/udev/rules.d/libmtp8.rules points to ../libmtp8.rules which is not
there.

Ciao,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#530880: dpkg: E: _cache-open() failed

2009-05-28 Thread Stefano Costa
Il giorno gio, 28/05/2009 alle 19.02 +0200, Raphael Hertzog ha scritto:
 
 What version of libmtp8 do you have ?

0.3.7-4

 Because this sounds similar to #527206 fixed in 0.3.7-5.

Indeed. I installed 0.3.7-7 manually and things seem ok (I'll file a
separate bug about linux-image-2.6.29-2-amd64).

Thanks,
steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#521898:

2009-04-02 Thread Stefano Costa

 Please either:
 - remove it and restart.
 - run with --gst-disable-segtrap and debug.
 Could not initialize GStreamer: Error re-scanning registry , child terminated 
 by signal

The same happens also with totem. I installed
gstreamer0.10-plugins-bad-dbg and totem-dbg, but to no avail.

st...@gibreel:~/Video/2009$ totem --debug  zanini.ogg 

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib/gstreamer-0.10/libgstladspa.so

Please either:
- remove it and restart.
- run with --gst-disable-segtrap and debug.
Errore nel ri-scansionare il registro , child terminated by signal
Eseguire totem --help per vedere un elenco completo delle opzioni a 
riga di comando.

st...@gibreel:~/Video/2009$ totem --debug --gst-disable-segtrap 
zanini.ogg 
Errore nel ri-scansionare il registro , child terminated by signal
Eseguire totem --help per vedere un elenco completo delle opzioni a 
riga di comando.

Cheers,
Steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#522177: pulseaudio: audio is not working with pa 0.9.15 (except adobe flash)

2009-04-01 Thread Stefano Costa
Subject: pulseaudio: audio is not working with pa 0.9.15 (except adobe flash)
Package: pulseaudio
Version: 0.9.15~test5-1
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***
I have updated pulseaudio to the experimental version 0.9.15test, but sound 
broke here on my Lenovo 3000 N200 laptop. Worked fine before with 0.9.14.

If I use totem or rhythmbox, pavumeter shows audio activity.

pavucontrol segfaults immediately after starting.

I have installed the -dbg packages but I don't know how to generate
usueful output.

Steko

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages pulseaudio depends on:
ii  adduser   3.110  add and remove users and groups
ii  consolekit0.3.0-2framework for defining and trackin
ii  libasound21.0.19-1   shared library for ALSA applicatio
ii  libasyncns0   0.3-1  Asyncronous name service query lib
ii  libc6 2.9-6  GNU C Library: Shared libraries
ii  libcap2   1:2.16-4   support for getting/setting POSIX.
ii  libdbus-1-3   1.2.12-1   simple interprocess messaging syst
ii  libflac8  1.2.1-1.2  Free Lossless Audio Codec - runtim
ii  libgdbm3  1.8.3-4GNU dbm database routines (runtime
ii  libhal1   0.5.11-8   Hardware Abstraction Layer - share
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libltdl7  2.2.6a-1   A system independent dlopen wrappe
ii  libogg0   1.1.3-5Ogg Bitstream Library
ii  liboil0.3 0.3.15-1   Library of Optimized Inner Loops
ii  libpolkit-dbus2   0.9-3  library for accessing PolicyKit vi
ii  libpolkit20.9-3  library for accessing PolicyKit
ii  libpulse0 0.9.15~test5-1 PulseAudio client libraries
ii  libsamplerate00.1.7-2audio rate conversion library
ii  libsm62:1.1.0-2  X11 Session Management library
ii  libsndfile1   1.0.19-2   Library for reading/writing audio 
ii  libspeexdsp1  1.2~rc1-1  The Speex extended runtime library
ii  libvorbis0a   1.2.0.dfsg-4   The Vorbis General Audio Compressi
ii  libvorbisenc2 1.2.0.dfsg-4   The Vorbis General Audio Compressi
ii  libwrap0  7.6.q-16   Wietse Venema's TCP wrappers libra
ii  libx11-6  2:1.2-1X11 client-side library
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 
ii  lsb-base  3.2-22 Linux Standard Base 3.2 init scrip

Versions of packages pulseaudio recommends:
ii  gstreamer0.10-pulseaudio  0.10.14-2  GStreamer plugin for PulseAudio
ii  libasound2-plugins1.0.19-2   ALSA library additional plugins
ii  padevchooser  0.9.3-2PulseAudio Device Chooser
ii  paprefs   0.9.6-2PulseAudio Preferences
ii  pulseaudio-esound-compat  0.9.15~test5-1 PulseAudio ESD compatibility layer
ii  pulseaudio-module-hal 0.9.15~test5-1 HAL device detection module for Pu
ii  pulseaudio-module-x11 0.9.15~test5-1 X11 module for PulseAudio sound se

Versions of packages pulseaudio suggests:
ii  paman 0.9.4-1PulseAudio Manager
ii  pavucontrol   0.9.7-1PulseAudio Volume Control
ii  pavumeter 0.9.3-1PulseAudio Volume Meter
ii  pulseaudio-utils  0.9.15~test5-1 Command line tools for the PulseAu

-- no debconf information
-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#522085: network-manager: nm-applet doesn't start. network is not managed

2009-03-31 Thread Stefano Costa
Subject: nm-applet doesn't start. network is not managed
Package: network-manager
Version: 0.7.0.99-1
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***
As in subject, nm-applet doesn't show in the GNOME panel and the 
network is not managed (i.e. I had to use /etc/network/interfaces to
enable a wired connection).

I can't really tell what's going on. This happened before I upgraded to
nm 0.7.0.99, but with 0.7.0.99 it's just the same.

Would you please give some advice on how to retrieve usuful information
to understand this annoying bug?

Best,
Steko

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages network-manager depends on:
ii  adduser3.110 add and remove users and
groups
ii  dbus   1.2.12-1  simple interprocess
messaging syst
ii  dhcp3-client   3.1.1-6   DHCP client
ii  hal0.5.11-8  Hardware Abstraction Layer
ii  ifupdown   0.7~alpha3high level tools to
configure netw
ii  libc6  2.9-6 GNU C Library: Shared
libraries
ii  libdbus-1-31.2.12-1  simple interprocess
messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess
messaging syst
ii  libgcrypt111.4.4-2   LGPL Crypto library -
runtime libr
ii  libglib2.0-0   2.20.0-2  The GLib library of C
routines
ii  libgnutls262.6.4-2   the GNU TLS library -
runtime libr
ii  libgpg-error0  1.6-1 library for common error
values an
ii  libhal10.5.11-8  Hardware Abstraction Layer
- share
ii  libnl1 1.1-5 library for dealing with
netlink s
ii  libnm-glib00.7.0.99-1network management
framework (GLib
ii  libnm-util10.7.0.99-1network management
framework (shar
ii  libpolkit-dbus20.9-3 library for accessing
PolicyKit vi
ii  libpolkit2 0.9-3 library for accessing
PolicyKit
ii  libtasn1-3 1.8-1 Manage ASN.1 structures
(runtime)
ii  libuuid1   1.41.3-1  universally unique id
library
ii  lsb-base   3.2-22Linux Standard Base 3.2
init scrip
ii  wpasupplicant  0.6.9-1   client support for WPA and
WPA2 (I
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library -
runtime

Versions of packages network-manager recommends:
ii  dnsmasq-base   2.47-3A small caching DNS proxy
and DHCP
ii  iptables   1.4.2-6   administration tools for
packet fi
ii  network-manager-gnome  0.7.0.99-1network management
framework (GNOM
ii  policykit  0.9-3 framework for managing
administrat
ii  ppp2.4.4rel-10.1 Point-to-Point Protocol
(PPP) - da

Versions of packages network-manager suggests:
ii  avahi-autoipd 0.6.24-3   Avahi IPv4LL network
address confi

-- no debconf information
-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#519148: gnucash: segfaults during startup

2009-03-14 Thread Stefano Costa
Il giorno mer, 11/03/2009 alle 17.40 +0100, Micha Lenk ha scritto:
 Hi Stefano,
 
 Stefano Costa wrote:
  Il giorno mar, 10/03/2009 alle 18.30 +0100, Micha Lenk ha scritto:
  Can you please run gnucash with Debugging enabled (by running the
  command gnucash --debug) and attach the resulting file
  /tmp/gnucash.trace to your reply?
  
  You find the gnucash.trace file attached here. Thanks for the *very*
  quick reply!
 
 Hmm, we need a stacktrace too. Can you please read
 http://wiki.gnucash.org/wiki/Stacktrace and provide a stacktrace?

I'm not entirely sure this is exactly the needed stacktrace, however
it's the output of bt run inside gdb:


#0  0x7f44672aec3e in gnucash_sheet_styles_set_dimensions ()
   from /usr/lib/gnucash/gnucash/libgncmod-register-gnome.so
#1  0x7f44672af738 in gnc_table_init_gui ()
   from /usr/lib/gnucash/gnucash/libgncmod-register-gnome.so
#2  0x7f4467730c88 in gnc_split_reg_new ()
   from /usr/lib/gnucash/libgnc-gnome.so.0
#3  0x7f446772cd2c in ?? () from /usr/lib/gnucash/libgnc-gnome.so.0
#4  0x7f44667f7dba in gnc_plugin_page_create_widget ()
   from /usr/lib/gnucash/gnucash/libgncmod-gnome-utils.so
#5  0x7f44667ed932 in gnc_main_window_open_page ()
   from /usr/lib/gnucash/gnucash/libgncmod-gnome-utils.so
#6  0x7f446772c21a in ?? () from /usr/lib/gnucash/libgnc-gnome.so.0
#7  0x7f44667f6841 in gnc_plugin_page_recreate_page ()
   from /usr/lib/gnucash/gnucash/libgncmod-gnome-utils.so
#8  0x7f44667f2e43 in gnc_main_window_restore_all_windows ()
   from /usr/lib/gnucash/gnucash/libgncmod-gnome-utils.so
#9  0x7f4467734120 in ?? () from /usr/lib/gnucash/libgnc-gnome.so.0
#10 0x7f44679a3a49 in ?? ()
   from /usr/lib/gnucash/gnucash/libgncmod-engine.so
#11 0x7f445f0eed3c in g_hook_list_marshal ()
from /usr/lib/libglib-2.0.so.0
#12 0x7f44679a4af8 in gnc_hook_run ()
   from /usr/lib/gnucash/gnucash/libgncmod-engine.so
#13 0x7f44667e2464 in ?? ()
---Type return to continue, or q return to quit---
   from /usr/lib/gnucash/gnucash/libgncmod-gnome-utils.so
#14 0x004035e4 in ?? ()
#15 0x7f446026b6df in scm_boot_guile () from /usr/lib/libguile.so.12
#16 0x0040332f in main ()

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#519148: gnucash: segfaults during startup

2009-03-14 Thread Stefano Costa
Il giorno sab, 14/03/2009 alle 12.15 +0100, Micha Lenk ha scritto:
 
 Your problem is probably related to packages from unstable which are
 newer than those in Debian Lenny.
 
 Can you reproduce your problem on a pure Debian Lenny system?

Not immediately. I have just my laptop (with unstable), so would using a
live CD be a good approach for getting a pure Lenny system?

Steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology


signature.asc
Description: Questa è una parte del messaggio firmata digitalmente


Bug#519148: gnucash: segfaults during startup

2009-03-10 Thread Stefano Costa
Subject: gnucash: segfaults during startup
Package: gnucash
Version: 2.2.6-2
Justification: renders package unusable
Severity: grave

*** Please type your report below this line ***
During startup, GNUCash segfaults and dies. In a gnome-terminal,
it gives the following output:

===
st...@gibreel:~$ gnucash
gnc.bin-Message: main: binreloc relocation support was disabled at
configure time.

Found Finance::Quote version 1.15
Segmentation fault
===

No matter which file I open (I have several files).

Best regards,
Steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnucash depends on:
ii  gconf2 2.24.0-7  GNOME configuration
database syste
ii  gnucash-common 2.2.6-2   A personal finance tracking
progra
ii  guile-1.6-libs 1.6.8-6.3 Main Guile libraries
ii  guile-1.6-slib 1.6.8-6.3 Guile SLIB support
ii  libaqbanking20 3.8.2-1   library for online banking
applica
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D
graphi
ii  libatk1.0-01.24.0-2  The ATK accessibility
toolkit
ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces
library
ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
ii  libc6  2.9-4 GNU C Library: Shared
libraries
ii  libcairo2  1.8.6-2   The Cairo 2D vector
graphics libra
ii  libcrypt-ssleay-perl   0.57-1+b1 Support for https protocol
in LWP
ii  libdate-manip-perl 5.54-1a perl library for
manipulating da
ii  libfinance-quote-perl  1.15-1Perl module for retrieving
stock q
ii  libfontconfig1 2.6.0-3   generic font configuration
library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine,
shared lib
ii  libgconf2-42.24.0-7  GNOME configuration
database syste
ii  libglade2-01:2.6.3-1 library to load .glade
files at ru
ii  libglib2.0-0   2.19.10-1 The GLib library of C
routines
ii  libgnome2-02.24.1-2  The GNOME 2 library -
runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented
display
ii  libgnomeprint2.2-0 2.18.6-1  The GNOME 2.2 print
architecture -
ii  libgnomeprintui2.2-0   2.18.4-1  GNOME 2.2 print
architecture User 
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0 1:2.24.0-2GNOME Virtual File System
(runtime
ii  libgoffice-0-4 0.4.2-4   Document centric objects
library -
ii  libgsf-1-114   1.14.11-2 Structured File Library -
runtime 
ii  libgtk2.0-02.15.5-2  The GTK+ graphical user
interface 
ii  libgtkhtml3.8-15   3.12.3-3  HTML rendering/editing
library - r
ii  libguile-ltdl-11.6.8-6.3 Guile's patched version of
libtool
ii  libgwenhywfar473.7.2-1   OS abstraction layer
ii  libice62:1.0.5-1 X11 Inter-Client Exchange
library
ii  libktoblzcheck1c2a 1.21-1library for verification of
accoun
ii  libofx41:0.9.0-3 library to support Open
Financial 
ii  liborbit2  1:2.14.16-0.1 libraries for ORBit2 - a
CORBA ORB
ii  libosp51.5.2-6   Runtime library for
OpenJade group
ii  libpango1.0-0  1.22.4-2  Layout and rendering of
internatio
ii  libpixman-1-0  0.14.0-1  pixel-manipulation library
for X a
ii  libpng12-0 1.2.35-1  PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline
parameters
ii  libsm6 2:1.1.0-2 X11 Session Management
library
ii  libx11-6   2:1.2-1   X11 client-side library
ii  libxcb-render-util00.3.3-2+b1utility libraries for X C
Binding 
ii  libxcb-render0 1.2-1 X C Binding, render
extension
ii  libxcb11.2-1 X C Binding
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  libxrender11:0.9.4-2 X Rendering Extension
client libra
ii  psfontmgr  0.11.10-0.2   PostScript font manager --
part of
ii  slib   3b1-3 Portable Scheme library
ii  x-ttcidfont-conf   32TrueType and CID fonts
configurati
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library -
runtime

Versions of packages gnucash recommends:
ii  gnucash-docs  2.2.0-3Documentation for gnucash,
a perso

Versions of packages gnucash

Bug#510221: totem-gstreamer: gstreamer fails to play any video file. totem crashes even with audio files.

2008-12-30 Thread Stefano Costa
Il giorno mar, 30/12/2008 alle 23.03 +0100, Sven Arvidsson ha scritto:
 
 Your video output is probably broken or misconfigured. 
 
 Try setting /system/gstreamer/0.10/default/videosink to ximagesink.

Ok, that makes a difference and I can see video.

Now, just because this was working until a few days ago and I didn't
touch the autodetect option until you asked me to do so, I'd say
there's probably either a regression in some related package or a
missing dependency for a more recent version of something.

Apart from that, ximagesink looks a bit less nice than xvimagesink. For
example:

st...@gibreel:~/Desktop$ gst-launch filesrc
location=mov004.mpeg2 ! decodebin2 ! ffmpegcolorspace !
deinterlace2 ! ximagesink

(gst-launch-0.10:1987): GStreamer-WARNING **: Failed to load
plugin '/usr/lib/gstreamer-0.10/libgstice.so':
libjinglep2pbase-0.3.so.0: cannot open shared object file: No
such file or directory
AVVERTIMENTO: pipeline errata: impossibile collegare
deinterlace20 a ximagesink0.

Thanks,
Steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology




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



Bug#510221: totem-gstreamer: gstreamer fails to play any video file. totem crashes even with audio files.

2008-12-30 Thread Stefano Costa
Il giorno mar, 30/12/2008 alle 23.48 +0100, Sven Arvidsson ha scritto:
 
 It's probably easiest to just try another video player, like MPlayer
 or Xine, and see if any of those have trouble with accelerated video
 (for mplayer use mplayer -vo xv file.mpeg).
 
 If not, it's a problem with GStreamer, otherwise it's probably a
 problem with your video driver, or Xorg.

Something like that, right. I had activated the compositing manager
feature in Metacity, and deactivating that solved the problem.

Don't know if this still counts as a bug, and which package has got it.

Cheers,
Steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology




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



Bug#510221: totem-gstreamer: gstreamer fails to play any video file. totem crashes even with audio files.

2008-12-30 Thread Stefano Costa
Il giorno mer, 31/12/2008 alle 00.18 +0100, Sven Arvidsson ha scritto:
 
 Right, that's a Xorg/video driver problem.
 
 Depending on what driver and acceleration method you use (usually xaa
 or exa) accelerated video won't work in a composited environment.
 
 See for example the last comment here,
 http://www.phoronix.com/forums/showpost.php?p=25717postcount=15
 
 It's probably best to reassign this bug report to the video driver
 you're using.

I know my video card is (or at least was some time ago) among the
blacklisted ones with Intel chipset. My video driver is
xorg-video-intel.

 Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller

Cheers,
Steko

-- 
Stefano Costa
http://www.iosa.it/ Open Archaeology




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



Bug#495684: /proc/fb is empty

2008-08-24 Thread Stefano Costa
I have checked and /proc/fb is empty even though I'm using a framebuffer
kernel driver.

Best,
Steko

-- 
Stefano Costa
http://www.iosa.it/




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



Bug#495684: Acknowledgement (xserver-xorg: no (Latin) characters and icons shown at login prompt and in the desktop)

2008-08-19 Thread Stefano Costa
Just wanted to add that I have also tried installing kdm and KDE - because I
thought it could be a GNOME/GTK+ related problem, but I got the same results.

However, qtconfig looks ok (i.e. menu labels, text in text areas etc all visible
and readable).

Best,
Steko

--
Stefano Costa
http://www.iosa.it/


This message was sent using IMP, the Internet Messaging Program.




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



Bug#483650: linux-image-2.6.25-2-686: 'Xen kernel' breaks 'nvidia-kernel-legacy-71xx-source'.

2008-06-28 Thread A. Costa
On Fri, 30 May 2008 09:50:12 -0400, Len Sorensen wrote:

 I am making a patch to fix the legacy driver.  Not a kernel problem.

About that patch, over on the 96xx branch, your patch is being used:

nvidia-kernel-legacy-96xx-source: Fails to compile with kernel 2.6.25
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477643

...so I was curious if a 71xx version was pending.

To anybody, I notice upstream has a patch:

Using NVIDIA Linux graphics drivers with Linux 2.6.25
http://www.nvnews.net/vbulletin/showthread.php?t=110088

...but it's not clear from the instructions there what the proper
'Debian way' to apply it is.   On the 96xx bug (#477643) L. Sorensen
put two patches, one for 'xen' and another for 96xx:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477643#12

...where the 96xx patch is identical to upstream's 96xx patch, and the 
'xen' is a general tweak for a Debian nv setup script 'usr/src/nv/conftest.sh'.

Therefore, upstream's 71xx and Sorensen's 'xen' patch together should
probably work.  But I'm not sure of what the Debian way to apply
those is... preferably it should be in the form of a foolproof
one-liner that any user can cut n' paste, but no complex 10-step
recipes that requires checking version numbers, deciding where to put
files, yadda yadda yadda.

Pseudo-code might look something like:

PATCHDIR=/tmp/foo; cd $PATCHDIR  wget upstream URLs  m-a 
pre-patch actions  patch whatever  m-a post-patch actions



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



Bug#483819: same issue with libcompizconfig0

2008-06-01 Thread Kyller Costa Gorgônio
I also confirm this bug. I'm with libcompizconfig0 0.7.4-2

I tryied removing it due to the version mismatch with compiz-gnome ,
but in this case I'll not have fusion-icon. :(

./kyller

-- 
|_|0|_|
|_|_|0|
|0|0|0|



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



Bug#483650: linux-image-2.6.25-2-686: 'Xen kernel' breaks 'nvidia-kernel-legacy-71xx-source'.

2008-05-30 Thread A. Costa
On Fri, 30 May 2008 11:21:18 +0200
maximilian attems [EMAIL PROTECTED] wrote:

 reassign nvidia-kernel-source
 stop

Sorry, too slow:

http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=7;bug=483650

  boaah not again, wrong package.
  please next time to a *little* reasearch, thanks

I sympathize, it gotta be annoying to get so many repeats.  Yet it was
done in good faith -- I always check the BTS for the package in
question:  in this case the page for 'linux-image-2.6.25-2-686' didn't
mention those other bugs.  OTOH, I don't always search the web for a
given Debian bug, as upstream (or other distos) bugs might not be
applicable to Debian.

It might be a question of how cross references should work, kinda like
the late 1970s M. Adler Britannica, which had no index; after
complaints they added an index in the '80s.  Maybe there's some
preventative way the BTS could be changed to warn users of recent
sweeping bugs like this one that are likely to effect a whole lot of
packages.  Or the BTS pages for packages with many variants like
'linux-image*' could make special mention of where to look for general
bugs.

 also you are no longer running a free os with the nvdia blob.
 sold your soul over and out

Sad but true, periodically recompiling buggy proprietary drivers is
like some Sisyphean task assigned by vengeful devils.

Note to fellow purgatorians.  The kludges here:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=481485#26

...soothed my sinful system.  



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



Bug#475924: Me too: console-data uninstallable when upgrading from 2:1.06-2 to 2:1.07-1

2008-04-14 Thread A. Costa
Package: console-data
Version: 2:1.07-1
Followup-For: Bug #475924


Same bug here.  'apt-get install console-data' reports:

Setting up console-data (2:1.07-1) ...
no template type specified at /usr/share/perl5/Debconf/Template.pm line 34, 
GEN0 chunk 10.
dpkg: error processing console-data (--configure):
 subprocess post-installation script returned error exit status 9
 Errors were encountered while processing:
  console-data
  E: Sub-process /usr/bin/dpkg returned an error code (1)

(Doesn't seem grave though, as everything else still seems to work.)

HTH...


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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages console-data depends on:
ii  debconf [debconf-2.0] 1.5.20 Debian configuration management sy

Versions of packages console-data recommends:
ii  console-common 0.7.75basic infrastructure for text cons
ii  console-tools  1:0.2.3dbs-65 Linux console and font utilities
ii  kbd-compat [kbd]   1:0.2.3dbs-65 Wrappers around console-tools for 

-- debconf information:
  console-data/keymap/qwerty/swedish/variant: Standard
  console-data/keymap/qwertz/serbian/standard/keymap: Standard
  console-data/keymap/azerty/layout: French
  console-data/keymap/qwerty/finnish/variant: Standard
  console-data/keymap/qwerty/portugese/standard/keymap: Standard
  console-data/keymap/qwerty/estonian/variant: Standard
  console-keymaps-at/keymap:
  console-data/keymap/qwerty/canadian/french/keymap: Standard
  console-data/keymap/qwertz/german/variant: Standard
  console-data/keymap/qwertz/slovene/standard/keymap: Standard
  console-data/keymap/azerty/french/with_euro__latin_9_/keymap: Standard
  console-data/keymap/qwertz/slovak/variant: Standard
  console-keymaps-usb/keymap:
  console-keymaps-acorn/keymap:
  console-keymaps-sun/keymap:
  console-data/keymap/ignored:
  console-data/keymap/azerty/belgian/wang/keymap: Standard
  console-data/keymap/qwerty/finnish/standard/keymap: Standard
  console-data/keymap/qwerty/lithuanian/variant: Standard
  console-data/keymap/qwertz/hungarian/variant: Standard
  console-data/keymap/qwerty/czech/variant: Standard
  console-data/keymap/qwerty/hungarian/standard/keymap: Standard
  console-data/keymap/qwerty/polish/standard/keymap: Diacritics with AltGr and 
Alt
  console-data/keymap/qwerty/canadian/variant: us
  console-data/keymap/dvorak/unknown/apple_usb/keymap: Standard
  console-data/keymap/qwerty/danish/standard/keymap: Standard
  console-data/keymap/qwerty/byelorussian/standard/keymap: Standard
  console-data/keymap/qwerty/japanese/variant: Standard
  console-data/keymap/qwerty/russian/variant: Standard
  console-data/keymap/qwerty/dutch/standard/keymap: Standard
  console-data/keymap/qwerty/japanese/pc_110/keymap: Standard
  console-data/keymap/azerty/french/with_euro__latin_15_/keymap: Standard
  console-data/keymap/azerty/belgian/variant: Standard
* console-data/keymap/policy: Don't touch keymap
  console-data/keymap/azerty/french/with_euro__latin_0_/keymap: Standard
  console-data/bootmap-md5sum: e6846fb67d9af04637910b4e7b7edc60
  console-data/keymap/azerty/french/same_as_x11__latin_9_/keymap:
  console-data/keymap/qwerty/estonian/standard/keymap: Standard
  console-data/keymap/qwertz/german/apple_usb/keymap: latin1
  console-data/keymap/azerty/french/variant: With Euro (latin 9)
  console-data/keymap/qwerty/lithuanian/standard/keymap: latin4
  console-data/keymap/qwertz/czech/variant: Standard
* console-data/keymap/family: qwerty
  console-data/keymap/qwertz/swiss/french/keymap: Standard
  console-data/keymap/dvorak/layout: Unknown
  console-data/keymap/qwerty/italian/apple_usb/keymap: Standard
  console-data/keymap/qwerty/norwegian/variant: Standard
  console-data/keymap/qwerty/british/variant: Standard
  console-data/keymap/qwerty/icelandic/standard/keymap: Standard
  console-data/keymap/qwertz/polish/standard/keymap:
  console-data/keymap/qwerty/us_american/apple_usb/keymap: Standard
  console-data/keymap/qwerty/serbian/variant: Standard
  console-data/keymap/template/variant:
  console-data/keymap/qwerty/greek/variant: Standard
  console-data/keymap/qwerty/polish/variant: Standard
  console-data/keymap/qwerty/latvian/variant: Standard
  console-data/keymap/dvorak/unknown/variant: Standard
  console-data/keymap/qwerty/hebrew/variant: Standard
  console-data/keymap/qwertz/hungarian/standard/keymap: Standard
  console-data/keymap/qwerty/norwegian/standard/keymap: Standard
  console-data/keymap/qwerty/norvegian/standard/keymap: Standard
  console-data/keymap/qwerty/macedonian/standard/keymap: unicode
  console-data/keymap/qwerty/spanish/standard/keymap: Standard
  console-data/keymap/qwerty/finnish/old__obsolete_/keymap: Standard
  

Bug#474060: nvidia-glx-legacy-71xx: uninstallable package version 71.86.04-1

2008-04-04 Thread A. Costa
Package: nvidia-glx-legacy-71xx
Version: 71.86.01-1
Followup-For: Bug #474060


Seconded.  Starting form a system with working GLX, I upgraded and did
all the right(?) stuff as described here:

http://tinyplanet.ca/~lsorense/debian/debian-nvidia-dri-howto.txt

...the result is that 'nvidia-glx-legacy-71xx' won't install:

% apt-get install nvidia-glx-legacy-71xx
{ ... }
The following packages have unmet dependencies:
  nvidia-glx-legacy-71xx: Depends: nvidia-glx but it is not going to be 
installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or 
specify a solution).

% apt-get -f install
{ ... }
The following packages will be REMOVED:
  nvidia-glx-legacy-71xx
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
After this operation, 9916kB disk space will be freed.
Do you want to continue [Y/n]? n
Abort.

The 'X' start message may help web searchers find this bug:

Error: API mismatch: the NVIDIA kernel module has version 71.86.04,
but this NVIDIA driver component has version 71.86.01.  Please make
sure that the kernel module and all NVIDIA driver components
have the same version.

My 'nvidia' related version info:

% for x in `dglob nvid` ; do printf %-39s $x ; dlocate -s $x | grep Vers 
; done
nvidia-xconfig Version: 1.0+20070502-1
nvidia-kernel-source   Version: 169.09-1
nvidia-glx-legacy-71xx Version: 71.86.01-1
nvidia-kernel-legacy-71xx-2.6.24-1-686 Version: 71.86.04-1+2.6.24-5
nvidia-kernel-legacy-71xx-source   Version: 71.86.04-1
nvidia-kernel-common   Version: 20051028+1-0.1

HTH...


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

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages nvidia-glx-legacy-71xx depends on:
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
pn  nvidia-kernel-lega none(no description available)
ii  x11-common 1:7.3+10  X Window System (X.Org) infrastruc
ii  xserver-xorg-core  2:1.4.1~git20080131-3 Xorg X server - core server

nvidia-glx-legacy-71xx recommends no packages.

-- no debconf information



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



Bug#453160: Whither debram?

2008-03-11 Thread A. Costa
On Mon, 10 Mar 2008 14:57:39 +
Thaddeus H. Black [EMAIL PROTECTED] wrote:

 This message is copied to A. Costa, who has a
 long-outstanding bug filed against the package and might
 be interested in the package's future (or, conceivably,
 might wish to take over its maintenance himself)

Flattering, but I'm not a Debian maintainer -- for me the whole brick 
mortar handshake web of trust thing won't work, I'm not a joiner,
don't know anybody in person, and live in a small town.  If it were
up to me I'd revise Debian to have a web of doubt, but that's another
matter entirely...

On maintaining 'debram':  you've done a good job, but dropping it is
the wrong approach, since it's your baby  credit.  In particular
'debram' isn't a finished work that only needs to be maintained,
it's a work in progress that requires authorial oversight, sculpting,
and steering -- Noah Webster, Roget, Bartlett, Brewer, et al, weren't
exactly creative artists, but their projects probably would have
fizzled without their respective tastes and good judgements.

Perhaps what's needed are ways of making the maintenance less work, or
virtually no work.  Maybe have some email server or 'wiki'-like
interface that users contributed to, scripts ran sanity checks on, then
the prospective data would be vetted sequentially by a series of
volunteers to guarantee the data was sound.  Disregarding for the moment
whatever time it would take to implement such measures...

Operations such an interface (invitation only at first) would do:

1) add new things, (items, cross refs).
2) move things around.
3) delete (or archive) things.
4) periodically monitor Debian packages and make a 'todo' list.

Sequential vetting model:

1) Pool of volunteer reviewers.  Maybe 9 or 10.  An
   upper limit to this number might prevent many 
   diverging opinions.

2) Changes are checked by three random reviewers, 'Y/N', sequentially.  
   (No reviewer vets their own stuff, except the maintainer.)

3) All three have backups, if they don't vote after 'n' days,
   their second votes.  Possibly thirds might be needed.

4) It passes that, it's in.  Scripts update 'debram'  post it.

5) Maintainer has retroactive veto, if desired.  

I'm modeling this after a dictionary/encyclopedia staff, with the
redundancy thrown in because nobody can do it full time. Later, if it
worked, more functions and fields could be added, e.g. stats, ratings,
etc.

Rule '2)' above might be too arbitrary.  Maybe multiple choice
questions like this:

package 'foo' most belongs in:

a) file utils
b) net utils
c) games
d) fill in the blank

Where one of the above is the proposed answer, and the other
two are picked at random.  I'm less sure if unanimity is as necessary
for such a method -- random users might even be good at succesive
iteratons of the above.

All this assumes the main time sink is the 'debram' catalog itself,
if Debian is growing too large for one man to survey.  If the time
problems are just for ordinary of maintenance, then AFAIK you could
deputize users as co-maintainers, to do little jobs.

HTH...



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



Bug#462069: #462069 cupsys: enabling printer sharing breaks the server config file

2008-02-17 Thread A. Costa
Seconded (or 3rd'ed or whatever).  After tweaking a few things with the CUPS
web server today, my '/etc/cups/cupsd.conf' had:

% grep DefaultAuthType '/etc/cups/cupsd.conf'
DefaultAuthType �c

...restarting the server failed:

% /etc/init.d/cupsys restart
Restarting Common Unix Printing System: cupsd
Message from [EMAIL PROTECTED] at Sun Feb 17 18:06:30 2008 ...
Arf cupsd: Unable to read configuration file '/etc/cups/cupsd.conf' - 
exiting!
cupsd: Child exited with status 1!

Did something in the web based config engine add the garbage?

NB: there's two bugs here.

1) Something adds garbage to 'cupsd.conf'

2) Vague error message.  Suggested revision:

Foobar cupsd: Garbage characters on line #11 of 
'/etc/cups/cupsd.conf' - exiting!

   A web search shows many users have been confused by the current 
   error message; I should open a new bug.

More detail:

% grep DefaultAuthType '/etc/cups/cupsd.conf' | hexdump -C
  44 65 66 61 75 6c 74 41  75 74 68 54 79 70 65 20  
|DefaultAuthType |
0010  90 ec 05 08 63 0a |c.|
0016

Commenting out the line allows CUPS to restart.

HTH...

(cupsys v 1.3.5-1+b1)





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



Bug#465573: education-logic-games : broken package

2008-02-14 Thread Stefano Costa

On gio, 2008-02-14 at 08:36 +0100, Andreas Tille wrote:
 For you I have the following hint that circumvents the problem:
 
 sudo mkdir -p /etc/cdd/education

After reading the #463838 bug report I already had found this
workaround, which worked. The next steps you pointed out were not
necessary on my machine to allow an upgrade of the package.

Thanks,
Steko

-- 
Stefano Costa
http://www.iosa.it Archeologia e Software Libero
Io uso Debian GNU/Linux!




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



Bug#425803: #425803 [FIXED 2007-11]: upgrade fails ... (still fails here)

2007-07-22 Thread A. Costa
On Sun, 15 Jul 2007 17:28:15 +0200
Frank Küster [EMAIL PROTECTED] wrote:

 I'm not sure what the latest advice in this report is, but it seems
 you need to put texlive-base first (which provides modes.mf),

...tried it, didn't work.

 or to
 run dpkg -i --force-confmiss on the packages separately, starting with
 texlive-base. 

Also that:

% for f in texlive-base_2007-10_all.deb 
texlive-base-bin_2007-12_i386.deb texlive-latex-base_2007-10_all.deb ; do dpkg 
-i --force-confmiss $f ; done

But no luck.
 
 Or simply try removing the packages for which the postinst was already
 run (even if it failed).

Which packages are these, (some or all)?  And what if I need them, do I
reinstall only to fail again?

Thanks for the advice, though I'm not a fan of the try this school of
help; in the long run it's better to know the reason why something
should work, why it fails, or how it's supposed to work, what it does.
Not coincidentally that information is more useful for the BTS public
record -- others may read this looking for clues to the same or similar
problems.  Even when try this advice works, it tends to expire
quickly, whereas the theory and underlying mechanics of a program
usually has a longer shelf life.



Bug#425803: #425803 [FIXED 2007-11]: upgrade fails ... (still fails here)

2007-07-07 Thread A. Costa
Package: texlive-base-bin
Version: 2007-12
Followup-For: Bug #425803


Though I've tried the fixing advice here:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=425803

...the package won't install:

% cd /var/cache/apt/archives
% dpkg --force-confmiss -i texlive-base-bin_2007-12_i386.deb 
texlive-base_2007-10_all.deb  texlive-latex-base_2007-10_all.deb(Reading 
database ... 197544 files and directories currently installed.)
Preparing to replace texlive-base-bin 2007-12 (using 
texlive-base-bin_2007-12_i386.deb) ...
{ etc...}
Setting up texlive-base-bin (2007-12) ...
Running mktexlsr. This may take some time... done.
Building format(s) --all.
This may take some time... 
fmtutil-sys failed. Output has been stored in
/tmp/fmtutil.nae14327
Please include this file if you report a bug.

dpkg: error processing texlive-base-bin (--install):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of texlive-base:
 texlive-base depends on texlive-base-bin (= 2007-8); however:
  Package texlive-base-bin is not configured yet.
dpkg: error processing texlive-base (--install):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of texlive-latex-base:
 texlive-latex-base depends on texlive-base (= 2007-7); however:
  Package texlive-base is not configured yet.
dpkg: error processing texlive-latex-base (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 texlive-base-bin
 texlive-base
 texlive-latex-base
% echo $?
1

Attached is the '/tmp/fmtutil.nae14327' file from the above output.

Hope this helps...


-- Package-specific info:
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files

##
 List of ls-R files

-rw-r--r-- 1 root root 648 Jul  7 10:41 /var/lib/texmf/ls-R
lrwxrwxrwx 1 root staff 25 Oct 17  2005 /usr/local/share/texmf/ls-R - 
/var/lib/texmf/ls-R-LOCAL
lrwxrwxrwx 1 root root 29 Jun 21 12:04 /usr/share/texmf/ls-R - 
/var/lib/texmf/ls-R-TEXMFMAIN
lrwxrwxrwx 1 root root 27 Jul  7 10:13 /usr/share/texmf-texlive/ls-R - 
/var/lib/texmf/ls-R-TEXLIVE
lrwxrwxrwx 1 root root 27 Jul  7 10:13 /usr/share/texmf-texlive/ls-R - 
/var/lib/texmf/ls-R-TEXLIVE
##
 Config files
lrwxrwxrwx 1 root root 20 Jun 21 12:04 /usr/share/texmf/web2c/texmf.cnf - 
/etc/texmf/texmf.cnf
-rw-r--r-- 1 root root 6036 Jul  7 10:41 /var/lib/texmf/web2c/fmtutil.cnf
-rw-r--r-- 1 root root 3128 Jul  7 10:41 /var/lib/texmf/web2c/updmap.cfg
-rw-r--r-- 1 root root 1835 Jul  7 10:41 
/var/lib/texmf/tex/generic/config/language.dat
##
 Files in /etc/texmf/web2c/
total 1
-rw-r--r-- 1 root root 283 Aug 16  2006 mktex.cnf
##
 md5sums of texmf.d
25bf3a257a0bedb5c67349c3eaff74af  /etc/texmf/texmf.d/05TeXMF.cnf
5f7f6652cc8b8071c9e4ea6ba9e9f0a1  /etc/texmf/texmf.d/15Plain.cnf
8a26468004b5ebc7ae9884740356c1d0  /etc/texmf/texmf.d/45TeXinputs.cnf
595ef1ea9fb3389b97c04ab819cbc795  /etc/texmf/texmf.d/45TeXinputs.cnf.dpkg-old
ea33127256c6a9f37145ae5b16fdb80c  /etc/texmf/texmf.d/55Fonts.cnf
afccf1d3f87057411166a77c58e00bd1  /etc/texmf/texmf.d/65BibTeX.cnf
9da7c1c7b1eaf06f941af91f48a23068  /etc/texmf/texmf.d/75DviPS.cnf
e36faa13563bdb46303b91ab3f6ea638  /etc/texmf/texmf.d/85Misc.cnf
7e8f87acdeba48edac16d851c77b9e75  /etc/texmf/texmf.d/90TeXDoc.cnf
30f4f13357c2761ed01a6a15f28725a5  /etc/texmf/texmf.d/95NonPath.cnf

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

Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages texlive-base-bin depends on:
ii  ed  0.2-20   The classic unix line editor
ii  libc6   2.5-11   GNU C Library: Shared libraries
ii  libkpathsea42007-12  TeX Live: path search library 

Bug#430079: 'scantv -h': Segmentation fault

2007-06-22 Thread A. Costa
Package: scantv
Version: 3.95.dfsg.1-3
Severity: grave
Justification: renders package unusable


% scantv ; echo $?
Segmentation fault
139
% scantv -h ; echo $?
Segmentation fault
139

Attached is the output of:

% strace -o /tmp/scantv.log scantv -h

Hope this helps...


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

Kernel: Linux 2.6.21-1-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages scantv depends on:
ii  libc6 2.5-11 GNU C Library: Shared libraries
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.15~beta5-2 PNG library - runtime
ii  libzvbi0  0.2.25-1   Vertical Blanking Interval decoder
ii  xawtv-plugins 3.95.dfsg.1-3  plugins for xawtv and motv
ii  zlib1g1:1.2.3-15 compression library - runtime

scantv recommends no packages.

-- debconf-show failed


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



Bug#338327: extent renaming

2007-04-03 Thread Costa danyelek
good intentions gone awry plain fraud
http://img444.imageshack.us/my.php?image=2dgc7.gif
Self Fixing Puppy scanning



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



Bug#402200: mysql-server-5.0 upgrade restart mysql even if it wasn't running and reinstall rc.d scripts

2006-12-08 Thread Georges Da Costa
Package: mysql-server-5.0
Version: 5.0.30-1
Severity: serious
Justification: Policy 9.3.2


After upgrading mysql-server-5.0 the mysql server is running
even if it was not before the upgrade. See bug #316321 and
#397446 for a patch used to correct the same problem with apache.

This is dangerous as it can make people vulnerable without
considering they are running a sql server (if they use a blank
password by instance)

 Moreover this package reinstall /etc/rc*.d/*mysql* even if the
user removed them which is a security risk too :

fakir:[archives]# ls /etc/rc*/*mysql*
ls: /etc/rc*/*mysql*: No such file or directory

fakir:[archives]# dpkg -i mysql-server-5.0_5.0.30-1_i386.deb
(Reading database ... 161354 files and directories currently installed.)
Preparing to replace mysql-server-5.0 5.0.30-1 (using 
mysql-server-5.0_5.0.30-1_i386.deb) ...
Stopping MySQL database server: mysqld.
Stopping MySQL database server: mysqld.
Unpacking replacement mysql-server-5.0 ...
Setting up mysql-server-5.0 (5.0.30-1) ...
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld.
Checking for corrupt, not cleanly closed and upgrade needing tables..

fakir:[archives]# ls /etc/rc*/*mysql*
/etc/rc0.d/K20mysql-ndb  /etc/rc2.d/S19mysql  /etc/rc4.d/S19mysql   
   /etc/rc6.d/K20mysql-ndb
/etc/rc0.d/K21mysql  /etc/rc2.d/S19mysql-ndb-mgm  
/etc/rc4.d/S19mysql-ndb-mgm  /etc/rc6.d/K21mysql
/etc/rc0.d/K21mysql-ndb-mgm  /etc/rc2.d/S20mysql-ndb  
/etc/rc4.d/S20mysql-ndb  /etc/rc6.d/K21mysql-ndb-mgm
/etc/rc1.d/K20mysql-ndb  /etc/rc3.d/S19mysql  /etc/rc5.d/S19mysql
/etc/rc1.d/K21mysql  /etc/rc3.d/S19mysql-ndb-mgm  
/etc/rc5.d/S19mysql-ndb-mgm
/etc/rc1.d/K21mysql-ndb-mgm  /etc/rc3.d/S20mysql-ndb  
/etc/rc5.d/S20mysql-ndb

thanks for reading
geo


-- 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.2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages mysql-server-5.0 depends on:
ii  adduser 3.100Add and remove users and groups
ii  debconf [debconf-2.0]   1.5.9Debian configuration management sy
ii  libc6   2.3.6.ds1-8  GNU C Library: Shared libraries
ii  libdbi-perl 1.53-1   Perl5 database interface by Tim Bu
ii  libgcc1 1:4.1.1-20   GCC support library
ii  libmysqlclient15off 5.0.30-1 mysql database client library
ii  libncurses5 5.5-5Shared libraries for terminal hand
ii  libreadline55.2-1GNU readline and history libraries
ii  libstdc++6  4.1.1-20 The GNU Standard C++ Library v3
ii  libwrap07.6.dbs-11   Wietse Venema's TCP wrappers libra
ii  lsb-base3.1-22   Linux Standard Base 3.1 init scrip
ii  mysql-client-5.05.0.30-1 mysql database client binaries
ii  mysql-common5.0.30-1 mysql database common files (e.g. 
ii  passwd  1:4.0.18.1-5 change and administer password and
ii  perl5.8.8-6.1Larry Wall's Practical Extraction 
ii  psmisc  22.3-1   Utilities that use the proc filesy
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages mysql-server-5.0 recommends:
ii  mailx1:8.1.2-0.20050715cvs-1 A simple mail user agent

-- debconf information:
  mysql-server-5.0/really_downgrade: false
* mysql-server-5.0/need_sarge_compat: false
  mysql-server-5.0/start_on_boot: true
  mysql-server/error_setting_password:
  mysql-server-5.0/nis_warning:
  mysql-server-5.0/postrm_remove_databases: false
  mysql-server-5.0/need_sarge_compat_done: true


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



Bug#386737: #386737: crashs on startup with syntax error in /usr/bin/reportbug

2006-09-10 Thread A. Costa
Package: reportbug
Version: 3.29.4
Followup-For: Bug #386737


I have the same bug... Jacob's fix works though.  In case the
maintainer is busy, attached is a perhaps superfluous patch for any
users who don't feel like typing.  HTH.

-- Package-specific info:
** Environment settings:
EDITOR=mcedit
EMAIL=[EMAIL PROTECTED]
INTERFACE=text

** /home/alfie/.reportbugrc:
reportbug_version 3.2
mode standard
ui text
realname A Costa
email [EMAIL PROTECTED]

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages reportbug depends on:
ii  python2.3.5-11   An interactive high-level object-o
ii  python-central0.5.5  register and build utility for Pyt

Versions of packages reportbug recommends:
pn  python-cjkcodecs | python-ico none (no description available)

-- no debconf information

--- /tmp/reportbug  2006-09-10 01:11:25.0 -0400
+++ /usr/bin/reportbug  2006-09-10 01:25:13.0 -0400
@@ -480,8 +480,8 @@
 if email_name != def_realname:
 print  fp, rn % email_name.encode(charset, 'replace')
 else:
-print  fp, '# '+(rn % email_name.encode(charset, 'replace')
-
+print  fp, '# '+(rn % email_name.encode(charset, 'replace'))
+
 if email_addy != def_email:
 print  fp, em % email_addy
 else:



Bug#373939: python2.3: Confirm #373939: Python2.3 Upgrading problem

2006-06-16 Thread A. Costa
Package: python2.3
Version: 2.3.5-14
Followup-For: Bug #373939


Confirmed here.  The same bug shows up on my system:

% dpkg -i /var/cache/apt/archives/python2.3_2.3.5-14_i386.deb 
(Reading database ... 180261 files and directories currently installed.)
Preparing to replace python2.3 2.3.5-14 (using 
.../python2.3_2.3.5-14_i386.deb) ...
Unpacking replacement python2.3 ...
Setting up python2.3 (2.3.5-14) ...
Traceback (most recent call last):
  File /usr/bin/pycentral, line 1365, in ?
main()
  File /usr/bin/pycentral, line 1359, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 1008, in run
pkg.set_default_runtime_from_version_info()
  File /usr/bin/pycentral, line 575, in 
set_default_runtime_from_version_info
self.default_runtime = get_runtime_for_version(versions[0])
TypeError: unindexable object
dpkg: error processing python2.3 (--install):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 python2.3

% echo $?
1

Here's something odd -- if I downgrade one version the error
is still there:

% dpkg -i /var/cache/apt/archives/python2.3_2.3.5-13_i386.deb 
(Reading database ... 180261 files and directories currently installed.)
Preparing to replace python2.3 2.3.5-14 (using 
.../python2.3_2.3.5-13_i386.deb) ...
Unpacking replacement python2.3 ...
Setting up python2.3 (2.3.5-13) ...
Traceback (most recent call last):
  File /usr/bin/pycentral, line 1365, in ?
main()
  File /usr/bin/pycentral, line 1359, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 1008, in run
pkg.set_default_runtime_from_version_info()
  File /usr/bin/pycentral, line 575, in 
set_default_runtime_from_version_info
self.default_runtime = get_runtime_for_version(versions[0])
TypeError: unindexable object
dpkg: error processing python2.3 (--install):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
python2.3

Usually downgrading fixes such things, but not in this instance.

Hope this helps...


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages python2.3 depends on:
ii  libbz2-1.01.0.3-2high-quality block-sorting file co
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdb4.3  4.3.29-5   Berkeley v4.3 Database Libraries [
ii  libncurses5   5.5-2  Shared libraries for terminal hand
ii  libreadline5  5.1-7  GNU readline and history libraries
ii  libssl0.9.8   0.9.8b-2   SSL shared libraries
ii  python-central0.4.16 register and build utility for Pyt
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages python2.3 recommends:
ii  python2.3-iconvcodec  1.1.2-2.2  Python universal Unicode codec, us

-- no debconf information


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



Bug#335958: #335958: drip segfaults

2005-10-27 Thread A Costa
Package: drip
Version: 0.8.3.2+0.9.0-rc3-7
Followup-For: Bug #335958


Same here:

% drip ; echo $?
Segmentation fault
139

(C. Thomas suggestion for downgrading results in a working 'drip' though.)

HTH...

-- 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.12-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages drip depends on:
ii  gdk-imlib11   1.9.14-24  imaging library for use with gtk
ii  liba52-0.7.4  0.7.4-1Library for decoding ATSC A/52 str
ii  libaa11.4p5-29   ascii art library
ii  libart2   1.4.2-25   The GNOME canvas widget - runtime 
ii  libartsc0 1.4.2-5aRts sound system C support librar
ii  libasound21.0.9-3ALSA library
ii  libaudio2 1.7-3  The Network Audio System (NAS). (s
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libavifile-0. 1:0.7.44.20051021-1shared libraries for AVI read/writ
ii  libbz2-1.01.0.2-10   high-quality block-sorting file co
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libdb33.2.9-22   Berkeley v3 Database Libraries [ru
ii  libdps1   6.8.2.dfsg.1-9 Display PostScript (DPS) client li
ii  libdvdread3   0.9.4-5.1  Simple foundation for reading DVDs
ii  libesd-alsa0  0.2.36-1   Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig 2.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-3  GCC support library
ii  libgdk-pixbuf 0.22.0-10  The GdkPixBuf image library, gtk+ 
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libglib2.0-0  2.8.3-1The GLib library of C routines
ii  libgnome321.4.2-25   The GNOME libraries
ii  libgnomesuppo 1.4.2-25   The GNOME libraries (Support libra
ii  libgnomeui32  1.4.2-25   The GNOME libraries (User Interfac
ii  libgtk1.2 1.2.10-18  The GIMP Toolkit set of widgets fo
ii  libice6   6.8.2.dfsg.1-9 Inter-Client Exchange library
ii  libjasper-1.7 1.701.0-2  The JasPer JPEG-2000 runtime libra
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  liblcms1  1.13-1 Color management library
ii  libmad0   0.15.1b-2.1MPEG audio decoder library
ii  libmagick96:6.2.4.5-0.2  Image manipulation library
ii  libmpeg2-40.4.0b-2.3 MPEG1 and MPEG2 video decoder libr
ii  libncurses5   5.5-1  Shared libraries for terminal hand
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-5.3 Simple DirectMedia Layer
ii  libslang2 2.0.4-7The S-Lang programming library - r
ii  libsm66.8.2.dfsg.1-9 X Window System Session Management
ii  libstdc++64.0.2-3The GNU Standard C++ Library v3
ii  libsvga1  1:1.4.3-22 console SVGA display libraries
ii  libtiff4  3.7.4-1Tag Image File Format (TIFF) libra
ii  libx11-6  6.8.2.dfsg.1-9 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-9 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxi66.8.2.dfsg.1-9 X Window System Input extension li
ii  libxinerama1  6.8.2.dfsg.1-9 X Window System multi-head display
ii  libxml2   2.6.22-1   GNOME XML library
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  libxt66.8.2.dfsg.1-9 X Toolkit Intrinsics
ii  libxv16.8.2.dfsg.1-9 X Window System video extension li
ii  libxxf86dga1  6.8.2.dfsg.1-9 X Direct Graphics Access extension
ii  libxxf86vm1   6.8.2.dfsg.1-9 X Video Mode selection library
ii  xlibs 6.8.2.dfsg.1-9 X Window System client libraries m
ii  zlib1g1:1.2.3-6  compression library - runtime

drip recommends no packages.

-- no debconf information


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



Bug#325188: libflash-mozplugin: firefox pops off

2005-10-24 Thread A Costa
Package: libflash-mozplugin
Version: 0.4.13-4
Followup-For: Bug #325188


I installed 'libflash-mozplugin' today and started getting this bug, and
NOT just in 'firefox' -- also 'mozilla', 'galeon', and 'epiphany' too. 
In every instance (see below), I'd get the imdb home page, type anything
in its search box, hit enter, and then the browser would pop off,
cease, or crash:

% galeon www.imdb.com

(galeon:4708): Gdk-WARNING **: gdk_property_get(): length value has wrapped 
in calculation (did you pass G_MAXLONG?)
NP_Initialize
New
open dsp: Device or resource busy
SetWindow
SetWindow
SetWindow
Destroy
The program 'galeon' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadShmSeg (invalid shared segment parameter)'.
  (Details: serial 30 error_code 169 request_code 148 minor_code 2)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

% firefox www.imdb.com
NP_Initialize
New
SetWindow
SetWindow
SetWindow
NewStream
WriteReady
Write
DestroyStream
Destroy
The program 'Gecko' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadShmSeg (invalid shared segment parameter)'.
  (Details: serial 30 error_code 169 request_code 148 minor_code 2)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

% mozilla www.imdb.com

(Gecko:6518): Gdk-WARNING **: gdk_property_get(): length value has wrapped 
in calculation (did you pass G_MAXLONG?)
NP_Initialize
New
SetWindow
SetWindow
SetWindow
NewStream
WriteReady
Write
DestroyStream
Destroy
The program 'Gecko' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadShmSeg (invalid shared segment parameter)'.
  (Details: serial 30 error_code 169 request_code 148 minor_code 2)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

% epiphany www.imdb.com

(epiphany:6595): Gdk-WARNING **: gdk_property_get(): length value has 
wrapped in calculation (did you pass G_MAXLONG?)
NP_Initialize
New
open dsp: Device or resource busy
SetWindow
SetWindow
SetWindow
NewStream
WriteReady
Write
DestroyStream
Destroy
The program 'epiphany' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadShmSeg (invalid shared segment parameter)'.
  (Details: serial 30 error_code 169 request_code 148 minor_code 2)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)

After the above errors, I unstalled, (purged) 'libflash-mozplugin', and
then every browser worked fine.

Just to test it, I installed 'libflash-mozplugin' again, and every browser
crashed just as before.


Hope this helps...


-- 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.12-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)


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



Bug#326507: The plugin makes Firefox crash very often

2005-10-22 Thread A Costa
Package: mozilla-mplayer
Version: 3.05-1
Followup-For: Bug #326507


Just a note to confirm that I see the same bug on this system (not my
usual one).  Nothing new to add other than its system data below.

HTH...

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-586tsc
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US)

Versions of packages mozilla-mplayer depends on:
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.2-2   GCC support library
ii  libglib2.0-0 2.8.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.8-1 The GTK+ graphical user interface 
ii  libice6  6.8.2.dfsg.1-7  Inter-Client Exchange library
ii  libpango1.0-01.8.2-3 Layout and rendering of internatio
ii  libsm6   6.8.2.dfsg.1-7  X Window System Session Management
ii  libstdc++6   4.0.2-2 The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-7  X Window System miscellaneous exte
ii  libxpm4  6.8.2.dfsg.1-7  X pixmap library
ii  libxt6   6.8.2.dfsg.1-7  X Toolkit Intrinsics
ii  mozilla-firefox  1.0.6-5 lightweight web browser based on M
ii  mplayer-nogui [mplayer]  1:1.0-pre6-0.1  The Ultimate Movie Player For Linu
ii  xlibs6.8.2.dfsg.1-7  X Window System client libraries m

mozilla-mplayer recommends no packages.

-- no debconf information


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



Bug#328704: libexif-gtk5: dependency problem with libexif-gtk4

2005-09-26 Thread A Costa
Package: libexif-gtk5
Followup-For: Bug #328704


Said Mark Robinson [EMAIL PROTECTED]:

 Removing libexif-gtk4 (which gtkam depends on) and then reinstalling
 gtkam brings things to rights.

That didn't work on my system, I had to remove 'gtkam' too.
This works:

% apt-get remove libexif-gtk4 gtkam ; apt-get install gtkam


Hope this helps...

-- 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.12-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)


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



Bug#323983: cron: bashism in /etc/cron.daily/standard

2005-08-20 Thread Alfie Costa
I get the same bug, since 'dash' is my default scriping shell.  Attached
is a patch for '/etc/cron.daily/standard'.

Hope this helps...


--- /etc/cron.daily/standard	2005-08-11 03:06:18.0 -0400
+++ /tmp/standard	2005-08-20 16:52:03.0 -0400
@@ -62,7 +62,7 @@
 df -P --type=ext2 --type=ext3 --type=xfs |
 awk '/\/dev\// { print }' | sed -e 's/ [[:space:]]*/ /g'  |
 while read mount block used avail perc mp; do
-	[ $mp == / ]  mp=
+	[ $mp = / ]  mp=
 	echo $mp/lost+found
 done |
 while read lfdir; do


Bug#303352: trouble with 'apropos' 'tea'

2005-05-11 Thread A Costa
Package: tea
Version: 9.0-1
Followup-For: Bug #303352


It's the curse of 'dak'.  The man page still thinks 'teaed' is called 'tea'.

  % apropos ^tea | grep text
  tea (1)  - small text editor for gnome2
  teaed (1)- small text editor for gnome2

Any 'tea' page?

  % man tea | wc
  No manual entry for tea
0   0   0

Howbout 'teaed'?

  % man teaed | wc
  33 1261214

And how does it start?

  man teaed | head | nl | sed '/^ *$/d'
   1  TEA(1)
  TEA(1)
   2  NAME
   3 tea - small text editor for gnome2
   4  SYNOPSIS
   5 tea  files

...which is why 'apropos' still lists 'tea'.  It's a pity too, 
tea is a much nicer name than teaed.  Maybe a separator 
or some capitals would improve its look:  tea.ed, 
tea-ed, teaED, teaEd, teaE, tea-argh, ... 

HTH...

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to C)

Versions of packages tea depends on:
ii  libaspell150.60.2+20050121-2 The GNU Aspell spell-checker runti
ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
ii  libc6  2.3.2.ds1-21  GNU C Library: Shared libraries an
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgtk2.0-02.6.4-2   The GTK+ graphical user interface 
ii  libpango1.0-0  1.8.1-1   Layout and rendering of internatio

-- no debconf information


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



Bug#305246: Patch for #305246 mozilla-browser: mozilla doesn't start: syntax error

2005-04-18 Thread Alfie Costa
Attached is a diff/patch for '/usr/bin/mozilla-suite' in mozilla-browser
v2:1.7.7-1.

HTH...

--- /usr/bin/mozilla	2005-04-18 05:46:54.0 -0400
+++ /tmp/mozilla-suite.patch	2005-04-18 19:16:54.669493433 -0400
@@ -69,7 +69,7 @@
 	P=`fuser /dev/dsp 21 | sed -e 's#^/dev/dsp:##' `
 	if [ -n $P ]; then
 		if echo $P | xargs ps -p | grep esd /dev/null 21; then MOZILLA_DSP=esddsp; 
-		elif echo $P | xargs ps -p | grep arts /dev/null 21; then MOZILLA_DSP=artsdsp; fi
+		elif echo $P | xargs ps -p | grep arts /dev/null 21; then MOZILLA_DSP=artsdsp;
 		elif echo $P | xargs ps -p | grep rplayd /dev/null 21; then MOZILLA_DSP=rplaydsp; fi
 	fi
 elif [ $MOZILLA_DSP = none ];then


Bug#292569: kdelibs-data: conflicts with openoffic.org

2005-01-28 Thread Matías Costa
El Jueves 27 Enero 2005 23:25, Robert Waldner escribió:
 Package: kdelibs-data
 Version: 4:3.1.5-1
 Severity: serious
 Justification: unkown


 Whilst installing amarok, I encountered the following error:

 Unpacking kdelibs-data (from .../kdelibs-data_4%3a3.3.2-1_all.deb) ...
 dpkg: error processing
 /var/cache/apt/archives/kdelibs-data_4%3a3.3.2-1_all.deb (--unpack):
  trying to overwrite
  `/usr/share/mimelnk/application/vnd.sun.xml.calc.desktop', which is
  also in package openoffice.org

 Installed is openoffice.org 1.0.3-2, on a mixed stable/testing/unstable
 system.

This is solved in newer openoffice.org packages. Just upgrade.



Bug#289646: kbabel: crash with some .po file

2005-01-19 Thread Matas Costa
El Martes 18 Enero 2005 14:14, Steve Langasek escribió:
 tags 289646 experimental
 thanks

 Matias,

 I am not able to reproduce this bug using the packages in sarge.  Can you
 please downgrade kdelibs4 on your system to the version in unstable, to
 confirm whether this bug still exists for you?

apt-get kdelibs4/unstable kdelibs-bin/unstable. The problem is still there.

 Thanks,



Bug#289646: kbabel: crash with some .po file

2005-01-19 Thread Matías Costa
El Miércoles 19 Enero 2005 01:08, Adeodato Simó escribió:
 reassign 289646 kdelibs4
 tags 289646 - experimental
 tags 289646 + sid
 thanks

 * Matías Costa [Mon, 10 Jan 2005 11:33:09 +0100]:

 Hi Matías,

  kbabel crashes (SIGSEGV) with certain entries. This makes imposible to
  work. You can find a file with this problem at
 
  http://webs.ono.com/uucp/knewsticker_crash.po
 
  Open the file, go to entry 98 (Crtl+g). Try to save or move to other
  entry.

   After some investigations, it seems that the crash is libkspell
   related. Can you tell us your settings under KControl - KDE
   Components - Spell checker? And to confirm that is really that: what
   happens if you chmod -x /usr/bin/[ai]spell?

Nothing, the problems is still there. The same with ispell or aspell, with 
utf-8 or iso-1889-15. But you are right, without automatic spell check kbabel 
does not crash.

 * Steve Langasek [Tue, 18 Jan 2005 05:14:14 -0800]:
  I am not able to reproduce this bug using the packages in sarge.  Can you
  please downgrade kdelibs4 on your system to the version in unstable, to
  confirm whether this bug still exists for you?

   Seems to me that the version of kdelibs4 in sarge is not affected. The
   bogus version has hit unstable, though. Reassigning and tagging
   accordingly.

   Thanks.



Bug#289904: kmail: unable to write a new message

2005-01-13 Thread Matas Costa
El Martes, 11 de Enero de 2005 19:31, Markus escribió:
 Package: kmail
 Version: 4:3.3.1-3
 Severity: grave
 Justification: renders package unusable

 Well, I used kmail for a long time, but today (the first time after the
 3.3 update) I tried to send a mail. But when I try to write a mail (new
 mail, answer a mail, forward,...) kmail just freezes. On stderr it
 writes only this line for approx. 34 times, but when I try to write a
 mail, nothing is printed:
 kmail: WARNING: QuotedPrintableDecoder: \x0b illegal character in input
 stream! Ignoring.
 After that, nothing happens, no unusual activities... till now I found
 no way to write a mail in kmail...

 kmail 1.7.1 from kde 3.3.1

I am not expert, but I believe it's a dcop / ice issue. Please, logout and 
shutdown X (/etc/init.d/kdm stop, or gdm,xdm). Then remove :

rm ~/.DCOP* 
rm ~/.ICE*
rm -R /tmp/*

This last will remove all witch belongs to your user.

Try again. If it's broken, try with a new user. If again is broken... tell it