Bug#402191: hercules cannot work with 2.6.18 host kernel, except as root

2007-04-11 Thread Ivan Warren

Andreas, p2,

This is a known issue that has been fixed upstream on 10/19/2006 in CVS :

*** cvs diff -ub starts here ***

diff -u -b -r1.24 -r1.25
--- hercifc.c   23 Apr 2006 04:59:57 -  1.24
+++ hercifc.c   19 Oct 2006 21:15:45 -  1.25
@@ -36,8 +36,10 @@
void*   pArg = NULL;// - ifreq or rtentry
CTLREQ  ctlreq; // Request Buffer
int sockfd; // Socket descriptor
+int fd; // FD for ioctl
int rc; // Return code
pid_t   ppid;   // Parent's PID
+int answer; // 1 = write answer to stdout
charszMsgBuffer[255];

UNREFERENCED( argc );
@@ -90,8 +92,19 @@
exit( 4 );
}

+fd = sockfd;
+answer = 0;
+
switch( ctlreq.iCtlOp )
{
+case TUNSETIFF:
+pOp  = TUNSETIFF;
+pArg = ctlreq.iru.ifreq;
+pIF  = ?;
+fd = ctlreq.iProcID;
+answer = 1;
+break;
+
case SIOCSIFADDR:
pOp  = SIOCSIFADDR;
pArg = ctlreq.iru.ifreq;
@@ -115,6 +128,7 @@
pOp  = SIOCGIFFLAGS;
pArg = ctlreq.iru.ifreq;
pIF  = ctlreq.iru.ifreq.ifr_name;
+answer = 1;
break;
#endif /* (caller should do 'ioctl' directly themselves instead) */

@@ -194,7 +208,7 @@
write( STDERR_FILENO, szMsgBuffer, strlen( szMsgBuffer ) );
#endif /*defined(DEBUG) || defined(_DEBUG)*/

-rc = ioctl( sockfd, ctlreq.iCtlOp, pArg );
+rc = ioctl( fd, ctlreq.iCtlOp, pArg );
if( rc  0 )
{
snprintf( szMsgBuffer,sizeof(szMsgBuffer),
@@ -203,6 +217,10 @@

write( STDERR_FILENO, szMsgBuffer, strlen( szMsgBuffer ) );
}
+else if (answer)
+{
+write( STDOUT_FILENO, ctlreq, CTLREQ_SIZE );
+}
}

// Never reached.
@@ -210,3 +228,4 @@
}

#endif // defined(BUILD_HERCIFC)
+
--- tuntap.c25 Apr 2006 19:41:35 -  1.42
+++ tuntap.c19 Oct 2006 21:15:45 -  1.43
@@ -51,6 +51,93 @@
// Primary Module Entry Points
// 

+static int TUNTAP_SetMode (int fd, struct ifreq *ifr)
+{
+int rc;
+
+/* Try TUNTAP_ioctl first */
+rc = TUNTAP_IOCtl (fd, TUNSETIFF, (char *) ifr);
+
+#if !defined(OPTION_W32_CTCI)
+/* If invalid value, try with the pre-2.4.5 value */
+if (rc != 0  errno == EINVAL)
+rc = TUNTAP_IOCtl (fd, ('T'  8) | 202, (char *) ifr);
+
+/* kludge for EPERM and linux 2.6.18 */
+if (rc != 0  errno == EPERM)
+{
+int ifd[2];
+char   *hercifc;
+pid_t   pid;
+CTLREQ  ctlreq;
+fd_set  selset;
+struct timeval  tv;
+int sv_err;
+int status;
+
+if (socketpair (AF_UNIX, SOCK_STREAM, 0, ifd)  0)
+return -1;
+
+if (!(hercifc = getenv (HERCULES_IFC)))
+hercifc = HERCIFC_CMD;
+
+pid = fork();
+
+if (pid  0)
+return -1;
+else if (pid == 0)
+{
+/* child */
+dup2 (ifd[0], STDIN_FILENO);
+dup2 (STDOUT_FILENO, STDERR_FILENO);
+dup2 (ifd[0], STDOUT_FILENO);
+close (ifd[1]);
+rc = execlp (hercifc, hercifc, NULL );
+return -1;
+}
+
+/* parent */
+close(ifd[0]);
+
+/* Request hercifc to issue the TUNSETIFF ioctl */
+memset (ctlreq, 0, CTLREQ_SIZE);
+ctlreq.iCtlOp = TUNSETIFF;
+ctlreq.iProcID = fd;
+memcpy (ctlreq.iru.ifreq, ifr, sizeof (struct ifreq));
+write (ifd[1], ctlreq, CTLREQ_SIZE);
+
+/* Get response, if any, from hercifc */
+FD_ZERO (selset);
+FD_SET (ifd[1], selset);
+tv.tv_sec = 5;
+tv.tv_usec = 0;
+rc = select (ifd[1]+1, selset, NULL, NULL, tv);
+if (rc  0)
+{
+rc = read (ifd[1], ctlreq, CTLREQ_SIZE);
+if (rc  0)
+memcpy (ifr, ctlreq.iru.ifreq, sizeof (struct ifreq));
+}
+else if (rc == 0)
+{
+logmsg (_(HHCTU001E %s timeout, possible older version?\n),
+hercifc);
+errno = EPERM;
+rc = -1;
+}
+
+/* clean-up */
+sv_err = errno;
+close (ifd[1]);
+kill (pid, SIGINT);
+waitpid (pid, status, 0);
+errno = sv_err;
+}
+#endif /* if !defined(OPTION_W32_CTCI) */
+
+return rc;
+}
+
//
// TUNTAP_CreateInterface
//
@@ -142,14 +229,9 @@
struct ifreq ifr;

memset( ifr, 0, sizeof( ifr ) );
-
ifr.ifr_flags = iFlags;

-// First try the value from the header that we ship (2.4.8)
-// If this fails with EINVAL, try with the 

Bug#405738: glibc should build-depend on binutils (= 2.17.50)

2007-04-11 Thread Matthias Klose
reopen 405738
found 405738 2.5-1

apparently the build dependency has been dropped again; was there a
reason to rush the glibc upload and not to wait for the binutils
update?


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



Bug#418701: ffmpeg2theora segfaults on trivial raw source file

2007-04-11 Thread Bernard Jungen
Package: ffmpeg2theora
Version: 0.16-2+b1

The following commands lead to a segfault in ffmpeg2theora:

printf YUV4MPEG2 W720 H576 F25:1\n  test ; dd if=/dev/zero bs=622080 
count=250  test ; ffmpeg2theora test

Copy of output:

Input #0, yuv4mpegpipe, from '/video/test':
  Duration: N/A, bitrate: N/A
  Stream #0.0: Video: rawvideo, yuv420p, 720x576, 25.00 fps(r)
  Resize: 720x576
  0:00:00.00 audio: 0kbps video: 0kbps  Segmentation fault

An empty output file is created.


In fact I can't seem to make it accept *any* yuv4mpeg raw data.

My system:

Debian GNU/Linux 3.0
linux-image-2.6.15-1-k7 2.6.15-8
libc6 2.3.6-7
libavcodec0d 0.cvs20060823-8
libavformat0d 0.cvs20060823-8
libtheora0 0.0.0.alpha7.dfsg-2

This bug may be related to bug#404646


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



Bug#418688: d-i: Points to Sarge in sources.list

2007-04-11 Thread Luis Matos
Just a comment on this.

Why the installer does not has only the version-codename in the
sources.list?

or both (stable and etch).

there are 2 issues here:
 1 . the users want to have a controled upgrade to a new release. So
having etch as release-name in sources.list makes it to switch to
oldstable, instead of stable.
 2 . the users want to upgrade to a new stable when a new release comes
out.

 even if the package manager shows a new bunch of updates, automatically
updated systems can automatically be broken if stable is defined, by a
bad upgrade. 
Normally, some systems are installed prior to the release (for example
systems installed since november are etch (testing) ... no point
installing sarge just to upgrade a few months later) use dist-upgrade
for it's upgrade, or even systems using backports.org reference.

So, i believe the simpliest is to ask the user if he wants to upgrade
directly when a new release comes out, or to stick with the current
stable.
Another example are people that are in the middle of some kind of
development in sarge and sudnly all system changes.

it's something to check ... or not, just a thought.

Qua, 2007-04-11 às 12:25 +0200, Frans Pop escreveu:
 reassign 418688 mirrors
 thanks
 
 On Wednesday 11 April 2007 11:35, Frederic  Leah wrote:
  On a brand new minimal install of Etch from CD1, sources.list
  reference the Etch CD but Sarge online repositories (both
  mirrorservice.org and security.debian.org)
 
 This means that mirrorservice.org has not yet switched stable to etch; 
 they're just not up-to-date. The wrong listing for security is a side 
 effect of that. We will try to avoid this issue for future releases in 
 the installer though.
 
 I'm reassigning this to the mirrors team. You can just change the entries 
 in your sources list manually, but should probably consider changing to a 
 mirror that has the etch release.
 You can check http://mirror/debian/dists/etch/Release: it should have a 
 line Suite: stable.
 
 Cheers,
 FJP
 
 



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



Bug#418471: linkto CVS patch

2007-04-11 Thread Vitaliy Okulov
Здравствуйте, 418471.

Please add this patch 
http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_mysql/mysql_statement.c?r1=1.48.2.14.2.3r2=1.48.2.14.2.4pathrev=PHP_5_2
to php package.

-- 
С уважением,
 Vitaliy  mailto:[EMAIL PROTECTED]




Bug#418688: d-i: Points to Sarge in sources.list

2007-04-11 Thread Frans Pop
On Wednesday 11 April 2007 14:01, Luis Matos wrote:
 Why the installer does not has only the version-codename in the
 sources.list?

The Etch installer _does_ only put code names in the sources.list.

Cheers,
FJP


pgpAGnTFOREXQ.pgp
Description: PGP signature


Bug#417776: pending

2007-04-11 Thread LI Daobing

package xdrawchem
tags 417776 pending
forwarded 417776
https://sourceforge.net/tracker/index.php?func=detailaid=1698295group_id=34518atid=411559
thanks

check it at http://svn.debian.org/wsvn/debichem/unstable/xdrawchem/

--
LI Daobing


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



Bug#418699: gnome-terminal: caret drawn strangely

2007-04-11 Thread Johannes Berg
Package: gnome-terminal
Version: 2.18.0-1
Severity: minor

When I have the editor joe open my caret is supposed to look like a block:

=
=
=
=
=


Now, when I press page up/down in exactly the right moment when the blinking
caret is just about to reappear, it's drawn incomplete for the first
blinking, after going away and coming back it's fine. Sometimes, it'll be
drawn like this:

= =  =
=or   =  or  =   or various other strange shapes.
  =  =
===  =
_   ===  =



This is just somewhat irritating and may point to a deeper bug with locking
drawing onto the surface, but who knows. It doesn't seem to happen when just
moving up/down so this seems to indicate that it may be due to the redraw
delay.

This is the first time I've seen this bug, so I guess it's new in 2.18. But
maybe the timing only got different so that it's easier to trigger.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.21-rc5-g356f78c6-dirty
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-terminal depends on:
ii  gnome-control-center1:2.16.3-1   utilities to configure the GNOME d
ii  gnome-terminal-data 2.18.0-1 Data files for the GNOME terminal 
ii  libart-2.0-22.3.19-2 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-1 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-1 Bonobo CORBA interfaces library
ii  libc6   2.5-0exp6GNU C Library: Shared libraries
ii  libgconf2-4 2.18.0.1-2   GNOME configuration database syste
ii  libglade2-0 1:2.6.0-4library to load .glade files at ru
ii  libglib2.0-02.12.11-1The GLib library of C routines
ii  libgnome2-0 2.18.0-2 The GNOME 2 library - runtime file
ii  libgnomeui-02.18.1-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.0.1-1 GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.10.11-1The GTK+ graphical user interface 
ii  liborbit2   1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.16.1-1 Layout and rendering of internatio
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libstartup-notification00.9-1library for program launch feedbac
ii  libvte9 1:0.16.0-2   Terminal emulator widget for GTK+ 
ii  libx11-62:1.1.1-1X11 client-side library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  scrollkeeper0.3.14-13A free electronic cataloging syste

Versions of packages gnome-terminal recommends:
ii  yelp  2.18.0-1   Help browser for GNOME 2

-- no debconf information


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



Bug#418700: xserver-xorg-video-ati: crashes on resume when rhythmbox is playing music

2007-04-11 Thread Johannes Berg
Package: xserver-xorg-video-ati
Version: 1:6.6.3-2
Severity: normal

Let me say this up front: Yes, this is extremely strange. I have no idea
what could *possibly* be causing it.

Both versions 6.6.3 and 6.6.191 crash on resume (when switching back from
the suspend console) when rhythmbox is playing across suspend. Just having
rhythmbox open doesn't make a difference.

Initially I suspected that rhythmbox was trying to draw something while
other processes were still stopped due to alsa giving it a signal or
something, but I think that theory can be dismissed ;) [actually, I checked,
but see no evidence in both alsa code and a rhythmbox strace]

This backtrace I got might be it, but it might also be the one from later
on (see below):

0: /usr/bin/X(xf86SigHandler+0x94) [0x100a64f8]
1: [0x100344]
2: /lib/ld.so.1 [0x30014298]
3: /usr/lib/xorg/modules/drivers//radeon_drv.so [0xf92f0b8]
4: /usr/lib/xorg/modules/drivers//radeon_drv.so(RADEONPreInit+0xa24) [0xf933248]
5: /usr/bin/X(InitOutput+0xb08) [0x100663e8]
6: /usr/bin/X(main+0x294) [0x10026d88]
7: /lib/libc.so.6 [0xfc83d48]
8: /lib/libc.so.6 [0xfc83f98]

When X has crashed during resume and version 6.6.3 is installed, X can be
simply restarted (actually, that might only be true for MergedFB off, see
bug #41), while when 6.6.191 is installed it again segfaults when
starting after it has crashed. And in fact, that might be the backtrace
above. Not that it's useful in either case. I could reproduce this and get
better stack traces if I can obtain debug builds of the driver.


A few more points:
 * it doesn't happen when mplayer is playing music
 * it doesn't happen when rhythmbox is running but not playing music (though
   I haven't actually tried with paused)
 * The kernel I'm running is heavily patched, but I disclaim any
   responsibility. The major difference over mainline kernels is that
   processes are stopped across suspend due to using /sys/power/state now.
 * I have previously suspended with rhythmbox running but cannot say what
   change surfaced this bug. I suspect a rhythmbox upgrade since that would
   be one of the few things I upgraded.

If I read the backtrace correctly, then RADEONPreInit is loaded at 0xf932824
which means that the module is loaded at 0xf902d40. I tried following the
code at 0x2c378 in the module (0xf92f0b8-0xf902d40) but it doesn't make
sense to me (it seems to poke around in the code of the caller?!)

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.21-rc5-g356f78c6-dirty
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-xorg-video-ati depends on:
ii  libc6 2.5-0exp6  GNU C Library: Shared libraries
ii  xserver-xorg-core 2:1.2.99.903-1 X.Org X server -- core server

xserver-xorg-video-ati recommends no packages.

-- no debconf information


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



Bug#414567: hercules: FTBFS (arm): error: stray '$' in program

2007-04-11 Thread Ivan Warren

Fixed upstream too !

thank you,

--Ivan


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



Bug#311919: this bug/#311919: apt-get -qq accesses /dev/tty

2007-04-11 Thread Pierre Habouzit
On Wed, Apr 11, 2007 at 06:58:21AM -0400, Justin Pryzby wrote:
 #311919: apt-get -qq accesses /dev/tty
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=311919
 
 I hope my patch to #343423 didn't reintroduce this bug?

  Nope, we open /dev/tty for nothing, but the fix to #311919 still
applies and nothing is done with it. So we're safe, we just opened a FD,
and that does not harm anyone nor anything.

  Moreover I just tested and this works properly.
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpQezuxyO3Ia.pgp
Description: PGP signature


Bug#418702: pearpc: ppc seems to ignore configfile argument

2007-04-11 Thread Reuben Thomas
Package: pearpc
Version: 0.4.0-3
Severity: normal

Whatever I put in my config file, when I run

ppc configfile

I get the message about missing test/images/linux.img, which suggests
that it's still reading /etc/ppc/ppc.conf.

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

Versions of packages pearpc depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libsdl1.2debian 1.2.11-8 Simple DirectMedia Layer
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3

pearpc recommends no packages.

-- no debconf information


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



Bug#215409: can't reproduce under 1.9.9-3

2007-04-11 Thread LI Daobing

package xdrawchem
tags 215409 unreproducible
thanks

can't reproduce under 1.9.9-3

--
LI Daobing


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



Bug#365545: xbase-clients: Upgrading to Xorg7 make startx broken

2007-04-11 Thread Emil Nowak
On 2007-04-10, at 22:46:51 Brice Goglin wrote:

 Hi,
 
 About a years ago, you reported a bug to the Debian BTS regarding startx
 not working anymore after an upgrade to Xorg 7. Did you reproduce this
 problem recently? With Xorg/Etch? If not, I will close this bug in the
 next weeks.
I can't reproduce this on current SID.


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



Bug#415815: hal: no battery status reported

2007-04-11 Thread Marcus Better
...and now it's broken again, so it seems I wasn't mistaken.

~$ uname -r
2.6.21-rc6-melech
~$ grep SYSFS /boot/config-2.6.21-rc6-melech
CONFIG_SYSFS_DEPRECATED=y
CONFIG_PM_SYSFS_DEPRECATED=y
CONFIG_RTC_INTF_SYSFS=m
CONFIG_SYSFS=y

Will try a stock Debian kernel.

Marcus


pgpvVWa1qYj3r.pgp
Description: PGP signature


Bug#418703: docbook2x: fails to build a manpage (used to work)

2007-04-11 Thread Ondrej Certik
Package: docbook2x
Version: 0.8.3-1
Severity: grave
Justification: renders package unusable

[EMAIL PROTECTED]:~/sympy$ docbook2x-man doc/man/isympy.xml
I/O error : Attempt to load network entity
http://docbook2x.sf.net/latest/xslt/man/docbook.xsl
warning: failed to load external entity
http://docbook2x.sf.net/latest/xslt/man/docbook.xsl;
cannot parse http://docbook2x.sf.net/latest/xslt/man/docbook.xsl
Ran out of memory for input buffer at /usr/lib/perl5/XML/Parser/Expat.pm line
469.

[EMAIL PROTECTED]:~/sympy$ docbook2x-man --version
/usr/bin/docbook2x-man (part of docbook2X 0.8.8)
$Revision: 1.12 $ $Date: 2006/04/14 17:29:04 $
URL:http://docbook2x.sourceforge.net/

However, the old version of docbook2x-man works:

[EMAIL PROTECTED]:~/sympy$ docbook2x-man doc/man/isympy.xml
[EMAIL PROTECTED]:~/sympy$ docbook2x-man --version
/usr/bin/docbook2x-man (part of docbook2X 0.8.3)
$Revision: 1.5 $ $Date: 2003/06/22 14:37:30 $
URL:http://docbook2x.sourceforge.net/


The isympy.xml is attached.  I can provide more info if needed.

Ondrej


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

Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=czech (charmap=ISO-8859-2)
Shell: /bin/sh linked to /bin/bash

Versions of packages docbook2x depends on:
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libtext-wrapi18n-perl  0.06-5internationalized substitute of Te
ii  libxml-sax-expat-perl  0.37-3Perl module for a SAX2 driver for 
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxslt1.1 1.1.20-1  XSLT processing library - runtime 
ii  perl   5.8.8-7   Larry Wall's Practical Extraction 
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages docbook2x recommends:
ii  docbook-xml  4.4-5   standard XML documentation system,
ii  docbook-xsl  1.72.0.dfsg.1-1 stylesheets for processing DocBook

-- no debconf information
?xml version='1.0' encoding='ISO-8859-1'?
!DOCTYPE refentry PUBLIC -//OASIS//DTD DocBook XML V4.2//EN
http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd; [

!--

Process this file with an XSLT processor: `xsltproc \
-''-nonet /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\
manpages/docbook.xsl manpage.dbk'.  A manual page
package.section will be generated.  You may view the
manual page with: nroff -man package.section | less'.  A
typical entry in a Makefile or Makefile.am is:

DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\
manpages/docbook.xsl
XP=xsltproc -''-nonet

manpage.1: manpage.dbk
$(XP) $(DB2MAN) $

The xsltproc binary is found in the xsltproc package.  The
XSL files are in docbook-xsl.  Please remember that if you
create the nroff version in one of the debian/rules file
targets (such as build), you will need to include xsltproc
and docbook-xsl in your Build-Depends control field.

--

  !-- Fill in your name for FIRSTNAME and SURNAME. --
  !ENTITY dhfirstname firstnameSeoane/firstname
  !ENTITY dhsurname   surnamefabian/surname
  !-- Please adjust the date whenever revising the manpage. --
  !ENTITY dhdate  dateMarch 21, 2007/date
  !-- SECTION should be 1-8, maybe w/ subsection other parameters are
   allowed: see man(7), man(1). --
  !ENTITY dhsection   manvolnum1/manvolnum
  !ENTITY dhemail email[EMAIL PROTECTED]/email
  !ENTITY dhusername  Fabian Seoane
  !ENTITY dhucpackage refentrytitleisympy/refentrytitle
  !ENTITY dhpackage   isympy

  !ENTITY debian  productnameDebian/productname
  !ENTITY gnu acronymGNU/acronym
  !ENTITY gpl gnu; acronymGPL/acronym
]

refentry
  refentryinfo
address
  dhemail;
/address
author
  dhfirstname;
  dhsurname;
/author
copyright
  year2003/year
  holderdhusername;/holder
/copyright
dhdate;
  /refentryinfo
  refmeta
dhucpackage;

dhsection;
  /refmeta
  refnamediv
refnamedhpackage;/refname

refpurposeinteractive console for SymPy (Symbolic Python)/refpurpose
  /refnamediv
  refsynopsisdiv
cmdsynopsis
  commanddhpackage;/command

  argoption-e replaceablethis/replaceable/option/arg

  argoption--example replaceablethat/replaceable/option/arg
/cmdsynopsis
  /refsynopsisdiv
  refsect1
titleisympy/title

paraThis manual page documents briefly the
  commanddhpackage;/command command./para

paraisympy is a Python shell for SymPy. It imports the modules
sympy and defines the symbols x, y, z. 
/para

  /refsect1
  refsect1
titleOPTIONS/title

paraThese programs follow the usual gnu; command line syntax,
  with long options starting with two dashes (`-').  A summary of
  options is included below.  For a complete description, see the
  applicationInfo/application files./para

variablelist
  varlistentry

Bug#418703: versions

2007-04-11 Thread Ondrej Certik

Just to make it clear: 0.8.3-1 works but 0.8.8-1 doesn't.

Ondrej


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



Bug#418688: mirrorservice.org outdated, etch install broken

2007-04-11 Thread Simon Paillard
Hello dear www.mirrorservice.org admin,

It seems that the mirror you kindly host is not up to date :
http://www.mirrorservice.org/sites/ftp.debian.org/debian/project/trace/
http://www.mirrorservice.org/sites/ftp.debian.org/debian/dists/etch/Release
refers etch as 'testing' while it is stable since 8th April.

It brokes the install of users that choose your mirror.

The 'saens.debian.org' server you mirrors from is currently overloaded,
could you switch to an other primary mirror ? You may use a european
primary mirror like ftp.de or ftp.hr.

http://debian.org/mirrors/list

Please tell us which mirror you choose so that we can update the list of 
mirrors.

Thanks in advance for your reactivity.

Best regards,

-- 
Simon Paillard

On Wed, Apr 11, 2007 at 12:25:06PM +0200, Frans Pop wrote:
 reassign 418688 mirrors
 thanks
 
 On Wednesday 11 April 2007 11:35, Frederic  Leah wrote:
  On a brand new minimal install of Etch from CD1, sources.list
  reference the Etch CD but Sarge online repositories (both
  mirrorservice.org and security.debian.org)
 
 This means that mirrorservice.org has not yet switched stable to etch; 
 they're just not up-to-date. The wrong listing for security is a side 
 effect of that. We will try to avoid this issue for future releases in 
 the installer though.
 
 I'm reassigning this to the mirrors team. You can just change the entries 
 in your sources list manually, but should probably consider changing to a 
 mirror that has the etch release.
 You can check http://mirror/debian/dists/etch/Release: it should have a 
 line Suite: stable.
 
 Cheers,
 FJP
 
 



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



Bug#418706: pstoraster crashed on signal 10 (cups)

2007-04-11 Thread Eric Nichols
Package: gs-esp
Version: 8.15.3.dfsg.1-1
Severity: grave

In Cups (1.2.7-4) when trying to print a test page (or any PostScript file) I
get the following results:

[Job 7] This document does not conform to the Adobe Document Structuring
Conventions and may not print correctly!
PID 4475 (/usr/lib/cups/filter/pstoraster) crashed on signal 10!

Printer: Epson Stylus Photo R320 - CUPS+Gutenprint v5.0.0
Connection: USB (PCI Card)
Platform: Sun 420R

Using Debian sid
Linux sol 2.6.18-4-vserver-sparc64 #1 SMP Mon Mar 26 15:14:19 UTC 2007 sparc64
GNU/Linux




Bug#418700: xserver-xorg-video-ati: crashes on resume when rhythmbox is playing music

2007-04-11 Thread Julien Cristau
On Tue, Apr 10, 2007 at 19:37:26 +0200, Johannes Berg wrote:

 Both versions 6.6.3 and 6.6.191 crash on resume (when switching back from
 the suspend console) when rhythmbox is playing across suspend. Just having
 rhythmbox open doesn't make a difference.
 
 Initially I suspected that rhythmbox was trying to draw something while
 other processes were still stopped due to alsa giving it a signal or
 something, but I think that theory can be dismissed ;) [actually, I checked,
 but see no evidence in both alsa code and a rhythmbox strace]
 
 This backtrace I got might be it, but it might also be the one from later
 on (see below):
 
 0: /usr/bin/X(xf86SigHandler+0x94) [0x100a64f8]
 1: [0x100344]
 2: /lib/ld.so.1 [0x30014298]
 3: /usr/lib/xorg/modules/drivers//radeon_drv.so [0xf92f0b8]
 4: /usr/lib/xorg/modules/drivers//radeon_drv.so(RADEONPreInit+0xa24) 
 [0xf933248]
 5: /usr/bin/X(InitOutput+0xb08) [0x100663e8]
 6: /usr/bin/X(main+0x294) [0x10026d88]
 7: /lib/libc.so.6 [0xfc83d48]
 8: /lib/libc.so.6 [0xfc83f98]
 
 When X has crashed during resume and version 6.6.3 is installed, X can be
 simply restarted (actually, that might only be true for MergedFB off, see
 bug #41), while when 6.6.191 is installed it again segfaults when
 starting after it has crashed. And in fact, that might be the backtrace
 above. Not that it's useful in either case. I could reproduce this and get
 better stack traces if I can obtain debug builds of the driver.
 
Hi, thanks for your report.

You should be able to get a debug build of the driver this way:
$ apt-get source xserver-xorg-video-ati
$ cd xserver-xorg-video-ati-*
$ sudo apt-get build-dep xserver-xorg-video-ati
$ DEB_BUILD_OPTIONS=nostrip dpkg-buildpackage -rfakeroot -us -uc -b -B

Then, install the resulting xserver-xorg-video-ati package and possibly
xserver-xorg-core-dbg which is available in experimental.
That should give you a usable backtrace if you're able to attach gdb to
the server (from another machine).

Cheers,
Julien


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



Bug#418377: Don't automatically set highest possible resolution as default

2007-04-11 Thread Paul van der Vlis
Brice Goglin schreef:
 Paul van der Vlis wrote:
 
Frans Pop schreef:
  

The (new?) option TargetRefresh in the Monitor section could be a 
solution for that. A default value of 75 or even 100 would seem quite 
sensible to me. This would probably disable the highest resolutions, at 
least on a lot of real CRTs.

Maybe a good idea.

 Paul,
 
 Since you were the original reporter, could you see what you get if you
 add this option to the xorg.conf that got generated during the install?

I did not install this on my own machine, it was for a customer. It's
not so easy for me to do tests there.

But I think I have a machine here with the same specs. I will update it
in a few weeks from Sarge to Etch, then I can do some tests.

 By the way, note that with the very recent X servers, you won't need a
 xorg.conf at all unless you want to tweak things (especially the
 keyboard map). So, it is not clear that we will generate a xorg.conf
 just for this new option during the install :) We might want to see what
 upstream thinks about all this.

I can understand.

With regards,
Paul van der Vlis.



-- 
http://www.vandervlis.nl/



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



Bug#418704: parted does not show existing partitions

2007-04-11 Thread Henrik Brautaset Aronsen
Package: parted
Version: 1.8.1~git1-1
Severity: important


Parted does not show my partitions at all, and lists the partition table as
loop.  Other partition software I've tried does not have problems with the
hard drive.

This is my hard drive, with fdisk v2.12r:

Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders, total 156301488 sectors
Units = sectors of 1 * 512 = 512 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/hda1  63   96389   48163+  de  Dell Utility
/dev/hda2   *   963906144862430676117+   7  HPFS/NTFS
/dev/hda361448625   15417580446363590   83  Linux
/dev/hda4   154175805   156280319 1052257+  82  Linux swap / Solaris


And with parted v1.8.1 (no different from v1.7.1):

Model: HTS721080G9AT00 (ide)
Disk /dev/hda: 80,0GB
Sector size (logical/physical): 512B/512B
Partition Table: loop

Number  Start  End SizeFile system  Flags
 1  0,00B  80,0GB  80,0GB  fat16 

Model: HTS721080G9AT00 (ide)
Disk /dev/hda: 156301487s
Sector size (logical/physical): 512B/512B
Partition Table: loop

Number  Start  End SizeFile system  Flags
 1  0s 156301487s  156301488s  fat16 

Model: HTS721080G9AT00 (ide)
Disk /dev/hda: 9729,80,62
Sector size (logical/physical): 512B/512B
BIOS cylinder,head,sector geometry: 9729,255,63.  Each cylinder is 8225kB.
Partition Table: loop

Number  Start  End File system  Flags
 1  0,0,0  9729,80,62  fat16 


Now with gpart v0.1h:

Begin scan...
Possible partition(DOS FAT), size(47mb), offset(0mb)
Possible partition(Windows NT/W2K FS), size(29957mb), offset(47mb)
Possible partition(Linux ext2), size(45276mb), offset(30004mb)
Possible partition(Linux swap), size(1027mb), offset(75281mb)
End scan.

Checking partitions...
Partition(Primary 'big' DOS ( 32MB)): primary 
Partition(OS/2 HPFS, NTFS, QNX or Advanced UNIX): primary 
Partition(Linux ext2 filesystem): primary 
Partition(Linux swap or Solaris/x86): primary 
Ok.

Guessed primary partition table:
Primary partition(1)
   type: 006(0x06)(Primary 'big' DOS ( 32MB))
   size: 47mb #s(96325) s(63-96387)
   chs:  (0/1/1)-(5/254/61)d (0/1/1)-(5/254/61)r

Primary partition(2)
   type: 007(0x07)(OS/2 HPFS, NTFS, QNX or Advanced UNIX)
   size: 29957mb #s(61352232) s(96390-61448621)
   chs:  (6/0/1)-(1023/254/63)d (6/0/1)-(3824/254/60)r

Primary partition(3)
   type: 131(0x83)(Linux ext2 filesystem)
   size: 45276mb #s(92727176) s(61448625-154175800)
   chs:  (1023/254/63)-(1023/254/63)d (3825/0/1)-(9596/254/59)r

Primary partition(4)
   type: 130(0x82)(Linux swap or Solaris/x86)
   size: 1027mb #s(2104520) s(154175805-156280324)
   chs:  (1023/254/63)-(1023/254/63)d (9597/0/1)-(9728/0/5)r


The bug is also listed in parted's bug tracking:
http://parted.alioth.debian.org/cgi-bin/trac.cgi/ticket/14


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
Locale: LANG=nb_NO, LC_CTYPE=nb_NO (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages parted depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libncurses5 5.5-5Shared libraries for terminal hand
ii  libparted1.8-0  1.8.1~git1-1 The GNU Parted disk partitioning s
ii  libreadline55.2-2GNU readline and history libraries

parted recommends no packages.

-- no debconf information


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



Bug#418705: mirror submission for ftp.mikesnet.ro

2007-04-11 Thread Adrian Deac
Package: mirrors
Severity: wishlist

Site: ftp.mikesnet.ro
Submission-Type: new
Aliases: debian.mikesnet.ro
Type: leaf
Archive-ftp: /debian/
Archive-http: /debian/
Mirrors-from: ftp.ro.debian.org
Archive-architecture: amd64 i386 mips mipsel 
Maintainer: Adrian Deac [EMAIL PROTECTED]
Country: RO Romania
Location: Cluj-Napoca, Cluj
Sponsor: MiKe softwarenetwork SRL http://www.mikesnet.ro
Comment: I'd like to sponsor this mirror. It currently has 4Mbps bandwidth, but 
it will grow in the future (as needed). It has about 100Mbps in the RDSRCS 
network from Cluj-Napoca (metropolitan access).


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



Bug#418667: Fails to install with error from updmap-sys

2007-04-11 Thread Frank Küster
Matt Kraai [EMAIL PROTECTED] wrote:

 Here are the contents of /tmp/tetex-updmap.gxU23914:

[...]
 updmap-sys: Scanning for LW35 support files

 !!! ERROR! The map file `dvips35.map' has not been found at all.

 Either put this file into the right place or remove the
 reference from the configuration files - see
 update-updmap(1).

It should be there...   And it usually is in fresh chroots.

Please post the output from the following commands:

ls -l /usr/share/texmf-tetex/fonts/map/dvips/tetex/dvips35.map 
kpsewhich --show-path=map
kpsewhich --var-value TEXFONTMAPS 
grep TEXFONTMAPS /etc/texmf/texmf.cnf 
grep TEXFONTMAPS /etc/texmf/texmf.d/*

These should all be correct in a fresh chroot, but they will hopefully
help us discover the real problem.

Regards, Frank
-- 
Dr. Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#418707: support for Linux 2.6.20

2007-04-11 Thread Robert Millan
Package: kernel-wedge
Version: 2.31
Severity: normal
Tags: patch

Attached patch adds support for Linux 2.6.20 by merging sata-modules into
scsi-modules.  The problem was that they now share a dependency on libata.
I'm not sure if this can be solved more cleanly, but I was in a hurry and
couldn't think of anything better.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-686
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to ca_ES.UTF-8)

Versions of packages kernel-wedge depends on:
ii  debhelper 5.0.42 helper programs for debian/rules
ii  make  3.81-2 The GNU version of the make util

kernel-wedge recommends no packages.

-- no debconf information
diff -Nur kernel-wedge-2.31.old/modules/sata-modules 
kernel-wedge-2.31/modules/sata-modules
--- kernel-wedge-2.31.old/modules/sata-modules  2006-07-26 00:49:22.0 
+0200
+++ kernel-wedge-2.31/modules/sata-modules  1970-01-01 01:00:00.0 
+0100
@@ -1,19 +0,0 @@
-carmel ?
-libata ?
-ata_piix ?
-sata_nv ?
-sata_promise ?
-sata_sil ?
-sata_sil24 ?
-sata_sis ?
-sata_svw ?
-sata_sx4 ?
-sata_via ?
-sata_vsc ?
-sata_qstor ?
-sata_uli ?
-ahci ?
-sx8 ?
-sata_sx4 ?
-sata_mv ?
-pdc_adma ?
diff -Nur kernel-wedge-2.31.old/modules/scsi-modules 
kernel-wedge-2.31/modules/scsi-modules
--- kernel-wedge-2.31.old/modules/scsi-modules  2006-08-15 14:33:51.0 
+0200
+++ kernel-wedge-2.31/modules/scsi-modules  2007-04-11 13:45:55.0 
+0200
@@ -32,3 +32,22 @@
 ultrastor ?
 wd7000 ?
 initio ?
+carmel ?
+libata ?
+ata_piix ?
+sata_nv ?
+sata_promise ?
+sata_sil ?
+sata_sil24 ?
+sata_sis ?
+sata_svw ?
+sata_sx4 ?
+sata_via ?
+sata_vsc ?
+sata_qstor ?
+sata_uli ?
+ahci ?
+sx8 ?
+sata_sx4 ?
+sata_mv ?
+pdc_adma ?
diff -Nur kernel-wedge-2.31.old/package-list kernel-wedge-2.31/package-list
--- kernel-wedge-2.31.old/package-list  2006-12-21 16:23:24.0 +0100
+++ kernel-wedge-2.31/package-list  2007-04-11 13:46:57.0 +0200
@@ -296,12 +296,6 @@
 Description: USB NIC drivers
  This package contains USB network adapter drivers for the Linux kernel.
 
-Package: sata-modules
-Depends: kernel-image, scsi-core-modules
-Priority: standard
-Description: SATA drivers
- This package contains SATA drivers for the Linux kernel.
-
 Package: firmware-modules
 Depends: kernel-image
 Priority: standard


Bug#418708: installation-reports: Dialogs difficult to use on gray-scale monitors

2007-04-11 Thread Marc-Jano Knopp
Package: installation-reports
Severity: normal



-- Package-specific info:

Boot method: network
Image version: 
http://ftp.de.debian.org/debian/dists/etch/main/installer-i386/current//images/netboot/netboot.tar.gz,
 build date 2007-03-10
Date: 2007-04-10

Machine: x86, DFI K6BV3+, AMD K6-II/450, 320 MB RAM, 9 grayscale monitor, 
Matrox G200
Partitions: df -Tl will do; the raw partition table is preferred


Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [O]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [ ]
Load installer modules: [E]
Detect hard drives: [O]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [E]
Install boot loader:[O]
Overall install:[O]

Comments/Problems:

Some dialogs like Software selection and Download installer components
are difficult to use, as they have no visible selection bar or cursor on my
gray-scale monitor. This is true for both framebuffer and text mode console.

The only way of navigating these dialogs is by blindly scrolling or moving
the cursor up and down and then hitting the space bar to toggle an item to
see where the invisible cursor is.

On the installed system (text mode), running tasksel with different values
for the TERM variable results in:

  # echo $TERM
  linux
  # tasksel   # cursor invisible
  # TERM=vt320 tasksel# cursor invisible
  # TERM=vt220 tasksel# cursor visible
  # TERM=vt100 tasksel# cursor visible
  # TERM=vt52 tasksel # dialog completely unusable (lines shifted etc.)

Maybe it would help if the installer would ask whether there is a color,
gray-scale or monochrome monitor attached (just like my old SuSE 7.x did)
and set the TERM variable (or whatever is evaluated by dialog/tasksel/
whatever during and after the installation, respectively) to something
appropriate.


(Bug occurs on a sytem other than the one I use for reporting it, so no
hardware info here)


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



Bug#409692: Status?

2007-04-11 Thread Daniel Nylander

What is the status of this bug?
It's quite annoying


Could not display help: Unable to find help paths
/usr/share/gnome/help/seahorse-preferences or
/usr/share/gnome/help/seahorse-preferences.Please check your installation


-- 
Daniel Nylander (CISSP, GCUX, GCFA)
http://www.DanielNylander.se
Stockholm, Sweden



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



Bug#418709: Please build against wxWidgets 2.6

2007-04-11 Thread Jérémy Bobbio
Package: tipptrainer
Version: 0.6.0-9
Severity: wishlist

Hi!

tipptrainer is currently built against wxWindows 2.4 which is severely
outdated and relies on the old (and ugly) GTK+ 1.2.

I have successfully built it against wxWidgets 2.6.  After some quick
tests, the resulting package seems to run correctly.

It was just a matter of changing the Build-Depends to libwxgtk2.6-dev
instead of libwxgtk2.4-dev (and removing the useless wx2.4-headers).

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#235819: wildcard not supported

2007-04-11 Thread Bas Zoetekouw
reopen 235819
found 235819 1.0.3-3
thanks


This bug is still present in 1.0.3-3:

[EMAIL PROTECTED] dpkg -l gnuvd|grep ^ii
ii  gnuvd  1.0.3-3Query the online Dutch Van Dale
dictionary
[EMAIL PROTECTED] gnuvd a%p
'a%p' was not found in the dictionary

regards,
Bas.


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




Bug#418710: udev: Bad Latin in non-existent file

2007-04-11 Thread Reuben Thomas
Package: udev
Version: 0.105-4
Severity: minor

In the non-existent file /etc/udev/links.conf, the line:

# Hic sunt leones.

is bad Latin. It should either be:

# Hi sunt leones.

If you mean These are lions

or

# Ibi sunt leones.

if you mean Here be lions (along the lines of the cartographer's Here
[or There] be dragons).

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 8
lrwxrwxrwx 1 root root  20 2006-06-01 11:47 020_permissions.rules - 
../permissions.rules
lrwxrwxrwx 1 root root  22 2006-05-30 21:44 025_logitechmouse.rules - 
../logitechmouse.rules
lrwxrwxrwx 1 root root  13 2006-06-01 11:47 udev.rules - ../udev.rules
lrwxrwxrwx 1 root root  25 2006-06-01 11:47 z20_persistent-input.rules - 
../persistent-input.rules
lrwxrwxrwx 1 root root  19 2006-06-01 11:47 z20_persistent.rules - 
../persistent.rules
-rw-r--r-- 1 root root 386 2006-09-19 11:42 z25_persistent-cd.rules
-rw-r--r-- 1 root root 340 2006-11-02 22:09 z25_persistent-net.rules
lrwxrwxrwx 1 root root  33 2006-06-01 11:47 z45_persistent-net-generator.rules 
- ../persistent-net-generator.rules
lrwxrwxrwx 1 root root  12 2006-06-01 11:47 z50_run.rules - ../run.rules
lrwxrwxrwx 1 root root  16 2006-06-01 11:47 z55_hotplug.rules - 
../hotplug.rules
lrwxrwxrwx 1 root root  15 2006-05-31 14:03 z60_hdparm.rules - ../hdparm.rules
lrwxrwxrwx 1 root root  29 2006-06-01 11:47 z75_cd-aliases-generator.rules - 
../cd-aliases-generator.rules
lrwxrwxrwx 1 root root  12 2007-03-19 10:11 z99_hal.rules - ../hal.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda5/dev
/sys/block/hda/hda6/dev
/sys/block/hda/hda7/dev
/sys/block/hda/hda8/dev
/sys/block/hdb/dev
/sys/block/hdc/dev
/sys/block/hdc/hdc1/dev
/sys/block/hdc/hdc2/dev
/sys/block/hdc/hdc3/dev
/sys/block/hdd/dev
/sys/block/hdd/hdd1/dev
/sys/block/hdd/hdd2/dev
/sys/block/hdd/hdd3/dev
/sys/block/md0/dev
/sys/block/ram0/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram1/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input1/event1/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/device-mapper/dev
/sys/class/misc/fuse/dev
/sys/class/misc/hpet/dev
/sys/class/misc/psaux/dev
/sys/class/misc/rtc/dev
/sys/class/misc/snapshot/dev
/sys/class/misc/tun/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dsp/dev
/sys/class/sound/dspW/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1c/dev
/sys/class/sound/pcmC0D1p/dev
/sys/class/sound/seq/dev
/sys/class/sound/sequencer2/dev
/sys/class/sound/sequencer/dev
/sys/class/sound/timer/dev
/sys/class/usb_device/usbdev1.1/dev
/sys/class/usb_device/usbdev2.1/dev
/sys/class/usb_device/usbdev3.1/dev
/sys/class/usb_device/usbdev4.1/dev
/sys/devices/pci:00/:00:10.0/usb1/1-0:1.0/usbdev1.1_ep81/dev
/sys/devices/pci:00/:00:10.0/usb1/usbdev1.1_ep00/dev
/sys/devices/pci:00/:00:10.1/usb2/2-0:1.0/usbdev2.1_ep81/dev
/sys/devices/pci:00/:00:10.1/usb2/usbdev2.1_ep00/dev
/sys/devices/pci:00/:00:10.2/usb3/3-0:1.0/usbdev3.1_ep81/dev
/sys/devices/pci:00/:00:10.2/usb3/usbdev3.1_ep00/dev
/sys/devices/pci:00/:00:10.3/usb4/4-0:1.0/usbdev4.1_ep81/dev
/sys/devices/pci:00/:00:10.3/usb4/usbdev4.1_ep00/dev

-- Kernel configuration:


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

Versions of packages udev depends on:
ii  debconf [debconf-2.0]   1.5.11   Debian configuration management sy
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libselinux1 1.32-3   SELinux shared libraries
ii  libvolume-id0   0.105-4  libvolume_id shared library
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip

udev recommends no packages.

-- debconf information:
  udev/new_kernel_needed: false
  udev/reboot_needed:


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



Bug#418700: xserver-xorg-video-ati: crashes on resume when rhythmbox is playing music

2007-04-11 Thread Michel Dänzer
On Tue, 2007-04-10 at 19:37 +0200, Johannes Berg wrote:
 
 Both versions 6.6.3 and 6.6.191 crash on resume (when switching back from
 the suspend console) when rhythmbox is playing across suspend. Just having
 rhythmbox open doesn't make a difference.

[...]

 Initially I suspected that rhythmbox was trying to draw something while
 other processes were still stopped due to alsa giving it a signal or
 something, but I think that theory can be dismissed ;) [actually, I checked,
 but see no evidence in both alsa code and a rhythmbox strace]

The actual drawing would be done by the X server anyway.

 This backtrace I got might be it, but it might also be the one from later
 on (see below):
 
 0: /usr/bin/X(xf86SigHandler+0x94) [0x100a64f8]
 1: [0x100344]
 2: /lib/ld.so.1 [0x30014298]
 3: /usr/lib/xorg/modules/drivers//radeon_drv.so [0xf92f0b8]
 4: /usr/lib/xorg/modules/drivers//radeon_drv.so(RADEONPreInit+0xa24) 
 [0xf933248]

Yeah, looks like https://bugs.freedesktop.org/show_bug.cgi?id=10442
which is fixed in git.

The log of the previous X server should be in /var/log/Xorg.0.log.old
BTW.


  * it doesn't happen when rhythmbox is running but not playing music (though
I haven't actually tried with paused)

Does it happen when the rhythmbox window is hidden? Is visualization
enabled in rhythmbox?

  * The kernel I'm running is heavily patched, but I disclaim any
responsibility.

Heh, would still be nice if you could try a stock kernel for reference.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#418711: setWhitespaceChars in pyparsing.py missing return

2007-04-11 Thread Scott Kitterman
Package: pyparsing
Version: 1.4.2-1.1
Tags: patch

A simple inspection of the code will show the the functin lacks a return
statement.  Patch attached.  This has already been fixed in the current
upstream release (1.4.5).diff -u pyparsing-1.4.2/debian/changelog pyparsing-1.4.2/debian/changelog
--- pyparsing-1.4.2/debian/changelog
+++ pyparsing-1.4.2/debian/changelog
@@ -1,3 +1,13 @@
+pyparsing (1.4.2-1.1ubuntu1) feisty; urgency=low
+
+  * Add patch for return to setWhitespaceChars in pyparsing.py 
+(Closes LP: #104637)
+  * Change Build-Depends-Indep to Build-Depends (Lintian Error)
+  * Add simple-patchsys to rules and patchutils to Build-depends
+  * Change maintainer to MOTU
+
+ -- Scott Kitterman [EMAIL PROTECTED]  Tue, 10 Apr 2007 21:58:45 -0400
+
 pyparsing (1.4.2-1.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u pyparsing-1.4.2/debian/rules pyparsing-1.4.2/debian/rules
--- pyparsing-1.4.2/debian/rules
+++ pyparsing-1.4.2/debian/rules
@@ -6,6 +6,7 @@
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/python-distutils.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
 clean::
 	find -name '*.py[co]' -print0 | xargs -0 --no-run-if-empty rm -f --
diff -u pyparsing-1.4.2/debian/control pyparsing-1.4.2/debian/control
--- pyparsing-1.4.2/debian/control
+++ pyparsing-1.4.2/debian/control
@@ -1,10 +1,10 @@
 Source: pyparsing
 Section: python
 Priority: optional
-Maintainer: Tommi Virtanen [EMAIL PROTECTED]
+Maintainer: Ubuntu MOTU Developers ubuntu-motu@lists.ubuntu.com
+XSBC-Original-Maintainer: Tommi Virtanen [EMAIL PROTECTED]
 Standards-Version: 3.7.2
-Build-Depends: cdbs (= 0.4.43), debhelper (= 5.0.37.2), python-all-dev (= 2.3.5-11)
-Build-Depends-Indep: python-support (= 0.3), sysutils
+Build-Depends: cdbs (= 0.4.43), debhelper (= 5.0.37.2), python-all-dev (= 2.3.5-11), python-support (= 0.3), sysutils, patchutils
 
 Package: python-pyparsing
 Architecture: all
only in patch2:
unchanged:
--- pyparsing-1.4.2.orig/debian/patches/01-pyparsing-1-4-2.patch
+++ pyparsing-1.4.2/debian/patches/01-pyparsing-1-4-2.patch
@@ -0,0 +1,13 @@
+diff -Nur pyparsing-1.4.2/pyparsing.py pyparsing-1.4.2.new/pyparsing.py
+--- pyparsing-1.4.2/pyparsing.py	2006-03-31 23:53:39.0 -0500
 pyparsing-1.4.2.new/pyparsing.py	2007-04-10 22:36:10.0 -0400
+@@ -854,7 +854,8 @@
+ 
+ self.skipWhitespace = True
+ self.whiteChars = chars
+-
++return self
++
+ def parseWithTabs( self ):
+ Overrides default behavior to expand TABs to spaces before parsing the input string.
+Must be called before parseString when the input grammar contains elements that 

Bug#418712: flashrom - FTBFS: Incorrect architecture setting

2007-04-11 Thread Bastian Blank
Package: flashrom
Version: 0.0+r2601-1
Severity: important

There was an error while trying to autobuild your package:

 Automatic build of flashrom_0.0+r2601-1 on lxdebian.bfinv.de by sbuild/s390 98
[...]
 gcc -g -Wall -O2 -DDISABLE_DOC   -c -o chipset_enable.o chipset_enable.c
 In file included from chipset_enable.c:18:
 flash.h:28:20: error: sys/io.h: No such file or directory
 chipset_enable.c: In function 'enable_flash_sis630':
 chipset_enable.c:26: warning: implicit declaration of function 'outl'
 chipset_enable.c:27: warning: implicit declaration of function 'inb'
 chipset_enable.c:28: warning: implicit declaration of function 'outb'
 make[1]: *** [chipset_enable.o] Error 1
 make[1]: Leaving directory `/build/buildd/flashrom-0.0+r2601'
 make: *** [debian/stamp-makefile-build] Error 2
 **
 Build finished at 20070410-1741
 FAILED [dpkg-buildpackage died]


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



Bug#418713: Please build against wxWidgets 2.6

2007-04-11 Thread Jérémy Bobbio
Package: trustedqsl
Version: 1.11-4.1~test1
Severity: wishlist
Tags: patch

Hi!

trustedqsl is currently built against wxWindows 2.4 which is severely
outdated and relies on the old (and ugly) GTK+ 1.2.

I have successfully built it against wxWidgets 2.6.  After some quick
tests, the resulting package seems to run correctly.

The attached patch is just a simple change to the Build-Depends.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   
diff -u trustedqsl-1.11/debian/control trustedqsl-1.11/debian/control
--- trustedqsl-1.11/debian/control
+++ trustedqsl-1.11/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Hamish Moffatt [EMAIL PROTECTED]
 Standards-Version: 3.6.1
-Build-Depends: debhelper (= 4), tqsllib-dev (= 2.0-3), libexpat-dev, 
libssl-dev, libwxgtk2.4-dev (= 2.4.2.6), zlib1g-dev
+Build-Depends: debhelper (= 4), tqsllib-dev (= 2.0-3), libexpat-dev, 
libssl-dev, libwxgtk2.6-dev, zlib1g-dev
 
 Package: trustedqsl
 Architecture: any


signature.asc
Description: Digital signature


Bug#409204: Why was the severity changed?

2007-04-11 Thread Anders Boström
severity 409204 important
stop

Why was the severity of bug 409204 changed, without any motivation???

/ Anders


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



Bug#418707: support for Linux 2.6.20

2007-04-11 Thread Bastian Blank
On Wed, Apr 11, 2007 at 01:59:59PM +0200, Robert Millan wrote:
 Attached patch adds support for Linux 2.6.20 by merging sata-modules into
 scsi-modules.  The problem was that they now share a dependency on libata.
 I'm not sure if this can be solved more cleanly, but I was in a hurry and
 couldn't think of anything better.

In 2.6.20, sata and pata was merged into ata, not into scsi.

Bastian

-- 
Deflector shields just came on, Captain.


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



Bug#418715: polipo: always starts in offline mode

2007-04-11 Thread Frank Küster
Package: polipo
Version: 0.9.12-1
Severity: normal

After starting the system - even with a working ethernet connection from
the beginning - polipo is always in offline mode and gives this error
message:


Only after /etc/init.d/polipo restart is browsing possible.  

This is a default etch install, I don't know which other information
would be useful.  (By the way, polipo-control is documented nowhere in
the installed package, it seems; grepping for online or on-line
doesn't give useful results).

Regards, Frank

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

Versions of packages polipo depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries

polipo recommends no packages.

-- no debconf information

-- 
Dr. Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#418328: different to is fine grammar

2007-04-11 Thread MJ Ray
different to is perfectly good English English.  This is noted in
http://alt-usage-english.org/excerpts/fxdiffer.html
while the pages
http://www.jimloy.com/language/differen.htm
http://englishplus.com/grammar/0202.htm
are about different than and irrelevant to this report.

The bug report looks like a form letter.  See
http://trac.wordpress.org/ticket/3749
for example.

http://www.collins.co.uk/wordexchange/Sections/DicSrchRsult.aspx?word=different
explains the different different-following prepositions in more detail.

Anyway, The .la filename contains a libdir which is not its path.
may be a clearer phrasing of the same message.

Hope that helps,
-- 
MJR/slef
My Opinion Only: see http://people.debian.org/~mjr/
Please follow http://www.uk.debian.org/MailingLists/#codeofconduct


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



Bug#418714: smartmontools: installation tries to start smartmontools in chroot environment

2007-04-11 Thread Joerg Platte
Package: smartmontools
Version: 5.37-5
Severity: wishlist

Hello,

starting with some versions ago /var/lib/dpkg/info/smartmontools.postinst
starts smatrmontools on package installations or upgrades. This fails in
cases where the package is upgraded within a chroot environment. Please do
not start the daemon when a chroot environment is detected. Udev, for
example, uses the following code to detect a chroot environemnt in its
postinst:

chrooted() {
  if [ $(stat -c %d/%i /) = $(stat -Lc %d/%i /proc/1/root 2/dev/null) ];
  then
# the devicenumber/inode pair of / is the same as that of /sbin/init's
# root, so we're *not* in a chroot and hence return false.
return 1
  fi
  echo A chroot environment has been detected, udev not started.
  return 0
}

regards,
Jörg

-- Package-specific info:
Ouput of /usr/share/bug/smartmontools:
CONFIG_IDE_TASK_IOCTL=y

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

Kernel: Linux 2.6.21-rc5 (PREEMPT)
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages smartmontools depends on:
ii  debianutils 2.18 Miscellaneous utilities specific t
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip

Versions of packages smartmontools recommends:
ii  mailutils [mailx]1:1.1+dfsg1-3.1 GNU mailutils utilities for handli

-- no debconf information



Bug#418708: installation-reports: Dialogs difficult to use on gray-scale monitors

2007-04-11 Thread Frans Pop
reassign 418708 debian-installer
thanks

On Wednesday 11 April 2007 14:07, Marc-Jano Knopp wrote:
 Comments/Problems:
 Some dialogs like Software selection and Download installer
 components are difficult to use, as they have no visible selection bar
 or cursor on my gray-scale monitor. This is true for both framebuffer
 and text mode console.

No idea if we can actually solve this easily. Reassigning to d-i so we can 
keep track of this.

 Maybe it would help if the installer would ask whether there is a color,
 gray-scale or monochrome monitor attached (just like my old SuSE 7.x
 did) and set the TERM variable (or whatever is evaluated by
 dialog/tasksel/ whatever during and after the installation,
 respectively) to something appropriate.

I suspect we'd want to avoid a separate question as this is really not 
very common. A boot parameter would be an option.


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



Bug#245359: aptitude: Option --purge is missing

2007-04-11 Thread Patrick Schoenfeld
Package: aptitude
Version: 0.4.4-4
Followup-For: Bug #245359

During working with aptitude I noticed that i does not support the
--purge option that apt-get supports.
So, if i do run the following, for example:

aptitude remove --purge ntp

Then it simply continues to remove the package *without* purging it.

I do know that aptitude supports a new action purge, so that

aptitude purge ntp

does the job, that the line above would do, but if you are moving from
apt-get you might use the above syntax by intension and would not even
wonder about the action aptitude does, upon you stumble across some
configuration files that should have been removed.

So IMHO there are two possible options what to do:

a) Add the --purge option for compatibility reasons
b) Issue a warning if --purge is used, that this argument is obsoleted
by the purge action, print the usage information and exit.
This way users at least have the chance to note the different behaviour!

Personally i would prefer the option b), because it enforces users to
care about the change. Also it is much cleaner, because purge as an
action instead of a parameter to remove perfectly makes sense.

Best Regards

Patrick Schoenfeld

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-4-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3 0.6.46.4-0.1 Advanced front-end for dpkg
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libncursesw55.5-5Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a  2.0.17-2 type-safe Signal Framework for C++
ii  libstdc++6  4.1.1-21 The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)
pn  libparse-debianchangelog-perl none (no description available)

-- no debconf information


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



Bug#377187: lucene2 packages

2007-04-11 Thread Jan-Pascal
I've packaged lucene 2.1 as a separate package. The core .jar and most contrib
.jars are included, as well as class docs. Some of the contrib .jars need java
libraries which are not in Debian, so I can't include those.

You can find my work at http://www.vanbest.org/janpascal/debian/lucene/

Please let me know of any deficiencies, both in the package itself and Debian
policy-wise. How do I go on from here? 

Cheers

Jan-Pascal



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



Bug#402118: The move from teTeX to TeXLive is NOW

2007-04-11 Thread Osamu Aoki
Hi,

On Tue, Apr 10, 2007 at 06:00:06PM +0200, Frank Küster wrote:
 severity 402118 important # might even get RC
 retitle 402118 debiandoc-sgml: Must specifiy explicit TeXLive dependencies
 thanks
 
 Dear debiandoc people,
 
 Norbert Preining [EMAIL PROTECTED] wrote:
 
  Hmm, I would say upload to unstable now. I am running 2007 since quite
  some time without any big problems. And some(?) others, too. So I guess
  that an upload to unstable NOW would not create *emergency* problems.
 
  Furthermore, we *COULD* do the following (I believe!):
  - upload 2007-2 to unstable
 
 This means that tetex-extra and tetex-bin will become transitional
 packages, provided by the texlive-base source package and depending on a
 decent set of texlive packages.  We hope that debiandoc-sgml will still
 work for all languages, but it should rather be tested.

Ack. But this is messy task which I do not think I have time to do
everything.  I am inclined to upload new package with simple Dep. change
but it may violate new testing policy.  Maybe I should do experimental.
Does any one volunteer testing it?  If not, I ave no other choice.  Time
is right for me being a bit reckless on uploading to testing but I need
some push from people involved.

 This is soon going to be announced on d-d-a, but we wanted to give you a
 warning in advance.

I think I need to upload a new version soonish :-) 

At the same time, I am looking for competent and eager maintainer for
debiandoc-sgml.  I am not asking much since I am asking someone with a
bit better technical skill than me.  My maintanance of this was mostly
by my social skill.

UTF-8 compatibility design impilimitation while maintaining old behavior
is big TODO.  I have accepted some UTF-8 data which I regret.

If anyone is interested, please let me know.

Osamu



signature.asc
Description: Digital signature


Bug#418667: Fails to install with error from updmap-sys

2007-04-11 Thread Matt Kraai
On Wed, Apr 11, 2007 at 09:15:59AM +0200, Frank Küster wrote:
 Matt Kraai [EMAIL PROTECTED] wrote:
 
  Here are the contents of /tmp/tetex-updmap.gxU23914:
 
 [...]
  updmap-sys: Scanning for LW35 support files
 
  !!! ERROR! The map file `dvips35.map' has not been found at all.
 
  Either put this file into the right place or remove the
  reference from the configuration files - see
  update-updmap(1).
 
 It should be there...   And it usually is in fresh chroots.
 
 Please post the output from the following commands:
 
 ls -l /usr/share/texmf-tetex/fonts/map/dvips/tetex/dvips35.map 
 kpsewhich --show-path=map
 kpsewhich --var-value TEXFONTMAPS 
 grep TEXFONTMAPS /etc/texmf/texmf.cnf 
 grep TEXFONTMAPS /etc/texmf/texmf.d/*
 
 These should all be correct in a fresh chroot, but they will hopefully
 help us discover the real problem.

When I upgraded tex-common to 1.5, the problem went away, so I assumed 
this was the same as 418674.  Do you still want the above information?

-- 
Matt


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



Bug#405738: glibc should build-depend on binutils (= 2.17.50)

2007-04-11 Thread Clint Adams
On Wed, Apr 11, 2007 at 01:14:59PM +0200, Matthias Klose wrote:
 apparently the build dependency has been dropped again; was there a
 reason to rush the glibc upload and not to wait for the binutils
 update?

For when is the binutils update scheduled?


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



Bug#418715: polipo: always starts in offline mode

2007-04-11 Thread Tom Ellis Huckstep
On Wed, Apr 11, 2007 at 02:35:39PM +0200, Frank Küster wrote:
 After starting the system - even with a working ethernet connection from
 the beginning - polipo is always in offline mode and gives this error
 message:
 
 Only after /etc/init.d/polipo restart is browsing possible.  

What system are you using to run your init scripts?  I noticed polipo
doesn't have an explicit dependency on $network listed in
/etc/init.d/polipo.  This could cause the problem you mention.

Tom


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



Bug#377187: lucene2 packages

2007-04-11 Thread Michael Koch
On Wed, Apr 11, 2007 at 02:49:44PM +0200, Jan-Pascal wrote:
 I've packaged lucene 2.1 as a separate package. The core .jar and most contrib
 .jars are included, as well as class docs. Some of the contrib .jars need java
 libraries which are not in Debian, so I can't include those.
 
 You can find my work at http://www.vanbest.org/janpascal/debian/lucene/
 
 Please let me know of any deficiencies, both in the package itself and Debian
 policy-wise. How do I go on from here? 

I'm looking into it. I will mail you privately. Thanks for your efforts
already.


Cheers,
Michael
-- 
 .''`.  | Michael Koch [EMAIL PROTECTED]
: :' :  | Free Java Developer http://www.classpath.org
`. `'   |
  `-| 1024D/BAC5 4B28 D436 95E6 F2E0 BD11 5923 A008 2763 483B


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



Bug#418716: pida: Missing dependency on python-glade2 (context service error)

2007-04-11 Thread Christoph Haas
Package: pida
Version: 0.4.1-1
Severity: normal

Package: pida
Version: 0.4.1-1
Severity: normal

This applies to the 0.4.1 version that is currently in experimental only!

Please add a dependency on python-glade2. Otherwise the context menu on
project/files/browse just gives an error message that the context service
is unavailable.

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

Kernel: Linux 2.6.18-3-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pida depends on:
ii  python   2.4.4-2 An interactive high-level object-o
ii  python-central   0.5.13-0.1  register and build utility for Pyt
ii  python-gtk2  2.8.6-8 Python bindings for the GTK+ widge
ii  python-kiwi  1.9.13-2a graphical framework to construct
ii  python-setuptools0.6c5-2 Python Distutils Enhancements
ii  python-vte   1:0.12.2-5  Python bindings for the VTE widget
ii  vim-gtk [gvim]   1:7.0-219+1 Vi IMproved - enhanced vi editor -


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



Bug#353128: ITA: ftplib -- Library of callable ftp routines

2007-04-11 Thread Pierre Clerissi

Hi,

I'm actually looking for a mentor.

http://mentors.debian.net/cgi-bin/maintainer-packages?action=details;package=ftplib

Regards,
Pierre.


On Mon, 9 Apr 2007, Bart Martens wrote:

: Hi Pierre,
: 
: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=353128
: 
: How is progress? Are you still working on this package, or are you
: waiting for help?
: 
: Regards,
: 
: Bart Martens
: 
: 

Pierre Clérissi.

Bug#418717: speedy-cgi-perl: FTBFS on m68k (test failure)

2007-04-11 Thread Niko Tyni
Package: speedy-cgi-perl
Version: 2.22-5
Severity: important
Justification: FTBFS, but m68k is still not a release candidate AFAIK

The m68k build of 2.22-5 failed:

t/killfe..Use of uninitialized value in scalar chop at t/killfe.t 
line 17.
FAILED test 1
Failed 1/1 tests, 0.00% okay

The killfe test forks a script that outputs its pid and sleeps
for five seconds. After one second, the speedy frontend for the 
script is killed and then restarted. The idea is to make sure that 
the backend survives and its pid stays the same.

The problem is probably that one second is not enough to get the
backend running and output its pid on a slow buildd. It should be
safe to increase it to at least to 3, let's try that.

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]


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



Bug#418718: X suddenly died after installing ntp

2007-04-11 Thread Robert Millan
Package: xserver-xorg-video-ati
Version: 1:6.6.3-2
Severity: grave
Justification: may cause data loss

Installing ntp on my system, and running it for first time made X die.

I suppose there's code somewhere written with the assumption that time always
goes forwards :-).  No idea how to find it though.  The Xorg logs don't
reveal anything.

I suggest you Conflict with ntp as a workaround.  ntpdate is probably ok,
since X is most likely not running when the network is started.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=ca_AD.UTF-8, LC_CTYPE=ca_AD.UTF-8 (charmap=UTF-8)

Versions of packages xserver-xorg-video-ati depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  xserver-xorg-core   2:1.1.1-21   X.Org X server -- core server

xserver-xorg-video-ati recommends no packages.

-- no debconf information


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



Bug#416841: Workaround for people using 2.4 kernels

2007-04-11 Thread Paul Waring
I don't know if this problem is going to be fixed any time soon, but I
found that the following steps helped me (I'd done a dist-upgrade from
stable to testing after etch was released and got into the mysqld
hanging problem):

Edit sources.list and change back to stable

apt-get update
killall -9 mysqld
apt-get remove mysql-server-5.0
apt-get clean
apt-get install mysql-server

After doing all that, my system worked again and I had the previous
version of MySQL running.

Hopefully this will help anyone else who had the same problem that I did
(I noticed that at least one Bytemark customer was affected by this).

Paul



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



Bug#415815: hal: no battery status reported

2007-04-11 Thread Marcus Better
So I just tried with the standard etch kernel 2.6.18-4-amd64, and the battery 
status is reported correctly.

Either there are changes in recent kernels, or some other configuration option 
is missing in my config.

Marcus


pgpm81MRHyetG.pgp
Description: PGP signature


Bug#418667: Fails to install with error from updmap-sys

2007-04-11 Thread Frank Küster
Matt Kraai [EMAIL PROTECTED] wrote:

 When I upgraded tex-common to 1.5, the problem went away, so I assumed 
 this was the same as 418674.  Do you still want the above information?

No, I was just offline when I read and answered the mail.

Regards, Frank
-- 
Dr. Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#413934: minicom crashes if LANG=de_DE.UTF-8 is set - with LANG=POSIX it works fine

2007-04-11 Thread Marcus Better
I just got the same crash when receiving some random garbage data from an 
embedded device. The locale is sv_SE.UTF-8.


pgp9dYNoIbf4g.pgp
Description: PGP signature


Bug#418715: polipo: always starts in offline mode

2007-04-11 Thread Frank Küster
Tom Ellis Huckstep [EMAIL PROTECTED] wrote:

 On Wed, Apr 11, 2007 at 02:35:39PM +0200, Frank Küster wrote:
 After starting the system - even with a working ethernet connection from
 the beginning - polipo is always in offline mode and gives this error
 message:
 
 Only after /etc/init.d/polipo restart is browsing possible.  

 What system are you using to run your init scripts?  I noticed polipo
 doesn't have an explicit dependency on $network listed in
 /etc/init.d/polipo.  This could cause the problem you mention.

sysvinit, with

/etc/rcS.d/S39ifupdown  
/etc/rcS.d/S40networking
/etc/rc2.d/S20polipo

so that shouldn't be the reason.  

Regards, Frank

-- 
Dr. Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#418719: Beagle: incorrect manpage beagle-build-index(1)

2007-04-11 Thread Adrian von Bidder
Package: beagle
Severity: minor
Version: 0.2.12-1+b1

Hi,

The manpage of beagle-build-index is incomplete: when calling beagle as 
indicated, beagle-build-index complains that --target is not specified, 
while --target is not mentioned at all in the manpage.

beagle-build-index --help output is correct.

Also, there is a s/if/it/ spelling error: ..., if will automatically.

greets
-- vbi

-- 
featured link: http://www.pool.ntp.org


pgpUITN8DrHDG.pgp
Description: PGP signature


Bug#418718: X suddenly died after installing ntp

2007-04-11 Thread Julien Cristau
reassign 418718 xserver-xorg-core
severity 418718 important
tags 418718 upstream fixed-upstream
retitle 418718 X crashes when time goes backwards
thanks

On Wed, Apr 11, 2007 at 15:32:04 +0200, Robert Millan wrote:

 I suggest you Conflict with ntp as a workaround.  ntpdate is probably ok,
 since X is most likely not running when the network is started.
 
Rright.

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#418059: totem-mozilla: Totem quits too early to play short wave files

2007-04-11 Thread Sven Arvidsson
reassign 418059 libxine1 1.1.4-2
thanks

On Mon, 2007-04-09 at 19:29 +0800, Hongzheng Wang wrote:
 Strictly, this problem occurs only when totem-xine is used.  In fact,
 I tested totem-gstreamer 2.16, and the mozilla plugin provided by it
 works well.  So,
 could you try to reproduce this bug by installing totem-xine instead?  The
 problem is not only the incompletion, but also the poor noisy quantity.
 
 I believe there must be something wrong with the mechanism of the
 mozilla plugin
 provided by totem-xine, since the standalone totem-xine does be able to play
 the short wave files quite properly (these wave files are downloaded from the
 Merriam-Webster website).
 
 For example,
 http://www.m-w.com/cgi-bin/audio.pl?simult01.wav=simultaneous

Indeed, I can reproduce this with totem-xine 2.18, and the standalone
xine-ui app using libxine1 1.1.4-2.

I'm pretty sure this is a bug in libxine, so I'm reassigning the report
to that package.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#418720: glibc: [INTL:es] Updated Spanish debconf templates translation

2007-04-11 Thread Carlos Valdivia Yagüe

Package: glibc
Severity: wishlist
Tags: l10n

Updated Spanish debconf templates translation is attached.

Bye, Carlos.
# glibc debconf translation to spanish
# Copyright (C) 2003, 2006, 2007 Software in the Public Interest
# This file is distributed under the same license as the glibc package.
#
# Changes:
# - Initial translation
#Carlos Valdivia Yagüe [EMAIL PROTECTED], 2003, 2006, 2007
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: glibc 2.5-0exp6\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-04-09 00:10+0200\n
PO-Revision-Date: 2007-04-09 14:30+0200\n
Last-Translator: Carlos Valdivia Yagüe [EMAIL PROTECTED]\n
Language-Team: Debian L10n Spanish debian-l10n-spanish@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: multiselect
#. Choices
#: ../debhelper.in/locales.templates:1001
msgid All locales
msgstr Todos los «locales»

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid Locales to be generated:
msgstr Seleccione los «locales» que desea generar:

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid 
Locales are a framework to switch between multiple languages and allow users 
to use their language, country, characters, collation order, etc.
msgstr 
Los «locales» son un sistema para cambiar entre varios idiomas y permite a 
los usuarios utilizar su idioma, país, juego de caracteres, ordenación 
alfanumérica, etc.

#. Type: multiselect
#. Description
#: ../debhelper.in/locales.templates:1002
msgid 
Please choose which locales to generate. UTF-8 locales should be chosen by 
default, particularly for new installations. Other character sets may be 
useful for backwards compatibility with older systems and software.
msgstr 
Por favor, elija qué «locales» desea generar. Se recomiendan los «locales» 
UTF-8, especialmente para instalaciones nuevas. Otros juegos de caracteres 
pueden resultar útiles por compatibilidad con sistemas y software antiguo.

#. Type: select
#. Choices
#: ../debhelper.in/locales.templates:2001
msgid None
msgstr Ninguno

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid Default locale for the system environment:
msgstr ¿Cuál quiere que sea el «locale» predeterminado del sistema?

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid 
Many packages in Debian use locales to display text in the correct language 
for the user. You can choose a default locale for the system from the 
generated locales.
msgstr 
Muchos paquetes en Debian utilizan «locales» para mostrar el texto en el 
idioma de los usuarios. Puede elegir la opción predeterminada de entre 
los «locales» que ha generado.

#. Type: select
#. Description
#: ../debhelper.in/locales.templates:2002
msgid 
This will select the default language for the entire system. If this system 
is a multi-user system where not all users are able to speak the default 
language, they will experience difficulties.
msgstr 
Esto seleccionará el idioma predeterminado de todo el sistema. Si se trata 
de un sistema con varios usuarios en el que no todos hablan el idioma 
elegido, pueden tener problemas.


Bug#418700: xserver-xorg-video-ati: crashes on resume when rhythmbox is playing music

2007-04-11 Thread Johannes Berg
On Wed, 2007-04-11 at 13:37 +0200, Julien Cristau wrote:

 You should be able to get a debug build of the driver this way:
 $ apt-get source xserver-xorg-video-ati
 $ cd xserver-xorg-video-ati-*
 $ sudo apt-get build-dep xserver-xorg-video-ati
 $ DEB_BUILD_OPTIONS=nostrip dpkg-buildpackage -rfakeroot -us -uc -b -B

Should. Last time I tried on powerpc it failed, I'll give it a try
again.

 Then, install the resulting xserver-xorg-video-ati package and possibly
 xserver-xorg-core-dbg which is available in experimental.
 That should give you a usable backtrace if you're able to attach gdb to
 the server (from another machine).

xserver-xorg-core-dbg doesn't seem to be built for powerpc yet. I'll
give it all a try next week, I doubt I can find enough time this week.

johannes


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


Bug#418722: democracy player crashes on startup

2007-04-11 Thread david downie

Package: democracyplayer
Version: 0.9.2.1-2.1

the following was printed out when ran from terminal

/usr/bin/democracyplayer:81: DeprecationWarning: The dbus_bindings module is
dep recated and will go away soon.

dbus-python 0.80 provides only a partial emulation of the old
dbus_bindings, which was never meant to be public API.

Most uses of dbus_bindings are applications catching the exception
dbus.dbus_bindings.DBusException. You should use dbus.DBusException
instead (this is compatible with all dbus-python versions since 0.40.2).

If you need additional public API, please contact the maintainers via
[EMAIL PROTECTED].

 import dbus_bindings
/var/lib/python-support/python2.4/dbus_bindings.py:5: DeprecationWarning:
The db us_bindings module is deprecated and will go away soon.

dbus-python 0.80 provides only a partial emulation of the old
dbus_bindings, which was never meant to be public API.

Most uses of dbus_bindings are applications catching the exception
dbus.dbus_bindings.DBusException. You should use dbus.DBusException
instead (this is compatible with all dbus-python versions since 0.40.2).

If you need additional public API, please contact the maintainers via
[EMAIL PROTECTED].

 from dbus.dbus_bindings import *
Traceback (most recent call last):
 File /usr/bin/democracyplayer, line 89, in ?
   onetime.OneTime()
 File /var/lib/python-support/python2.4/democracy/onetime.py, line 105,
in __ init__
   bus_name = BusNameFlags('org.participatoryculture.dtv.onetime', bus=bus,
fla gs=dbus.dbus_bindings.NAME_FLAG_DO_NOT_QUEUE)
 File /var/lib/python-support/python2.4/democracy/onetime.py, line 53, in
__n ew__
   retval = dbus.dbus_bindings.bus_request_name(bus.get_connection(), name,
fla gs=flags)
TypeError: request_name() takes no keyword arguments

System Information
Debian Release: unstable
Architecture: i386
Kernel: 2.6.18-4-k7



--
my logical illogic is more logical then others illogical logic


Bug#418721: Please, add Proxy Cache module (pcache.so) to slapd package

2007-04-11 Thread Adrián Santos
Package: slapd
Version: 2.2.23-8
Severity: normal


In the man page slapd-meta(5) the text references the proxycache overlay. A 
search for pcache.so using apt-file returns slapd as provider...

Is possible to add --enable-proxycache=mod to configure.options?

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages slapd depends on:
ii  coreutils [fileutil 5.2.1-2  The GNU core utilities
ii  debconf 1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-22sarge4   GNU C Library: Shared libraries an
ii  libdb4.24.2.52-18Berkeley v4.2 Database Libraries [
ii  libiodbc2   3.52.2-3 iODBC Driver Manager
ii  libldap-2.2-7   2.2.23-8 OpenLDAP libraries
ii  libltdl31.5.6-6  A system independent dlopen wrappe
ii  libperl5.8  5.8.4-8sarge5Shared Perl library
ii  libsasl22.1.19.dfsg1-0sarge2 Authentication abstraction library
ii  libslp1 1.0.11a-2OpenSLP libraries
ii  libssl0.9.7 0.9.7e-3sarge4   SSL shared libraries
ii  libwrap07.6.dbs-8Wietse Venema's TCP wrappers libra
ii  perl [libmime-base6 5.8.4-8sarge5Larry Wall's Practical Extraction 
ii  psmisc  21.5-1   Utilities that use the proc filesy

-- debconf information:
* slapd/password2: (password omitted)
  slapd/internal/adminpw: (password omitted)
* slapd/password1: (password omitted)
  slapd/password_mismatch:
  slapd/fix_directory: true
  slapd/invalid_config: true
* shared/organization: ull.es
  slapd/upgrade_slapcat_failure:
  slapd/upgrade_slapadd_failure:
  slapd/backend: BDB
* slapd/dump_database: when needed
* slapd/allow_ldap_v2: false
  slapd/no_configuration: false
  slapd/migrate_ldbm_to_bdb: false
  slapd/move_old_database: true
  slapd/suffix_change: false
  slapd/slave_databases_require_updateref:
* slapd/dump_database_destdir: /var/backups/slapd-VERSION
  slapd/autoconf_modules: true
  slapd/purge_database: false
* slapd/domain: ull.es


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



Bug#418700: xserver-xorg-video-ati: crashes on resume when rhythmbox is playing music

2007-04-11 Thread Johannes Berg
On Wed, 2007-04-11 at 14:22 +0200, Michel Dänzer wrote:

  Initially I suspected that rhythmbox was trying to draw something while
  other processes were still stopped due to alsa giving it a signal or
  something, but I think that theory can be dismissed ;) [actually, I checked,
  but see no evidence in both alsa code and a rhythmbox strace]
 
 The actual drawing would be done by the X server anyway.

True.

 Yeah, looks like https://bugs.freedesktop.org/show_bug.cgi?id=10442
 which is fixed in git.
 
 The log of the previous X server should be in /var/log/Xorg.0.log.old
 BTW.

Right. But I forgot which one I was looking at and then later had
restarted so many times again.

   * it doesn't happen when rhythmbox is running but not playing music (though
 I haven't actually tried with paused)
 
 Does it happen when the rhythmbox window is hidden? Is visualization
 enabled in rhythmbox?

It happens when it's hidden and just the tray icon is visible.

   * The kernel I'm running is heavily patched, but I disclaim any
 responsibility.
 
 Heh, would still be nice if you could try a stock kernel for reference.

Heh, yeah. I'll take a look. My patches do touch suspend but mostly
shuffle code and I never had problems with it.

johannes


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


Bug#417877: file-roller: Seems to hang for a while... than eventually works

2007-04-11 Thread Sven Arvidsson
On Tue, 2007-04-10 at 16:10 +0200, Olivier Berger wrote:
 It seems to me that it happens indeed when I downloaded a file from the
 net with iceweasel, and not when double-clicking an archive file in
 nautilus, for instance. As for the menu, I would rarely launch it
 through the menus, I'm afraid.
[...]
 I'm sorry, but that won't be possible, as I registered lots of network
 connections to various servers/webspaces I use, and wouldn't want to
 loose them from my user profile.

If you want to, you could add a second user to your system and see if
you can reproduce the problem with a fresh setup. Perhaps adding the the
remote mounts one by one and see what causes this.

Otherwise, file-roller 2.18 is currently available in experimental, and
will probably be uploaded to unstable and then testing quite soon. Maybe
you can check back and see if this is fixed in that version?

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#399750: [ping] GNU/kFreeBSD support in rpm

2007-04-11 Thread Petr Salinger

Hi,

please, could you use the recipe from BTS
to add support for GNU/kFreeBSD.

Thanks

Petr



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



Bug#417165: nautilus: error writing to floppy

2007-04-11 Thread Sven Arvidsson
On Sun, 2007-04-08 at 17:42 -0400, Brent S. Elmer, Ph.D. wrote:
 automount(pid4154) on /var/autofs/removable type autofs

I'm not sure autofs always plays nice with nautilus and
gnome-volume-manager, could you try turning it off?

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#375214: gpib-modules-source: Goddammit

2007-04-11 Thread Loic Le Guyader
Package: gpib-modules-source
Version: 3.2.06-3.1
Followup-For: Bug #375214

Fuck off !

I just upgrade my lab computer from stable Sarge to stable Etch to realize that
there is not support for Gpib anymore because it's broken since almost one year
!

I hate you Daubian !

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-2-386
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


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



Bug#418718: X suddenly died after installing ntp

2007-04-11 Thread Brice Goglin

reassign 415627 xserver-xorg-core
merge 415627 418718
thank you


We have seen several reports like this one. At least #415627 seems similar,
merging then. Also, some people confirmed the same problem when replying to
#412275. But #412275 is actually a freeze of the machine, instead of just
crash or the X server. So it might be a different problem.
Anyway, you might want to read these bugs too.

Also there's been a related fix committed upstream recently (see
https://bugs.freedesktop.org/show_bug.cgi?id=10296) but it might just be a
fix for a recent regression, while all the bugs above seem to have been here
for a while now.

Brice


Bug#322035: Font problem in Emacs was: Re: Bug#322035: (no subject)

2007-04-11 Thread . .

From: Sven Joachim [EMAIL PROTECTED]
It does not seem to be reproducible by the Emacs maintainers or any
competent developer.  A similar (maybe the same) issue was reported as
#352811, unfortunately without a solution or even clue what the exact
problem is.  A related bug was filed against emacs-snapshot, see #366901.


I investigated the problem a little. In my case the problem is related to 
Type1 fonts. In fact the xorg.conf after 7.1 updates had


   FontPath/usr/share/fonts/X11/misc
   FontPath/usr/share/fonts/X11/cyrillic
   FontPath   /usr/share/fonts/X11/Type1
   FontPath/usr/share/fonts/X11/CID
   FontPath/usr/share/fonts/X11/100dpi
   FontPath/usr/share/fonts/X11/75dpi

Then moving 100dpi and 75dpo before Type1 or commenting Type1 solved the 
problem. So a way to try reproduce the problem might be to move Type1 before 
others FontPath. Can someone confirm that?


Matteo

_
The average US Credit Score is 675. The cost to see yours: $0 by Experian. 
http://www.freecreditreport.com/pm/default.aspx?sc=660600bcd=EMAILFOOTERAVERAGE




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



Bug#136398: fetchmail: but please migrate the old uidl file

2007-04-11 Thread Christopher Zimmermann
Package: fetchmail
Version: 6.3.7-1
Followup-For: Bug #136398

Hi! after upgrading fetchmail today. Fetchmail started and received
thousands of old emails. In /var/lib/fetchmail/ I found the old
.fetchmail-UIDL-cache together with a smaller .fetchids file. I could
fix it by

$cat .fetchmail-UIDL-cache .fetchids

Still my inbox has been a really BIG MESS. Maybe you could take care
that the old uidl cache file gets migrated?


Best Regards, 

Christopher Zimmermann


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20.5
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fetchmail depends on:
ii  adduser 3.102Add and remove users and groups
ii  debianutils 2.18 Miscellaneous utilities specific t
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libssl0.9.8 0.9.8c-4 SSL shared libraries
ii  lsb-base3.1-23.1 Linux Standard Base 3.1 init scrip

Versions of packages fetchmail recommends:
ii  ca-certificates   20070303   Common CA Certificates PEM files

-- no debconf information


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



Bug#417991: gnome-panel: gnome-system-monitor as panel right-click entry

2007-04-11 Thread Sven Arvidsson
On Thu, 2007-04-05 at 19:44 -0400, Michael Gilbert wrote:
 windows users expect the task manager to be in the right-click menu on
 the task bar.  in order to ease their transition and provide quick
 access to a useful tool thats used relatively often, it would be nice to 
 have access to gnome-system-monitor in the gnome-panel right-click menu.

Hi,

These requests should really be filed upstream. 

Anyway, I don't really see the logic in finding gnome-system-monitor in
the context menu of the panel. As you can see yourself, it doesn't
include any application launchers at the moment. Besides, the panel is
usually covered by applets.

I'm not sure why former windows users should need access to this app so
often, it's more of a tool for power users anyway. If easy access is
needed, some of the same functionality is available as applets, and it's
easy to add a shortcut.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#418362: ekiga does not save the ekiga.net account one can specify during the configuration druide dialog

2007-04-11 Thread Sven Arvidsson
tags 418362 +fixed-upstream
thanks

On Mon, 2007-04-09 at 13:34 +0200, Willi Mann wrote:
 As said in the subject. Note that it does not even appear in the Accounts 
 dialog.
 However, ekiga seems to be aware of it when started because it writes 
 logged in Accounts: 1 (trans. from German)

From what I can tell of the NEWS file, this was fixed in 2.0.4,

- Fixed bug when introducing a new ekiga.net account through the druid.
Sometimes the account was not saved.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#418724: sql-ledger: Security fixes available in 2.6.27

2007-04-11 Thread Seneca Cunningham
Package: sql-ledger
Version: 2.6.22-2
Severity: important
Tags: security

SQL-Ledger 2.6.27 is out with some security updates and other bugfixes
beyond those in 2.6.22.  Although SQL-Ledger 2.8.0 has been released, it
is subject to a relicencing attempt that would place it in non-free.

Issues that SQL-Ledger deals with in versions beyond 2.6.22 include
CVE-2007-1541, CVE-2007-1540, CVE-2007-1437, and CVE-2007-1436.  Just be 
sure to check that the 2.6.27 variant that gets downloaded is not the 
one affected by CVE-2007-1541.

-- 
Seneca
[EMAIL PROTECTED]


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



Bug#418723: Bug in gqview 2.0.1-1

2007-04-11 Thread Paul C

Package: gqview
Version: 2.0.1-1

Whenever this version of gqview encounters a SVG file in a directory it begins 
eating
massive amounts of memory/CPU, such that a reboot is needed to restore machine 
to
proper operation.

This occurs even if gqview has been configured not to look at SVG files.

Recommend SVG support be disabled until this can be resolved, gqview is very 
good
otherwise.  


Problem is a least 6 months old.







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



Bug#418267: bind: Should not be included in Lenny

2007-04-11 Thread LaMont Jones
On Mon, Apr 09, 2007 at 06:08:13PM +0200, Moritz Muehlenhoff wrote:
 As it has already been deprecated in README.Debian and the upgrade path
 from bind to bind9 can hardly be done in an automated manner, it should
 be sufficient to simply have bind8 removed? Or should we add a note
 into the release notes for Lenny?

It would probably be a good idea to mention it somewhere in the release
notes, to catch those who might not find it otherwise until they were
upgrading a production machine that was still running bind8.

lamont


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



Bug#418597: gnome-media: gnome-cd needlessly truncates track names in drop-down

2007-04-11 Thread Sven Arvidsson
forwarded 418597 http://bugzilla.gnome.org/show_bug.cgi?id=428646
thanks

On Tue, 2007-04-10 at 15:03 -0400, Matt Corks wrote:
 It would be nice if gnome-cd didn't cut off track names in the dropdown when
 space is actually available, as seen here:
 http://i71.photobucket.com/albums/i144/mvcorks/screenshot-gnome-cd.png

Hi,

I have forwarded your request to the upstream developers, you can follow
progress here,
http://bugzilla.gnome.org/show_bug.cgi?id=428646

Keep in mind that gnome-cd is more or less deprecated these days.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#418725: tmw dies with dynamic link error

2007-04-11 Thread Miles Bader
Package: tmw
Version: 0.0.22.2-1
Severity: important


Running tmw dies with the following output:

   $ tmw
   tmw: Symbol `_ZTVN3gcn12FocusHandlerE' has different size in shared object, 
consider re-linking
   The Mana World v0.0.22.2
   tmw: symbol lookup error: tmw: undefined symbol: 
_ZN3gcn6Widget19removeDeathListenerEPNS_13DeathListenerE

thanks,

-miles


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

Kernel: Linux 2.6.19 (PREEMPT)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tmw depends on:
ii  libc62.3.6.ds1-13GNU C Library: Shared libraries
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library
ii  libcurl3 7.15.5-1Multi-protocol file transfer libra
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libgl1-m 6.5.1-0.6   A free implementation of the OpenG
ii  libguich 0.4.0-4.1   small, efficient C++ GUI library
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libkrb53 1.4.4-8 MIT Kerberos runtime libraries
ii  libphysf 1.0.0-5 filesystem abstraction library for
ii  libpng12 1.2.15~beta5-1  PNG library - runtime
ii  libsdl-i 1.2.5-3 image loading library for Simple D
ii  libsdl-m 1.2.6-2 mixer library for Simple DirectMed
ii  libsdl-n 1.2.5-7+b1  network library for Simple DirectM
ii  libsdl1. 1.2.11-8Simple DirectMedia Layer
ii  libssl0. 0.9.8e-4SSL shared libraries
ii  libstdc+ 4.1.1-21The GNU Standard C++ Library v3
ii  libxml2  2.6.27.dfsg-1   GNOME XML library
ii  tmw-data 0.0.22.2-1  The Mana World is a great Online R
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages tmw recommends:
pn  tmw-music none (no description available)

-- no debconf information


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



Bug#418726: gbsplay - FTBFS: Bigendian output failed

2007-04-11 Thread Bastian Blank
Package: gbsplay
Version: 0.0.8+dfsg1-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of gbsplay_0.0.8+dfsg1-1 on lxdebian.bfinv.de by sbuild/s390 
 98
[...]
 sed -f config.sed gbsplayrc.in.5  gbsplayrc.5
 Bigendian output failed
   Expected: 3e0b21573e742101581b503da3ddf2f5
   Got:  a1f471b4f41cecc1527dfa8f9a3533e0
 make[1]: *** [test] Error 1
 make[1]: Leaving directory `/build/buildd/gbsplay-0.0.8+dfsg1'
 make: *** [build-stamp] Error 2
 **
 Build finished at 20070411-1439
 FAILED [dpkg-buildpackage died]


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



Bug#418727: udftools: writing to dvd-ram cause total userspace freeze

2007-04-11 Thread Dusan Zatkovsky
Package: udftools
Version: 1.0.0b3-12
Severity: normal



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

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

udftools recommends no packages.

-- no debconf information



-- here is part of /var/log/messages after /etc/init.d/udftools start:

Apr 11 17:11:21 server kernel: pktcdvd: writer pktcdvd0 mapped to hdc
Apr 11 17:11:26 server kernel: pktcdvd: writer pktcdvd0 unmapped
Apr 11 17:11:30 server kernel: cdrom: hdc: mrw address space DMA selected
Apr 11 17:11:30 server kernel: cdrom open: mrw_status 'not mrw'
Apr 11 17:11:45 server kernel: pktcdvd: writer pktcdvd0 mapped to hdc
Apr 11 17:11:54 server kernel: pktcdvd: write caching control failed
Apr 11 17:11:54 server kernel: pktcdvd: 55 10 00 00 00 00 00 00 14 00 00 00 - 
sense 0f.00.00 (INVALID)
Apr 11 17:11:54 server kernel: pktcdvd: write speed 4155kB/s
Apr 11 17:11:57 server kernel: pktcdvd: 4473406kB available on disc
Apr 11 17:11:57 server kernel: UDF-fs INFO UDF 0.9.8.1 (2004/29/09) Mounting 
volume 'LinuxUDF', timestamp 2007/02/08 16:15 (1078)


After copying any data to dvd-ram media, copying seems to be too fast ( about 
30MBps ) for few seconds. It seems that data are cached
somewhere. After few seconds, system freezes and there is no chance to login or 
do something with it. Openssh daemon will kill opened
sessions and machine is reseting any tcp connections coming. Icmp echo 
survives, it is possible to ping that machine after crash.

Problem occured after installing ( clean installation, not upgrade ) edgy 
instead of sarge.

Maybe it should be kernel problem. (?)


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



Bug#418728: ocaml-dtools - FTBFS: ocamlfind: dtools.a: No such file or directory

2007-04-11 Thread Bastian Blank
Package: ocaml-dtools
Version: 0.1.3-1
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of ocaml-dtools_0.1.3-1 on lxdebian.bfinv.de by sbuild/s390 98
[...]
 Installing library with ocamlfind
 /usr/bin/ocamlfind install  dtools META dtools.cma dtools.cmxa dtools.mli 
 dtools.cmi dtools.a
 ocamlfind: dtools.a: No such file or directory
 make[2]: *** [libinstall] Error 2
 make[2]: Leaving directory `/build/buildd/ocaml-dtools-0.1.3/src'
 make[1]: *** [install] Error 2
 make[1]: Leaving directory `/build/buildd/ocaml-dtools-0.1.3'
 make: *** [install] Error 2
 **
 Build finished at 20070411-1439
 FAILED [dpkg-buildpackage died]


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



Bug#402118: The move from teTeX to TeXLive is NOW

2007-04-11 Thread Frank Küster
Osamu Aoki [EMAIL PROTECTED] wrote:

 Ack. But this is messy task which I do not think I have time to do
 everything.  

I'll keep an eye on it.  Which document would you suggest for testing -
debian-reference? 

 I am inclined to upload new package with simple Dep. change
 but it may violate new testing policy.  Maybe I should do experimental.

I'm not aware of any restrictions for uploads to unstable at the moment,
except be sensible, please coordinate transitions.  But this is not a
library transition.

 At the same time, I am looking for competent and eager maintainer for
 debiandoc-sgml.  I am not asking much since I am asking someone with a
 bit better technical skill than me.  My maintanance of this was mostly
 by my social skill.

Which is important indeed.

 UTF-8 compatibility design impilimitation while maintaining old behavior
 is big TODO.  I have accepted some UTF-8 data which I regret.

I cannot offer to work on debiandoc-sgml's UTF migration, but I think
that in general the debian-tex-maint list, including me, will help
debugging problems.

Regards, Frank
-- 
Dr. Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#418729: 100% combined CPU usage from kopete and X when viewing the configuration dialog

2007-04-11 Thread Fernando Diaz
Package: kopete
Version: 4:3.5.5-5
Severity: important

If I view the 'Devices' section of the configuration dialog, kopete and the
X server start using all of my cpu. The problem stops when the dialog's
closed. I have no devices listed in the mentioned section.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (99, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages kopete depends on:
ii  kdelibs4c2a4:3.5.5a.dfsg.1-8 core libraries and binaries for al
ii  libacl12.2.41-1  Access control list shared library
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libattr1   2.4.32-1  Extended attribute shared library
ii  libaudio2  1.8-4 The Network Audio System (NAS). (s
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libfam02.7.0-12  Client library to control the FAM 
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libfreetype6   2.2.1-5   FreeType 2 font engine, shared lib
ii  libgadu3   1:1.7~rc2-1   Gadu-Gadu protocol library - runti
ii  libgcc11:4.1.1-21GCC support library
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libgsmme1c2a   1.10-10   GSM mobile phone access library
ii  libice61:1.0.1-2 X11 Inter-Client Exchange library
ii  libidn11   0.6.5-1   GNU libidn library, implementation
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libmeanwhile1  1.0.2-2   open implementation of the Lotus S
ii  libpcre3   6.7-1 Perl 5 Compatible Regular Expressi
ii  libpng12-0 1.2.15~beta5-1PNG library - runtime
ii  libqt3-mt  3:3.3.7-4 Qt GUI Library (Threaded runtime v
ii  libsm6 1:1.0.1-3 X11 Session Management library
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 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  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.1-4 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxrandr2 2:1.1.0.2-5   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension client libra
ii  libxslt1.1 1.1.19-1  XSLT processing library - runtime 
ii  libxt6 1:1.0.2-2 X11 toolkit intrinsics library
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages kopete recommends:
ii  qca-tls   1.0-3  TLS plugin for the Qt Cryptographi

-- no debconf information


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



Bug#418730: k3b fails to upgrade

2007-04-11 Thread SZOKOVACS Robert
Package: k3b
Version: 1.0-1
Severity: normal

when upgrading from 0.12.17, libk3b2 is still installed, not gets
removed during the upgrade and it conflicts with libk3b3:

Unpacking libk3b3 (from .../libk3b3_1.0-1_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/libk3b3_1.0-1_i386.deb
(--unpack):
 trying to overwrite `/usr/lib/kde3/libk3balsaoutputplugin.la',
 which is also in package libk3b2


-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (500, 'stable'), (400, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.15
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages k3b depends on:
ii  cdparanoia   3a9.8-11An audio extraction tool for sampl
ii  cdrdao   1:1.1.9-3   Disk-At-Once (DAO) recording of au
ii  genisoimage  9:1.1.4-1   Creates ISO-9660 CD-ROM filesystem
ii  kdebase-bin  4:3.5.5a.dfsg.1-6   core binaries for the KDE base mod
ii  kdelibs-data 4:3.5.5a.dfsg.1-8   core shared data for all KDE appli
ii  kdelibs4c2a  4:3.5.5a.dfsg.1-8   core libraries and binaries for al
ii  libacl1  2.2.23-1Access control list shared library
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libattr1 2.4.16-1Extended attribute shared library
ii  libaudio21.7-2sarge1 The Network Audio System (NAS). (s
ii  libc62.3.6.ds1-13GNU C Library: Shared libraries
ii  libdbus-1-3  1.0.2-1 simple interprocess messaging syst
ii  libdbus-qt-1-1c2 0.62.git.20060814-2 simple interprocess messaging syst
ii  libexpat11.95.8-3XML parsing C library - runtime li
ii  libfam0c102 [libfam0 2.7.0-6sarge1   client library to control the FAM 
ii  libfontconfig1   2.4.2-1.2   generic font configuration library
ii  libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.1-21  GCC support library
ii  libhal1  0.5.8.1-9   Hardware Abstraction Layer - share
ii  libice6  1:1.0.3-2   X11 Inter-Client Exchange library
ii  libidn11 0.6.5-1 GNU libidn library, implementation
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libk3b3  1.0-1   The KDE cd burning application lib
ii  libmusicbrainz4c2a   2.1.4-1 Second generation incarnation of t
ii  libpng12-0   1.2.15~beta5-1  PNG library - runtime
ii  libqt3-mt3:3.3.7-4   Qt GUI Library (Threaded runtime v
ii  libsm6   1:1.0.1-3   X11 Session Management library
ii  libstdc++6   4.1.1-21The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.3-7   X11 client-side library
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxi6   1:1.0.1-4   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-5 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  wodim9:1.1.4-1   command line CD/DVD writing tool
ii  zlib1g   1:1.2.2-4.sarge.2   compression library - runtime

-- no debconf information


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



Bug#416245: libxine1: RealAudio Codec (cook) is missing

2007-04-11 Thread Reinhard Tartler
tag 416245 moreinfo
stop

Hongzheng Wang [EMAIL PROTECTED] writes:
 It seems that the libxine1 in experimental lacks a workable RealAudio
 Codec G2 (cook).  The players based on libxine1, therefore, will be
 muted while playing RealMedia files, e.g., totem-xine and xine-ui.  They
 work well on media files with other formats.

 For instance, when I play a rm/rmvb file with xine-ui, it reports in
 console:
 [cook @ 0xb67668b4]Necessary extradata missing!

could you please provide a file for demonstration/testing?

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4


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



Bug#418731: tn5250: F13-F24 no longer work

2007-04-11 Thread John Goerzen
Package: tn5250
Version: 0.17.3-1
Severity: normal

I'm not sure what changed at any point, but for some reason, F13-F24 no
longer work (tested in both etch and sid) in xt5250 (using xterm).
Pressing Shift-F4, for instance, simply produces:

  [1;2S

on the IBM system's screen, rather than actually carrying out an action.

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

Versions of packages tn5250 depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libncurses5 5.5-5Shared libraries for terminal hand
ii  libssl0.9.8 0.9.8e-4 SSL shared libraries
ii  ncurses-base5.5-5Descriptions of common terminal ty

Versions of packages tn5250 recommends:
ii  gnome-terminal [x-term 2.14.2-1  The GNOME 2 terminal emulator appl
ii  konsole [x-terminal-em 4:3.5.5a.dfsg.1-6 X terminal emulator for KDE
ii  powershell [x-terminal 0.9-8 powerful terminal emulator for GNO
ii  xterm [x-terminal-emul 224-1 X terminal emulator

-- no debconf information


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



Bug#418066: does iceweasel phone home?

2007-04-11 Thread Ian Zimmerman

Florian I'm not sure.  I don't think the requests are sent
Florian automatically.

Florian Anyway, you probably should run ngrep ^(GET|POST) for some
Florian time and keep the results.  This could help you to pinpoint the
Florian exact request, and then we can look at the source to find the
Florian cause.

It was the RSS reader, disguised as a Live Bookmark under the Bookmarks
Toolbar.  I am quite sure I haven't added it myself :-), so it must have
been there in the initial installation.  I have no idea why ICMP pings
or DNS queries would be prerequisite for RSS, but there it is: the logs
stopped after I deleted the bookmark.

It would probably be a good idea to ask via debconf if that bookmark
should be kept, when iceweasel is initially installed.  If that is done,
I'm OK with closing this bug :-)

-- 
Experience with Asset Control an asset.


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



Bug#418732: configuration of tetex-base fails

2007-04-11 Thread Florian
Subject: configuration of tetex-base fails
Package: tetex-base
Version: 3.0.dfsg.3-5
Severity: grave
Justification: renders package unusable

*** Please type your report below this line ***
I was trying to reinstall tetex-base and other tex packages, since i
have had a little problem with latex this morning (it was unable to
find any style or package files, don't remember if there has been an
update yesterday).

tetex-base failed on the configuration step, so that the other
packages can't be properly configured (auctex bibtex2html latex-beamer
latex-ucs latex-ucs-contrib latex-xcolor latex-xft-fonts latex209-base
latex209-bin latex2html preview-latex-style tetex-base tetex-bin
tetex-doc tetex-extra texinfo tex-common texlive-bibtex-extra
texlive-common).

I've had a look to the log file (attached below), and try to run
updmap-sys manually. Using the -setoption LW35
/usr/share/texmf-tetex/fonts/map/dvips/tetex/dvips35.map, updmap-sys
seems to run well.

-- Package-specific info:

##
other files

cat /tmp/tetex.updmap.ANSz5325
updmap-sys: This is updmap-sys, version 1107552857-debian
updmap-sys: using transcript file `/var/lib/texmf/web2c/updmap-sys.log'

updmap is creating new map files using the following configuration:

  config file: `/var/lib/texmf/web2c/updmap.cfg'
  dvips output directory: `/var/lib/texmf/fonts/map/dvips/updmap'
  pdftex output directory: `/var/lib/texmf/fonts/map/pdftex/updmap'
  dvipdfm output directory: `/var/lib/texmf/fonts/map/dvipdfm/updmap'

  prefer outlines: `true'
  texhash enabled: `false'
  download standard fonts (dvips): `false'
  download standard fonts (pdftex): `true'
  download standard fonts (dvipdfm): `true'

updmap-sys: Scanning for LW35 support files

!!! ERROR! The map file `dvips35.map' has not been found at all.

Either put this file into the right place or remove the
reference from the configuration files - see
update-updmap(1).


##
 List of ls-R files

-rw-r--r-- 1 root root 993 2007-04-11 10:17 /var/lib/texmf/ls-R
lrwxrwxrwx 1 root root 29 2007-04-11 10:01 /usr/share/texmf/ls-R -
/var/lib/texmf/ls-R-TEXMFMAIN
lrwxrwxrwx 1 root root 27 2007-04-11 10:01 /usr/share/texmf-texlive/ls-R
- /var/lib/texmf/ls-R-TEXLIVE

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

Kernel: Linux 2.6.18-4-686 (SMP w/2 CPU cores)
Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=UTF-8) (ignored: LC_ALL set
to fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages tetex-base depends on:
ii  tex-common1.4Common infrastructure for
using an
ii  ucf   2.0020 Update Configuration File:
preserv

Versions of packages tetex-base recommends:
ii  tetex-doc   3.0.dfsg.3-5 The documentation component
of the

Versions of packages tetex-bin depends on:
ii  debconf [debconf-2.0] 1.5.13 Debian configuration
management sy
ii  debianutils   2.18   Miscellaneous utilities
specific t
ii  dialog1.1-20070325-1 Displays user-friendly
dialog boxe
ii  dpkg  1.13.25package maintenance system
for Deb
ii  ed0.2-20 The classic unix line editor
ii  libc6 2.3.6.ds1-13   GNU C Library: Shared libraries
ii  libfontconfig12.4.2-1.2  generic font configuration
library
ii  libfreetype6  2.2.1-5FreeType 2 font engine,
shared lib
ii  libgcc1   1:4.1.1-21 GCC support library
ii  libice6   1:1.0.3-2  X11 Inter-Client Exchange
library
ii  libjpeg62 6b-13  The Independent JPEG
Group's JPEG
ii  libkpathsea4  3.0-30 path search library for
teTeX (run
ii  libpaper1 1.1.21 Library for handling paper
charact
ii  libpng12-01.2.15~beta5-1 PNG library - runtime
ii  libpoppler0c2 0.4.5-5.1  PDF rendering library
ii  libsm61:1.0.1-3  X11 Session Management library
ii  libstdc++64.1.1-21   The GNU Standard C++ Library v3
ii  libt1-5   5.1.0-2Type 1 font rasterizer
library - r
ii  libx11-6  2:1.0.3-7  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  libxpm4   1:3.5.5-2  X11 pixmap library
ii  libxt61:1.0.2-2  X11 toolkit intrinsics library
ii  mime-support  3.39-1 MIME files 'mime.types' 
'mailcap
ii  perl  5.8.8-7Larry Wall's Practical
Extraction
ii  sed   4.1.5-1The GNU sed stream 

Bug#418657: closed by Richard Atterer [EMAIL PROTECTED] (Re: Bug#418657: CD/torrent-cd/ is confusing about BitTorrent clients)

2007-04-11 Thread Philippe Cloutier


OK, I've added a few more links to other clients, both the Debian packages 
and download locations for non-Linux binaries.



Thank you!


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



Bug#418098: [PATCH] rdesktop segfault with libx11-6 1.0.3-7

2007-04-11 Thread Mark Heily
Here is a patch that prevents rdesktop from crashing due to increased Xlib 
sanity checking 
of arguments passed to XCreateImage(3). Thanks to Julien Cristau for his 
helpful explanation
of the problem on the Debian bug tracking system.

Thanks,

Mark Heily
[EMAIL PROTECTED]


References:

[1] http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg326793.html
[2] https://bugs.launchpad.net/ubuntu/+source/rdesktop/+bug/104332


Patch:

--- ../rdesktop/xwin.c  2007-01-17 02:39:31.0 -0500
+++ xwin.c  2007-04-11 11:13:51.0 -0400
@@ -3218,7 +3218,7 @@
return;
 
image = XCreateImage(g_display, g_visual, g_depth, ZPixmap, 0,
-(char *) data, cx, cy, BitmapPad(g_display), cx * 
g_bpp / 8);
+(char *) data, cx, cy, BitmapPad(g_display), 0);
 
if (g_ownbackstore)
{




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



Bug#418732: configuration of tetex-base fails

2007-04-11 Thread Hilmar Preusse
On 11.04.07 Florian ([EMAIL PROTECTED]) wrote:

Hi,

 Subject: configuration of tetex-base fails
 Package: tetex-base
 Version: 3.0.dfsg.3-5
 Severity: grave
 Justification: renders package unusable
 
 updmap-sys: Scanning for LW35 support files
 
 !!! ERROR! The map file `dvips35.map' has not been found at all.
 
 Either put this file into the right place or remove the
 reference from the configuration files - see
 update-updmap(1).
 
 ii  tex-common1.4Common infrastructure for using 
 an
 
Another incarnation of #418667.

H.
-- 
sigmentation fault


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



Bug#418732: configuration of tetex-base fails

2007-04-11 Thread Norbert Preining
On Mit, 11 Apr 2007, Hilmar Preusse wrote:
  !!! ERROR! The map file `dvips35.map' has not been found at all.
  
 Another incarnation of #418667.

Already closed and merged.

Best wishes

Norbert

---
Dr. Norbert Preining [EMAIL PROTECTED]Università di Siena
Debian Developer [EMAIL PROTECTED] Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
CHIPPING ONGAR (n.)
The disgust and embarrassment (or 'ongar') felt by an observer in the
presence of a person festooned with kirbies (q.v.) when they don't
know them well enough to tell them to wipe them off, invariably this
'ongar' is accompanied by an involuntary staccato twitching of the leg
(or 'chipping')
--- Douglas Adams, The Meaning of Liff


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



Bug#418732: configuration of tetex-base fails

2007-04-11 Thread Norbert Preining
reassign 418732 tex-common
close 418732 1.5
merge 418732 418674
thanks

On Mit, 11 Apr 2007, Florian wrote:
 !!! ERROR! The map file `dvips35.map' has not been found at all.

Fixed in 1.5, is already uploaded. Sorry for the inconvenience.

Best wishes

Norbert

---
Dr. Norbert Preining [EMAIL PROTECTED]Università di Siena
Debian Developer [EMAIL PROTECTED] Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
You're bound to be unhappy if you optimize everything.
--- Donald E. Knuth


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



Bug#418695: rott: bashism in postinst

2007-04-11 Thread Fabian Greffrath
tags 418695 + pending
thanks

Thank you for noticing!




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



Bug#418733: openoffice.org: CJK characters shifted in the new Writer

2007-04-11 Thread Ambrose Li
Package: openoffice.org
Version: 2.0.4.dfsg.2-7
Severity: important
Tags: l10n


After doing an apt-get upgrade, all CJK characters are now shifted upwards
(or perhaps all non-CJK character are shifted downwards; it's impossible
to tell), and this affects both on-screen viewing and actual printed output.
This shifting makes mixed CJK - non-CJK word processing for any non-trivial
amount of text practically impossible.

(This screws up all existing documents.)

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

Kernel: Linux 2.4.28-ow1
Locale: LANG=zh_TW.Big5, LC_CTYPE=zh_TW.Big5 (charmap=BIG5)
Shell: /bin/sh linked to /bin/bash

Versions of packages openoffice.org depends on:
ii  openoffice.org-base   2.0.4.dfsg.2-7 OpenOffice.org office suite - data
ii  openoffice.org-calc   2.0.4.dfsg.2-7 OpenOffice.org office suite - spre
ii  openoffice.org-core   2.0.4.dfsg.2-7 OpenOffice.org office suite archit
ii  openoffice.org-draw   2.0.4.dfsg.2-7 OpenOffice.org office suite - draw
ii  openoffice.org-impress2.0.4.dfsg.2-7 OpenOffice.org office suite - pres
ii  openoffice.org-java-commo 2.0.4.dfsg.2-7 OpenOffice.org office suite Java s
ii  openoffice.org-math   2.0.4.dfsg.2-7 OpenOffice.org office suite - equa
ii  openoffice.org-writer 2.0.4.dfsg.2-7 OpenOffice.org office suite - word

openoffice.org recommends no packages.

-- no debconf information


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



Bug#418727: udftools: writing to dvd-ram cause total userspace freeze

2007-04-11 Thread Richard Atterer
On Wed, Apr 11, 2007 at 05:43:46PM +0200, Dusan Zatkovsky wrote:
 Maybe it should be kernel problem. (?)

Yes, it is bound to be a problem with the drivers for your device, or 
another part of the kernel. udftools is only the userspace portion.

Try upgrading to the latest kernel - maybe use a kernel from kernel.org, 
Debian always lags a bit.

Please close this bug, the udftools userspace tools do not (directly) cause 
the crash.

Cheers,

  Richard

-- 
  __   _
  |_) /|  Richard Atterer
  | \/¯|  http://atterer.net
  ¯ '` ¯



Bug#418698: rott: some sprites don't display correctly (on powerpc?)

2007-04-11 Thread Fabian Greffrath
Hi Filippo!

Am Mittwoch, den 11.04.2007, 13:08 +0200 schrieb Filippo Giunchedi:
 first thanks for rott! it rocks!

You are welcome! ;)

 I'm having some issues playing on powerpc though, some sprites aren't
 displayed as wanted, screenshots:
 
 http://giunched.web.cs.unibo.it/tmp/rott_1.png
 http://giunched.web.cs.unibo.it/tmp/rott_2.png
 http://giunched.web.cs.unibo.it/tmp/rott_3.png

Ooh, this looks really ugly. :(

 it is my understanding that it works correctly on i386 as other users
 reported, I haven't found the time to test it yet.

I've played the game thru several times on my i386-machine and never
experienced those sprite errors. Thus I guess it is an endianess-based
problem.

Well, upstream is dead for more than 3 years now, so I guess we cannot
expect much help from them. However, I will soon provide you a package
with the latest CVS snapshot. Maybe they already fixed this straight
after the release of 1.0.

Thank you for your report!

Cheers,
Fabian





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



Bug#357736: /usr/X11R6/bin/startx: startx needs some way to delete stale $xserverauthfile files

2007-04-11 Thread paul van den berg
Brice Goglin [EMAIL PROTECTED] wrote:

 About a year ago, you reported a bug to the Debian BTS regarding
 serverauth files being left in your home directory. I can't reproduce
 anymore.
 Did you reproduce this problem recently? With Xorg/Etch?
 
I installed a fresh etch-i386 in vmware, with xorg and xfce4, but 
without gdm or something like that.
I started X with startx, opened a xterm, su-ed to root and typed reboot.
On the next systemstart I had a file ~/.serverauth.6179

Regards, Paul



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



Bug#418668: manpages-dev: Return value of strerror_r is wrong

2007-04-11 Thread Michael Kerrisk
 Return value of strerror_r is wrong; must be char*

Current upstream (2.44 in fact, but I think unchanged since 2.39)
reads as below.  Where is the problem?

Cheers,

Michael
(upstream maintainer) 


SYNOPSIS
   #include string.h

   char *strerror(int errnum);

   char *strerror_r(int errnum, char *buf, size_t buflen);
   /* GNU-specific strerror_r() */

   #define _XOPEN_SOURCE 600
   #include string.h

   int strerror_r(int errnum, char *buf, size_t buflen);
   /* XSI-compliant strerror_r() */

DESCRIPTION
[...]

   The XSI-compliant strerror_r() is  preferred  for  portable
   applications.  It returns the error string in the user-sup-
   plied buffer buf of length buflen.

   The GNU-specific strerror_r() returns a pointer to a string
   containing the error message.  This may be either a pointer
   to a string that the function stores in buf, or  a  pointer
   to  some  (immutable)  static  string (in which case buf is
   unused).  If the function stores a string in buf,  then  at
   most  buflen  bytes are stored (the string may be truncated
   if buflen is too small) and the string  always  includes  a
   terminating null byte.

-- 
Michael Kerrisk
maintainer of Linux man pages Sections 2, 3, 4, 5, and 7 

Want to help with man page maintenance?  
Grab the latest tarball at
ftp://ftp.win.tue.nl/pub/linux-local/manpages/, 
read the HOWTOHELP file and grep the source 
files for 'FIXME'.



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



Bug#418734: php5-sybase: mssql extension not registered

2007-04-11 Thread Jean-David Maillefer
Package: php5-sybase
Version: 5.2.0-8+etch1
Severity: normal



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

Versions of packages php5-sybase depends on:
ii  libapache2-mod-php5 [phpap 5.2.0-8+etch1 server-side, HTML-embedded scripti
ii  libc6  2.3.6.ds1-13  GNU C Library: Shared libraries
ii  libct3 0.63-3.2  libraries for connecting to MS SQL
ii  php5-cli [phpapi-20060613+ 5.2.0-8+etch1 command-line interpreter for the p
ii  php5-common5.2.0-8+etch1 Common files for packages built fr

php5-sybase recommends no packages.

-- no debconf information

-- comments
php is not aware that the mssql extension is available

Thus it is impossible to install modules that requires mssql.

For example, `pear install MDB2_Driver_mssql' returns:
pear/MDB2_Driver_mssql requires PHP extension mssql
No valid packages found
install failed

-- suggestion
What about a providing package php5-mssql ? (It could be virtual and
depand on this one.) It's rather hard to find that to use mssql, you
have to install php5-sybase (and the package description does not even
contain the word mssql...).


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



<    1   2   3   4   5   >