Bug#502179: mytop: A newline should be replaced by a space, not just deleted

2008-10-24 Thread Philipp Matthias Hahn
Hello Olaf!

On Tue, Oct 14, 2008 at 11:15:51AM +0200, Olaf van der Spek wrote:
 Newlines in queries appear to be deleted, which results in broken
 queries. They should be replaced by spaces instead.

I've prepared a new package at
http://pint.pmhahn.de/pmhahn/debian/lenny/m/mytop/mytop_1.6-5_all.deb
and also included the new mytop-perl-script as an attachment. Could you
please give it a short test on your side and confirm, that the bus is
now closed?
I tried to produce a MySQL-query which runs long enouth for mytop to
show it, but my MySQL-test-server is mostlz idle and thus never shows
any running query.

 This is #434626, I guess the fix for that didn't work.

I think you meen #434625

BYtE
Philipp
-- 
Philipp Matthias Hahn [EMAIL PROTECTED]
 GPG/PGP: 9A540E39 @ keyrings.debian.org
#!/usr/bin/perl -w
#
# $Id: mytop,v 1.53 2003/09/18 17:58:36 jzawodn Exp $

=pod

=head1 NAME

mytop - display MySQL server performance info like `top'

=cut

## most of the POD is at the bottom of the file

## TODO: make 'C' toggle color

use 5.005;
use strict;
use DBI;
use Getopt::Long;
use Socket;

$main::VERSION = 1.6;

$|=1;
$0 = 'mytop';

my $WIN = ($^O eq 'MSWin32') ? 1 : 0;

## Test for color support.

eval { require Term::ANSIColor; };

my $HAS_COLOR = $@ ? 0 : 1;

$HAS_COLOR = 0 if $WIN;

## Test of Time::HiRes support

eval { require Time::HiRes };

my $HAS_TIME = $@ ? 0 : 1;

my $debug = 0;

## Try to lower our priority (which, who, pri)

setpriority(0,0,10) unless $WIN;

## Prototypes

sub Clear();
sub GetData();
sub GetQPS();
sub FullQueryInfo($);
sub Explain($);
sub PrintTable(@);
sub PrintHelp();
sub Sum(@);
sub commify($);
sub make_short($);
sub Hashes($);
sub Execute($);
sub StringOrRegex($);
sub GetInnoDBStatus();
sub GetCmdSummary();
sub GetShowVariables();
sub GetShowStatus();
sub cmd_s;
sub cmd_q;
sub FindProg($);

## Default Config Values

my %config = (
vt100 = 0,
batchmode = 0,
color = 1,
db= '',
delay = 5,
filter_user   = qr/.?/,
filter_db = qr/.?/,
filter_host   = qr/.?/,
header= 1,
help  = 0,
host  = 'localhost',
idle  = 1,
long_nums = 0,
mode  = 'top',
prompt= 0,
pass  = '',
port  = 3306,
resolve   = 1,
socket= '',
sort  = 0, # default or reverse sort (s)
user  = 'root',
);

my %qcache = ();## The query cache--used for full query info support.
my %ucache = ();## The user cache--used for full killing by user
my %dbcache = ();   ## The db cache.  This should be merged at some point.
my %statcache = (); ## The show status cache for GetShowStatus()

my (%STATUS, %OLD_STATUS); # header stuff.

my $CLEAR = $WIN ? '': `clear`;

my %vt100_commands=
(
  CURSOR_TO_START = \x1b[0;0f,
  EEL = \x1b[K,  # Erase end of line
  EEB = \x1b[J,  # Erase down
);

## Term::ReadKey values

my $RM_RESET   = 0;
my $RM_NOBLKRD = 3; ## using 4 traps Ctrl-C :-(

## Read the user's config file, if it exists.

my $config = $ENV{HOME}/.mytop;

if (-e $config)
{
if (open CFG, $config)
{
while (CFG)
{
next if /^\s*$/;  ## skip blanks
next if /^\s*#/;  ## skip comments

chomp;

if (/(\S+)\s*=\s*(.*\S)/)
{
$config{lc $1} = $2 if exists $config{lc $1};
}
}
close CFG;
}
}

## Command-line args.

use vars qw($opt_foo);

Getopt::Long::Configure('no_ignore_case', 'bundling');

GetOptions(
vt100   = \$config{vt100},
color!  = \$config{color},
user|u=s= \$config{user},
pass|password|p=s   = \$config{pass},
database|db|d=s = \$config{db},
host|h=s= \$config{host},
port|P=i= \$config{port},
socket|S=s  = \$config{socket},
delay|s=i   = \$config{delay},
batch|batchmode|b   = \$config{batchmode},
header! = \$config{header},
idle|i  = \$config{idle},
resolve|r   = \$config{resolve},
prompt! = \$config{prompt},
long|!  = \$config{long_nums},
mode|m=s= \$config{mode},
sort=s  = \$config{sort},
);

($config{batchmode} or not -t STDOUT)
  and $config{vt100}=0;

## User may have put the port with the host.

if ($config{host} =~ s/:(\d+)$//)
{
$config{port} = $1;
}

## Don't use Term::ReadKey unless running interactively.

if (not $config{batchmode})
{
require Term::ReadKey;
Term::ReadKey-import();
Clear();
}

## User may want to disable color.

if ($HAS_COLOR and not $config{color})
{
$HAS_COLOR = 0;
}

if ($HAS_COLOR)
{
import Term::ANSIColor ':constants';
}
else
{
*RESET  = sub { };
*YELLOW = sub { };
*RED= sub { };
*GREEN  = sub { };
*BLUE   = sub { };
*WHITE  = sub { 

Bug#503264: ITP: viper -- minimalistic scientific plotter and run-time visualization module

2008-10-24 Thread Johannes Ring
Package: wnpp
Severity: wishlist
X-Debbugs-CC: [EMAIL PROTECTED]

Package name: viper
Version: 0.3.0
Upstream author: Ola Skavhaug
URL: http://www.fenics.org/wiki/Viper
License: LGPL
Description: minimalistic scientific plotter and run-time visualization
module

Viper is a minimalistic scientific plotter and run-time visualization
module. Viper has support for visualizing meshes and solutions in DOLFIN.
Features includes:

 o Light-weight and minimalistic
 o Extended keybindings
 o Interactive
 o Save as png, VTK
 o 2D and 3D
 o Scalar, vector, and displacement fields
 o Multiple input formats
 o Can be used as standalone plotting application, or used as part of
PyDOLFIN

A version of the Debian files is already available in the pkg-scicomp
Subversion repository.


Johannes Ring





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



Bug#503261: mkvtoolnix: Patch for 2.4.0 packaging changes

2008-10-24 Thread Josh Triplett
Package: mkvtoolnix
Followup-For: Bug #503261

Given the upstream tarball from
http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-2.4.0.tar.bz2
, the following steps will result in a buildable Debian package of
2.4.0:

* Extract the tarball
* Remove the upstream debian directory
* Copy the debian directory from 2.0.2
* Apply the attached patch.
* (Optional) If you want to upload as the maintainer, remove the NMU
  entry from debian/changelog and change the trailer line.
* Make a sourceful upload.

- Josh Triplett
diff -Naur mkvtoolnix-2.0.2/debian/changelog mkvtoolnix-2.4.0/debian/changelog
--- mkvtoolnix-2.0.2/debian/changelog	2008-10-23 22:04:30.0 -0700
+++ mkvtoolnix-2.4.0/debian/changelog	2008-10-23 22:48:16.0 -0700
@@ -1,3 +1,16 @@
+mkvtoolnix (2.4.0-0.1) unstable; urgency=low
+
+  [ Josh Triplett ]
+  * Non-maintainer upload.
+  * New upstream version 2.4.0
+* Handles newer revisions of Theora. (Closes: #458024)
+* Requires libboost-dev and libboost-regex-dev; add them to Build-Depends.
+* Incorporates patches/20-honor-strip and patches/30-mplayer-options;
+  patches removed.
+* Incorporates part of patches/40-gcc-4.3; patch updated.
+
+ -- Josh Triplett [EMAIL PROTECTED]  Thu, 23 Oct 2008 22:36:58 -0700
+
 mkvtoolnix (2.0.2-1.1) unstable; urgency=medium
 
   * Non-maintainer upload.
diff -Naur mkvtoolnix-2.0.2/debian/control mkvtoolnix-2.4.0/debian/control
--- mkvtoolnix-2.0.2/debian/control	2008-10-23 22:04:30.0 -0700
+++ mkvtoolnix-2.4.0/debian/control	2008-10-23 23:20:35.0 -0700
@@ -2,7 +2,7 @@
 Section: graphics
 Priority: optional
 Maintainer: Clément Stenac [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0) , libogg-dev, libvorbis-dev, zlib1g-dev, libwxgtk2.6-dev, libflac-dev, libexpat1-dev, libbz2-dev, liblzo2-dev, libebml-dev (= 0.7.7), libmatroska-dev (= 0.7.7), quilt, libmagic-dev, libpcre3-dev
+Build-Depends: debhelper (= 4.0.0) , libogg-dev, libvorbis-dev, zlib1g-dev, libwxgtk2.6-dev, libflac-dev, libexpat1-dev, libbz2-dev, liblzo2-dev, libebml-dev (= 0.7.7), libmatroska-dev (= 0.7.7), quilt, libmagic-dev, libpcre3-dev, libboost-dev, libboost-regex-dev
 Standards-Version: 3.7.3
 Homepage: http://www.bunkus.org/videotools/mkvtoolnix/
 
@@ -17,7 +17,6 @@
   - mkvmerge is a tool to create Matroska files from other formats
   - mkvinfo allows to get information about the tracks in a Matroska file
   - mkvextract can extract tracks from Matroska files to other formats
-  - base64tool can encode and decode base64
  .
  This package only provides command-line tools. For graphical tools, you
  should install the mkvtoolnix-gui package.
diff -Naur mkvtoolnix-2.0.2/debian/mkvtoolnix.install mkvtoolnix-2.4.0/debian/mkvtoolnix.install
--- mkvtoolnix-2.0.2/debian/mkvtoolnix.install	2008-10-23 22:04:30.0 -0700
+++ mkvtoolnix-2.4.0/debian/mkvtoolnix.install	2008-10-23 23:20:48.0 -0700
@@ -1,4 +1,3 @@
 debian/tmp/bin/mkvmerge		/usr/bin
 debian/tmp/bin/mkvinfo		/usr/bin
 debian/tmp/bin/mkvextract	/usr/bin
-debian/tmp/bin/base64tool	/usr/bin
diff -Naur mkvtoolnix-2.0.2/debian/mkvtoolnix.manpages mkvtoolnix-2.4.0/debian/mkvtoolnix.manpages
--- mkvtoolnix-2.0.2/debian/mkvtoolnix.manpages	2008-10-23 22:04:30.0 -0700
+++ mkvtoolnix-2.4.0/debian/mkvtoolnix.manpages	2008-10-23 23:21:07.0 -0700
@@ -1,4 +1,3 @@
-doc/base64tool.1
 doc/mkvextract.1
 doc/mkvinfo.1
 doc/mkvmerge.1
diff -Naur mkvtoolnix-2.0.2/debian/patches/20-honor-strip mkvtoolnix-2.4.0/debian/patches/20-honor-strip
--- mkvtoolnix-2.0.2/debian/patches/20-honor-strip	2008-10-23 22:04:30.0 -0700
+++ mkvtoolnix-2.4.0/debian/patches/20-honor-strip	1969-12-31 16:00:00.0 -0800
@@ -1,172 +0,0 @@
-Index: mkvtoolnix-2.0.0/Makefile.in
-===
 mkvtoolnix-2.0.0.orig/Makefile.in	2007-01-28 11:44:13.0 +0100
-+++ mkvtoolnix-2.0.0/Makefile.in	2007-01-28 11:45:08.0 +0100
-@@ -55,6 +55,7 @@
- PROFILING_CFLAGS = @PROFILING_CFLAGS@
- PROFILING_LIBS = @PROFILING_LIBS@
- RANLIB = @RANLIB@
-+STRIP = @STRIP@
- UIC = @UIC@
- 
- # Variable stuff as set by configure
-Index: mkvtoolnix-2.0.0/configure
-===
 mkvtoolnix-2.0.0.orig/configure	2007-01-28 11:45:37.0 +0100
-+++ mkvtoolnix-2.0.0/configure	2007-01-28 11:46:31.0 +0100
-@@ -668,6 +668,7 @@
- INSTALL_SCRIPT
- INSTALL_DATA
- RANLIB
-+STRIP
- AR
- LD
- GREP
-@@ -3631,6 +3632,102 @@
- fi
- 
- if test -n $ac_tool_prefix; then
-+  # Extract the first word of ${ac_tool_prefix}strip, so it can be a program name with args.
-+set dummy ${ac_tool_prefix}strip; ac_word=$2
-+{ echo $as_me:$LINENO: checking for $ac_word 5
-+echo $ECHO_N checking for $ac_word... $ECHO_C 6; }
-+if test ${ac_cv_prog_STRIP+set} = set; then
-+  echo $ECHO_N (cached) $ECHO_C 6
-+else
-+  if test -n $STRIP; then
-+  ac_cv_prog_STRIP=$STRIP # Let the user override the test.
-+else

Bug#503265: ITP: fenics -- automation of computational mathematical modeling

2008-10-24 Thread Johannes Ring
Package: wnpp
Severity: wishlist
X-Debbugs-CC: [EMAIL PROTECTED]

Package name: fenics
Version: 8.10
Upstream author: FEniCS developers
URL: http://www.fenics.org
License: none (meta package)
Description: automation of computational mathematical modeling

The vision of FEniCS is to set a new standard in Computational
Mathematical Modeling (CMM), which is the Automation of CMM (ACMM),
towards the goals of generality, efficiency and simplicity, concerning
mathematical methodology, implementation and application. FEniCS is
organized as a collection of sub projects/components, including DOLFIN,
FErari, FFC, FIAT, Instant, Ko, Puffin, SyFi, UFC and Viper.

A version of the Debian files is already available in the pkg-scicomp
Subversion repository.


Johannes Ring





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



Bug#503122: gnuplottex: fails to compile example

2008-10-24 Thread Norbert Preining

severity 503122 wishlist
thanks


Hi Martin,

On Thu, 23 Oct 2008 10:02:50 +0200 martin f krafft [EMAIL PROTECTED] 
wrote:
 Apparently one has to have the right package option *and* pass
 -shell-escape. This is not at all clear. Maybe the documentation
 could be updated?

Sorry, but this *is* clearly stated:
- the latex package option defines the behaviour of the latex code, so the 
shell option will try to generate the images. Other , the documentation 
says USE shell escapes
- since that needs changes to either the config files or the cmd line this 
is stated clearly in the introduction.

Don't mix the latex class option with the cmd line argument for latex.

The documentation clearly states
- the shell option *USES* shell escapes
- the -shell-escapes *ALLOWS* them
Think about some program
./foobar -use-sudo
that tries to use sudo to format the whole filesystem, but without sudo 
configured to allow it it wont work.

I consider this clear enough, and I will anyway not change single package 
docs. So we either close or let it rot.

Thanks

Norbert
---
Dr. Norbert Preining [EMAIL PROTECTED]   Vienna University of Technology
Debian Developer [EMAIL PROTECTED] Debian TeX 
Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 
B094
---




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



Bug#503266: subversion: Typo in French translation

2008-10-24 Thread Cyril Brulebois
Package: subversion
Version: 1.5.1dfsg1-1
Severity: wishlist
Tags: l10n patch

Hi,

that's just a two-letter typo, but it really strikes (my only use of subversion
is some “svn ls”/“svn info” to debug whether my network connection or git-svn
went wild, so I see it almost every time I use svn ;)).

Cheers,

--
Cyril Brulebois
--- subversion-1.5.1dfsg1/subversion/po/fr.po~
+++ subversion-1.5.1dfsg1/subversion/po/fr.po
@@ -719,7 +719,7 @@

 #: ../include/svn_error_codes.h:821
 msgid Network connection closed unexpectedly
-msgstr La connection réseau a été fermée de façon inattendue
+msgstr La connexion réseau a été fermée de façon inattendue

 #: ../include/svn_error_codes.h:825
 msgid Network read/write error


Bug#503267: texlive-base fails to install

2008-10-24 Thread Daniel Baumann
Package: texlive-base
Severity: serious

Hi,

texlive-base fails to install:

Setting up texlive-base (2007.dfsg.1-4) ...
Running mktexlsr. This may take some time... done.
Building format(s) --all.
This may take some time...
fmtutil-sys failed. Output has been stored in
/tmp/fmtutil.oUGZQNDE
Please include this file if you report a bug.

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

Contents of /tmp/fmtutil.oUGZQNDE:

/usr/bin/fmtutil: line 336: /texconfig/tcfmgr: No such file or directory
fmtutil: config file `fmtutil.cnf' not found.

Let me know if I can be of help with any further information you require.

Regards,
Daniel

-- 
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#500823: INTERNAL ERROR in setup-storage: Table Header no seen yet

2008-10-24 Thread Michael Tautschnig
 I installed FAI 3.2.12 and it seems like this bug may still exist in even 
 3.2.13. I've been able to reproduce it reliably in Vmware Server where the 
 disk won't be formatted when it doesn't have a label. However once I put a 
 label on it, it works fine. The other weird thing is the FAI banner shows 
 3.2.11 even though 3.2.12. Even after I upgraded to 3.2.13 the banner still 
 shows 3.2.11
 
 It does look however like I have the right modules, as the size and 
 timestamps for the updated files look the same as one from a freshly 
 installed 3.2.13 instace:
 
 /usr/share/fai/setup-storage# ls -al
 total 144
 drwxr-xr-x 2 root root   115 2008-10-23 17:22 .
 drwxr-xr-x 4 root root40 2008-10-21 14:03 ..
 -rwxr-xr-x 1 root root 35323 2008-10-22 06:48 Commands.pm
 -rwxr-xr-x 1 root root 11410 2008-10-22 06:48 Exec.pm
 -rwxr-xr-x 1 root root 10443 2008-10-22 06:48 Fstab.pm
 -rwxr-xr-x 1 root root  7037 2008-10-22 06:48 Init.pm
 -rwxr-xr-x 1 root root 25030 2008-10-22 06:48 Parser.pm
 -rwxr-xr-x 1 root root 24758 2008-10-22 06:48 Sizes.pm
 -rwxr-xr-x 1 root root 19793 2008-10-22 06:48 Volumes.pm

Are you running this command, and all the other checks, in the chroot inside the
NFSROOT, or are you rather giving us the information about your FAI server's
base system? Please make sure that you actually upgraded the NFSROOT.

Best,
Michael



pgpRWh1SuRqNN.pgp
Description: PGP signature


Bug#472590: RFC: changing the + in ls -l output to be . or +

2008-10-24 Thread Jim Meyering
Vikram Noel Ambrose [EMAIL PROTECTED] wrote:
 Jim Meyering [EMAIL PROTECTED] wrote:
...
 if (SELinux, with no other MAC or ACL)
   use '.'
 else if (any other combination of alternate access methods)
   use '+'
...
 Here's sample output, running on an SELinux system:

   $ src/ls -ldgo [ac]*
   -rw-r--r--.  1   42625 2008-04-02 19:31 aclocal.m4
   drwxr-xr-x.  24096 2008-04-02 19:31 autom4te.cache
   -rw-r--r--.  11597 2008-03-21 16:35 cfg.mk
   -rw-r--r--.  1 1417195 2008-04-02 19:33 config.log
   -rwxr-xr-x.  1   71225 2008-04-02 19:33 config.status
   -rwxr-xr-x.  1 1846424 2008-04-02 19:31 configure
   -rw-r--r--.  1   12014 2008-03-25 23:55 configure.ac


 This is so confusing. What is so horribly wrong with a capital S for
 SELinux or A for ACL?

A desire for compatibility makes + look good.
. is appealing for SELinux-only because it's inconspicuous.



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



Bug#503268: udev: when remove series of lvm snapshots show device errors

2008-10-24 Thread Grzegorz Kolorz
Package: udev
Version: 0.125-7
Severity: normal

I create series of lvm snapshots for backup purpose.
When I remove that snapshots I get errors like:

/dev/dm-19: stat failed: No such file or directory
Path /dev/dm-19 no longer valid for device(254,19)

or

/dev/disk/by-id/dm-name-hal9001VG-ora-real: stat failed: No such file or 
directory
Path /dev/disk/by-id/dm-name-hal9001VG-ora-real no longer valid for 
device(254,37)
/dev/disk/by-id/dm-uuid-LVM-NeGyexPSbO24M52d0rNZvcmiU92a3f0NmfR2LThJglePfvYzWhxDpgbQLViiy11I-real:
stat failed: No such file or directory
Path 
/dev/disk/by-id/dm-uuid-LVM-NeGyexPSbO24M52d0rNZvcmiU92a3f0NmfR2LThJglePfvYzWhxDpgbQLViiy11I-real
no longer valid for device(254,37)))

That messages is show randomly for different lvm volumes.
All lvm snapshots are properly removed.
I think that is udev issue.

Grzegorz

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 60
-rw-r--r-- 1 root root 3586 sie 28 03:53 50-udev.rules
-rw-r--r-- 1 root root 1543 sie 28 03:53 60-persistent-input.rules
-rw-r--r-- 1 root root 4554 sie 28 03:53 60-persistent-storage.rules
-rw-r--r-- 1 root root 1582 sie 28 03:53 60-persistent-storage-tape.rules
-rw-r--r-- 1 root root  523 sie 28 03:53 60-persistent-v4l.rules
-rw-r--r-- 1 root root   75 wrz 18 15:15 60-vboxdrv.rules
-rw-r--r-- 1 root root 1137 paź  1 16:33 65_dmsetup.rules
-rw-r--r-- 1 root root  618 mar  6  2008 70-persistent-net.rules
-rw-r--r-- 1 root root  452 sie 28 03:53 75-cd-aliases-generator.rules
-rw-r--r-- 1 root root 3083 wrz 19 03:23 75-persistent-net-generator.rules
-rw-r--r-- 1 root root 2282 sie 28 03:53 80-drivers.rules
-rw-r--r-- 1 root root 4247 sie 28 03:53 91-permissions.rules
-rw-r--r-- 1 root root  593 sie 28 03:53 95-late.rules
lrwxrwxrwx 1 root root   15 cze  1  2007 z60_hdparm.rules - ../hdparm.rules

-- /sys/:
/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2/dev
/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1/dev
/sys/devices/pci:00/:00:02.0/:01:00.0/:02:00.0/:03:00.0/:04:0e.0/host0/target0:2:0/0:2:0:0/block/sda/dev
/sys/devices/pci:00/:00:02.0/:01:00.0/:02:00.0/:03:00.0/:04:0e.0/host0/target0:2:0/0:2:0:0/block/sda/sda1/dev
/sys/devices/pci:00/:00:02.0/:01:00.0/:02:00.0/:03:00.0/:04:0e.0/host0/target0:2:0/0:2:0:0/block/sda/sda2/dev
/sys/devices/pci:00/:00:02.0/:01:00.0/:02:00.0/:03:00.0/:04:0e.0/host0/target0:2:0/0:2:0:0/block/sda/sda3/dev
/sys/devices/pci:00/:00:02.0/:01:00.0/:02:00.0/:03:00.0/:04:0e.0/host0/target0:2:1/0:2:1:0/block/sdb/dev
/sys/devices/pci:00/:00:02.0/:01:00.0/:02:00.0/:03:00.0/:04:0e.0/host0/target0:2:1/0:2:1:0/block/sdb/sdb1/dev
/sys/devices/pci:00/:00:1d.0/usb1/1-0:1.0/usb_endpoint/usbdev1.1_ep81/dev
/sys/devices/pci:00/:00:1d.0/usb1/dev
/sys/devices/pci:00/:00:1d.0/usb1/usb_device/usbdev1.1/dev
/sys/devices/pci:00/:00:1d.0/usb1/usb_endpoint/usbdev1.1_ep00/dev
/sys/devices/pci:00/:00:1d.1/usb2/2-0:1.0/usb_endpoint/usbdev2.1_ep81/dev
/sys/devices/pci:00/:00:1d.1/usb2/dev
/sys/devices/pci:00/:00:1d.1/usb2/usb_device/usbdev2.1/dev
/sys/devices/pci:00/:00:1d.1/usb2/usb_endpoint/usbdev2.1_ep00/dev
/sys/devices/pci:00/:00:1d.2/usb3/3-0:1.0/usb_endpoint/usbdev3.1_ep81/dev
/sys/devices/pci:00/:00:1d.2/usb3/dev
/sys/devices/pci:00/:00:1d.2/usb3/usb_device/usbdev3.1/dev
/sys/devices/pci:00/:00:1d.2/usb3/usb_endpoint/usbdev3.1_ep00/dev
/sys/devices/pci:00/:00:1d.3/usb4/4-0:1.0/usb_endpoint/usbdev4.1_ep81/dev
/sys/devices/pci:00/:00:1d.3/usb4/dev
/sys/devices/pci:00/:00:1d.3/usb4/usb_device/usbdev4.1/dev
/sys/devices/pci:00/:00:1d.3/usb4/usb_endpoint/usbdev4.1_ep00/dev
/sys/devices/pci:00/:00:1d.7/usb5/5-0:1.0/usb_endpoint/usbdev5.1_ep81/dev
/sys/devices/pci:00/:00:1d.7/usb5/dev
/sys/devices/pci:00/:00:1d.7/usb5/usb_device/usbdev5.1/dev
/sys/devices/pci:00/:00:1d.7/usb5/usb_endpoint/usbdev5.1_ep00/dev
/sys/devices/pci:00/:00:1f.2/host1/target1:0:0/1:0:0:0/block/sdc/dev
/sys/devices/pci:00/:00:1f.2/host1/target1:0:0/1:0:0:0/block/sdc/sdc1/dev
/sys/devices/pci:00/:00:1f.2/host2/target2:0:0/2:0:0:0/block/sdd/dev
/sys/devices/pci:00/:00:1f.2/host2/target2:0:0/2:0:0:0/block/sdd/sdd1/dev
/sys/devices/pci:00/:00:1f.2/host3/target3:0:0/3:0:0:0/block/sde/dev
/sys/devices/pci:00/:00:1f.2/host3/target3:0:0/3:0:0:0/block/sde/sde1/dev
/sys/devices/pci:00/:00:1f.2/host4/target4:0:0/4:0:0:0/block/sdf/dev
/sys/devices/pci:00/:00:1f.2/host4/target4:0:0/4:0:0:0/block/sdf/sdf1/dev
/sys/devices/platform/i8042/serio0/input/input0/event0/dev
/sys/devices/platform/serial8250/tty/ttyS1/dev
/sys/devices/platform/serial8250/tty/ttyS2/dev
/sys/devices/platform/serial8250/tty/ttyS3/dev
/sys/devices/pnp0/00:07/tty/ttyS0/dev

Bug#503172: linux-image-2.6.26-1-orion5x: Improve support for the DNS-323

2008-10-24 Thread Martin Michlmayr
* Matthew Palmer [EMAIL PROTECTED] [2008-10-24 06:51]:
 I didn't change the GPIO pin map, so I don't think that I need to change the
 valid_pins.  However, I'm not sure that the GPIO map is *necessarily* the

OK, patch applied.  Thanks.

 same for the A1 and B1, so it's possible that it'll need to be updated.  I
 know that there are more changes that need to be made to *fully* support the
 DNS-323 (i2c, fan, possibly LEDs); this patch is really targetted at just
 getting the kernel to the point where it'll run d-i and the system.

LEDs should work.  I forwarded you a message regarding fan.
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#498249: x11-xserver-utils: xrandr shows resolutions which the monitor cannot display

2008-10-24 Thread Noèl Köthe
forwarded 498249 https://bugs.freedesktop.org/show_bug.cgi?id=18200
thanks

Am Donnerstag, den 23.10.2008, 10:17 +0200 schrieb Noèl Köthe:

 --- Comment #1 from Alex Deucher [EMAIL PROTECTED]  2008-10-21 09:24:47 PST 
 ---
 This is not a driver problem.  The X server adds those modes since they are
 within the sync ranges defined by the edid.

Reported it to the upstream bugzilla.

-- 
Noèl Köthe noel debian.org
Debian GNU/Linux, www.debian.org


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#503199: [Bulk] Re: Bug#503199: rar: use 64 bit binary for the amd64 port

2008-10-24 Thread Martin Meredith
  b.  The RAR/WinRAR unlicensed trial version may not be distributed
  inside of any other software package without written  
  permission of the copyright owner.

Section 5.b




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



Bug#503090: NAS vs. NAC

2008-10-24 Thread Florian Maier

You wrote I think Debian need to use NAS tecnology too, and no have any other 
implementation
around this. and cited the packetfence description afterwards: PacketFence is a 
Free and Open Source network access control (NAC) system.

NAS != NAC

typo? ;-)




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



Bug#502704: [Pkg-acpi-devel] Bug#502704: Bug#502704: Bug#502704: acpid is not

2008-10-24 Thread Michael Meskes
unmerge 502704
reopen 502704
thanks

  Could you please test with acpid_1.0.6-15? I'd expect it to fix your 
  problem or
  I misjudged where your problem lies.
 
  Michael
 
 Hello.
 
 acpid_1.0.6-15 exhibits the same issue and I confirmed that
 /proc/modules does exist at that point in the script.  As a

Sorry, I just reopened the bug.

 As a workaround, I've attached a patch to /etc/init.d/acpid to get past the
 modprobe when it fails.  It's a hack but at least it allows acpid to start
 when there are no modules to load.  There's likely something bigger at play
 here.

I doubt it. Just running modprobe without any module to load gives a return 
code of 1. However, I don't think we should ignore errors but instead check 
whether the modules list is empty. How about this:

if [ $MODULES ]; then
modprobe --all --use-blacklist $MODULES 2/dev/null
fi

Does this work for you?

Michael

-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go VfL Borussia! Go SF 49ers! Use Debian GNU/Linux! Use PostgreSQL!



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



Bug#503269: include the lua tikz terminal

2008-10-24 Thread martin f krafft
Package: gnuplot
Version: 4.2.4-1
Severity: wishlist

I am not a proponent of lua, but tikz is very nice. It would be
great if gnuplot in Debian would come with

  http://peter.affenbande.org/gnuplot/

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

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

Versions of packages gnuplot depends on:
ii  gnuplot-nox   4.2.4-1A command-line driven interactive 
ii  gnuplot-x11   4.2.4-1A command-line driven interactive 

gnuplot recommends no packages.

Versions of packages gnuplot suggests:
pn  gnuplot-doc   none (no description available)

-- no debconf information


-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#502704: [Pkg-acpi-devel] Bug#502704: Bug#502704: Bug#502704: acpid is not

2008-10-24 Thread Loïc Minier
On Fri, Oct 24, 2008, Michael Meskes wrote:
 if [ $MODULES ]; then
   modprobe --all --use-blacklist $MODULES 2/dev/null
 fi

 Err you probably lack a -n here, but FYI there's already:
if [ -z $MODULES ]; then
return
fi

 I think modprobe --all always returns 0 (which is probably a bug; I've
 reported when I rewrote the init script), so it might be a bogus return
 again which might want to be return 0, but I don't think so.

-- 
Loïc Minier



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



Bug#503270: phpmyadmin: fails to change language

2008-10-24 Thread Cédric Devillers
Package: phpmyadmin
Version: 4:2.9.1.1-8
Severity: normal
Tags: patch

The last security update introduced an impossibility to change the language
onto the login page and when a user is identified.

In attachment, a patch for resolving the problem.

Cordially,

Cedric Devillers

patch-common
Description: Binary data


Bug#503271: when: minor problems with package description

2008-10-24 Thread Vincent Fourmond
Package: when
Version: 1.1.12-1
Severity: minor


  Hello,

  Package description of when does not say much (which might be
appropriate, I don't know), but it says that It doesn't depend on any
libraries, so it's very easy to install. That is completely
irrelevant for a Debian system, where no package is harder to install
because you have more libraries ;-) ...

  Cheers,

Vincent


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

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



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



Bug#503270: phpmyadmin: fails to change language

2008-10-24 Thread Thijs Kinkhorst
tags 503270 pending
thanks

On Fri, October 24, 2008 10:13, Cédric Devillers wrote:
 The last security update introduced an impossibility to change the
 language onto the login page and when a user is identified.

 In attachment, a patch for resolving the problem.

Thanks, I also discovered this and a patch is already committed. I will
include it in an upcoming DSA update.


thanks,
Thijs




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



Bug#503224: [INTL:eu] sn debconf templates Basque translation

2008-10-24 Thread Hilko Bengen
Christian Perrier has stated his intent to NMU the package for one
other translation, he can go ahead and add the Basque translation,
too.

-Hilko



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



Bug#503205: twitux: Will not connect to twitter.

2008-10-24 Thread Rodrigo Gallardo
On Fri, Oct 24, 2008 at 07:57:05AM +0100, Lawrence Woodman wrote:
 Hello Rodrigo,
 
 Some answers to your questions follow:

 ... [ Everything OK ] ...
 
 This probably doesn't help much, other than to eliminate the obvious.
 If you want me to try anything else, please don't hesitate to contact
 me.

Yes, it all looks good.

And I just can't reproduce it, for me it's working all right, which leaves me
empty of ideas on how to debug :(

Ok, since you've been willing to strace before: Can you try to strace *while*
it's trying to connect? I think a way to do that would be to click on
'Disconnect', start the trace (or note the timestamp, or something) then click
on 'Connect'. Let's try to see if it's getting stuck somewhere in particular.



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



Bug#502821: oldsys-preseed: Extract values for DNS-323

2008-10-24 Thread Matthew Palmer
On Wed, Oct 22, 2008 at 05:26:24PM +0200, Martin Michlmayr wrote:
 * Matthew Palmer [EMAIL PROTECTED] [2008-10-22 11:34]:
  I wasn't sure if adding an extra udeb into the initrd was acceptable; since
  it's OK, I've reworked the patch to do that instead.  New patch attached,
  with tests this time (I forgot to include them in the diff last time).
 
 Thanks, this looks good.
 
 +# Parse the sib.conf file, as found in the Dlink DNS-323
 
 D-Link

Fixed.

 + # I can't see anywhere this is configured, so we'll 
 hard-code it
 + # for now
 + INTERFACE=eth0
 
 There's only one network interface, so this comment is not necessary.

I assume that it's just the *comment* that's not necessary, but the
INTERFACE=eth0 still is?  All the other orion5x-based devices hardcode it.

 + mkdir -p $path/rootfs
 + mount -t minix /dev/$rootfs $path/rootfs
 
 I suggest you mount it read-only (as the others do)

Done.

 
 + NETMASK=255.255.255.0
 + GATEWAY=192.168.1.254
 + [ -z $NAMESERVERS ]  
 NAMESERVERS=192.168.1.254
 
 Is this the default setting in the firmware?

I'm not sure what the default in the firmware actually is, I'll have to
look it up in The Fine Manual later tonight.  I'll attach a fixed patch when
I've done that.

- Matt



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



Bug#503262:

2008-10-24 Thread W. van den Akker
Hi,

I shall send it to the upstream maintainers.
There is already a new upstream version available. Dont know if you are
able to test it to see if the problem still exists in the new version.

Regards,
Willem




-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.




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



Bug#410210: Announce of an upcoming upload for the libpam-rsa package

2008-10-24 Thread Christian Perrier
Dear maintainer of libpam-rsa and Debian translators,

Some days ago, I sent a notice to the maintainer of the libpam-rsa Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

The package maintainer and I agreed for a translation update round. At
the end of this period, I will send him|her a full patch so that 
an l10n upload can happen.
The full planned schedule is available at the end of this mail.

The package is currently translated to: 
cs de es fr it pt ru sv vi

Among these, the following translations are incomplete: none

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the libpam-rsa package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Thursday, October 
30, 2008. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

Schedule:

 Sunday, October 19, 2008   : send the first intent to NMU notice to
 the package maintainer.
 Friday, October 24, 2008   : send this notice
 Thursday, October 30, 2008   : (midnight) deadline for receiving 
translation updates
 Friday, October 31, 2008   : Send a summary to the maintainer. Maintainer 
uploads
 when possible.

Thanks for your efforts and time.

-- 


-- 


# 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.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-01-21 08:44+\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME [EMAIL PROTECTED]\n
Language-Team: LANGUAGE [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../libpam-rsa.templates:1001
msgid Omit libpam-rsa configuration?
msgstr 

#. Type: boolean
#. Description
#: ../libpam-rsa.templates:1001
msgid 
If you enable this option, no initial configuration will be created and you 
will need to create /etc/security/pam_rsa.conf in order to use this module.
msgstr 

#. Type: string
#. Description
#: ../libpam-rsa.templates:2001
msgid Directory containing RSA public keys:
msgstr 

#. Type: string
#. Description
#: ../libpam-rsa.templates:2001
msgid 
Specifies the directory that contains the RSA public keys. The value must be 
an absolute path starting with a '/'. A trailing '/' is allowed but not 
required.
msgstr 

#. Type: string
#. Description
#: ../libpam-rsa.templates:3001
msgid Directory containing private, possibly mobile, RSA keys:
msgstr 

#. Type: string
#. Description
#: ../libpam-rsa.templates:3001
msgid 
Specifies the directory that contains the RSA private keys. This keys might 
be mobile, like in a USB key. If you leave the default option, you need to 
make sure that your USB mass storage devices are automounted so the 
directory can be reached.
msgstr 

#. Type: select
#. Choices
#: ../libpam-rsa.templates:4001
msgid sha1, none
msgstr 

#. Type: select
#. Description
#: ../libpam-rsa.templates:4002
msgid Type of hashing for the private key filename:
msgstr 

#. Type: select
#. Description
#: ../libpam-rsa.templates:4002
msgid 
Specifies whether the private key's filename should be SHA1 hashed or not. 
The value must be either sha1 or none. This value is case insensitive.
msgstr 

#. Type: string
#. Description
#: ../libpam-rsa.templates:5001
msgid Prompt used by PAM-aware applications:
msgstr 

#. Type: string
#. Description
#: ../libpam-rsa.templates:5001
msgid 
Specifies the prompt that could be presented to a PAM-aware application that 
calls pam_rsa. The value must be less than 128 characters. Note that if 
ask_pass or ask_passphrase argument is not passed to pam_rsa module, then 
the value of pam_prompt is ignored.
msgstr 

#. Type: boolean
#. Description
#: ../libpam-rsa.templates:6001
msgid Log authentication results?
msgstr 

#. Type: boolean
#. Description
#: ../libpam-rsa.templates:6001
msgid 
Specifies whether pam_rsa authentication results should be logged even in 
cases when the result is success. Authentication failures are always logged 
regardless of the value of this option.
msgstr 


signature.asc
Description: Digital signature


Bug#499853: debian release block bug in elisa 0.5.9

2008-10-24 Thread Loïc Minier
On Thu, Oct 23, 2008, Justy Burdick wrote:
 Can anyone from the elisa team comment on this debian bug?
 It looks like a very easy fix, but has had no action for  1 month.

 It's not particularly an easy fix.  What this requires is either
 preparing a new set of elisa uploads, or backporting the fix; I don't
 have the time to do either, preparing uploads of new elisa releases
 currently takes me a painful amount of time to check for updates in
 python imports.

 Now, I should put a Conflicts or Breaks in place to prevent people from
 mixing incompatible versions, but that wont help you run elisa 0.5.

 The reason I've pushed the new pigment is that I new it would require
 going through NEW, and so wanted to get it in experimental ASAP.  If
 you need the old pigment binaries which work with experimental's elisa,
 you can check http://people.dooz.org/~lool/debian/pigment/ and
 /pigment-python.


 BTW, I'd love to get some help reviewing new elisa updates, and
 packaging elisa in general; if you're a DD and you're reading this, I'm
 happy to discuss co-maintenance with you.

-- 
Loïc Minier



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



Bug#502704: [Pkg-acpi-devel] Bug#502704: Bug#502704: Bug#502704: acpid is

2008-10-24 Thread Loïc Minier
On Fri, Oct 24, 2008, Michael Meskes wrote:
 No. For some strange reasons the if [ $MODULES ] works for me as does
 if [ ! -z $MODULES ] but if [ -n $MODULES ] does not.

 Err because you need to quote it!

 if [ -n $MODULES ] becomes if [ -n ] when MODULES is empty; what you
 want is if [ -n $MODULES ] which becomes  if [ -n  ].

 Derrick, could you please add an echo and output $MODULES on your system with
 some boundaries, so we see whether it's empty or maybe containing some empty
 string or whatever? Also could you send us the modules.dep file?

 Or set -x at the top and exec 2/tmp/acpid-log.txt and attach that; I
 think it works but didn't test.

-- 
Loïc Minier



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



Bug#502704: [Pkg-acpi-devel] Bug#502704: Bug#502704: Bug#502704: acpid is

2008-10-24 Thread Michael Meskes
On Fri, Oct 24, 2008 at 10:19:55AM +0200, Loïc Minier wrote:
 On Fri, Oct 24, 2008, Michael Meskes wrote:
  if [ $MODULES ]; then
  modprobe --all --use-blacklist $MODULES 2/dev/null
  fi
 
  Err you probably lack a -n here, but FYI there's already:

No. For some strange reasons the if [ $MODULES ] works for me as does
if [ ! -z $MODULES ] but if [ -n $MODULES ] does not.

 if [ -z $MODULES ]; then
 return
 fi

Ah sorry, missed this.

  I think modprobe --all always returns 0 (which is probably a bug; I've
  reported when I rewrote the init script), so it might be a bogus return
  again which might want to be return 0, but I don't think so.

Probably not. From what I understood the modprobe is executed on his system, so
the return is not. 

Derrick, could you please add an echo and output $MODULES on your system with
some boundaries, so we see whether it's empty or maybe containing some empty
string or whatever? Also could you send us the modules.dep file?

Michael

-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go VfL Borussia! Go SF 49ers! Use Debian GNU/Linux! Use PostgreSQL!



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



Bug#323803: Will be fixed in 0.95

2008-10-24 Thread Michael Tautschnig
According to upstream, this will not be fixed in any 0.94 point releases, but
possibly in 0.95.

Best,
Michael



pgpRNgWnilevi.pgp
Description: PGP signature


Bug#492187: Announce of the upcoming NMU for the jffnms package

2008-10-24 Thread Christian Perrier
Dear maintainer of jffnms and Debian translators,

Some days ago, I sent a notice to the maintainer of the jffnms Debian
package, mentioning the status of at least one old po-debconf translation 
update in the BTS.

I announced the intent to build and possibly upload a non-maintainer upload
for this package in order to fix this long-time pending localization
bug as well as all other pending translations.

The package maintainer agreed for the NMU or did not respond in two
weeks, so I will proceed with the NMU.

The full planned schedule is available at the end of this mail.

The package is currently translated to: 
cs de fi fr gl nl pt ru sv vi

Among these, the following translations are incomplete: vi

If you did any of the, currently incomplete, translations you will get
ANOTHER mail with the translation to update.

Other translators also have the opportunity to create new translations
for this package. Once completed, please send them as a bug report
against the jffnms package so I can incorporate them in the build.

The deadline for receiving updates and new translations is Thursday, October 
30, 2008. If you
are not in time you can always send your translation to the BTS.

The POT file is attached to this mail.

If the maintainer objects to this process I will immediately abort my NMU
and send him/her all updates I receive.

Otherwise the following will happen (or already has):

 Sunday, October 19, 2008   : send the first intent to NMU notice to
 the package maintainer.
 Friday, October 24, 2008   : send this notice
 Thursday, October 30, 2008   : (midnight) deadline for receiving 
translation updates
 Friday, October 31, 2008   : build the package and upload it to 
DELAYED/2-day
 send the NMU patch to the BTS
 Sunday, November 02, 2008   : NMU uploaded to incoming

Thanks for your efforts and time.

-- 


-- 


# 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.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-01-21 18:53+1100\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME [EMAIL PROTECTED]\n
Language-Team: LANGUAGE [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: error
#. Description
#: ../templates:1001
msgid jffnms user already exists
msgstr 

#. Type: error
#. Description
#: ../templates:1001
msgid 
The preinstall script for JFFNMS tried to create a JFFNMS user but there was 
already a user of that name so it has aborted installation.  Please read /
usr/share/doc/jffnms/README.Debian for more information.
msgstr 

#. Type: error
#. Description
#: ../templates:2001
msgid jffnms group already exists
msgstr 

#. Type: error
#. Description
#: ../templates:2001
msgid 
The preinstall script for JFFNMS tried to create a JFFNMS group but there 
was already a group of that name so it has aborted installation.  Please 
read /usr/share/doc/jffnms/README.Debian for more information.
msgstr 

#. Type: string
#. Description
#: ../templates:3001
msgid Days until log files are compressed:
msgstr 

#. Type: string
#. Description
#: ../templates:3001
msgid 
Enter how many days do you want to keep of uncompressed JFFNMS log files. 
The recommended and default value is 2 days.  Setting this value to lower 
than 2 may cause problems. It also doesn't make sense to make this number 
bigger than the number of days until log files deleted.
msgstr 

#. Type: string
#. Description
#: ../templates:4001
msgid Days until log files are deleted:
msgstr 

#. Type: string
#. Description
#: ../templates:4001
msgid 
Enter how many days of log files, compressed or not, do you want to keep. 
The default is 7 days of logs.  It doesn't make any sense to set this lower 
than the number of days of uncompressed files, as the cron job will compress 
the files and then delete them in the same run.
msgstr 


signature.asc
Description: Digital signature


Bug#503272: xmame: [INTL:ja] Update po-debconf template translation (ja.po)

2008-10-24 Thread Hideki Yamane (Debian-JP)
Package: xmame
Version: 0.106-3
Severity: wishlist
Tags: patch l10n

Dear xmame maintainer,

 Here's updated Japanese po-debconf template (ja.po) file.
 Could you apply it, please?

--
Regards,

 Hideki Yamane henrich @ debian.or.jp
 http://wiki.debian.org/HidekiYamane
# Copyright (C) 2006-2008  Bruno Barrera C. [EMAIL PROTECTED]
# This file is distributed under the same license as the xmame package.
# Hideki Yamane (Debian-JP) [EMAIL PROTECTED], 2006-2008.
#
msgid 
msgstr 
Project-Id-Version: xmame 0.106-3\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-10-21 08:54-0300\n
PO-Revision-Date: 2008-10-24 18:14+0900\n
Last-Translator: Hideki Yamane (Debian-JP) [EMAIL PROTECTED]\n
Language-Team: Japanese [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: boolean
#. Description
#: ../xmame-x.templates:1001
msgid Do you want /usr/games/xmame.x11 to be installed SUID root?
msgstr /usr/games/xmame.x11 を root に SUID してインストールしますか?

#. Type: boolean
#. Description
#: ../xmame-x.templates:1001
msgid You have the option of installing xmame.x11 with the SUID bit set.
msgstr xmame.x11 に SUID ビットを設定してインストールするかどうかを選べます。

#. Type: boolean
#. Description
#: ../xmame-x.templates:1001
msgid 
If you make xmame.x11 SUID (i.e privileged), you can use the DGA extension 
of your X server, which is currently the fastest fullscreen method for 
xmame. This could, however, potentially allow xmame to be used during a 
security attack on your computer.  If you are playing network games it is 
recommended that you decline. Otherwise, select this option and  enjoy 
fullscreen games. If you change your mind later, you can run: dpkg-
reconfigure xmame-x.
msgstr 
xmame.x11 を SUID 設定する (つまりは管理者権権を与える) と、xmame で現在最速
のフルスクリーン機能である X サーバの DGA 拡張機能を使えるようになります。し
かしながら、これはあなたのコンピュータ上で xmame をセキュリティ攻撃に使われる
ようにもなりえます。ネットワークゲームを遊んでいる場合は、無視することをお勧
めします。それ以外の場合は、このオプションを選んでフルスクリーンでゲームを楽
しんでください。後で考え直した場合は、以下を実行ください: dpkg-reconfigure xmame-x

#. Type: boolean
#. Description
#: ../xmess-x.templates:1001
msgid Do you want /usr/games/xmess.x11 to be installed SUID root?
msgstr /usr/games/xmess.x11 を root に SUID してインストールしますか?

#. Type: boolean
#. Description
#: ../xmess-x.templates:1001
msgid You have the option of installing xmess.x11 with the SUID bit set.
msgstr xmess.x11 に SUID ビットを設定してインストールするかどうかを選べます。

#. Type: boolean
#. Description
#: ../xmess-x.templates:1001
msgid 
If you make xmess SUID (i.e privileged), you can use the DGA extension of 
your X server, which is currently the fastest fullscreeen method for xmess. 
This could, however, potentially allow xmess to be used during a security 
attack on your computer.  If you are playing network games, it is 
recommended that you decline. Otherwise, accept and enjoy fullscreen games. 
If you change your mind later, you can run: dpkg-reconfigure xmess-x.
msgstr 
xmess を SUID 設定する (つまりは管理者権権を与える) と、xmess で現在最速のフ
ルスクリーン機能である X サーバの DGA 拡張機能を使えるようになります。しかし
ながら、これはあなたのコンピュータ上で xmess をセキュリティ攻撃に使われるよう
にもなりえます。ネットワークゲームを遊んでいる場合は、無視することをお勧めし
ます。それ以外の場合は、このオプションを選んでフルスクリーンでゲームを楽しん
でください。後で考え直した場合は以下を実行ください: dpkg-reconfigure xmess-x


Bug#497668: iceweasel: Archive Manager fails

2008-10-24 Thread Mike Hommey
On Fri, Oct 24, 2008 at 11:28:59AM +0200, Anders Boström [EMAIL PROTECTED] 
wrote:
  AB == Anders Boström [EMAIL PROTECTED] writes:
  MH == Mike Hommey [EMAIL PROTECTED] writes:
 
  MH On Wed, Sep 03, 2008 at 04:19:45PM +0200, Anders Boström wrote:
   Package: iceweasel
   Version: 3.0.1-1
   Severity: normal
   
   I've used file-roller as archive manager for many file-types (tar, zip
   etc) with firefox 2.x . After upgrade to iceweasel 3.0.1, it fails.
   
   I get a requester with the title Download Error and the following
   text:
   
   /tmp/nodeinfo_report_iov027-20080903-084529-CEST-12.tar could not be 
 opened, because the associated helper application does not exist. Change the 
 association in your preferences.
   
   The selected Action for the Content Type tar, and many other types,
   is Use Archive Manager (default).
   
   If I change the action for tar to point to the application
   /usr/bin/file-roller, it works fine for tar-files (but not zip etc.).
   
   How do I select the Archive Manager??? Why isn't file-roller selected
   as with firefox 2.x?
 
  MH Can you check if it works better with xulrunner-1.9 version 1.9.0.3-1 ?
 
  AB OK, it works with xulrunner-1.9, when Archive Manager is selected for
  AB a type, file-roller is executed.
 
  AB However, I've still not got any answer to one of my questions:
  AB How do I select the Archive Manager?
 
 I'm sorry, but the problem showed up again, with iceweasel 3.0.3-2 and
 xulrunner-1.9 1.9.0.3-1 . I get this message:
 
 /tmp/foo.tar could not be opened, because the associated helper application 
 does not exist. Change the association in your preferences.
 
 And I still don't know how to select the Archive Manager.

In the preferences.

Mike



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



Bug#503274: proftpd-dfsg: Please enable configuration option --enable-nls

2008-10-24 Thread Stefan
Package: proftpd-dfsg
Version: 1.3.1-15

Hi,

I would like you to consider enabling the configuration option --enable-nls.
The UTF8 encoding support won't work as it should if proftpd is not compiled 
with this option.
proftpd won't reply correctly to the client when it asks if the server uses 
UTF8 so non english characters is not displayed correctly. You have to force 
the client to use UTF8 to solve this if proftpd isn't compiled 
with --enable-nls

I've compiled it myself with this flag enabled since 1.3.1-11 and I haven't 
seen any problem at all.



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



Bug#503275: Inconsistent priorities used in apcupsd syslogging

2008-10-24 Thread Dave Ewart
Package: apcupsd
Version: 3.12.4-2
Severity: normal


When diagnosing an unrelated (and now solved) logging issue with apcupsd
I had cause to look at the code and found that the syslog priorities in
action.c seem inconsistent.  Some more important (IMO) messages have
lower priorities than some routine messages with higher priorities.

action.c (lines 66 to 89):

   UPSCMDMSG event_msg[] = {
  {LOG_CRIT,N_(Power failure.)},
  {LOG_CRIT,N_(Running on UPS batteries.)},
  {LOG_ALERT,   N_(Battery power exhausted.)},
  {LOG_ALERT,   N_(Reached run time limit on batteries.)},
  {LOG_ALERT,   N_(Battery charge below low limit.)},
  {LOG_ALERT,   N_(Reached remaining time percentage limit on 
batteries.)},
  {LOG_ALERT,   N_(Failed to kill the power! Attempting a REBOOT!)},
  {LOG_ALERT,   N_(Initiating system shutdown!)},
  {LOG_ALERT,   N_(Power is back. UPS running on mains.)},
  {LOG_ALERT,   N_(Users requested to logoff.)},
  {LOG_ALERT,   N_(Battery failure. Emergency.)},
  {LOG_CRIT,N_(UPS battery must be replaced.)},
  {LOG_CRIT,N_(Remote shutdown requested)},
  {LOG_WARNING, N_(Communications with UPS lost.)},
  {LOG_WARNING, N_(Communications with UPS restored.)},
  {LOG_ALERT,   N_(UPS Self Test switch to battery.)},
  {LOG_ALERT,   N_(UPS Self Test completed.)},
  {LOG_CRIT,N_(Master not responding.)},
  {LOG_WARNING, N_(Connect from master.)},
  {LOG_CRIT,N_(Mains returned. No longer on UPS batteries.)},
  {LOG_CRIT,N_(Battery disconnected.)},
  {LOG_CRIT,N_(Battery reattached.)}
   };

First of all note that LOG_ALERT is more severe than LOG_CRIT.  It
therefore seems wrong that the UPS self test messages, for example, have
a higher priority (LOG_ALERT) than Power failure, which is only
LOG_CRIT.  The former is part of the routine operation of a UPS, yet the
latter is a failure condition.

I'm not really in a position to suggest appropriate priorities here, but
it does look as if there is some inconsistency.

If I've missed the reasoning behind the given priorities, it would be
useful to know why; this will be educational :-)


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

Versions of packages apcupsd depends on:
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libsnmp9   5.2.3-7etch2  NET SNMP (Simple Network Managemen
ii  libssl0.9.80.9.8c-4etch3 SSL shared libraries
ii  libwrap0   7.6.dbs-13Wietse Venema's TCP wrappers libra

apcupsd recommends no packages.

-- no debconf information



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



Bug#503268: udev: when remove series of lvm snapshots show device errors

2008-10-24 Thread Marco d'Itri
On Oct 24, Grzegorz Kolorz [EMAIL PROTECTED] wrote:

 /dev/dm-19: stat failed: No such file or directory
 Path /dev/dm-19 no longer valid for device(254,19)
What shows these errors?

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#503186: plink -L listens to IPv6 interface only!

2008-10-24 Thread Eduard Bloch
Hello Jacob,

could you please tell us exactly what you are trying to say? In the Ubuntu bug 
report you mention, it's clearly stated that that fix is NOT included in 0.60 
and might be ported from some development stage into 0.60. And I see no 
progress in this process since July.

And in fact, 0.60-3 (Debian package version) is also broken here, just tested. 

So, are we still blundering around in the swamp?
-- 
Pt! Schon vom neuen GMX MultiMessenger gehört? Der kann`s mit allen: 
http://www.gmx.net/de/go/multimessenger



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



Bug#495144: critical

2008-10-24 Thread Loïc Minier
On Thu, Oct 23, 2008, Andreas J Guelzow wrote:
 Any bug that causes the equivalent of a crash is critical. I you think
 that one can do without that menu item then remove the menu item.

 Check the bugs.debian.org documentation on bug severities, critical
 has a particular meaning.

 We could argue for hours on bug severities; consider that = serious
 severity bugs are considered release critical, I'm not sure whether we
 want to block release on this particular bug.

 In all cases, best use of your time is tracking a patch which prevents
 the crash.

-- 
Loïc Minier



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



Bug#503278: xmame: [INTL:it] Italian debconf templates translation

2008-10-24 Thread Luca Monducci
Package: xmame
Severity: wishlist
Tags: patch l10n

Please update the italian debconf templates translation (attached).

Thanks,
Luca

it.po
Description: Binary data


Bug#503143:

2008-10-24 Thread Tim Richardson
This bug is avoided if you choose the option
No restart required

in the Edit Command dialog.

You can verify this in the file
/etc/gdm/gdm.conf

At the end of the file, you should see something like

CustomCommandNoRestart0=true






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



Bug#502480: More info

2008-10-24 Thread Mark Hindley
On Thu, Oct 23, 2008 at 09:18:20AM -0700, Sebastien Delafond wrote:
 On Wed, Oct 22, 2008 at 08:19:16PM +0100, Mark Hindley wrote:
  I didn't like the try again part of the patch. The point of this
  function is to prevent a DOS. I could see that by keeping a socket
  open, but not sending anything, you could create exactly that.
 
 gotcha.
 
  I really wish I could reproduce this -- it would help a lot.
  Alternatively, debug info from you from when it does. Can you enable it
  to catch the next one?
  
  The 400 error is to the client not just in the log?
 
 it's actually only on the client side; the server just gets an empty
 line and doesn't even show the request for that particular debian
 package. On the client it looks like:
 
   aptmethod got 'http://debian/debian/pool/main/x/xfce4/xfce4_4.4.2.1_all.deb'
   aptmethod got 
 'http://debian/debian/pool/main/x/xfce4-session/xfce4-session_4.4.2-6_i386.deb'
   aptmethod error receiving 
 'http://debian/debian/pool/main/x/xfonts-100dpi/xfonts-100dpi_1.0.0-4_all.deb':
   '400 No Request Recieved'
   aptmethod got 
 'http://debian/debian/pool/main/x/xfonts-75dpi/xfonts-75dpi_1.0.0-4_all.deb'

What client is this?

Mark



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



Bug#502704: [Pkg-acpi-devel] Bug#502704: Bug#502704: Bug#502704: acpid is

2008-10-24 Thread Michael Meskes
On Fri, Oct 24, 2008 at 11:00:28AM +0200, Loïc Minier wrote:
  No. For some strange reasons the if [ $MODULES ] works for me as does
  if [ ! -z $MODULES ] but if [ -n $MODULES ] does not.
 
  Err because you need to quote it!
  ...

Sorry, incorrectly pasted (in fact I typed this) into my email. But since this
doesn't seem to be the solution there is no need to check what went wrong in my
test anyway.

Michael
-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
ICQ: 179140304, AIM/Yahoo: michaelmeskes, Jabber: [EMAIL PROTECTED]
Go VfL Borussia! Go SF 49ers! Use Debian GNU/Linux! Use PostgreSQL!



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



Bug#503276: [calendar] bug #137059 reappeared

2008-10-24 Thread Massimo Dal Zotto
Package: bsdmainutils
Version: 6.1.10ubuntu2
Severity: normal

I found the same problem described in bug #137059. If I have a calendar
entry containing the word 'linux' (or 'unix') calendar translates it to
'1', for example:

$ cat ~/.calendar
Oct 25  italian linux day

$ calendar -f ~/.calendar
Oct 25  italian 1 day

It seems that the -undef cpp option added in version 5.20020211-4
in order to fix bug #137059 has been removed in later versions.

See also: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=137059

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

Kernel: Linux 2.6.24-21-generic (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages bsdmainutils depends on:
ii  bsdutils   1:2.13.1-5ubuntu2 Basic utilities from 4.4BSD-Lite
ii  cpp4:4.2.3-1ubuntu6  The GNU C preprocessor (cpp)
ii  debianutils2.28.2-0ubuntu1   Miscellaneous utilities specific t
ii  libc6  2.7-10ubuntu4 GNU C Library: Shared libraries
ii  libncurses55.6+20071124-1ubuntu2 Shared libraries for terminal hand

bsdmainutils recommends no packages.

-- no debconf information



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



Bug#503186: [putty] Bug#503186: plink -L listens to IPv6 interface only!

2008-10-24 Thread Jacob Nevins
Eduard Bloch writes:
 could you please tell us exactly what you are trying to say? In the
 Ubuntu bug report you mention, it's clearly stated that that fix
 is NOT included in 0.60

Yes. We have fixed the bug in upstream SVN since 0.60 was released.
The fix has not yet gone into a new release.

 and might be ported from some development stage into 0.60.
 And I see no progress in this process since July.

We (upstream) can't port it to 0.60 because that's already been
released. It'll almost certainly be fixed in a forthcoming 0.61,
whatever other content that release has, but we don't have a schedule
for that yet.

That was a suggestion to the Ubuntu package maintainer (who, FTAOD,
isn't me) in case they wanted to fix it without waiting for a new
upstream release. It's up to them.

 And in fact, 0.60-3 (Debian package version) is also broken here,
 just tested. 

Yes, that's expected.



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



Bug#503274: proftpd-dfsg: Please enable configuration option --enable-nls

2008-10-24 Thread Francesco P. Lovergine
severity 503274 wishlist
thanks

On Fri, Oct 24, 2008 at 11:33:54AM +0200, Stefan wrote:
 Package: proftpd-dfsg
 Version: 1.3.1-15
 
 Hi,
 
 I would like you to consider enabling the configuration option --enable-nls.
 The UTF8 encoding support won't work as it should if proftpd is not compiled 
 with this option.
 proftpd won't reply correctly to the client when it asks if the server uses 
 UTF8 so non english characters is not displayed correctly. You have to force 
 the client to use UTF8 to solve this if proftpd isn't compiled 
 with --enable-nls
 
 I've compiled it myself with this flag enabled since 1.3.1-11 and I haven't 
 seen any problem at all.
 

That is set off on 1.3.1 because there are not gettext files available but 
for english. Next 1.3.2 at least will have also italian and german and possibly
others. So it is expected to be activated in the next major release.


-- 
Francesco P. Lovergine



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



Bug#415996: option to have qemu chroot() into the target filesystem

2008-10-24 Thread Bernhard Reutner-Fischer

A patch was in this thread:
http://www.mail-archive.com/[EMAIL PROTECTED]/msg16297.html

Rob promised to respin it tomorrow and resend it in to the list.
thanks



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



Bug#503267: texlive-base fails to install

2008-10-24 Thread Norbert Preining

severity 503267 normal
tags 503267 + unreproducible
thanks

Hi Daniel,

very strange ... 

 /usr/bin/fmtutil: line 336: /texconfig/tcfmgr: No such file or directory
 fmtutil: config file `fmtutil.cnf' not found.

Output of printenv as root please. do you have local cfg changes (md5sums 
of /etc/texmf/...)? Please use reportbug we have a bug script to do all 
this stuff.


Does /root/.texmf* exist?

Tagging unreproducible, texlive-base has not changed, it must be your local 
setup

Thanks

---
Dr. Norbert Preining [EMAIL PROTECTED]   Vienna University of Technology
Debian Developer [EMAIL PROTECTED] Debian TeX 
Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 
B094
---




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



Bug#498284: puppet: initscript ignore /etc/default/puppet

2008-10-24 Thread Adrian Bridgett
Another reason for obeying START is when you do an update of puppet
package.  If it doesn't obey START it will run puppet and possibly
apply a bunch of changes to a server.   I'm paranoid and on production
systems _always_ run puppet in --noop mode before running live. 

Thanks,

Adrian



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



Bug#497668: iceweasel: Archive Manager fails

2008-10-24 Thread Anders Boström
 AB == Anders Boström [EMAIL PROTECTED] writes:
 MH == Mike Hommey [EMAIL PROTECTED] writes:

 MH On Wed, Sep 03, 2008 at 04:19:45PM +0200, Anders Boström wrote:
  Package: iceweasel
  Version: 3.0.1-1
  Severity: normal
  
  I've used file-roller as archive manager for many file-types (tar, zip
  etc) with firefox 2.x . After upgrade to iceweasel 3.0.1, it fails.
  
  I get a requester with the title Download Error and the following
  text:
  
  /tmp/nodeinfo_report_iov027-20080903-084529-CEST-12.tar could not be 
  opened, because the associated helper application does not exist. Change 
  the association in your preferences.
  
  The selected Action for the Content Type tar, and many other types,
  is Use Archive Manager (default).
  
  If I change the action for tar to point to the application
  /usr/bin/file-roller, it works fine for tar-files (but not zip etc.).
  
  How do I select the Archive Manager??? Why isn't file-roller selected
  as with firefox 2.x?

 MH Can you check if it works better with xulrunner-1.9 version 1.9.0.3-1 ?

 AB OK, it works with xulrunner-1.9, when Archive Manager is selected for
 AB a type, file-roller is executed.

 AB However, I've still not got any answer to one of my questions:
 AB How do I select the Archive Manager?

I'm sorry, but the problem showed up again, with iceweasel 3.0.3-2 and
xulrunner-1.9 1.9.0.3-1 . I get this message:

/tmp/foo.tar could not be opened, because the associated helper application 
does not exist. Change the association in your preferences.

And I still don't know how to select the Archive Manager.

/ Anders



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



Bug#503273: xserver-xorg-video-intel: Random lockups

2008-10-24 Thread René Seindal
Package: xserver-xorg-video-intel
Version: 2:2.3.2-2+lenny5
Severity: normal


I have the X server lockup randomly, sometimes at the GDM greeter, sometimes 
later. the whole system blocks and I have to turn off power and reboot.

It happens with all version of X.org and xserver-xorg-video-intel I have tried.

It doesn't happen with kernel 2.6.24 but it does with all later kernels.

I suspect it is an X driver issue, as it only happens with X.org running, but 
otherwise I have no ideas.

There are no messages in the X.org log or in the system logs.

I'm stymied but I'll be happy to supply whatever extra information you might 
find useful. There are other similar bugs, but I am not able to judge if this 
is a dublicate of some other. If it is, please tell me where to add whatever 
information I might have.

Sorry to be so vague :-(



-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

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

X server symlink status:
lrwxrwxrwx 1 root root 13 26 jan  2008 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718484 30 sep 02:06 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 
Integrated Graphics Controller (rev 0c)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2027  7 okt 10:56 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type man xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout dk
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ImPS/2
Option  Emulate3Buttons   true
EndSection

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SendCoreEventstrue
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  HorizScrollDelta  0
EndSection

Section Device
Identifier  Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller
Driver  intel
BusID   PCI:0:2:0
Option  AccelMethod XAA
Option  XAANoOffScreenPixmaps true
EndSection

Section Monitor
Identifier  Generic Monitor
Option  DPMS
HorizSync   30-70
VertRefresh 50-160
EndSection

Section Screen
Identifier  Default Screen
Device  Intel Corporation Mobile GM965/GL960 Integrated 
Graphics Controller
Monitor Generic Monitor
DefaultDepth24
EndSection

Section ServerLayout
Identifier  Default Layout
Screen  Default Screen
InputDevice Generic Keyboard
InputDevice Configured Mouse
InputDevice Synaptics Touchpad
EndSection

Section Extensions
Option Composite enable
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 38161 11 jul 16:34 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 39982 24 okt 10:59 /var/log/Xorg.0.log

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

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-7)
Current Operating System: Linux selinunte.seindal.dk 2.6.26-1-686 #1 SMP Thu 
Oct 9 15:18:09 UTC 2008 i686
Build Date: 30 September 2008  01:48:58AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Fri Oct 24 10:59:18 2008
(==) Using config file: /etc/X11/xorg.conf
(==) 

Bug#503236: Crash on trying to change the Type of a MenuItem

2008-10-24 Thread Josselin Mouette
Le jeudi 23 octobre 2008 à 19:29 -0200, Marco Túlio Gontijo e Silva a
écrit :
 * Start glade.
 * Add a window.
 * Add a Menu Bar
 * Right click in the window, click on Edit
 * Add a new Menu Item
 * Change the Menu Item's Name to _Channel
 * Click on the Type's Combo Box
 
 Crash!

Sorry but I cannot reproduce that. Could you please provide us with a
backtrace? See http://wiki.debian.org/HowToGetABacktrace for more
information.

Thanks,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Bug#497668: iceweasel: Archive Manager fails

2008-10-24 Thread Anders Boström
 MH == Mike Hommey [EMAIL PROTECTED] writes:

 MH On Fri, Oct 24, 2008 at 11:28:59AM +0200, Anders Boström [EMAIL 
PROTECTED] wrote:
   AB == Anders Boström [EMAIL PROTECTED] writes:
   MH == Mike Hommey [EMAIL PROTECTED] writes:
  
 MH On Wed, Sep 03, 2008 at 04:19:45PM +0200, Anders Boström wrote:
   Package: iceweasel
   Version: 3.0.1-1
   Severity: normal
   
   I've used file-roller as archive manager for many file-types (tar, zip
   etc) with firefox 2.x . After upgrade to iceweasel 3.0.1, it fails.
   
   I get a requester with the title Download Error and the following
   text:
   
   /tmp/nodeinfo_report_iov027-20080903-084529-CEST-12.tar could not be 
   opened, because the associated helper application does not exist. 
   Change the association in your preferences.
   
   The selected Action for the Content Type tar, and many other types,
   is Use Archive Manager (default).
   
   If I change the action for tar to point to the application
   /usr/bin/file-roller, it works fine for tar-files (but not zip etc.).
   
   How do I select the Archive Manager??? Why isn't file-roller selected
   as with firefox 2.x?
  
 MH Can you check if it works better with xulrunner-1.9 version 1.9.0.3-1 ?
  
 AB OK, it works with xulrunner-1.9, when Archive Manager is selected for
 AB a type, file-roller is executed.
  
 AB However, I've still not got any answer to one of my questions:
 AB How do I select the Archive Manager?
  
  I'm sorry, but the problem showed up again, with iceweasel 3.0.3-2 and
  xulrunner-1.9 1.9.0.3-1 . I get this message:
  
  /tmp/foo.tar could not be opened, because the associated helper application 
  does not exist. Change the association in your preferences.
  
  And I still don't know how to select the Archive Manager.

 MH In the preferences.

Can you please be more specific! I can't find it in iceweasel's
preferences. I think it should show up under Applications, but it
doesn't, at least not for me.

/ Anders



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



Bug#503255: sbcl: Error using null pointer in ffi

2008-10-24 Thread Luca Capello
Hi there!

For the d-release list: this is a request about how to fix the bug below
in time for lenny.

For everyone: please keep at least the bug report cc:ed, no subscription
needed, TIA.

On Fri, 24 Oct 2008 01:48:53 +0200, David Matthew Mattli wrote:
 Package: sbcl
 Version: 1:1.0.18.0-1
 Severity: important

 Whenever uses sbcl uses a null pointer in a cffi call it gives the following 
 error:

 #.(SB-SYS:INT-SAP #X) fell through ETYPECASE expression.
Wanted one of (CHARACTER SYMBOL INTEGER). 

 This problem was not present in sbcl-1.0.17 and is fixed in 1.0.19.14. 
 Updating sbcl to the latest version will fix this bug. This bug was reported 
 and a fix reported on the sbcl-devel list.

 http://groups.google.com/group/sbcl-devel/browse_thread/thread/b67a3e18bb7a7dea

David, first of all thank you for the report.

I haven't looked yet at it in details, but is there any upstream bug
opened, maybe with a patch that can backported to SBCL-1.0.17?  In that
case the fix can be easily applied to the version already present in
lenny and then the migration will be smoother.

On the contrary, if backporting the fix is not so trivial, let's see if
the RM accepts a new source upload for lenny.

Thx, bye,
Gismo / Luca


pgp8E2htE0qTf.pgp
Description: PGP signature


Bug#409076: wireless-essid setting in /etc/network/interfaces needed?

2008-10-24 Thread Sven Joachim
Hi,

here at home I don't need the wireless-essid setting in
/etc/network/interfaces to connect to the AP with a hidden SSID.

The following settings work for me both on my desktop with the rt73usb
driver and on my laptop with the b43 driver:

iface wlan0 inet dhcp
  wpa-driver wext
  wpa-ap-scan 1
  wpa-scan-ssid 1
  wpa-ssid hidden
  wpa-proto WPA RSN
  wpa-pairwise CCMP
  wpa-group CCMP
  wpa-key-mgmt WPA-PSK
  wpa-psk top-secret

I don't have a wpa_supplicant.conf on these systems.

Regards,
Sven



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



Bug#503277: debsums: [INTL:fi] Updated Finnish translation of the debconf templates

2008-10-24 Thread Esko Arajärvi
Package: debsums
Severity: wishlist
Tags: l10n patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Sorry for being late...

Please include attached updated translation fi.po to the package.

Regards,
Esko Arajärvi

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

iEYEARECAAYFAkkBmzsACgkQejjRZhTfFSzqMQCdGbkeKBDCrqe0RIwqlFO7AtDk
qwIAnRBAnjs/McQy+O/IByay960YKfZk
=BgQB
-END PGP SIGNATURE-
msgid 
msgstr 
Project-Id-Version: debsums\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2008-10-14 10:35+1300\n
PO-Revision-Date: 2008-10-24 12:52+0200\n
Last-Translator: Esko Arajärvi [EMAIL PROTECTED]\n
Language-Team: Finnish [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=utf-8\n
Content-Transfer-Encoding: 8bit\n
X-Poedit-Language: Finnish\n
X-Poedit-Country: FINLAND\n

#. Type: boolean
#. Description
#: ../templates:1001
#| msgid Should md5sum files be automatically generated by apt-get?
msgid Should debsums files be generated automatically by apt-get?
msgstr Tulisiko apt-getin luoda automaattisesti debsums-tiedostot?

#. Type: boolean
#. Description
#: ../templates:1001
#| msgid 
#| Not all packages contain md5sum information as is.  However, debsums can 
#| be installed so that apt will automatically generate md5sum files of 
#| installed packages.  This may be useful for checking system integrity 
#| later, though it should not be relied on as a security measure.
msgid Not all packages contain debsums information. However, apt can be configured to generate debsums files for installed packages automatically. This may be useful for checking system integrity later, but it should not be relied upon as a security measure.
msgstr Kaikki paketit eivät sisällä debsums-tietoja. Ohjelman apt avulla voidaan kuitenkin kaikille asennetuille paketeille luoda debsums-tiedostot automaattisesti. Tästä voi olla hyötyä tarkistettaessa järjestelmän eheyttä myöhemmin. Tätä ei kuitenkaan tulisi käyttää tietoturvatarkistuksena.

#. Type: select
#. Choices
#: ../templates:2001
msgid never
msgstr ei koskaan

#. Type: select
#. Choices
#: ../templates:2001
msgid daily
msgstr päivittäin

#. Type: select
#. Choices
#: ../templates:2001
msgid weekly
msgstr viikottain

#. Type: select
#. Choices
#: ../templates:2001
msgid monthly
msgstr kuukausittain

#. Type: select
#. Description
#: ../templates:2002
#| msgid Run daily debsums security check?
msgid Schedule for debsums security checks:
msgstr debsums-tietoturvatarkistusten tiheys:

#. Type: select
#. Description
#: ../templates:2002
#| msgid 
#| By default, a cronjob will verify every package's checksum information 
#| every night to make sure that none of the files have changed since the 
#| package was installed.
msgid A cronjob can be set to regularly verify every package's checksum information to make sure that none of the files have changed since the package was installed.
msgstr Kaikkien pakettien tarkistussummat voidaan tarkistaa säännöllisesti cron-työn avulla. Näin varmistetaan ettei mikään tiedosto ole muuttunut paketin asennuksen jälkeen.

#. Type: select
#. Description
#: ../templates:2002
msgid This security check takes some time to run but is highly recommended.
msgstr Tämä tietoturvatarkistus vie jonkin aikaa, mutta se ajaminen on erittäin suositeltavaa.



Bug#377200: strace: Breaks multithreaded program with -f -p pid

2008-10-24 Thread Timo Juhani Lindfors
Hi,

the patch works here! When I strace -f -p pid a python program with
two threads hitting ctrl-c does not leave the program in stopped
state. Thank you, could this be applied to the normal package?





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



Bug#503204: gcc-4.1: erroneously emits warning on C99-required #pragma STDC FENV_ACCESS

2008-10-24 Thread Matthew Vernon

Hi,
Bastian Blank wrote:

It's obviously buggy to emit a warning on standards-mandated behaviour! 
I know you can turn this warning off with -Wno-unknown-pragmas, but 
that's not something you want to be doing in production code.


Please show the part of the standard. A compiler may produce warnings
without reason.


Was the section I quoted in my original bug report not sufficient? 
Paragraph 7.6.1.2 of C99 says [again]:


If part of a program tests floating-point status flags, sets 
floating-point control modes, or runs under non-default mode settings, 
but was translated with the state for the FENV_ACCESS pragma off, *the 
behaviour is undefined*. [emphasis mine]


These are things that many correct programs will want to do. For 
example, SuSv3 has this to say about pow():


An application wishing to check for error situations should set errno 
to zero and call feclearexcept(FE_ALL_EXCEPT) before calling these 
functions. On return, if errno is non-zero or fetestexcept(FE_INVALID | 
FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW) is non-zero, an error has 
occurred.[1]


Gcc as-is, will encourage (quite strongly, since may people will compile 
with -Wall, +/- -Werror) users to write code that calls feclearexcept() 
and suchlike without using #pragma STDC FENV_ACCESS ON first. This is 
undefined behaviour, according to C99! It seems clear to me that this is 
a bug in gcc.


Regards,

Matthew

[1] http://www.opengroup.org/onlinepubs/009695399/functions/pow.html



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



Bug#497668: iceweasel: Archive Manager fails

2008-10-24 Thread Mike Hommey
On Fri, Oct 24, 2008 at 12:41:45PM +0200, Anders Boström [EMAIL PROTECTED] 
wrote:
  MH In the preferences.
 
 Can you please be more specific! I can't find it in iceweasel's
 preferences. I think it should show up under Applications, but it
 doesn't, at least not for me.

Try removing the mimeTypes.rdf file somewhere in ~/.mozilla/firefox.

Mike



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



Bug#291565: Bug#292169: A first iteration patch to fix this bug

2008-10-24 Thread Julien Danjou
At 1224823738 time_t, Kumar Appaiah wrote:
 I hope you are able to use the patch to fix these bugs. If you need me
 to do something more, please tell me (anything except learning Perl! ;-)).

I've at least push it. I've no time nor interest to test and check that,
so I'll trust you on this one.

I'll be in the next release.

Cheers,
-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#498284: puppet: initscript ignore /etc/default/puppet

2008-10-24 Thread Matt Palmer
On Fri, Oct 24, 2008 at 10:59:15AM +0100, Adrian Bridgett wrote:
 Another reason for obeying START is when you do an update of puppet
 package.  If it doesn't obey START it will run puppet and possibly
 apply a bunch of changes to a server.   I'm paranoid and on production
 systems _always_ run puppet in --noop mode before running live. 

invoke-rc.d takes care of this situation.  If puppet isn't using this
mechanism, then that's a bug.

- Matt



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



Bug#502821: Enhances oldsys-preseed patch for the DNS-323

2008-10-24 Thread Matt Palmer
A better patch, based on Martin Michlmayr's feedback, is attached.  Enjoy!

- Matt
unchanged:
--- a/installer/build/pkg-lists/netboot/network-console/arm/orion5x.cfg
+++ b/installer/build/pkg-lists/netboot/network-console/arm/orion5x.cfg
@@ -7,6 +7,8 @@ ext2-modules-${kernel:Version}
 ext3-modules-${kernel:Version}
 # needed by oldsys-preseed on the Kurobox Pro
 jffs2-modules-${kernel:Version}
+# needed by oldsys-preseed on the DNS-323
+minix-modules-${kernel:Version}
 # To control the LED and beeper on QNAP devices
 input-modules-${kernel:Version}
 qcontrol-udeb
only in patch2:
unchanged:
--- b/packages/oldsys-preseed/functions
+++ b/packages/oldsys-preseed/functions
@@ -104,6 +104,15 @@
 	echo $1 | grep ^$2= | sed s/^$2=//
 }
 
+# Get the value from a string in the form of var = value from a file.
+# Named for the sib.conf file on the DNS-323 that this function was
+# originally written for.
+# $1 = file to read
+# $2 = var to read
+get_sib_var() {
+	grep ^$2[[:space:]]*= $1 |sed s/^$2[[:space:]]*=[[:space:]]*\\(.*\)\[[:space:]]*$/\1/
+}
+
 # Add a string to a variable; deals with the fact when a string is empty
 # $1 = variable name
 # $2 = string
@@ -143,6 +152,19 @@
 	DOMAIN=$(get_var $sysconf domain_name)
 }
 
+# Parse the sib.conf file, as found in the Dlink DNS-323
+# $1 = path to sib.conf
+parse_sib_conf() {
+	if [ $(get_sib_var $1 CF-IP-DHCP-ENABLE) = 0 ]; then
+		NET_CONFIG=static
+	fi
+	IPADDRESS=$(get_sib_var $1 CF-IP-STATIC-IP)
+	NETMASK=$(get_sib_var $1 CF-IP-STATIC-IP-NETMASK)
+	GATEWAY=$(get_sib_var $1 CF-IP-STATIC-IP-GATEWAY)
+	var_add NAMESERVERS $(get_sib_var $1 CF-IP-DNS1)
+	var_add NAMESERVERS $(get_sib_var $1 CF-IP-DNS2)
+	HOSTNAME=$(get_sib_var $1 CF-SYS-MODEL-STR)
+}
 
 # Generating
 
only in patch2:
unchanged:
--- b/packages/oldsys-preseed/oldsys-preseed
+++ b/packages/oldsys-preseed/oldsys-preseed
@@ -231,6 +231,27 @@
 			fi
 			umount $path/sda1 || true
 			rmdir $path/sda1 $path || true
+		elif echo $machine | grep -q ^D-Link DNS-323; then
+			check_file /proc/mtd
+			rootfs=$(get_mtdblock MTD1)
+			if [ -z $rootfs ]; then
+log Can't find rootfs MTD partition
+exit 0
+			fi
+
+			INTERFACE=eth0
+			path=/tmp/oldsys-preseed
+			mkdir -p $path/rootfs
+			mount -t minix -o ro /dev/$rootfs $path/rootfs
+			parse_sib_conf $path/rootfs/sib.conf
+			umount $path/rootfs
+			sanity_check_static_config
+			if [ $NET_CONFIG != static ]; then
+IPADDRESS=192.168.0.32
+NETMASK=255.255.255.0
+GATEWAY=192.168.0.1
+[ -z $NAMESERVERS ]  NAMESERVERS=192.168.0.1
+			fi
 		else
 			exit_unknown
 		fi
only in patch2:
unchanged:
--- /dev/null
+++ b/packages/oldsys-preseed/tests/arm/dns323-static.preseed
@@ -0,0 +1,8 @@
+d-i netcfg/choose_interface select eth0
+d-i netcfg/get_ipaddress string 192.168.0.2
+d-i netcfg/get_netmask string 255.255.255.0
+d-i netcfg/get_gateway string 192.168.0.254
+d-i netcfg/get_nameservers string 192.168.0.254 192.168.0.255
+d-i netcfg/confirm_static boolean true
+d-i netcfg/disable_dhcp boolean true
+d-i netcfg/get_hostname string home
only in patch2:
unchanged:
--- /dev/null
+++ b/packages/oldsys-preseed/tests/arm/dns323-static.test
@@ -0,0 +1,5 @@
+INTERFACE=eth0
+parse_sib_conf $TEST_DIR/dns323_sib.conf
+sanity_check_static_config
+generate_preseed_file $1
+
only in patch2:
unchanged:
--- /dev/null
+++ b/packages/oldsys-preseed/tests/arm/dns323-dhcp.preseed
@@ -0,0 +1,3 @@
+d-i netcfg/choose_interface select eth0
+d-i netcfg/use_dhcp boolean true
+d-i netcfg/get_hostname string home
only in patch2:
unchanged:
--- /dev/null
+++ b/packages/oldsys-preseed/tests/arm/dns323-dhcp.test
@@ -0,0 +1,4 @@
+INTERFACE=eth0
+parse_sib_conf $TEST_DIR/dns323_dhcp_sib.conf
+sanity_check_static_config
+generate_preseed_file $1
only in patch2:
unchanged:
--- /dev/null
+++ b/packages/oldsys-preseed/tests/arm/dns323-dhcp_sib.conf
@@ -0,0 +1,29 @@
+CF-SYS-MODEL-STR = home
+CF-WEB-IDLE-TIME  = 5
+CF-IP-DHCP-ENABLE   = 1
+CF-IP-STATIC-IP = 192.168.0.2
+CF-IP-STATIC-IP-NETMASK = 255.255.255.0
+CF-IP-STATIC-IP-GATEWAY = 192.168.0.254
+CF-IP-DNS1 = 192.168.0.254
+CF-IP-DNS2 = 192.168.0.255
+CF-TIMEZONE = 8
+CF-METHOD = 2
+CF-WEB-USER-IDLE = 5
+CF-TIMESERVER = 216.200.93.8
+CF-WL-WIRELESS = 0
+CF-WL-COMM-MODE = 0
+CF-WL-SSID = 
+CF-WL-CHANNEL = 
+CF-WL-AUTH = 1
+CF-WL-SECURITY-MODE = 1
+CF-WL-ENCRYPTION-MODE = 1
+CF-WL-KEY-FORMATE = 1
+CF-WL-DEFAULT-KEY = 1
+CF-WL-KEY-VALUE-1 = 
+CF-WL-KEY-VALUE-2 = 
+CF-WL-KEY-VALUE-3 = 
+CF-WL-KEY-VALUE-4 = 
+CF-WL-PSK = 
+CF-WL-MACADDRESS = 
+CF-WL-SIGNAL = 
+CF-WL-CONNECT = 1
only in patch2:
unchanged:
--- /dev/null
+++ b/packages/oldsys-preseed/tests/arm/dns323-static_sib.conf
@@ -0,0 +1,29 @@
+CF-SYS-MODEL-STR = home
+CF-WEB-IDLE-TIME  = 5
+CF-IP-DHCP-ENABLE   = 0
+CF-IP-STATIC-IP = 192.168.0.2
+CF-IP-STATIC-IP-NETMASK = 255.255.255.0
+CF-IP-STATIC-IP-GATEWAY = 192.168.0.254
+CF-IP-DNS1 = 192.168.0.254
+CF-IP-DNS2 = 192.168.0.255
+CF-TIMEZONE = 8
+CF-METHOD = 2
+CF-WEB-USER-IDLE = 5
+CF-TIMESERVER = 

Bug#503279: ITP: libjakarta-ecs-java -- Element construction set for various markup languages

2008-10-24 Thread Kalle Kivimaa
Package: wnpp
Severity: wishlist
Owner: Kalle Kivimaa [EMAIL PROTECTED]

* Package name: libjakarta-ecs-java
  Version : 1.4.2
  Upstream Author : Stephen Nagy [EMAIL PROTECTED] and Jon S. Stevens [EMAIL 
PROTECTED]
* URL : http://jakarta.apache.org/ecs/
* License : Apache 2.0
  Programming Lang: Java
  Description : Element construction set for various markup languages

Generation API directly supports HTML 4.0 and XML, but can easily be
extended to create tags for any markup language. Documents are created
through native Java objects instead of gegnerating the markup directly.

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



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



Bug#503280: gnome-terminal: SIGWINCHes when switching tabs

2008-10-24 Thread Adam Borowski
Package: gnome-terminal
Version: 2.22.3-3
Severity: normal


If you have tabs with different font size, every time you switch between
them, all tabs in the current gnome-terminal window will be resized.  The
underlying terminals will receive SIGWINCH and be ioctled to whatever the
foreground tab's size is.

Many programs will lose some of the screen's contents after resizing to
something smaller.  less and the like can redraw everything without harm,
but even for those, unnecessary resizes are a waste of effort.


I attached a minimal program in case the problem is not obvious.

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

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

Versions of packages gnome-terminal depends on:
ii  gnome-terminal-data2.22.3-3  Data files for the GNOME terminal 
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libc6  2.7-14GNU C Library: Shared libraries
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomeui-0   2.20.1.1-2The GNOME 2 libraries (User Interf
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-2  Layout and rendering of internatio
ii  libstartup-notification0   0.9-1 library for program launch feedbac
ii  libvte91:0.16.14-3   Terminal emulator widget for GTK+ 
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  scrollkeeper   0.3.14-16 A free electronic cataloging syste

Versions of packages gnome-terminal recommends:
ii  yelp  2.22.1-8   Help browser for GNOME 2

gnome-terminal suggests no packages.

-- no debconf information
#include stdio.h
#include termios.h
#include sys/ioctl.h
#include sys/select.h
#include signal.h

void winsize()
{
struct winsize ws;

if (ioctl(0, TIOCGWINSZ, ws))
printf(Can't get the win size.\n);
else
printf(%dx%d\n, ws.ws_col, ws.ws_row);
}

int resized=0;

void sigwinch()
{
resized=1;
}

int main()
{
winsize();
signal(SIGWINCH, sigwinch);
while(select(0,0,0,0,0))
if (resized)
winsize(), resized=0;
return 0;
}


Bug#433568: Second that request

2008-10-24 Thread Philipp Kolmann

Hi,

I would really love to see vlan support in DI.

I just had a box with vlans connected already and wanted to install 
debian with latest lenny installer but couldn't because of the lack of 
vlan support.


I'd prefer to have proper deb-conf vlan support, if possible. Shouldn't 
be too hard.


Probably you only need to say which interface and which vlan, add this 
interface and then start the network dlg.


Thanks
Philipp Kolmann



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



Bug#503090: NAS vs. NAC

2008-10-24 Thread Brivaldo Alves da Silva Jr
Yes, NAS != NAC, typo error.

I really want to say NAC.

Thank's
Brivaldo Jr (condector)

2008/10/24 Florian Maier [EMAIL PROTECTED]:
 You wrote I think Debian need to use NAS tecnology too, and no have any
 other implementation
 around this. and cited the packetfence description afterwards: PacketFence
 is a Free and Open Source network access control (NAC) system.

 NAS != NAC

 typo? ;-)







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



Bug#499657: texlive-latex-base not working with apt-listbugs

2008-10-24 Thread Hilmar Preusse
reassign 499657 apt-listbugs
merge 499657 493632
stop

On 21.09.08 LUK ShunTim ([EMAIL PROTECTED]) wrote:

Hi,

 Package: texlive-latex-base
 Version: 2007.dfsg.1-3
 Severity: normal
 
 When upgrading texlive-latex-base and using apt-listbugs to check
 bugs, it chokes the whole installation process with this error:
 
 Error retrieving bug reports from the server with the following error 
 message:
  W: invalid date
 
This bug is already on apt-listbugs since Sun, 3 Aug 2008. Reassign
and merge.

H.
-- 
sigmentation fault



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



Bug#490977: tinymce 3.2.0.2 in unstable, please upload updated wordpress package

2008-10-24 Thread Sven Mueller
subject says it all, my NMU of tinymce is now in unstable, so please
update wordpress now. If you need a sponsor, let me know, but I can't
upload sooner than monday.

regards,
Sven



signature.asc
Description: OpenPGP digital signature


Bug#503281: abiword: Print settings have no effect

2008-10-24 Thread Harri Kiiskinen
Package: abiword
Version: 2.6.4-5
Severity: normal

When printing a longer document, I try to set the following:

1. From the Print Window : Settings : configure - Duplex
2. Print Window - Layout : Handout 2 pages on 1 page

neither has any effect on the printed results, which is one-sided, one page on 
one paper.

The printer is HP LaserJet 4050 PS, over the local network, and it functions 
well in other programs: for 
example,  Adobe Reader sets both of this settings succesfully. Printer has been 
installed using 
system-config-printer. Setting these settings with system-config-printer works 
well.

Best,

Harri K.




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

Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages abiword depends on:
ii  abiword-commo 2.6.4-5efficient, featureful word process
ii  gsfonts   1:8.11+urwcyr1.0.7~pre44-3 Fonts for the Ghostscript interpre
ii  libaiksaurus- 1.2.1+dev-0.12-6   an English-language thesaurus (dev
ii  libaiksaurusg 1.2.1+dev-0.12-6   graphical interface to the Aiksaur
ii  libart-2.0-2  2.3.20-2   Library of functions for 2D graphi
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.7-14 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6.1  The Cairo 2D vector graphics libra
ii  libenchant1c2 1.4.2-3.3  a wrapper library for various spel
ii  libexpat1 2.0.1-4XML parsing C library - runtime li
ii  libfontconfig 2.6.0-1generic font configuration library
ii  libfreetype6  2.3.7-2FreeType 2 font engine, shared lib
ii  libfribidi0   0.10.9-1   Free Implementation of the Unicode
ii  libgcc1   1:4.3.2-1  GCC support library
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgnomecanva 2.20.1.1-1 A powerful object-oriented display
ii  libgnomeprint 2.18.4-1   The GNOME 2.2 print architecture -
ii  libgnomeprint 2.18.2-1   GNOME 2.2 print architecture User 
ii  libgoffice-0- 0.4.2-4Document centric objects library -
ii  libgsf-1-114  1.14.8-1   Structured File Library - runtime 
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libidn11  1.8+20080606-1 GNU libidn library, implementation
ii  libjpeg62 6b-14  The Independent JPEG Group's JPEG 
ii  libloudmouth1 1.4.0-1Lightweight C Jabber library
ii  libncurses5   5.6+20080830-1 shared libraries for terminal hand
ii  libots0   0.5.0-2Open Text Summarizer (library)
ii  libpango1.0-0 1.20.5-2   Layout and rendering of internatio
ii  libpixman-1-0 0.10.0-2   pixel-manipulation library for X a
ii  libpng12-01.2.27-2   PNG library - runtime
ii  libpopt0  1.14-4 lib for parsing cmdline parameters
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  librsvg2-22.22.2-2   SAX-based renderer library for SVG
ii  libsm62:1.0.3-2  X11 Session Management library
ii  libstdc++64.3.2-1The GNU Standard C++ Library v3
ii  libwmf0.2-7   0.2.8.4-6  Windows metafile conversion librar
ii  libwpd8c2a0.8.14-1   Library for handling WordPerfect d
ii  libwpg-0.1-1  0.1.2-1WordPerfect graphics import/conver
ii  libwv-1.2-3   1.2.4-2Library for accessing Microsoft Wo
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxcb-render 0.2.1+git1-1   utility libraries for X C Binding 
ii  libxcb-render 1.1-1.1X C Binding, render extension
ii  libxcb1   1.1-1.1X C Binding
ii  libxft2   2.1.12-3   FreeType-based font drawing librar
ii  libxml2   2.6.32.dfsg-4  GNOME XML library
ii  libxrender1   1:0.9.4-2  X Rendering Extension client libra
ii  zlib1g1:1.2.3.3.dfsg-12  compression library - runtime

Versions of packages abiword recommends:
ii  abiword-help  2.6.4-5online help for AbiWord
ii  abiword-plugin-gramma 2.6.4-5grammar checking plugin for AbiWor
ii  abiword-plugin-mathvi 2.6.4-5equation editor plugin for AbiWord
ii  aspell-de [aspell-dic 20071211-1 German dictionary 

Bug#497668: iceweasel: Archive Manager fails

2008-10-24 Thread Anders Boström
 MH == Mike Hommey [EMAIL PROTECTED] writes:

 MH On Fri, Oct 24, 2008 at 12:41:45PM +0200, Anders Boström [EMAIL 
PROTECTED] wrote:
 MH In the preferences.
  
  Can you please be more specific! I can't find it in iceweasel's
  preferences. I think it should show up under Applications, but it
  doesn't, at least not for me.

 MH Try removing the mimeTypes.rdf file somewhere in ~/.mozilla/firefox.

What problem did you expect this to solve? I tested and removed
mimeTypes.rdf. The result:

I only get a requester asking me if I like to save the tar-file,
without any option to execute an application at all. And under
preferences-Applications, only a few content types are shown, and I
can't add new ones. The add-button is missing!!!

/ Anders



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



Bug#503186: [putty] Bug#503186: plink -L listens to IPv6 interface only!

2008-10-24 Thread Colin Watson
On Fri, Oct 24, 2008 at 10:47:26AM +0100, Jacob Nevins wrote:
 Eduard Bloch writes:
  and might be ported from some development stage into 0.60.
  And I see no progress in this process since July.
 
 We (upstream) can't port it to 0.60 because that's already been
 released. It'll almost certainly be fixed in a forthcoming 0.61,
 whatever other content that release has, but we don't have a schedule
 for that yet.
 
 That was a suggestion to the Ubuntu package maintainer (who, FTAOD,
 isn't me) in case they wanted to fix it without waiting for a new
 upstream release. It's up to them.

I'd missed that, sorry (too many packages, too much bug mail ...). I'll
have a look at doing a backport.

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#503282: tiger_1:3.2.2-7(sparc/unstable): FTBFS on all archs, No rule to make target `clean'.

2008-10-24 Thread Martin Zobel-Helas
Package: tiger
Version: 1:3.2.2-7
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of tiger_1:3.2.2-7 on lebrun by sbuild/sparc 98
 Build started at 20081019-1336

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: debhelper (= 4.1.13), autoconf, po-debconf (= 0.5.0)

[...]

 rm -f build-stamp
 [ -f Makefile ]  /usr/bin/make distclean || /usr/bin/make -f Makefile.in 
 distclean
 make[1]: Entering directory `/build/buildd/tiger-3.2.2'
 cd c  /usr/bin/make clean
 make[2]: Entering directory `/build/buildd/tiger-3.2.2/c'
 rm -f getpermit snefru md5 testsuid realpath
 make[2]: Leaving directory `/build/buildd/tiger-3.2.2/c'
 cd doc  /usr/bin/make clean
 make[2]: Entering directory `/build/buildd/tiger-3.2.2/doc'
 make[2]: *** No rule to make target `clean'.  Stop.
 make[2]: Leaving directory `/build/buildd/tiger-3.2.2/doc'
 make[1]: *** [clean] Error 2
 make[1]: Leaving directory `/build/buildd/tiger-3.2.2'
 make: *** [clean] Error 2
 dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules clean gave error 
 exit status 2

A full build log can be found at:
http://buildd.debian.org/build.php?arch=sparcpkg=tigerver=1:3.2.2-7




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



Bug#503237: Reassigning and patch

2008-10-24 Thread Jonny Lamb
reassign 503237 python-apt
retitle 503237 Should use security.debian.org for lenny/updates
kthxbye

software-properties-gtk gets this information from
/usr/share/python-apt/templates/Debian.info from the python-apt package.

I attach the diff for my NMU which fixes this by forcing all
(lenny|etch|sarge)/updates to use security.debian.org as the default
mirror.

Regards,

-- 
Jonny Lamb, UK
[EMAIL PROTECTED]
diff -Nruad -Nruad python-apt-0.7.7.1.orig/data/templates/Debian.info.in 
python-apt-0.7.7.1+nmu1/data/templates/Debian.info.in
--- python-apt-0.7.7.1.orig/data/templates/Debian.info.in   2008-10-24 
12:24:58.0 +0100
+++ python-apt-0.7.7.1+nmu1/data/templates/Debian.info.in   2008-10-24 
12:44:10.0 +0100
@@ -20,6 +20,8 @@
 
 Suite: lenny/updates
 RepositoryType: deb
+BaseURI: http://security.debian.org/
+MatchURI: security\.debian\.org
 ParentSuite: lenny
 _Description: Security updates
 
@@ -43,6 +45,8 @@
 
 Suite: etch/updates
 RepositoryType: deb
+BaseURI: http://security.debian.org/
+MatchURI: security\.debian\.org
 ParentSuite: etch
 _Description: Security updates
 
@@ -66,6 +70,8 @@
 
 Suite: sarge/updates
 RepositoryType: deb
+BaseURI: http://security.debian.org/
+MatchURI: security\.debian\.org
 ParentSuite: sarge
 _Description: Security updates
 
diff -Nruad -Nruad python-apt-0.7.7.1.orig/debian/changelog 
python-apt-0.7.7.1+nmu1/debian/changelog
--- python-apt-0.7.7.1.orig/debian/changelog2008-10-24 12:24:58.0 
+0100
+++ python-apt-0.7.7.1+nmu1/debian/changelog2008-10-24 12:46:04.0 
+0100
@@ -1,3 +1,11 @@
+python-apt (0.7.7.1+nmu1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * data/templates/Debian.info.in: Set the BaseURI to security.debian.org for
+lenny/updates, etch/updates and sarge/updates. (Closes: #503237)
+
+ -- Jonny Lamb [EMAIL PROTECTED]  Fri, 24 Oct 2008 12:44:33 +0100
+
 python-apt (0.7.7.1) unstable; urgency=low
 
   * data/templates/Debian.info.in:


signature.asc
Description: Digital signature


Bug#503266: subversion: Typo in French translation

2008-10-24 Thread Peter Samuelson

[Cyril Brulebois]
  msgid Network connection closed unexpectedly
 -msgstr La connection réseau a été fermée de façon inattendue
 +msgstr La connexion réseau a été fermée de façon inattendue

Thanks, fixed upstream, will fix in Debian soon.
-- 
Peter Samuelson | org-tld!p12n!peter | http://p12n.org/



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



Bug#502190: setting package to debian-maintainers, tagging 502190

2008-10-24 Thread Anibal Monsalve Salazar
# Automatically generated email from bts, devscripts version 2.10.35
# via tagpending 
#
# debian-maintainers (1.47) UNRELEASED; urgency=low
#
#  * Add Debian maintainer Olly Betts. Closes: #502190 

package debian-maintainers
tags 502190 + pending




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



Bug#459371: this is a gnome keyboard properties bug

2008-10-24 Thread Eddy Petrișor
# I have looked on my second laptop and the wrong caps led behaviour is present
# as same as before, I have caps lock and control switched
# what's different (but seems irrelevant is the fact that I don't have
that many layouts)
reassign 459371 gnome-control-center
found 459371 1:2.22.2.1-2
retitle 459371 caps led wrong behaviour when caps lock is
compose.control (not caps lock)
# shouldn't regressions be serious?
severity 459371 important
thanks

-- 
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein



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



Bug#503283: apt-listbugs seems to ignore critical bugs

2008-10-24 Thread Hilmar Preusse
Package: apt-listbugs
Version: 0.0.94
Severity: minor

I'm not really sure, what is going on here. Hence I file this bug as minor.

Every night runs on my computer a cron job by apt-listbugs, which compares
the status of some critical bugs (which pin some packages using
/etc/apt/preferences) to the status on the web interface. Every night it
tells me, that iceweasel has been fixed, although there are some RC bugs
still sitting on the package (see http://bugs.debian.org/iceweasel).

The actual content of /etc/apt/preferences is attched. The actual output of
/usr/share/apt-listbugs/aptcleanup does not show RC bugs on iceweasel
(attached too). Hence apt-listbugs cleans the RC bugs for iceweasel every
night and pins the same bugs on the next morning, when running
apt-get upgrade. I'm not sure, what is going on here, it could be a
problem with my transparent proxy. Is there a chance to debug it?

Thanks,
  Hilmar

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

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

Versions of packages apt-listbugs depends on:
ii  apt   0.7.10 Advanced front-end for dpkg
ii  libdpkg-ruby1.8   0.3.2  modules/classes for dpkg on ruby 1
ii  libgettext-ruby1.81.91.0-2   Gettext for ruby1.8
ii  libhttp-access2-ruby1.8   2.0.6-3HTTP accessing library for ruby
ii  libruby1.8 [libzlib-ruby1.8]  1.8.7.72-1 Libraries necessary to run Ruby 1.
ii  libxml-parser-ruby1.8 0.6.8-4Interface of expat for the scripti
ii  ruby  4.2An interpreter of object-oriented 

apt-listbugs recommends no packages.

Versions of packages apt-listbugs suggests:
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  dillo [www-browser]   0.8.6-3Small and fast web browser
ii  iceweasel [www-browser]   2.0.0.14-2 lightweight web browser based on M
ii  links [www-browser]   2.2-1  Web browser running in text mode
ii  lynx-cur [www-browser]2.8.7dev10-2.1 Text-mode WWW Browser with NLS sup
ii  reportbug 3.45   reports bugs in the Debian distrib
ii  w3m [www-browser] 0.5.2-2+b1 WWW browsable pager with excellent

-- no debconf information
iceweasel has been fixed
Explanation: Pinned by apt-listbugs at Mon Feb 25 12:53:53 +0100 2008
Explanation:   #465241: bibtex2html has been installed with an unmet dependency
Package: apt
Pin: version 0.7.10
Pin-Priority: 1000

Explanation: Pinned by apt-listbugs at Mon Aug 04 09:41:03 +0200 2008
Explanation:   #492699: fakeroot: includes files and directories not allowed by 
FHS -- /emul/ia32-linux
Package: fakeroot
Pin: version 1.9.5
Pin-Priority: 1000

Explanation: Pinned by apt-listbugs at Mon Feb 25 12:53:53 +0100 2008
Explanation:   #465241: bibtex2html has been installed with an unmet dependency
Package: apt
Pin: version 0.7.10
Pin-Priority: 1000

Explanation: Pinned by apt-listbugs at Mon Aug 04 09:41:03 +0200 2008
Explanation:   #492699: fakeroot: includes files and directories not allowed by 
FHS -- /emul/ia32-linux
Package: fakeroot
Pin: version 1.9.5
Pin-Priority: 1000


Explanation: Pinned by apt-listbugs at Fri Oct 24 13:37:32 +0200 2008
Explanation:   #486354: iceweasel: Iceweasel rc2 does not start
Explanation:   #497789: security bug on iceweasel
Explanation:   #492488: iceweasel: crashes on startup (x64)
Explanation:   #486334: segfault in iceweasel 3.0~rc2-1
Package: iceweasel
Pin: version 2.0.0.14-2
Pin-Priority: 1000


Bug#503284: kboincspy: KBoincSpy assumes online and running status at startup

2008-10-24 Thread Eloi Notario
Package: kboincspy
Version: 0.9.1-5
Severity: normal

KBoincSpy wrongly assumes that localhost BOINC client is configured to 
work online and running computation based on preferences even if either 
network activity or computation had been temporarily suspended.

Steps to reproduce: with BOINC client properly configured and attached 
to a project, suspend computation or network activity and restart 
KBoincSpy (do not close to tray, quit completely). When restarted, the 
Client menu will have not ticked the Work offline or Run 
Mode/Suspended as expected. Selecting Work offline does nothing apart 
of ticking the option, issuing that again does effectively resume 
network activity.

Didn't tried with remote BOINC clients as I have none I could use.

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

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kboincspy depends on:
ii  kdelibs4c2a4:3.5.9.dfsg.1-6  core libraries and binaries for 
al
ii  libc6  2.7-14GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1 GCC support library
ii  libgl1-mesa-glx [libgl 7.0.3-6   A free implementation of the 
OpenG
ii  libglu1-mesa [libglu1] 7.0.3-6   The OpenGL utility library (GLU)
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime 
v
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-1 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension 
librar
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

kboincspy recommends no packages.

Versions of packages kboincspy suggests:
ii  boinc-client  6.2.14-2   core client for the BOINC 
distribu

-- no debconf information

-- 
Atentament,

Eloi Notario.



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



Bug#502435: [SRM] perl stable update to fix an etchnhalf regression

2008-10-24 Thread Philipp Kern
On Sun, Oct 19, 2008 at 05:05:12PM +0300, Niko Tyni wrote:
 #502435 shows a perl regression with Time::HiRes alarms and kernels =
 2.6.22, including the Etch-And-A-Half 2.6.24.
 
 Would it be possible to get an updated version with the attached debdiff
 into the next point release?

Yes, please go ahead with the upload.

Kind regards,
Philipp Kern
-- 
 .''`.  Philipp KernDebian Developer
: :' :  http://philkern.de Release Assistant
`. `'   xmpp:[EMAIL PROTECTED] Stable Release Manager
  `-finger pkern/[EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#503274: proftpd-dfsg: Please enable configuration option --enable-nls

2008-10-24 Thread Stefan
 severity 503274 wishlist
 thanks

 On Fri, Oct 24, 2008 at 11:33:54AM +0200, Stefan wrote:
  Package: proftpd-dfsg
  Version: 1.3.1-15
 
  Hi,
 
  I would like you to consider enabling the configuration option
  --enable-nls. The UTF8 encoding support won't work as it should if
  proftpd is not compiled with this option.
  proftpd won't reply correctly to the client when it asks if the server
  uses UTF8 so non english characters is not displayed correctly. You have
  to force the client to use UTF8 to solve this if proftpd isn't compiled
  with --enable-nls
 
  I've compiled it myself with this flag enabled since 1.3.1-11 and I
  haven't seen any problem at all.

 That is set off on 1.3.1 because there are not gettext files available but
 for english. Next 1.3.2 at least will have also italian and german and
 possibly others. So it is expected to be activated in the next major
 release.

My request for --enable-nls has nothing to do with language support. It's UTF8 
that doesn't work without it.



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



Bug#501033: oolite: exits with error at start

2008-10-24 Thread Eddy Petrișor
2008/10/6 Daniel [EMAIL PROTECTED]:
 On Sun, Oct 05, 2008 at 07:23:59PM +0300, Eddy Petrișor wrote:
 ii  libgl1-mesa-glx [libgl 6.5.2-5~etch  A free implementation of the
 OpenG
 ii  libglu1-mesa [libglu1] 6.5.1-0.6 The OpenGL utility library
 (GLU)

 I see your system has libgl1-mesa-glx and libglu1-mesa are not the same
 version, while libgl1-mesa-glx seems to be an unofficial etch version.

 Would you be kind enough to downgrade libgl1-mesa-glx to the official etch
 version, or upgrade ibglu1-mesa to the same version as libgl1-mesa-glx and
 see if the bug is still reproducible?

 Whoops, that shouldn't be. I downgraded, but no change.
 For reference, now:
 ii  libgl1-mesa-dri6.5.1-0.6
 ii  libgl1-mesa-glx6.5.1-0.6
 ii  libglu1-mesa   6.5.1-0.6

Did you restart X after that?

Was direct rendering enabled (glxinfo | grep direct says direct
rendering: Yes) ?

 I have also tried the etchnhalf default kernel, still no change. Unless there

what kind of video card do you have? Which driver are you using?

Intel cards do not work with direct rendering on the etchnhalf driver
(see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=496053)

 is a (very well hidden) config file somewhere that got created at the first
 try and is causing this behaviour, I guess it must be the threading issue,
 strange as that may sound. I'm attaching a log of 'strace oolite', maybe this
 is of use to you.

I am unsure if the strace is of any use... I will contact upstream, if
necessary.

-- 
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein


Bug#503285: pmacct: Please provide init.d script and config for sfacctd

2008-10-24 Thread Christoph Haas
Package: pmacct
Version: 0.11.4-1
Severity: minor

I would appreciate if you added init.d scripts, an /etc/default configuration
and an /etc/*/sfacctd.conf file so people can run the sfacctd, too. Of course
the same would apply to the nfacctd. pmacctd was the only software I found
that could deal with sflows so I will surely keep using it for sflow
accounting. Thanks!

 Christoph

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

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

Versions of packages pmacct depends on:
ii  iproute20080725-2networking and traffic control too
ii  libc6  2.7-14GNU C Library: Shared libraries
ii  libmysqlclient15off5.0.51a-15MySQL database client library
ii  libpcap0.8 0.9.8-5   system interface for user-level pa
ii  libpq5 8.3.4-2   PostgreSQL C client library
ii  libsqlite3-0   3.5.9-5   SQLite 3 shared library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

pmacct recommends no packages.

pmacct suggests no packages.

-- no debconf information



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



Bug#434647: kaffe: Kaffe makes itself the default on upgrade

2008-10-24 Thread Patrick Schoenfeld
Tags 434647 + patch
thanks

Hi,

 The culprit is the line from kaffe.prerm
 update-alternatives --auto $file || true

yep, I agree with this assessment.

 Please remove this line. No maintainer scripts should ever run this
 line as it (by definition) overrides the system administrator's
 preferences about the alternatives link.

Therefore the appropriate action is to remove this line (and similar ones)
from the packages maintainer scripts. Attached patch does that. Its untested
as I was unable to build the package. Need to see whats causing me trouble
first. I think I'm just lacking disk space or so..

Best Regards,
Patrick
diff -u -Nur /tmp/kaffe-1.1.8/debian/changelog /scratch/kaffe-1.1.8/debian/changelog
--- /tmp/kaffe-1.1.8/debian/changelog	2008-10-24 13:34:52.069970241 +0200
+++ /scratch/kaffe-1.1.8/debian/changelog	2008-10-24 14:28:04.0 +0200
@@ -1,11 +1,3 @@
-kaffe (2:1.1.8-5.2) unstable; urgency=medium
-
-  * Non-maintainer upload.
-  * Do not call 'update-alternatives --auto' in maintainer scripts because it
-overrides admin decisions
-
- -- Patrick Schoenfeld [EMAIL PROTECTED]  Fri, 24 Oct 2008 13:33:57 +0200
-
 kaffe (2:1.1.8-5.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u -Nur /tmp/kaffe-1.1.8/debian/jikes-kaffe.prerm /scratch/kaffe-1.1.8/debian/jikes-kaffe.prerm
--- /tmp/kaffe-1.1.8/debian/jikes-kaffe.prerm	2008-10-24 13:32:38.573969912 +0200
+++ /scratch/kaffe-1.1.8/debian/jikes-kaffe.prerm	2008-10-24 14:28:04.0 +0200
@@ -3,6 +3,7 @@
 case $1 in
   upgrade | remove)
 update-alternatives --remove javac /usr/bin/jikes-kaffe || true
+update-alternatives --auto javac || true
;;
 esac
 
diff -u -Nur /tmp/kaffe-1.1.8/debian/kaffe.prerm /scratch/kaffe-1.1.8/debian/kaffe.prerm
--- /tmp/kaffe-1.1.8/debian/kaffe.prerm	2008-10-24 13:32:57.127483153 +0200
+++ /scratch/kaffe-1.1.8/debian/kaffe.prerm	2008-10-24 14:28:04.0 +0200
@@ -6,6 +6,7 @@
 if [ $1 != upgrade ] ; then
 	for file in appletviewer jar java javac javadoc javah javakey javap jdb native2ascii rmic rmiregistry serialver ; do
 		update-alternatives --remove $file /etc/alternatives/kaffe-system/bin/$file || true
+		update-alternatives --auto $file || true
 	done
 fi
 


signature.asc
Description: Digital signature


Bug#496485: 2.6.27.3 works

2008-10-24 Thread Iaco
I compiled vanilla version 2.6.27.3 with CONFIG_MMC_SDHCI_PCI enabled and the 
SD card  reader now works again.
I tested latest debian kernel 2.6.26-9 as well with no success.

thanks,
Andrea. 



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



Bug#503106: openarena-server: does not include startup script

2008-10-24 Thread Bruno Kleinert
do you mean an init-script, so that the server package can be configured
to launch the openarena server binary while the system is booting?

cheers - fuddl


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#502552: (obvious) workaround found

2008-10-24 Thread Peter Daum
Ferenc Wagner wrote:
 a possible workaround is to use
 modprobe qla2xxx ql2xfdmienable=0
 to disable FDMI completely.

actually, the workaround isn't all that obvious; modinfo qla2xxx says:
... 
ql2xfdmienable:Enables FDMI registratons Default is 0 ...

so another possible fix would be to just initialize the correspoding
variable with 0 instead of 1, adjusting the program code to match
the documentation. The other patch still would be a good thing, because
even then ql2xfdmienable=1 on the wrong adapter shouldn't cause the
driver to crash.







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



Bug#503287: xen-3: domU's wont start when the kernel arch is different as the xen-utils arch

2008-10-24 Thread Maximilian Mill
Package: xen-3
Severity: important

After testing with waldi, he found out that the kernel arch cant be different 
as the xen-utils. So when using xen-amd64 with xen-utils-i386
the dom'Us wont work.

xm create /etc/xen/test2.cfg gets:
VmError: (22, 'Invalid argument')


Debug:
[2008-10-23 18:01:48 4211] DEBUG (XendDomainInfo:84) 
XendDomainInfo.create(['vm', ['name', 'test2'], ['memory', '128'], 
['on_poweroff', 'destroy'], ['on_reboot', 'restart'], ['on_crash', 'restart'], 
['vcpus', 1], ['on_xend_start', 'ignore'], ['on_xend_stop', 'ignore'], 
['image', ['linux', ['kernel', '/boot/vmlinuz-2.6.26-1-xen-amd64'], ['ramdisk', 
'/boot/initrd.img-2.6.26-1-xen-amd64'], ['root', '/dev/sda2 ro']]], ['device', 
['vbd', ['uname', 'phy:/dev/vg0/test2-swap'], ['dev', 'sda1'], ['mode', 'w']]], 
['device', ['vbd', ['uname', 'phy:/dev/vg0/test2-disk'], ['dev', 'sda2'], 
['mode', 'w']]], ['device', ['vif', ['ip', '192.168.25.197'], ['mac', 
'00:16:3E:99:79:48')
[2008-10-23 18:01:48 4211] DEBUG (XendDomainInfo:1618) 
XendDomainInfo.constructDomain
[2008-10-23 18:01:48 4211] DEBUG (balloon:132) Balloon: 63544 KiB free; need 
2048; done.
[2008-10-23 18:01:48 4211] DEBUG (XendDomain:443) Adding Domain: 1
[2008-10-23 18:01:48 4211] DEBUG (XendDomainInfo:1703) 
XendDomainInfo.initDomain: 1 256
[2008-10-23 18:01:48 4211] DEBUG (XendDomainInfo:1738) 
_initDomain:shadow_memory=0x0, memory_static_max=0x800, 
memory_static_min=0x0.
[2008-10-23 18:01:48 4211] DEBUG (balloon:138) Balloon: 63536 KiB free; 0 to 
scrub; need 131072; retries: 20.
[2008-10-23 18:01:48 4211] DEBUG (balloon:153) Balloon: setting dom0 target to 
864 MiB.
[2008-10-23 18:01:48 4211] DEBUG (XendDomainInfo:693) Setting memory target of 
domain Domain-0 (0) to 864 MiB.
[2008-10-23 18:01:48 4211] DEBUG (balloon:132) Balloon: 131972 KiB free; need 
131072; done.
[2008-10-23 18:01:48 4211] INFO (image:139) buildDomain os=linux dom=1 vcpus=1
[2008-10-23 18:01:48 4211] ERROR (XendDomainInfo:1780) 
XendDomainInfo.initDomain: exception occurred
Traceback (most recent call last):
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/XendDomainInfo.py, line 
1755, in _initDomain
channel_details = self.image.createImage()
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/image.py, line 122, in 
createImage
return self.createDomain()
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/image.py, line 141, in 
createDomain
result = self.buildDomain()
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/image.py, line 624, in 
buildDomain
xc.domain_set_memmap_limit(self.vm.getDomid(), mem_kb)
Error: (22, 'Invalid argument')
[2008-10-23 18:01:48 4211] ERROR (XendDomainInfo:440) VM start failed
Traceback (most recent call last):
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/XendDomainInfo.py, line 
420, in start
XendTask.log_progress(31, 60, self._initDomain)
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/XendTask.py, line 209, 
in log_progress
retval = func(*args, **kwds)
  File /usr/lib/xen-3.2-1/bin/../lib/python/xen/xend/XendDomainInfo.py, line 
1783, in _initDomain
raise VmError(str(exn))
VmError: (22, 'Invalid argument')

# xm info
host   : xen-intern02
release: 2.6.26-1-xen-amd64
version: #1 SMP Thu Oct 9 17:11:22 UTC 2008
machine: x86_64
nr_cpus: 2
nr_nodes   : 1
cores_per_socket   : 1
threads_per_core   : 2
cpu_mhz: 3391
hw_caps: bfebfbff:2800::0180:641d
total_memory   : 1023
free_memory: 128
node_to_cpu: node0:0-1
xen_major  : 3
xen_minor  : 2
xen_extra  : -1
xen_caps   : xen-3.0-x86_64 xen-3.0-x86_32p 
xen_scheduler  : credit
xen_pagesize   : 4096
platform_params: virt_start=0x0
xen_changeset  : unavailable
cc_compiler: gcc version 4.3.1 (Debian 4.3.1-2) 
cc_compile_by  : waldi
cc_compile_domain  : debian.org
cc_compile_date: Sat Jun 28 09:32:18 UTC 2008
xend_config_format : 4

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

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

xen-intern02:~# dpkg -l |grep xen
ii  libc6-xen   2.7-14GNU C Library: 
Shared libraries [Xen version
ii  libxenstore3.0  3.2.1-2   Xenstore 
communications library for Xen
ii  linux-image-2.6.26-1-xen-6862.6.26-8  Linux 2.6.26 
image on i686
ii  linux-image-2.6.26-1-xen-amd64  2.6.26-8  Linux 2.6.26 
image on AMD64
ii  linux-modules-2.6.26-1-xen-686  2.6.26-8  Linux 2.6.26 
modules on i686
ii  linux-modules-2.6.26-1-xen-amd642.6.26-8

Bug#179850: Bug#292169: A first iteration patch to fix this bug

2008-10-24 Thread Kumar Appaiah
On Fri, Oct 24, 2008 at 01:01:00PM +0200, Julien Danjou wrote:
 At 1224823738 time_t, Kumar Appaiah wrote:
  I hope you are able to use the patch to fix these bugs. If you need me
  to do something more, please tell me (anything except learning Perl! ;-)).
 
 I've at least push it. I've no time nor interest to test and check that,
 so I'll trust you on this one.
 
 I'll be in the next release.

Well, it does something better than earlier, so I guess we'll let the
other bug filers comment.

Thanks!

Kumar
-- 
Kumar Appaiah


signature.asc
Description: Digital signature


Bug#503106: openarena-server: does not include startup script

2008-10-24 Thread Folkert van Heusden
 do you mean an init-script, so that the server package can be configured
 to launch the openarena server binary while the system is booting?

Yes, that's the one.
And then have probably a /etc/default/openarena.conf or so file in which
the commandline parameters can be given.


Folkert van Heusden

-- 
Multitail es una herramienta flexible que permite visualizar los log
file y seguir la ejecución de comandos. Permite filtrar, añadir
colores, combinar archivos, la visualización de diferencias (diff-
view), etc.  http://www.vanheusden.com/multitail/
--
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com



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



Bug#503288: /etc/init.d/buildbot reload crashes buildslaves

2008-10-24 Thread Petr Rockai
Package: buildbot
Version: 0.7.9-1
Severity: important

Hi,

for me, issuing /etc/init.d/buildbot reload (after changing master
configuration, eg.), slaves die, since they don't seem to like getting a
SIGHUP. I have solved this by changing reload_buildbot to the following:

70 reload_buildbot() {
71 NAME=$1
72 USER=$2
73 BASEDIR=$3
74 PREFIXCMD=$4
75 
76 if test -f ${BASEDIR}/master.cfg; then
77   ${PREFIXCMD} su -s /bin/sh -c ${DAEMON} sighup ${BASEDIR} - ${USER}
78 else
79   echo -n  not sighup-ing slave
80 fi
81 return $?
82 }

The master is apparently responsible for pushing the new configuration out to
the slaves.

Thanks.

Yours,
   Petr.

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

Kernel: Linux 2.6.26.3-2-morn (PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages buildbot depends on:
ii  adduser   3.110  add and remove users and groups
ii  python2.5.2-2An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt
ii  python-twisted-core   8.1.0-4Event-based framework for internet
ii  python-twisted-mail   8.1.0-2An SMTP, IMAP and POP protocol imp
ii  python-twisted-web8.1.0-1An HTTP protocol implementation to
ii  python-twisted-words  8.1.0-2Chat and Instant Messaging

buildbot recommends no packages.

Versions of packages buildbot suggests:
ii  cvs 1:1.12.13-12 Concurrent Versions System
ii  darcs   2.0.2-3  an advanced revision control syste
ii  git-core1:1.5.6.5-1  fast, scalable, distributed revisi
ii  mercurial   1.0.1-5.1Scalable distributed version contr
ii  subversion  1.5.1dfsg1-1 Advanced version control system

-- no debconf information



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



Bug#436492: what's the ITP status ?

2008-10-24 Thread Alessandro Ogier
Hi, i'm currently investigating open64 and i would like to know what's
the ITP status.

Eventually, i could spend some spare time on licenses stuff, as well on
shape/splitups contribs.


ciao,
-- 
Alessandro Ogier
gpg --keyserver pgp.mit.edu --recv-keys EEBB4D0D



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



Bug#501616: [bugs.d.o - Axiom] Merging wishlist please package new version bugs in axiom.

2008-10-24 Thread Didier Raboud
package axiom
forcemerge 501616 475171 499468
thanks

Hi, 

I'm hereby forcebly merging the three bugs reporting new upstream versions of 
axiom.

I think that the Gold version should be packaged ( axiom-july2008-src.tgz ).

Regards, 

OdyX
-- 
Didier Raboud, proud Debian user.
CH-1802 Corseaux
[EMAIL PROTECTED]


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


Bug#503291: pgadmin3: Please do at least suggest postgresql-contrib

2008-10-24 Thread Michael Meskes
Package: pgadmin3
Version: 1.8.4-3
Severity: wishlist

It's very confusing for new users when pgadmin3 brings up a window (just go to
tools-server status) telling the user quite some stuff about adminpack. Part
of this information is not at all relevant for a Debian system, but the
information where to find a pre-compiled version (postgresql-contrib) is
completely missing.

Thanks.

Michael

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

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

Versions of packages pgadmin3 depends on:
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1 GCC support library
ii  libpq5 8.3.4-2   PostgreSQL C client library
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  libwxbase2.8-0 2.8.7.1-1.1   wxBase library (runtime) - non-GUI
ii  libwxgtk2.8-0  2.8.7.1-1.1   wxWidgets Cross-platform C++ GUI t
ii  libxml22.6.32.dfsg-4 GNOME XML library
ii  libxslt1.1 1.1.24-2  XSLT processing library - runtime 
ii  pgadmin3-data  1.8.4-3   graphical administration tool for 

Versions of packages pgadmin3 recommends:
ii  pgagent   1.8.4-3job scheduler for PostgreSQL
ii  postgresql-client 8.3.4-2front-end programs for PostgreSQL 
ii  postgresql-client-8.3 [postgr 8.3.4-2front-end programs for PostgreSQL 

pgadmin3 suggests no packages.

-- no debconf information



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



Bug#503290: libgsl0-dev: Please make a profiling build of gsl

2008-10-24 Thread Matthew Vernon
Package: libgsl0-dev
Version: 1.8-2
Severity: wishlist

Hi,

Many programs one might use gsl for, one might also want to profile to 
try and optimise. It would be nice if a version of gsl with profiling 
information in it was available.

The best way to do this would be, I think, to build static libraries 
with profiling in as a separate bit of the build (./configure 
--enable-static --disable-shared CFLAGS=-pg ), rename them to libgsl_p.a 
and ship them as a separate libgsl0-prof package, rather like 
libc6-prof.

Any chance of this in a future debian package, please? It'd make my life 
easier :-)

Thanks,

Matthew

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

Versions of packages libgsl0-dev depends on:
ii  libgsl0   1.8-2  GNU Scientific Library (GSL) -- li

libgsl0-dev recommends no packages.

-- no debconf information



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



Bug#472590: RFC: changing the + in ls -l output to be . or +

2008-10-24 Thread Mike Edenfield

Jim Meyering wrote:


A desire for compatibility makes + look good.
. is appealing for SELinux-only because it's inconspicuous.


Speaking as a fairly new SELinux user/admin, having a . 
next to every file in my ls output is just as useful or 
non-useful as having a + next to them, so does it really 
buy anything?  I end up needing -Z either way.


Based on the kind of real-world problems I've had, the most 
useful thing ls could tell me about a file on my SELinux 
system would be that it *should* have a label and *doesn't*, 
something like:


if ( selinux_enabled )
  if ( label == NULL || label == fs.defaultlabel )
use !
  else
use  
else if ( anything else )
  use +







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



Bug#503289: dupload: Add cp method for local uploads

2008-10-24 Thread Free Ekanayaka
Package: dupload
Version: 2.6.4ubuntu3
Severity: wishlist

Hi, the patch below adds a new cp method for local uploads.

Thanks,

Free

-- BEGIN PATCH --
--- /usr/bin/dupload.ori2006-08-14 16:25:40.795862312 +0100
+++ /usr/bin/dupload2006-08-14 16:30:02.718044088 +0100
@@ -464,6 +464,8 @@
p Uploading (scp) to $host ($fqdn)\n;
 } elsif ($method eq rsync) {
p Uploading (rsync) to $host ($fqdn)\n;
+} elsif ($method eq cp) {
+p Copying (cp) to $incoming\n;
 } else {
fatal(Unknown upload method\n);
 }
@@ -548,6 +550,24 @@
}
$t = 1;
$batchmode = 1;
+   } elsif ($method eq cp) {
+$mode = (stat($file))[2];
+   unless ($dry) {
+   system(cp -p $options $file $incoming);
+   fatal(cp $file failed\n) if $?;
+   $t = time() - $t;
+# Small optimization
+if ($mode != 33188) { # rw-r--r-- aka 0644
+   system(chmod 0644 $incoming/$file);
+   fatal(chmod 0644 failed\n) if $?;
+}
+   } else {
+   p \n+ cp -p $options $file $incoming;
+if ($mode != 33188) { # rw-r--r-- aka 0644
+ p \n+ chmod 0644 $incoming/$file;
+}
+   $t = 1;
+   }
}
 
if ($queuedir) {
@@ -569,6 +589,13 @@
} else {
p \n+ ssh -x -l $login $fqdn \mv 
$incoming$file $queuedir$file\;
}
+   } elsif ($method eq cp) {
+   unless ($dry) {
+   system(mv $incoming$file 
$queuedir$file);
+   fatal(mv failed\n) if $?;
+   } else {
+   p \n+ mv $incoming$file 
$queuedir$file;
+   }
}
}
 
.. END PATCH --



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



Bug#436492: what's the ITP status ?

2008-10-24 Thread Gürkan Sengün

Hello


Hi, i'm currently investigating open64 and i would like to know what's
the ITP status.

Eventually, i could spend some spare time on licenses stuff, as well on
shape/splitups contribs.


I never got to build version 4.1 nor 4.2 of open64 :(
If you get it to build, that'd be cool.

Yours,
Guerkan



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



Bug#490977: tinymce 3.2.0.2 in unstable, please upload updated wordpress package

2008-10-24 Thread Andrea De Iacovo
 subject says it all, my NMU of tinymce is now in unstable, so please
 update wordpress now.

Yesterday I made the package and sent it to Thijs (my sponsor) so
Wordpress is going to be updloaded in a few hours/days (as soon as my
sponsor uploads it).

Thank you very much for your NMU.

Cheers.

Andrea




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



Bug#503292: linux-latest-2.6: new dummy images for Samsung S3C-based devices

2008-10-24 Thread Luca Capello
Package: linux-latest-2.6
Version: 16
Severity: wishlist
User: [EMAIL PROTECTED]
Usertag: package-creation

Hi there!

This discussion started on the smartphones-kernel mailing list [1],
please keep at least that list cc:ed, TIA.  If you do so, no need to cc:
me, I read the list.

NB, I decided to go with a wishlist bug instead of directly writing to
the d-kernel mailing list because at the end linux-latest-2.6 should be
changed.  Thus, documenting this fact in a bug is IMHO more appropriate.

Basically, the Debian FreeSmartphone.Org Team [2] started to provide a
Linux kernel package for the Openmoko FreeRunner [3]. FYI, a lot of
specific patches haven't submmitted to the vanilla Linux kernel yet,
which means that until that happens the Debian FSO Team must provide is
own Linux kernel package.

However, since I don't want to duplicate the effort, my idea is to build
this Linux kernel package as similar to the normal Debian Linux kernel
packages as possible.  Which means that there should be two dummy
packages, linux-image-$OPENMOKO and linux-image-2.6-$OPENMOKO.

For the other kernel flavors these packages are provided by
linux-latest-2.6: I'm not here to ask for these dummy packages right
now.  On the contrary, since I'm going to add them to the
linux-2.6-openmoko source package [4], for $OPENMOKO I'd like to use a
name which *maybe* will be the same linux-latest-2.6 will provide in
future (thus avoiding hardcoded package dependencies).

I thought about the -s3c suffix, because both Openmoko models (GTA01,
Neo 1973 [5] and GTA02, Neo FreeRunner [6]) use a Samsung SoC from the
S3C family (2410 and 2442, respectively).  Would this be a good option
in the long term?

Thx, bye,
Gismo / Luca

Footnotes: 
[1] 
http://lists.linuxtogo.org/pipermail/smartphones-kernel/2008-October/13.html
[2] http://wiki.debian.org/Teams/DebianFSO
[3] 
http://lists.linuxtogo.org/pipermail/smartphones-kernel/2008-October/07.html
[4] http://git.debian.org/?p=pkg-fso/linux-2.6-openmoko.git;a=summary
[5] http://wiki.openmoko.org/wiki/GTA01
[6] http://wiki.openmoko.org/wiki/GTA02

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

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


pgpros1GIbSgC.pgp
Description: PGP signature


Bug#503290: libgsl0-dev: Please make a profiling build of gsl

2008-10-24 Thread Dirk Eddelbuettel

Hi Matthew,

On 24 October 2008 at 14:16, Matthew Vernon wrote:
| Package: libgsl0-dev
| Version: 1.8-2
| Severity: wishlist
| 
| Hi,
| 
| Many programs one might use gsl for, one might also want to profile to 
| try and optimise. It would be nice if a version of gsl with profiling 
| information in it was available.

I don't disagree. When I needed this in the past, I just grabbed sources via
'apt-get source' and created a local copy of a package.
 
| The best way to do this would be, I think, to build static libraries 
| with profiling in as a separate bit of the build (./configure 
| --enable-static --disable-shared CFLAGS=-pg ), rename them to libgsl_p.a 
| and ship them as a separate libgsl0-prof package, rather like 
| libc6-prof.
| 
| Any chance of this in a future debian package, please? It'd make my life 
| easier :-)

But it makes my life harder, and it bloats the archive. I really would rather
not do this.  Any way you would agree to doing this would local variants?

Do we have precedents for this?  Which libraries provide profile builds?

[ As an aside: If you have access to Intel's icc, I hear it's worth a shot ... ]

Dirk
 
| Thanks,
| 
| Matthew
| 
| -- System Information:
| Debian Release: 4.0
|   APT prefers stable
|   APT policy: (500, 'stable')
| Architecture: amd64 (x86_64)
| Shell:  /bin/sh linked to /bin/bash
| Kernel: Linux 2.6.20-2-macpro-amd64
| Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
| 
| Versions of packages libgsl0-dev depends on:
| ii  libgsl0   1.8-2  GNU Scientific Library (GSL) -- 
li
| 
| libgsl0-dev recommends no packages.
| 
| -- no debconf information
| 
| 

-- 
Three out of two people have difficulties with fractions.



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



Bug#472590: RFC: changing the + in ls -l output to be . or +

2008-10-24 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

According to Mike Edenfield on 10/24/2008 7:19 AM:
 Based on the kind of real-world problems I've had, the most useful thing
 ls could tell me about a file on my SELinux system would be that it
 *should* have a label and *doesn't*, something like:
 
 if ( selinux_enabled )
   if ( label == NULL || label == fs.defaultlabel )
 use !
   else
 use  

Unfortunately, that would violate POSIX, which requires ' ' in the case
when no alternate access controls are in force.  And SELinux contexts
count as an alternate access control.

The optional alternate access method flag shall be a single space if
there is no alternate or additional access control method associated with
the file; otherwise, a printable character shall be used.
http://www.opengroup.org/onlinepubs/009695399/utilities/ls.html

- --
Don't work too hard, make some time for fun as well!

Eric Blake [EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkkBzw8ACgkQ84KuGfSFAYCXAACeN4uUaHlCuBXUMFeJLsBDyShJ
AGIAniTtjas6Urnz/P92Vhr/JFx19oZC
=ibH3
-END PGP SIGNATURE-



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



Bug#503293: libsnmp-python: netsnmp python snmpwalk memory leak

2008-10-24 Thread Gabriele Messineo
Package: libsnmp-python
Version: 5.4.1~dfsg-10
Severity: important
Tags: patch


Hi,
I would like to re-open netsnmp Bug [ 1868278 ] A bug in python useing 
netsnmp.snmpwalk.

That's because cited patch ( 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=497656 ) was addressing a seg 
fault. 

I did some tests in order to find the memory leak, I hope it can be avoided by 
applying the following patch:

--- python/netsnmp/client_intf.c
+++ python/netsnmp/client_intf.c
@@ -1778,7 +1778,7 @@
   PyObject *varlist;
   PyObject *varbind;
   PyObject *val_tuple = NULL;
-  PyObject *varbinds;
+  PyObject *varbinds = NULL;
   int varlist_len = 0;
   int varlist_ind;
   netsnmp_session *ss;
@@ -2003,14 +2003,13 @@
  (len ? Py_BuildValue(s#, str_buf, len) :
   Py_BuildValue()));
 
- Py_DECREF(varbind);
-
   } else {
/* Return None for this variable. */
 _PyTuple_Resize(val_tuple, result_count+1);
PyTuple_SetItem(val_tuple, result_count++, Py_BuildValue());
printf(netsnmp_walk: bad varbind (%d)\n, varlist_ind);
   }
+ if(varbind) Py_DECREF(varbind);
 }
 /* reuse the response as the next pdu to send */
 pdu = snmp_pdu_create(SNMP_MSG_GETNEXT);
@@ -2036,6 +2035,7 @@
   }
 
  done:
+  if(varbinds) Py_DECREF(varbinds);
   SAFE_FREE(oid_arr);
   return (val_tuple ? val_tuple : Py_BuildValue());
 }

I'm not experienced with Python C API but I think the root cause was a missing 
Py_DECREF on some PyObjects. 

I suggest to test the patch to verify it is not breaking anything.

Thanks and Regards.

Gabriele Messineo




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

Kernel: Linux 2.6.18-6-xen-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libsnmp-python depends on:
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libsnmp15  5.4.1~dfsg-10 SNMP (Simple Network Management Pr
ii  python 2.5.2-2   An interactive high-level object-o
ii  python-central 0.6.8 register and build utility for Pyt

libsnmp-python recommends no packages.

libsnmp-python suggests no packages.

-- no debconf information



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



  1   2   3   4   >