Bug#390387: regression: 1.002 release is actually 0.22

2006-09-30 Thread Kees Cook
Package: libdevice-serialport-perl
Version: 1.002-0.3
Severity: important


1.002 of device serial port is actually version 0.22!?  Looking at the diff
file, it replaces SerialPort.pm almost entirely with the version from
0.22. That's kind of a bug. :)  Dependancies are failing since they
(correctly) detect that 0.22 is installed, not 1.002.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-23-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libdevice-serialport-perl depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  perl 5.8.8-6.1   Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.8]5.8.8-6.1   The Pathologically Eclectic Rubbis

libdevice-serialport-perl recommends no packages.

-- no debconf information


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



Bug#390389: seahorse: empty package on several architectures [sudo and $(PWD)]

2006-09-30 Thread Niko Tyni
Package: seahorse
Version: 0.9.5-2
Severity: grave
Justification: renders package unusable
Tags: patch

Hi,

as seen on packages.debian.org [1], your package is empty on alpha,
mips and mipsel. These are the architectures whose buildds use sudo
instead of fakeroot.

The problem is that debian/rules is installing files into $(PWD)/debian,
but $(PWD) is unset when building with sudo. A proposed fix is to
use $(CURDIR), which is set by make, instead of $(PWD), which is set
by the shell and filtered out by sudo.

[1] http://packages.debian.org/unstable/gnome/seahorse

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#390391: amavisd-new-milter: empty package on several architectures [sudo and $(PWD)]

2006-09-30 Thread Niko Tyni
Package: amavisd-new-milter
Version: 1:2.4.2-1
Severity: grave
Justification: renders package unusable
Tags: patch

Hi,

as seen on packages.debian.org [1], your package is missing the actual
binaries on alpha, mips and mipsel. These are the architectures whose
buildds use sudo instead of fakeroot.

The problem is that debian/rules is installing files into $(PWD)/debian,
but $(PWD) is unset when building with sudo. A proposed fix is to
use $(CURDIR), which is set by make, instead of $(PWD), which is set
by the shell and filtered out by sudo.

[1] http://packages.debian.org/unstable/mail/amavisd-new-milter

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#390296: sun-java5-bin: Fails to install: Could not create the Java virtual machine.

2006-09-30 Thread Sam Morris
severity 390296 important
thanks

It turns out this was caused by having too low an RLIMIT_AS ulimit (512
MB). Currently, 1024 MB is sufficient for the package to install
successfully.

-- 
Sam Morris
http://robots.org.uk/

PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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


Bug#390339: upgrade of initscripts fails when no tmpfs is mounted (sid)

2006-09-30 Thread Petter Reinholdtsen

[Ingo Juergensmann]
 Apparently initscripts assumes the existance of tmpfs:

Yes, it does, to mount /dev/shm/ during boot among other things, and
recently to mount /lib/init/rw/.  Is your kernel missing tmpfs
support?  If this is the case, do this patch work?  How is /dev/shm/
mounted on your system if tmpfs isn't supported?

Index: debian/initscripts/postinst
===
--- debian/initscripts/postinst (revision 993)
+++ debian/initscripts/postinst (working copy)
@@ -187,9 +187,11 @@

 #
 # Make sure packages needing a writable tmpfs available can depend on
-# initscripts version 2.86.ds1-27 or newer to get it.
+# initscripts version 2.86.ds1-27 or newer to get it.  Skip it if the
+# system do not support tmpfs
 #
 if dpkg --compare-versions $PREV_VER lt 2.86.ds1-27 \
+grep -E -qs tmpfs\$ /proc/filesystems \
 [ ! -f /lib/init/rw/.ramfs ]  ! chrooted ; then
[ -f /etc/default/tmpfs ]  . /etc/default/tmpfs

Friendly,
-- 
Petter Reinholdtsen


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



Bug#390392: breaks python2.4-minimal install

2006-09-30 Thread Joey Hess
Package: python-gst0.10
Version: 0.10.5-4
Severity: grave

I'm upgrading a system from the unstable of approximatly 10 months ago to
current unstable.

Setting up python2.4-minimal (2.4.3-8) ...
Linking and byte-compiling packages for runtime python2.4...
Compiling /usr/share/gst-python/0.10/examples/bps.py ...
Sorry: IndentationError: ('expected an indented block', 
('/usr/share/gst-python/0.10/examples/bps.py', 114, 6, \tprint 'buffers must 
be higher than 0'\n))
Compiling /usr/share/gst-python/0.10/examples/vorbisplay.py ...
Sorry: IndentationError: ('expected an indented block', 
('/usr/share/gst-python/0.10/examples/vorbisplay.py', 125, 9, '\tpass\n'))
pycentral: pycentral rtinstall: package python-gst0.10: error byte-compiling 
files (14)
pycentral rtinstall: package python-gst0.10: error byte-compiling files (14)
dpkg: error processing python2.4-minimal (--configure):
 subprocess post-installation script returned error exit status 1

The first code block in question is:

if buffers  1:
print 'buffers must be higher than 0'
return

Which is clearly not indented right. The second one:

try:
while bin.iterate():
pass
except KeyboardInterrupt:
pass

The first pass needs to be indented another level.

After fixing this indentation, python configures ok.

-- 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.17-2-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages python-gst0.10 depends on:
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libglib2.0-0   2.12.3-2  The GLib library of C routines
ii  libgstreamer-plugins-base0 0.10.10-1 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.10-1 Core GStreamer libraries and eleme
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  python 2.4.3-11  An interactive high-level object-o
ii  python-support 0.5.2 automated rebuilding support for p

python-gst0.10 recommends no packages.

-- no debconf information

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#374741: seems unable to download any feeds

2006-09-30 Thread Torsten Jerzembeck
Hi Bas,

Bas Zoetekouw wrote:
 Unknown config command: articlesperpage
[...]
If I remove this line in the config file, however, I can actually
reproduce the bug.  It writes the file all right, but after that simply
hangs with strace only showing futex()es and stat()s of /etc/localtime.

articlesperpage is an additional configuration command provided by a
plugin, paged-output.py. THe behaviour of rawdog doesn't change for me
either if I remove this plugin, so I don't think this has something to
do with the actual bug.

Greetings from Stuttgart,

=ToJe=

-- 
Torsten Jerzembeck * Oberschlesische Straße 61 * D-70374 Stuttgart
  Exil-Westfale * PGP: B74DB58D * MIME welcome * Generation Tux


signature.asc
Description: Digital signature


Bug#390386: neutrino: empty package on several architectures [sudo and $(PWD)]

2006-09-30 Thread Niko Tyni
Package: neutrino
Version: 0.8.4-6
Severity: grave
Justification: renders package unusable
Tags: patch

Hi,

as seen on packages.debian.org [1], your package is empty on alpha,
mips and mipsel. These are the architectures whose buildds use sudo
instead of fakeroot.

The problem is that debian/rules is installing files into $(PWD)/debian,
but $(PWD) is unset when building with sudo. A proposed fix is to
use $(CURDIR), which is set by make, instead of $(PWD), which is set
by the shell and filtered out by sudo.

[1] http://packages.debian.org/unstable/gnome/neutrino

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#379480: X Key/Mouse Freeze might be time/clock based

2006-09-30 Thread Berg, Michael
Several of my friends and I have been having similar problems - X
keyboard/mouse input occasionally freezing.

The problem has been encountered on both i386 and AMD64 systems, with both
nvidia and ati video cards, with both free and proprietary drivers.

The interesting thing is that most of our systems would freeze at almost
the exact same time each time it happened (once every few months).  It
happened again today, and three of our systems (in various locations around
the city and state) all froze up during the same 1-2 minute period.

So I started really looking into time-based triggers.  During my
troubleshooting experiments, I found that if the system clock is adjusted
even a few seconds backward, X input will freeze up a few seconds later.

For example:
1. Make sure any NTP software is turned off (since we want to know what
changes are being made to the clock).

2. Execute the date command and then adjust the time back slightly (about 2
minutes backward is used in this example).

  # date
  Sat Sep 30 15:02:22 MDT 2006

  # date -s 'Sat Sep 30 15:00:00 MDT 2006'

Every time I tried this, X keyboard and mouse input would freeze up a few
seconds later.  Desktop applets like the system clock, CPU monitor, network
activity, etc would all still be actively displaying (so the screen is
still updating), but I would be unable to mouse between windows, hot-key
between windows, type into the currently focused xterm, Ctrl-Alt-backspace
to kill X, or Ctrl-Alt-F2 to a terminal window.

ssh'ing in from another computer and then stopping gdm and/or X would allow
me to recover, restart X and run other test scenarios.

Can those of you who are also having this problem try the clock adjustment
test above and see if you have the same results?

How many of you who are experiencing the problem are running NTP
synchronization software on your system?

I should also note that I could adjust the clock forward as much as I
wanted with no adverse effects (I had test cases of moving forward a few
seconds, a few minutes, a few hours, and almost an entire day), but any
adjustment of the clock backward from its current setting triggered the
problem.

I'm running openbox, and my friends were both running GNOME (one on top of
openbox and one on top of metacity).

I had the same results in my tests whether the X session was started
through GDM or from startx on the command line, and the same results
whether xscreensaver was running or not.

My theory on the three computers having having the problem at the same time
is that a small backward re-adjustment may have propagated through the NTP
servers we're using - which triggered the problem.

For those of you who are experiencing this problem more frequently, if you
have worse than average clock drift and are running NTP software, your
system would probably be having to skip the clock back more often than
most on most systems.  Or you may be using a very jittery NTP server.
People who aren't running NTP probably wouldn't encounter the problem.
But please respond to this if you are experiencing this and don't use NTP
(every data point can help track down a bug).

Anyway, hopefully this helps track down the problem.

Michael


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



Bug#390388: inkscape: Destroys element's transformation when scale factor is small

2006-09-30 Thread Wojciech Muła
Package: inkscape
Version: 0.44.1-1
Severity: normal

Consider following drawing (four squares 10 by 10 pixels):

--- test.svg ---
?xml version=1.0 ?
!DOCTYPE svg
  PUBLIC '-//W3C//DTD SVG 1.1//EN'
  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'
svg height=1000px width=500px xmlns=http://www.w3.org/2000/svg;
xmlns:xlink=http://www.w3.org/1999/xlink;
defs
rect x=0 y=0 width=100height=100fill=#000 
id=a/
rect x=0 y=0 width=1000   height=1000   fill=#f00 
id=b/
rect x=0 y=0 width=1  height=1  fill=#0f0 
id=c/
rect x=0 y=0 width=10 height=10 fill=#00f 
id=d/
/defs

use xlink:href=#a transform=scale(0.1)translate(0,  0)/
use xlink:href=#b transform=scale(0.01)   translate(1000,   1000)/
use xlink:href=#c transform=scale(0.001)  translate(2,  
2)/
use xlink:href=#d transform=scale(0.0001) translate(30, 
30)/
/svg
--- eof ---

Inkscape draws it correctly, but if you try to move red, green or blue
square it will become BIG.

Open built-int XML editor and observe element attributes.  Inkscape
add attributes x, y, width and height, and modify value
of transform ('scale'  'translate' become single 'matrix').

Problem: width has incorrect value, and transformation matrix
represents wrong translation (too small in this case).  If you
continue moving such deformed element, scale factor disappear.

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

Versions of packages inkscape depends on:
ii  libatk1.0-0  1.12.2-1The ATK accessibility toolkit
ii  libbonobo2-0 2.14.0-1Bonobo CORBA interfaces library
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libcairo21.2.4-1 The Cairo 2D vector graphics
libra
ii  libdbus-1-3  0.93-1  simple interprocess messaging
syst
ii  libfontconfig1   2.4.1-2 generic font configuration
library
ii  libfreetype6 2.2.1-5 FreeType 2 font engine,
shared lib
ii  libgc1c2 1:6.8-1 conservative garbage
collector for
ii  libgcc1  1:4.1.1-14  GCC support library
ii  libgconf2-4  2.14.0-4GNOME configuration database
syste
ii  libglib2.0-0 2.12.3-2The GLib library of C routines
ii  libglibmm-2.4-1c2a   2.12.0-1C++ wrapper for the GLib
toolkit (
ii  libgnomevfs2-0   2.14.2-2+b1 GNOME virtual file-system
(runtime
ii  libgtk2.0-0  2.8.20-2The GTK+ graphical user
interface
ii  libgtkmm-2.4-1c2a1:2.8.8-1   C++ wrappers for GTK+ 2.4
(shared
ii  liblcms1 1.15-1  Color management library
ii  libloudmouth1-0  1.1.2-2 Lightweight C Jabber library
ii  liborbit21:2.14.0-2  libraries for ORBit2 - a
CORBA ORB
ii  libpango1.0-01.14.4-2Layout and rendering of
internatio
ii  libpng12-0   1.2.8rel-5.2PNG library - runtime
ii  libpopt0 1.10-3  lib for parsing cmdline
parameters
ii  libsigc++-2.0-0c2a   2.0.17-2type-safe Signal Framework
for C++
ii  libstdc++6   4.1.1-14The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension
librar
ii  libxfixes3   1:4.0.1-4   X11 miscellaneous 'fixes'
extensio
ii  libxft2  2.1.8.2-8   FreeType-based font drawing
librar
ii  libxi6   1:1.0.1-3   X11 Input extension library
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head
display
ii  libxml2  2.6.26.dfsg-3   GNOME XML library
ii  libxrandr2   6.8.2.dfsg.1-9  X Window System Resize,
Rotate and
ii  libxrender1  1:0.9.0.2-1 X Rendering Extension client
libra
ii  libxslt1.1   1.1.17-4XSLT processing library -
runtime
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages inkscape recommends:
ii  imagemagick  6:6.2.3.6-3 Image manipulation programs
pn  libwmf-bin   none  (no description available)
pn  perlmagick   none  (no description available)
ii  pstoedit 3.41-1  PostScript and PDF files to
editab

-- no debconf information





Bug#390390: gnomad2: empty package on several architectures [sudo and $(PWD)]

2006-09-30 Thread Niko Tyni
Package: gnomad2
Version: 2.8.8-1
Severity: grave
Justification: renders package unusable
Tags: patch

Hi,

as seen on packages.debian.org [1], your package is empty on alpha,
mips and mipsel. These are the architectures whose buildds use sudo
instead of fakeroot.

The problem is that debian/rules is installing files into $(PWD)/debian,
but $(PWD) is unset when building with sudo. A proposed fix is to
use $(CURDIR), which is set by make, instead of $(PWD), which is set
by the shell and filtered out by sudo.

[1] http://packages.debian.org/unstable/x11/gnomad2

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#390385: libio-pty-perl: empty package on several architectures [sudo and $(PWD)]

2006-09-30 Thread Niko Tyni
Package: libio-pty-perl
Version: 1:1.05-1
Severity: grave
Justification: renders package unusable
Tags: patch

Hi,

as seen on packages.debian.org [1], your package is empty on alpha,
mips and mipsel. These are the architectures whose buildds use sudo
instead of fakeroot.

The problem is that debian/rules is installing files into $(PWD)/debian,
but $(PWD) is unset when building with sudo. A proposed fix is to
use $(CURDIR), which is set by make, instead of $(PWD), which is set
by the shell and filtered out by sudo.

[1] http://packages.debian.org/unstable/perl/libio-pty-perl

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]



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



Bug#390384: libxmms-perl: empty package on several architectures [sudo and $(PWD)]

2006-09-30 Thread Niko Tyni
Package: libxmms-perl
Version: 0.12-5+b1
Severity: grave
Justification: renders package unusable
Tags: patch

Hi,

as seen on packages.debian.org [1], your package is empty on alpha,
mips and mipsel. These are the architectures whose buildds use sudo
instead of fakeroot.

The problem is that debian/rules is installing files into $(PWD)/debian,
but $(PWD) is unset when building with sudo. A proposed fix is to
use $(CURDIR), which is set by make, instead of $(PWD), which is set
by the shell and filtered out by sudo.

[1] http://packages.debian.org/unstable/perl/libxmms-perl

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#390393: defoma: Warnings from defoma's gs.defoma script

2006-09-30 Thread Evgeny M. Zubok
Package: defoma
Version: 0.11.10
Severity: minor

I don't know whether it's a bug or not. So I post this report to the 'minor' 
section.

While installing ttf-dejavu (2.10-1) fonts I've got four identical messages
from /var/lib/defoma/gs.defoma script:

Use of uninitialized value in print at /var/lib/defoma/scripts/gs.defoma line 
108.
Use of uninitialized value in print at /var/lib/defoma/scripts/gs.defoma line 
108.
Use of uninitialized value in print at /var/lib/defoma/scripts/gs.defoma line 
108.
Use of uninitialized value in print at /var/lib/defoma/scripts/gs.defoma line 
108.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-486
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages defoma depends on:
ii  file  4.17-3 Determines file type using magic
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  whiptail  0.52.2-7   Displays user-friendly dialog boxe

Versions of packages defoma recommends:
pn  libft-perlnone (no description available)

-- no debconf information



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



Bug#390395: maxima: eigenvalues() fails

2006-09-30 Thread Andreas Kloeckner
Package: maxima
Version: 5.10.0-1
Severity: important
Tags: l10n

This transcript says it all:

(%i7) eigenvalues(AtA);

Could not find `EIGEN' using paths in file_search_maxima,system
 (combined values: [/home/andreas/.maxima/###.{mac,mc},
/share/maxima/5.10.0/share/###.{mac,mc}, /share/maxima/5.10.0/share/{affine,al\
gebra,algebra/charsets,algebra/solver,calculus,combinatorics,contrib,contrib/b\
oolsimp,contrib/descriptive,contrib/diffequations,contrib/diffequations/tests,\
contrib/distrib,contrib/ezunits,contrib/format,contrib/gentran,contrib/gentran\
/test,contrib/Grobner,contrib/lurkmathml,contrib/maximaMathML,contrib/mcclim,c\
ontrib/numericalio,contrib/pdiff,contrib/prim,contrib/rand,contrib/sarag,contr\
ib/simplex,contrib/simplex/Tests,contrib/solve_rec,contrib/state,contrib/strin\
gproc,contrib/unit,contrib/Zeilberger,diffequations,lbfgs,linearalgebra,intege\
quations,integration,macro,matrix,misc,numeric,orthopoly,physics,simplificatio\
n,sym,tensor,tensor/tests,trigonometry,utils,vector}/###.{mac,mc},
/usr/lib/gcl-2.6.7/unixport/../{src,share,share1,sharem}/foo.{mc,mac}] )
#0: eigenvalues(?_l=[matrix([26,-27],[-27,65])])
 -- an error.  Quitting.  To debug this try debugmode(true);


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages maxima depends on:
ii  gnuplot-nox   4.0.0-3A command-line driven interactive 
ii  libc6 2.3.6.ds1-4GNU C Library: Shared libraries
ii  libgmp3c2 2:4.2.1+dfsg-4 Multiprecision arithmetic library
ii  libice6   1:1.0.1-2  X11 Inter-Client Exchange library
ii  libncurses5   5.5-3  Shared libraries for terminal hand
ii  libreadline5  5.1-7  GNU readline and history libraries
ii  libsm61:1.0.1-2  X11 Session Management library
ii  libx11-6  2:1.0.0-9  X11 client-side library
ii  libxaw7   1:1.0.2-4  X11 Athena Widget library
ii  libxext6  1:1.0.1-2  X11 miscellaneous extension librar
ii  libxmu6   1:1.0.2-2  X11 miscellaneous utility library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library

Versions of packages maxima recommends:
pn  gvnone (no description available)
ii  maxima-share  5.10.0-1   A computer algebra system -- extra

-- no debconf information


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



Bug#390394: ilohamail: Hardcoded max. memorysize prevents from sending attachments bigger then ~5-6MB

2006-09-30 Thread Daniel Priem
Package: ilohamail
Version: 0.8.14-0rc3sarge1
Severity: normal

Tried to send a email with more then 5MB attachments (total or 6*1MB) failed:

environment:
/etc/php4/apache/php.ini:
post_max_size = 80M
upload_max_filesize = 80M

/etc/IlohaMail/conf.php:
$MAX_UPLOAD_SIZE = 0;

message:


To: foobar bla blubb
Attachments: 0
Attachment is good
Num parts: 1
Uploads directory: /var/cache/IlohaMail/uploads/daniel.localhost
Temp file: /var/cache/IlohaMail/uploads/daniel.localhost/daniel1159653530
Sending...
Adjusted to: [EMAIL PROTECTED]
Received: from 192.168.1.240 (auth. user [EMAIL PROTECTED])
by changer.flexserv.de with HTTP; Sat, 30 Sep 2006 23:58:50 +0200
Date: Sat, 30 Sep 2006 23:58:50 +0200
X-Mailer: IlohaMail/0.8.14 (On: changer.flexserv.de)
Message-ID:
In-Reply-To:
From: Daniel Priem
Bounce-To: Daniel Priem
Errors-To: Daniel Priem
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary=RWP_PART_daniel1159653530

Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 
8193 bytes) in /usr/share/IlohaMail/source/compose2.php on line 652


Regards Daniel



-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.17.7AMD
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages ilohamail depends on:
ii  apache [httpd]1.3.33-6sarge3 versatile, high-performance HTTP s
ii  apache-ssl [httpd]1.3.33-6sarge3 versatile, high-performance HTTP s
ii  debconf   1.4.30.13  Debian configuration management sy
ii  php4  4:4.3.10-16server-side, HTML-embedded scripti
ii  postfix [mail-transport-a 2.1.5-9A high-performance mail transport 

-- debconf information:
* ilohamail/restart: false
* ilohamail/webserver_type: apache-ssl
* ilohamail/weblocation: /webmail


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



Bug#390396: zsh: command correction should not exclusively rely on cache

2006-09-30 Thread Andreas Kloeckner
Package: zsh
Version: 4.3.2-17
Severity: normal

1. enable command correction, i.e. setopt -o CORRECT
2. install a package
3. type a command from that package
4. observe prompt: correct 'my-newly-installed-command' 
  to 'other-garbage'? [nyae]

Before showing that prompt, zsh should check if something on the path has 
actually 
changed to make this command available.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages zsh depends on:
ii  debconf [debconf-2.0]1.5.5   Debian configuration management sy
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libncurses5  5.5-4   Shared libraries for terminal hand

Versions of packages zsh recommends:
ii  libcap1   1:1.10-14  support for getting/setting POSIX.
ii  libpcre3  6.7-1  Perl 5 Compatible Regular Expressi

-- no debconf information


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



Bug#388708: apt: Upgrading to this version makes status file unparseable

2006-09-30 Thread Michael Vogt
[..]
On Fri, Sep 22, 2006 at 12:49:22AM -0500, Manoj Srivastava wrote:
 #_ aptitude -u
  ... upgrade ...
 #_ aptitude -vvv upgrade
 Reading package lists... Error!
 E: Unable to parse package file /var/lib/dpkg/status (1)
 E: The package lists or status file could not be parsed or opened.
 Reading package lists... Error!
 E: Unable to parse package file /var/lib/dpkg/status (1)
 E: The package lists or status file could not be parsed or opened.
[..]

I was able to reproduce this now (thanks for your help Manoj!). It
turned out that the buffer in the tagfile code was too small
(again!). The attached patch should fix the issue by allowing the
tagfile buffer to grow dynamically. Testing is very welcome.

Cheers,
 Michael

-- 
Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo
=== modified file 'apt-pkg/tagfile.cc'
--- apt-pkg/tagfile.cc  2006-09-15 16:24:47 +
+++ apt-pkg/tagfile.cc  2006-09-30 21:34:13 +
@@ -59,19 +59,52 @@
delete [] Buffer;
 }
/*}}}*/
+// TagFile::Resize - Resize the internal buffer
/*{{{*/
+// -
+/* Resize the internal buffer (double it in size). Fail if a maximum size
+ * size is reached.
+ */
+bool pkgTagFile::Resize()
+{
+   char *tmp;
+   unsigned long EndSize = End - Start;
+
+   // fail is the buffer grows too big
+   if(Size  1024*1024+1)
+  return false;
+
+   // get new buffer and use it
+   tmp = new char[2*Size];
+   memcpy(tmp, Buffer, Size);
+   Size = Size*2;
+   delete [] Buffer;
+   Buffer = tmp;
+
+   // update the start/end pointers to the new buffer
+   Start = Buffer;
+   End = Start + EndSize;
+   return true;
+}
+
 // TagFile::Step - Advance to the next section /*{{{*/
 // -
-/* If the Section Scanner fails we refill the buffer and try again. */
+/* If the Section Scanner fails we refill the buffer and try again. 
+ * If that fails too, double the buffer size and try again until a
+ * maximum buffer is reached.
+ */
 bool pkgTagFile::Step(pkgTagSection Tag)
 {
-   if (Tag.Scan(Start,End - Start) == false)
+   while (Tag.Scan(Start,End - Start) == false)
{
   if (Fill() == false)
 return false;
   
-  if (Tag.Scan(Start,End - Start) == false)
+  if(Tag.Scan(Start,End - Start))
+break;
+
+  if (Resize() == false)
 return _error-Error(_(Unable to parse package file %s (1)),
- Fd.Name().c_str());
+Fd.Name().c_str());
}
Start += Tag.size();
iOffset += Tag.size();

=== modified file 'apt-pkg/tagfile.h'
--- apt-pkg/tagfile.h   2006-09-30 20:50:41 +
+++ apt-pkg/tagfile.h   2006-09-30 21:35:25 +
@@ -77,6 +77,7 @@
unsigned long Size;

bool Fill();
+   bool Resize();

public:
 
 



Bug#390022: texmacs: patch available

2006-09-30 Thread Andreas Kloeckner
Package: texmacs
Version: 1:1.0.6-9
Followup-For: Bug #390022

There's a (working) patch available at
http://www.math.utexas.edu/pipermail/maxima/2006/014696.html

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages texmacs depends on:
ii  gs-gpl   8.50-1.1The GPL Ghostscript PostScript int
ii  guile-1.6-libs   1.6.8-5 Main Guile libraries
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.1-13  GCC support library
ii  libguile-ltdl-1  1.6.8-5 Guile's patched version of libtool
ii  libltdl3 1.5.22-4A system independent dlopen wrappe
ii  libqthreads-12   1.6.8-5 QuickThreads library for Guile
ii  libstdc++6   4.1.1-13The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  tetex-base   3.0-21  Basic TeX input files of teTeX
ii  tetex-bin3.0-18  The teTeX binary files
ii  tetex-extra  3.0-21  Additional TeX input files of teTe
ii  texmacs-common   1:1.0.6-9   WYSIWYG mathematical text editor u
ii  xbase-clients1:7.1.ds-3  miscellaneous X clients
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages texmacs recommends:
ii  imagemagick 7:6.2.4.5.dfsg1-0.10 Image manipulation programs
ii  ispell  3.1.20.0-4.3 International Ispell (an interacti
ii  libjpeg-progs   6b-13Programs for manipulating JPEG fil
pn  librsvg2-binnone   (no description available)
pn  libtiff-tools   none   (no description available)
ii  netpbm  2:10.0-10.1  Graphics conversion tools
pn  texmacs-extra-fonts none   (no description available)
ii  xfig1:3.2.5-alpha5-7 Facility for Interactive Generatio

-- no debconf information


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



Bug#384422: $HOME/.zlogout is not executed during zsh termination

2006-09-30 Thread Clint Adams
 I use $HOME/.zlogout to remove a lot of temporary files.
 The mechanism worked fine in 4.2.x.
 But now nothing happens if I terminate zsh via CTRL + D oder exit.

If you force a login shell with zsh -l do you get the same behavior?


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



Bug#389822: something like this should fix it

2006-09-30 Thread Marco Amadori
at line 1905 of /var/lib/dpkg/info/xserver-xorg.config try to patch in a 
similar way:

if ! db_get debian-installer/keymap; then
if [ -z $first_time_keymap ]; then
  debug_report_status db_get debian-installer/keymap
else
  first_time_keymap=set
  DI_KEYMAP=us
fi
  else
DI_KEYMAP=${RET##mac-usb-}
DI_KEYMAP=${DI_KEYMAP##-latin1}
  fi

This bug is simply reproducible by installing xorg in a fresh chroot (and it 
affects make-live so we noticed it).

-- 
ESC:wq


pgpTlo4qAJyQt.pgp
Description: PGP signature


Bug#389765: ippl: purging the package fails (adduser unavailable) (patch)

2006-09-30 Thread Marc Haber
tags #389765 confirmed pending
thanks

On Sat, Sep 30, 2006 at 11:25:00AM +0200, Vincent Zweije wrote:
 Attached patch should fix the problems.

Thanks for helping.

 diff -rud ippl-1.4.14-7/debian/postinst ippl-1.4.14-7.1/debian/postinst
 --- ippl-1.4.14-7/debian/postinst 2006-09-29 17:30:03.0 +0200
 +++ ippl-1.4.14-7.1/debian/postinst   2006-09-30 11:03:35.489255638 +0200
 @@ -20,9 +20,13 @@
  
  # Add user
  if [ $1 = configure ]; then
 -echo 2 'Adding system user'
 -adduser --system --group --home /var/run/ippl \
 ---disabled-login --force-badname $USERNAME
 +if ! id -u $USERNAME /dev/null 21; then
 +echo 2 'Adding system user'
 +adduser --system --group --home /var/run/ippl \
 +--disabled-login --force-badname $USERNAME
 +else
 +echo 2 Re-using existing $USERNAME system user
 +fi
  fi

I do not accept this patch as it replicates adduser features in the
maintainer scripts. adduser --system handles the case of the account
already existing in a graceful way.

 diff -rud ippl-1.4.14-7/debian/postrm ippl-1.4.14-7.1/debian/postrm
 --- ippl-1.4.14-7/debian/postrm   2006-09-29 17:30:03.0 +0200
 +++ ippl-1.4.14-7.1/debian/postrm 2006-09-30 11:05:42.597082978 +0200
 @@ -7,9 +7,11 @@
  #DEBHELPER#
  
  if [ $1 = purge ]; then
 - rm -rf /var/log/ippl
 - 
 - echo 2 'Removing system user'
 - deluser --home $HOMEDIR --system $USERNAME
 - rm -rf $HOMEDIR
 +rm -rf /var/log/ippl
 +
 +if which deluser /dev/null; then
 +echo 2 'Removing system user'
 +deluser --system $USERNAME
 +rm -rf $HOMEDIR
 +fi
  fi

I am invoking deluser --remove-home now from postinst:
if command -v deluser /dev/null; then
  echo 2 'Removing system user'
  deluser --remove-home --system $USERNAME
else
  echo 2 'Not removing system user, deluser not found'
fi

The change is committed to svn.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835


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



Bug#388133: works with maxima (5.10.0-1)

2006-09-30 Thread Olafur Jens Sigurdsson
Hi, I just tried out wxmaxima version 0.6.5-1 with maxima 5.10.0-1 and
it shows output lines. Have another version of maxima at work and
havnt tried that one out yet.

Doesnt seem that any of the other packages wxmaxima depends on have
been upgraded recently (did a small check through the qa system).

HTH

Oli


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



Bug#390397: groff -Tascii broken: should not output ANSI escape sequences

2006-09-30 Thread Michael Paoli
Package: groff-base
Version: 1.18.1.1-7
Severity: normal


from groff-base 1.18.1.1-7 we have:
$ echo '.BR foo bar' |
 2/dev/null groff -te -msafer -mtty-char -mm -Tascii |
 fgrep f | cat -v
   ^[[1mfoo^[[22mbar
$ 
Apparently with groff-base 1.18.1.1-7, -Tascii is outputting ANSI
escape sequences, and this of course breaks all kinds of stuff (e.g.
this no longer works on dumb line printers and other devices that
perfectly well understand ^H, ^I, ^L and printable ASCII characters,
but know nothing of ANSI escape sequences; this similarly breaks
stuff passed to less or col -b, etc., generally resulting in quite a
mess).

This works fine on oldstable (woody) groff-base 1.17.2-15.woody.1 as
seen here:
$ echo '.BR foo bar' |
 2/dev/null groff -te -msafer -mtty-char -mm -Tascii |
 fgrep f | cat -v
   f^Hfo^Hoo^Hobar
$ 

If one wants ANSI escape sequences, perhaps there should be a -Tansi,
but please, -Tascii should continue to only generate printable ASCII
characters and well defined common ASCII control codes (e.g. ^H, ^I,
^L), and should *not* generate ANSI escape sequences, as the actions
of these escape sequences are not defined in the ASCII character set.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.29
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages groff-base depends on:
ii  libc6 2.3.2.ds1-22sarge4 GNU C Library: Shared libraries an
ii  libgcc1   1:3.4.3-13sarge1   GCC support library
ii  libstdc++51:3.3.5-13 The GNU Standard C++ Library v3

-- no debconf information


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



Bug#388867: bbclone: non-free icons included

2006-09-30 Thread Christian Aichinger
retitle 388867 Undistributable icons included
thanks

On Fri, Sep 22, 2006 at 10:40:14PM -0400, Filipus Klutiero wrote:
 bbclone's copyright file indicates that the package is under the GPL,
 but a non-GPL Firefox icon is included.
 Additionnally, bbclone is in main and the Firefox icon is not
 modifiable.

Looking into images/ there are much more icons with questionable
license, robot_google.png, robot_yahoo.png, robot_msn.png,
browser_explorer.png (MS IE logo), etc.

AFAICS we can't distribute some of those files at all :-/

Cheers,
Christian Aichinger


signature.asc
Description: Digital signature


Bug#390398: rsync: copies permissions even without -p

2006-09-30 Thread Marc Lehmann
Package: rsync
Version: 2.6.6-1
Severity: minor


rsync copies permissions even when -p has not been specified, e.g.:

   # touch a
   # chmod 137 a
   # umask 022
   # ls -la
   ---x-wxrwx  1 root root 0 Oct  1 00:59 a
   # rsync -rt a b
   # ls -l
   ---x-wxrwx 1 root root 0 Oct  1 00:59 a
   ---x--xr-x 1 root root 0 Oct  1 00:59 b

b should have permissions 755, not 015, as -p was not specified.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages rsync depends on:
hi  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libpopt0 1.10-2  lib for parsing cmdline parameters

rsync recommends no packages.

-- no debconf information


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



Bug#390078: (no subject)

2006-09-30 Thread Marco Amadori
reassign xserver-xorg
merge 389822
-- 
ESC:wq


pgpTFhglE0rwn.pgp
Description: PGP signature


Bug#379011: vim-lesstif: gvim always crashes during startup

2006-09-30 Thread Christian Aichinger
On Sun, Aug 27, 2006 at 03:41:35AM +0100, Ben Hutchings wrote:
 XmEnhancedButton doesn't initially have an XmPrimitiveClassExtRec of its
 own (primitive_class.extension is NULL) so I'm not sure how it gets one.
 Using a copy of the record from XmPushButton works around the bug in
 vim:

This has now been worked around on the vim side, cf. #378721.

Does this bug still severely affect other packages? I.e. can we
downgrade to important?

Cheers,
Christian Aichinger


signature.asc
Description: Digital signature


Bug#390154: ippl: Should create /var/run/console-log

2006-09-30 Thread Marc Haber
tags #390154 confirmed pending
thanks

On Fri, Sep 29, 2006 at 04:09:35PM +0200, Marc Haber wrote:
 /var/run is going to be a tmpfs, directories are not going to be
 persistent any more. The package should therefore create its directory
 before it uses it.

Fix committed to svn.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835


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



Bug#388399: FTBFS problems on alpha, mips[el]: Please help debugging

2006-09-30 Thread Thiemo Seufer
Ralf Stubner wrote:
 On Sat, Sep 30, 2006 at 18:12 +0100, Thiemo Seufer wrote:
  Frank Küster wrote:
   Thiemo Seufer [EMAIL PROTECTED] wrote:
   
So, if I understand that correctly, the bug was fixed by running mktexmf
as non-root, and the change of the cache location is only a collateral.
   
   No, or I do not understand what you mean.
  
  I meant the the earlier security bug you mentioned. To me, the solution
  for the earlier bug as well as the current one looks like keeping the
  font cache in /var but maintaining it via a mktexmf user.
 
 The problem is that mktexmf is a shell script (=no suid possible) that
 is started with the rights of the user. So the former solution required
 all users that wanted to use TeX to have write access below
 /var/cache/fonts.

Then I fail to understand

  a) why the old solution was a security problem when it does something
 similiar to e.g. /var/mail, and leaves the root-reserved part of
 the filesystem free,

  b) why moving the cache to $HOME or /tmp fixed the problem, given
 that all three probably reside on the same partition.


Thiemo



Bug#389828: Please include the mk/ files in ghc6

2006-09-30 Thread Ian Lynagh
On Wed, Sep 27, 2006 at 04:28:37PM -0700, David Fox wrote:
 
 It is very helpful to have the configured versions of the files in mk 
 for building some external libraries.

Do you have any examples of libraries that need this, and what they need
it for?


Thanks
Ian



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



Bug#389903: apt-listbugs: Does not offer to exit if timeout occurs fetching reports

2006-09-30 Thread Russell Weatherburn
Junichi Uekawa wrote:
 tags 389903 +sarge +wontfix
 thanks
 
 Hi,
 
 When attempting to run an aptitude install of some packages, the
 apt-listbugs process gave a timeout message[1] and then just continued
 to install the packages.
  can you try invoking with debug option?

  I think the version in unstable has fixed this particular problem, so
 you proabbly wouldn't meet this problem for etch.

 regards,
 junichi
 Thanks for the reply.  I've tried it, and the output follows[1].

 Note, I've started to do an incremental upgrade to testing - I wanted to
 get a few things like xorg on the system for a couple of reasons.  I
 still have the sarge version of aptitude[2], apt-listbugs[3] from memory.
 
 Unfortunately apt-listbugs was neglected for such a long time that
 apt-listbugs in stable is broken without hope of repair.
 
 Please remove apt-listbugs package and then install after upgrade to
 sid is finished.
 
 regards,
   junichi

Hello,

This doesn't really help if I want to run a *stable* system (as in all
my other systems) but put in some packages from *testing* or backports.

My webserver (which only run stable) suffers from the same problem.
This wasn't happening at most a couple of weeks ago.  What could have
changed since then, to create this problem?  Has the source that the
package is trying to access changed?  Has some policy changed, to suit Sid?

Not everyone wants to run Sid, you know.  Some people have a good reason
to run Stable - oh, wait, that would be the *recommended* Debian
release, unless you wanted to fix up any problems that may arise from
Sid being broken (which *does* happen) yourself.  I actually have never
said that I wanted to run sid - testing is as far as I want to go,
especially with Etch due for release in December.

Maybe I'm a little petulant about this, but the point is that there is a
problem with the sarge version of apt-listbugs, and sarge is still the
stable version (correct me if I am wrong), and there really shouldn't be
any problems with packages in Sarge that stop them from working.

There is also the issue where the package for apt-listbugs does not
appear to be any different in Testing, as in Sarge. (running `aptitude
-t testing install apt-listbugs` made absolutely no difference).  Maybe
I should make this an RC bug?  A testing package which is broken?

Regards,

Russell.
-- 
--

Russell Weatherburn

mailto:[EMAIL PROTECTED]
http://www.oxyoss.net

Semper Fidelis


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



Bug#390399: fuse-utils: unknown option during install, does not install correctly

2006-09-30 Thread Marc Lehmann
Package: fuse-utils
Version: 2.5.3-4.1
Severity: normal


On first install (note the unknown option):

   Setting up fuse-utils (2.5.3-3) ...
   creating fuse device...
   creating fuse group...
   Adding group `fuse' (GID 119) ...
   Done.
   unknown option

   dpkg: error processing fuse-utils (--configure):
subprocess post-installation script returned error exit status 1
   Errors were encountered while processing:
fuse-utils
   E: Sub-process /usr/bin/dpkg returned an error code (1)

And then subsequently on every dpkg --configure:

   Setting up fuse-utils (2.5.3-4.1) ...
   creating fuse device node...
   creating fuse group...
   The group `fuse' already exists as a system group. Exiting.
   unknown option

   An override for /usr/bin/fusermount already exists, aborting

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages fuse-utils depends on:
ii  adduser  3.97Add and remove users and groups
hi  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  makedev  2.3.1-82creates device files in /dev
ii  sed  4.1.5-1 The GNU sed stream editor
ii  ucf  2.0014  Update Configuration File: preserv
ii  udev 0.070-2 /dev/ management daemon

fuse-utils recommends no packages.

-- no debconf information


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



Bug#390400: vsound: doesn't check write permissions on current directory

2006-09-30 Thread Stefan Denker
Package: vsound
Version: 0.6-3
Severity: minor


I just tried to save some stream using vsound: 

,---
| [EMAIL PROTECTED]:/media/cdrom$ vsound realplay \
|http://www.antennebrandenburg.de/_/modem.ram
| About to start the application. The output will not be available
| until the application exits.
| Warning: LD_PRELOAD=/usr/lib/vsound/libvsound.so
| Missing file ./vsound5789.au.
| This means that the libvsound wrapper did not work correctlty.
| Here are some the possible reasons :
|  - You are trying to record a stream (RTSP or PNM protocol) from 
|the internet. You will need to use the --timing option.
|  - The program you are trying to run is setuid. You will need to 
|run vsound as root.
|  - Vsound was not properly installed and hence won't work at
|all.
`---

vsound works, but cannot write to the current directory(The Filesystem
on the current directory is mounted read-only).
The error message printed is completely wrong and misleading.

vsound should check whether it may write to the current directory and if
not, write to some emergency directory, something like /tmp. Or a
least mention the problem in the error message. :) 

Stefan 


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.15daniel
Locale: [EMAIL PROTECTED], LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages vsound depends on:
ii  libc6 2.3.2.ds1-22sarge4 GNU C Library: Shared libraries an
ii  sox   12.17.7-2  A universal sound sample translato

-- no debconf information


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



Bug#330084: xawtv-plugin-qt: segfaults on start recording

2006-09-30 Thread Steinar H. Gunderson
reassign 330084 libquicktime0
thanks

On Sat, Sep 30, 2006 at 01:13:35PM +0200, Sune Vuorela wrote:
 Here is the backtrace:

The backtrace indicates that the crash is in libquicktime;
quicktime_open() shouldn't end up calling quicktime_write_moov() when it
fails. From what I can see, it shouldn't be calling quicktime_close() at all,
rather quicktime_file_close(newfile); quicktime_delete(newfile); 
free(newfile);
instead.

Now, I'm not sure if the QT plugin crashes when you try to capture into a
directory where you can't is really an RC bug or not, but at least I'm
reassigning it to libquicktime0, and I'll let it be up to an RM to decide
the severity, I guess.

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Bug#382086: Fixed upstream

2006-09-30 Thread Sam Morris
tag 382086 fixed-upstream
thanks

Pre-release tarballs of suphp are available that fix this bug. See
http://lists.marsching.biz/pipermail/suphp/2006-September/001371.html
for details.

-- 
Sam Morris
http://robots.org.uk/

PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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


Bug#388496: (no subject)

2006-09-30 Thread R. Meulekamp
I believe you still cannot build-dep this package in testing and 
unstable. Because it depends on 2.0 and 1.3 dev packages.


Even with --with-apxs=/path/to/apxs2 it doesn't work.


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



Bug#385044: Only applicable for sarge?

2006-09-30 Thread Steinar H. Gunderson
reopen 385044
found 385044 1.10.28
close 385044 1.13.17
thanks

On Fri, Sep 29, 2006 at 04:53:53PM +0200, Arjan Oosting wrote:
 If I understand the previous emails correctly the bug is fixed in sid
 but is still in stable, so I have adjusted the version in which the bugs
 is found.

notfound isn't always working as expected; I'm making an attempt to unconfuse
the BTS.

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Bug#389822: previous patch is needed but does not fix the bug

2006-09-30 Thread Marco Amadori
Just as hint:

I saw two suspicious while in postinst at validate_string_db_input and 
at validate_monitor_frequency_db_input.


-- 
ESC:wq


pgp4M5eRQ3LQa.pgp
Description: PGP signature


Bug#390374: tulip: Dependency on two conflicting libraries

2006-09-30 Thread Steve Langasek
severity 390374 important
notfound 390374 2.0.5-2
found 390374 2.0.6-1
block 390374 by 387706
thanks

On Sat, Sep 30, 2006 at 10:27:06PM +0200, David Garc�Garz� wrote:
 Package: tulip
 Version: 2.0.5-2
 Severity: grave
 Justification: renders package unusable

 tulip depends two groups of libraries:
 - libgl1-mesa-glx | libgl1
 - libgl1-mesa-swx1 | libgl1-mesa-glide3

 libgl1 seems to be a virtual package provided by the other three
 packages. Non-virtual packages conflict among them so it is imposible to
 fullfill both rules and renders the package uninstallable. Since they 
 have the same purpose probably the intent was a rule or'ing all of them.

No, these dependencies are picked up from two separate libs, one of which is
*only* provided by libgl1-mesa-swx11 and libgl1-mesa-glide3, the other being
provided by all implementors of libgl1.

It's an unfortunate state of affairs that tulip can only be installed with
libgl1-mesa-swx11 or libgl1-mesa-glide3, but one that must be fixed in the
mesa package.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/



Bug#389903: apt-listbugs: Does not offer to exit if timeout occurs fetching reports

2006-09-30 Thread Junichi Uekawa
Hi,

  Unfortunately apt-listbugs was neglected for such a long time that
  apt-listbugs in stable is broken without hope of repair.
  
  Please remove apt-listbugs package and then install after upgrade to
  sid is finished.

 There is also the issue where the package for apt-listbugs does not
 appear to be any different in Testing, as in Sarge. (running `aptitude
 -t testing install apt-listbugs` made absolutely no difference).  Maybe
 I should make this an RC bug?  A testing package which is broken?

There is no point in making this bug report a RC bug.

Backporting apt-listbugs to sarge may help.

It was neglected for the past two years or so, and I've just been
wading through the list of bugs for the past two weeks to get things 
remotely working.

If you think apt-listbugs was working a few weeks ago, you were
dreaming; what it showed you is a snapshot of bug reports back in May
2005 or something; since the job to update the indices was broken and
nobody fixed it.


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#290442: Please update debconf PO translation for the package cvs 1:1.12.13-4.1

2006-09-30 Thread Andre Luis Lopes
[EMAIL PROTECTED] escreveu:
 Hi,

Hello,

 You are noted as the last translator of the debconf translation for
 cvs. The English template has been changed as part of a work I made with
 Steve McIntyre, the package maintainer, to reword the templates and have
 them fit the developer's reference.
 
 Please respect the Reply-To: field and send your updated translation to
 [EMAIL PROTECTED] This already opened bug report, which mentions a
 typo in the templates, will collect all updates.
 
 I will prepare the package along with Steve on Oct. 8th, so please send your
 updates before this date.

   Ok, thanks for giving a good amount of time for us to work on this.
Attached you will find the Brazilian Portuguese (pt_BR) translation
already fully updated.

Regards,

-- 
André Luís Lopes
[EMAIL PROTECTED]
http://www.andrelop.org/



pt_BR.po.gz
Description: GNU Zip compressed data


Bug#365183: #365183: [NONFREE-DOC] Package contains IETF RFC/I-D

2006-09-30 Thread Christian Aichinger
Hi,

Don Armstrong commented on 10-Jun-2006 on bts.turmzimmer.net that
you're working on this bug on the alioth project.

Any news on this since?

Cheers,
Christian Aichinger


signature.asc
Description: Digital signature


Bug#390402: gnome-system-tools: Wrong filesystem type description for LVM

2006-09-30 Thread Fabio Pugliese Ornellas
Package: gnome-system-tools
Version: 2.14.0-2+b1
Severity: important


The disks-admin utility report that my physical volume from my LVM as
unformatted. Right after it, a butto to format it.

We can not even talk about filesystem in this partition, since there are
3 layer from LVM before the filesystem itself: Physical Volume, Volume
Group and Logical Volume.

It also reports that there are 2 hard disks on my system, but I Have
only one disk. My guess is that one of my LVM stuff is detected as this
ghost hard disk. When I click on it, I get an instant crash.

A newbie user could think that it can format and use tha LVM space
(since it really says this space is free) and loose all his data.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'stable'), (90, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-amd64
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1)

Versions of packages gnome-system-tools depends on:
ii  gconf2 2.14.0-4  GNOME configuration database syste
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.2-1  The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libavahi-client3   0.6.13-3  Avahi client library
ii  libavahi-common3   0.6.13-3  Avahi common library
ii  libavahi-glib1 0.6.13-3  Avahi glib integration library
ii  libbonobo2-0   2.14.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.14.0-4  The Bonobo UI library
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libcairo2  1.2.4-1   The Cairo 2D vector graphics libra
ii  libdbus-1-30.92-2simple interprocess messaging syst
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libfontconfig1 2.4.1-2   generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgconf2-42.14.0-4  GNOME configuration database syste
ii  libgcrypt111.2.3-2   LGPL Crypto library - runtime libr
ii  libglade2-01:2.6.0-2 library to load .glade files at ru
ii  libglib2.0-0   2.12.3-2  The GLib library of C routines
ii  libgnome-keyring0  0.4.9-1   GNOME keyring services library
ii  libgnome2-02.14.1-3  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2+b1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-2+b1   GNOME virtual file-system (runtime
ii  libgnutls131.4.4-1   the GNU TLS library - runtime libr
ii  libgpg-error0  1.4-1 library for common error values an
ii  libgtk2.0-02.8.20-1  The GTK+ graphical user interface 
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libnautilus-extension1 2.14.3-1  libraries for nautilus components 
ii  liborbit2  1:2.14.0-2+b1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.14.4-2  Layout and rendering of internatio
ii  libpng12-0 1.2.8rel-5.2  PNG library - runtime
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libtasn1-3 0.3.6-1   Manage ASN.1 structures (runtime)
ii  libx11-6   2:1.0.0-9 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.1-4 X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-3 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  perl   5.8.8-6.1 Larry Wall's Practical Extraction 
ii  system-tools-backends  1.4.2-3   System Tools to manage computer co
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages gnome-system-tools recommends:
ii  gksu   1.9.4-1   graphical frontend to su
ii  gnome-control-center   1:2.14.2-3+b1 utilities to configure the GNOME d

-- no debconf information


-- 
To UNSUBSCRIBE, 

Bug#373192: xserver-xorg-video-glint: X does not start due to resource conflicts

2006-09-30 Thread David Nusinow
Hi Christophe,

On Tue, Jun 13, 2006 at 03:26:10PM +0200, Christophe TROESTLER wrote:
 Package: xserver-xorg-video-glint
 Version: 1:1.0.1.3-3
 Severity: grave

Can you try the newest version of the glint driver, 1:1.1.1-3, which is
currently in unstable? You'll need the new x server as well. I believe this
contains an upstream fix for your problem. Thank you!

 - David Nusinow


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



Bug#390403: gnustep-netclasses: hard-coded dependency on obsolete libgnustep-base1.11

2006-09-30 Thread Steve Langasek
Package: gnustep-netclasses
Version: 0.0.20040112.dfsg-0.1
Severity: serious
Tags: sid

gnustep-netclasses has a hard-coded dependency on libgnustep-base1.11, but
this version of libgnustep-base1.11 is obsolete, superseded by
libgnustep-base1.13.  Please update your package as needed for the ongoing
ongoing gnustep transition.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#390401: debian-installer: mdadm postinst script fails during install

2006-09-30 Thread Pedro Rodrigues
Package: debian-installer
Version: beta3
Severity: important

During instalation of the base system in a machine with RAID arrays 
configured the mdadm.postinst script as failed.
The problem is that the script /usr/share/debconf/confmodule is 
returning a nonzero value making the script madm.postinst to stop with 
an error status and the installer aborts the instalation.
I have no success in figuring out what is the problem but puting exit 0 
at the end of the confmodule script allowed the instalation to proceed.
This is not a solution, of course, because it breaks postinst scripts. 
After the minimal instalation is finished I had to comment/remove the 
line and do a dpkg-reconfigure -a to have the packages properly 
configured. At this time, the script mdadm.postinst worked perfectly so 
it seems to be a problem caused by the installer.
Since this is a production machine, I am not able to do more tests here 
but I can try to assemble a testing box if needed.

Thanks

Pedro

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=pt_PT.UTF-8, LC_CTYPE=pt_PT.UTF-8 (charmap=UTF-8)


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



Bug#390320: Suggestion regarding a K3b bug with mixed-mode CDs?

2006-09-30 Thread Francois Marier
Hallo Sebastian,

I just received a K3b bug on the Debian tracker and I think I need your help
in order to isolate the problem.  I do think that it is Debian-specific and
that's why I didn't open a bug on the KDE tracker.

The user seems to be having problems in the second phase of burning a
mixed-mode CD where K3b attemps to append a session to the freshly-burned
audio CD.  Do you know what could go wrong for K3b to report an error at
this point?  What is the best way to get some output about what's going on
during that check?

I suspect that it is a bug in the new Debian version of cdrecord (wodim),
however I'm not exactly sure how K3b uses it to write the second part of a
mixed-mode CD and I'd like to include that information in my bug report if I
pass it on to the Debian cdrkit team.

Any insight will be greatly appreciated!

Francois

- Forwarded message from Christian Frommeyer [EMAIL PROTECTED] -

Date: Sat, 30 Sep 2006 14:22:12 +0200
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: Bug#390320: k3b isn't able to burn a mixed-mode cd any more.

Package: k3b
Version: 0.12.17-2+b1
Severity: important

Hi,

I just updated k3b and wodim recently and now I can't burn mixed-mode cds
any more. The audio-tracks are writen to cd the drive opens and closes
again. Then k3b clains to be unable to find the infos for appending a new
session and stops.
I was then able to add the data with x-cd-roast so I assume the Problem is
not with wodim the drive or the media - at least not in the first place.

Any help is welcome. I will attach the log please ask if I could provide
more helping informations.

Greetings Chris

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-skogtun-amd64
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages k3b depends on:
ii  cdparanoia   3a9.8-14An audio extraction tool for sampl
ii  kdebase-bin  4:3.5.4-2+b2core binaries for the KDE base mod
ii  kdelibs-data 4:3.5.4-3   core shared data for all KDE appli
ii  kdelibs4c2a  4:3.5.4-3   core libraries and binaries for al
ii  libacl1  2.2.41-1Access control list shared library
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libattr1 2.4.32-1Extended attribute shared library
ii  libaudio21.8-2   The Network Audio System (NAS). (s
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libdbus-1-3  0.93-1  simple interprocess messaging syst
ii  libdbus-qt-1-1c2 0.62.git.20060814-2 simple interprocess messaging syst
ii  libexpat11.95.8-3.3  XML parsing C library - runtime li
ii  libfam0  2.7.0-10Client library to control the FAM 
ii  libfontconfig1   2.4.1-2 generic font configuration library
ii  libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.2-20060709-1GCC support library
ii  libhal1  0.5.7.1-2   Hardware Abstraction Layer - share
ii  libice6  1:1.0.1-2   X11 Inter-Client Exchange library
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  libk3b2  0.12.17-2+b1The KDE cd burning application lib
ii  libmusicbrainz4c2a   2.1.4-1 Second generation incarnation of t
ii  libpng12-0   1.2.8rel-5.2PNG library - runtime
ii  libqt3-mt3:3.3.6-4   Qt GUI Library (Threaded runtime v
ii  libsm6   1:1.0.1-3   X11 Session Management library
ii  libstdc++6   4.2-20060709-1  The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxft2  2.1.8.2-8   FreeType-based font drawing librar
ii  libxi6   1:1.0.1-3   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  libxt6   1:1.0.2-2   X11 toolkit intrinsics library
ii  mkisofs  5:1.0~pre4-1.1  Creates ISO-9660 CD-ROM filesystem
ii  wodim5:1.0~pre4-1.1  command line CD writing tool
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages k3b recommends:
ii  cdrdao  1:1.2.1-7

Bug#388399: FTBFS problems on alpha, mips[el]: Please help debugging

2006-09-30 Thread Steve Langasek
On Sat, Sep 30, 2006 at 08:19:22PM +0200, Ralf Stubner wrote:
 On Sat, Sep 30, 2006 at 18:12 +0100, Thiemo Seufer wrote:
  Frank Küster wrote:
   Thiemo Seufer [EMAIL PROTECTED] wrote:

So, if I understand that correctly, the bug was fixed by running mktexmf
as non-root, and the change of the cache location is only a collateral.

   No, or I do not understand what you mean.

  I meant the the earlier security bug you mentioned. To me, the solution
  for the earlier bug as well as the current one looks like keeping the
  font cache in /var but maintaining it via a mktexmf user.

 The problem is that mktexmf is a shell script (=no suid possible)

Where does the input for the cache come from?  If the input is always from a
privileged location (i.e., /usr/share, /usr/lib, /etc), then it's possible
-- and, I think, vastly preferable -- to have an suid wrapper for mktexmf to
manage /var/cache.

If the font input comes from user-specified, non-privileged locations, then
this can't ever be safely written to a shared location.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/



Bug#388399: FTBFS problems on alpha, mips[el]: Please help debugging

2006-09-30 Thread Steve Langasek
On Sat, Sep 30, 2006 at 11:56:30PM +0100, Thiemo Seufer wrote:
   I meant the the earlier security bug you mentioned. To me, the solution
   for the earlier bug as well as the current one looks like keeping the
   font cache in /var but maintaining it via a mktexmf user.

  The problem is that mktexmf is a shell script (=no suid possible) that
  is started with the rights of the user. So the former solution required
  all users that wanted to use TeX to have write access below
  /var/cache/fonts.

 Then I fail to understand

   a) why the old solution was a security problem when it does something
  similiar to e.g. /var/mail, and leaves the root-reserved part of
  the filesystem free,

   b) why moving the cache to $HOME or /tmp fixed the problem, given
  that all three probably reside on the same partition.

The old solution was a security problem because the directories were
world-writable -- /var/mail is not, the directory is only writable by the
'mail' group -- which almost certainly makes symlink attacks possible,
looking at the source of mktexmf, as well as cache poisoning attacks.

The new solution is only better if the cache is written in the home
directory; if it's written to /tmp/texfonts for any reason, the security is
just as bad.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#380174: ITP: xserver-xorg-video-ivtv -- X.Org X server -- IVTV display driver

2006-09-30 Thread Steve Langasek
Hi Ian,

Has there been any progress on this ITP?  I've been to the ivtvdriver.org
website, and I can't find any stand-alone driver for xorg 7.x, only the
0.10.6 build that's set up to be unpacked into a monolithic source tree and
built.  I was hoping this ITP meant there was another xorg-ready source
available somewhere, but it seems not. :)

I'd love to see this included in etch, but don't have much time to give to
that myself; I'd be happy at least to sponsor an upload for you if/when you
have something ready.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#384273: xfonts-base: xorg wont start could not open default cursor font 'cursor

2006-09-30 Thread David Nusinow
On Wed, Aug 23, 2006 at 01:59:47PM -0400, mlaks wrote:
 Subject: xfonts-base: xorg wont start could not open default cursor font 
 'cursor'
 Package: xfonts-base
 Version: 1:1.0.0-3
 Severity: grave
 Justification: renders package unusable
 
 *** Please type your report below this line ***
 I did a fresh install of etch using business card disk, installed
 desktop packages.
 I then upgraded to sid
 from etch. I had a working X initially through the point of the
 dist-upgrade.
 
 In fact X continued to work until I did a reboot (I did a reboot because
 of a reinstall of linux-image-2.6.16, and system warning reboot
 neccessary because of reinstall of same kernel).
 
 Now after reboot X wont start with error message in X.log
 
 Fatal server error:
 could not open default cursor font 'cursor'
 
 Now I did a apt-get remove --purge xfont-base
 and I get an error message
 
 warning: /usr/lib/X11/fonts/misc does not exist or is not a directory
 warning: /etc/X11/fonts/misc does not exist or is not a directory
 warning: /usr/lib/X11/fonts/misc does not exist or is not a directory
 
 and same sort of message with
 apt-get install xfont-base.
 
 These directories are present on other sid machines I have.
 They have files such as
 1)
 ls /usr/lib/X11/fonts/misc
 fonts.alias  fonts.cache-1
 
 2)
 ls /etc/X11/fonts/misc
 xfonts-base.alias
 
 This absence seems to be the source of my problems. What can I do to solve 
 them?
 
 Is this a bug in xfonts-base?

I've just uploaded a new set of xfonts* packages with fixes from Eugene
Konev to unstable. They're in incoming.debian.org right now, or you can
wait for them to be pushed to your mirror. Could you install those and let
us know if this bug can be closed? Thanks!

 - David Nusinow


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



Bug#388571: awstats: Non-free Firefox icon included

2006-09-30 Thread Christian Aichinger
retitle 388571 Undistributable icons included
thanks

On Thu, Sep 21, 2006 at 05:40:54AM -0400, Filipus Klutiero wrote:
 /usr/share/awstats/icon/browser/firefox.png is Mozilla Firefox's
 official logo, which is not modifiable. I don't know if just including
 that icon can be a trademark violation.

Looking around a bit, there are much more icons which seem
troublesome, e.g. wwwroot/icon/browser/{msie_large.png,opera.png},
wwwroot/icon/cpu/motorola.png, wwwroot/icon/os/win95.png, etc.

AFAICS we can't distribute some of those files at all :-/

Cheers,
Christian Aichinger


signature.asc
Description: Digital signature


Bug#388571: awstats: Non-free Firefox icon included

2006-09-30 Thread Steve Langasek
On Sun, Oct 01, 2006 at 02:05:14AM +0200, Christian Aichinger wrote:

 On Thu, Sep 21, 2006 at 05:40:54AM -0400, Filipus Klutiero wrote:
  /usr/share/awstats/icon/browser/firefox.png is Mozilla Firefox's
  official logo, which is not modifiable. I don't know if just including
  that icon can be a trademark violation.

 Looking around a bit, there are much more icons which seem
 troublesome, e.g. wwwroot/icon/browser/{msie_large.png,opera.png},
 wwwroot/icon/cpu/motorola.png, wwwroot/icon/os/win95.png, etc.

 AFAICS we can't distribute some of those files at all :-/

Why?  Do you know that these icons were copied from proprietary material?

For the most part, a trademark does not prevent you from using that logo in
reference to the genuine article.  The only reason the firefox logo is
currently a concern is that there is a copyrighted logo which was presumably
free but actually isn't, that a lot of people were copying.  If the icons
were created independently of the logo licensed by the Mozilla Foundation,
then there shouldn't be any need (under the DFSG or under trademark law) to
remove them.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#390404: initscripts: /etc/network/if-up.d/mountnfs does not mount nfs directory at boot time

2006-09-30 Thread Chaogui Zhang
Package: initscripts
Version: 2.86.ds1-27
Severity: important


The NFS directory listed in /etc/fstab is not mounted. Tried using the 
/etc/network/if-up.d/mountnfs script manually and it didn't work either
(without giving any error message). 

Using mount host:/remote-direcotry /mountpoint works without any 
problem. Using the stable version (2.86.ds1-1) of /etc/init.d/mountnfs.sh 
script worked without any problem. The testing version (2.86.ds1-20)
/etc/network/if-up.d/mountnfs script does not work either on my system.
Also tried the 2.86.ds1-28 version of the same script without any luck.

BTW, using apt-get install initscripts install the 2.86.ds1-28 version
of the package and reportbug says it is newer than what Debian has! So I
manually installed the 2.86.ds1-27 version of the package.


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

Versions of packages initscripts depends on:
ii  debianutils  2.17.2  Miscellaneous utilities specific t
ii  e2fsprogs1.39-1  ext2 file system utilities and lib
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  lsb-base 3.1-15  Linux Standard Base 3.1 init scrip
ii  mount2.12r-11Tools for mounting and manipulatin
ii  sysvinit-utils   2.86.ds1-28 System-V-like utilities

Versions of packages initscripts recommends:
ii  psmisc22.3-1 Utilities that use the proc filesy

-- no debconf information


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



Bug#390405: libgl1-mesa-dri: fog modes LINEAR and EXP broken on Rage Mobility 7500 (w/ trivial fix)

2006-09-30 Thread Christopher Lane Hinson
Package: libgl1-mesa-dri
Version: 6.5.1-0.1
Severity: normal

Since upgrading from sarge to etch, I noticed that fog does not render at all 
in several 
OpenGL applications if the fog mode is LINEAR or EXP, but does render correctly 
when the 
fog mode is set to EXP2.  Using grep I discovered the following suspicious 
snippet of 
code:

mesa-6.5.0.cvs.20060524/src/mesa/drivers/dri/radeon/radeon_state.c starting on 
line 362

  case GL_EXP:
 c.f = 0.0;
 /* While this is the opposite sign from the DDK, it makes the fog test
  * pass, and matches r200.
  */
 d.f = -ctx-Fog.Density;
 break;
  case GL_EXP2:
 c.f = 0.0;
 d.f = -(ctx-Fog.Density * ctx-Fog.Density);
 break;
  case GL_LINEAR:
 if (ctx-Fog.Start == ctx-Fog.End) {
c.f = 1.0F;
d.f = 1.0F;
 } else {
c.f = ctx-Fog.End/(ctx-Fog.End-ctx-Fog.Start);
/* While this is the opposite sign from the DDK, it makes the fog
 * test pass, and matches r200.
 */
d.f = -1.0/(ctx-Fog.End-ctx-Fog.Start);
 }
 break;


Indeed, removing the two unary minus operators fixes the problem.  I didn't 
include a 
patch because I figure such a simple correction would just break fog on the 
system of the 
developer who inserted the comments in the first place.

I checked the source in unstable (mesa 6.5.1) and did not see any correction to 
the source 
code, and so I'm assuming that it hasn't been noticed of fixed.

glxinfo after applying my correction:

$ glxinfo
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating,
GLX_EXT_import_context, GLX_OML_swap_method, GLX_SGI_make_current_read,
GLX_SGIS_multisample, GLX_SGIX_hyperpipe, GLX_SGIX_swap_barrier,
GLX_SGIX_fbconfig
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory,
GLX_MESA_copy_sub_buffer, GLX_MESA_swap_control,
GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_OML_sync_control,
GLX_SGI_make_current_read, GLX_SGI_swap_control, GLX_SGI_video_sync,
GLX_SGIS_multisample, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
GLX_SGIX_visual_select_group, GLX_EXT_texture_from_pixmap
GLX version: 1.2
GLX extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context,
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_swap_control,
GLX_MESA_swap_frame_usage, GLX_OML_swap_method, GLX_SGI_video_sync,
GLX_SGIS_multisample, GLX_SGIX_fbconfig
OpenGL vendor string: Tungsten Graphics, Inc.
OpenGL renderer string: Mesa DRI Radeon 20060327 AGP 4x TCL
OpenGL version string: 1.3 Mesa 6.5.1
OpenGL extensions:
GL_ARB_imaging, GL_ARB_multisample, GL_ARB_multitexture,
GL_ARB_texture_border_clamp, GL_ARB_texture_compression,
GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar,
GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat,
GL_ARB_texture_rectangle, GL_ARB_transpose_matrix, GL_ARB_window_pos,
GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_logic_op,
GL_EXT_blend_minmax, GL_EXT_blend_subtract, GL_EXT_clip_volume_hint,
GL_EXT_compiled_vertex_array, GL_EXT_convolution, GL_EXT_copy_texture,
GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_histogram,
GL_EXT_packed_pixels, GL_EXT_polygon_offset, GL_EXT_rescale_normal,
GL_EXT_secondary_color, GL_EXT_separate_specular_color,
GL_EXT_stencil_wrap, GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D,
GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add,
GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod_bias,
GL_EXT_texture_mirror_clamp, GL_EXT_texture_object,
GL_EXT_texture_rectangle, GL_EXT_vertex_array, GL_APPLE_packed_pixels,
GL_ATI_texture_env_combine3, GL_ATI_texture_mirror_once,
GL_IBM_rasterpos_clip, GL_IBM_texture_mirrored_repeat,
GL_MESA_ycbcr_texture, GL_MESA_window_pos, GL_NV_blend_square,
GL_NV_light_max_exponent, GL_NV_texture_rectangle,
GL_NV_texgen_reflection, GL_OES_read_format, GL_SGI_color_matrix,
GL_SGI_color_table, GL_SGIS_generate_mipmap, GL_SGIS_texture_border_clamp,
GL_SGIS_texture_edge_clamp, GL_SGIS_texture_lod
glu version: 1.3
glu extensions:
GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess

   visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
 id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
--
0x23 24 tc  0 32  0 r  .  .  8  8  8  8  0 24  0  0  0  0  0  0 

Bug#389488: HOME can't be used

2006-09-30 Thread Géraud Meyer
AMULED_HOME is a better name anyway. Incidentally a check that the
folder exists (and perhaps that the AMULED_USER can use it) could be
made and the warning message could additionally be adapted.
So the proposed changes would be :

*** 14,24 
exit 0
  fi

! HOME=`getent passwd $AMULED_USER | awk -F: '{print $6}'`

  if [ -z $HOME ]; then
echo aMule user does not exists or has no home folder. Check
/etc/default/amule-daemon settings
exit 0
  fi

  start ()
--- 14,31 
exit 0
  fi

! if [ -z $AMULED_HOME ]; then
!   HOME=`getent passwd $AMULED_USER | awk -F: '{print $6}'`
! else
!   HOME=$AMULED_HOME
! fi

  if [ -z $HOME ]; then
echo aMule user does not exists or has no home folder. Check
/etc/default/amule-daemon settings
exit 0
+ elif ! [ -d $HOME ]; then
+   echo aMule user's home folder does not exist. Check
/etc/default/amule-daemon settings
+   exit 0
  fi

  start ()

Regards


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



Bug#388286: f-spot: fails to start due to a SIGSEGV

2006-09-30 Thread Erik Meitner
Package: f-spot
Version: 0.2.0-1
Followup-For: Bug #388286


I also have this with F-Spot. I updated dbus, libdbus-cil and others to the
latest in sid to no avail.


$ f-spot --debug
*** Running F-Spot in Debug Mode ***

=
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=

Stacktrace:

  at (wrapper managed-to-native)
DBus.Connection.dbus_connection_setup_with_g_main (intptr,intptr) 0x4
  at (wrapper managed-to-native)
DBus.Connection.dbus_connection_setup_with_g_main (intptr,intptr)
0x
  at DBus.Connection.SetupWithMain () [0x0] in
/debian/sponsors/slomo/dbus-sharp-0.63.git.20060719/mono/Connection.cs:105
  at DBus.Bus.GetBus (DBus.Bus/BusType) [0x0002a] in
/debian/sponsors/slomo/dbus-sharp-0.63.git.20060719/mono/Bus.cs:39
  at DBus.Bus.GetSessionBus () [0x0] in
/debian/sponsors/slomo/dbus-sharp-0.63.git.20060719/mono/Bus.cs:22
  at FSpot.Core.get_Connection () 0x00013
  at FSpot.Core.FindInstance () 0xd
  at FSpot.Driver.Main (string[]) 0x0030c
  at (wrapper runtime-invoke) System.Object.runtime_invoke_void_string[]
(object,intptr,intptr,intptr) 0x

Native stacktrace:

mono(mono_handle_native_sigsegv+0xec) [0x81804b5]
mono [0x816337f]
[0xe440]
[0xa5f4d8f5]
[0xa5f4d8ab]
[0xa5f4c392]
[0xa5f4c302]
[0xa5f4c2cc]
[0xa5f4c22e]
[0xa784a5d5]
[0xa78497c3]
mono [0x816324a]
mono(mono_runtime_invoke+0x27) [0x80b172f]
mono(mono_runtime_exec_main+0x142) [0x80b572a]
mono(mono_runtime_run_main+0x276) [0x80b59d0]
mono(mono_jit_exec+0xbd) [0x805cf00]
mono [0x805cfdd]
mono(mono_main+0x1610) [0x805e72e]
mono [0x805c116]
/lib/tls/libc.so.6(__libc_start_main+0xc8) [0xa7d77ea8]
mono [0x805c071]
Aborted


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

Versions of packages f-spot depends on:
ii  libart-2.0-2 2.3.17-1Library of functions for 2D
graphi
ii  libatk1.0-0  1.12.2-1The ATK accessibility toolkit
ii  libbonobo2-0 2.14.0-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.14.0-4The Bonobo UI library
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libcairo21.2.4-1 The Cairo 2D vector
graphics libra
ii  libdbus-1-cil0.63.git.20060719-4 CLI binding for D-BUS
interprocess
ii  libexif120.6.13-4library to parse EXIF files
ii  libfontconfig1   2.4.1-2 generic font configuration
library
ii  libgconf2-4  2.14.0-4GNOME configuration
database syste
ii  libgconf2.0-cil  2.8.3-1 CLI binding for GConf 2.12
ii  libglade2.0-cil  2.8.3-1 CLI binding for the Glade
librarie
ii  libglib2.0-0 2.12.3-2The GLib library of C routines
ii  libglib2.0-cil   2.8.3-1 CLI binding for the GLib
utility l
ii  libgnome-keyring00.4.9-1 GNOME keyring services library
ii  libgnome2-0  2.14.1-3The GNOME 2 library -
runtime file
ii  libgnome2.0-cil  2.8.3-1 CLI binding for GNOME 2.12
ii  libgnomecanvas2-02.14.0-2A powerful object-oriented
display
ii  libgnomeui-0 2.14.1-2The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0   2.14.2-1GNOME virtual file-system
(runtime
ii  libgphoto2-2 2.2.1-4 gphoto2 digital camera library
ii  libgtk2.0-0  2.8.20-1The GTK+ graphical user
interface
ii  libgtk2.0-cil2.8.3-1 CLI binding for the GTK+
toolkit 2
ii  libice6  1:1.0.1-2   X11 Inter-Client Exchange
library
ii  libjpeg626b-13   The Independent JPEG
Group's JPEG
ii  liblcms1 1.15-1  Color management library
ii  libmono-corlib1.0-ci 1.1.17.1-4  Mono core library (1.0)
ii  libmono-sharpzip0.84 1.1.17.1-4  Mono SharpZipLib library
ii  libmono-sqlite1.0-ci 1.1.17.1-4  Mono Sqlite library
ii  libmono-system-data1 1.1.17.1-4  Mono System.Data library
ii  libmono-system-web1. 1.1.17.1-4  Mono System.Web library
ii  libmono-system1.0-ci 1.1.17.1-4  Mono System libraries (1.0)
ii  libmono0 1.1.17.1-4  libraries for the Mono JIT
ii  libmono1.0-cil   1.1.17.1-4  Mono libraries (1.0)
ii  liborbit21:2.14.0-2  libraries for ORBit2 - a
CORBA ORB
ii  

Bug#390406: offlineimap to die with an assertion failure in IMAP.savemessage.

2006-09-30 Thread Daniel Burrows
Package: offlineimap
Version: 4.0.14
Severity: normal

  When syncing my mailbox today, I got this error message:

Thread 'New msg sync from spam' terminated with exception:
Traceback (most recent call last):
  File /var/lib/python-support/python2.4/offlineimap/threadutil.py, line 153, 
in run
Thread.run(self)
  File threading.py, line 422, in run
self.__target(*self.__args, **self.__kwargs)
  File /var/lib/python-support/python2.4/offlineimap/folder/Base.py, line 
207, in syn
cmessagesto_neguid_msg
successuid = tryappend.savemessage(uid, message, flags)
  File /var/lib/python-support/python2.4/offlineimap/folder/IMAP.py, line 
228, in sav
emessage
date, content)[0] == 'OK')
AssertionError

  It appears to happen when I try to sync my spam mailbox (which has new
spam downloaded via POP) with the IMAP account.

  The assertion seems to be checking that the message was successfully
sent to the server, but manually copying the spam message to the IMAP
server with mutt works fine.

  I've attached the message for your inspection.

  Daniel

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental'), (1, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages offlineimap depends on:
ii  python2.4.3-11   An interactive high-level object-o
ii  python-support0.5.2  automated rebuilding support for p

offlineimap recommends no packages.

-- no debconf information
---BeginMessage---
Spam detection software, running on the system jester, has
identified this incoming email as possible spam.  The original message
has been attached to this so you can view it (if it isn't spam) or label
similar future email.  If you have any questions, see
the administrator of that system for details.

Content preview:  There's nothing visible, in horror through snow was
  hurled there's hope of his anger. I'M then you realize he [...] 

Content analysis details:   (9.2 points, 5.0 required)

 pts rule name  description
 -- --
 2.9 FROM_LOCAL_NOVOWEL From: localpart has series of non-vowel letters
 2.2 INVALID_DATE   Invalid Date: header (not RFC 2822)
 1.5 RCVD_NUMERIC_HELO  Received: contains an IP address used for HELO
 0.0 UNPARSEABLE_RELAY  Informational: message has unparseable relay lines
 2.6 BAYES_80   BODY: Bayesian spam probability is 80 to 95%
[score: 0.9309]

The original message was not completely plain text, and may be unsafe to
open with some email clients; in particular, it may contain a virus,
or confirm that your address can receive spam.  If you wish to view
it, it may be safer to save it to a file and open it with an editor.

---BeginMessage---
There's nothing visible, in horror through snow was hurled there's hope of his 
anger.  I'M then you realize he


pft.gif
Description: GIF image
---End Message---
---End Message---


signature.asc
Description: Digital signature


Bug#389340: Does this works to you?

2006-09-30 Thread Otavio Salvador
Hello,

I applied the patch in: 

http://projetos.ossystems.com.br/debpartial-mirror/changeset/754

Could you check if that's the solution that you proposed?

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://www.freedom.ind.br/otavio
-
Microsoft gives you Windows ... Linux gives
 you the whole house.


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



Bug#390361: fglrx-driver: Loss of hardware acceleration after upgrading to xserver-xorg 7.1.0

2006-09-30 Thread Matthew Tippett
Support for AIGLX and support for Accelerated Direct Rendering are
unrelated.  ATI's driver has never supported AIGLX in any form, but
still maintains a level a dependence on the dri infrastructure.

Do you have any indication on that Acceleration is disabled?

Regards,

Matthew

 Original Message  
From: Steinar H. Gunderson [EMAIL PROTECTED]
To: LUK ShunTim [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Bug#390361: fglrx-driver: Loss of hardware acceleration after
upgrading to xserver-xorg 7.1.0
Date: 30/09/06 04:24 PM

 On Sun, Oct 01, 2006 at 02:05:14AM +0800, LUK ShunTim wrote:
 After upgrading to xorg 7.1.0, hardware acceleration is lost. Here's the
 relevant error in Xorg.0.log.

 (EE) AIGLX error: dlsym for __driCreateNewScreen_20050727 failed 
 (/usr/lib/dri/fglrx_dri.so: undefined symbol: __driCreateNewScreen_20050727)
 (EE) AIGLX: reverting to software rendering
 
 Has fglrx ever supported AIGLX?
 
 /* Steinar */


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



Bug#389488: Home folder's check

2006-09-30 Thread Géraud Meyer
Sorry to bug you one more time. If the aMule user's home folder can be
changed in /etc/default/amule-daemon, I think that the check that the
aMule user's folder exists should not be made before a stop in order to
be able to modify /etc/default/amule-daemon while amuled is running then
to stop it and move the folder and finally to start it for example. I
don't regard this as mandatory, but why not put those folder checks in
the start function? Eventually the following changes would have to be made:

*** 14,28 
exit 0
  fi

! HOME=`getent passwd $AMULED_USER | awk -F: '{print $6}'`
!
! if [ -z $HOME ]; then
!   echo aMule user does not exists or has no home folder. Check
/etc/default/amule-daemon settings
!   exit 0
  fi

  start ()
  {
  echo -n Starting aMule : amuled
  export HOME
  start-stop-daemon --chuid $AMULED_USER --user $AMULED_USER --start
--exec $DAEMON --background
--- 14,35 
exit 0
  fi

! if [ -z $AMULED_HOME ]; then
!   HOME=`getent passwd $AMULED_USER | awk -F: '{print $6}'`
! else
!   HOME=$AMULED_HOME
  fi

  start ()
  {
+ if [ -z $HOME ]; then
+   echo aMule user does not exists or has no home folder. Check
/etc/default/amule-daemon settings
+   exit 0
+ elif ! [ -d $HOME ]; then
+   echo aMule user's home folder does not exist. Check
/etc/default/amule-daemon settings
+   exit 0
+ fi
+
  echo -n Starting aMule : amuled
  export HOME
  start-stop-daemon --chuid $AMULED_USER --user $AMULED_USER --start
--exec $DAEMON --background

Regards


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



Bug#390407: tinysnmp-agent: tinysnmpd fails to start with unsatisfied linkage error

2006-09-30 Thread Ivan Todoroski
Package: tinysnmp-agent
Version: 0.8.4
Severity: grave
Justification: renders package unusable


# /etc/init.d/tinysnmp-agent start
Starting router-monitoring daemon: tinysnmpd/usr/sbin/tinysnmpd: symbol lookup 
error: /usr/sbin/tinysnmpd: undefined symbol: tokens_parse
..
#

looking further into this with 'nm -D', there indeed doesn't seem to be a symbol
named token_parse in /usr/lib/libabz.so.0.6.3, only tokens_parse_stub


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11.9-co-0.7.1
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages tinysnmp-agent depends on:
ii  libabz0  0.6.3   Miscellaneous useful routines
ii  libber0  0.4.2   A Basic Encoding Rules (ITU X.690)
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libdebug00.4.2   Memory leak detection system and l
ii  libevent11.1a-1  An asynchronous event notification

Versions of packages tinysnmp-agent recommends:
ii  tinysnmp-module-interfaces0.8.4  Interfaces MIB module for TinySNMP
ii  tinysnmp-module-resources 0.8.4  Frogfoot Networks Resources MIB pl

-- no debconf information


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



Bug#388286: f-spot: fails to start due to a SIGSEGV

2006-09-30 Thread Steve Langasek
reassign 388286 libdbus-1-cil
thanks

On Sat, Sep 30, 2006 at 09:18:17PM -0500, Erik Meitner wrote:
 I also have this with F-Spot. I updated dbus, libdbus-cil and others to the
 latest in sid to no avail.

   at (wrapper managed-to-native)
 DBus.Connection.dbus_connection_setup_with_g_main (intptr,intptr) 0x4
   at (wrapper managed-to-native)
 DBus.Connection.dbus_connection_setup_with_g_main (intptr,intptr)
 0x
   at DBus.Connection.SetupWithMain () [0x0] in
 /debian/sponsors/slomo/dbus-sharp-0.63.git.20060719/mono/Connection.cs:105
   at DBus.Bus.GetBus (DBus.Bus/BusType) [0x0002a] in
 /debian/sponsors/slomo/dbus-sharp-0.63.git.20060719/mono/Bus.cs:39
   at DBus.Bus.GetSessionBus () [0x0] in
 /debian/sponsors/slomo/dbus-sharp-0.63.git.20060719/mono/Bus.cs:22
   at FSpot.Core.get_Connection () 0x00013
   at FSpot.Core.FindInstance () 0xd
   at FSpot.Driver.Main (string[]) 0x0030c
   at (wrapper runtime-invoke) System.Object.runtime_invoke_void_string[]
 (object,intptr,intptr,intptr) 0x

This backtrace points to a problem in dbus-sharp, not in f-spot. 
Reassigning.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#390408: ITP: hlbr -- An IPS that runs over layer 2 (no TCP/IP stack required)

2006-09-30 Thread André Bertelli Araújo

Package: wnpp
Severity: wishlist
Owner: Andre Bertelli Araujo [EMAIL PROTECTED]


* Package name: hlbr
 Version : 1.1
 Upstream Author : Andre Bertelli Araujo [EMAIL PROTECTED], Joao
Eriberto Mota Filho [EMAIL PROTECTED]
* URL : http://hlbr.sourceforge.net/
* License : GPL
 Programming Lang: C
 Description : An IPS that runs over layer 2 (no TCP/IP stack required)

HLBR stands for Hogwash Light BR. It is a brazilian fork of
Jason Larsen's Hogwash IPS. Its main feature is that it can run
directly over OSI model layer 2, which means it doesn't even requires a
TCP/IP stack, running as a bridge. HLBR comes with a set of rules to
detect known malicious network traffic, and you can define your own rules
as well. Packet handling include options like dropping or diverting it to
another machine (such as a honeypot). Since it works like a bridge and
doesn't requires an IP address, it is invisible to intruders.

-- System Information:
Debian Release: testing/unstable
 APT prefers testing
 APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-k7
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)


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



Bug#379480: X Key/Mouse Freeze might be time/clock based

2006-09-30 Thread hendrik
On Sat, Sep 30, 2006 at 03:34:48PM -0600, Berg, Michael wrote:
 Several of my friends and I have been having similar problems - X
 keyboard/mouse input occasionally freezing.
 
 The problem has been encountered on both i386 and AMD64 systems, with both
 nvidia and ati video cards, with both free and proprietary drivers.
 
 The interesting thing is that most of our systems would freeze at almost
 the exact same time each time it happened (once every few months).  It
 happened again today, and three of our systems (in various locations around
 the city and state) all froze up during the same 1-2 minute period.

Mine freezes within minutes.

 
 So I started really looking into time-based triggers.  During my
 troubleshooting experiments, I found that if the system clock is adjusted
 even a few seconds backward, X input will freeze up a few seconds later.
 
 For example:
 1. Make sure any NTP software is turned off (since we want to know what
 changes are being made to the clock).

It's chrony I'm using, which, I believe, doesn't set the clock backward, 
but adjusts the speed of the clock instead.  Maybe that has the same 
effect as adusting it more often, hence minutes instead of months?

 
 2. Execute the date command and then adjust the time back slightly (about 2
 minutes backward is used in this example).
 
   # date
   Sat Sep 30 15:02:22 MDT 2006
 
   # date -s 'Sat Sep 30 15:00:00 MDT 2006'
 
 Every time I tried this, X keyboard and mouse input would freeze up a few
 seconds later.  Desktop applets like the system clock, CPU monitor, network
 activity, etc would all still be actively displaying (so the screen is
 still updating), but I would be unable to mouse between windows, hot-key
 between windows, type into the currently focused xterm, Ctrl-Alt-backspace
 to kill X, or Ctrl-Alt-F2 to a terminal window.

Regulas ASCII keyboard characters still work oafter a freeze -- if I 
happen to be in a shell at the time the mouse freezes, I can still go on
merrily entering commands.  But I'd better not try to start any commands 
that create windows!

 
 ssh'ing in from another computer and then stopping gdm and/or X would allow
 me to recover, restart X and run other test scenarios.

Yes, this true for me, too, except that it's all so slow that ssh times 
out during login.  But if I'm alreaddy ssh'd in, I can do things -- 
slowly.  Keystroke echo can take a minute!

 
 Can those of you who are also having this problem try the clock adjustment
 test above and see if you have the same results?

Will try and report results.

 
 How many of you who are experiencing the problem are running NTP
 synchronization software on your system?

Just chrony.

 
 I should also note that I could adjust the clock forward as much as I
 wanted with no adverse effects (I had test cases of moving forward a few
 seconds, a few minutes, a few hours, and almost an entire day), but any
 adjustment of the clock backward from its current setting triggered the
 problem.
 
 I'm running openbox, and my friends were both running GNOME (one on top of
 openbox and one on top of metacity).

running icewm.

 
 I had the same results in my tests whether the X session was started
 through GDM or from startx on the command line, and the same results
 whether xscreensaver was running or not.
 
 My theory on the three computers having having the problem at the same time
 is that a small backward re-adjustment may have propagated through the NTP
 servers we're using - which triggered the problem.
 
 For those of you who are experiencing this problem more frequently, if you
 have worse than average clock drift and are running NTP software, your
 system would probably be having to skip the clock back more often than
 most on most systems.  Or you may be using a very jittery NTP server.
 People who aren't running NTP probably wouldn't encounter the problem.
 But please respond to this if you are experiencing this and don't use NTP
 (every data point can help track down a bug).
 
 Anyway, hopefully this helps track down the problem.
 
 Michael


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



Bug#390251: Spelling mistake in package description

2006-09-30 Thread [EMAIL PROTECTED]

I never ordered the program you are refering to, please explain what you are refering to.

based on the fsd (Flight Simulator Daemon) protocol. This is particularybased on the fsd (Flight Simulator Daemon) protocol. This is particularly 

If the software you are refering to is going to cost money, since I never ordered it so please don't charge me for "Flight Simulator" I am not a game player so it could not have been me that ordered or asked to test it. I did not order the software mentioned above, so even if you do fix whatever bugs you are refering to I still never ordered and do not want "Flight Simulator"

--TTFN, (Till then for now) Stuart Sanders
stus05@ comcast.net

-- Original message -- From: "Kees Leune" [EMAIL PROTECTED] Hello,
On 9/30/06, Simon Waters [EMAIL PROTECTED] wrote:
Package: pcproxySeverity: minor*** diff/pcproxy17c17based on the fsd (Flight Simulator Daemon) protocol. This is particulary---based on the fsd (Flight Simulator Daemon) protocol. This is particularly -- System Information:Debian Release: testing/unstableAPT prefers unstableAPT policy: (500, 'unstable'), (1, 'experimental')Architecture: i386 (i686)Shell:/bin/sh linked to /bin/bashKernel: Linux 2.6.15.2Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)Thank you for the notification and for the patch. I am currently moving to a different house, and I yet need to set up my coding environment. Once things are ready again, I will apply the patch and prepare 
a new release. Kind regards,-Kees-- Kees Leune [EMAIL PROTECTED] 



Bug#390133: openoffice.org: another gdb backtrace...same lib as others

2006-09-30 Thread Byron Hillis
Package: openoffice.org
Version: 2.0.4~rc2-2
Followup-For: Bug #390133


Another backtrace in case it's useful.

#0  0xb6c4e7e4 in malloc () from /lib/tls/i686/cmov/libc.so.6
#1  0xb723b09d in rtl_allocateMemory ()
   from /usr/lib/openoffice/program/libuno_sal.so.3
#2  0xb764bf05 in String::ToInt32 ()
  from /usr/lib/openoffice/program/libtl680li.so
#3  0xb764d027 in String::String ()
 from /usr/lib/openoffice/program/libtl680li.so
#4  0xb20e8baa in SwTxtNode::SetWrg ()
from /usr/lib/openoffice/program/libsw680li.so
#5  0xb20e977e in SwTxtNode::CountWords ()
   from /usr/lib/openoffice/program/libsw680li.so
#6  0xb2010dba in n-virtual thunk to SwFmtPageDesc::Modify(SfxPoolItem*,
SfxPoolItem*) () from /usr/lib/openoffice/program/libsw680li.so
#7  0xbf8c435c in ?? ()
#8  0xb2a2a168 in ?? ()
#9  0xb0a12340 in ?? ()
#10 0x000e in ?? ()
#11 0x in ?? ()
(gdb) 



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18.01
Locale: LANG=en_AU.iso88591, LC_CTYPE=en_AU.iso88591 (charmap=ISO-8859-1) 
(ignored: LC_ALL set to en_AU.iso88591)


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



Bug#390410: arno-iptables-firewall: [INTL:pt_BR] Brazilian Portuguese debconf templates translation

2006-09-30 Thread Felipe Augusto van de Wiel (faw)
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: arno-iptables-firewall
Tags: l10n patch
Severity: wishlist

Please consider Brazilian Portuguese translation for
arno-iptables-firewall debconf templates. I'm sending attached
arno-iptables-firewall_1.8.6.c-3_pt_BR.po.gz

Note that pt_BR team is converting potfiles to UTF-8, so
this file is already enconded using UTF-8.


Kind regards and thanks in advance!

- --
Felipe Augusto van de Wiel (faw)
Debian. Freedom to code. Code to freedom!

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFFH0E6CjAO0JDlykYRAtpsAKCS0cmvKhyi9FzZbxu1ftmP26dPhQCg1PXQ
/zhUY5upgfbtmIM5Y2bu/Dk=
=DMAQ
-END PGP SIGNATURE-


arno-iptables-firewall_1.8.6.c-3_pt_BR.po.gz
Description: GNU Zip compressed data


Bug#390361: fglrx-driver: Loss of hardware acceleration after upgrading to xserver-xorg 7.1.0

2006-09-30 Thread LUK ShunTim
Matthew Tippett wrote:
 Support for AIGLX and support for Accelerated Direct Rendering are
 unrelated.  ATI's driver has never supported AIGLX in any form, but
 still maintains a level a dependence on the dri infrastructure.
 
 Do you have any indication on that Acceleration is disabled?
 
 Regards,
 
 Matthew
 

[snipped]

Hello,

Glxgears shows around 220-230 FPS after upgrading (ie, fglrx 8.28 and xorg
7.1.0) but used to be around 2610 FPS, with fglrx 8.24.8 and xorg 7.0. I did not
checked Xorg.0.log then.

I'm not that knowledgeable to distinguish clearly between dri and Acceleration
in capital as you mentioned (Please point me to some explanation for my
learning.) but I think this bug, if it is one, would impair X applications that
uses dri.

Thanks for looking into this,
ST
--



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



Bug#390411: gnumail.app: Preferences unusable - nothing displayed

2006-09-30 Thread Jason Wojciechowski
Package: gnumail.app
Version: 1.2.0~pre2-1
Severity: important


When I open the Preferences Panel, the buttons across the top have no images in
them (so I can't tell which category is which), and the box below in which I
would change settings is completely blank.  I've attached a screenshot.  Below
is the output to the terminal when I open the panel:

2006-09-30 23:33:48.140 GNUMail[14790] Unable to initialize module Account
2006-09-30 23:33:48.140 GNUMail[14790] Unable to initialize module Viewing
2006-09-30 23:33:48.141 GNUMail[14790] Unable to initialize module Receiving
2006-09-30 23:33:48.141 GNUMail[14790] Unable to initialize module Compose
2006-09-30 23:33:48.141 GNUMail[14790] Unable to initialize module Fonts
2006-09-30 23:33:48.141 GNUMail[14790] Unable to initialize module Colors
2006-09-30 23:33:48.141 GNUMail[14790] Unable to load the Button bundle.

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

Versions of packages gnumail.app depends on:
ii  addressmanager.app 0.4.6-6   Personal Address Manager for GNUst
ii  gnustep-back0.11   0.11.0-2  The GNUstep GUI Backend
ii  gnustep-base-runtime   1.13.0-3  GNUstep Base library
ii  gnustep-gpbs   0.11.0-2  The GNUstep PasteBoard Server
ii  gnustep-gui-runtime0.11.0-2  GNUstep GUI Library - runtime file
ii  libaddresses0  0.4.6-6   Database API backend framework for
ii  libaddressview00.4.6-6   Address display/edit framework for
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libgnustep-base1.131.13.0-3  GNUstep Base library
ii  libgnustep-gui0.11 0.11.0-2  GNUstep GUI Library
ii  libobjc1   1:4.1.1-14Runtime library for GNU Objective-
ii  libpantomime1.21.2.0~pre2.dfsg-1 GNUstep framework for mail handlin

gnumail.app recommends no packages.

-- no debconf information


preferences.png
Description: PNG image


Bug#390409: rosegarden: System timer resolution is too low

2006-09-30 Thread Arthur Marsh
Package: rosegarden
Version: 1:1.4.0-1
Severity: normal


I'm running JACK 0.2.20 on a PII-255 with 256 MiB RAM and a kernel 
rebuilt with Realtime-LSM, pre-emption and PII optimisations. The kernel 
is left with 250Hz resolution.

On startup, I get the message:

System timer resolution is too low
Rosegarden was unable to find a high-resolution timing source for MIDI 
performance.
This may mean you are using a Linux system with the kernel timer 
resolution set too low. Please contact your Linux distributor for more 
information.

[end quote]

I get the same error if I rebuild the kernel with 1000 Hz ticks.

On boot-up I get the message:

Oct  1 04:04:48 localhost kernel: PCI: Probing PCI hardware
Oct  1 04:04:48 localhost kernel: PCI: Probing PCI hardware (bus 00)
Oct  1 04:04:48 localhost kernel: * Found PM-Timer Bug on the chipset. 
Due to workarounds for a bug,
Oct  1 04:04:48 localhost kernel: * this clock source is slow. Consider 
trying other clock sources

Do you have any advice about this error?

Regards...

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)

Versions of packages rosegarden depends on:
ii  kdelibs4c2a 4:3.5.4-3core libraries and binaries for al
ii  khelpcenter 4:3.5.4-2+b2 help center for KDE
ii  libasound2  1.0.12-1 ALSA library
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libfontconfig1  2.4.1-2  generic font configuration library
ii  libgcc1 1:4.1.1-14   GCC support library
ii  libjack0.100.0-00.101.1-1JACK Audio Connection Kit (librari
ii  liblircclient0  0.8.0-7  LIRC client library
ii  liblo0  0.23-2.1 Lightweight OSC library
ii  liblrdf00.4.0-1  a library to manipulate RDF files 
ii  libqt3-mt   3:3.3.6-4Qt GUI Library (Threaded runtime v
ii  libstdc++6  4.1.1-14 The GNU Standard C++ Library v3
ii  libx11-62:1.0.0-9X11 client-side library
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  rosegarden-data 1:1.4.0-1music editor and MIDI/audio sequen

Versions of packages rosegarden recommends:
ii  cmt [ladspa-plugin]   1.15-3.1   Computer Music Toolkit (cmt) a col
ii  jackd 0.101.1-1  JACK Audio Connection Kit (server 
ii  swh-plugins [ladspa-plugin]   0.4.14-1.1 Steve Harris's LADSPA plugins
ii  tap-plugins [ladspa-plugin]   0.7.0-2Tom's Audio Processing LADSPA plug

-- no debconf information


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



Bug#390412: Last.FM streamer script (amarok_proxy.rb) freezes, won't play more streams w/o killing script (or restarting Amarok)

2006-09-30 Thread Adam Porter
Package: amarok
Version: 1.4.3-1
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Every time I play a Last.FM stream in Amarok, after about 3-5 minutes, the 
audio stops.  Amarok's interface indicates that the track is still in play 
mode, but the time 
countdown doesn't change.  If I hit stop, it then shows both the stop and play 
buttons as grayed out.  If I double-click the stream in the playlist again, it 
shows 
Connecting to stream source... in the status bar for a few seconds, then it 
disappears and nothing else happens.  If I look in the process list, I can see 
ruby 
/usr/bin/amarok_proxy.rb --lastfm 53278 http://streamer1.last.fm... 
xine-engine.  If I kill that process, Amarok instantly makes the play button 
clickable again, and I can 
then click it and it will play the stream again.  Also, about a minute after 
the audio stops, Amarok scrolls up a sheet that says:

The source cannot be read for the URL...xine paramaters: localhost

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

Versions of packages amarok depends on:
hi  amarok-engines   1.4.3-1 output engines for the Amarok audi
hi  amarok-xine [amarok- 1.4.3-1 xine engine for the Amarok audio p
ii  kdelibs4c2a  4:3.5.4-3   core libraries and binaries for al
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libaudio21.8-2   The Network Audio System (NAS). (s
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libfontconfig1   2.4.1-2 generic font configuration library
ii  libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.1-13  GCC support library
ii  libgl1-mesa-glx [lib 6.5.1-0.1   A free implementation of the OpenG
ii  libglib1.2   1.2.10-10.1 The GLib library of C routines
ii  libglib2.0-0 2.12.3-2The GLib library of C routines
ii  libgpod0 0.3.2-1.1   a library to read and write songs 
ii  libgtk1.21.2.10-18   The GIMP Toolkit set of widgets fo
ii  libice6  1:1.0.1-2   X11 Inter-Client Exchange library
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libifp4  1.0.0.2-3   communicate with iRiver iFP audio 
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  libmysqlclient15off  5.0.24a-4   mysql database client library
ii  libnjb5  2.2.5-4.1   Creative Labs Nomad Jukebox librar
ii  libpng12-0   1.2.8rel-5.2PNG library - runtime
ii  libpq4   8.1.4-6 PostgreSQL C client library
ii  libqt3-mt3:3.3.6-4   Qt GUI Library (Threaded runtime v
ii  libruby1.8   1.8.5-2 Libraries necessary to run Ruby 1.
ii  libsdl1.2debian  1.2.11-3Simple DirectMedia Layer
ii  libsm6   1:1.0.1-2   X11 Session Management library
ii  libsqlite3-0 3.3.7-1 SQLite 3 shared library
ii  libstdc++6   4.1.1-13The GNU Standard C++ Library v3
ii  libtag1c2a   1.4-4   TagLib Audio Meta-Data Library
ii  libtunepimp3 0.4.2-3.2   MusicBrainz tagging library and si
ii  libusb-0.1-4 2:0.1.12-2  userspace USB programming library
ii  libvisual-0.4-0  0.4.0-1 Audio visualization framework
ii  libx11-6 2:1.0.0-9   X11 client-side library
ii  libxcursor1  1.1.7-4 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxft2  2.1.8.2-8   FreeType-based font drawing librar
ii  libxi6   1:1.0.1-3   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.1-3   X Rendering Extension client libra
ii  libxt6   1:1.0.2-2   X11 toolkit intrinsics library
ii  ruby 1.8.2-1 An interpreter of object-oriented 
ii  xlibmesa-gl  1:7.1.0-1   transitional package for Debian et
ii  xmms 1:1.2.10+20060901-2 Versatile X audio player
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages amarok recommends:
ii  kdemultimedia-kio-plugins 4:3.5.4-1  enables the browsing of audio CDs 

- -- no debconf information

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


Bug#390319: compiz: Doesnt refresh windows content

2006-09-30 Thread Sebastián Lara Menares

i fix this problem adding:

 Option  XAANoOffscreenPixmaps

in Device Section, and

 Load   ddc

in Module Section

i hope that this will help you.


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



Bug#390361: fglrx-driver: Loss of hardware acceleration after upgrading to xserver-xorg 7.1.0

2006-09-30 Thread Matthew Tippett
There were some changes that radically affected ultra-simplistic
applications, if you can run fgl_glxgears then you are running the
proprietary drivers with acceleration.


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



Bug#390361: fglrx-driver: Loss of hardware acceleration after upgrading to xserver-xorg 7.1.0

2006-09-30 Thread Matthew Tippett
That confirms that you have not lost hardware acceleration.

Again, fgl_glxgears is a simplistic application that demonstrates the
use of pbuffers or framebuffer objects.  Have any of your real 3D
applications been affected?

The change in glxgears score is a result of a driver change to enhance
the users experience with some games.  It is unrelated to XOrg 7.1.

There error messages that you are seeing is related to enabling the
accelerated GLX mode of hardware acceleration, a feature that was only
available with NV's proprietary driver until XOrg 7.1.

Please view http://principe.homelinux.net/ for a bit of background.  In
particular try to understand the difference between the X.Org and AIGLX
diagrams about three quarters down the page.  Note the direct rendering
(the hardware acceleration that you would have had previously) line is
unchanged between the two models.

The error message you are referring to is the one generated as the 'GLX
Extension' is attempting to get accelerated indirect 3D rendering started.

Regards,

Matthew



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



Bug#390361: fglrx-driver: Loss of hardware acceleration after upgrading to xserver-xorg 7.1.0

2006-09-30 Thread LUK ShunTim
Matthew Tippett wrote:
 There were some changes that radically affected ultra-simplistic
 applications, if you can run fgl_glxgears then you are running the
 proprietary drivers with acceleration.
 

I get 420-430 fps with fgl_glxgears now but it was 560-570 fps before. A 20%
decrease. Still not desirable. :-(

And are you saying that applications written previously may be affected?
Is this a change due to fglrx? Or due to the dri library of xorg? Or both?
Regards,
ST
-- 




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



Bug#378081: Cannot read V_BIOS memory allocation error -- resolved

2006-09-30 Thread Joe Rayhawk
This is working for me in the current version (1.1.1-9). I'm a very happy
camper again.


signature.asc
Description: Digital signature


Bug#385026: Bug #385026: GTK installer rendering bug in multiselect: progress?

2006-09-30 Thread Christian Perrier
I do not use the graphical installer very often (shame) and I just
went on this bug today, where the selected choice in a multiselect
list does not display any text.

Indeed, as it shows up in tasksel, it makes the Desktop environment
text disappear. As a consequence, it could be considered release
critical.

Is someone working on it to, at least, try to understand where it
comes from. The bug log says nothing except an exchange where Attilio
is talking about the wrong bug.

-- 




signature.asc
Description: Digital signature


<    1   2   3   4