Bug#340686: mozplugger: Updated version of mozplugerrc available upstream

2005-11-24 Thread Olivier Berger
Package: mozplugger
Version: 1.7.1-1
Severity: wishlist


FYI, a new version of mozpluggerrc is available at 
http://www.mozdev.org/source/browse/mozplugger/src/mozpluggerrc

I suspect it corrects a couple of problems.

On my system, it helped view the .avi files with totem instead of an error 
caused by missing xine.

Best regards


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

Versions of packages mozplugger depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  m41.4.4-1a macro processing language
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m

Versions of packages mozplugger recommends:
ii  mozilla-browser   2:1.7.12-1 The Mozilla Internet application s
ii  mozilla-firefox   1.0.7-1lightweight web browser based on M

-- no debconf information


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



Bug#340621: report upstream

2005-11-24 Thread Martin Lohmeier
Hi Jeremy,

there are at least two [1] [2] tickets in the upstream BTS [3] that look
like your report. The last one has been submitted to HEAD and is
included into turba 2.0.4 (see cvs [4]).

bye, Martin

[1] http://bugs.horde.org/ticket/?id=764
[2] http://bugs.horde.org/ticket/?id=2395
[3] http://bugs.horde.org
[4]
http://cvs.mein-horde.de/chora/diff.php/turba/lib/Driver/ldap.php?r1=1.54.4.9&r2=1.54.4.10&ty=u
-- 

Powered by Debian GNU / Linux


signature.asc
Description: OpenPGP digital signature


Bug#340685: hdparm: init-script: security-freeze option is wrong

2005-11-24 Thread Mario 'BitKoenig' Holbe
Package: hdparm
Version: 6.3-2

Hello,

the hdparm init-script maps the config-file option security_freeze to
--security_freeze, while it should be --security-freeze.


Thanks for your work & regards
   Mario
-- 
Evidently men are more intelligent than women. Every woman on earth
believes that men should be able to read minds. Every man knows this
is impossible. Ergo, we are more intelligent.


signature.asc
Description: Digital signature


Bug#340684: [Fwd: Log for successful build of italc_0.9.6.2-1 (dist=unstable)]

2005-11-24 Thread dann frazier
Package: italc
Version: 0.9.6.2-1
Severity: important
Tags: patch

Our automated buildd log filter[1] detected a problem that will cause
your package to segfault on architectures where the size of a pointer is
greater than the size of an integer, such as ia64.

[1]http://people.debian.org/~dannf/check-implicit-pointer-functions

--- italc-0.9.6.2.orig/configure.in 2005-05-17 08:59:46.0 -0600
+++ italc-0.9.6.2/configure.in  2005-11-25 00:09:06.0 -0700
@@ -7,7 +7,7 @@
 AM_INIT_AUTOMAKE(italc, 0.9.6.2)
 
 AM_CONFIG_HEADER(config.h)
-CFLAGS="$CFLAGS -O2 -g0 -ansi"
+CFLAGS="$CFLAGS -O2 -g0"
 CXXFLAGS="$CXXFLAGS -O2 -g0"
 
 # Checks for programs.

-- 
dann frazier <[EMAIL PROTECTED]>
--- Begin Message ---
Function `strdup' implicitly converted to pointer at x11vnc.c:892
Function `strdup' implicitly converted to pointer at 
libvncserver/rfbserver.c:269
Function `fdopen' implicitly converted to pointer at ../src/rsa_crypt_lib.c:104
Function `fdopen' implicitly converted to pointer at 
./../../common/src/rsa_crypt_lib.c:104
Function `fdopen' implicitly converted to pointer at 
./../../common/src/rsa_crypt_lib.c:104
Function `fdopen' implicitly converted to pointer at 
./../../common/src/rsa_crypt_lib.c:104
--- End Message ---


Bug#339737: mutt-ng: List reply with header cache works only once

2005-11-24 Thread Rocco Rutte

Hi,

* Elimar Riesebieter [05-11-24 20:48:26 +0100] wrote:

On Fri, 18 Nov 2005 the mental interface of
Gerhard Brauer told:



[...]

mutt-ng (and mutt) has a nice (patched?) feature to do a correct
List reply even the mailbox is not defined as "list" or subscribe
by looking at relevant header vars.



Wrong! Lists have to be defined in lists or subscribe.


Nope. Grep for 'ist-Post' (yes, not 'List-Post' but 'ist-Post'.)


On my backported mutt-ng on sarge there is a inconsistency when i
use the maildir header cache. As a example:



I delete the header cache for debian-user-german mailbox. Then i
start mutt-ng, go to this mailbox. Pressing  does a correct
list reply to the list. When now switch to a other list (or close
muttng) and come back (and the header cache does it work) then
List reply () doesn't work anymore, it says (similar): Not a
mailing list.



Maybe 'cause the list isn't defined neither in lists nor in
subscribe?


No. The point is: the header caching doesn't seem to store the List-Post 
header. Thus, when there's no header cache available, all headers are 
fetched including List-Post:. When reading from cache where the header 
isn't saved/restored, it looks like no List-Post: was there in the 
original message. Thus it fails.


See the attached patch which works here like a charm (why shouldn't it 
;-)


  bye, Rocco
--
:wq!
Index: hcache.c
===
--- hcache.c(revision 597)
+++ hcache.c(working copy)
@@ -14,7 +14,7 @@
 
 #ifdef USE_HCACHE
 
-#define MUTTNG_HCACHE_ID"0x003"
+#define MUTTNG_HCACHE_ID"0x004"
 
 # if HAVE_INTTYPES_H
 #  include 
@@ -376,6 +376,7 @@
   d = dump_char (e->supersedes, d, off);
   d = dump_char (e->date, d, off);
   d = dump_char (e->x_label, d, off);
+  d = dump_char (e->list_post, d, off);
 
 #ifdef USE_NNTP
   d = dump_char (e->newsgroups, d, off);
@@ -416,7 +417,8 @@
   restore_char (&e->supersedes, d, off);
   restore_char (&e->date, d, off);
   restore_char (&e->x_label, d, off);
-  
+  restore_char (&e->list_post, d, off);
+
 #ifdef USE_NNTP
   restore_char (&e->newsgroups, d, off);
   restore_char (&e->xref, d, off);


Bug#340683: console-data: [INTL:zh_CN] updated Simplified Chinese translation

2005-11-24 Thread Carlos Z.F. Liu
Package: console-data
Version: 2002.12.04dbs-50
Severity: wishlist
Tags: patch l10n

Hello,

Here is the updated Simplified Chinese translation for console-data.
Please consider to use it in next release.

Thanks.


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

Versions of packages console-data depends on:
ii  console-common0.7.54 Basic infrastructure for text cons
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy

Versions of packages console-data recommends:
ii  console-tools  1:0.2.3dbs-58 Linux console and font utilities

-- debconf information excluded

-- 
 Best Regards,
 Carlos


console-data-zh_CN.po.gz
Description: Binary data


Bug#340621: Possible fix

2005-11-24 Thread Jeremy Lainé
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 340621 + upstream patch
thanks

Attached is a one-line patch that fixes the problem for me : I can now
add and edit entries with names containing non-ASCII characters. As far
as I can tell the patch doesn't have any ill side effects, but it may be
worth asking upstream for their opinion.

Cheers,
Jeremy

- --
http://www.jerryweb.org/ : JerryWeb.org
http://sailcut.sourceforge.net/  : Sailcut CAD
http://opensource.polytechnique.org/ : Polytechnique.org Free Software
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDhrVd4mJJZqJp2ScRAmrBAKComOVtHHK0Ff7kDPE+5O2c0bbqKQCcC/vq
WcyUtJjE7WIQI79TcMANRPQ=
=8zkd
-END PGP SIGNATURE-
diff -urN turba2-2.0.3.orig/lib/Driver/ldap.php turba2-2.0.3/lib/Driver/ldap.php
--- turba2-2.0.3.orig/lib/Driver/ldap.php   2005-06-23 23:31:11.0 
+0200
+++ turba2-2.0.3/lib/Driver/ldap.php2005-11-25 07:52:40.0 +0100
@@ -650,7 +650,7 @@
 }
 }
 
-return $dn;
+return String::convertCharset($dn, NLS::getCharset(), 
$this->_params['charset']);
 }
 
 }


Bug#340159: linuxconf-1.26r4/diajava/XColorNames.java fails DFSG #1

2005-11-24 Thread Matej Vela
tag 340159 woody confirmed
thanks

Timo Juhani Lindfors <[EMAIL PROTECTED]> writes:

> Package: linuxconf
> Version: 1.26r4-2
> Severity: serious
> Justification: Policy 2.1
>
> Source file linuxconf-1.26r4/diajava/XColorNames.java
> includes the following banner:
>
> /*
>  * Copyright (c) 1996 by Jan Andersson, Torpa Konsult AB.
>  *
>  * Permission to use, copy, and distribute this software for
>  * NON-COMMERCIAL purposes and without fee is hereby granted
>  * provided that this copyright notice appears in all copies.
>  *
>  */
>
> If this is true then the file can't be distributed for commercial
> purposes and thus fails DFSG #1.

(diajava/JanneButton.java and diajava/XImageSource.java have the same
problem.)

Linuxconf was removed in April 2003 because no one was interested in
maintaining it [1], and did not ship with sarge.  ftpmasters, are DFSG
violations still being removed from woody?

[1] 

Thanks!

Matej


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



Bug#340662: libpqxx 2.5.5 testcase failures with postgresql 8.1 and GCC 4.0.3

2005-11-24 Thread Jeroen T. Vermeulen
On Fri, November 25, 2005 05:35, Roger Leigh wrote:

> libpqxx shows three testcase failures when building with
> * libpq4 (8.1.0)
> * GCC 4.0.3 (g++ (GCC) 4.0.3 2005 (prerelease) (Debian 4.0.2-4))
>
> The full build log is attached.  The failures are
> * test016
> * test018
> * test035

These failures all occur while setting up a robust_transaction, and should
not affect code that does not use this particular class.  A workaround is
to use a regular transaction instead (no other changes needed).

A possible cause of this failure is that tables in PostgreSQL no longer
contain an implicit oid column by default.  The failing code creates a
table and expects it to contain this column.  The problem has been worked
around in the 2.6.x development series for some time.

A complication is that the new syntax for including this column is not
compatible with the older backend versions, whereas other solutions would
require schema changes.

A workaround with relatively little impact would be to edit
src/robusttransaction.cxx, and:

1. replacing all "oid" with a new identifier, say "tid"
2. adding a column "tid SERIAL" in the CREATE TABLE for the log table
3. changing the transaction log table's name throughout the source file

This adds a new table.  Which is not pretty, but the advantage is that it
does not require the column to be added to a possibly already existing
table.


Jeroen




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



Bug#340653: wordpress: Admin interface redirects to incorrect subdomain

2005-11-24 Thread Kai Hendry
On 2005-11-24T22:44+0100 Christer Mjellem Strand wrote:
> Picture the following setup in /etc/wordpress:
> config-foo.debian.org.php config-bar.debian.org.php
> If you go to http://foo.debian.org/wp-admin (which is the URL
> mentioned in the initial mail with admin pw), it will redirect to the
> first alphabetical subdomain that has a config file in /etc/wordpress,
> in this case bar.debian.org http://foo.debian.org/wp-admin will
> therefore redirect you to
> http://bar.debian.org/wp-login.php?redirect_to=%2Fwp-admin%2F

That's strange. It should pick the configuration by:

debian$ egrep HOST /etc/wordpress/wp-config.php
require_once('/etc/wordpress/config-'.strtolower($_SERVER['HTTP_HOST']).'.php');

Your HOST_NAME.

Come Monday, you could email me directly more detailed configuration to
look at.

Have a good weekend,


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



Bug#340386: coreutils: cp -r 1/ 2/ no longer works

2005-11-24 Thread Bob Proulx
Junichi Uekawa wrote:
> Constructs like
>   cp -al oprofile{,--}/
>   cp -al oprofile/ oprofile--/
> now fail if the target DIRECTORY do not exist (they used to work on sarge 
> system)
> 
>   cp -al oprofile{,--}
>   cp -al oprofile oprofile--
>   cp -al oprofile/ oprofile--
> Works.
> 
> I cannot find references to this changes in NEWS file, 
> and I am wondering if it's an intended change in behavior or not.

This is the same as Bug#339461.

POSIX requires the behavior that trailing slashes push into the
directory.  If a trailing slash is explicitly stated then the name
must be a directory or it is an error.  The behavior in woody is a
bug in the woody version.

Bob


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



Bug#340682: ITP: ii - minimalistic FIFO and filesystem based IRC client

2005-11-24 Thread Daniel Baumann
Package: wnpp
Severity: wishlist

* Package name  : ii
  Upstream Author   : Anselm R. Garbe <[EMAIL PROTECTED]>
  Nico Golde 
* URL   : http://wmii.de/index.php/WMII/Ii
* License:  : MIT
* Description:  : minimalistic FIFO and filesystem based IRC client

ii is a minimalistic FIFO and filesystem based IRC client. It creates an
irc directory tree with server, channel and nick name directories. In
every directory a FIFO file (in) and and normal file (out) is placed.

The in file is used to communicate with the servers and the out files
includes the server messages. For every channel and every nick name
there will be new in and out files. The basic idea of this is to be able
to communicate with an IRC server with basic command line tools. For
example if you will join a channel just do echo "/j #channel" > in and
ii creates a new channel directory with in and out file.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/


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



Bug#339131: aptitude: many previously working Aptitude::UI::Keybindings now fail without explanation

2005-11-24 Thread Joanne Valentine-Cooper
The following was discovered 11/15/2005 12:07 AM in a note attributed to 
one 'Daniel Burrows':

tags 339131 + patch
thanks

  Patch attached.  There is also the issue of overlapping key bindings;
however, I do not believe there's any satisfactory way of resolving this.
You should avoid picking keybindings that will conflict with each other in
the same context.

Thanks,
  Daniel



Sorry for the massive delay in getting back to you on this one; I blame 
Life In General.


For some reason, the version of aptitude I got after I recompiled with 
this patch immediately segfaults on startup. Unfortunately, providing 
Useful Information for figuring those out is not something I know how to 
do. :(  If you have any suggestions for acquiring same, I'll do what I 
can, hopefully at a faster rate than every ten days.

-jo


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



Bug#283342: squidguard: SquidGuard doesn't handle locallization properly

2005-11-24 Thread Matej Vela
tag 283342 moreinfo unreproducible
retitle 283342 squid: problem with localization
reassign 283342 squid
thanks

Raphael HALIMI <[EMAIL PROTECTED]> writes:

> There is a slight problem with SquidGuard's handling of localization. This
> issuedoesn't appear in Squid itself.
>
> If the languages selected in the webe browser are, for example :
>
> [fr_FR]
> [fr]
> [en]
>
> SquidGuard checks only the first locale asked, can't find any template for
> [fr_FR], and sends the [en] template. Problem is, SquidGuard does have a [fr]
> translation, and it's in the browser languages list, so I think SquidGuard
> should either check other asked languages, or simply replace them by a 
> template
> it does have (cutting the locale before the underscore : [fr_FR] --> [fr]).

As Stefan Fritsch already noted, squidGuard doesn't see any language
information; this must have been a problem with squid.  Can you still
reproduce it?

Thanks,

Matej


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



Bug#340681: postgresql-contrib-8.1: pg_autovacuum missing

2005-11-24 Thread Ian Zimmerman
Package: postgresql-contrib-8.1
Version: 8.1.0-2
Severity: normal


During apt-get install I see this:

Setting up postgresql-contrib-8.1 (8.1.0-2) ...
Starting PostgreSQL 8.1 autovacuum daemon: mainError: pg_autovacuum not found. \
Install postgresql-contrib-8.1 to get it
 failed!

So then I do this:

[EMAIL PROTECTED]:~$ dpkg -L postgresql-contrib-8.1 | fgrep vac
/usr/share/doc/postgresql-contrib-8.1/README.vacuumlo
[EMAIL PROTECTED]:~$

it doesn't seem to exist.

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

Versions of packages postgresql-contrib-8.1 depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libkrb53  1.3.6-5MIT Kerberos runtime libraries
ii  libpam0g  0.79-3 Pluggable Authentication Modules l
ii  libpq48.1.0-2PostgreSQL C client library
ii  libreadline5  5.0-11 GNU readline and history libraries
ii  libssl0.9.8   0.9.8a-3   SSL shared libraries
ii  libxml2   2.6.22-2   GNOME XML library
ii  libxslt1.11.1.15-1   XSLT processing library - runtime 
ii  postgresql-8.18.1.0-2object-relational SQL database, ve
ii  postgresql-common 30 manager for PostgreSQL database cl
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages postgresql-contrib-8.1 recommends:
ii  libdbd-pg-perl1.43-1 a PostgreSQL interface for Perl 5 
ii  libpg-perl1:2.1.1-2  Perl modules for PostgreSQL

-- no debconf information


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



Bug#339259: rlog: patch for c2a-transition

2005-11-24 Thread Stefan Potyra
Package: rlog
Followup-For: Bug #339259

Hi,

thanks for maintaining this package.
Attached is a small patch for c2a-transition. Please also remove/rename
debian/librlog1c2.install (new should be librlog1c2a.install, as seen
in the patch).

Cheers,
Stefan.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-10-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
--- rlog-1.3.6.orig/debian/control  2005-11-25 04:07:00.0 +0100
+++ rlog-1.3.6/debian/control   2005-11-25 03:52:37.0 +0100
@@ -7,19 +7,19 @@
 Package: librlog-dev
 Section: libdevel
 Architecture: any
-Depends: librlog1c2 (= ${Source-Version})
+Depends: librlog1c2a (= ${Source-Version})
 Description: flexible message logging library - development files
  RLog library provides a flexible message logging facility for C++ programs and
  libraries. It is meant to be fast enough to live in production code.  RLog
  provides macros which are similar to Qt's debug macros, which are similar
  to simple printf() statements
 
-Package: librlog1c2
+Package: librlog1c2a
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Conflicts: librlog1
-Replaces: librlog1
+Conflicts: librlog1, librlog1c2
+Replaces: librlog1, librlog1c2
 Description: flexible message logging library
  RLog provides a flexible message logging facility for C++ programs and
  libraries. It is meant to be fast enough to live in production code.
--- rlog-1.3.6.orig/debian/librlog1c2a.install  1970-01-01 01:00:00.0 
+0100
+++ rlog-1.3.6/debian/librlog1c2a.install   2005-11-25 03:39:06.0 
+0100
@@ -0,0 +1 @@
+debian/tmp/usr/lib/*.so.* usr/lib


Bug#338962: papercut: Posting message using phpbb_mysql backend fails

2005-11-24 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, 24 Nov 2005 22:22:57 +0100
Jérémy Bobbio <[EMAIL PROTECTED]> wrote:

> On Monday 14 November 2005 04:06, Jonas Smedegaard wrote:
> > I am testing papbercut with the phpbb_mysql backend.
> >
> > reading messages works. Authentication (when patch in separately
> > filed bugreport is applied) works. But sending messages - either
> > creating a new message or responding to an existing one - fails.
> 
> This will be fixed in next papercut upload.
> 
> In the meantime, you can apply the attached patch.

Indeed, it works.

Thanks!


 - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

 - Enden er nær: http://www.shibumi.org/eoti.htm
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDhoDKn7DbMsAkQLgRAvLnAKCGnBUEhUetRxuk1X3l2Huhdxn05QCfeSzC
FmglHw2qqBin2qcjY2dLm6o=
=m/mr
-END PGP SIGNATURE-



Bug#328534: Adaptec 2005S Hangs with current experiemental 2.6.13-686-smp kernel

2005-11-24 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, 24 Nov 2005 15:20:15 -0800
wolftales <[EMAIL PROTECTED]> wrote:

> I installed "linux-image-2.6.14-2-686-smp 2.6.14-3"  using yarid
> instead of initramfs with similar results.

Could you please provide the output of the following command, while
system is configured to use yaird:

  dpkg-reconfigure linux-image-2.6.14-2-686-smp


 - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

 - Enden er nær: http://www.shibumi.org/eoti.htm
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDhn+8n7DbMsAkQLgRAk/RAJ9j+HGCYN83mApC3rrR/8eGP+fWIQCgkuDV
LIuR8KnEynzdEyhT72kPBfs=
=7Hpp
-END PGP SIGNATURE-



Bug#274685: wxvlc: Opening xvid in firefox crashes firefox and seems to crash ion3 too

2005-11-24 Thread David Creelman
Package: wxvlc
Version: 0.8.4-test2-2
Followup-For: Bug #274685

In Firefox, downloaded the following xvid
http://files.myeburg.net/work/progressbar_anim/progressbar_anim2_h264.avi

It seemed to play to the end, but then mouse and keyboard movement was lost in 
ion3. 
Tried to restart X with ctrl-alt-bspace, but would not respond.
Hard rebooted machine and tried again to check if wasn't something I did and was
completely repeatable.

The second time (after the reboot) there seemed to be more artifacts left on 
screen from the animation.

Last frame is completely blue in both instances.

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

Versions of packages wxvlc depends on:
ii  libc6  2.3.5-8   GNU C Library: Shared libraries an
ii  libcdio6   0.76-1library to read and control CD-ROM
ii  libgcc11:4.0.2-4 GCC support library
ii  libstdc++6 4.0.2-4   The GNU Standard C++ Library v3
ii  libwxgtk2.6-0  2.6.1.2   wxWidgets Cross-platform C++ GUI t
ii  vlc0.8.4-test2-2 multimedia player for all audio an

wxvlc recommends no packages.

-- no debconf information


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



Bug#340679: pyqt-tools: pyuic should NOT attempt to connect to session/x servers

2005-11-24 Thread Henrique de Moraes Holschuh
Package: pyqt-tools
Version: 3.15-4
Severity: normal

While building hplip in a pbuider chroot (and later verified in all
autobuilders using their logs):

pyuic -x -o ui/loadpaperform_base.py ui/loadpaperform_base.ui
Session management error: Could not open network socket


It should not have tried to connect to anything in the first place.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.4-debian1+libata+bluesmoke+imq+lm85
Locale: LANG=pt_BR.ISO-8859-1, LC_CTYPE=pt_BR.ISO-8859-1 (charmap=ISO-8859-1)

Versions of packages pyqt-tools depends on:
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.2-4   GCC support library
ii  libqt3-mt3:3.3.5-1   Qt GUI Library (Threaded runtime v
ii  libstdc++6   4.0.2-4 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte
ii  xlibs6.8.2.dfsg.1-10 X Window System client libraries m

pyqt-tools recommends no packages.

-- no debconf information

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh


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



Bug#340678: update-manager não instala novas versões

2005-11-24 Thread Guilherme M. Gondim (semente)
Package: update-manager
Version: 0.41.1.dfsg+CVS20051105-1
Severity: important


Bom, não consigo instalar os novos pacotes quando atualizo a lista de
pacotes e logo em seguida clico em algum pacote para ver as alterações
e etc.

Para que funcione, tenho que fechar o update-manager, rodar o
Recarregar e logo em seguida apertar em Instalar, sem apertar em
nenhum outro lugar.

Obrigado pela atenção e pelo pacote! :-)
semente

PS.: Se alguém puder traduzir isso para o inglês... para referência de
outras pessoas...

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

Versions of packages update-manager depends on:
ii  lsb-release   3.0-11 Linux Standard Base version report
ii  python2.4 2.4.2-2An interactive high-level object-o
ii  python2.4-apt 0.6.14 Python interface to libapt-pkg
ii  python2.4-glade2  2.6.3-2GTK+ bindings: Glade support
ii  python2.4-gnome2  2.10.0-4   Python bindings for the GNOME desk
ii  synaptic  0.57.5.1   Graphical package manager

update-manager recommends no packages.

-- no debconf information



Bug#340677: python2.3-pygame: Hangs when loading font

2005-11-24 Thread Peter De Wachter
Package: python2.3-pygame
Version: 1.7.1release-2
Severity: important

This fragment of code (extracted from solarwolf) caused pygame to hang
on my system:
import pygame, pygame.font
pygame.init()
pygame.font.init()
pygame.font.SysFont('sans', 16, italic=1)
To reproduce, make sure you have Bitstream Vera and don't have Arial and
Helvetica installed.

I traced the execution; pygame is getting in an endless loop after
incorrectly parsing fontconfig's fonts.cache-1 files. Trying to read
those files is of course a gross hack. The attached patch throws all
that code away and replaces it with a function that parses the output of
the fc-list command. Still ugly, but at least it works. (The proper way
of course is to use fontconfig directly, but there doesn't seem to be a
python module for that.)


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

Versions of packages python2.3-pygame depends on:
ii  libc6  2.3.5-8   GNU C Library: Shared libraries an
ii  libsdl-image1.21.2.4-1   image loading library for Simple D
ii  libsdl-mixer1.21.2.6-1.1 mixer library for Simple DirectMed
ii  libsdl-ttf2.0-02.0.6-5   ttf library for Simple DirectMedia
ii  libsdl1.2debian1.2.9-0.0 Simple DirectMedia Layer
ii  libsmpeg0  0.4.5+cvs20030824-1.6 SDL MPEG Player Library - shared l
ii  python2.3  2.3.5-9   An interactive high-level object-o
ii  python2.3-numeric  24.2-1Numerical (matrix-oriented) Mathem
ii  python2.3-numeric- 24.2-1Extension modules for Numeric Pyth

python2.3-pygame recommends no packages.

-- no debconf information
--- sysfont.py.orig 2005-11-22 02:31:35.0 +0100
+++ sysfont.py  2005-11-25 02:39:32.0 +0100
@@ -127,61 +127,16 @@
 
 
 
-#read the fonts from a unix 'fonts.cache-1' file
-def read_unix_fontscache(dir, file, fonts):
-file = open(os.path.join(dir, file))
-for line in file.readlines():
-try:
-font, num, vals = line.split(' ', 2)
-except ValueError:
-continue
-font = font.replace('"', '')
-if font[-4:].lower() not in [".ttf", ".ttc"]:
-continue
-font = os.path.join(dir, font)
-vals = vals.split(':')
-name = _simplename(vals[0][1:])
-bold = vals[1].find('Bold') >= 0
-italic = vals[1].find('Italic') >= 0
-_addfont(name, bold, italic, font, fonts)
-
-
-#read the fonts from a unix 'fonts.dot' file
-def read_unix_fontsdir(dir, file, fonts):
-file = open(os.path.join(dir, file))
-try: numfonts = int(file.readline())
-except ValueError: return # probably not a font file
-
-for line in file.readlines():
-font, descr = (line.split(' ', 1) + ['', ''])[:2]
-if font[-4:].lower() not in [".ttf", ".ttc"]:
-
-continue
-font = os.path.join(dir, font)
-descr = descr.split('-', 13)
-name = _simplename(descr[2])
-bold = (descr[3] == 'bold')
-italic = (descr[4] == 'i')
-_addfont(name, bold, italic, font, fonts)
-
-
-#walk the path directory trees
-def _fontwalk(fonts, path, files):
-if 'fonts.scale' in files:
-read_unix_fontsdir(path, 'fonts.scale', fonts)
-elif 'fonts.dir' in files:
-read_unix_fontsdir(path, 'fonts.dir', fonts)
-elif 'fonts.cache-1' in files:
-read_unix_fontscache(path, 'fonts.cache-1', fonts)
-
-
 #read the fonts on unix
 def initsysfonts_unix():
-paths = ['/usr/X11R6/lib/X11/fonts', '/usr/share/fonts']
 fonts = {}
-for p in paths:
-if os.path.isdir(p):
-os.path.walk(p, _fontwalk, fonts)
+for line in os.popen('fc-list : file family style'):
+file, family, style = line.split(':', 2)
+if file[-4:].lower() in ['.ttf', '.ttc']:
+bold = style.find('Bold') >= 0
+italic = style.find('Italic') >= 0
+oblique = style.find('Oblique') >= 0
+_addfont(_simplename(family), bold, italic or oblique, file, fonts)
 return fonts
 
 


Bug#340676: anjuta: dragging toolbars disables anjuta.

2005-11-24 Thread Jasen Betts
Package: anjuta
Version: 1.2.2-9
Severity: important


I dragged a toolbar out of the main window and droppend it on the desktop.
it stuck like glue,

 and I thought that was bad.

I clicked hide toolbar in the menu, it dissapared.

I clicked show toolbar, anjuta crashed.

Now I can't start anjuta.

The following command undid the damage: 

  rm ~/.gnome2/Anjuta

===

(anjuta:11555): GLib-GObject-WARNING **: IA__g_object_set_valist: construct
property "type" for object ESplash' can't be set after construction
** Message: Initializing AP class
** Message: Initializing AP Instance
** Message: Initializing launcher class

(anjuta:11555): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to
allocate widget with width 32 and height -1221175544

(anjuta:11555): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to
allocate widget with width 32 and height -1221175544

(anjuta:11555): Gtk-CRITICAL **: gtk_widget_hide: assertion GTK_IS_WIDGET
(widget)' failed

(anjuta:11555): Gtk-CRITICAL **: gtk_widget_hide: assertion GTK_IS_WIDGET
(widget)' failed
==

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: LANG=en_NZ, LC_CTYPE=en_NZ (charmap=ISO-8859-1)

Versions of packages anjuta depends on:
ii  anjuta-common  1.2.2-9   Data files for Anjuta
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libbonobo2-0   2.8.1-2   Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.8.1-2   The Bonobo UI library
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libesd00.2.35-2  Enlightened Sound Daemon - Shared 
ii  libfontconfig1 2.3.1-2   generic font configuration library
ii  libfreetype6   2.1.7-2.4 FreeType 2 font engine, shared lib
ii  libgcc11:3.4.3-13GCC support library
ii  libgconf2-42.8.1-6   GNOME configuration database syste
ii  libgcrypt111.2.0-11.1LGPL Crypto library - runtime libr
ii  libglade2-01:2.4.2-2 library to load .glade files at ru
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgnome-keyring0  0.4.2-1   GNOME keyring services library
ii  libgnome2-02.8.1-2   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.8.0-1   A powerful object-oriented display
ii  libgnomeprint2.2-0 2.8.2-1   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0   2.8.2-2   GNOME 2.2 print architecture User 
ii  libgnomeui-0   2.8.1-3   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.8.4-4   The GNOME virtual file-system libr
ii  libgnutls111.0.16-13.1   GNU TLS library - runtime library
ii  libgpg-error0  1.0-1 library for common error values an
ii  libgtk2.0-02.6.4-3   The GTK+ graphical user interface 
ii  libice64.3.0.dfsg.1-14   Inter-Client Exchange library
ii  libjpeg62  6b-10 The Independent JPEG Group's JPEG 
ii  libncurses55.4-4 Shared libraries for terminal hand
ii  liborbit2  1:2.12.2-1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.8.1-1   Layout and rendering of internatio
ii  libpcre3   4.5-1.2sarge1 Perl 5 Compatible Regular Expressi
ii  libpopt0   1.7-5 lib for parsing cmdline parameters
ii  libsm6 4.3.0.dfsg.1-14   X Window System Session Management
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libtasn1-2 0.2.10-3  Manage ASN.1 structures (runtime)
ii  libvte41:0.11.12-1   Terminal emulator widget for GTK+ 
ii  libx11-6   4.3.0.dfsg.1-14   X Window System protocol client li
ii  libxft22.1.7-1   FreeType-based font drawing librar
ii  libxml22.6.16-7  GNOME XML library
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  scrollkeeper   0.3.14-10 A free electronic cataloging syste
ii  xlibs  4.3.0.dfsg.1-14   X Keyboard Extension (XKB) configu
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#339777: #339777 can't read "errorCode": no such variable

2005-11-24 Thread Thomas Dickey
In this chunk

set result [catch init-files output]
check-error $result $output
if {$result} {
# drat! Probably ought to display the newDiff dialog
# or something.
set ret 0

} else {

# do the diff
do-diff

move first 1 1

set ret 1
}

The init-files call is calling tmpfile.  Then do-diff calls it with the same
parameters, expecting to overwrite the temporary file(s).

The fix for #339777 breaks for the case where I use it to diff a file against
an RCS file (whose directory happens to be a symbolic link).

-- 
Thomas E. Dickey <[EMAIL PROTECTED]>
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#339938: enscript: Wrapped function lists in ChangeLog files are not highlighted properly

2005-11-24 Thread Daniel Leidert
tags 339938 + patch
thanks

Daniel Leidert wrote:

> The style guidelines for GNU ChangeLog files state:
> 
> Break long lists of function names by closing continued lines with ')',
> rather than ',', and opening the continuation with '(' as in this
> example:
> 
> * keyboard.c (menu_bar_items, tool_bar_items)
> (Fexecute_extended_command): Deal with `keymap' property.
> 
> (http://www.gnu.org/prep/standards/html_node/Style-of-Change-Logs.html#Style-of-Change-Logs)
> 
> The current enscript only highlights the last '(...)' before the ':' but
> not all the other function lists. It would be really nice if you could
> fix this bug.

A fix is attached. It should expect a ':' or a newline after the closing
bracket. For really long lists this should also be done for the last
regex pattern ('Function name descriptions without file names.').

Regards, Daniel
--- /usr/share/enscript/hl/changelog.st.original	2005-02-13 21:00:59.0 +0100
+++ /usr/share/enscript/hl/changelog.st	2005-11-25 02:18:59.0 +0100
@@ -26,7 +26,7 @@ state changelog extends HighlightEntry
   }
 
   /* File descriptions with function names. */
-  /(^\t\* )([^\(]+)(\()([^\)]+)(\):)/ {
+  /(^\t\* )([^\(]+)(\()([^\)]+)(\)[:\n])/ {
 language_print ($1);
 
 function_name_face (true);
@@ -54,7 +54,7 @@ state changelog extends HighlightEntry
   }
 
   /* Function name descriptions without file names. */
-  /(^\t\()([^\)]+)(\):)/ {
+  /(^\t\()([^\)]+)(\)[:\n])/ {
 language_print ($1);
 
 keyword_face (true);


Bug#332313: autoconf-archive: acx_pthread.m4 doesn't work

2005-11-24 Thread Lennart Poettering
On Tue, 22.11.05 16:16, Steven G. Johnson ([EMAIL PROTECTED]) wrote:

> 
> On Mon, 21 Nov 2005, Qingning Huo wrote:
> >>acx_pthread.m4 doesn't work. It detects "-pthread" as sufficient as
> >>CFLAGS, which is not correct on my machine. You need -lthread
> >>too. Shuffling the order of the variable acx_pthread_flags so that
> 
> I'm guessing that the reporter is not using the macro correctly.
> 
> As is clearly described in the documentation for this macro, it expects 
> you to use the $CFLAGS for *both* compiling *and* linking.  If you do 
> this, then gcc should automatically link -lthread when you pass -pthread 
> during linking.

Mea Culpa! I modified my Makefile.ams now according to your
suggestion and it works indeed. Sorry for the confusion! 

I guess this bug can be closed now!

Lennart

-- 
Lennart Poettering; lennart [at] poettering [dot] de
ICQ# 11060553; GPG 0x1A015CC4; http://0pointer.de/lennart/


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



Bug#339777: #339777 can't read "errorCode": no such variable

2005-11-24 Thread Thomas Dickey
I just updated, saw the package is broken, and see that this fix broke it.
Please reopen it.

-- 
Thomas E. Dickey <[EMAIL PROTECTED]>
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#340675: CVE-2005-3570: Cross site scripting vulnerability

2005-11-24 Thread Geoff Crompton
Package: horde2
Severity: grave
Justification: user security hole


Security focus http://www.securityfocus.com/bid/15409 reports an
unspecidied problem with Horde.

Horde at http://www.securityfocus.com/advisories/9756 describes:
>By enticing a user to read a specially-crafted e-mail or using a
>manipulated URL, an attacker can execute arbitrary scripts running in
>the context of the victim's browser. This could lead to a compromise of
>the user's browser content.

They recommend using horde 2.2.9

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-smp
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)


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



Bug#326472: acknowledged by developer (Bug#249642: fixed in cdrdao 1:1.2.1-1)

2005-11-24 Thread Luke Kenneth Casson Leighton
ello,

nothing mentioned in the changelog about ia_64 rule...

On Thu, Nov 24, 2005 at 04:48:20PM -0800, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> #326472: cdrdao: copying ia_64 "rules" fixes x86_64 architecture build,
> which was filed against the cdrdao package.

>* New upstream release
>   - Unbreak toc2cue (closes: #222036)
>   - Includes newer scsilib version with amd64 support - note that this
> is completely untestable and not in Debian anyway, so don't bother
> filing bugs about it not working (closes: #249634, #249642, #326472)
>* Clean up dead Suggests relation to gcdmaster (closes: #311738)
>* Fix copyright file to include upstream authors (closes: #337360)
>* Fix manpage to include current authors (closes: #300958)
>* Completely disable the ability to run setuid root, and expand the
>  description in README.Debian. That should be the end of security
>  issues in cdrdao. (closes: #309735, #133473, #140038)
>* Bump priority up to optional (was extra) - k3b wants to depend on it



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



Bug#340673: man-db: Filtering with `col' breaks pinfo & dwww output

2005-11-24 Thread Robert Luberda
Package: man-db
Version: 2.4.3-3
Severity: important

Hi Collin,

On sarge system (with man-db 2.4.2-21)
man -P less man
command is equivalent to 
man -P cat man | less 
i.e. the generated pages look exactly the same.  That is no longer true 
for man-db 2.4.3-3.

The sid version of the man command strips control characters with `col'
 when stdout is not connected to the terminal. This uglifies output of 
`pinfo -m' and dwww, beacuse they no longer use bold and italic font 
to emphasize some part of manual pages text.

Could you please either revert to the old behaviour or add some commandline 
option which would prevent filtering with 'col' on nontermianls?

Best Regards,
robert



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

Versions of packages man-db depends on:
ii  bsdmainutils 6.1.2   collection of more utilities from 
ii  debconf [debconf-2.0]1.4.59  Debian configuration management sy
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  groff-base   1.18.1.1-10 GNU troff text-formatting system (
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libgdbm3 1.8.3-2 GNU dbm database routines (runtime

man-db recommends no packages.

-- debconf information excluded


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



Bug#323956: Let's close this bug

2005-11-24 Thread Adeodato Simó
close 323956
thanks

  (Way to go about forgetting RC bugs and not noticing mutt not
  migrating to testing but occasionally, to forget it the next day.)

  So I'm closing this bug. Nor upstream, nor me, not ohter people who
  mailed this bug, have been able to reproduce the crash, and I have not
  heard of it being successfully obtained on any glibc based system. I
  am not really willing to keep this bug open at grave severity when
  people repeatedly fail to reproduce it. Upstream sees no problem, if
  somebody does, I'll be delighted (well, sort of) to see you come by
  with a proof that an explotaible bug is really hiding there.

  Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
As scarce as truth is, the supply has always been in excess of the demand.
-- Josh Billings



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



Bug#326672: fails on 2.6.14: lirc 0.7.3pre1 seems to work fine

2005-11-24 Thread graziano
Package: lirc
Version: 0.7.1pre2-11
Followup-For: Bug #326672

the current version of lirc seems to fails to load modules also with
kernel 2.6.14. I tried version 0.7.3pre1 (not debian of course) and
everything seems to work fine. 

graziano



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

Versions of packages lirc depends on:
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  dialog1.0-20051107-1 Displays user-friendly dialog boxe
ii  libasound21.0.10-1   ALSA library
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  liblircclient00.7.1pre2-11   LIRC client library
ii  libusb-0.1-4  2:0.1.10a-22   userspace USB programming library

lirc recommends no packages.

-- debconf information:
  lirc/take_care_of_old_config:
* lirc/install_devices: true
* lirc/reconfigure: false
  lirc/lircmd_conf:
  lirc/remove_var-log-lircd: true
  lirc/driver: default
  lirc/should-use-IntelliMouse:
  lirc/cflags: -DLIRC_SERIAL_SOFTCARRIER
  lirc/irq: 3
  lirc/lircd_conf:
  lirc/port: 0x2f8
  lirc/device: /dev/lirc
  lirc/timer: 65536
  lirc/modules: lirc_dev lirc_sir


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



Bug#263887: cdrdao override disparity

2005-11-24 Thread Andrew Suffield
reassign 263887 ftp.debian.org
thanks

Please change cdrdao's priority from extra to optional. k3b wants to
depend on it (see bug) and it's not really very extra.

On Thu, Nov 24, 2005 at 04:17:08PM -0800, Debian Installer wrote:
> There are disparities between your recently accepted upload and the
> override file for the following file(s):
> 
> cdrdao_1.2.1-1_i386.deb: package says priority is optional, override says 
> extra.
> 
> Either the package or the override file is incorrect.  If you think
> the override is correct and the package wrong please fix the package
> so that this disparity is fixed in the next upload.  If you feel the
> override is incorrect then please reply to this mail and explain why.

-- 
  .''`.  ** Debian GNU/Linux ** | Andrew Suffield
 : :' :  http://www.debian.org/ |
 `. `'  |
   `- -><-  |


signature.asc
Description: Digital signature


Bug#340672: mozilla-firefox: keyboard focus (was okay in previous versions) - lost. AGAIN.

2005-11-24 Thread Luke Kenneth Casson Leighton
Package: mozilla-firefox
Version: 1.0.7-1
Severity: normal


just upgraded firefox again.  keyboard focus in versions from over a
year ago were lost: this was a complete pain.  it was fixed.

it's now gone again.

the previous version used to lose keyboard focus but clicking inside the
window would at least return you the ability to use up-and-down arrows.

this version you can't even do that.

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux highfield 2.6.14-2-686 #1 Mon Nov 14 14:19:05 UTC 2005 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages mozilla-firefox depends on:
ii  debianutils  2.15.1  Miscellaneous utilities specific t
ii  fontconfig   2.2.1-13generic font configuration library
ii  libatk1.0-0  1.10.1-2The ATK accessibility toolkit
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.2-1 generic font configuration library
ii  libfreetype6 2.1.7-2 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-4   GCC support library
ii  libglib2.0-0 2.8.0-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-2 The GTK+ graphical user interface 
ii  libidl0  0.8.3-1 library for parsing CORBA IDL file
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  libkrb53 1.3.6-3 MIT Kerberos runtime libraries
ii  libpango1.0-01.8.2-1 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libstdc++6   4.0.2-4 The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-6  X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-6  X Window System miscellaneous exte
ii  libxft2  2.1.2-5 FreeType-based font drawing librar
ii  libxinerama1 6.8.2.dfsg.1-5  X Window System multi-head display
ii  libxp6   4.3.0-5 X Window System printing extension
ii  libxt6   4.3.0.dfsg.1-6  X Toolkit Intrinsics
ii  psmisc   21.4-1  Utilities that use the proc filesy
ii  xlibs4.3.0.dfsg.1-11 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.3-4   compression library - runtime

-- no debconf information



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



Bug#339377: awstats more info

2005-11-24 Thread Juraj Bednar

Hello,

  first, sorry I reply so late, I had other things to do.

Charles Fry wrote:

I was unable to reproduce this by processing the log lines you sent,
even with the the GeoIP plugin enabled. Please send your config file so
that we can mimic your local setup.


http://flz.sk.cx/awstats.conf

> Just to clarify, when you did these upgrades and downgrades, did you
> rerun awstats on the same physical log file?

Yes and no. I tried it also with a newly rotated logfile, same result.

Jonas Smedegaard wrote:
> Just to make sure: What version did you upgrade _from_?

6.4-1 from sarge.


   Juraj.



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



Bug#340671: Problems when upgrading to 0.6.2 (or 0.6.3)

2005-11-24 Thread Juraj Bednar

Package: racoon
Version: 0.6.2-2

When upgrading to 0.6.2-2 from testing/unstable, the VPN stopped 
working. I have one tunnel mode that tunnels internal networks of 
gateways and one transport mode between the gateways (so they can 
exchange mail using encrypted connection).


In 0.5.2-1 from stable, everything works. In 0.6.2-2 (and my package of 
upstream 0.6.3 I tried in case it solved the bug, which it didn't), it 
stops working.


my ipsec-tools.conf:
-
#!/usr/sbin/setkey -f
flush;
spdflush;

spdadd 192.168.1.0/24 192.168.2.0/24 any -P in ipsec
 esp/tunnel/172.16.0.1-172.19.0.1/unique;

spdadd 192.168.2.0/24 192.168.1.0/24 any -P out ipsec
 esp/tunnel/172.19.0.1-172.16.0.1/unique;

spdadd 172.19.0.1/32 172.16.0.1/32 any -P out ipsec
 esp/transport//unique;

spdadd 172.16.0.1/32 172.19.0.1/32 any -P in ipsec
 esp/transport//unique;
-

my racoon.conf:

-
path certificate "/etc/racoon/certs";
log debug;
remote 172.16.0.1 {
exchange_mode main;
proposal {
encryption_algorithm aes;
hash_algorithm sha1;
authentication_method pre_shared_key;
dh_group modp1024;
}
generate_policy off;
}

sainfo address 192.168.2.0/24[any] any address 192.168.1.0/24[any] any {
pfs_group modp1024;
encryption_algorithm aes;
authentication_algorithm hmac_sha1;
compression_algorithm deflate;
}

sainfo address 172.19.0.1/32[any] any address 172.16.0.1/32[any] any {
lifetime time 1 hour ;
encryption_algorithm aes, 3des ;
authentication_algorithm hmac_sha1, hmac_md5 ;
compression_algorithm deflate;
}
-

(the other side is exactly symmetrical).

the log output with 0.6.3 (pretty much the same as 0.6.2, ending with 
the same error message).


Nov 25 01:41:18 adsl racoon: INFO: @(#)ipsec-tools 0.6.3 
(http://ipsec-tools.sourceforge.net)
Nov 25 01:41:18 adsl racoon: INFO: @(#)This product linked OpenSSL 
0.9.7e 25 Oct 2004 (http://www.openssl.org/)Nov 25 01:41:18 adsl racoon: 
DEBUG: compression algorithm can not be checked because sadb message 
doesn't support it.
Nov 25 01:41:18 adsl racoon: DEBUG: compression algorithm can not be 
checked because sadb message doesn't support it.
Nov 25 01:41:18 adsl racoon: DEBUG: open /var/run/racoon/racoon.sock as 
racoon management.
Nov 25 01:41:18 adsl racoon: DEBUG: my interface: 
fe80::213:d3ff:fe60:8b8%eth1 (eth1)
Nov 25 01:41:18 adsl racoon: DEBUG: my interface: 
fe80::2e0:4cff:fe00:1405%eth0 (eth0)

Nov 25 01:41:18 adsl racoon: DEBUG: my interface: ::1 (lo)
Nov 25 01:41:18 adsl racoon: DEBUG: my interface: 172.19.0.1 (ppp0)
Nov 25 01:41:18 adsl racoon: DEBUG: my interface: 192.168.2.1 (eth0)
Nov 25 01:41:18 adsl racoon: DEBUG: my interface: 127.0.0.1 (lo)
Nov 25 01:41:18 adsl racoon: DEBUG: configuring default isakmp port.
Nov 25 01:41:18 adsl racoon: DEBUG: 6 addrs are configured successfully
Nov 25 01:41:18 adsl racoon: INFO: 127.0.0.1[500] used as isakmp port (fd=7)
Nov 25 01:41:18 adsl racoon: INFO: 127.0.0.1[500] used for NAT-T
Nov 25 01:41:18 adsl racoon: INFO: 192.168.2.1[500] used as isakmp port 
(fd=8)

Nov 25 01:41:18 adsl racoon: INFO: 192.168.2.1[500] used for NAT-T
Nov 25 01:41:18 adsl racoon: INFO: 172.19.0.1[500] used as isakmp port 
(fd=9)

Nov 25 01:41:18 adsl racoon: INFO: 172.19.0.1[500] used for NAT-T
Nov 25 01:41:18 adsl racoon: INFO: ::1[500] used as isakmp port (fd=10)
Nov 25 01:41:18 adsl racoon: INFO: fe80::2e0:4cff:fe00:1405%eth0[500] 
used as isakmp port (fd=11)
Nov 25 01:41:18 adsl racoon: INFO: fe80::213:d3ff:fe60:8b8%eth1[500] 
used as isakmp port (fd=12)

Nov 25 01:41:18 adsl racoon: DEBUG: get pfkey X_SPDDUMP message
Nov 25 01:41:18 adsl racoon: DEBUG: get pfkey X_SPDDUMP message
Nov 25 01:41:18 adsl racoon: DEBUG: sub:0xbf977de0: 172.16.0.1/32[0] 
172.19.0.1/32[0] proto=any dir=in
Nov 25 01:41:18 adsl racoon: DEBUG: db :0x80bdd88: 192.168.1.0/24[0] 
192.168.2.0/24[0] proto=any dir=in

Nov 25 01:41:18 adsl racoon: DEBUG: get pfkey X_SPDDUMP message
Nov 25 01:41:18 adsl racoon: DEBUG: sub:0xbf977de0: 192.168.2.0/24[0] 
192.168.1.0/24[0] proto=any dir=out
Nov 25 01:41:18 adsl racoon: DEBUG: sub:0xbf977de0: 192.168.2.0/24[0] 
192.168.1.0/24[0] proto=any dir=out
Nov 25 01:41:18 adsl racoon: DEBUG: db :0x80be110: 172.16.0.1/32[0] 
172.19.0.1/32[0] proto=any dir=in
Nov 25 01:41:18 adsl racoon: DEBUG: get pfkey X_SPDDUMP messageNov 25 
01:41:18 adsl racoon: DEBUG: sub:0xbf977de0: 172.19.0.1/32[0] 
172.16.0.1/32[0] proto=any dir=out
Nov 25 01:41:18 adsl racoon: DEBUG: db :0x80bdd88: 192.168.1.0/24[0] 
192.168.2.0/24[0] proto=any dir=in
Nov 25 01:41:18 adsl racoon: DEBUG: sub:0xbf977de0: 172.19.0.1/32[0] 
172.16.0.1/32[0] proto=any dir=out
Nov 25 01:41:18 adsl racoon: DEBUG: db :0x80be110: 172.16.0.1/32[0] 
172.19.0.1/32[0] proto=any dir=in
Nov 25 01:41:18 adsl racoon: DEBUG: sub:0xbf977de0: 172.19.0.1/32[0] 
172.16.0.1/32[0] proto=any dir=out
Nov 25 01:41:18 adsl racoon: DEBUG: db

Bug#327153: dosemu: Quick workaround

2005-11-24 Thread Francesco Palermo
Package: dosemu
Version: 1.2.1-3

Give a: echo 0 > /proc/sys/kernel/randomize_va_space 

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

Versions of packages dosemu depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System miscellaneous exte
ii  slang11.4.9dbs-8 The S-Lang programming library - r
ii  xbase-clients 6.8.2.dfsg.1-7 miscellaneous X clients
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m
ii  xutils6.8.2.dfsg.1-7 X Window System utility programs

Versions of packages dosemu recommends:
ii  dosemu-freedosb8p-4  FreeDOS package for DOSEMU

-- no debconf information
-- 
haku

L'arte e` facile ~ Giuseppe Chiari


pgpxM07CRUD8t.pgp
Description: PGP signature


Bug#340670: dcut: short description in the manpage misleading

2005-11-24 Thread Eduard Bloch
Package: dput
Version: 0.9.2.20
Severity: minor

Hello,

I suggest the attached change to the manpage. Reasons: I did not found
the tool using "apropos commands". And I did not look for "Debian" or
"command" because of the number of false positives.

Second, the short description is just misleading. A non-developer would
not understand what it is good for: "upload command to Debian...
sounds good... queue? which queue? heh?"


diff -urd dput-0.9.2.20/dcut.1 dput-0.9.2.21/dcut.1
--- dput-0.9.2.20/dcut.12004-12-21 09:27:24.0 +0100
+++ dput-0.9.2.21/dcut.12005-11-25 00:33:22.0 +0100
@@ -2,7 +2,7 @@
 .TH dcut 1 "January 2004"
 .SH NAME
 .B dcut
-\- Debian command upload tool
+\- Debian archive .commands file upload tool
 .SH SYNTAX
 .B dcut
 [\fIoptions\fR]
@@ -13,7 +13,8 @@
 \fB-U\fR \fIfilename\fR
 [\fIhost\fR]
 .SH DESCRIPTION
-dcut creates and / or uploads Debian upload queue commands files.
+dcut creates and / or uploads commands files for Debian FTP archive upload
+queue.
 It is a companion for \fBdput\fR and uses dput configuration files.
 As with dput, you can specify a
 .I host



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

Versions of packages dput depends on:
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  gnupg 1.4.2-2GNU privacy guard - a free PGP rep
ii  python2.3.5-3An interactive high-level object-o

dput recommends no packages.

-- debconf information:
  dput/config-file-format:


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



Bug#328534: Adaptec 2005S Hangs with current experiemental 2.6.13-686-smp kernel

2005-11-24 Thread wolftales

Sven Luther wrote:

On Sun, Nov 13, 2005 at 07:01:28PM -0800, wolftales wrote:
  

Jonas Smedegaard wrote:


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, 13 Nov 2005 12:38:35 -0800
Wolftales <[EMAIL PROTECTED]> wrote:

 
  

I had no luck running this with yaird as I showed below.
   


Do I understand correctly that your running kernel is 2.4.27? If so,
then you can't install yaird as it requires sysfs on the running
kernel.

To install using yaird you must first install and boot a kernel
between 2.6.8 (oldest kernel supported by yaird) and 2.6.12 (newest
kernel supported by initrd-tools).


- Jonas


- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt

* Tlf.: +45 40843136  Website: http://dr.jones.dk/

- Enden er nær: http://www.shibumi.org/eoti.htm
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDd+3Dn7DbMsAkQLgRAsa1AJ4vQYbOaWfe4d8EW0b+3uJILCnPEgCfTBAs
n/b+RK0yVDQJFKaop9A5oAg=
=OBAT
-END PGP SIGNATURE-
 
  
I can not install a 2.6 kernel because of these boot issues. The 2.4 
kernel has been the only one I can successfully boot off from.  So it 
appears to be a kind of a catch-22.



You have two choices : 


1) install 2.6.8 from sarge or 2.6.12 from etch, and then install 2.6.14 after
reboot. You will be forced to do something similar because of udev anyway.

2) install initramfs-tools and then install the 2.6.14 kernel.

Things are still in flux, and 2.6.14 will not enter etch until these upgrade
paths are solved.

Friendly,

Sven Luther

  
I was able to install the 2.6.8 sarge kernel and get a working system 
afterwards.


I installed "linux-image-2.6.14-2-686-smp 2.6.14-3"  using yarid instead 
of initramfs with similar results.


console output:
io schedluer cfg registered
NET: Registered poto family 2
IP
TCP: Hash tables configured (established 262144 bind 65536
TCP reno registered
TCP bic registered
NET: Registered protocol family 8 20
Using IPI shortcut mode
Freeing unused kernel memory: 208k freed
input: AT Translated set 2 keyboard on isa0060/serio0
mice: PS/2 mouse device common for all mice
SCSI subsystem initialized
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 1 seconds for /ses/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 2 seconds for /ses/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 4 seconds for /ses/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 8 seconds for /ses/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Waiting 16 seconds for /ses/block/sda/dev to show up
/bin/cat: /sys/block/sda/dev: No such file or directory
Device /sys/block/sda/dev seems to be down.
Debugging opportunity, type ^D to continue.
/bin/dash: can't access tty; job control turned off
#


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



Bug#340669: adduser: [INTL:sv] Swedish PO-template translation

2005-11-24 Thread Daniel Nylander
Package: adduser
Version: 3.79
Severity: wishlist
Tags: patch l10n


Here is the Swedish translation of adduser.

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

Versions of packages adduser depends on:
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  passwd1:4.0.13-7 change and administer password and
ii  perl-base 5.8.7-8The Pathologically Eclectic Rubbis

adduser recommends no packages.

-- debconf information:
* adduser/homedir-permission: true
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <[EMAIL PROTECTED]>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: adduser 3.79 adduser\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-11-18 17:25+\n"
"PO-Revision-Date: 2005-11-25 00:29+0100\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. everyone can issue "--help" and "--version", but only root can go on
#: ../adduser:98
msgid "Only root may add a user or group to the system.\n"
msgstr "Bara root får lägga till användare eller grupper i systemet.\n"

#: ../adduser:118
#: ../deluser:111
msgid "No options allowed after names.\n"
msgstr "Inga flaggor tillåts efter namnen.\n"

#: ../adduser:125
#: ../deluser:128
msgid "Only one or two names allowed.\n"
msgstr "Endast en eller två namn tillåts.\n"

#: ../adduser:131
msgid "Enter a groupname to add: "
msgstr "Ange ett gruppnamn att lägga till: "

#: ../adduser:135
msgid "Enter a username to add: "
msgstr "Ange ett användarnamn att lägga till: "

#. must be addusertogroup
#: ../adduser:142
msgid "Specify only one name in this mode.\n"
msgstr "Ange endast ett namn i detta läge.\n"

# Lite osäker på denna
#: ../adduser:158
msgid "The --group, --ingroup, and --gid options are mutually exclusive.\n"
msgstr "Flaggorna --group, --ingroup och --gid är ömsesidigt exklusiva.\n"

#: ../adduser:163
msgid "The home dir must be an absolute path.\n"
msgstr "Hemkatalog måste vara en absolut sökväg.\n"

#: ../adduser:167
msgid "Warning: The home dir you specified already exists.\n"
msgstr "Varning: Hemkatalogen du angav existerar redan.\n"

#: ../adduser:169
msgid "Warning: The home dir you specified does not exist.\n"
msgstr "Varning: Hemkatalogen du angav existerar inte.\n"

#: ../adduser:227
#, perl-format
msgid "The group `%s' already exists as a system group. Exiting...\n"
msgstr "Gruppen \"%s\" existerar redan som en systemgrupp. Avslutar...\n"

#: ../adduser:230
#, perl-format
msgid "The group `%s' already exists and is not a system group.\n"
msgstr "Gruppen \"%s\" existerar redan och är inte en systemgrupp.\n"

#: ../adduser:232
#: ../adduser:261
#, perl-format
msgid "The GID `%s' is already in use.\n"
msgstr "GID \"%s\" används redan.\n"

# Lite osäker på FIRST_SYS_GID osv
#: ../adduser:241
#, perl-format
msgid "No GID is available in the range %d-%d (FIRST_SYS_GID - LAST_SYS_GID).\n"
msgstr "Inget GID är tillgängligt i omfånget %d-%d (FIRST_SYS_GID - 
LAST_SYS_GID).\n"

#: ../adduser:242
#: ../adduser:271
#, perl-format
msgid "The group `%s' was not created.\n"
msgstr "Gruppen \"%s\" blev inte skapad.\n"

#: ../adduser:246
#: ../adduser:275
#, perl-format
msgid "Adding group `%s' (%s)...\n"
msgstr "Lägger till grupp `%s' (%s)...\n"

#: ../adduser:250
#: ../adduser:279
#: ../adduser:310
msgid "Done.\n"
msgstr "Klar.\n"

#: ../adduser:259
#: ../adduser:657
#, perl-format
msgid "The group `%s' already exists.\n"
msgstr "Gruppen \"%s\" existerar redan.\n"

#: ../adduser:270
#, perl-format
msgid "No GID is available in the range %d-%d (FIRST_GID - LAST_GID).\n"
msgstr "Inget GID är tillgängligt i omfånget %d-%d (FIRST_GID - LAST_GID).\n"

#: ../adduser:288
#: ../deluser:221
#: ../deluser:365
#, perl-format
msgid "The user `%s' does not exist.\n"
msgstr "Användaren \"%s\" existerar inte.\n"

#: ../adduser:290
#: ../adduser:664
#: ../deluser:329
#: ../deluser:368
#, perl-format
msgid "The group `%s' does not exist.\n"
msgstr "Gruppen \"%s\" existerar inte.\n"

#: ../adduser:293
#, perl-format
msgid "The user `%s' is already a member of `%s'.\n"
msgstr "Användaren \"%s\" är redan medlem av \"%s\".\n"

#: ../adduser:298
#, perl-format
msgid "Adding user `%s' to group `%s'...\n"
msgstr "Lägger till användare \"%s\" till grupp \"%s\"...\n"

#: ../adduser:320
#, perl-format
msgid "The user `%s' already exists as a system user. Exiting...\n"
msgstr "Användaren \"%s\" existerar redan som en systemanvändare. Avslutar...\n"

#: ../adduser:326
#, perl-format
msgid "Adding system user `%s'...\n"
msgst

Bug#340668: dcut: does not use the default host

2005-11-24 Thread Eduard Bloch
Package: dput
Version: 0.9.2.20
Severity: normal

Hello,

following the documentation of dcut, I tried to use for the first time:

$ dcut rm "module-assistant*"
 signfile 
/tmp/dcut.KhlPiR/dcut.Eduard_Bloch__blade_debian_org_.1132874291.17414  
  
.commands Eduard Bloch <[EMAIL PROTECTED]>

You need a passphrase to unlock the secret key for
user: "Eduard Bloch <[EMAIL PROTECTED]>"
1024-bit DSA key, ID EDF008C5, created 1999-11-15

  
Successfully signed commands file
Error: No host specified and no default found in config

Em, sorry, WTF? My ~/.dput.cf says:

[DEFAULT]
login = blade
method = ftp
hash = md5
allow_unsigned_uploads = 0
run_lintian = 0
run_dinstall = 0
check_version = 0
scp_compress = 0
post_upload_command =
pre_upload_command =
passive_ftp = 0
default_host_main =
default_host_non-us =

[ftp-master]
fqdn = ftp-master.debian.org
incoming = /pub/UploadQueue/
method = ftp
login = anonymous

So what's the problem? The example usage info implies that the host is
detected automaticaly, and dput also works this way.

Further, the manpage and usage info are confusing. The description tells
to use "command" but it also says, the allowed commands are only "rm"
and "mv".
So what does that mean, how should I deal with arguments? Use 
"rm foo*", "rm bar*"
as command line? Or separate the arguments? Or does that just not
matter? Then it should be stated somehow different.

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

Versions of packages dput depends on:
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  gnupg 1.4.2-2GNU privacy guard - a free PGP rep
ii  python2.3.5-3An interactive high-level object-o

dput recommends no packages.

-- debconf information:
  dput/config-file-format:


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



Bug#340667: does not make $i local

2005-11-24 Thread Peter Eisentraut
Package: lsb-base
Version: 3.0-11
Severity: normal

/lib/lsb/init-functions does not declare the $i used as a loop variable
at several places as local, which interacts in strange ways with init
scripts that also happen to use $i.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages lsb-base depends on:
ii  ncurses-bin   5.4-9  Terminal-related programs and man 
ii  sed   4.1.4-4The GNU sed stream editor

lsb-base recommends no packages.

-- no debconf information


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



Bug#338121: this is correct

2005-11-24 Thread Adeodato Simó
Hi cobaco,

  thanks for sharing this information. Let's CC Steffen so that he
  becomes aware of your response.

* cobaco (aka Bart Cornelis) [Wed, 23 Nov 2005 17:10:16 +0100]:

> >"kde-config --path xfdgonc-menu" told me:
> >/home/foo/.config/menus/:/etc/kde-profile/foo/etc/xdg/menus/:/etc/xdg/menus/

> search path looks ok, this is supposed to be different from the normal one 
> as it's derived from the freedesktop basedirectory specification (i.e. it 
> uses XDG_CONFIG_DIRS and associated defaults instead of KDEDIRS and 
> associated defaults)

> To break down the search path above:

> /home/foo/.config/menus/ -> personal settings as specified by freedesktop 
> menu specification (which builds on the freedesktop basedirectory spec), 
> definately correct

> /etc/xdg/menus/   -> standard systemwide settings as specified by 
> freedesktop 
> menu specification (here's the stuff where the stuff from the menu-xdg 
> package ends up), definately correct

> /etc/kde-profile/foo/etc/xdg/menus/ -> added by kiosktool I'm guessing, does 
> kiosktool actually place the menu files in here? if there's a fault in the 
> search path it would be here, but it looks correct at first glance

> -> this would seem to be a bug in kiosktool not kde-config


-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
  Listening to: Alan Parsons, instrumental - Lucifer



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



Bug#339955: TODO

2005-11-24 Thread Thomas Hood
Before /etc/init.d/rc can source .sh scripts, all we have to do is get
various maintainers to eliminate all these exit commands.

/etc/rcS.d$ grep exit *.sh
S01glibc.sh:exit_check () {
S01glibc.sh:exit 1
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit_check
S01glibc.sh:exit 0
S05initrd-tools.sh:[ "$KEEPINITRD" = yes ] && exit
S05initrd-tools.sh:command -v blockdev > /dev/null 2>&1 || exit 0
S05initrd-tools.sh: mount -n /proc || exit
S05initrd-tools.sh:grep -q '^[^ ]* /initrd ' /proc/mounts || exit 0
S05initrd-tools.sh: umount /initrd/dev || exit
S05initrd-tools.sh:umount /initrd || exit
S05initrd-tools.sh: exit 1
S05keymap.sh:command -v loadkeys >/dev/null 2>&1 || exit 0
S05keymap.sh:   [ $CONSOLE_TYPE = "serial" ] && exit 0
S05keymap.sh:   exit 1
S10checkroot.sh:# NOTE: "failure" is defined as exiting with a return 
code of
S10checkroot.sh:exit 3
S10checkroot.sh:exit 3
S10checkroot.sh:: exit 0
S22hwclockfirst.sh:[ ! -x /sbin/hwclock ] && exit 0
S22hwclockfirst.sh: exit 1
S22hwclockfirst.sh:   *)log_failure_msg "Unknown UTC setting: 
\"$UTC\""; exit 1 ;;
S22hwclockfirst.sh:   *)log_failure_msg "unknown BADYEAR setting: 
\"$BADYEAR\""; exit 1 ;;
S22hwclockfirst.sh: exit 1
S30checkfs.sh:  exit 3
S30checkfs.sh:  exit 3
S30checkfs.sh:: exit 0
S30procps.sh:# Check for existance of the default file and exit if not there,
S30procps.sh:[ -r /etc/default/rcS ] || exit 0
S30procps.sh:which sysctl > /dev/null || exit 0
S30procps.sh:   exit 0
S30procps.sh:   exit 1
S35mountall.sh: exit 3
S35mountall.sh: exit 3
S35mountall.sh:: exit 0
S40hostname.sh: exit 3
S40hostname.sh: exit 3
S45mountnfs.sh: exit 3
S45mountnfs.sh: exit 3
S45mountnfs.sh:: exit 0
S48console-screen.sh:[ -x "${SETFONT}" ] || exit 0
S48console-screen.sh:CONSOLE_TYPE=`fgconsole 2>/dev/null` || exit 0
S48console-screen.sh:[ $VT = "no" ] && exit 0
S50hwclock.sh:[ ! -x /sbin/hwclock ] && exit 0
S50hwclock.sh:  exit 1
S50hwclock.sh:   *) log_failure_msg "Unknown UTC setting: \"$UTC\""; exit 1 
;;
S50hwclock.sh:   *) log_failure_msg "unknown BADYEAR setting: 
\"$BADYEAR\""; exit 1 ;;
S50hwclock.sh:  exit 1
S55bootmisc.sh: exit 3
S55bootmisc.sh: exit 3
S55bootmisc.sh:: exit 0


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



Bug#309386: False positive if epmd (from erlang-base) is running

2005-11-24 Thread lantz moore
Peter Thomassen <[EMAIL PROTECTED]> writes:

> Am Donnerstag, 24. November 2005 22:50 schrieb lantz moore:
>> bindshell listens on port 4369.  chkrootkit bases it's checks simply on
>> whether the port is being listened on.  this is the design that upstream
>> prefers, so this will not be fixed (any time soon).
>
> Is there any possibility, e.g. a config option, to exclude particular ports 
> from the check?

it'd be tough to implement (in a nice way) with the current design.  it's
quite likely that upstream would refuse any patch that added this as it
does open up a small risk.

-l


pgpz4Xfh1NyV3.pgp
Description: PGP signature


Bug#340637: revised patch

2005-11-24 Thread Dave Love
I found that having emacs21/site-lisp first in load-path broke
processing of numeric entities, so I looked further.  It seems to me
that this does something more like TRT by actually looking for files
on the load path; I think using load-file-name is a mistake.  The
result seems to find compiled Lisp, schemas and char-name files OK.

[I noticed that the distribution is a year old, but the distribution
site is down, so I can't check for more recent source.]

===
RCS file: nxml-uchnm.el,v
retrieving revision 1.1
diff -u -r1.1 nxml-uchnm.el
--- nxml-uchnm.el	2005/11/24 19:46:49	1.1
+++ nxml-uchnm.el	2005/11/24 20:09:02
@@ -201,16 +201,21 @@
 mathematical-alphanumeric-symbols)
   "Default value for `nxml-enabled-unicode-blocks'.")
 
-(let ((dir (file-name-directory load-file-name)))
+(let* ((block (car nxml-unicode-blocks))
+   (dir (file-name-directory
+	 (locate-library (format "char-name/unicode/%05X-%05X"
+ (nth 1 block)
+ (nth 2 block))
+  (dotimes (i 2)
+(setq dir (file-name-directory (directory-file-name dir
   (mapcar (lambda (block)
 	(let ((sym (nxml-unicode-block-char-name-set (car block
 	  (nxml-autoload-char-name-set
 	   sym
-	   (expand-file-name
-		(format "char-name/unicode/%05X-%05X"
-			(nth 1 block)
-			(nth 2 block))
-		dir
+	   (expand-file-name (format "char-name/unicode/%05X-%05X"
+	 (nth 1 block)
+	 (nth 2 block))
+ dir
 	  nxml-unicode-blocks))
 
 (defvar nxml-enable-unicode-char-name-sets-flag nil)
===
RCS file: rng-auto.el,v
retrieving revision 1.1
diff -u -r1.1 rng-auto.el
--- rng-auto.el	2005/11/24 19:45:45	1.1
+++ rng-auto.el	2005/11/24 19:45:50
@@ -54,17 +54,12 @@
 	   (setq Info-default-directory-list
 		 (append Info-default-directory-list (list dir)))
 
-(let* ((dir (file-name-directory load-file-name))
-   (schema-dir (concat dir "schema/")))
-  (unless (member dir load-path)
-(setq load-path (cons dir load-path)))
-  (setq rng-schema-locating-files-default
-	(list "schemas.xml"
-	  (abbreviate-file-name
-	   (expand-file-name "schemas.xml" schema-dir
-  (setq rng-schema-locating-file-schema-file
-	(expand-file-name "locate.rnc" schema-dir))
-  (rng-add-info-dir dir))
+(setq rng-schema-locating-files-default
+  (list "schemas.xml"
+	(abbreviate-file-name  (locate-library "schema/schemas.xml" t
+(setq rng-schema-locating-file-schema-file
+  (locate-library "schema/locate.rnc"))
+(rng-add-info-dir (file-name-directory load-file-name))
 
 ;; Users shouldn't edit this.
 ;; Instead they should customize `rng-preferred-prefix-alist'.
===
RCS file: debian/emacsen-startup,v
retrieving revision 1.1
diff -u -r1.1 debian/emacsen-startup
--- debian/emacsen-startup	2005/11/24 22:37:06	1.1
+++ debian/emacsen-startup	2005/11/24 22:38:47
@@ -15,20 +15,13 @@
 (unload-feature 'un-define)
   (error nil))
 
-(let ((package-dir (concat "/usr/share/"
-   (symbol-name flavor)
-   "/site-lisp/nxml-mode")))
-  (when (file-directory-p package-dir)
-(setq load-path (cons package-dir load-path
-
+(debian-pkg-add-load-path-item "/usr/share/emacs/site-lisp/nxml-mode")
 (debian-pkg-add-load-path-item (concat "/usr/share/"
(symbol-name flavor)
"/site-lisp/nxml-mode"))
-(debian-pkg-add-load-path-item "/usr/share/emacs/site-lisp/nxml-mode")
 
-;; Load the package.  Note that we have to load the *source* of rng-auto
-;; for it to properly find the schemas.
-(load "rng-auto.el")
+;; Load the package.
+(load "rng-auto")
  
 ;; Comment this out if you want to use PSGML or another mode to edit
 ;; these files.


Bug#340664: FTBFS (alpha): arg_max_32bit_linux_bug fails

2005-11-24 Thread Falk Hueffner
Package: findutils
Version: 4.2.26-1
Severity: serious
Justification: no longer builds from source

findutils does not build on Alpha:

[...]
Running 
/src/xargs/findutils-4.2.26/xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.exp
 ...
FAIL: arg_max_32bit_linux_bug, wrong stdout output: xargs.out 
/src/xargs/findutils-4.2.26/xargs/testsuite/xargs.posix/arg_max_32bit_linux_bug.xo
 differ: char 32764, line 1
child process exited abnormally
Running 
/src/xargs/findutils-4.2.26/xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.exp
 ...
FAIL: arg_max_64bit_linux_bug, wrong stdout output: xargs.out 
/src/xargs/findutils-4.2.26/xargs/testsuite/xargs.posix/arg_max_64bit_linux_bug.xo
 differ: char 32764, line 1
child process exited abnormally
[...]
=== xargs Summary ===

# of expected passes90
# of unexpected failures2
/src/xargs/findutils-4.2.26/xargs/testsuite/../xargs version 4.2.26

make[4]: *** [check-DEJAGNU] Error 1
make[4]: Leaving directory `/src/xargs/findutils-4.2.26/xargs/testsuite'

For arg_max_32bit_linux_bug, the testsuite excepts 1 line of 32766
y's, and 1 line of 1 y. The freshly built xarg produces 2 lines of
16382 y's each, and 1 line of 3 y's. So the number of y's is correct,
only their partitioning isn't as expected. The same happens on ia64.

Full log at
http://buildd.debian.org/fetch.php?&pkg=findutils&ver=4.2.26-1&arch=alpha&stamp=1132483101&file=log&as=raw


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

Versions of packages findutils depends on:
ii  libc6.1   2.3.5-8GNU C Library: Shared libraries an

findutils recommends no packages.

-- no debconf information


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



Bug#340666: iozone3: new upstream available

2005-11-24 Thread Noèl Köthe
Package: iozone3
Version: 226
Severity: wishlist

Hello,

a new upstream is available:

http://www.iozone.org/src/current/iozone3_257.tar

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


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



Bug#340665: wxwin2.4-examples: please don't gz the examples

2005-11-24 Thread Ariel
Package: wxwin2.4-examples
Version: 2.4.3.1
Severity: normal

Half of the examples in
/usr/share/doc/wxwin2.4-examples/examples/wxPython/ are gziped.

Please don't gzip them, it makes it imposible to run the examples
directly. I have to copy them to tmp and ungzip them first. (And
some of them have dependencies, so I have to find and copy those too.)

And BTW why are half gziped and half not?

I can see a reason for gzipping images.py, but the rest of them are tiny.
4 files in bmp_source/ 1 file in bitmaps/ and 8 in data/ are also gziped.
I mention them because except for images.py they all are used.

PS. Does the severity reference the source package or the binary? From
the point of view of the source package this bug should be wishlist,
from the point of view of examples it's probably normal/important (since
it makes the examples less useful).

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

-- no debconf information


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



Bug#340663: beagle: Fails to find libebook-1.2.so.3... missing dependency?

2005-11-24 Thread Sam Morris
Package: beagle
Version: 0.1.2-1
Severity: important

When running beagled, I get the following:

Debug: Starting Beagle Daemon (version 0.1.2)
Debug: Command Line: /usr/lib/beagle/BeagleDaemon.exe --fg
Debug: Starting main loop
Debug: Starting messaging server
Debug: Starting QueryDriver
Debug: Found index helper at /usr/lib/beagle/beagled-index-helper
Debug: Found 1 types in EvolutionDataServer, Version=0.0.0.0, Culture=neutral
Debug: KMail folders not found. Will keep trying
Debug: Starting Inotify Backend
Debug: Scanning for files in the IndexingService directory...
Debug: Indexed 0 Indexing Service items in .02s
Debug: Found 12 types in BeagleDaemonLib, Version=1.9.0.0, Culture=neutral
Debug: Found 0 user-configured static queryables
Debug: Scanning addressbooks and calendars
Error: Unhandled exception thrown.  Exiting immediately.
Error: System.TypeInitializationException: An exception was thrown by the type 
initializer for Evolution.SourceList ---> System.DllNotFoundException: 
libebook-1.2.so.3
in (wrapper managed-to-native) Evolution.BookView:e_book_view_get_type ()
in <0x00014> Evolution.BookView:get_GType ()
in <0x0003f> GtkSharp.EvolutionSharp.ObjectManager:Initialize ()
in <0x7> Evolution.SourceList:.cctor ()--- End of inner exception stack 
trace ---

in (unmanaged) 0x808e17a
in <0x00064> Beagle.Daemon.EvolutionDataServerQueryable.SourcesHandler:.ctor 
(string,System.Type,Beagle.Daemon.EvolutionDataServerQueryable.EvolutionDataServerQueryable,string)
in <0x000be> 
Beagle.Daemon.EvolutionDataServerQueryable.EvolutionDataServerQueryable:Start ()
in <0x00016> Beagle.Daemon.Queryable:Start ()
in <0x000bb> Beagle.Daemon.QueryDriver:Start ()
in <0x0015e> Beagle.Daemon.BeagleDaemon:StartupProcess ()
in <0x00047> (wrapper delegate-invoke) System.MulticastDelegate:invoke_bool ()
in <0x0002a> IdleProxy:Handler ()
in <0x0002b> (wrapper native-to-managed) IdleProxy:Handler ()
in (unmanaged) 0xb7f24960
in <0x4> (wrapper managed-to-native) Gtk.Application:gtk_main ()
in <0x7> Gtk.Application:Run ()
in <0x00575> Beagle.Daemon.BeagleDaemon:DoMain (string[])
in <0x00014> Beagle.Daemon.BeagleDaemon:Main (string[])

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.14-2-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages beagle depends on:
ii  dbus-1-utils   0.50-3simple interprocess messaging syst
ii  libatk1.0-01.10.3-1  The ATK accessibility toolkit
ii  libc6  2.3.5-6   GNU C Library: Shared libraries an
ii  libcairo2  1.0.2-1   The Cairo 2D vector graphics libra
ii  libevolution-cil   0.10.2-1  CLI bindings for Evolution
ii  libexif12  0.6.12-2  library to parse EXIF files
ii  libfontconfig1 2.3.1-2   generic font configuration library
ii  libfreetype6   2.1.10-1  FreeType 2 font engine, shared lib
ii  libgalago-cil  0.3.2-3   CLI bindings for libgalago
ii  libgalago1 0.3.3-2experimental0  Galago presence library
ii  libgcc11:4.0.2-4 GCC support library
ii  libgconf2.0-cil2.3.92-2  CLI binding for GConf 2.0, unstabl
ii  libgecko2.0-cil0.11-1CLI binding for the GtkMozEmbed li
ii  libglade2.0-cil2.3.92-2  CLI binding for the Glade librarie
ii  libglib2.0-0   2.8.3-1   The GLib library of C routines
ii  libglib2.0-cil 2.3.92-2  CLI binding for the GLib utility l
ii  libgmime2.1-cil2.1.17-2  CLI binding for the MIME library, 
ii  libgnome2.0-cil2.3.92-2  CLI binding for GNOME 2.0, unstabl
ii  libgnomeui-0   2.12.0-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.12.1.1-1The GNOME virtual file-system libr
ii  libgtk2.0-02.8.7-1   The GTK+ graphical user interface 
ii  libgtk2.0-cil  2.3.92-2  CLI binding for the Gtk+ toolkit 2
ii  libice64.3.0.dfsg.1-14sarge1 Inter-Client Exchange library
ii  libmono0   1.1.9.2-1 libraries for the Mono JIT
ii  libpango1.0-0  1.10.1-1  Layout and rendering of internatio
ii  libpng12-0 1.2.8rel-5PNG library - runtime
ii  libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management
ii  libsqlite0 2.8.16-1  SQLite shared library
ii  libstdc++6 4.0.2-4   The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-14sarge1 X Window System protocol client li
ii  libxcursor11.1.3-1   X cursor management library
ii  libxext6   4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte
ii  libxi6 4.3.0.dfsg.1-14sarge1 X Window System Input extension li
ii  libxin

Bug#340662: libpqxx 2.5.5 testcase failures with postgresql 8.1 and GCC 4.0.3

2005-11-24 Thread Roger Leigh
Package: libpqxx
Severity: important

libpqxx shows three testcase failures when building with
* libpq4 (8.1.0)
* GCC 4.0.3 (g++ (GCC) 4.0.3 2005 (prerelease) (Debian 4.0.2-4))

The full build log is attached.  The failures are
* test016
* test018
* test035


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14.2
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)


libpqxx-2.5.5-2-build.bz2
Description: BZip2 compressed data


Bug#340661: mmap.move fails on AMD64

2005-11-24 Thread Joe Wreschnig
Package: python
Version: 2.3.5-2
Severity: important

The following code fails on AMD64, using Python 2.3 or 2.4:
 from mmap import mmap
 f = open('test.out', 'ab+')
 f.write('ABCDEabcde')
 f.flush()
 m = mmap(f.fileno(), 10)
 m.move(5, 0, 5)
 m.read(10)

mmapmodule.c:538 needs to use "LLL:move" instead of "iii:move".

Many details at http://www.sacredchao.net/quodlibet/ticket/366 ,
http://sourceforge.net/tracker/index.php?func=detail&aid=1291169&group_id=5470&atid=305470
http://sourceforge.net/tracker/index.php?func=detail&aid=1365916&group_id=5470&atid=305470
-- 
Joe Wreschnig <[EMAIL PROTECTED]>


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


Bug#340660: FTBFS (alpha): Assertion `sizeof(IEEE_64) == ((2)*sizeof(obj))' failed

2005-11-24 Thread Falk Hueffner
Package: rscheme
Version: 0.7.3.4.b1-2
Severity: serious
Justification: no longer builds from source

rscheme fails to build on Alpha:

[...]
gcc -g -O2 -g -Wall -Wno-unused '-DINSTALL_DIR="/usr/lib/rscheme"'  -I. -I-  
-I/tmp/rscheme-0.7.3.4.b1/debian/tmproot/include shell.o -o rs 
-L/tmp/rscheme-0.7.3.4.b1/debian/tmproot/lib -lrs -rdynamic -lm -ldl -lgmp
make[2]: Leaving directory `/tmp/rscheme-0.7.3.4.b1/src/rshell'
rshell/rs -image tmp/system.bas -c.repl system.img
rs: interim.c:54: make_float: Assertion `sizeof(IEEE_64) == ((2)*sizeof(obj))' 
failed.
RScheme (v0.7.3.4-b1u, 2005-09-16)
Copyright (C) 1995-2005 Donovan Kolbly <[EMAIL PROTECTED]>
RScheme comes with ABSOLUTELY NO WARRANTY.
Doing first-time initialization...
make[1]: *** [system.img] Aborted (core dumped)
make[1]: Leaving directory `/tmp/rscheme-0.7.3.4.b1/src'
make: *** [build-stamp] Error 2


Full build log at
http://buildd.debian.org/fetch.php?&pkg=rscheme&ver=0.7.3.4.b1-2&arch=alpha&stamp=1132058047&file=log&as=raw

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


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



Bug#339871: Same problem with dvdisaster

2005-11-24 Thread Martin Samesch
Package: k3b
Version: 0.11.20-1
Followup-For: Bug #339871


Hi Francois,

exactly the same problem here (2.6.14 vanilla), but it also occurs with
dvdisaster.

# cdrecord -scanbus
[...]
scsibus0:
0,0,0 0) 'FUJITSU ' 'MAN3184MP   ' '0109' Disk
0,1,0 1) 'FUJITSU ' 'MAP3367NP   ' '0106' Disk
0,2,0 2) *
0,3,0 3) *
0,4,0 4) *
0,5,0 5) *
0,6,0 6) *
0,7,0 7) *
scsibus1:
1,0,0   100) *
1,1,0   101) *
1,2,0   102) 'TOSHIBA ' 'DVD-ROM SD-M1401' '1008' Removable CD-ROM
1,3,0   103) 'PLEXTOR ' 'CD-ROM PX-40TS  ' '1.14' Removable CD-ROM
1,4,0   104) 'PLEXTOR ' 'CD-R   PX-W1210S' '1.06' Removable CD-ROM
1,5,0   105) *
1,6,0   106) *
1,7,0   107) *

HTH

Martin


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

Versions of packages k3b depends on:
ii  cdparanoia 3a9.8-11  An audio extraction tool for sampl
ii  cdrecord   4:2.01+01a01-2command line CD writing tool
ii  k3blibs0.11.20-1 The KDE cd burning application lib
ii  kcontrol   4:3.3.2-1sarge1   KDE Control Center
ii  kdebase-bin4:3.3.2-1sarge1   KDE Base (binaries)
ii  kdelibs-data   4:3.3.2-6.3   KDE core shared data
ii  kdelibs4   4:3.3.2-6.3   KDE core libraries
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libarts1   1.3.2-3   aRts Sound system
ii  libasound2 1.0.8-3   ALSA library
ii  libaudio2  1.7-2 The Network Audio System (NAS). (s
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libesd-alsa0 [libe 0.2.35-2  Enlightened Sound Daemon (ALSA) - 
ii  libfam0c1022.7.0-6   client library to control the FAM 
ii  libfontconfig1 2.3.1-2   generic font configuration library
ii  libfreetype6   2.1.7-2.4 FreeType 2 font engine, shared lib
ii  libgcc11:3.4.3-13GCC support library
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libice64.3.0.dfsg.1-14sarge1 Inter-Client Exchange library
ii  libidn11   0.5.13-1.0GNU libidn library, implementation
ii  libjack0.80.0-00.99.0-6  JACK Audio Connection Kit (librari
ii  libmad00.15.1b-1.1   MPEG audio decoder library
ii  libogg01.1.2-1   Ogg Bitstream Library
ii  libpng12-0 1.2.8rel-1PNG library - runtime
ii  libqt3c102-mt  3:3.3.4-3 Qt GUI Library (Threaded runtime v
ii  libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libvorbis0a1.1.0-1   The Vorbis General Audio Compressi
ii  libvorbisenc2  1.1.0-1   The Vorbis General Audio Compressi
ii  libvorbisfile3 1.1.0-1   The Vorbis General Audio Compressi
ii  libx11-6   4.3.0.dfsg.1-14sarge1 X Window System protocol client li
ii  libxcursor11.1.3-1   X cursor management library
ii  libxext6   4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte
ii  libxft22.1.7-1   FreeType-based font drawing librar
ii  libxrandr2 4.3.0.dfsg.1-14sarge1 X Window System Resize, Rotate and
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  libxt6 4.3.0.dfsg.1-14sarge1 X Toolkit Intrinsics
ii  mkisofs4:2.01+01a01-2Creates ISO-9660 CD-ROM filesystem
ii  xlibs  4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu
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#337423: Patch location

2005-11-24 Thread Mark Purcell
For those who are looking for the upstream patch workaround. 

You need to apply to /usr/include/kde/kresources/manager.h, then you can build 
kopete-svn and others...

It is available here:

http://websvn.kde.org/branches/KDE/3.5/kdelibs/kresources/manager.h?rev=472457&r1=465272&r2=472457

--- branches/KDE/3.5/kdelibs/kresources/manager.h   2005/09/29 09:47:40 
465272
+++ branches/KDE/3.5/kdelibs/kresources/manager.h   2005/10/20 20:02:38 
472457
@@ -335,7 +335,7 @@
 ++it ) {
 QString desc = mFactory->typeName( *it );
 if ( !mFactory->typeDescription( *it ).isEmpty() )
-  desc += " (" + mFactory->typeDescription( *it ) + ")";
+  desc += QString::fromLatin1(" (") + 
mFactory->typeDescription( *it ) + QString::fromLatin1(")");
 
 typeDescs.append( desc );
   }


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



Bug#340654: vlc in testing would be nice

2005-11-24 Thread James Clark

Package: vlc
Severity: wishlist

Like the subject says, it would be nice if it were available in testing.


Here here!

Cheers,
James.



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



Bug#339250: libstdc++ allocator change

2005-11-24 Thread Matthias Klose
Adeodato =?utf-8?B?U2ltw7M=?= writes:
> * Matthias Klose [Thu, 24 Nov 2005 22:29:15 +0100]:
> 
> > right, that approach looks better, although currently you have to
> > rename both the package.
> 
>   I discussed it with vorlon, and we were going with the "make libpcre3
>   conflict with everything that used libpcrecpp.so, which we expect will
>   be very little" option. Do you see some sort of problem with this
>   approach? (If I'm not mistaken, has been used for at least one package
>   in the previous ABI transition).

well, I disagree, because that leaves out any 3rd party package, which
you don't know. and vorlon did agree on that? *cough*

let's take the ways we did go incompletely for libgmp3:

- split libpcre3 into libpcre3c2a and libpcre3++c2a
- libpcre3c2a depends on libpcre3++c2a
- libpcre3c2a's shlibs file reads:

libpcre 3 libpcre3c2a | libpcre3 (>= 4.5)
libpcreposix 3 libpcre3c2a | libpcre3 (>= 4.5)

This way, packages depending on the renamed package can move to
testing before pcre3 moves to testing.

the shlibs file can be reduced once the new pcre3 is in testing.

  Matthias




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



Bug#340659: sed: s/(.{30000})/\1/ -- segmentation fault

2005-11-24 Thread Jakub Wilk

Package: sed
Version: 4.1.2-8
Severity: normal

$ sed -re 's/(.{3})/\1/' /dev/null
Segmentation fault (core dumped)

-- System Information:
Debian Release: testing/unstable
 APT prefers testing
 APT policy: (900, 'testing'), (600, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.14
Locale: LANG=C, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

Versions of packages sed depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an

sed recommends no packages.

-- no debconf information

--
Jakub Wilk


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



Bug#327728: chkrootkit: False positive with reaim

2005-11-24 Thread lantz moore
Nathan Summers <[EMAIL PROTECTED]> writes:

> With reaim version 0.8-3, chkrootkit reports that the bindshell rootkit
> is present with infected port 5190.  This port is used by the reaim AIM
> proxy.

thanks for the report.

bindshell listens on a lot of ports.  these ports are also used by other
legitimate programs.  chkrootkit's detection algorithm cannot determine
the difference between a legitimate program and bindshell.

i've added a note to README.FALSE-POSITIVES about reaim.

-l


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



Bug#340658: libsmbclient: krb4 removed from Sid. Package uninstallable

2005-11-24 Thread Jose Carlos Garcia Sogo
Package: libsmbclient
Version: 3.0.20b-2
Severity: grave
Justification: renders package unusable

  Hi,

  Since krb4 removal from Sid, libsmbclient which depends on
  libroken16-kerberos4kth is uninstallable. In turn, this makes GNOME
  uninstallable in Sid, as gnomevfs-common depends on libsmbclient.

  Thanks


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages libsmbclient depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libcomerr21.38-2 common error description library
ii  libkrb53  1.3.6-5MIT Kerberos runtime libraries
ii  libldap2  2.1.30-12  OpenLDAP libraries
ii  libroken16-kerberos4kth   1.2.2-11.3 Roken Libraries for Kerberos4 From

libsmbclient recommends no packages.

-- no debconf information


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



Bug#340657: /usr/src/linux information in Sarge release notes

2005-11-24 Thread John Talbut

Package: Release Notes for Debian GNU/Linux 3.1 (`sarge')

The following information/patch is desirable under  5.2 Upgrading to a 
2.6 kernel:


If for any reason you are using software that refers to /usr/src/linux, 
note that is likely to contain out of date files or links to the 
previous version of the kernel after upgrading.  Normally Debian 
packages do not use /usr/src/linux.  If it is still needed you can 
probably delete the old folder (or rename it to, e.g. /usr/src/oldlinux 
just for safety) and then replace it with a symlink to the new kernel 
source, e.g.


cd /usr/src/
ln -s kernel-source-2.6.8 linux




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



Bug#340656: grub: Source package does not clean up

2005-11-24 Thread Dominic Hargreaves
Package: grub
Version: 0.95+cvs20040624-17
Severity: normal

Building grub 0.95+cvs20040624-19, I find that the source package I
create contains generated files (eg Makefile, config.h, config.status,
the man pages in docs/). They should be properly cleaned.

Also, shouldn't the package be distributed with orig.tar.gz and a
diff.gz?


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



Bug#340529: libgnome2.0-cil: Uninstallable in a clean chroot

2005-11-24 Thread Jose Carlos Garcia Sogo
reassign 340520 libroken16-kerberos4kth
severity 340520 grave
merge 340520 340208
thanks

El mié, 23-11-2005 a las 23:49 +0100, Jose Carlos Garcia Sogo escribió:
> Package: libgnome2.0-cil
> Version: 2.4.0-1
> Severity: important
> 
>  This package is currently uninstallable in a clean chroot (pbuilder):
[...]
> The following packages have unmet dependencies:
>   libgnome2.0-cil: Depends: libbonoboui2-0 (>= 2.5.4) but it is not
> going to be installed
>Depends: libgnome2-0 (>= 2.8.0) but it is not going
> to be installed
>Depends: libgnomeui-0 (>= 2.8.0) but it is not going
> to be installed
>Depends: libgnomevfs2-0 (>= 2.10.0-0) but it is not
> going to be installed
>Depends: libpanel-applet2-0 (>= 2.10.2) but it is not
> going to be installed
>Depends: libgtkhtml3.6-18 (>= 3.6.2) but it is not
> going to be installed
> E: Broken packages
> E: Could not satisfy build-dependency.
> E: pbuilder-satisfydepends failed.
>  Cheers,


  And following libgnomevfs2-0 dependency chain, it takes us to
libsmbclient, which in turn depends on libroken16-kerberos4kth package.
This package still depends on libdb4.1, which was removed from unstable
lately.

  Sorry for the noise.

-- 
Jose Carlos Garcia Sogo
   [EMAIL PROTECTED]


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#334613: failed install prevents building of another package that has tetex-bin as build-depends

2005-11-24 Thread Martin-Éric Racine
Package: tetex-bin
Version: 3.0-10.1
Followup-For: Bug #334613

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Failure to install tetex-bin breaks the build-depend requirements of package 
"planner" on hppa. 
http://buildd.debian.org/fetch.php?&pkg=planner&ver=0.13-3&arch=hppa&stamp=1132846224&file=log&as=raw
Below is the stderr output:

Setting up tetex-bin (3.0-10.1) ...

Creating config file /etc/texmf/fmt.d/01tetex.cnf with new version
Running fmtutil-sys. This may take some time. ...
warning: Could not open char translation file `cp227.tcx'.
warning: Could not open char translation file `cp227.tcx'.
Error: `omega -ini  -jobname=lambda -progname=lambda lambda.ini' failed
Error: `aleph -ini  -jobname=lamed -progname=lamed *lambda.ini' failed
warning: Could not open char translation file `cp227.tcx'.
Error: `pdfetex -ini  -jobname=amstex -progname=amstex 
-translate-file=cp227.tcx *amstex.ini' failed

###
fmtutil-sys: Error! Not all formats have been built successfully.
Visit the log files in directory
  /var/lib/texmf/web2c
for details.
###

This is a summary of all `failed' messages and warnings:
`omega -ini  -jobname=lambda -progname=lambda lambda.ini' failed
`aleph -ini  -jobname=lamed -progname=lamed *lambda.ini' failed
`pdfetex -ini  -jobname=amstex -progname=amstex -translate-file=cp227.tcx 
*amstex.ini' failed

fmtutil failed. Output has been stored in
/tmp/tetex.postinst.XXxxXcHb
Please include this file if you report a bug.
dpkg: error processing tetex-bin (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of tetex-extra:
 tetex-extra depends on tetex-bin (>= 2.99); however:
  Package tetex-bin is not configured yet.
dpkg: error processing tetex-extra (--configure):
 dependency problems - leaving unconfigured

- -- System Information:
Debian Release: testing/unstable
Architecture: hppa

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

iD8DBQFDhjd3eXr56x4Muc0RAk6DAJ0XBEaJmZknRtie4tCq0yIsWe4o9wCZAZw0
MC4CcT85hmwUwkEPJAo8k+I=
=91Tf
-END PGP SIGNATURE-


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



Bug#309387: chkrootkit: False postive for Perl 5.8.0 File/Spec/.packlist

2005-11-24 Thread lantz moore
root <[EMAIL PROTECTED]> writes:

> Package: chkrootkit
> Version: 0.45-1
> Severity: normal
>
>
> The following false postive finding was found. Perhaps it should
> be excluded?
>
> /usr/lib/perl/5.8.0/auto/CPAN/.packlist 
> /usr/lib/perl/5.8.0/auto/Digest/MD5/.packlist 
> /usr/lib/perl/5.8.0/auto/File/Spec/.packlist

thanks for the report.

see http://www.chkrootkit.org/faq/#8 for an explanation of why upstream
won't fix this particular "bug."

i've added a note about .packlist files to README.FALSE-POSITIVES

-l


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



Bug#309386: False positive if epmd (from erlang-base) is running

2005-11-24 Thread Peter Thomassen
Am Donnerstag, 24. November 2005 22:50 schrieb lantz moore:
> bindshell listens on port 4369.  chkrootkit bases it's checks simply on
> whether the port is being listened on.  this is the design that upstream
> prefers, so this will not be fixed (any time soon).

Is there any possibility, e.g. a config option, to exclude particular ports 
from the check?

Thanks,
-- 
  Peter Thomassen • Steigerwaldstr. 4 • 97076 Würzburg • Germany
 http://www.peter-thomassen.de/ • [EMAIL PROTECTED]
   fon +49-931-2705351 • mobile +49-160-6789161


pgp7UHBjm3JBk.pgp
Description: PGP signature


Bug#309386: False positive if epmd (from erlang-base) is running

2005-11-24 Thread lantz moore
Peter Thomassen <[EMAIL PROTECTED]> writes:

> Package: chkrootkit
> Version: 0.45-1
>
> If the Erlang portmapper daemon (epmd) included in erlang-base is running, 
> chkrootkit reports:
>
> | Checking `bindshell'... INFECTED (PORTS:  4369)
>
> This is wrong, please fix this.
>
> For reference, using erlang-base 1:10.b.1a-2.2 from unstable, epmd is located 
> at /usr/lib/erlang/erts-5.4.2.1/bin/epmd.

thanks for the report.

bindshell listens on port 4369.  chkrootkit bases it's checks simply on
whether the port is being listened on.  this is the design that upstream
prefers, so this will not be fixed (any time soon).

i've listed erlang-base in the README.FALSE-POSITIVES file.

-l


pgpjAIza6q5xF.pgp
Description: PGP signature


Bug#340655: doc-debian: FAQ: why choose Debian: refer to DFSG, # packages and ports

2005-11-24 Thread Joost van Baal

Package: doc-debian
Version: today's CVS
Severity: wishlist
Tags: patch

Hi,

In the reasons to choose Debian in favor of other GNU/Linux
distributions in the Debian GNU/Linux FAQ, the Debian Social Contract
nor the DFSG are mentioned.  Neither is the number of packages shipped
with Debian, nor the number of supported architectures mentions.  I
believe these are important differences, making Debian unique (and
attractive) among different distributions.

Furthermore, I don't think it's any longer true that "Debian is the only
Linux distribution that is being developed cooperatively by many
individuals through the Internet".  I've added the word "major"; that
might describe the situation better now that there's e.g. Gentoo.

Attached patch implements these ideas.

Thanks, Bye,

Joost

--- basic_defs.sgml.orig2005-10-12 10:15:54.923039561 +0200
+++ basic_defs.sgml.why-debian  2005-11-24 22:42:40.623996534 +0100
@@ -111,6 +111,15 @@
 These key features distinguish Debian from other Linux distributions:
 
 
+
+As stated in the http://www.debian.org/social_contract";>Debian
+  Social Contract, Debian will remain 100% free.  Debian is very strict
+  about shipping truly free software.  The guidelines used to determine if a 
work
+  is "free" are provided in http://www.debian.org/social_contract#guidelines";>The Debian Free 
Software
+  Guidelines.
+
 The entire system, or any individual component of it, can be
   upgraded in place without reformatting, without losing custom
@@ -123,7 +132,7 @@
 
 Whereas other Linux distributions are developed by individuals,
-  small, closed groups, or commercial vendors, Debian is the only Linux
+  small, closed groups, or commercial vendors, Debian is the only major Linux
   distribution that is being developed cooperatively by many individuals
   through the Internet, in the same spirit as Linux and other free software.
 
@@ -135,6 +144,12 @@
   providing user support.  See also additional information on how to become
   a contributor in .
 
+Debian comes with http://packages.debian.org/stable/";>more
+  than 15,000 packages and runs on http://www.debian.org/ports/";>11
+  architectures.  This is far more than is available for any other
+  GNU/Linux distribution.
+
 The geographical dispersion of the Debian developers required
   sophisticated tools and quick communication of bugs and bug-fixes to


signature.asc
Description: Digital signature


Bug#340654: vlc in testing would be nice

2005-11-24 Thread Vincent Lönngren
Package: vlc
Severity: wishlist

Like the subject says, it would be nice if it were available in testing.

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


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



Bug#340649: [pkg-fetchmail-maint] Bug#340649: Problem installing package fetchmail (stable)

2005-11-24 Thread Loic Minier
Hi,

On Thu, Nov 24, 2005, Schadler Johann wrote:
> debsrv:/# apt-get install fetchmail
> Fehl http://security.debian.org sarge/updates/main fetchmail 6.2.5-12sarge1

 Please run "apt-get update" and try again.

-- 
Loïc Minier <[EMAIL PROTECTED]>
"What do we want? BRAINS!When do we want it? BRAINS!"



Bug#340390: Installation report: no disks detected

2005-11-24 Thread Ross Boylan
Increasingly I suspect the motherboard is the problem: it's too new.
Intel is now supporting Linux supposedly
(http://www.intel.com/cd/channel/reseller/asmo-na/eng/187871.htm).  
I'm not sure whether they are pushing their stuff into the main kernel
development.

The motherboard has been a challenge for different flavors of
Windows.  Intel says it won't work with Win98 period, and with Windows
2000 lots of important things (e.g., LANs) didn't work and weren't
recognized until I popped in Intel's CD (incidentally, it needs SP4 of
Win2K to install the drivers).

However, none of the added drivers seem to concern disks.  The CD
caused recognition of USB, LAN, and audio (all onboard).  The linux
downloads for this board seem to all concern the LAN and audio.

Although Debian is listed on the link given at the top, using the link
requires an account.

The publicly available drivers that I found were for RedHat and Suse
only.  I haven't tried using them.  The license agreement required for
download might be a reason this stuff wouldn't go into the main
kernel.  That would certainly be a nuisance if Intel kept their
drivers separate.

I'll contact my vendor when they re-open for business next week.



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



Bug#339920: reproduce bug with highlight-regexp

2005-11-24 Thread Bill Wohler
Romain Francoise <[EMAIL PROTECTED]> wrote:

> Jay,
> 
> Thank you very much for your help.
> 
> Jay Berkenbilt <[EMAIL PROTECTED]> writes:
> 
> > I've finally found a very short and easy recipe to reliably reproduce
> > this bug.  It took a lot of widdling down, but I identified the
> > culprit as highlight-regexp.

Confirmed here.

> I've now identified the change that introduced the bug, I'll ask its
> author why the change was done, and if we can fix the problem in a
> better way.  Expect a fix shortly.

Thanks much to the both of you.

-- 
Bill Wohler <[EMAIL PROTECTED]>  http://www.newt.com/wohler/  GnuPG ID:610BD9AD
Maintainer of comp.mail.mh FAQ and MH-E. Vote Libertarian!
If you're passed on the right, you're in the wrong lane.


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



Bug#339920: reproduce bug with highlight-regexp

2005-11-24 Thread Romain Francoise
I've reverted the affected change as a Debian-specific patch in
emacs-snapshot 20051124-1.  A complete fix has just been installed in
CVS but I'm giving it until the next snapshot to mature a bit, if need
be.

-- 
  ,''`.
 : :' :Romain Francoise <[EMAIL PROTECTED]>
 `. `' http://people.debian.org/~rfrancoise/
   `-


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



Bug#339687: Patch

2005-11-24 Thread Dominic Hargreaves
The attached patch installs the documentation correctly.

Cheers,

Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)
--- rules.orig  2005-11-24 21:36:55.0 +
+++ rules   2005-11-24 21:31:57.0 +
@@ -191,7 +191,8 @@
 
# Add here commands to install the indep part of the package into
# debian/-doc.
-   #INSTALLDOC#
+   install -m 644 docs/grub/* 
$(CURDIR)/debian/grub-doc/usr/share/doc/grub-doc/html/
+   install -m 644 docs/multiboot/* 
$(CURDIR)/debian/grub-doc/usr/share/doc/grub-doc/html/
 
# grub-disk
mkdir -p $(CURDIR)/debian/tmp/root/boot/grub


Bug#339250: libstdc++ allocator change

2005-11-24 Thread Adeodato Simó
* Mark Baker [Thu, 24 Nov 2005 21:32:44 +]:

> So I should put the C++ library in a new package, and no longer include 
> it in the libpcre3 package. What should I do about dependencies to get a 
> smooth upgrade path? Obviously people installing new versions of things 
> that use the C++ library will get the new package; until they do isn't 
> there a danger that they will install the new libpcre3 and things will 
> stop working?

  Yes, see my other message: you make libpcre3 conflict with does
  packages, as in Conflicts: package (<= current-version-in-sid). I
  believe there'll be ver few.

  So you have to examine all the reverse dependencies, and check which
  of them actually link to libpcrecpp.so. Let me know if you'd like
  assistance with this.

> >  Mark, please let us know if you'll be able to fix this bug yourself in
> >  the next days, so that other libraries depending on libpcre3 can
> >  transition themselves.
> I should have some time at the weekend.

  Nice, thanks.

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
Listening to: Vitalic - Trahison



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



Bug#339250: libstdc++ allocator change

2005-11-24 Thread Adeodato Simó
* Matthias Klose [Thu, 24 Nov 2005 22:29:15 +0100]:

> right, that approach looks better, although currently you have to
> rename both the package.

  I discussed it with vorlon, and we were going with the "make libpcre3
  conflict with everything that used libpcrecpp.so, which we expect will
  be very little" option. Do you see some sort of problem with this
  approach? (If I'm not mistaken, has been used for at least one package
  in the previous ABI transition).

  Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
  Listening to: Vitalic - Newman



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



Bug#339250: libstdc++ allocator change

2005-11-24 Thread Mark Baker

Adeodato Simó wrote:

> please find a patch at http://people.ubuntu.com/patches/c2a-pcre3.diff
  
  Mark, please don't use that patch. The libpcre3 package ships both a C

  library and a C++ library, and only the C++ one is affected by this
  libstdc++ change.

That's why I haven't done anything about this yet.

  Given the high number of libpcre3 reverse
  dependencies (116),

Very few of which use the C++ library, of course.

 it's very unadvisable to rename the whole package.
  The right course of action would be to ship the C++ library in a
  separate package, so that in can be independently renamed in further
  transitions.
  
So I should put the C++ library in a new package, and no longer include 
it in the libpcre3 package. What should I do about dependencies to get a 
smooth upgrade path? Obviously people installing new versions of things 
that use the C++ library will get the new package; until they do isn't 
there a danger that they will install the new libpcre3 and things will 
stop working?

  Mark, please let us know if you'll be able to fix this bug yourself in
  the next days, so that other libraries depending on libpcre3 can
  transition themselves.

I should have some time at the weekend.



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



Bug#339250: libstdc++ allocator change

2005-11-24 Thread Matthias Klose
Adeodato =?utf-8?B?U2ltw7M=?= writes:
> # doko, see explanation below
> tag 339250 - patch
> thanks
> 
> * Matthias Klose [Wed, 23 Nov 2005 21:46:39 +0100]:
> 
> > tags 339250 + patch
> > thanks
> 
> > please find a patch at http://people.ubuntu.com/patches/c2a-pcre3.diff
> 
>   Mark, please don't use that patch. The libpcre3 package ships both a C
>   library and a C++ library, and only the C++ one is affected by this
>   libstdc++ change. Given the high number of libpcre3 reverse
>   dependencies (116), it's very unadvisable to rename the whole package.
>   The right course of action would be to ship the C++ library in a
>   separate package, so that in can be independently renamed in further
>   transitions.

right, that approach looks better, although currently you have to
rename both the package.

  Matthias


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



Bug#339250: libstdc++ allocator change

2005-11-24 Thread Adeodato Simó
# doko, see explanation below
tag 339250 - patch
thanks

* Matthias Klose [Wed, 23 Nov 2005 21:46:39 +0100]:

> tags 339250 + patch
> thanks

> please find a patch at http://people.ubuntu.com/patches/c2a-pcre3.diff

  Mark, please don't use that patch. The libpcre3 package ships both a C
  library and a C++ library, and only the C++ one is affected by this
  libstdc++ change. Given the high number of libpcre3 reverse
  dependencies (116), it's very unadvisable to rename the whole package.
  The right course of action would be to ship the C++ library in a
  separate package, so that in can be independently renamed in further
  transitions.

  Mark, please let us know if you'll be able to fix this bug yourself in
  the next days, so that other libraries depending on libpcre3 can
  transition themselves. If not, I'll prepare a patch an upload unless
  you indicate otherwise.

  Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
Listening to: Vitalic - Wooo



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



Bug#338962: papercut: Posting message using phpbb_mysql backend fails

2005-11-24 Thread Jérémy Bobbio
tags 338962 + pending
thanks

On Monday 14 November 2005 04:06, Jonas Smedegaard wrote:
> I am testing papbercut with the phpbb_mysql backend.
>
> reading messages works. Authentication (when patch in separately
> filed bugreport is applied) works. But sending messages - either
> creating a new message or responding to an existing one - fails.

This will be fixed in next papercut upload.

In the meantime, you can apply the attached patch.

Regards,
-- 
Jérémy
Thu Nov 24 21:49:50 CET 2005  [EMAIL PROTECTED]
  * Fix insert_id() usage in phpBB and phpNuke storage
  
  Closes: #338962
diff -rN -u old-papercut/storage/phpbb_mysql.py new-papercut/storage/phpbb_mysql.py
--- old-papercut/storage/phpbb_mysql.py	2005-11-24 22:22:07.580181272 +0100
+++ new-papercut/storage/phpbb_mysql.py	2005-11-24 21:49:40.0 +0100
@@ -677,7 +677,7 @@
 0
 )""" % (prefix, forum_id, self.quote_string(subject), poster_id)
 self.cursor.execute(stmt)
-thread_id = self.cursor.insert_id()
+thread_id = self.conn.insert_id()
 stmt = """
 INSERT INTO
 %sposts
@@ -705,7 +705,7 @@
 0
 )""" % (prefix, thread_id, forum_id, poster_id, self.encode_ip(ip_address), post_username)
 self.cursor.execute(stmt)
-new_id = self.cursor.insert_id()
+new_id = self.conn.insert_id()
 if not new_id:
 return None
 else:
diff -rN -u old-papercut/storage/phpnuke_phpbb_mysql.py new-papercut/storage/phpnuke_phpbb_mysql.py
--- old-papercut/storage/phpnuke_phpbb_mysql.py	2005-11-24 22:22:07.588180056 +0100
+++ new-papercut/storage/phpnuke_phpbb_mysql.py	2005-11-24 21:49:47.0 +0100
@@ -657,7 +657,7 @@
 0
 )""" % (prefix, forum_id, self.quote_string(subject), poster_id)
 self.cursor.execute(stmt)
-thread_id = self.cursor.insert_id()
+thread_id = self.conn.insert_id()
 stmt = """
 INSERT INTO
 %sposts
@@ -685,7 +685,7 @@
 0
 )""" % (prefix, thread_id, forum_id, poster_id, self.encode_ip(ip_address), post_username)
 self.cursor.execute(stmt)
-new_id = self.cursor.insert_id()
+new_id = self.conn.insert_id()
 if not new_id:
 return None
 else:



pgpCPd1jRh8iQ.pgp
Description: PGP signature


Bug#338958: papercut: auth_backend does not work

2005-11-24 Thread Jérémy Bobbio
tags 338958 + pending
thanks

On Monday 14 November 2005 03:58, Jonas Smedegaard wrote:
> Enabling auth_backend causes papercut to fail startup.
>
> The attached patch fixes this.

Patch applied.  It will be included in the next papercut upload.

Thanks,
-- 
Jérémy


pgp0DqQzYF5eF.pgp
Description: PGP signature


Bug#340652: webcalendar: Wrong dependencies in sarge

2005-11-24 Thread Tobias Hafner
Package: webcalendar
Version: 0.9.45-4sarge2
Severity: normal

I have installed apache2 with libapache2-mod-suphp

,but Webcalendar requires libapache2-mod-php4. So apt suggests to
install apache-common php4 and libapache-mod-php4.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.14
Locale: LANG=de_CH, LC_CTYPE=de_CH (charmap=ISO-8859-1)

Versions of packages webcalendar depends on:
ii  apache2-mpm-worker [httpd]   2.0.54-5high speed threaded model for Apac
ii  debconf [debconf-2.0]1.4.30.13   Debian configuration management sy
ii  php4 4.5 

Bug#306784: chkrootkit mindi false-positive

2005-11-24 Thread lantz moore
a design feature of chkrootkit is that it marks any hidden files under
/usr/lib as suspicious.

see http://www.chkrootkit.org/faq/#8 for an explanation why upstream will
not ignore these files.

i'll add a note to /usr/share/doc/chkrootkit/README.FALSE-POSITIVES
listing mindi as having hidden files.

thanks for the report.

-l


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



Bug#340653: wordpress: Admin interface redirects to incorrect subdomain

2005-11-24 Thread Christer Mjellem Strand
Package: wordpress
Version: 1.5.2-2
Severity: normal

I don't know for sure whether this is an upstream bug or simply has to do with 
Debian's way of handling multiple blogs within the same domain, but with 
different subdomains.

Picture the following setup in /etc/wordpress:

config-foo.debian.org.php
config-bar.debian.org.php

If you go to http://foo.debian.org/wp-admin (which is the URL mentioned in the 
initial mail with admin pw), it will redirect to the first alphabetical 
subdomain that has a config file in /etc/wordpress, in this case bar.debian.org
http://foo.debian.org/wp-admin will therefore redirect you to 
http://bar.debian.org/wp-login.php?redirect_to=%2Fwp-admin%2F


  - C

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

Versions of packages wordpress depends on:
ii  apache [httpd]1.3.34-1   versatile, high-performance HTTP s
ii  mysql-client-5.0 [virtual-mys 5.0.13rc-1 mysql database client binaries
ii  php5  5.0.5-3server-side, HTML-embedded scripti
ii  php5-mysql5.0.5-3MySQL module for php5

wordpress recommends no packages.

-- no debconf information


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



Bug#340651: gij-4.0: Dies with sigseg

2005-11-24 Thread Jörg Sommer
Package: gij-4.0
Version: 4.0.2-4
Severity: normal

Hi,

$ gij-4.0 test
Segmentation fault
$ cat test.java 
public class test
{
public test()
{
test t = new test();
}

public static void main(String argv[])
{
new test();
}
}

Bye, Jörg.

-- System Information:
Debian Release: unstable/experimental
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages gij-4.0 depends on:
ii  gcc-4.0-base  4.0.2-4The GNU Compiler Collection (base 
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libgcj6   4.0.2-4Java runtime library for use with 
ii  zlib1g1:1.2.3-6  compression library - runtime

gij-4.0 recommends no packages.

-- no debconf information


test.class
Description: Binary data


pgpZGpFjxqTlG.pgp
Description: PGP signature


Bug#334100:

2005-11-24 Thread B. Zhang
I installed libglib-cil as a workaround.

Best regards,
Bin


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



Bug#340650: newt: [INTL:bn] Bengali translation

2005-11-24 Thread Christian Perrier
Package: newt
Severity: wishlist
Tags: patch l10n

Please find attached the Bengali translation of newt.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
# Bangla translation of newt_newt.pot.
# Copyright (C) 2005, Debian Foundation.
# This file is distributed under the same license as the Newt_Newt package. 
# Progga <[EMAIL PROTECTED]>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: Newt_Newt HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-11-02 09:15-0700\n"
"PO-Revision-Date: 2005-11-20 19:00+0600\n"
"Last-Translator: Progga <[EMAIL PROTECTED]>\n"
"Language-Team: Bangla <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: dialogboxes.c:43 dialogboxes.c:48 dialogboxes.c:493
msgid "Ok"
msgstr "ঠিক আছে"

#: dialogboxes.c:51
msgid "Cancel"
msgstr "বাতিল"

#: dialogboxes.c:498
msgid "Yes"
msgstr "হ্যাঁ"

#: dialogboxes.c:500
msgid "No"
msgstr "না"


Bug#340649: Problem installing package fetchmail (stable)

2005-11-24 Thread Schadler Johann
Package: fetchmail
Version: 6.2.5-12sarge3
 
Package couldn't be installed because not found - see stdout below:
 
debsrv:/# apt-get install fetchmail
Paketlisten werden gelesen... Fertig
Abhängigkeitsbaum wird aufgebaut... Fertig
Vorgeschlagene Pakete:
  fetchmailconf exim4 mail-transport-agent resolvconf
Empfohlene Pakete:
  ca-certificates
Die folgenden NEUEN Pakete werden installiert:
  fetchmail
0 aktualisiert, 1 neu installiert, 0 zu entfernen und 22 nicht aktualisiert.
Es müssen 548kB Archive geholt werden.
Nach dem Auspacken werden 1634kB Plattenplatz zusätzlich benutzt.
Fehl http://security.debian.org sarge/updates/main fetchmail 6.2.5-12sarge1
  404 Not Found [IP: 128.101.80.133 80]
Konnte
http://security.debian.org/pool/updates/main/f/fetchmail/fetchmail_6.2.5-12s
arge1_i386.deb nicht holen  404 Not Found [IP: 128.101.80.133 80]
E: Konnte einige Archive nicht herunterladen, vielleicht »apt-get update«
oder mit »--fix-missing« probieren?
debsrv:/#





Bug#334100: beagle: same bug here on powerpc

2005-11-24 Thread Bin Zhang
Package: beagle
Version: 0.1.2-1
Followup-For: Bug #334100



Error: Unhandled exception thrown.  Exiting immediately.
Error: System.DllNotFoundException: glibsharpglue
in (wrapper managed-to-native)
Evolution.GLibUtil:gtksharp_slist_get_data (intptr)
in <0x0009c> Evolution.CalUtil:GLibSListToCalCompArray (IntPtr slist,
Evolution.Cal ecal)
in <0x00034> Evolution.CalUtil:CalCompFromICal (IntPtr ical_objects,
Evolution.Cal ecal)
in <0x00084>
Beagle.Daemon.EvolutionDataServerQueryable.CalContainer:OnObjectsAdded
(System.Object o, Evolution.ObjectsAddedArgs args)
in (wrapper delegate-invoke)
System.MulticastDelegate:invoke_void_object_ObjectsAddedArgs
(object,Evolution.ObjectsAddedArgs)
in <0x001c0> Evolution.CalView:ObjectsAddedSignalCallback (IntPtr arg0,
IntPtr arg1, IntPtr gch)
in (wrapper native-to-managed)
Evolution.CalView:ObjectsAddedSignalCallback (intptr,intptr,intptr)
in <0x0> 
in (wrapper managed-to-native) Gtk.Application:gtk_main ()
in <0xc> Gtk.Application:Run ()
in <0x0070c> Beagle.Daemon.BeagleDaemon:DoMain (System.String[] args)
in <0x00024> Beagle.Daemon.BeagleDaemon:Main (System.String[] args)
Warn: Unable to set IO-priority for process to idle

** (beagled:5253): WARNING **: FIXME: wait for completion unimplemented


Best regards,
Bin


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-we18-20051115
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages beagle depends on:
ii  dbus-1-utils 0.23.4-7simple interprocess messaging syst
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libevolution-cil 0.10.2-1CLI bindings for Evolution
ii  libexif120.6.12-2library to parse EXIF files
ii  libgalago-cil0.3.2-3 CLI bindings for libgalago
ii  libgalago1   0.3.3-2 Galago presence library
ii  libgcc1  1:4.0.2-4   GCC support library
ii  libgconf2.0-cil  2.4.0-1 CLI binding for GConf 2.6
ii  libgecko2.0-cil  0.11-1  CLI binding for the GtkMozEmbed li
ii  libglade2.0-cil  2.3.92-2CLI binding for the Glade librarie
ii  libglib2.0-0 2.8.4-2 The GLib library of C routines
ii  libglib2.0-cil   2.3.92-2CLI binding for the GLib utility l
ii  libgmime2.1-cil  2.1.17-2CLI binding for the MIME library, 
ii  libgnome2.0-cil  2.3.92-2CLI binding for GNOME 2.0, unstabl
ii  libgnomeui-0 2.10.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.10.1-5The GNOME virtual file-system libr
ii  libgtk2.0-0  2.6.10-2The GTK+ graphical user interface 
ii  libgtk2.0-cil2.3.92-2CLI binding for the Gtk+ toolkit 2
ii  libice6  6.8.2.dfsg.1-10 Inter-Client Exchange library
ii  libmono0 1.1.10-1libraries for the Mono JIT
ii  libpango1.0-01.8.2-3 Layout and rendering of internatio
ii  libsm6   6.8.2.dfsg.1-10 X Window System Session Management
ii  libsqlite0   2.8.16-1SQLite shared library
ii  libstdc++6   4.0.2-4 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxss1  6.8.2.dfsg.1-10 X Screen Saver client-side library
ii  mono-classlib-1.01.1.10-1Mono class library (1.0)
ii  mono-jit 1.1.10-1fast CLI (.NET) JIT compiler for M
ii  xlibs6.8.2.dfsg.1-10 X Window System client libraries m

beagle recommends no packages.

-- no debconf information


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



Bug#338959: papercut: NNTPS does not work

2005-11-24 Thread Jérémy Bobbio
tags 338959 + pending
thanks

On Monday 14 November 2005 04:01, Jonas Smedegaard wrote:
> Config file mentions simply changing the port number for NNTPS.
>
> This does not work. It seems from the code that SSL-encapsulation is
> not supported at all (so an SSL-wrapper is required).

It might be possible to add support for NNTPS using something like what 
is described on this page :
  http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/442473

In the meantime, I have removed the confusing notice from 
papercut_cfg.py.

Thanks,
-- 
Jérémy


pgpWOJS2iL2KU.pgp
Description: PGP signature


Bug#340648: mozilla-thunderbird: "Reply only to sender" doesn't appears in menus

2005-11-24 Thread Jordi Funollet
Package: mozilla-thunderbird
Version: 1.0.7-3
Severity: wishlist


The option "Reply only to sender" appears in contextual menus but not on
normal menus. It's not grave but misleading: users think Thunderbird
doesn't has this feature and it has a cost in support effort. 


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

Versions of packages mozilla-thunderbird depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.7-2.4  FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libglib2.0-0  2.8.3-1The GLib library of C routines
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.8.2-3Layout and rendering of internatio
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libstdc++64.0.2-2The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxp66.8.2.dfsg.1-7 X Window System printing extension
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  libxt66.8.2.dfsg.1-7 X Toolkit Intrinsics
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages mozilla-thunderbird recommends:
ii  myspell-ca [myspell-di 0.4-6 Catalan dictionary for myspell
ii  myspell-en-gb [myspell 20050823-1English (GB) dictionary for myspel
ii  myspell-en-us [myspell 20050823-1English (US) dictionary for myspel
ii  xprint 1:0.1.0.alpha1-12 Xprint - the X11 print system (bin

-- debconf information:
* mozilla-thunderbird/browser: Debian


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



Bug#335488: [Pkg-zope-developers] Re: Bug#335488: Removal request for old zope packages

2005-11-24 Thread Fabio Tranchitella
On gio, 24 nov 2005, Jeroen van Wolffelaar wrote:
> I mailed you guys now because I think that by that time, it is no longer
> possible to consider doing anything for etch, and that changes like
> discontinuing a branch of software in Debian take time.
> 
> Anyway, thank you all for considering this, I'll now shut up, and let
> the people who are doing all the work on zope decide about this.

Please, do not shut up.. I'm really interested in your arguments and I
suppose others too. As far as I'm concerned, the main zope products already
depend on zope2.8 | zope2.7 (and I'm thinking about plone and cps), so 
removing the latter one shouldn't be too hard.

I completely agree that we'll have to remove zope2.7, but I would prefer
to leave it around untill the removal is really needed, mainly because there
are a lot of people out using zope2.7 within testing (or even unstable)
because zope products life-cycle is faster than debian stable's one.
Plone will not depend anymore on zope2.7 in a near future (with the next
release, the development team will start using Five, which is shipped with
zope2.8 only), and I think that could be the right moment to drop zope2.7
support. Other opinions?

Thanks for your suggestion,

-- 
Fabio Tranchitella http://www.kobold.it
Studio Tranchitella Assoc. Professionale   http://www.tranchitella.it
_
1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564


signature.asc
Description: Digital signature


Bug#322889: [crt-users] [ Announce - chkrootkit 0.46 is out ]

2005-11-24 Thread lantz moore
this bug http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=322889 mentions
a possible false positive between bitlbee and LPD.

my assumption is that LPD listens on any of the following ports:
666
666[0-9]

and, therefore the regex is correct.  if not, maybe the regex should be
tightened up?

thanks.

-l


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



Bug#340647: quanta: Crash when closing an editor tab

2005-11-24 Thread Ferenczi Viktor
Package: quanta
Version: 4:3.4.2-1.1
Severity: important


Quanta occasionally crashes with SIGSEGV when closing an editor TAB.
The project not saved, configuration lost, etc... Traceback:

(no debugging symbols found)
Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1".
(no debugging symbols found)
`system-supplied DSO at 0xe000' has disappeared; keeping its symbols.
(no debugging symbols found)
...
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1240537408 (LWP 28292)]
[KCrash handler]
#4  0xb6408a48 in __dynamic_cast () from /usr/lib/libstdc++.so.6
#5  0x080a6dfa in ?? ()
#6  0x090209f0 in ?? ()
#7  0x083773d8 in typeinfo for KTextEditor::CodeCompletionInterface ()
#8  0x0831d60c in typeinfo name for QGList ()
#9  0x in ?? ()

This bug is similar to other reports related to QGList() and other
dinamically sized Qt data structures. This may be a memory management
problem related to linked list type data structures in Qt.

Search for similar QGList related bugs filed against Krusader, Kdevelop, etc.

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

Versions of packages quanta depends on:
ii  kdelibs4c2   4:3.4.2-4   core libraries for all KDE applica
ii  kfilereplace 4:3.4.2-1.1 batch search-and-replace component
ii  klinkstatus  4:3.4.2-1.1 web link validity checker for KDE
ii  kommander4:3.4.2-1.1 visual dialog builder and executor
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libaudio21.7-3   The Network Audio System (NAS). (s
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libfam0  2.7.0-8 client library to control the FAM 
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-4   GCC support library
ii  libice6  6.8.2.dfsg.1-10 Inter-Client Exchange library
ii  libidn11 0.5.18-1GNU libidn library, implementation
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libpcre3 6.4-1.0.1   Perl 5 Compatible Regular Expressi
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqt3-mt3:3.3.5-1   Qt GUI Library (Threaded runtime v
ii  libsm6   6.8.2.dfsg.1-10 X Window System Session Management
ii  libstdc++6   4.0.2-4 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxi6   6.8.2.dfsg.1-10 X Window System Input extension li
ii  libxinerama1 6.8.2.dfsg.1-10 X Window System multi-head display
ii  libxml2  2.6.22-2GNOME XML library
ii  libxrandr2   6.8.2.dfsg.1-10 X Window System Resize, Rotate and
ii  libxrender1  1:0.9.0-2   X Rendering Extension client libra
ii  libxslt1.1   1.1.15-1XSLT processing library - runtime 
ii  libxt6   6.8.2.dfsg.1-10 X Toolkit Intrinsics
ii  quanta-data  4:3.4.2-1.1 data files for Quanta Plus web dev
ii  tidy 20050415-1  HTML syntax checker and reformatte
ii  xlibs6.8.2.dfsg.1-10 X Window System client libraries m
ii  zlib1g   1:1.2.3-8   compression library - runtime

Versions of packages quanta recommends:
pn  cervisia   (no description available)
pn  docbook-defguide   (no description available)
ii  gnupg1.4.2-2 GNU privacy guard - a free PGP rep
ii  kompare  4:3.4.2-2.1 a KDE GUI for viewing differences 
ii  kxsldbg  4:3.4.2-1.1 graphical XSLT debugger for KDE
pn  phpdoc (no description available)
pn  wdg-html-reference (no description available)

-- no debconf information


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



Bug#99827: procinfo -d displays improper amount of context switches

2005-11-24 Thread Raphael Manfredi
This one does not seem to be happening any longer with sysutils_1.3.8.5.1.

Raphael

Quoting Florian Ernst:
: tags 99827 moreinfo
: thanks [EMAIL PROTECTED] BCC'd
: 
: Hello Raphael,
: 
: I have just taken over maintenance of the sysutils package and now try
: to resolve some rather dated issues...
: 
: On Sun, 03 Jun 2001 23:30:21 +0200, Raphael Manfredi wrote:
: > The amount of context switches seems to be followed by a "stuck" number
: > that remains fixed, yielding an improper amount.
: > 
: > For instance, my "procinfo -d" displays:
: > 
: > context : 36382
: > 
: > and a few seconds later:
: > 
: > context : 39982
: > 
: > whereas the proper amounts are 3638 and 3998 respectively.
: 
: Do still experience this misbehavior with sysutils_1.3.8.5.1 as
: currently present in Woody (oldstable), Sarge (stable), Etch (testing)
: or with sysutils_2.0.0-1 which was just uploaded to Sid (unstable)?
: 
: Cheers,
: Flo




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



Bug#99828: procinfo shows non-existent disks

2005-11-24 Thread Raphael Manfredi
Yes, I still have this behaviour with procinfo version 18 (2001-03-02)
from sysutils 1.3.8.5.1.

Raphael

Quoting Florian Ernst:
: Hello Raphael,
: 
: I have just taken over maintenance of the sysutils package and now try
: to resolve some rather dated issues...
: 
: On Sun, 03 Jun 2001 23:32:44 +0200, Raphael Manfredi wrote:
: > On my machine, procinfo displays:
: > [...procinfo displaying 4 disks...]
: > However, I have only *one* IDE disk on this machine.
: 
: Do still experience this misbehavior with sysutils_1.3.8.5.1 as
: currently present in Woody (oldstable), Sarge (stable), Etch (testing)
: or with sysutils_2.0.0-1 which was just uploaded to Sid (unstable)?
: 
: Cheers,
: Flo




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



Bug#340646: mcvs: ftbfs [sparc] [spvw_memfile.d:834] errno = ENOENT: No such file or directory.

2005-11-24 Thread Blars Blarson
Package: mcvs
Version: 1.0.13-10
Severity: serious
Justification: fails to build from source

mcvs failed to build on a sparc buildd, duplicated on my sparc pbuilder.
It also failed on other buildds.

cd code; ./install.sh /usr /build/buildd/mcvs-1.0.13/debian/mcvs/
/usr/lib/clisp/base/lisp.run: operating system error during load of 
initialization file `/usr/lib/clisp/base/lispinit.mem'
[spvw_memfile.d:834] errno = ENOENT: No such file or directory.
clisp-link: No link kit found in linkkit
linking set failed to build.
make: *** [common-install-arch] Error 1


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



Bug#338795: bashisms

2005-11-24 Thread Micah Anderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1



Stephen Gran wrote:
> Correct me if I'm wrong, but these aren't maintainer scripts we're
> talking about here, right?  Just make sure all the scripts that contain
> bashisms declare #!/bin/bash at the top, depend on bash, and you're
> done.

No, you are right -- these aren't maintainer scripts and the main script
does declare #!/bin/bash at the top (although the handlers don't because
they are called not as atomic scripts but through the larger structure,
so they will by default be also /bin/bash). The only thing is the
package does not depend on bash itself.

However, I suspect perhaps that Joey was hoping that backupninja might
run in ash/dash/posix shell environment for other reasons... Joey, care
to chime in here?

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

iD8DBQFDhiYI9n4qXRzy1ioRAlnQAJkBqiC2+CQgVfQJWvn4tCm0EaCqRQCfVC4M
x2MdXG58dtsuoswcxrfp1yI=
=l8Bo
-END PGP SIGNATURE-


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



Bug#338795: bashisms

2005-11-24 Thread Stephen Gran
This one time, at band camp, Micah Anderson said:
> Hi Joey,
> 
> After I got this bug report I spent quite a bit of time trying to
> convert the various backupninja bashisms to POSIX so that it would work
> with dash/ash. I learned a few things about POSIX shell scripting that
> showed me how I depend on some of the higher-level data structures and
> aids that shells like Bash have. Its frustrating not having arrays
> available.
> 
> I thought this would be easy originally, as the first few issues were
> relatively trivial to fix, but as I went deeper and deeper I realized
> that backupninja depends on a lot of bashisms. This is especially true
> because we use easydialog, which is repelete with arrays and other
> bashisms. Worse is that the code in each of the handlers also has
> bashisms and I did not write all of them so I would either need the
> cooperation of the people who wrote them or I need to try and go through
> and re-factor each one by first figuring out exactly what it does and
> then how to make it do it in a less elegant way. Not a bad winter
> project, but the contributors of the handlers would also need to be
> convinced that fixes to their handlers will have to be done in a POSIX
> manner...
> 
> Anyways, I'm curious of how deep this requirement is... The backupninja
> main script has #!/bin/bash as its header, but my guess is that it needs
> to be POSIX capable to be used in something like tasksel? If so, then
> maybe not everything involved needs to be ported to POSIX...?

Correct me if I'm wrong, but these aren't maintainer scripts we're
talking about here, right?  Just make sure all the scripts that contain
bashisms declare #!/bin/bash at the top, depend on bash, and you're
done.
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#340316: mairix: new version available

2005-11-24 Thread Benj. Mako Hill

> Mairix 0.17 is out. Is it possible to package it ? It contains really
> interesting new features (like indexing of Evolution imap folders).

I recieved the mail and I am on it. :)

Regards,
Mako

-- 
Benjamin Mako Hill
[EMAIL PROTECTED]
http://mako.cc/



signature.asc
Description: Digital signature


  1   2   3   >