Bug#332297: postgresql-common: hooks for restarting dependent apps

2005-10-05 Thread Martin Pitt
Hi Norbert!

Norbert Kiesel [2005-10-05 10:34 -0700]:
> it would be nice if there where some hooks for adding actions needed for
> dependant apps for "start" and "stop" of postgresql.  Example: I always
> have to issue a "nagios restart" manually after postgresql was restarted
> because nagios hangs if the DB went down while it was connected.

This sounds indeed interesting.

> Not sure how fancy that should be.  Perhaps a simple "run-parts 
> --arg=" would do the trick already. I'd think one
> directory would be enough, as there should be no dependencies between
> the dependant apps (i.e. it would be ok if the would be run in the same
> order for start, stop, restart). 

I'd take the kernel approach and run stop with --reverse, so that the
usual habit of adding a priority prefix works. But if we do that, we
should not call the scripts with "restart" since it is not clear in
which order they should be called then. Any good ideas about this?

> I could also send a patch for that if this would help.

Sure, that's always appreciated. :-)

Martin
-- 
Martin Pitt  http://www.piware.de
Ubuntu Developer   http://www.ubuntulinux.org
Debian Developerhttp://www.debian.org


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



Bug#332378: libatomic-ops_1.0-2 (unstable): fails to build

2005-10-05 Thread Ian Wienand
On Thu, Oct 06, 2005 at 07:14:30AM +0200, Bastian Blank wrote:
> > atomic_ops/sysdeps/gcc/s390.h:33:31: error: ordered_except_wr.h: No such 
> > file or directory
> > atomic_ops/sysdeps/gcc/s390.h:34:43: error: 
> > all_aligned_atomic_load_store.h: No such file or directory

Looks like some missing '../s' in the header includes

Al, I checked in a new version to SVN but I don't have any hardware to
test it.  I'm pretty sure it's the right fix but someone might like to
check.

-i


signature.asc
Description: Digital signature


Bug#319242: Progress?

2005-10-05 Thread Peter Karlsson
Any progress on this?

-- 
\\// Peter - http://www.softwolves.pp.se/


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



Bug#47467: #47467 to be closed by PAMification of chfn and chsh?

2005-10-05 Thread Christian Perrier
Tomasz,

In http://bugs.debian.org/47467, the bug submitter requests that chfn
and chsh allow working on NIS accounts.

As far as I understand, this should *now* be possible because these
utilities are PAMified. Could you confirm (I know you're using a
NIS setup, so this should be easy to test for you) ?





Bug#332324: mldonkey-server: debconf asks too many unnecessary questions

2005-10-05 Thread Sylvain LE GALL
Hello,

On Thu, Oct 06, 2005 at 01:35:46AM +0200, Sylvain LE GALL wrote:
> Hello,
> 
> Rectification: amule is a server (i just checked), i don't know for
> nicotine.

(another error, i was tired -- not a server, a daemon...)

Regard
Sylvain Le Gall


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



Bug#275343: [Pkg-shadow-devel] Bug#304352: Patch to allow preseeding hashes for passwords (root and user) in passwd

2005-10-05 Thread Christian Perrier
Quoting Christian Perrier ([EMAIL PROTECTED]):
> tags 275343 patch
> tags 304343 patch
> merge 305352 275343
> thanks
> 
> Attached is the first draft of a patch that should allow preseeding
> MD5 hash paasswords for both the root and the first created user
> passwords.


Testing this is a little bit tricky because the relevant code actually
runs only when calling "dpkg-reconfigure passwd". Also, when run on a
live system, where root already has a password, it does nothing.

The key is emptying the root password before manually running a modified
passwd.config script where the test about $1 being "reconfigure" is
removed.

See attached "test" script which is such a modified version.

The attached "set" script allow to set the root password hash to a
hash corresponding to "r00tme".


The similar code for the user password preseeding is NOT included in
this test. Actually, testing this is even more tricky on a live system
because the script first test about the presence of an existing
unprivileged user and only proposes a user creation when such a user
does not exist.


#!/bin/sh -e

test -f /usr/share/debconf/confmodule || exit 0

# don't make assumptions about the umask
umask 022

. /usr/share/debconf/confmodule
db_capb "backup"
# Remove this : not translatable and looks ugly in d-i process
# db_title "Password setup"

# Returns a true value if there seems to be a system user account.
is_system_user () {
# Assume NIS, or any uid from 1000 to 2,  means there is a user.
if grep -q '^+:' /etc/passwd || \
   grep -q '^[^:]*:[^:]*:[1-9][0-9][0-9][0-9]:' /etc/passwd || \
   grep -q '^[^:]*:[^:]*:[12][0-9][0-9][0-9][0-9]:' /etc/passwd; then
return 0
else
return 1
fi
}

# Returns a true value if root already has a password.
root_password () {
# Assume there is a root password if NIS is being used.
if grep -q '^+:' /etc/passwd; then
return 0
fi

if [ -e /etc/shadow ] && \
   [ "`grep ^root: /etc/shadow | cut -d : -f 2`" ]; then
return 0
fi

if [ "`grep ^root: /etc/passwd | cut -d : -f 2`" ] && \
   [ "`grep ^root: /etc/passwd | cut -d : -f 2`" != 'x' ]; then
return 0
fi

return 1
}

# Set a password, via chpasswd.
# Use perl rather than echo, to avoid the password
# showing in the process table. (However, this is normally
# only called when first booting the system, when root has no
# password at all, so that should be an unnecessary precaution).
#
# Arguments: 
#  1) (mandatory) username
#  2) (mandatory) password
#  3) (optional) 1 for meaning "the passed password is a MD5 hash"
setpassword () {
SETPASSWD_PW="$2"
export SETPASSWD_PW

# This is very annoying. chpasswd cannot handle generating md5
# passwords as it is not PAM-aware. Thus, I have to work around
# that by crypting the password myself if md5 is used.
USE_MD5=1
export USE_MD5

if test "$3" ; then
echo $1:${SETPASSWD_PW} | chpasswd -e
else
perl -e '
sub CreateCryptSalt {
my $md5 = shift;

my @valid = split(//, 
"./0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
my ($in, $out);

my $cryptsaltlen = ($md5 ? 8 : 2);

open (F, "/dev/null; then
db_fset passwd/username seen false
db_fset passwd/username-bad seen false
db_input critical passwd/username-bad
STATE=5
continue
fi

db_input critical passwd/user-password || true
COMPARE_PW=''
db_input critical passwd/user-password-again \
&& COMPARE_PW=1 || true
fi
;;
9)
db_get passwd/make-user
if [ "$RET" = true ] && ! is_system_user; then
# Compare the two passwords, loop with message if not
# identical, or if empty.
db_get passwd/user-password
USER_PW="$RET"
db_get passwd/user-password-again
if [ "$COMPARE_PW" ] && [ "$USER_PW" != "$RET" ]; then
db_set passwd/user-password ""
db_set passwd/user-password-again ""
db_fset passwd/password-mismatch seen false
db_input critical passwd/password-mismatch
db_fset passwd/user-password seen false
db_fset passwd/use

Bug#332383: a2ps: 'pdiff' docs and help are vague about output

2005-10-05 Thread A Costa
Package: a2ps
Version: 1:4.13b-5
Severity: normal


Problem: while browsing utils in 'dwww', I read about 'pdiff', did a
test run, and was surprised that it sent four pages of output to the
printer.  Luckily the printer was off.

Cause of surprise:  vague docs.

Details:

% whatis pdiff
pdiff (1)- produce a pretty comparison between files

The verb 'produce' does not clearly distinguish that output goes
to the printer.

The man page says:

% man pdiff | grep -nA 2 DESC
Reformatting pdiff(1), please wait...
11:DESCRIPTION
12-   Pretty print the differences between FILE1 and FILE2.
13-

The verb 'print' may mean "send to standard output".  It's common
usage, as per these descriptions of common utils, none of which
require a printer:

% whatis wc whoami uname seq
wc (1)   - print the number of newlines, words, and bytes in 
files
whoami (1)   - print effective userid
uname (1)- print system information
seq (1)  - print a sequence of numbers

The 'pdiff' man page refers the user to a more thorough info page, but
that info page has only the same text as the man page, right down to
needlessly referring to a more thorough info page.

The command line help is also the same text as the man page description:

% pdiff --help | head -n 2
Usage: pdiff FILE1 FILE2 [-- A2PS-OPTIONS...]
Pretty print the differences between FILE1 and FILE2.


Hope this helps...


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

Versions of packages a2ps depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libpaper1 1.1.14-3   Library for handling paper charact

Versions of packages a2ps recommends:
ii  bzip2 1.0.2-10   high-quality block-sorting file co
ii  cupsys-bsd [lpr]  1.1.23-12  Common UNIX Printing System(tm) - 
ii  cupsys-client 1.1.23-12  Common UNIX Printing System(tm) - 
ii  psutils   1.17-19A collection of PostScript documen
ii  wdiff 0.5-16 Compares two files word by word

-- no debconf information


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



Bug#332382: sjforth: typo in description

2005-10-05 Thread Peter Samuelson

Package: sjforth
Version: 0.1.1-1
Severity: minor

"...and other com- monly used Forth words."  Remove the '- '.


signature.asc
Description: Digital signature


Bug#331729: [php-maint] Bug#331729: php4-curl: Requires an Apache restart on postinst

2005-10-05 Thread Adam Conrad
Kai Hendry wrote:
> 
> Well I wish it just automagically worked. 

You're not alone.  I'm pretty sure this bug has been reported before. :)

> I have no idea about what dlopen() means.

Sorry, that's the C function, I meant dl() -- http://www.php.net/dl

> If we compare this to the Windows world where then entire machine
> requires a reboot about 20 million times, then I have no qualms about
> restarting Apache after this module is installed. In my experience I find
> Apache restarts quite a smooth process.

Except when it's not (ie: when a user has broken their config).  But,
I'll consider special-casing a "if the user has the extension enabled in
php.ini for a webserver, restart that server" thing in postinst.

... Adam


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



Bug#331568: ifp-line-libifp: weird char in filename blocks even ifp format

2005-10-05 Thread Joe Wreschnig
On Wed, 2005-10-05 at 22:10 -0400, Geoff Oakham wrote:
> That's an interesting case; thanks for discovering and reporting it!
> 
> Here's what's happening: as part of the self-test procedure, libifp
> attempts to list the main directory.. which it should be able to do
> unless the filesystem is corrupt.. and you could fix that by formatting
> the filesystem, except libifp can't because it selftest fails.
> 
> As a work-around, you can use the older ifpline utility (which doesn't
> self-test), or hack my code to not run the selftest.

I'll have time this weekend to do this, as well as fix the "human
readable" feature request, and package 1.0.0.2. This package hasn't been
getting nearly enough of my attention lately...
-- 
Joe Wreschnig <[EMAIL PROTECTED]>


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


Bug#316212: netapplet: Ubuntu has a fix for this

2005-10-05 Thread Mike Paul
Package: netapplet
Version: 1.0.0-1
Followup-For: Bug #316212

Ubuntu Breezy seems to have resolved this bug already; they have a
netapplet package which is built against libiw28.

The Ubuntu diff can be found at
  
http://people.ubuntu.com/~scott/patches/netapplet/netapplet_1.0.0-1ubuntu4.patch
The last two hunks, which create debian/patches/01_newlibiw.patch and
modify debian/rules to apply it, are the fix.  I've successfully built
and used netapplet on a current Debian sid laptop, using libiw28, by
applying this patch.

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


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



Bug#322273: pending bugs galore

2005-10-05 Thread Horms
tag 322273 +pending
tag 328389 +pending
tag 330353 +pending
thanks

These bugs are fixed for 2.6.8 in SVN and are pending release.
#322273: CAN-2005-2456: XFRM array index buffer overflow
#328389: CAN-2005-2800: memory leak in scsi procfs leads to local DoS
#330353: kernel-source-2.6.8: CAN-2005-3053


-- 
Horms


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



Bug#310876: (no subject)

2005-10-05 Thread Asheesh Laroia

retitle 310876 ITP: mdf2iso -- Converts Alcohol 120% bin images to standard 
ISO-9660 format
owner 310876 [EMAIL PROTECTED]

thanks

-- Asheesh.
--
The smallest worm will turn being trodden on.
-- William Shakespeare, "Henry VI"



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



Bug#316189: lomount will be included in Xen from now on

2005-10-05 Thread Asheesh Laroia
According to 
http://lists.xensource.com/archives/html/xen-changelog/2005-07/msg00172.html 
, Xen will bundle "lomount" in their releases.  So this program should not 
be packaged from the www.dad-answers.com; instead, it should be taken from 
the Xen source tree where it's going to be updated.


I suggest that the bug be reassigned to the Xen package; I'm CC:ing Xen's 
maintainer for that reason.  I don't know if lomount comes with the Debian 
xen package, or if it should be included in some xen-utils package, or 
what.


-- Asheesh.

--
QOTD:
"I thought I saw a unicorn on the way over, but it was just a
horse with one of the horns broken off."



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



Bug#299122: totem: snd_intel8x0m is not installed by default in etch

2005-10-05 Thread Michael Gilbert
Package: totem
Version: 1.0.4-1
Followup-For: Bug #299122

i just did a clean etch debian-installer installation.  it appears that the 
snd_intel8x0m kernel driver is no longer loaded into the kernel as a default 
part of the installation any more.  this means that totem works without 
blacklisting snd_intel8x0m on a new install.  i even tried modprobing 
snd_intel8x0m into the kernel.  totem works under this scenario.  i don't know 
what has been fixed, but it works like a charm now.  you can close this bug if 
you like.

best regards,
mike gilbert

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

Versions of packages totem depends on:
ii  totem-xine1.0.4-1A simple media player for the Gnom

totem recommends no packages.

-- no debconf information


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



Bug#275725: knetworkled not supported anymore

2005-10-05 Thread Marcela Tiznado
Hi! Please check knetworkled home page(1) where says that the project is 
not supported anymore.


Regards,
ASCIIGirl

(1) http://www.glitch13.com/singlenews.php?newsid=397


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



Bug#332380: cyphesis-cpp_0.5.0-2 (unstable): fails to build

2005-10-05 Thread Bastian Blank
Package: cyphesis-cpp
Version: 0.5.0-2
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of cyphesis-cpp_0.5.0-2 on debian-31 by sbuild/s390 69
[...]
> ** Using build dependencies supplied by package:
> Build-Depends: cdbs, debhelper (>> 4.0.0), libreadline5-dev | 
> libreadline-dev, python-dev, po-debconf, libpq-dev, libsigc++-1.2-dev (>= 
> 1.2.5-5), libatlas-cpp-0.6-0-dev (>= 0.5.97-1), libskstream-0.3-dev (>= 
> 0.3.5-1), libvarconf-dev (>= 0.6.2-3), libmercator-0.2-dev (>= 0.2.3-2), 
> libgcrypt-dev
> ** Filtered missing central deps that are dependencies of or provide 
> build-deps:
> libncurses5-dev (>= 5.3.20030510-1), libreadline4-dev (>= 4.3-1)
[...]
> Checking correctness of source dependencies...
> Toolchain package versions: libc6-dev_2.3.5-6 
> linux-kernel-headers_2.6.13+0rc3-1.1 gcc-4.0_4.0.2-1 g++-4.0_4.0.2-1 
> binutils_2.16.1cvs20050902-1 libstdc++6-4.0-dev_4.0.2-1 libstdc++6_4.0.2-1
[...]
> g++ -DHAVE_CONFIG_H -I. -I. -I.. -I..  -I/usr/include/python2.3
> -I/usr/include/Atlas-C++-0.6 -I/usr/include/varconf-1.0 
> -I/usr/lib/sigc++-1.2/include -I/usr/include/sigc++-1.2   
> -I/usr/include/Mercator-0.2 -I/usr/include/wfmath-0.3   
> -I/usr/include/skstream-0.3 -I/usr/lib/skstream-0.3/include   
> -I/usr/include/postgresql  -g -Wall -O2 -Wall -DNDEBUG -pthread -c -o World.o 
> World.cpp
> World.cpp:22:33: error: Mercator/TileShader.h: No such file or directory
> World.cpp: In constructor 'World::World(const std::string&)':
> World.cpp:56: error: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: error: forward declaration of 'struct Mercator::TileShader'
> World.cpp:61: error: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: error: forward declaration of 'struct Mercator::TileShader'
> World.cpp:62: error: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: error: forward declaration of 'struct Mercator::TileShader'
> World.cpp:63: error: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: error: forward declaration of 'struct Mercator::TileShader'
> World.cpp:64: error: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: error: forward declaration of 'struct Mercator::TileShader'
> World.cpp:65: error: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: error: forward declaration of 'struct Mercator::TileShader'
> World.cpp:66: error: no matching function for call to 
> 'Mercator::Terrain::addShader(Mercator::TileShader*, int)'
> /usr/include/Mercator-0.2/Mercator/Terrain.h:131: note: candidates are: void 
> Mercator::Terrain::addShader(Mercator::Shader*, int)
> World.cpp: In destructor 'virtual World::~World()':
> World.cpp:72: warning: possible problem detected in invocation of delete 
> operator:
> World.cpp:72: warning: invalid use of undefined type 'struct 
> Mercator::TileShader'
> World.h:12: warning: forward declaration of 'struct Mercator::TileShader'
> World.cpp:72: note: neither the destructor nor the class-specific operator 
> delete will be called, even if they are declared when the class is defined.
> make[3]: *** [World.o] Error 1
> make[3]: Leaving directory `/build/buildd/cyphesis-cpp-0.5.0/rulesets'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/build/buildd/cyphesis-cpp-0.5.0'
> make[1]: *** [all] Error 2
> make[1]: Leaving directory `/build/buildd/cyphesis-cpp-0.5.0'
> make: *** [debian/stamp-makefile-build] Error 2

Bastian


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



Bug#332379: iiimf: description is not very descriptive

2005-10-05 Thread Peter Samuelson

Package: iiimf
Version: 12.2.2612-0.1
Severity: minor

The package description is not very good.  There is no need for a *lot*
of detail, but it should mention at least what IIIMF is.  You can use
the first paragraph from the 'iiimf-server' description, which is quite
good.


signature.asc
Description: Digital signature


Bug#332378: libatomic-ops_1.0-2 (unstable): fails to build

2005-10-05 Thread Bastian Blank
Package: libatomic-ops
Version: 1.0-2
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of libatomic-ops_1.0-2 on debian01 by sbuild/s390 42
[...]
> Checking correctness of source dependencies...
> Toolchain package versions: libc6-dev_2.3.5-6 
> linux-kernel-headers_2.6.13+0rc3-1.1 gcc-4.0_4.0.2-2 g++-4.0_4.0.2-2 
> binutils_2.16.1cvs20050902-1 libstdc++6-4.0-dev_4.0.2-2 libstdc++6_4.0.2-2
[...]
> make[4]: Entering directory `/build/buildd/libatomic-ops-1.0/src'
> if gcc -DHAVE_CONFIG_H -I. -I. -I.-fPIC -Wall -g -O2 -DNDEBUG -MT 
> atomic_ops.o -MD -MP -MF ".deps/atomic_ops.Tpo" -c -o atomic_ops.o 
> atomic_ops.c; \
> then mv -f ".deps/atomic_ops.Tpo" ".deps/atomic_ops.Po"; else rm -f 
> ".deps/atomic_ops.Tpo"; exit 1; fi
> In file included from atomic_ops.h:204,
>  from atomic_ops.c:46:
> atomic_ops/sysdeps/gcc/s390.h:33:31: error: ordered_except_wr.h: No such file 
> or directory
> atomic_ops/sysdeps/gcc/s390.h:34:43: error: all_aligned_atomic_load_store.h: 
> No such file or directory
> atomic_ops.c: In function 'AO_spin':
> atomic_ops.c:91: warning: implicit declaration of function 'AO_load'
> atomic_ops.c:98: warning: implicit declaration of function 'AO_store'
> atomic_ops.c: In function 'unlock':
> atomic_ops.c:132: warning: implicit declaration of function 'AO_store_release'
> atomic_ops.c: In function 'AO_compare_and_swap_emulation':
> atomic_ops.c:148: warning: implicit declaration of function 'AO_load_acquire'
> make[4]: *** [atomic_ops.o] Error 1
> make[4]: Leaving directory `/build/buildd/libatomic-ops-1.0/src'
> make[3]: *** [all-recursive] Error 1
> make[3]: Leaving directory `/build/buildd/libatomic-ops-1.0/src'
> make[2]: *** [all] Error 2
> make[2]: Leaving directory `/build/buildd/libatomic-ops-1.0/src'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/build/buildd/libatomic-ops-1.0'
> make: *** [build-stamp] Error 2

Bastian


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



Bug#332377: RFP: knetstats -- A simple KDE network monitor

2005-10-05 Thread Marcela Tiznado
Package: wnpp
Severity: wishlist

* Package name: knetstats
  Version : 1.3
  Upstream Author : Hugo Parente Lima <[EMAIL PROTECTED]>
* URL : http://knetstats.sourceforge.net/
* License : GPL
  Description : A simple KDE network monitor

A simple KDE network monitor that show rx/tx LEDs of any network interface on a 
system tray icon .

Features:
* See network activity and transfer rate of any network interface (including 
localloopback).
* Support multiple network interfaces.
* See simple statistics (packets and bytes received and transmitted).
* Configurable Update Interval, View mode, Icon themes, etc.
* Multi language support

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


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



Bug#332376: zinc-compiler: Please use gcc-3.4 rather than gcc-3.3 if possible

2005-10-05 Thread Nathanael Nerode
Package: zinc-compiler
Version: 1.0.2-2.2
Severity: wishlist

zinc-compiler is compiled with gcc-3.3 to work around an ICE.  However,
it apparently works just as well with gcc-3.4, which is newer and therefore
will probably remain in the archive longer.  So it would be a kindness
and a simplification to compile with gcc-3.4 instead.


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



Bug#332373: poll: protocol failure in circuit setup

2005-10-05 Thread Marc Lehmann
Package: rsh-redone-server
Version: 66-1
Severity: normal


When doing lots of connections in "quick" succession (say, one per
second), then, after a while, connections fails with:

   poll: protocol failure in circuit setup

This is not due to the inetd rate limit (which I changed to 1000/minute
for the shell service).

Replacing rsh-redone-server by rsh-server fixes this problem completely.

Sometimes I get this message in the syslog:

Oct  6 06:02:47 (none) in.rshd: Connection from cerebro on illegal port 0.

Sometime this:

Oct  6 06:02:43 (none) in.rshd: Error while receiving stderr port number from 
cerebro: Success

Sometimes none except the normal in.rsh connection from and pam messages.

Incidentaly, port 0 is a valid stderr port number in the protocol, so this
should be supported.

I will likely not be able to test this further, as the other
incompatibilities of rsh-redone finally forced me to uninstall it
everywhere, but the above should makme it possible at least to fix the
stderr-port-is-0 bug.

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

Versions of packages rsh-redone-server depends on:
hi  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libpam0g  0.76-23Pluggable Authentication Modules l
ii  netbase   4.21   Basic TCP/IP networking system

rsh-redone-server recommends no packages.

-- no debconf information


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



Bug#332375: linux-image-powerpc-miboot: config file for Sven (OldWorld mac)

2005-10-05 Thread Rogério Brito
Package: linux-image-powerpc-miboot
Severity: minor

Hi, Sven. Here is the .config file that you requested.


Hope this helps, Rogério Brito.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13-rc6-mm1-4.ow
Locale: LANG=C, LC_CTYPE=pt_BR (charmap=ISO-8859-1)
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.13-rc6-mm1-4.ow
# Sun Aug 21 07:26:29 2005
#
CONFIG_MMU=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_HAVE_DEC_LOCK=y
CONFIG_PPC=y
CONFIG_PPC32=y
CONFIG_GENERIC_NVRAM=y
CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_POSIX_MQUEUE=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_AUDIT is not set
CONFIG_HOTPLUG=y
CONFIG_KOBJECT_UEVENT=y
# CONFIG_IKCONFIG is not set
CONFIG_INITRAMFS_SOURCE=""
CONFIG_EMBEDDED=y
CONFIG_KALLSYMS=y
# CONFIG_KALLSYMS_ALL is not set
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_CC_OPTIMIZE_FOR_SIZE=y
CONFIG_SHMEM=y
CONFIG_CC_ALIGN_FUNCTIONS=0
CONFIG_CC_ALIGN_LABELS=0
CONFIG_CC_ALIGN_LOOPS=0
CONFIG_CC_ALIGN_JUMPS=0
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y

#
# Processor
#
CONFIG_6xx=y
# CONFIG_40x is not set
# CONFIG_44x is not set
# CONFIG_POWER3 is not set
# CONFIG_POWER4 is not set
# CONFIG_8xx is not set
# CONFIG_E200 is not set
# CONFIG_E500 is not set
CONFIG_PPC_FPU=y
# CONFIG_ALTIVEC is not set
# CONFIG_TAU is not set
# CONFIG_KEXEC is not set
# CONFIG_CPU_FREQ is not set
# CONFIG_PPC601_SYNC_FIX is not set
CONFIG_PM=y
CONFIG_PPC_STD_MMU=y

#
# Performance-monitoring counters support
#
# CONFIG_PERFCTR is not set

#
# Platform options
#
CONFIG_PPC_MULTIPLATFORM=y
# CONFIG_APUS is not set
# CONFIG_KATANA is not set
# CONFIG_WILLOW is not set
# CONFIG_CPCI690 is not set
# CONFIG_POWERPMC250 is not set
# CONFIG_CHESTNUT is not set
# CONFIG_SPRUCE is not set
# CONFIG_HDPU is not set
# CONFIG_EV64260 is not set
# CONFIG_LOPEC is not set
# CONFIG_MVME5100 is not set
# CONFIG_PPLUS is not set
# CONFIG_PRPMC750 is not set
# CONFIG_PRPMC800 is not set
# CONFIG_SANDPOINT is not set
# CONFIG_RADSTONE_PPC7D is not set
# CONFIG_PAL4 is not set
# CONFIG_GEMINI is not set
# CONFIG_EST8260 is not set
# CONFIG_SBC82xx is not set
# CONFIG_SBS8260 is not set
# CONFIG_RPX8260 is not set
# CONFIG_TQM8260 is not set
# CONFIG_ADS8272 is not set
# CONFIG_PQ2FADS is not set
# CONFIG_LITE5200 is not set
# CONFIG_MPC834x_SYS is not set
CONFIG_PPC_CHRP=y
CONFIG_PPC_PMAC=y
CONFIG_PPC_PREP=y
CONFIG_PPC_OF=y
CONFIG_PPCBUG_NVRAM=y
# CONFIG_SMP is not set
# CONFIG_HIGHMEM is not set
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_PREEMPT_NONE=y
# CONFIG_PREEMPT_VOLUNTARY is not set
# CONFIG_PREEMPT is not set
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_FLATMEM_MANUAL=y
# CONFIG_DISCONTIGMEM_MANUAL is not set
# CONFIG_SPARSEMEM_MANUAL is not set
CONFIG_FLATMEM=y
CONFIG_FLAT_NODE_MEM_MAP=y
# CONFIG_SPARSEMEM_STATIC is not set
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=m
CONFIG_PROC_DEVICETREE=y
# CONFIG_PREP_RESIDUAL is not set
# CONFIG_CMDLINE_BOOL is not set
# CONFIG_PM_DEBUG is not set
# CONFIG_SOFTWARE_SUSPEND is not set
CONFIG_SECCOMP=y
CONFIG_ISA_DMA_API=y

#
# Bus options
#
# CONFIG_ISA is not set
CONFIG_GENERIC_ISA_DMA=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
# CONFIG_PCI_LEGACY_PROC is not set
# CONFIG_PCI_DEBUG is not set

#
# PCCARD (PCMCIA/CardBus) support
#
# CONFIG_PCCARD is not set

#
# Advanced setup
#
# CONFIG_ADVANCED_OPTIONS is not set

#
# Default settings for advanced configuration options are used
#
CONFIG_HIGHMEM_START=0xfe00
CONFIG_LOWMEM_SIZE=0x3000
CONFIG_KERNEL_START=0xc000
CONFIG_TASK_SIZE=0x8000
CONFIG_BOOT_LOAD=0x0080

#
# Networking
#
CONFIG_NET=y

#
# Networking options
#
CONFIG_PACKET=y
CONFIG_PACKET_MMAP=y
CONFIG_UNIX=y
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
CONFIG_NET_KEY=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
CONFIG_IP_FIB_HASH=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_DIAG is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_BIC=y
#

Bug#332374: x11-common: Update to 6.8.2.dfsg.1-8_all has shell script error

2005-10-05 Thread Blair Zajac
Package: x11-common
Version: 6.8.2.dfsg.1-8
Severity: normal

Hello,

Updating to x11-common_6.8.2.dfsg.1-8_all.deb today generated the
following error message:

Preparing to replace x11-common 6.8.2.dfsg.1-7 (using
.../x11-common_6.8.2.dfsg.1-8_all.deb) ...
/var/lib/dpkg/tmp.ci/preinst: line 914: [: eq: binary operator expected
Unpacking replacement x11-common ...

Regards,
Blair

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

Versions of packages x11-common depends on:
ii  debconf [debconf-2.0] 1.4.58 Debian configuration management sy
ii  debianutils   2.14.3 Miscellaneous utilities specific t
ii  lsb-base  3.0-9  Linux Standard Base 3.0 init scrip

x11-common recommends no packages.

-- debconf information:
  x11-common/experimental_packages:


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



Bug#332372: dict: less obscures error

2005-10-05 Thread Justin Pryzby
Package: dict
Version: 1.9.15-1
Severity: normal

dict pipes its results to /usr/bin/pager, but if the request fails (as
in DNS timeout), the message "Cannot connect to any servers (use -v to
see why)" is printed to stderr, and less is run anyway.

In this scenario, less should not be left running.

Also, if dict is run with -v, less is apparently not run.

I would also suggest to add a section ENVIRONMENT to the manpage,
documenting the use of PAGER.


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



Bug#332371: ucbmpeg-play: mpeg_play loops indefinitely at end of *.mpg made by ffmpeg

2005-10-05 Thread Andrew T. Young
Package: ucbmpeg-play
Version: 2.3p-12
Severity: normal


When I make a movie with ffmpeg, it plays fine in both xine and ffplay.
But if I try to play it with mpeg_play, there is an infinite loop of
error messages like this:


Improper or missing sequence end code.

Real Time Spent (After Initializations): 7.933807 secs.
Avg. Frames/Sec: 50.165072

Improper or missing sequence end code.

Real Time Spent (After Initializations): 7.933807 secs.
Avg. Frames/Sec: 50.165072
Error

Improper or missing sequence end code.

Real Time Spent (After Initializations): 7.933807 secs.
Avg. Frames/Sec: 50.165072

Improper or missing sequence end code.

Real Time Spent (After Initializations): 7.933807 secs.
Avg. Frames/Sec: 50.165072

That line that says "Error!!!" turns up about every 6th set of error
messages.

Curiously enough, this seems to occur only on my AMD Athlon box.
On the Pentium III, I just get the error message once.  This suggests
that the infinite loop might be connected with the re-ordering of actual
instructions that occurs in the Athlon core.

Even though the mpeg_play man page warns about the bogus error message,
I suspect the *.mpg file is actually OK, and that the trouble is
in mpeg_play instead.  In any case, the infinite loop is definitely
user-unfriendly, as it scrolls potentially informative information off
the screen before you can kill it.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages ucbmpeg-play depends on:
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  xlibs  4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu

-- no debconf information


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



Bug#332361: mirrormagic: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Drew Parsons
On Thu, 2005-10-06 at 03:17 +0200, Daniel Nylander wrote:
> Package: mirrormagic
> Version: 2.0.2.0deb1-4
> Severity: wishlist
> Tags: patch l10n
> 

Thanks Daniel, I'll get the translation in.

Drew



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



Bug#332336: Merge bugs

2005-10-05 Thread Josh Triplett
package xserver-xorg
merge 332336 332356
thanks

These are the same bug.

- Josh Triplett


signature.asc
Description: OpenPGP digital signature


Bug#332322: htp_1.15-2 (unstable): fails to build

2005-10-05 Thread Diego Escalante
This is caused by one of the test runned by the make process, it tries
to parse a 68Kb comment (), in s390 this causes a segmentation
fault, in other architectures it doesn't.
If anyone (maybe you) can help me figure out how to solve this I would
be very happy :). I'm not very experienced with programming or
packaging (this is my first package).

Thanks.


--
"First they ignore you, then they laugh at you,
then they fight you, then you win"  -Ghandi

La primavera llega con dificultad
http://diegoe.blogspot.com


Bug#331729: [php-maint] Bug#331729: php4-curl: Requires an Apache restart on postinst

2005-10-05 Thread Kai Hendry
On 2005-10-05T14:25+1000 Adam Conrad wrote:
> it may be helpful in the cases where people don't know what's wrong, it
> seems quite a disruptive thing to do for the majority of cases.

Well I wish it just automagically worked. 

I have no idea about what dlopen() means.

If we compare this to the Windows world where then entire machine
requires a reboot about 20 million times, then I have no qualms about
restarting Apache after this module is installed. In my experience I find
Apache restarts quite a smooth process.


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



Bug#331642: RFH: fetchmail -- SSL enabled POP3, APOP, IMAP mail gatherer/forwarder

2005-10-05 Thread Nico Golde
Hallo Elimar,

* Elimar Riesebieter <[EMAIL PROTECTED]> [2005-10-06 05:03]:
> On Tue, 04 Oct 2005 the mental interface of
> Nico Golde told:
> 
> > Package: wnpp
> > Severity: normal
> > 
> > Hi,
> > I am searching for a new Co-maintainer for fetchmail since 
> > Goswin von Brederlow and Lucas Wall don't have much spare 
> > time anymore and the next release of fetchmail doesn't seem 
> > to be far away.
> 
> Isn't the development of fetchmail is stopped since 10/2003? Of
> course yes, this is the date of the last upstream.

No, please read the fetchmail devel list.
Development is not stopped.
Regards Nico
-- 
Nico Golde - JAB: [EMAIL PROTECTED] | GPG: 0x73647CFF
http://www.ngolde.de | http://www.muttng.org | http://grml.org 
$ route add default roma.it


pgpluIw7Z363x.pgp
Description: PGP signature


Bug#331568: ifp-line-libifp: weird char in filename blocks even ifp format

2005-10-05 Thread Geoff Oakham
That's an interesting case; thanks for discovering and reporting it!

Here's what's happening: as part of the self-test procedure, libifp
attempts to list the main directory.. which it should be able to do
unless the filesystem is corrupt.. and you could fix that by formatting
the filesystem, except libifp can't because it selftest fails.

As a work-around, you can use the older ifpline utility (which doesn't
self-test), or hack my code to not run the selftest.

Thanks,

Geoff



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



Bug#327088: logcheck-database: dovecot logins appear after new regexp syntax

2005-10-05 Thread Morten 'Doc' Nielsen
Package: logcheck-database
Version: 1.2.41
Followup-For: Bug #327088


from what i can see, your new log format does not hide regular logins, 
so now my logcheck email is full of lines like this:

Oct 5 20:02:03 docnielsen dovecot: imap-login: Login: user=, method=PLAIN, 
rip=192.168.1.123, lip=192.168.1.123, TLS

Since i am no guru with grep lines, i'd love for someone to send me a
small fix so i dont get 1-2 mb emails evry day.

kind regards,
Morten Nielsen

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

Versions of packages logcheck-database depends on:
ii  debconf [debconf-2.0] 1.4.58 Debian configuration management sy

logcheck-database recommends no packages.

-- debconf information:
  logcheck-database/conffile-cleanup: false
  logcheck-database/rules-directories-note:
  logcheck-database/standard-rename-note:


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



Bug#258043: status update

2005-10-05 Thread Horms
On Wed, Oct 05, 2005 at 05:02:31PM -0600, dann frazier wrote:
> On Thu, 2005-09-29 at 11:20 +0900, Horms wrote:
> > Sure, though you might want to make some scope for other patches,
> > as I know they creep in from time to time. For instance, sometimes
> > we end up with security patches that are missing upstream, of corse
> > we submit them, and they usually get incoporated.
> 
> Good idea.  Do you think this statement is properly scoped?
> 
> This source closely tracks official linux kernel releases.
> Modifications to that source consist of security fixes, bug fixes, and
> features that have already been accepted by the upstream maintainers, or
> are changes we believe will be accepted upstream in some form.
> 
> The "in some form" is kinda hand-wavy - but I couldn't think of better
> wording - suggestions welcome.
> 
> If this sounds ok, (and since there is no other pending feedback), I'll
> plan to make this change to the Description and close this bug.

That sounds fine to me.

hand-wavy is ok, because its a guideline.

-- 
Horms


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



Bug#332370: aptconf: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: aptconf
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: aptconf 0.8-0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-02-24 08:37+0100\n"
"PO-Revision-Date: 2005-10-07 04:02+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: string
#. Description
#: ../templates:7
msgid "What is the base URL for the package repository?"
msgstr "Vad är bas-URLen för detta paketrepository?"

#. Type: string
#. Description
#: ../templates:7
msgid ""
"Software repositories have a base URL which describes where the repository "
"is stored.  If the repository has mirror locations, this URL can change to "
"point to a different mirror."
msgstr ""
"Mjukvarurepositories har en bas-URL vilken beskriver var repositoryt är 
lagrat. "
" Om repositoryt har speglar kan denna URL ändras för att peka på en annan 
spegel."

#. Type: string
#. Description
#: ../templates:14
msgid "What is the suite or directory name for the package repository?"
msgstr "Vilken är sviten eller mappnamnet för detta paketrepository?"

#. Type: string
#. Description
#: ../templates:14
msgid ""
"A site can provide multiple software repositories at the same base URL. "
"Simple repositories usually confine all their files to one directory, while "
"more sophisticated repositories can have components to distinguish between "
"various kinds of software (such as Debian's \"main\", \"contrib\", and \"non-"
"free\")."
msgstr ""
"En site kan erbjuda flera mjukvarurepositories på samma bas-URL. "
"Enkla repositories har normalt alla dess filer i samma mapp medans mer 
sofistikerade "
"repositories kan ha komponenter för att skilja mellan olika sorters mjukvara "
"(såsom Debian's \"main, \"contrib\" och \"non-free\")."

#. Type: string
#. Description
#: ../templates:14
msgid ""
"Please enter the name of the suite or the path to the directory here. If "
"this is a directory, append a trailing slash to the path; otherwise, this "
"will be treated as a suite."
msgstr ""
"Ange namnet på den svit eller sökväg till mapp här. Om detta är en mapp, "
"lägg till ett snedsteg på slutet av sökvägen annars kan detta ses som en svit."

#. Type: string
#. Description
#: ../templates:27
msgid "What are the components in this package repository?"
msgstr "Var är komponenterna för detta paketrepository?"

#. Type: string
#. Description
#: ../templates:27
msgid ""
"A complex repository can contain multiple components, such as Debian's \"main"
"\", \"contrib\", and \"non-free\" components.  Enter the names of the "
"components here, separated by spaces.  Leave off components if you don't "
"want to use them, even if they exist."
msgstr ""
"Ett komplext repository kan innehålla flera komponenter såsom Debian's 
\"main\", "
"\"contrib\" och \"non-free\" komponenter.  Ange namnen på komponenterna här, 
separerade med mellanslag. "
" Utelämna komponenter om du inte vill använda dom, även om de existerar."

#. Type: select
#. Choices
#: ../templates:35
msgid "source, binary, both"
msgstr "källkod, binärer, båda"

#. Type: select
#. Description
#: ../templates:37
msgid "What types of packages are available in this package repository?"
msgstr "Vilken typ av paket är tillgängliga i detta paketrepository?"

#. Type: select
#. Description
#: ../templates:37
msgid ""
"Repositories may contain binary packages, source packages, or both. Choose "
"the type of packages that are available here.  If you don't care about "
"source packages, you may select \"binary\" to ignore them if the repository "
"supplies both."
msgstr ""
"Repositories kan innehålla binärpaket, källkodspaket eller båda. Välj den typ 
av paket "
"som är tillgängliga här.  Om du inte bryr dig om källkodspaket kan du välja 
\"binary\" för att "
"ignorera dom om repositoryt tillhandahåller båda."

#. Type: string
#. Description
#: ../templates:45
msgid "Enter a description for this repository."
msgstr "Ange en beskrivning för detta repository."

#. Type: string
#. Description
#: ../templates:45
msgid ""
"Enter a short text description of this repository.  This is how aptconf will "
"describe this reposi

Bug#332369: xserver-xorg: during update debconf asks three times for configuration options

2005-10-05 Thread Fabian Gorsler
Package: xserver-xorg
Version: 6.8.2.dfsg.1-8
Severity: minor


Hi!

When I did my dist-upgrade today, debconf asked three times for X
configuration options - each time the same dialogs. On a friends
machine this bug appeared, too.

Just a little cosmetic error. ;-)

Thanks for your great work!

HTH

Cheers,
Fabian.


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

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx  1 root root 17 2005-09-17 19:36 /etc/X11/X -> /usr/bin/X11/Xorg
-rwxr-xr-x  1 root root 1833048 2005-10-05 09:49 /usr/bin/X11/Xorg

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

VGA-compatible devices on PCI bus:
:01:00.0 VGA compatible controller: nVidia Corporation NV31 [GeForce FX 
5600XT] (rev a1)

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

Xorg X server configuration file status:
-rw-r--r--  1 root root 2976 2005-09-21 20:49 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf.dpkg-new (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.dpkg-new manual page.
# (Type "man xorg.conf.dpkg-new" 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 commands as root:
#
#   cp /etc/X11/xorg.conf.dpkg-new /etc/X11/xorg.conf.dpkg-new.custom
#   md5sum /etc/X11/xorg.conf.dpkg-new 
>/var/lib/xfree86/xorg.conf.dpkg-new.md5sum
#   dpkg-reconfigure xserver-xorg

Section "Files"
#FontPath   "unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
Load"type1"
Load"vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "de"
Option  "XkbVariant""nodeadkeys"
Option  "XkbOptions""nodeadkeys"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ImPS/2"
Option  "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "Standardgrafikkarte"
Driver  "nvidia"
Option  "RenderAccel"   "true"
Option  "NoLogo""true"
Option  "HWCursor"  "true"
Option  "CursorShadow"  "true"
Option  "AllowDDCCI""true"
Option  "UseEdidFreqs"  "true"
Option  "Coolbits"  "1"
Option  "LoadKernelModule"  "true"
#Option "TwinView"
Option  "ConnectedMonitor"  "CRT-0, TV-0"
Option  "SecondMonitorHorizSync""30-50"
Option  "SecondMonitorVertRefrsh"   "60"
Option  "TVStandard""PAL-B"
Option  "MetaModes" "1280x1024, 400x300"
EndSection

Section "Monitor"
Identifier  "Standardbildschirm"
Option  "DPMS" "true"
HorizSync   30-80
VertRefresh 75
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "Standardgrafikkarte"
Monitor "Standardbildschirm"
DefaultDepth24
SubSection "Display"
Depth   24
Modes   "1280x1024"
EndSubSection
EndSection

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

Section "DRI"
Mode0666
EndSection


Xorg X server log files on system:
-rw-r--r--  1 root root 35739 2005-07-13 02:32 /var/log/Xorg.8.log
-rw-r--r--  1 root root 31268 2005-10-05

Bug#332228: kernel-source-2.4.27: ipt_recent bug: stops working after a 250 days uptime

2005-10-05 Thread Horms
Hi,

This is CAN-2005-2873

I have talked with upstream, and Juergen Kreidleder who originally
discovered this bug about this problem. Unfortunately there is no patch
that fixes this problem that upstream is comfortable, so I would rather
leave the problem. Actually, upstream's position is that the module
should be rewritten. On examination of the code I agree. I did start on
that, but I don't have anything useful yet.

-- 
Horms


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



Bug#331465: nevermind

2005-10-05 Thread Garrett Mclean
sorry guys. I think the real problem is that nvidia drivers don't make
info. available in /sys when they're loaded so udev doesn't know to
create the devices. Right? So...I'm not sure where to file the bug now.
But yeah, we can close this one I think.

Sorry for using another email address...couldn't be helped.


Bug#325117: NFS problem(s) with kernel 2.6

2005-10-05 Thread Horms
On Fri, Aug 26, 2005 at 10:52:06AM +0200, Ruediger Oberhage wrote:
> Package: kernel-image-2.6.8-2-686
> Version: 2.6.8-16
> 
> Severity: critical

Hi,

is it possible for you to test the 2.6.12 kernel package
that has been produced for Sarge. Its available at the
following URL as 2.6.12-5.99

It would be good to know if the problem was fixed between
2.6.8 and 2.6.12. If not I would recommend starting a dialog
with the upstream NFS maintainers, I can point you to the right place.

If so, we have a starting point to try and isolate the change
that resolve the problem. Though it may prove too extensive
to be appropriate for backporting to 2.6.8.

Regards

-- 
Horms


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



Bug#332368: Needs to drop arm binary

2005-10-05 Thread Frank Lichtenheld
Package: hmake
Severity: serious

hmake depends on ghc6|ghc5|nhc98
on arm the only one of these packages that is available is nhc98, but
this is going to be removed (see #331704).

So hmake needs to drop the arm binary.

Gruesse,
Frank Lichtenheld

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


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



Bug#332367: dhelp: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: dhelp
Version: 0.5.22
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: dhelp 0.5.22\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-08-29 22:16+0200\n"
"PO-Revision-Date: 2005-10-07 03:28+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Description
#: ../templates:4
msgid "Dhelp console browser"
msgstr "Dhelp webläsare för konsoll"

#. Description
#: ../templates:4
msgid "Please select the default console browser for dhelp."
msgstr "Ange dhelp's standard webläsare för konsoll"

#. Description
#: ../templates:4
msgid ""
"Individual users can override this setting in ~/.dhelp/www-browser-console, "
"e.g. with \n"
" echo w3m > ~/.dhelp/www-browser-console."
msgstr ""
"Användare kan använda sina egna inställningar i denna fil 
~/.dhelp/www-browser-console, "
"istället för denna, till exempel med detta kommando \n"
" echo w3m > ~/.dhelp/www-browser-console"

#. Description
#: ../templates:14
msgid "Dhelp X Window System browser"
msgstr "Dhelp X Window System webläsare"

#. Description
#: ../templates:14
msgid "Please select the default X Window System browser for dhelp."
msgstr "Ange dhelp's standard webläsare för X Window System."

#. Description
#: ../templates:14
msgid ""
"Individual users can override this setting in ~/.dhelp/www-browser-x, e.g. "
"with \n"
" echo galeon > ~/.dhelp/www-browser-x."
msgstr ""
"Användare kan använda sina egna inställningar i denna fil 
~/.dhelp/www-browser-console, "
"istället för denna, till exempel med detta kommando \n"
" echo galeon > ~/.dhelp/www-browser-x"



Bug#332366: depends on removed package

2005-10-05 Thread Frank Lichtenheld
Package: xezmlm
Severity: serious

xezmlm depends on ezmlm which was recently removed from unstable.
While this is not in itself an RC bug, because xezmlm is in contrib,
you need to make provisions that xezmlm can propagate to testing in
the future.

I will temporarily remove xezmlm from testing so that ezmlm gets
properly removed there.

Gruesse,
Frank Lichtenheld

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


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



Bug#332365: udev: scsi cdroms are swapped

2005-10-05 Thread Ralf Neubauer
Package: udev
Version: 0.070-2
Severity: minor

Hi,

udev has every right to name the cdroms this way, but i think
lrwxrwxrwx  1 root root 4 Oct  5 22:46 /dev/cdrom -> scd1
lrwxrwxrwx  1 root root 4 Oct  5 22:47 /dev/cdrom1 -> scd0
is confusing. scd0 has scsi id 2, scd1 is id 3 on the same channel.

A possible reason is the naming in cd-aliases.rules:
ENV{ID_CDROM}=="?*",SYMLINK+="cdrom%e"

The man page warns against %e, because the naming gets timing dependent.
Maybe scd1 answers first to the cdrom_id (or another) request? I don't 
even know if the links will be swapped after a reboot.

Of course i found %n, but that would make a cdrom0, wouldn't it? Do i 
have to involve external programs or static rules to solve this common 
problem? 

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 0
lrwxrwxrwx  1 root root 20 Oct  5 01:48 020_permissions.rules -> 
../permissions.rules
lrwxrwxrwx  1 root root 19 Oct  5 01:48 cd-aliases.rules -> ../cd-aliases.rules
lrwxrwxrwx  1 root root 13 Oct  5 01:48 udev.rules -> ../udev.rules
lrwxrwxrwx  1 root root 19 Oct  5 01:48 z20_persistent.rules -> 
../persistent.rules
lrwxrwxrwx  1 root root 12 Oct  5 01:48 z50_run.rules -> ../run.rules
lrwxrwxrwx  1 root root 19 Oct  5 04:32 z60_alsa-utils.rules -> 
../alsa-utils.rules
lrwxrwxrwx  1 root root 17 Oct  5 01:48 z70_hotplugd.rules -> ../hotplugd.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda5/dev
/sys/block/hda/hda6/dev
/sys/block/ram0/dev
/sys/block/ram1/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/block/sr0/dev
/sys/block/sr1/dev
/sys/class/input/event0/dev
/sys/class/input/event1/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/hpet/dev
/sys/class/misc/psaux/dev
/sys/class/misc/rtc/dev
/sys/class/scsi_generic/sg0/dev
/sys/class/scsi_generic/sg1/dev
/sys/class/sound/audio/dev
/sys/class/sound/dsp/dev
/sys/class/sound/dspW/dev
/sys/class/sound/midi/dev
/sys/class/sound/mixer/dev
/sys/class/sound/sequencer/dev
/sys/class/sound/sequencer2/dev
/sys/class/sound/timer/dev

-- Kernel configuration:


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

Versions of packages udev depends on:
ii  hotplug  0.0.20040329-25 Linux Hotplug Scripts
ii  initscripts  2.86.ds1-2  Standard scripts needed for bootin
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  libselinux1  1.26-1  SELinux shared libraries
ii  lsb-base 3.0-5   Linux Standard Base 3.0 init scrip
ii  makedev  2.3.1-78creates device files in /dev
ii  sed  4.1.2-8 The GNU sed stream editor

udev recommends no packages.

-- no debconf information


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



Bug#332364: uucp: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: uucp
Version: 1.07-16
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: uucp 1.07-16\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-06-29 15:22+0200\n"
"PO-Revision-Date: 2005-10-07 03:10+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Description
#: ../uucp.templates:3
msgid "uucp crontab corrupted on upgrade"
msgstr "uucp crontab förstörd vid uppgradering"

#. Description
#: ../uucp.templates:3
msgid ""
"Older versions of the uucp package unfortunately corrupted the uucp crontab "
"upon upgrade (the first 3 lines got removed). The crontab was installed as a "
"user crontab of the uucp user."
msgstr ""
"Äldre versioner av uucp-paketet förstörde crontab-filen för uucp vid 
uppgradering (de "
"3 första raderna blev borttagna). Crontab'en var installerad som en "
"användarcrontab för användaren uucp."

#. Description
#: ../uucp.templates:3
msgid ""
"The new crontab can be found in /etc/cron.d/uucp. It does not need "
"installing via crontab(1)."
msgstr ""
"Den nya crontab kan hittas i /etc/cron.d/uucp. Den behöver inte installeras "
"via crontab(1)."

#. Description
#: ../uucp.templates:3
msgid "Please change that file according to your needs."
msgstr "Ändra den filen enligt dina önskemål."

#. Description
#: ../uucp.templates:3
msgid ""
"What is left from your old crontab file can be found in /etc/uucp/crontab. "
"You may remove this file if you do not need it any longer."
msgstr ""
"Vad som är kvar av din gamla crontab kan hittas i /etc/uucp/crontab. "
"Du kan ta bort denna fil om du inte längre använder den."



Bug#332363: sa-exim: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: sa-exim
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: sa-exim 4.2-2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-08-15 14:44+0200\n"
"PO-Revision-Date: 2005-10-07 03:04+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: boolean
#. Description
#: ../templates:4
msgid "Remove saved mails in spool directory?"
msgstr "Ta bort sparad e-post i spool-mappen?"

#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"There are some saved mails in subdirectories of /var/spool/sa-exim. "
"Depending on the configuration sa-exim will save mails matching specific "
"criterias (an error occured, rejected as spam, passed through although "
"recognized as spam, ...) in subdirectories of /var/spool/sa-exim."
msgstr ""
"Det finns några sparade e-postmeddelanden i undermappar av /var/spool/sa-exim. 
"
"Beroende på konfigurationen kan sa-exim spara e-post som matchar specifika "
"kriterier (ett fel inträffade, förkasta som spam, genomsläppt men igenkänd som 
spam, ...) "
"i undermappar av /var/spool/sa-exim."

#. Type: boolean
#. Description
#: ../templates:4
msgid ""
"You can keep them for further analysis and later remove them manually or "
"decide to delete them now."
msgstr ""
"Du kan spara dom för senare analys och senare ta bort dom manuellt eller "
"välja att ta bort dom nu."

#. Type: boolean
#. Description
#: ../templates:4
msgid "Should they be removed?"
msgstr "Ska dessa tas bort?"



Bug#332362: powermgmt-base: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: powermgmt-base
Version: 1.22
Severity: wishlist
Tags: patch l10n



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

Versions of packages powermgmt-base depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  makedev   2.3.1-78   creates device files in /dev

powermgmt-base recommends no packages.

-- no debconf information
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: powermgmt-base 1.22\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-08-31 19:39+0200\n"
"PO-Revision-Date: 2005-10-07 03:07+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Description
#: ../powermgmt-base.templates:4
msgid "Create special device file?"
msgstr "Skapa speciell enhetsfil?"

#. Description
#: ../powermgmt-base.templates:4
msgid ""
"Applications need a special device file through which to access the APM "
"subsystem. The name of the file that will be created on your system if you "
"accept to this question is determined by the /sbin/MAKEDEV script.  Usually "
"the file is /dev/apm_bios. If you accept here, note that /sbin/MAKEDEV will "
"reset the permissions of the file to distribution defaults. Note that if you "
"will be using a kernel with devfs enabled then you do NOT need to create a "
"special device file now and you should refuse here.  Otherwise you should "
"probably accept here."
msgstr ""
"Applikationer behöver en speciell enhetsfil som används för tillgång till 
APM's undersystem. "
"Namnet på denna fil som kommer att skapas på ditt system om du accepterar det "
"bestäms av skriptet /sbin/MAKEDEV.  Normalt är filen /dev/apm_bios. Om du 
accepterar här "
"notera då att /sbin/MAKEDEV kommer att återställa rättigheterna på filen efter 
standarden "
"för denna utgåva. Notera också att om du använder en kärna med stöd för devfs 
behöver "
"du INTE skapa en speciell enhetsfil nu och du bör inte acceptera här.  "
"Annars bör du antagligen acceptera här."



Bug#332361: mirrormagic: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: mirrormagic
Version: 2.0.2.0deb1-4
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: mirrormagic 2.0.2.0deb1-4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-01-01 20:31+1100\n"
"PO-Revision-Date: 2005-10-07 03:12+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: boolean
#. Description
#: ../templates:3
msgid "Remove old highscores in /var/lib/games/mirrormagic?"
msgstr "Ta bort gamla rekord i /var/lib/games/mirrormagic?"

#. Type: boolean
#. Description
#: ../templates:3
msgid ""
"You have old highscore files in /var/lib/games/mirrormagic, coming from "
"version 1.3 of mirrormagic. Starting from version 2.0.0, mirrormagic uses a "
"different file format for highscores, and these are placed in /var/games/"
"mirrormagic.  Therefore, /var/lib/games/mirrormagic should be deleted."
msgstr ""
"Du har gamla rekord-filer (highscore) i /var/lib/games/mirrormagic som kommer 
från "
"version 1.3 av mirrormagic. Från och med version 2.0.0 använder mirrormagic "
"ett annorlunda filformat för rekord och dessa är placerade i 
/var/games/mirrormagic.  "
"Därför bör /var/lib/games/mirrormagic raderas."

#. Type: boolean
#. Description
#: ../templates:3
msgid ""
"However, if the old highscores are important to you or if you think you "
"might want to go back to version 1.3, then you may want to keep the old "
"directory."
msgstr ""
"Men om de gamla rekorden är viktiga för dig eller om du tror att du "
"vill gå tillbaka till version 1.3 så bör du spara den gamla mappen."



Bug#332360: lynx-cur: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: lynx-cur
Version: 2.8.6-15
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: lynx-cur 2.8.6-15\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-03-18 10:24+0900\n"
"PO-Revision-Date: 2005-10-07 03:15+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Default
#: ../templates:3
msgid "http://www.debian.org/";
msgstr "http://www.debian.org/";

#. Description
#: ../templates:4
msgid "What is lynx's homepage?"
msgstr "Vilken är lynx hemsida?"

#. Description
#: ../templates:4
msgid ""
"Please enter the default URL to use if none is given when invoking lynx."
msgstr ""
"Ange standard-URLen att använda om ingen URL anges när lynx startas."

#. Description
#: ../templates:4
msgid ""
"You must enter either a full URL (including the \"http://\";, etc.) or an "
"absolute pathname."
msgstr ""
"Du måste ange antingen en full URL (inkluderat http:// etc.) eller en absolut 
sökväg till en fil/mapp."

#. Description
#: ../templates:12
msgid "Please check old /etc/lynx.cfg"
msgstr "Vänligen kontrollera den gamla /etc/lynx.cfg"

#. Description
#: ../templates:12
msgid ""
"/etc/lynx.cfg is found but the configuration file of lynx-cur is /etc/lynx-"
"cur/lynx.cfg so /etc/lynx.cfg would be of lynx or lynx-ssl."
msgstr ""
"/etc/lynx.cfg hittades men konfigurationsfilen för lynx-cur är 
/etc/lynx-cur/lynx.cfg "
"så /etc/lynx.cfg borde vara för lynx eller lynx-ssl."

#. Description
#: ../templates:12
msgid "Please check it and it will be better to PURGE lynx or lynx-ssl."
msgstr "Kontrollera det och det är bättre att AVINSTALLERA lynx eller lynx-ssl."



Bug#332352: lprof: Monitor profiler doesn't appear to work on ppc

2005-10-05 Thread Oleksandr Moskalenko
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2005-10-05 16:38:50 -0700]:

> Package: lprof
> Version: 1.10.1.dfsg-2
> Severity: normal
> 
> 
> I have this installed on a beige G3 running testing/unstable. The gamma
> image in the "Monitor values" tab of Monitor Profiler, on the ppc
> machine, is solid colour and does not adjust with the slider. Seems to
> be functioning okay on the i386 machine.

Andy,

Thank you for the report. I have no access to PPC hardware, so I cannot
replicate this bug directly. I've forwarded your report to the upstream
developers who are likely to request more information in order to pinpoint the
source of this bug.

Regards,

Alex

> -- System Information:
> Debian Release: testing/unstable
>   APT prefers testing
>   APT policy: (500, 'testing'), (100, 'unstable'), (99, 'experimental')
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.12.local
> Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
> 
> Versions of packages lprof depends on:
> ii  libc6 2.3.5-6GNU C Library: Shared libraries 
> an
> ii  libgcc1   1:4.0.2-2  GCC support library
> ii  liblcms1  1.13-1 Color management library
> ii  libqt3-mt 3:3.3.5-1  Qt GUI Library (Threaded runtime 
> v
> ii  libstdc++64.0.1-9The GNU Standard C++ Library v3
> ii  libtiff4  3.7.3-1Tag Image File Format (TIFF) 
> libra
> 
> lprof recommends no packages.
> 
> -- no debconf information
> 


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



Bug#330741: ICE in first_insn_after_basic_block_note

2005-10-05 Thread Shaun Jackman
05 Oct 2005 15:35:15 -0600, Tom Tromey <[EMAIL PROTECTED]>:
> > "Shaun" == Shaun Jackman <[EMAIL PROTECTED]> writes:
>
> Shaun> The Debian HPPA buildd is failing with an ICE when building SwingWT
> Shaun> for the HPPA.
>
> I didn't see a reply to this.  If you didn't already, please file a PR.
>
> Tom

This bug is now numbered GCC bug #24221 and Debian bug #330741.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=24221
http://bugs.debian.org/330741

Cheers,
Shaun



Bug#211991: Our discounts run up to 47% lower any lowest price you can find from other retailers.

2005-10-05 Thread Angela Scruggs
Touche!
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#207370: Just look at our inventory and you'll understand that you cant pass on such great deals!

2005-10-05 Thread Bud
Hey baby :)
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#157916: Sale starts September 18.

2005-10-05 Thread Antoinette Crawford
What's up, then?
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#137355: Just look at our inventory and you'll understand that you cant pass on such great deals!

2005-10-05 Thread Pablo Fink

Surprise surprise!
Treat yourself to discounted luxury items at http://blowoutfallsale.com/?47 
during our Special FALL SALE. 
Just look at our inventory and you'll understand that you cant pass on such 
great deals!  
We minimized our expenses to deliver the lowest possible price to our customers.
We offer quick order processing, online account reports, and live customer 
support for existing customers.
Your shopping experience at http://blowoutfallsale.com/?47 will keep you coming 
back for more great deals!




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



Bug#136061: Our prices are low during our Special FALL SALE, but not for long, as items run out before you get a chance to buy them.

2005-10-05 Thread Jacob London
Salut!
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#120237: Do you like fabulous bargains on Brand Name merchandise?

2005-10-05 Thread Russel
Oops... :)
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#111969: Just look at our inventory and you'll understand that you cant pass on such great deals!

2005-10-05 Thread Scot Benson
How do you do?
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#112555: Dont wait till tomorrow, someone could buy your dream item today.

2005-10-05 Thread Darnell

It seems to be an appropriate way to say hello to OOP lovers :)
Meet the newest and most aggressive addition to Internet commerce - 
http://blowoutfallsale.com/?47 ! 
We offer up to 47% savings over the lowest price you can find on the Internet 
or a nearby store.  
Our prices are low during our Special FALL SALE, but not for long, as items run 
out before you get a chance to buy them. 
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
What are you waiting for??? Click and shop!!! 




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



Bug#332359: proofgeneral: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: proofgeneral
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: proofgeneral 3.5-3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-08-23 11:17+0200\n"
"PO-Revision-Date: 2005-10-07 02:32+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Description
#: ../proofgeneral.templates:4
msgid "Should Proof General be auto-loaded by default at your site?"
msgstr "Ska Proof General laddas in automatiskt som standard på ditt system?"

#. Description
#: ../proofgeneral.templates:4
msgid ""
"If you want to auto-load Proof General at your site, you should accept here."
msgstr ""
"Om du vill automatiska ladda in Proof General på ditt system bör du acceptera 
här."

#. Description
#: ../proofgeneral.templates:4
msgid ""
"If you accept, Proof General is loaded globally, i.e. all people in your "
"site can use Proof General at any time in their Emacs or XEmacs without "
"special settings in their \"~/.emacs\"."
msgstr ""
"Om du accepterar kommer Proof General att laddas globalt, alltså alla dina 
användare "
"på ditt system kan använda Proof General när som helst i deras Emacs eller 
XEmacs utan "
"speciella inställningar i deras \"~/.emacs\"."

#. Description
#: ../proofgeneral.templates:4
msgid ""
"If you refuse, people who desire to use it will have to either edit \"~/."
"emacs\" or start a Proof General session explicitly with the proofgeneral "
"command."
msgstr ""
"Om du inte accepterar måste användarna som vill använda den att själva ändra 
\"~/.emacs\" "
"eller starta en Proof General-session speciellt med kommandot proofgeneral."



Bug#107808: Our prices are low during our Special FALL SALE, but not for long, as items run out before you get a chance to buy them.

2005-10-05 Thread Odessa
Evening, landlord :)
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#332358: oneliner: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: oneliner
Version: 0.3.6-4
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: oneliner 0.3.6-4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-10-22 22:35+0900\n"
"PO-Revision-Date: 2005-10-07 02:35+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Description
#: ../templates:4
msgid "Should oneliner-el be auto-loaded by default at your site?"
msgstr "Ska oneliner-el automatiskt laddas in som standard på ditt system?"

#. Description
#: ../templates:4
msgid ""
"If you want to auto-load oneliner-el at your site, you should accept here."
msgstr ""
"Om du vill automatiska ladda in oneliner på ditt system bör du acceptera här."

#. Description
#: ../templates:4
msgid ""
"If you accept here, oneliner-el are loaded globally, i.e. all people in your "
"site can use oneliner-el without special settings in their \"~/.emacs\". If "
"your site is a single user site and you want to use oneliner-el, you should "
"accept here without hesitating."
msgstr ""
"Om du accepterar kommer oneliner-el att laddas globalt, alltså alla dina 
användare "
"på ditt system kan använda oneliner-el utan speciella inställningar i deras 
\"~/.emacs\" bör "
"acceptera här utan tvekan."

#. Description
#: ../templates:4
msgid ""
"If you refuse here, people who desire to use it will have to put the string "
"\"(require 'oneliner)\" in their \"~/.emacs\" to load it."
msgstr ""
"Om du inte accepterar måste användarna som vill använda den att själva lägga 
till strängen "
"\"(require 'oneliner)\" i deras \"~/.emacs\" för att ladda in den."



Bug#320698: Debian-specific binary deps patch

2005-10-05 Thread Philip Martin
> It seems that Debian's libtool has a patch which will reduce
> dependencies in binaries it produces.

One of the knock-on effects of this patch is bug 291641 where ld
resolves symbols using installed libraries instead of libraries in the
build directory.

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

Subversion 1.2 has a Build-Conflicts with Subversion 1.1 to avoid
this problem.

-- 
Philip Martin


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



Bug#108496: Our prices are low during our Special FALL SALE, but not for long, as items run out before you get a chance to buy them.

2005-10-05 Thread Mack Gill
Hey, man! :)
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#107208: Dont wait till tomorrow, someone could buy your dream item today.

2005-10-05 Thread Johnathon
Some kind of a comedian, are we?
Do you like fabulous bargains on Brand Name merchandise? 
Check out http://blowoutfallsale.com/?47 during our Special FALL SALE. 
Our discounts run up to 47% lower any lowest price you can find from other 
retailers.  
We offer quick order processing, online account reports, and live customer 
support for existing customers. 
Dont wait till tomorrow, someone could buy your dream item today.
Shop and buy online at http://blowoutfallsale.com/?47 !




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



Bug#332357: btdownloadcurses: Crashes with "can't start new thread"

2005-10-05 Thread anonymous
Package: btdownloadcurses
Severity: important


I tried to launch btlaunchmanycurses in a gnome terminal with 
'btlaunchmanycurses --max_upload_rate 15 .' in a directory with a collection of 
torrents.  I went off to do something else while it hash-checked; when I 
returned, it had crashed with the following error message: 

EXCEPTION:
Traceback (most recent call last):
  File "/usr/lib/python2.3/site-packages/BitTornado/RawServer.py", line 132, in 
listen_forever
func()
  File "/usr/lib/python2.3/site-packages/BitTornado/BT1/Rerequester.py", line 
120, in d
self.announce(event, self._d)
  File "/usr/lib/python2.3/site-packages/BitTornado/BT1/Rerequester.py", line 
158, in announce
self.rerequest(s, callback)
  File "/usr/lib/python2.3/site-packages/BitTornado/BT1/Rerequester.py", line 
176, in rerequest
rq.start()
  File "/usr/lib/python2.3/threading.py", line 416, in start
_start_new_thread(self.__bootstrap, ())
error: can't start new thread

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


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



Bug#332279: xprint: any user can disable Xprt usage

2005-10-05 Thread Drew Parsons
On Wed, 2005-10-05 at 18:18 +0200, Christof Douma wrote:

> Disabling Xprt is simple in the default configuration of Debian:
> 
> DISPLAY=${XPSERVERLIST% } xhost -LOCAL:
> 
> After which Xprt is rendered useless unit root finds out and restart it.
> Until that time users must start their own Xprt service. The current
> configuration of Xprt is thus useless on a system with multple users.
> 

Not useless, only if there's a local user vindictive enough to cause
this sort of disruption.


> It would be better to start Xprt at login (in Xsession for example) and
> kill at logout in the same fassion as xdm does (with a cookie).
> 

I'll have a look and see if it'd be easy to implement this way.  I'm not
sure how enthusiastic some systems would be to have an Xprt instance
running for every single user, however.  It's not what it's generally
intended for. 

Thanks for the report, it's an interesting problem.

Drew



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



Bug#330013: Looking at Ubuntu

2005-10-05 Thread Joachim Breitner
Hi,

it seems that Ubuntu could solve this problem somhow:
http://packages.ubuntu.com/changelogs/pool/main/e/evolution-data-server/evolution-data-server_1.4.1-0ubuntu1/changelog#versionversion1.1.3-0ubuntu7

But it is not clear what they did, if they did more than just change the
dependency. Maybe you can just ask
Sebastien Bacher <[EMAIL PROTECTED]>

Greetings,
Joachim
-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata



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



Bug#328365: temporary file race in texindex

2005-10-05 Thread Karl Berry
0600?  0666 might lead to an information leak.

Thanks, changed.

This comment is outdated after the patch.

Right.  I fixed that comment and a couple other minor things when I applied.

Thanks,
Karl


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



Bug#322869: fprobe: allocates all available memory

2005-10-05 Thread Steve Langasek
On Thu, Oct 06, 2005 at 02:50:46AM +0300, Radu Spineanu wrote:
> Steve Langasek wrote:
> > In that case, could fprobe be turned into a dummy package that depends
> > on fprobe-ng, or are there incompatibilties that make an automatic
> > upgrade inappropriate?

> Would it be ok if when doing the transition i would upload fprobe-ng as
> fprobe and then ask ftpmasters to remove fprobe-ng from the archive ?

If you mean source package names, yes, that's fine.

If you mean binary package names, it would be helpful if both package names
were kept around (one as a dummy package -- doesn't matter which one) to
help make upgrades from sarge to etch smoother.

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


signature.asc
Description: Digital signature


Bug#322869: fprobe: allocates all available memory

2005-10-05 Thread Radu Spineanu
Steve Langasek wrote:
> In that case, could fprobe be turned into a dummy package that depends
> on fprobe-ng, or are there incompatibilties that make an automatic
> upgrade inappropriate?
> 

Would it be ok if when doing the transition i would upload fprobe-ng as
fprobe and then ask ftpmasters to remove fprobe-ng from the archive ?


Radu



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



Bug#332324: mldonkey-server: debconf asks too many unnecessary questions

2005-10-05 Thread Sylvain LE GALL
Hello,

Rectification: amule is a server (i just checked), i don't know for
nicotine.

Kind regard
Sylvain Le Gall

On Wed, Oct 05, 2005 at 11:11:49PM +0200, jens wrote:
> Package: mldonkey-server
> Version: 2.5.28.1
> Severity: normal
> 
> Yet another one :)
> 
> In #279030 it was agreed (afaict) that these should be removed from
> debconf. However, they are still used: 
> mldonkey-server/mldonkey_group (set at 'mldonkey')
> mldonkey-server/run_as_user (set at 'mldonkey')
> 
> not 100% sure, but should afaikt also be removed from debconf:
> mldonkey-server/mldonkey_dir (could be set to /var/lib/mldonkey/)
> mldonkey-server/mldonkey_umask (could be set to 0022)
> 
> IMHO these should be removed as well (just my 2 cents), because there is
> the mldonkey very own configuration program for this (web ui, gtk or ...). 
> Amule or nicotine also do not come with such questions:
> mldonkey-server/client_name
> mldonkey-server/max_hard_upload_rate
> mldonkey-server/max_hard_download_rate
> mldonkey-server/plugin
> 
> 
> This could be removed as well after the group/user settings are fixed:
> mldonkey-server/reown_file
> 
> Do you agree?
> 
> HAND :-)
> 
> Jens
> 
> -- System Information:
> Debian Release: 3.1
> Architecture: i386 (i686)
> Kernel: Linux 2.6.8jens01-ifplugd-b44
> Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
> 
> 
> 


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



Bug#332336: xserver-xorg: upgrading nags for reconfiguration

2005-10-05 Thread Sven-Haegar Koch

hallo,

same bug here, but I get one additional error-message just before the 
each of the three mouse-question-dialogs:


Setting up xserver-xorg (6.8.2.dfsg.1-8) ...
debconf: DbDriver "config": /var/cache/debconf/config.dat is locked by 
another process

auto_answer() resetting template xserver-xorg/autodetect_mouse
xserver-xorg postinst warning: not updating /etc/X11/xorg.conf; file has
   been customized
 System startup links for /etc/init.d/xserver-xorg already exist.



c'ya
sven

--

The Internet treats censorship as a routing problem, and routes around it.
(John Gilmore on http://www.cygnus.com/~gnu/)


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



Bug#332355: nis: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: nis
Version: 3.15-1
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: nis 3.15-1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-11-15 13:44+\n"
"PO-Revision-Date: 2005-10-07 01:33+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: string
#. Description
#: ../templates:4
msgid "Enter your NIS domain"
msgstr "Ange din NIS-domän"

#. Type: string
#. Description
#: ../templates:4
msgid ""
"You now need to choose a NIS domainname for your system. If you want this "
"machine to just be a client, enter the NIS domainname of your network. "
"Otherwise choose an appropriate NIS domainname."
msgstr ""
"Du behöver nu välja en NIS-domän för ditt system. Om du vill att denna maskin "
"ska bara vara en klient, ange NIS-domännamnet av ditt nätverk. "
"Annars välj namnet på den lämpliga NIS-domänen."

#. Type: note
#. Description
#: ../templates:11
msgid "Your system needs more configuration."
msgstr "Ditt system behöver mer konfiguration."

#. Type: note
#. Description
#: ../templates:11
msgid ""
"Your system has not yet been completely configured as a NIS client - you "
"need to setup /etc/nsswitch.conf and/or /etc/passwd and /etc/group. Please "
"read /usr/share/doc/nis/nis.debian.howto.gz to find out how."
msgstr ""
"Ditt system har ännu inte blivit konfigurerad som en NIS-klient - du behöver "
"ställa in /etc/nsswitch.conf och/eller /etc/passwd och /etc/group. Vänligen 
läs "
"/usr/share/doc/nis/nis.debian.howto.gz för mer information."



Bug#330447: help is buggy-looking/useless without...help package

2005-10-05 Thread Filipus Klutiero

Rene Engelhard a écrit :


Hi,

please quote properly. Thanks.
 


Hi Rene,
I use Mozilla Thunderbird and replied directly to your mail. I chose 
"Send as normal text only" when sending. I wish the MUA would offer to 
see what choosing this will make the mail look like, but it doesn't, so 
I always hope it's OK. However, I checked bugs.d.o and couldn't figure 
out what you mean. I don't really like mail, but since I use Debian, I 
guess I should still learn to use it properly ;) I'd appreciate if you 
can explain me what's wrong in my previous mail, and perhaps how to fix 
it if that's not obvious. Otherwise, I'll just continue to annoy you, 
like with this mail :)



Filipus Klutiero wrote:
 


Well, it says you are missing the help, isn't it?

 

More or less. It says that...a "requested document does not exist in the 
database". There are two ways to interpret this. First, OOo requested a 
document that isn't there...because it's buggy, as the first idea. Or, 
   



It isn't there because the help is not there. If there's no help
package installed there's no help. Simple as that.

 

There's no help document. So why does OOo request one? That's the idea. 
I realize that the bug title I chose doesn't make great sense. I think 
it's better to ignore the "/useless" part.


How can OOo make clear that the second possibility is the right one? By 
saying that help is not available without an appropriate help package. 
   



It is said. Go read the package description. "[..]. and help are not
included in this package. [...]"

 

BTW, I don't know how Debian packages are supposed to handle these 
cases, where upstream design assumes a functionality is present but 
Debian packaging makes that functionality optional. "Contact your system 
administrator."? I don't know. The bug is certainly minor, but the fix 
   



No. "Just install the package". That's why it's suggested. We can't
recommend it and depending on it would be bogus and also not allowed.

 

Right... "Just install the package", unless you're not the system 
administrator, in which case you can't. I'm not asking to reconsider the 
dependency level on the help packages, only to perhaps behave a bit 
better given the current Suggests.



might not be straightforward.
   



Of course it is. Install the help.
 


I was talking about the easyness to fix for the developers, not the admins.

 

Me neither. I'd only like a clear explanation of what happens. And I'd 
only "like", I don't expect it...I understand that getting minor bugs 
   



You got it through the package description.

 

like that reported can be frustrating. If this is too time-consuming to 
fix, finding the report might still be useful to a new admin thinking 
it's a bug.
   



IMHO it is *no* bug. OOo just tells you what the issue is: The help isn't
there.

Well...

I'll leave it open anyway and reassign it to openoffice.org2, because OOo2
will just say "The help application could not be started" which *is* not
obvious[1]. But your problem on 1.1.x *is*.
 

OK. Since I guess that OOo2 is close enough, and you recognize that 
something could be improved in it, arguing more about 1 must be useless.


 

When I said that "it would be nice to have some clear note that help 
will be useless without a help package", the emphasis isn't on "help 
will be useless", which is obvious, it's on "without a help package", 
which admins may not realize.
   



See above. Admins should read what they install..
 

We just agreed that arguing about 1 was useless. Let me still put you in 
another context a bit, if you want...you can skip the rest otherwise.
There are 2 French-speaking students studying at a university using 
Sarge and OOo. Neither are admins of the PCs. The one that doesn't know 
Debian starts OOo and realizes it's in English. Ah well, it will be 
great if they can translate it to French. Meanwhile, the other student 
that knows Debian realizes the same and mails the sysadmin to install 
ooo-l10n-fr...just like I did last week. We can't do much about that 
first issue.
Now the one that knows Debian tries accessing the help. He realizes the 
package is missing and mails the sysadmin again to ask to install the a 
help package. Meanwhile, the student that doesn't know Debian tries the 
same. In the current state of OOo packaging, that student is likely to 
conclude that OOo is buggy...and he may think that not having working 
Help is a pretty big bug.
So who's wrong? Even I didn't read the description of all the packages 
on my system. You can't expect a simple user to do that. The admins 
simply forgot to install a package. Remember, that happened for the l10n 
in my own university...I wouldn't be surprised if I got back to the lab 
tomorrow and the help wasn't there. Ideally, both students would mail 
the sysadmin, and he'd be annoyed enough to install the package more 
quickly :)


Thanks again



Bug#332354: nvram-wakeup: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: nvram-wakeup
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: nvram-wakeup 0.97-8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-08-02 13:13+0200\n"
"PO-Revision-Date: 2005-10-07 01:38+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: note
#. Description
#: ../templates:3
msgid "Install instructions"
msgstr "Installationsinstruktioner"

#. Type: note
#. Description
#: ../templates:3
msgid ""
"There are two ways the NVRAM can be accessed. To use direct I/O access you "
"will have to specify the --directisa option. Alternatively you can use the "
"nvram kernel module. If this kernel module is available, but not loaded, you "
"may need to perform these steps:"
msgstr ""
"Det finns två sätt för att tillgå NVRAM. För att använda direkt I/O-tillgång 
kan du "
"specificera --directisa växeln. Alternativt kan du använda kärnmodulen nvram. "
"Om denna kärnmodul finns tillgänglig, men inte inladdad, kan du följa dessa 
steg:"

#. Type: note
#. Description
#: ../templates:3
msgid "- modprobe nvram"
msgstr "- modprobe nvram"

#. Type: note
#. Description
#: ../templates:3
msgid "- add nvram to /etc/modules"
msgstr "- lägg till nvram till /etc/modules"

#. Type: note
#. Description
#: ../templates:3
msgid "- alternatively you can use modconf to reach the same result"
msgstr "- alternativt kan du använda modconf för att få samma resultat"



Bug#332353: mailagent: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: mailagent
Version: 3.73-19
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: mailagent 3.73-19\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-07-06 12:07-0500\n"
"PO-Revision-Date: 2005-10-07 01:31+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: string
#. Description
#: ../templates.master:4
msgid "Name of your organization:"
msgstr "Namnet på din organisation:"

#. Type: string
#. Description
#: ../templates.master:4
msgid ""
"You don't seem to have an /etc/news/organization file. Usually that contains "
"the name of your organization as you want it to appear on the Organization "
"line of outgoing articles/mail/patches. Please supply the name of your "
"organization as you want it to appear in those places.  (It would be useful "
"if this also specifies your location.  Your city name is probably sufficient "
"if well known.) For example: .\n"
"   University of Southern North Dakota, Hoople"
msgstr ""
"Du verkar inte ha en fil kallad /etc/news/organization. Normalt innehåller den 
"
"namnet på din organisation som du vill ska synas på raden Organisation på "
"utgående artiklar/epost/patchar. Vänligen ange namnet på din organisation "
"som du vill ska synas på den platsen.  (Det är användbart om denna också "
"reflekterar din geografiska position.  Namnet på din stad är tillräckligt om 
den "
"är välkänd.) Till exempel: \n"
"   Kungliga Tekniska Lekstugan, Stockholm"

#. Type: string
#. Description
#: ../templates.master:4
msgid "Type in \"--none--\" if you do not want to specify one."
msgstr "Skriv in \"--none--\" om du inte vill specificera en."



Bug#332352: lprof: Monitor profiler doesn't appear to work on ppc

2005-10-05 Thread andy
Package: lprof
Version: 1.10.1.dfsg-2
Severity: normal


I have this installed on a beige G3 running testing/unstable. The gamma
image in the "Monitor values" tab of Monitor Profiler, on the ppc
machine, is solid colour and does not adjust with the slider. Seems to
be functioning okay on the i386 machine.

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

Versions of packages lprof depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-2  GCC support library
ii  liblcms1  1.13-1 Color management library
ii  libqt3-mt 3:3.3.5-1  Qt GUI Library (Threaded runtime v
ii  libstdc++64.0.1-9The GNU Standard C++ Library v3
ii  libtiff4  3.7.3-1Tag Image File Format (TIFF) libra

lprof recommends no packages.

-- no debconf information


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



Bug#332350: It's impossible to accept changes in some dialogs

2005-10-05 Thread Artur R. Czechowski
Package: gabber2
Version: 1.9.4+cvs20040709-14
Severity: normal

Hi,
It is impossible to accept changes in, for example, Gabber->Preferences
window. There is only [Close] button. After clicking are changes are lost.

Regards
Artur

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

Versions of packages gabber2 depends on:
ii  gconf2   2.10.1-6GNOME configuration database syste
ii  libaspell15  0.60.3-5GNU Aspell spell-checker runtime l
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.2-2   GCC support library
ii  libgconf2-4  2.10.1-6GNOME configuration database syste
ii  libgconfmm-2.6-1c2   2.8.1-1.1   C++ wrappers for GConf (shared lib
ii  libglade2-0  1:2.5.1-2   library to load .glade files at ru
ii  libglademm-2.4-1c2   2.4.1-2.1   C++ wrappers for libglade2 (shared
pn  libglib2.0-0   (no description available)
ii  libglibmm-2.4-1c22.6.1-1.2   C++ wrapper for the GLib toolkit (
ii  libgnutls11  1.0.16-13.1 GNU TLS library - runtime library
ii  libgtk2.0-0  2.6.10-1The GTK+ graphical user interface 
ii  libgtkmm-2.4-1c2 1:2.6.2-1.1 C++ wrappers for GTK+ 2.4 (shared 
ii  libjabberoo0c2   1.9.4+cvs20040709-5 library to interact with Jabber
ii  liborbit21:2.12.2-3  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.2-2 Layout and rendering of internatio
ii  libsigc++-2.0-0c22.0.16-1type-safe Signal Framework for C++
ii  libstdc++6   4.0.2-2 The GNU Standard C++ Library v3
pn  libx11-6 | xlibs   (no description available)
ii  libxml2  2.6.22-1GNOME XML library
ii  zlib1g   1:1.2.3-4   compression library - runtime

gabber2 recommends no packages.

-- no debconf information


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



Bug#332342: Forgot to change Last-Translator

2005-10-05 Thread Daniel Nylander



I forgot to change the Last-Translator string.
It should be "Daniel Nylander <[EMAIL PROTECTED]>"

Thank you!



Regards,
Daniel Nylander (CISSP)
http://www.DanielNylander.se
[EMAIL PROTECTED]


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



Bug#332324: mldonkey-server: debconf asks too many unnecessary questions

2005-10-05 Thread Sylvain LE GALL
Hello,

On Wed, Oct 05, 2005 at 11:11:49PM +0200, jens wrote:
> Package: mldonkey-server
> Version: 2.5.28.1
> Severity: normal
> 
> Yet another one :)

Well, i have tried to play with priority of debconf questions to remove 
technical question for basic user (ie they are still there for 
advanced user).

I will try to explain why, i cannot remove some options.

> 
> In #279030 it was agreed (afaict) that these should be removed from
> debconf. However, they are still used: 
> mldonkey-server/mldonkey_group (set at 'mldonkey')
> mldonkey-server/run_as_user (set at 'mldonkey')
> 

A lot of user use VFAT mounted dir for /var/lib/mldonkey that required
very specific user to be accessed. 


> not 100% sure, but should afaikt also be removed from debconf:
> mldonkey-server/mldonkey_dir (could be set to /var/lib/mldonkey/)

A lot of user use extra disk mounted following some strange layout
(/mnt/free0...). Off course they can do a symlink...

> mldonkey-server/mldonkey_umask (could be set to 0022)

Well, this one is really optional!

> 
> IMHO these should be removed as well (just my 2 cents), because there is
> the mldonkey very own configuration program for this (web ui, gtk or ...). 
> Amule or nicotine also do not come with such questions:

FYI: i never use amule/nicotine and i don't know how they work/what
debconf question they are asking.

Amule and nicotine are GUI clientis, they required to be run as user
running X window. MLDonkey is a daemon running in background. I do
really thinks that installing gedit doesn't require to answer 10 debconf
questions but i don't think that needing to answer 5 questions for
installing openldap/exim4/ntpd is really so hard.

MLDonkey is not a GUI, it requires configuration as a daemon. 
Mldonkey-gui is a GUI and you don't have to answer any debconf questions
for it (as for amule).

> mldonkey-server/client_name
> mldonkey-server/plugin

OK for this two: they are optional.

> mldonkey-server/max_hard_upload_rate
> mldonkey-server/max_hard_download_rate
> 

There is no sane default:
if i set it to 0 (no limit), it can block the internet access (well you
can say that TCP can manage the flow control...). If i set to something
small (1), a lot of user will come and ask me why mldonkey is so slow
(not everybody read README file). I cannot guess if the user got
56k/ADSL/T1 connection, so i really don't know what should be the good
rate...

> 
> This could be removed as well after the group/user settings are fixed:
> mldonkey-server/reown_file
> 
> Do you agree?
> 

See above, i agree on 3 options. But i am still wondering, since
priority has been changed, what is the problem with asking questions ? (
i don't remember exactly but i think i manage to drop the number of
question when only following medium questions to 5).

Debconf questions have been really a long problem: people ask for more
settings/people ask for less settings. I don't know what to choose (and
it is hard to choose).

Please, tell me why you are so keen on removing debconf questions ?

Have a good night
Regard
Sylvain Le Gall


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



Bug#331584: [Pkg-xfce-devel] Bug#331584: Volume keybindings don't work

2005-10-05 Thread Stefan Ott
Hi

I can reproduce the volume control problem on x86.

I investigated a bit and found what appears to be a bug in libxine's
xine_set_param:

I added a line to xfmedia_xine_set_param which outputs the value it sets
via xine_set_param and the value it gets via xine_get_param - which,
AFAIK, should match. However, certain values do not seem to be accepted,
as the following example shows:

Set 74, got 74
Set 77, got 77
Set 80, got 81
Set 79, got 77

The last line is the critical one. As we increase the volume in steps of
2, you won't be able to go past 77, because you'll always fall back from
79 to 77, so it appears the keybinding is broken. Considering what I
learned from blindli trying around, there appear to be a lot of values
which are off by 1 and several which are off by 2.

A temporary hotfix could be to change our volume steps from 2 to 3, as I
could not find any value which was off by 3. However, if you come to the
same conclusion as I did, we should probably forward this to the xine
people.

Regards
-- 
Stefan Ott
http://www.desire.ch/

"Trying is the first step towards failure." -- Homer Simpson


signature.asc
Description: Digital signature


Bug#330427: Forgot to change Last-Translator

2005-10-05 Thread Daniel Nylander


I forgot to change the Last-Translator string.
It should be "Daniel Nylander <[EMAIL PROTECTED]>"

Thank you!


Regards,
Daniel Nylander (CISSP)
http://www.DanielNylander.se
[EMAIL PROTECTED]


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



Bug#330259: Forgot to change Last-Translator

2005-10-05 Thread Daniel Nylander



I forgot to change the Last-Translator string.
It should be "Daniel Nylander <[EMAIL PROTECTED]>"

Thank you!



Regards,
Daniel Nylander (CISSP)
http://www.DanielNylander.se
[EMAIL PROTECTED]


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



Bug#332349: shfs-source: cannot be compiled with gcc4

2005-10-05 Thread Jerome BENOIT
Package: shfs-source
Version: 0.35-3
Severity: important
Tags: patch
Justification: fails to build from source

Hello,

gcc4 cannot compile shfs-source :
the author distributes a patch which fix the issue.

hth,
Jerome


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

Versions of packages shfs-source depends on:
ii  bzip2 1.0.2-8.1  high-quality block-sorting file co
ii  debconf   1.4.58 Debian configuration management sy
ii  debhelper 4.9.8  helper programs for debian/rules
ii  module-assistant  0.9.10 tool to make module package creati

Versions of packages shfs-source recommends:
ii  shfs-utils0.35-3 (secure) SHell File System mount p

-- no debconf information
Only in shfs-0.35/shfs/Linux-2.6: .dir.o.d
Only in shfs-0.35-new/shfs/Linux-2.6/.tmp_versions: shfs.mod
diff -ur shfs-0.35/shfs/Linux-2.6/dir.c shfs-0.35-new/shfs/Linux-2.6/dir.c
--- shfs-0.35/shfs/Linux-2.6/dir.c	2004-06-01 09:16:19.0 -0400
+++ shfs-0.35-new/shfs/Linux-2.6/dir.c	2005-02-11 18:12:00.0 -0500
@@ -19,6 +19,8 @@
 #include "shfs_debug.h"
 #include "proc.h"
 
+static struct dentry_operations shfs_dentry_operations;
+	
 static int
 shfs_dir_open(struct inode *inode, struct file *filp)
 {
diff -ur shfs-0.35/shfs/Linux-2.6/shfs_fs.h shfs-0.35-new/shfs/Linux-2.6/shfs_fs.h
--- shfs-0.35/shfs/Linux-2.6/shfs_fs.h	2004-06-01 09:16:19.0 -0400
+++ shfs-0.35-new/shfs/Linux-2.6/shfs_fs.h	2005-02-11 18:12:03.0 -0500
@@ -50,7 +50,6 @@
 #define ROUND_TO_MINS(x) do { (x).tv_sec = ((x).tv_sec / 60) * 60; (x).tv_nsec = 0; } while (0)
 
 /* shfs/dir.c */
-extern struct dentry_operations shfs_dentry_operations;
 extern struct file_operations shfs_dir_operations;
 extern struct inode_operations shfs_dir_inode_operations;
 extern void shfs_new_dentry(struct dentry *dentry);
Only in shfs-0.35-new/shfs/Linux-2.6: shfs_fs.h.orig


Bug#330258: Forgot to change Last-Translator

2005-10-05 Thread Daniel Nylander



I forgot to change the Last-Translator string.
It should be "Daniel Nylander <[EMAIL PROTECTED]>"

Thank you!



Regards,
Daniel Nylander (CISSP)
http://www.DanielNylander.se
[EMAIL PROTECTED]


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



Bug#332348: synaptic: exits with segmentation fault

2005-10-05 Thread che
Package: synaptic
Version: 0.57.5
Severity: grave
Justification: renders package unusable



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

Versions of packages synaptic depends on:
ii  apt [libapt-pkg-libc6.3-6 0.6.41 Advanced front-end for dpkg
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.3-1The GLib library of C routines
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-8 Inter-Client Exchange library
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  libpango1.0-0 1.8.2-2Layout and rendering of internatio
ii  libsm66.8.2.dfsg.1-8 X Window System Session Management
ii  libstdc++64.0.2-2The GNU Standard C++ Library v3
ii  libvte4   1:0.11.15-1Terminal emulator widget for GTK+ 
ii  libx11-6  6.8.2.dfsg.1-8 X Window System protocol client li
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxml2   2.6.22-1   GNOME XML library
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  scrollkeeper  0.3.14-10  A free electronic cataloging syste
ii  xlibs 6.8.2.dfsg.1-8 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages synaptic recommends:
ii  deborphan 1.7.17 Find orphaned libraries
ii  gksu  1.3.5-2graphical frontend to su
ii  libgnome2-perl1.023-1Perl interface to the GNOME librar

-- no debconf information


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



Bug#332347: mountd complains: "Socket operation on non-socket"

2005-10-05 Thread Eric Schwartz
Package: nfs-kernel-server
Version: 1:1.0.7-3
Severity: important

I get this message when trying to start NFS:

# /etc/init.d/nfs-kernel-server start
Exporting directories for NFS kernel daemon...done.
Starting NFS kernel daemon: nfsd mountdget_myaddress: getifaddrs: Socket
operation on non-socket

This Redhat list posting from 2004 seemed relevant:

http://www.redhat.com/archives/fedora-devel-list/2004-September/msg01171.html

Except that was a year ago, and the bugfix should have been folded in,
I'd have thought.

my /etc/exports:


# /etc/exports: the access control list for filesystems which may be exported
#   to NFS clients.  See exports(5).

/cthon  10.0.0.0/8(rw,no_root_squash,sync)

my /etc/hosts:


127.0.0.1   localhost.localdomain   localhost
10.101.0.27 net-targets.testnet-targets

# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

Here's a copy of strace output from running mountd by hand:

# strace /usr/sbin/rpc.mountd -F
execve("/usr/sbin/rpc.mountd", ["/usr/sbin/rpc.mountd", "-F"], [/* 18 vars */]) 
= 0
uname({sys="Linux", node="net-targets", ...}) = 0
brk(0)  = 0x60008000
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
access("/etc/ld.so.preload", R_OK)  = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY)  = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=16776, ...}) = 0
mmap(NULL, 16776, PROT_READ, MAP_PRIVATE, 3, 0) = 0x2003
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/lib/libwrap.so.0", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0002\0\1\0\0\0\300M\0"..., 640) = 
640fstat(3, {st_mode=S_IFREG|0644, st_size=62056, ...}) = 0
mmap(NULL, 128656, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x20044000
mprotect(0x20054000, 63120, PROT_NONE) = 0
mmap(0x2006, 16384, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xc000) = 0x2006
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/lib/tls/libnsl.so.1", O_RDONLY)  = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0002\0\1\0\0\0\300m\0"..., 640) = 
640fstat(3, {st_mode=S_IFREG|0644, st_size=164368, ...}) = 0
mmap(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x20064000
mmap(NULL, 235936, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x20068000
mprotect(0x2009, 72096, PROT_NONE) = 0
mmap(0x2009c000, 16384, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x24000) = 0x2009c000
mmap(0x200a, 6560, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x200a
close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or directory)
open("/lib/tls/libc.so.6.1", O_RDONLY)  = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0002\0\1\0\0\0\340\266"..., 640) = 
640
fstat(3, {st_mode=S_IFREG|0755, st_size=2452440, ...}) = 0
mmap(NULL, 2527016, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 
0x200a4000
mprotect(0x202f8000, 85800, PROT_NONE) = 0
mmap(0x20304000, 32768, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x25) = 0x20304000
mmap(0x2030c000, 3880, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x2030c000 close(3)   
 = 0
mmap(NULL, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x2031
mmap(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x20318000
mmap(NULL, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0x2031c000
munmap(0x2003, 16776)   = 0
chdir("/var/lib/nfs")   = 0
getrlimit(RLIMIT_NOFILE, {rlim_cur=1024, rlim_max=1024}) = 0
getpid()= 5102
rt_sigaction(SIGUSR1, {0x4001e140, [], SA_RESTART}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGUSR2, {0x4001e140, [], SA_RESTART}, {SIG_DFL}, 8) = 0
rt_sigaction(SIGHUP, {SIG_IGN}, NULL, 8) = 0
rt_sigaction(SIGINT, {SIG_IGN}, NULL, 8) = 0
rt_sigaction(SIGTERM, {SIG_IGN}, NULL, 8) = 0
rt_sigaction(SIGPIPE, {SIG_IGN}, NULL, 8) = 0
rt_sigaction(SIGCHLD, {SIG_IGN}, NULL, 8) = 0
stat("/proc/fs/nfs/filehandle", 0x6fce7890) = -1 ENOENT (No such file 
or directory)
stat("/proc/fs/nfsd/filehandle", {st_mode=S_IFREG|0600, st_size=0, ...}) = 0
brk(0)  = 0x60008000
brk(0x6002c000) = 0x6002c000
open("/proc/net/rpc/auth.unix.ip/channel", O_RDWR) = 3
op

Bug#332346: Zillions of (gabber2:31110): GLib-GObject-WARNING ... error messages is wasting a disk space

2005-10-05 Thread Artur R. Czechowski
Package: gabber2
Version: 1.9.4+cvs20040709-14
Severity: normal

Hi,
gabber2 displays a big bunch of:
(gabber2:31110): GLib-GObject-WARNING **: gvalue.c:89: cannot initialize GValue 
with type `foo', the value has already been initialized as `foo'
when foo is (as I noticed it): gboolean, gchararray, GdkColor.
This is written into ~/.xsession-errors when run from menu and it just
wastes a diskspace.

Regards
Artur

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

Versions of packages gabber2 depends on:
ii  gconf2   2.10.1-6GNOME configuration database syste
ii  libaspell15  0.60.3-5GNU Aspell spell-checker runtime l
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.5-6 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.2-2   GCC support library
ii  libgconf2-4  2.10.1-6GNOME configuration database syste
ii  libgconfmm-2.6-1c2   2.8.1-1.1   C++ wrappers for GConf (shared lib
ii  libglade2-0  1:2.5.1-2   library to load .glade files at ru
ii  libglademm-2.4-1c2   2.4.1-2.1   C++ wrappers for libglade2 (shared
ii  libglib2.0-0 2.8.2-1 The GLib library of C routines
ii  libglibmm-2.4-1c22.6.1-1.2   C++ wrapper for the GLib toolkit (
ii  libgnutls11  1.0.16-13.1 GNU TLS library - runtime library
ii  libgtk2.0-0  2.6.10-1The GTK+ graphical user interface 
ii  libgtkmm-2.4-1c2 1:2.6.2-1.1 C++ wrappers for GTK+ 2.4 (shared 
ii  libjabberoo0c2   1.9.4+cvs20040709-5 library to interact with Jabber
ii  liborbit21:2.12.2-3  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.2-2 Layout and rendering of internatio
ii  libsigc++-2.0-0c22.0.16-1type-safe Signal Framework for C++
ii  libstdc++6   4.0.2-2 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-7  X Window System protocol client li
ii  libxml2  2.6.22-1GNOME XML library
ii  xlibs6.8.2.dfsg.1-7  X Window System client libraries m
ii  zlib1g   1:1.2.3-4   compression library - runtime

gabber2 recommends no packages.

-- no debconf information


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



Bug#332320: unused but to be translated strings in mldonkey-server.templates and pot file

2005-10-05 Thread Sylvain LE GALL
Hello,

On Wed, Oct 05, 2005 at 10:53:18PM +0200, jens wrote:
> Package: mldonkey-server
> Version: 2.5.28.1
> Severity: normal
> 
> Please have a look in mldonkey-server.templates. There are
> mldonkey-server/config_exist_no_options
> mldonkey-server/config_exist_no_dir
> mldonkey-server/shared_directories
> 
> which are not used by debconf but marked as translatable and are
> therefore also in the pot file.
> 
> Do you agree to remove these strings? If you agree here, I will send a
> patch? (say yes, if so)
> 

Well, i think the two first option can be safely removed. However, i am
not sure that the last one should be removed.

I will recontact you soon to confirm this fact. Anyway, i will do the
patch myself.

Thanks
Regard
Sylvain Le Gall


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



Bug#332345: Segmentation fault during downloading packages

2005-10-05 Thread Artur R. Czechowski
Package: aptitude
Version: 0.3.4-1
Severity: important
Tags: experimental

Hello,
I've run aptitude in interactive mode, press  then . After
downloading some packages I got a following SEGV:
(gdb) bt
#0  0xb7f03d50 in pkgSourceList::FindIndex ()   
   from /usr/lib/libapt-pkg-libc6.3-6.so.3.10   
#1  0xb7f338fd in pkgAcqArchive::QueueNext ()   
   from /usr/lib/libapt-pkg-libc6.3-6.so.3.10   
#2  0xb7f3ac19 in pkgAcqArchive::Failed ()  
   from /usr/lib/libapt-pkg-libc6.3-6.so.3.10   
#3  0xb7f173f1 in pkgAcquire::Worker::RunMessages ()
   from /usr/lib/libapt-pkg-libc6.3-6.so.3.10   
#4  0xb7f1a369 in pkgAcquire::Worker::InFdReady ()  
   from /usr/lib/libapt-pkg-libc6.3-6.so.3.10   
#5  0xb7f0f447 in pkgAcquire::RunFds () 
   from /usr/lib/libapt-pkg-libc6.3-6.so.3.10   
#6  0xb7f141ff in pkgAcquire::Run () from /usr/lib/libapt-pkg-libc6.3-6.so.3.10 
#7  0x082b47d7 in std::map, 
std::allocator > >::map ()
   
#8  0x08094335 in std::operator+, 
std::allocator > ()
#9  0x081612aa in std::operator+, 
std::allocator > ()
#10 0xb7e5ee40 in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#11 0xb7ce760e in clone () from /lib/tls/i686/cmov/libc.so.6

I rerun aptitude and run  some times and 4th or 5th try was successful.
So, I cannot reproduce this bug anymore today :)

Regards
Artur

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.41 Advanced front-end for dpkg
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libncursesw5  5.4-9  Shared libraries for terminal hand
ii  libsigc++-2.0-0c2 2.0.16-1   type-safe Signal Framework for C++
ii  libstdc++64.0.2-2The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
ii  aptitude-doc-en [aptitude 0.3.3-1.0.1arc English manual for aptitude, a ter

-- no debconf information


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



Bug#323301: (no subject)

2005-10-05 Thread Henrique de Moraes Holschuh
While this whole thing DOES look like it is broken, tc should accept
"action" in place of "conform-exceed" just fine.  But it doesn't because of
some bug in tc (not in tcc).  "action drop" works.

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


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



Bug#332344: lksctp-tools: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: lksctp-tools
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: lksctp-tools 1.0.3-3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-06-16 18:44-0400\n"
"PO-Revision-Date: 2005-10-07 00:58+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: note
#. description
#: ../libsctp1.templates:3
msgid "Kernel has no SCTP support."
msgstr "Kärnan har inget stöd för SCTP."

#. Type: note
#. description
#: ../libsctp1.templates:3
msgid ""
"It appears that your currently running kernel is not compiled with SCTP "
"support. As a result, libsctp1 will not be functional on your system."
msgstr ""
"Det verkar som att din nuvarande kärna inte är byggd med stöd för SCTP. "
"Som ett result av detta kommer inte libsctp1 att fungera på ditt system."

#. Type: note
#. description
#: ../libsctp1.templates:3
msgid ""
"You should install a Linux kernel of at least version 2.6.3 or 2.4.26 in "
"order to get the full benefit of the API supported in lksctp-tools."
msgstr ""
"Du bör installera en Linux-kärna med minst en version av 2.6.3 eller 2.4.26 
för att "
"kunna utnyttja alla fördelar med API-stödet i lksctp-tools."

#. Type: note
#. description
#: ../libsctp1.templates:3
msgid ""
"If you want to compile your own SCTP enabled kernel look at the file INSTALL "
"for further instructions."
msgstr ""
"Om du vill kompilera din egna SCTP-stödda kärna så ta en titt på filen INSTALL 
"
"för mera instruktioner."



Bug#332198: [Pkg-shadow-devel] Bug#332198: login: unable to determine TTY name, got /dev/pts/1

2005-10-05 Thread Alexander Gattin
tags 332198 moreinfo
thanks

What are versions of dash, rsh-client and rsh-server
used?

On Wed, Oct 05, 2005 at 06:13:58PM +0200, Christian Perrier wrote:
> Quoting Marc Lehmann ([EMAIL PROTECTED]):
> > Version: 1:4.0.3-35
> > 
> > 
> > Directly after a fresh reboot eeboot, "rsh rebooted-host" results in an
> > immediate connection close, and the syslog on the remote host says:
> > 
> >Oct  5 06:12:36 cerebro in.rlogind: Connection from [EMAIL PROTECTED] 
> > for root
> >Oct  5 06:12:36 cerebro pam_rhosts_auth[452]: allowed to [EMAIL 
> > PROTECTED] as root
> >Oct  5 06:12:36 cerebro login[453]: (pam_unix) session opened for user 
> > root by root(uid=0)
> >  > Oct  5 06:12:36 cerebro login[453]: unable to determine TTY name, got 
> > /dev/pts/1 
> >Oct  5 06:12:36 cerebro in.rlogind[452]: Closing connection with [EMAIL 
> > PROTECTED]
> > 
> > "/dev/pts/1" looks like a perfectly fine tty name to me. Subsequent rsh
> > calls work fine.
> > 
> > I think at least the error message should be clearer, right now it is
> > wrong, as it did correctly determine the tty name, and something else
> 
> Can you try reproducing this with login and passwd packages from sid ?

I tried with new login, rlogin-ed OK on pts/0 and pts/1...
// sh -> bash on my system BTW

> I actually think that the "unable to determine TTY name" from login is
> maybe not *the* cause of the problem.

But after RTFS, I think this error msg is really
misleading...

-- 
WBR,
xrgtn



Bug#258043: status update

2005-10-05 Thread dann frazier
On Thu, 2005-09-29 at 11:20 +0900, Horms wrote:
> Sure, though you might want to make some scope for other patches,
> as I know they creep in from time to time. For instance, sometimes
> we end up with security patches that are missing upstream, of corse
> we submit them, and they usually get incoporated.

Good idea.  Do you think this statement is properly scoped?

This source closely tracks official linux kernel releases.
Modifications to that source consist of security fixes, bug fixes, and
features that have already been accepted by the upstream maintainers, or
are changes we believe will be accepted upstream in some form.

The "in some form" is kinda hand-wavy - but I couldn't think of better
wording - suggestions welcome.

If this sounds ok, (and since there is no other pending feedback), I'll
plan to make this change to the Description and close this bug.




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



Bug#332343: lg-base: [INTL:sv] Swedish debconf templates translation

2005-10-05 Thread Daniel Nylander
Package: lg-base
Version: 113-1
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Translators, if you are not familiar with the PO format, gettext
# documentation is worth reading, especially sections dedicated to
# this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
# Some information specific to po-debconf are available at
# /usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
# Developers do not need to manually edit POT or PO files.
# , fuzzy
# 
# 
msgid ""
msgstr ""
"Project-Id-Version: lg-base 113-1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-10-30 23:41+0200\n"
"PO-Revision-Date: 2005-10-07 00:55+0200\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit"

#. Type: boolean
#. Description
#: ../templates:3
msgid "Should I delete the Linux-Gazette tarballs?"
msgstr "Ska jag radera tarbollarna från Linux-Gazette?"

#. Type: boolean
#. Description
#: ../templates:3
msgid ""
"With the new layout of the Linux Gazette packages we have an extra tar.gz "
"file for each lg-issue. They are living in the /usr/share/doc/package "
"directory of the corresponding package. I unpack them at install time and "
"modify some of the files then. Hence the extra tarball."
msgstr ""
"Med den nya layouten av Linux-Gazette-paketen har vi en extra tar.gz-fil "
"för varje lg-nummer. De lever i mappen /usr/share/doc/package och har liknande 
namn som numret. "
"Jag packar upp dom vid installationen och modifierar några av filerna också. "
"Därför den extra tarbollen."

#. Type: boolean
#. Description
#: ../templates:3
msgid ""
"If you are low on disk-space you probably want me to delete those tarballs "
"after configuration of the lg-issue* package. It affects nothing except that "
"it frees a little bit of disk-space."
msgstr ""
"Om du har dåligt med diskplats vill du antagligen att jag tar bort dessa 
tarbollar "
"efter konfigurationen av paketet lg-issue*. Det innebär inget annat än att det 
"
"ger lite mer ledig diskplats."



Bug#332342: contact-lookup-applet: [INTL:sv] Swedish PO-template translation update

2005-10-05 Thread Daniel Nylander
Package: contact-lookup-applet
Severity: wishlist
Tags: patch l10n



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
# Swedish messages for contact-lookup-applet.
# Copyright (C) 2004 Free Software Foundation, Inc.
# Christian Rose <[EMAIL PROTECTED]>, 2004.
#
# Terminology
# appointment = möte
# meeting = sammanträde
#
# $Id: sv.po,v 1.1 2004/10/04 23:45:44 menthos Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: contact-lookup-applet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-10-05 01:40+0200\n"
"PO-Revision-Date: 2005-10-07 00:46+0200\n"
"Last-Translator: Christian Rose <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);"

#: data/GNOME_ContactLookupApplet.xml.h:1
msgid "_About..."
msgstr "_Om..."

#: data/GNOME_ContactLookupApplet.xml.h:2
msgid "_Help"
msgstr "_Hjälp"

#: data/contact-lookup-applet.glade.h:1
msgid "\"Foo\" is online"
msgstr "\"Foo\" är online"

#: data/contact-lookup-applet.glade.h:2
msgid "Electronic Mail"
msgstr "Elektronisk post"

#: data/contact-lookup-applet.glade.h:3
msgid "Instant Messaging"
msgstr "Snabbmeddelanden"

#: data/contact-lookup-applet.glade.h:4
msgid "Video Conferencing"
msgstr "Videokonferens"

msgid "Video Conferencing"
msgstr "Videokonferens"

#: data/contact-lookup-applet.glade.h:5
msgid "ADDRESS"
msgstr "ADRESS"

#: data/contact-lookup-applet.glade.h:6
msgid "Address Card"
msgstr "Adresskort"

#: data/contact-lookup-applet.glade.h:7
msgid "Compose _Mail Message\t"
msgstr "Skriv ett _e-postmeddelande\t"

#: data/contact-lookup-applet.glade.h:8
msgid "Contact Lookup Preferences"
msgstr "Inställningar för uppslagning av kontakter"

#: data/contact-lookup-applet.glade.h:9
msgid "HOME PAGE"
msgstr "HEMSIDA"

#: data/contact-lookup-applet.glade.h:10
msgid "NAME"
msgstr "NAMN"

#: data/contact-lookup-applet.glade.h:11
msgid "PHONE"
msgstr "TELEFON"

#: data/contact-lookup-applet.glade.h:12
msgid "Send _Instant Message"
msgstr "Skicka _snabbmeddelande"

#: data/contact-lookup-applet.glade.h:13
msgid "Start _Video Conference"
msgstr "Starta _videokonferens"

#: data/contact-lookup-applet.glade.h:14
msgid "VIDEO"
msgstr "VIDEO"

#: data/contact-lookup-applet.glade.h:15
msgid "_Edit Contact Information"
msgstr "_Redigera kontaktinformation"

msgid "Edit Contact Information"
msgstr "Redigera kontaktinformation"

#: data/contact-lookup-applet.glade.h:16
msgid "_Go"
msgstr "_Gå"

#: data/contact-lookup-applet.glade.h:17
msgid "_Select the address book you would like to search:"
msgstr "Välj den addressbok du vill söka i:"

#: src/contact-dialog.c:53
#, c-format
msgid ""
"Cannot show URL %s:\n"
"\n"
"%s"
msgstr ""
"Kan inte visa URL %s:\n"
"\n"
"%s"

# Finns både med  och http://bugzilla.ximian.com/show_bug.cgi?id=61078
#: src/contact-dialog.c:81
#, c-format
msgid ""
"Cannot send email to %s:\n"
"\n"
"%s"
msgstr ""
"Kan inte skicka e-post till %s:\n"
"\n"
"%s"

#: src/contact-dialog.c:100
#, c-format
msgid ""
"Cannot start conference with %s:\n"
"\n"
"%s"
msgstr ""
"Kunde inte starta en konferens med %s:\n"
"\n"
"%s"

#: src/contact-dialog.c:321
msgid " (home)\n"
msgstr " (hem)\n"

#: src/contact-dialog.c:327
msgid " (work)\n"
msgstr " (jobb)\n"

#: src/contact-dialog.c:333
msgid " (mobile)\n"
msgstr " (mobil)\n"

#: src/contact-lookup-applet.c:59
#, c-format
msgid "Unable to search your address book: %s"
msgstr "Kan inte söka i din adressbok: %s"

#: src/contact-lookup-applet.c:63
msgid "Search your address book"
msgstr "Sök i din adressbok"

#: src/contact-lookup-applet.c:95
#, c-format
msgid ""
"Error accessing addressbook\n"
"\n"
"%s"
msgstr ""
"Fel vid tillgång till addressboken\n"
"\n"
"%s"

#: src/contact-lookup-applet.c:112
msgid "An applet to search your address book."
msgstr "En applet för att söka i din adressbok."

#: src/e-contact-entry.c:149
#, c-format
msgid "Cannot get contact: %s"
msgstr "Kan inte hämta kontakt: %s"

#: src/e-contact-entry.c:182
#, c-format
msgid "Could not find contact: %s"
msgstr "Kunde inte hitta kontakten: %s"

#: src/e-contact-entry.c:358
msgid "Cannot create searchable view."
msgstr "Kunde inte skapa en sökbar visning."

#: src/e-contact-entry.c:721
msgid "Success"
msgstr "Lyckades"

#: src/e-contact-entry.c:723
msgid "An argument was invalid."
msgstr "Argumentet är ogiltigt."

#: src/e-contact-entry.c:725
msgid "The address book is busy."
msgstr "Adressboken är upptagen."

#: src/e-contact-entry.c:727
msgid "The address book is offline."
msgstr "Adressboken är offline."

#: src/e-contact-entry.c:729
msgid "The address book does not exist."
msgstr "Adressboken finns inte."

#: src/e-contact-entry.c:731
msgid "The \"Me\" contact does not exist."
ms

Bug#332336: Also nagged three times

2005-10-05 Thread Peter Karbaliotis
Package: xserver-xorg
Version: 6.8.2.dfsg.1-8
Followup-For: Bug #332336


Just for mouse autodection: Once when preconfiguring, when preparing to
replace the old version of xserver-xorg and then again when setting up the
new version of xserver-xorg.

Output from apt-get upgrade is included below.

-
Preconfiguring packages ...
auto_answer() resetting template xserver-xorg/autodetect_mouse
(Reading database ... 89494 files and directories currently installed.)
Preparing to replace x-dev 6.8.2.dfsg.1-7 (using
/x-dev_6.8.2.dfsg.1-8_all.deb) ...
Unpacking replacement x-dev ...
Preparing to replace libice-dev 6.8.2.dfsg.1-7 (using
/libice-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libice-dev ...
Preparing to replace libice6 6.8.2.dfsg.1-7 (using
/libice6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libice6 ...
Preparing to replace libsm-dev 6.8.2.dfsg.1-7 (using
/libsm-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libsm-dev ...
Preparing to replace libsm6 6.8.2.dfsg.1-7 (using
/libsm6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libsm6 ...
Preparing to replace libxext-dev 6.8.2.dfsg.1-7 (using
/libxext-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxext-dev ...
Preparing to replace libxext6 6.8.2.dfsg.1-7 (using
/libxext6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxext6 ...
Preparing to replace libxi-dev 6.8.2.dfsg.1-7 (using
/libxi-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxi-dev ...
Preparing to replace libxi6 6.8.2.dfsg.1-7 (using
/libxi6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxi6 ...
Preparing to replace libxkbfile-dev 6.8.2.dfsg.1-7 (using
/libxkbfile-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxkbfile-dev ...
Preparing to replace libxkbfile1 6.8.2.dfsg.1-7 (using
/libxkbfile1_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxkbfile1 ...
Preparing to replace libx11-dev 6.8.2.dfsg.1-7 (using
/libx11-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libx11-dev ...
Preparing to replace x11-common 6.8.2.dfsg.1-7 (using
/x11-common_6.8.2.dfsg.1-8_all.deb) ...
/var/lib/dpkg/tmp.ci/preinst: line 914: [: eq: binary operator expected
Unpacking replacement x11-common ...
Preparing to replace xlibs-data 6.8.2.dfsg.1-7 (using
/xlibs-data_6.8.2.dfsg.1-8_all.deb) ...
Unpacking replacement xlibs-data ...
Preparing to replace libx11-6 6.8.2.dfsg.1-7 (using
/libx11-6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libx11-6 ...
Preparing to replace libxt-dev 6.8.2.dfsg.1-7 (using
/libxt-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxt-dev ...
Preparing to replace libxt6 6.8.2.dfsg.1-7 (using
/libxt6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxt6 ...
Preparing to replace libxmu-dev 6.8.2.dfsg.1-7 (using
/libxmu-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxmu-dev ...
Preparing to replace libxmu6 6.8.2.dfsg.1-7 (using
/libxmu6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxmu6 ...
Preparing to replace libxmuu-dev 6.8.2.dfsg.1-7 (using
/libxmuu-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxmuu-dev ...
Preparing to replace libxmuu1 6.8.2.dfsg.1-7 (using
/libxmuu1_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxmuu1 ...
Preparing to replace libxau-dev 6.8.2.dfsg.1-7 (using
/libxau-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxau-dev ...
Preparing to replace libxau6 6.8.2.dfsg.1-7 (using
/libxau6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxau6 ...
Preparing to replace libxp-dev 6.8.2.dfsg.1-7 (using
/libxp-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxp-dev ...
Preparing to replace libxp6 6.8.2.dfsg.1-7 (using
/libxp6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxp6 ...
Preparing to replace libxpm-dev 6.8.2.dfsg.1-7 (using
/libxpm-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxpm-dev ...
Preparing to replace libxpm4 6.8.2.dfsg.1-7 (using
/libxpm4_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxpm4 ...
Preparing to replace libxrandr-dev 6.8.2.dfsg.1-7 (using
/libxrandr-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxrandr-dev ...
Preparing to replace libxrandr2 6.8.2.dfsg.1-7 (using
/libxrandr2_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxrandr2 ...
Preparing to replace libxtrap-dev 6.8.2.dfsg.1-7 (using
/libxtrap-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxtrap-dev ...
Preparing to replace libxtrap6 6.8.2.dfsg.1-7 (using
/libxtrap6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxtrap6 ...
Preparing to replace libxtst-dev 6.8.2.dfsg.1-7 (using
/libxtst-dev_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxtst-dev ...
Preparing to replace libxtst6 6.8.2.dfsg.1-7 (using
/libxtst6_6.8.2.dfsg.1-8_i386.deb) ...
Unpacking replacement libxtst6 ...
Preparing to replace xlibs 6.8.2.dfsg.1-7 (using
/xlibs_6.8.2.dfsg.1-

Bug#104394: BMW - the perfect present

2005-10-05 Thread Xavier Seals
You gotta listen friend

All Watches arrive in a Luxury gift box - The Perfect Gift!

Dreaming about a IWC watch

http://048.newsbyaoeomsen.com/

your account is terminated :

ps:nomore? http://048.newsbyaoeomsen.com/rm/


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



Bug#332341: x11-common: bug in preinst script

2005-10-05 Thread Matthias Heinz
Package: x11-common
Version: 6.8.2.dfsg.1-8
Severity: normal

Hi,

there's a bug in the x11-common.preinst script at line 914.
It's just a simple "-" missing before the eq.

I don't know if this breaks anything but i report it anyway.

Regards,
Matthias



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

Versions of packages x11-common depends on:
ii  debconf [debconf-2.0] 1.4.58 Debian configuration management sy
ii  debianutils   2.14.3 Miscellaneous utilities specific t
ii  lsb-base  3.0-9  Linux Standard Base 3.0 init scrip

x11-common recommends no packages.

-- debconf information excluded


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



Bug#332340: synaptic: Synaptic segfaults after upgrade to 0.57.4 .

2005-10-05 Thread Joshua Walden
Package: synaptic
Version: 0.57.5
Severity: grave
Justification: renders package unusable



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

Versions of packages synaptic depends on:
ii  apt [libapt-pkg-libc6.3-6 0.6.41 Advanced front-end for dpkg
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.3-1The GLib library of C routines
ii  libgtk2.0-0   2.6.10-1   The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-8 Inter-Client Exchange library
ii  libncurses5   5.4-9  Shared libraries for terminal hand
ii  libpango1.0-0 1.8.2-2Layout and rendering of internatio
ii  libsm66.8.2.dfsg.1-8 X Window System Session Management
ii  libstdc++64.0.2-2The GNU Standard C++ Library v3
ii  libvte4   1:0.11.15-1Terminal emulator widget for GTK+ 
ii  libx11-6  6.8.2.dfsg.1-8 X Window System protocol client li
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxml2   2.6.22-1   GNOME XML library
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  scrollkeeper  0.3.14-10  A free electronic cataloging syste
ii  xlibs 6.8.2.dfsg.1-8 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

Versions of packages synaptic recommends:
ii  deborphan 1.7.17 Find orphaned libraries
ii  gksu  1.3.5-2graphical frontend to su
ii  libgnome2-perl1.023-1Perl interface to the GNOME librar

-- no debconf information


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



  1   2   3   4   5   >