Bug#334514: [Pkg-catalyst-maintainers] Bug#334514: libhtml-tree-perl: uncommong versioned depends syntax

2005-10-18 Thread Goswin von Brederlow
Florian Ragwitz <[EMAIL PROTECTED]> writes:

> On Tue, Oct 18, 2005 at 03:23:10PM +0200, Goswin Brederlow wrote:
>> your libhtml-tree-perl package uses an uncommon syntax for versioned
>> depends on libwww-perl (<<5.36-0). The common syntax includes a ' '
>> after the operator of the versioned depends (<< 5.36-0).
>
> Does that hurt in some way? Beside it is uncommon, of course.
>
> Fixed in SVN.

Nothing in Debian but I have a converter script to create
amd64 32/64 bit biarch debs out of the existing sarge i386 and amd64
(64 bit) debs. And that stumbled over that case when I got to your
package. Just needed some regexp adjustments to parse it correctly.

MfG
Goswin


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



Bug#294407: libcurl3 optional package

2005-10-18 Thread Dan Fandrich
On Tue, Oct 18, 2005 at 10:28:43AM +0200, Domenico Andreoli wrote:
> On Tue, Oct 18, 2005 at 10:13:16AM +0200, Daniel Stenberg wrote:
> > Actually I think Dan is the one who can provide the best answer(s) to this 
> > as he is the one made the changes in the curl configure script (on March 
> > 11th 2005) that I think is what is referred to here.
> 
> ah, great!
> 
> Dan, do you confirm that libldap.so.2 is used here and that it is enough
> to make libcurl3 suggest libldap2 package instead of recommending the
> libldap2-dev one?

The configure change I made checks which .so file to use at compile time
by following the link from libcurl.so.  The result is displayed in the
configure script, so you can verify it.  You could also cheat and check the
binary with:

strings /usr/lib/libcurl.so.3 | egrep 'libldap|liblber'

This change was mentioned in the CHANGES file.

>>> Dan
-- 
http://www.MoveAnnouncer.com  The web change of address service
  Let webmasters know that your web site has moved


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



Bug#334533: crip: does not use settings from user config file

2005-10-18 Thread gregor herrmann
Package: crip
Version: 3.5-1sarge2
Severity: minor

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

crip is supposed to read settings from ~/.cripcr. Unfortunately this
does not work.

My debugging efforts showed the following:
* ~/.criprc is opened and read. [1]
* The settings are extracted and the variables are filled in the
  while loop. [2]
* After the loop the variables have their old (i.e. the default)
  values.

My perl knowledge is rather basic, therefore I haven't found out the
real problem; maybe something wrt the variable scope?


gregor


[1] open(CONFIG, "<" . $ENV{HOME} . "/.criprc"); # line 179
[2] line 180 ff.

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

Versions of packages crip depends on:
ii  cdparanoia3a9.8-11   An audio extraction tool for sampl
ii  flac  1.1.2-3Free Lossless Audio Codec - comman
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libcddb-get-perl  2.23-2 read the CDDB entry for an audio C
ii  perl  5.8.7-6Larry Wall's Practical Extraction 
ii  sox   12.17.8-1  A universal sound sample translato
ii  vorbis-tools  1.0.1-1.5  Several Ogg Vorbis Tools
ii  vorbisgain0.35-2 add suggested volume level for .og

crip recommends no packages.

- -- no debconf information

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

iD8DBQFDVRJPOzKYnQDzz+QRAnOkAKD7Q48UC/8y2OQR1I1pxquHGBfXwgCfVyX7
rHTXknQJoyCxpOxfTi68P3s=
=oGJm
-END PGP SIGNATURE-


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



Bug#334535: crip: error in cddb submissions with non-ASCII characters

2005-10-18 Thread gregor herrmann
Package: crip
Version: 3.5-1sarge2
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


When submitting a cddb entry to freecddb which contains non-ASCII
character the freecddb rejects the submission because of encoding
problems. No big surprise, as crip does not set any encoding/charset
for the mail to the freecddb ;-)

The quick fix below works for my environment but I guess using a
variable for the charset would be better.


gregor

- --- crip.orig 2005-10-18 17:13:42.0 +0200
+++ crip2005-10-18 17:23:46.0 +0200
@@ -1742,3 +1742,3 @@
print "\nmailing $cddbfile to $cddbsubmitaddr... ";
- - `mail -s "cddb $cgy $discid" -c $cddbsubmitaddrCc 
$cddbsubmitaddr < $cddbfile`;
+   `mail -a "Content-Type: text/plain; charset=\"iso-8859-1\"" -a 
"Content-Transfer-Encoding: 8bit" -s "cddb $cgy $discid" -c $cddbsubmitaddrCc 
$cddbsubmitaddr < $cddbfile;`
print "Done.\n\n";


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

Versions of packages crip depends on:
ii  cdparanoia3a9.8-11   An audio extraction tool for sampl
ii  flac  1.1.2-3Free Lossless Audio Codec - comman
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libcddb-get-perl  2.23-2 read the CDDB entry for an audio C
ii  perl  5.8.7-6Larry Wall's Practical Extraction 
ii  sox   12.17.8-1  A universal sound sample translato
ii  vorbis-tools  1.0.1-1.5  Several Ogg Vorbis Tools
ii  vorbisgain0.35-2 add suggested volume level for .og

crip recommends no packages.

- -- no debconf information

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

iD8DBQFDVRR0OzKYnQDzz+QRAn76AKCgEbngHprwKU157EprbLXtzgw3wgCgh6+s
+DCTNOmHRtPQkOrpsnWL2FA=
=tlhi
-END PGP SIGNATURE-


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



Bug#334534: Patch from bug 307724 breaks Eclipse

2005-10-18 Thread Billy Biggs
Package: gtk+2.0
Severity: important

  The fix for Debian bug 307724 added a patch from gtk-2-6 branch to the
2.6.4 release for sarge.  This causes the following bugs in Eclipse,
where keybindings can completely fail:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=111479
https://bugs.eclipse.org/bugs/show_bug.cgi?id=111514

  The patch was to fix the following long-standing bug in GTK+:

http://bugzilla.gnome.org/show_bug.cgi?id=109246

  While we worked with GTK+ to fix this bug, Eclipse had a workaround
which conflicts with the patch.  For 3.1.1 we disable our workaround if
GTK+ >= 2.6.8, but this check does not work with the patched version of
2.6.4 from debian.  There is unfortunately no clean way to detect
whether the version of GTK+ is fixed.

  I think the patch should be removed, or stable should be updated to
GTK+ 2.6.8.  Patching back a very tricky and low-level X event handling
patch into a previous version just decreases the stability of the
toolkit.

  -Billy



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



Bug#319216: debootstrap: doesn't work with etch

2005-10-18 Thread Petter Reinholdtsen

[Lars Wirzenius]
> debootstrap doesn't work with etch or sid. It does work with woody
> and sarge. Below is the relevant part of the output:

Does it work any better when you add --resolve-deps to the debootstrap
command line?


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



Bug#322550: xlibmesa-dri: Confirmed on i810

2005-10-18 Thread George B.
Oops, I've re-read the original post more carefully and my problem is
slightly different.

I can switch to the console fine, but when I switch back to X, it
crashes and restarts (so my computer does not hang though.)

It still sounds fairly similar, but if you want me to resubmit a new
bug then I will.


HTH

George B.



Bug#330228: gnomebaker: Freezes when burning/blanking dvd

2005-10-18 Thread Goedson Teixeira Paixao
* Daniel ([EMAIL PROTECTED]) wrote:
> Package: gnomebaker
> Version: 0.4.2-1
> Severity: important
> 
> Gnomebaker freezes whenever i try to burn or blank a dvd. 
> Start gnomebaker, 
> select compilation or choose files to burn,
> press burn data,
> select burning options, 
> burn,
> complete freeze.

Could you please try the 0.5.0 version and tell me if this bug is
still present?


-- 
 .''`. Goedson Teixeira Paixao <[EMAIL PROTECTED]>
: :' : http://people.debian.org/~goedson/
`. `'  Jabber ID: [EMAIL PROTECTED]
  `-  


signature.asc
Description: Digital signature


Bug#334537: debarchiver: A Pool-structure would be very welcome

2005-10-18 Thread Daniel Leidert
Package: debarchiver
Version: 0.5.3
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I know, this is already mentioned in IDEAS, but I guess, the BTS is the
better place: debarchiver should change to a real pool-structure.
Any concerns or ideas for an implementation?

Maybe it will be necessary to provide a script, which automatically
converts the current repository structure into a pool structure.

Regards, Daniel


- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (850, 'unstable'), (700, 'testing'), (550, 'stable'), (500, 
'oldstable'), (110, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.09050927
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages debarchiver depends on:
ii  adduser   3.67.2 Add and remove users and groups
ii  apt-utils 0.6.41 APT utility programs
ii  dpkg-dev  1.13.11package building tools for Debian
ii  opalmod   0.1.13 A set of Perl modules for various 

debarchiver recommends no packages.

- -- no debconf information

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

iD8DBQFDVRbldg0kG0+YFBERAkU/AJ9Xlo+sx2jfVHkcudDYy7RXO+CTPgCfTS4A
F1hQZJAZMNUnk+RFVVQlIoM=
=pNem
-END PGP SIGNATURE-


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



Bug#334538: gnochm: didn't render java source code in Java tutorial.chm

2005-10-18 Thread Jung-hoon Han
Package: gnochm
Version: 0.9.6-1
Severity: wishlist

this may be problem of libchm.
on Java tutorial document, the chm pages were rendered well
but if click on link(-ed text source file), gnochm collapsed
the "{","}" scope lines.

for example the following sentence
:
 public class CubbyHole
 {
private int contents;
private boolean available = blah~
 }

is displayed with no rendering effect
:

 public class CubbyHole { private int contents; private boolean
 available = blah~


on windows OS, that should be displayed as easy to read. :(
but on linux, and/or X environment, we depend on alternative
chm viewer.(gnochm, xchm like).

I prefer gnochm to xchm.
(because xchm is slower, but gnochm is better)

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

Versions of packages gnochm depends on:
ii  gconf22.10.1-6   GNOME configuration database syste
ii  python2.3.5-3An interactive high-level object-o
ii  python-chm0.8.2-3Python binding for CHMLIB
ii  python-glade2 2.6.3-1GTK+ bindings: Glade support
ii  python-gnome2 2.10.0-3   Python bindings for the GNOME desk
ii  python-gnome2-extras  2.10.0-4   Python bindings for the GNOME desk
ii  python-gtk2   2.6.3-1Python bindings for the GTK+ widge
ii  scrollkeeper  0.3.14-10  A free electronic cataloging syste
ii  shared-mime-info  0.16-3 FreeDesktop.org shared MIME databa

Versions of packages gnochm recommends:
ii  python-cjkcodecs  1.1.1-1Python Unicode Codecs Collection f

-- no debconf information


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



Bug#334539: apt-cdrom: untranslatable string

2005-10-18 Thread Peter Eisentraut
Package: apt
Version: 0.6.41
Severity: minor
Tags: l10n

apt-cdrom says Prompt("Please insert a Disc in the drive and press enter");
but Prompt() is not set up for translation.  The PO files contain this string
as obsoleted, so I guess that this was forgotten during a code restructuring.
Please consider repairing this somehow, because this string is a very obvious
localization gap because every user of apt-cdrom sees it.


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



Bug#334536: debarchiver: Check archive integrity first, before adding packages or updating index files

2005-10-18 Thread Daniel Leidert
Package: debarchiver
Version: 0.5.3
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

Now that we are able to create signed archives, we can think about
adding an integrity check, which should be passed before everything
else. Let's say, that one package is manipulated at the server. Running
debarchiver as a cron-job currently makes it impossible to detect such a
manipulation, because it does not check the integrity of an archive,
before it updates the index files. So I think, we should add an integrity
check. If the check is not successful, debarchiver should create a
warn-mail and send it to a special address but reject all other jobs.

Does that make sense? Or is such a check maybe useless?

Regards, Daniel


- -- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (850, 'unstable'), (700, 'testing'), (550, 'stable'), (500, 
'oldstable'), (110, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.09050927
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages debarchiver depends on:
ii  adduser   3.67.2 Add and remove users and groups
ii  apt-utils 0.6.41 APT utility programs
ii  dpkg-dev  1.13.11package building tools for Debian
ii  opalmod   0.1.13 A set of Perl modules for various 

debarchiver recommends no packages.

- -- no debconf information

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

iD8DBQFDVRXjdg0kG0+YFBERAuvlAJ91BPsQBHFMmg9JZjmPfhARId/HiACfX3hU
geXDaDqX2BJc59Um8z0bGIQ=
=vKpr
-END PGP SIGNATURE-


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



Bug#289105: debootstrap: sysfs is not mounted if kernel 2.6 is used

2005-10-18 Thread Petter Reinholdtsen

I found this patch in the ubuntu packages.  Obviously based on this
bug.  I suggest using this changelog:

 * [functions] Mount /sys if possible, and if /sys exist.  Patch from
   Cajus Pollmeier, Colin Watson and Ubuntu. (Closes: #289105)

diff -ur debootstrap-0.3.1.7/functions debootstrap-0.3.1.8/functions
--- debootstrap-0.3.1.7/functions   Sat Aug 13 07:40:54 2005
+++ debootstrap-0.3.1.8/functions   Tue Oct 18 17:00:52 2005
@@ -738,6 +738,11 @@
   on_exit "umount $TARGET/proc"
   umount $TARGET/proc 2>/dev/null || true
   in_target mount -t proc proc /proc
+  if [ -d "$TARGET/sys" ] && grep -q '[[:space:]]sysfs' /proc/filesystems; 
then+on_exit "umount $TARGET/sys"
+umount $TARGET/sys 2>/dev/null || true
+in_target mount -t sysfs sysfs /sys
+  fi
 }

 setup_proc_fakechroot () {


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



Bug#319216: debootstrap: doesn't work with etch

2005-10-18 Thread Lars Wirzenius
ti, 2005-10-18 kello 17:20 +0200, Petter Reinholdtsen kirjoitti:
> [Lars Wirzenius]
> > debootstrap doesn't work with etch or sid. It does work with woody
> > and sarge. Below is the relevant part of the output:
> 
> Does it work any better when you add --resolve-deps to the debootstrap
> command line?

Er, yeah, I've been using that for ages now. I'd forgotten about the bug
report. As far as I care, it can be closed. In fact, since I'm the
submitter, I'll close it, and if anyone objects, please reopen (or mail
me, and I'll do it for you).

-- 
I think, therefore I am alone in the universe. -- Over the Hedge


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



Bug#327784: libc6: ldconfig fine with 2.3.2.ds1-22

2005-10-18 Thread Aaron S. Hawley
Package: libc6
Version: 2.3.2.ds1-22
Followup-For: Bug #327784


I had an old .deb file for this version of libc6 and the bug does not 
exist for ldconfig, it exits successfully.

-- 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.2.20
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libc6 depends on:
ii  libdb1-compat 2.1.3-7The Berkeley database routines [gl

libc6 recommends no packages.

-- no debconf information


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



Bug#294407: libcurl3 optional package

2005-10-18 Thread Domenico Andreoli
On Tue, Oct 18, 2005 at 08:04:43AM -0700, Dan Fandrich wrote:
> On Tue, Oct 18, 2005 at 10:28:43AM +0200, Domenico Andreoli wrote:
> > On Tue, Oct 18, 2005 at 10:13:16AM +0200, Daniel Stenberg wrote:
> > > Actually I think Dan is the one who can provide the best answer(s) to 
> > > this 
> > > as he is the one made the changes in the curl configure script (on March 
> > > 11th 2005) that I think is what is referred to here.
> > 
> > ah, great!
> > 
> > Dan, do you confirm that libldap.so.2 is used here and that it is enough
> > to make libcurl3 suggest libldap2 package instead of recommending the
> > libldap2-dev one?
> 
> The configure change I made checks which .so file to use at compile time
> by following the link from libcurl.so.  The result is displayed in the
> configure script, so you can verify it.  You could also cheat and check the
> binary with:

all the autobuilder of the debian project found libldap.so, only on my
machine it is libldap.so.2.

i definitely cannot drop the libldap2-dev dependency until i've not
found the reason.

-[ Domenico Andreoli, aka cavok
 --[ http://people.debian.org/~cavok/gpgkey.asc
   ---[ 3A0F 2F80 F79C 678A 8936  4FEE 0677 9033 A20E BC50


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



Bug#334540: gzip: gzexe uses tempfile(1) which is not standard in every Linux

2005-10-18 Thread Jari Aalto
Package: gzip
Version: 1.3.5-12
Severity: normal

If gzexe compressed file is moved to another x86 Linux system it 
fails to work when the target linux system does not implement
tempfile(1)

The shell scrip stub at the beginning of compressed file
should be made environment agnostic and only use tempfile(1)
if it's available. Otherwise it should revert to de facto method.

SOLUTION SUGGESTION

Make the code generate this:

#!/bin/sh
skip=24
set -C
umask=`umask`
umask 77

tmpfile=`tempfile -p gztmp -d /tmp` || 
tmpfile=/tmp/cvs.$$
...

instead of the current:
   
...
tmpfile=`tempfile -p gztmp -d /tmp` || exit 1
...

-- 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.12-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US)

Versions of packages gzip depends on:
ii  debianutils   2.15   Miscellaneous utilities specific t
ii  libc6 2.3.5-7GNU C Library: Shared libraries an

gzip recommends no packages.

-- no debconf information


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



Bug#334541: New Debian mirror submission

2005-10-18 Thread Drogka
Package: mirrors
Severity: wishlist

Site: Air Compressors Caulking Guns Chisels Collated Nails Collated Staples 
Combo Packs Drills Impact Wrenches Nailers Power Sprayers Ratchet Wrenches Saws
Aliases: +1256987456
Type: leaf
Archive-http: /This site is devoted airtools. Here you can find the detailed 
information on any tool. If it is pleasant, at desire to get!/
CDImage-http: /lk98Uh/
CDImage-rsync: AirToolsStore/
NonUS-ftp: /Construction/
NonUS-rsync: Search Engines/
Old-rsync: NY/
WWW-rsync: +1256987456/
Mirrors-from: Borgo
Maintainer: Drogka <[EMAIL PROTECTED]>
Country: US United States
Location: 12026
Sponsor: 60 http://www.best-airtools-store.info/
Comment: New York


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



Bug#334534: Patch from bug 307724 breaks Eclipse

2005-10-18 Thread Loic Minier
Hi,

On Tue, Oct 18, 2005, Billy Biggs wrote:
>   I think the patch should be removed, or stable should be updated to
> GTK+ 2.6.8.  Patching back a very tricky and low-level X event handling
> patch into a previous version just decreases the stability of the
> toolkit.

 Updating stable for something as large as Gtk isn't trivial, and only
 happens for really important fixes which are visibly correct.  Updating
 to a higher version is not an option for Debian, but updating the patch
 to match the actual fix implemented upstream is more feasible.

 However, how much confidence do you have that it won't break anything?
 Would it break older version of Eclipse working around the Gtk bug?

   Cheers,
-- 
Loïc Minier <[EMAIL PROTECTED]>



Bug#334094: beagle: best crashes when displaying results

2005-10-18 Thread Hanspeter Kunz
the problem goes away after

apt-get install libgalago-dev.

cheers,
Hp.
-- 
Hanspeter Kunz  Artificial Intelligence Laboratory
Ph.D. Student   Department of Information Technology
Email: [EMAIL PROTECTED]   University of Zurich
Tel: +41.(0)44.63-54306 Andreasstrasse 15, Office 2.12
http://ailab.ch/people/hkunzCH-8050 Zurich, Switzerland

Spamtraps: [EMAIL PROTECTED] [EMAIL PROTECTED]
---
All is well that ends well.
-- John Heywood



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



Bug#334534: Patch from bug 307724 breaks Eclipse

2005-10-18 Thread Billy Biggs
Loic Minier ([EMAIL PROTECTED]):

>  Updating stable for something as large as Gtk isn't trivial, and only
>  happens for really important fixes which are visibly correct.
>  Updating to a higher version is not an option for Debian, but
>  updating the patch to match the actual fix implemented upstream is
>  more feasible.
> 
>  However, how much confidence do you have that it won't break
>  anything?  Would it break older version of Eclipse working around the
>  Gtk bug?

  The patch applied to Debian's 2.6.4 matches the fix in 2.6.8 as far as
I know.  The issue is that Eclipse can't easily determine whether it
should shut off its workaround, so it wrongly considers Debian's 2.6.4
to be broken.  The workaround conflicts and Eclipse breaks.

  So, the 2.6.4 in Debian stable is "fixed". but's no longer
"GTK+ 2.6.4" as it claims to be.

  -Billy



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



Bug#334542: openssl: FTBFS on sparc: m4: command not found.

2005-10-18 Thread Kurt Roeckx
Package: openssl
Version: 0.9.8a-1
Severity: serious

Hi,

It seems that on sparc we need a build dependency on m4, since it
seems to be using that to generate the assembler source there
(instead of perl)


Kurt



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



Bug#334543: O: jwhois -- Improved Caching Whois client

2005-10-18 Thread Peter Karlsson
Package: wnpp
Severity: normal

I intend to orphan the jwhois package, both as Debian maintainer, Debian
volatile maintainer and upstream maintainer.

The package description is:
 GNU jwhois is an Internet Whois client that queries hosts for
 information according to RFC 954 - NICNAME/WHOIS. JWHOIS is configured
 via a configuration file that contains information about all known Whois
 servers. Upon execution, the host to query is selected based on the
 information in the configuration file.
 .
 The configuration file is highly customizable and makes heavy use of
 regular expressions.


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



Bug#288063: [pkg-fetchmail-maint] Bug#288063: Reopen? /etc/fetchmailrc contains passwords

2005-10-18 Thread Nico Golde
tags 288063 + pending
Hi,
* Loic Minier <[EMAIL PROTECTED]> [2005-10-18 17:04]:
> On Tue, Oct 18, 2005, Nico Golde wrote:
> > Ok just to clarifiy you mean keeping the /etc/fetchmailrc in 
> > the case of a purge too?
> > Thats not what purge ist for.
> 
>  Purge concern files handled by a package.  For example, things created
>  by the package (configuration file, logs, pid file, run dir) or things
>  shipped by the package (.deb's conffile, files, scripts, list of
>  files), but not things added by the administrator to change the
>  behavior of the package.
> 
>  But instead of discussing this to no-end, I see a simple solution to
>  that: ship an empty sample conffile, with useful comments, and it will
>  be purged by dpkg.
[...] 

>  It does not (_IMO_) mean:
>  - remove users (but YMMV)
>  - remove anything related to the package
>  - remove databases
> 
>  Right now, I think the best reason for handling fetchmailrc as I
>  suggest is symetry.

:) Ok now we are at the beginning. I removed the rm -f 
statement and also the output (which was the initial reason 
for this bts together with the deletion).
etc/fetchmailrc will not be deleted in the future.

@Steve McIntyre:
The policy clearly says that only file which are shipped 
with the package will be deleted with a package purge, so 
fetchmailrc which is a file created by the user will not be 
purged.

Loic: Thanks for being persistent :)

Regards Nico
-- 
Nico Golde - JAB: [EMAIL PROTECTED] | GPG: 0x73647CFF
http://www.ngolde.de | http://www.muttng.org | http://grml.org
Forget about that mouse with 3/4/5 buttons -
gimme a keyboard with 103/104/105 keys!


pgpofXPCUKcaZ.pgp
Description: PGP signature


Bug#239390: Drop ipchains and pppoe

2005-10-18 Thread Petter Reinholdtsen

retitle 239390 Should not install ipchains and pppoe
severity 325251 normal
merge 325251 239390
tags 239390 + patch
thanks

The three bugs are all about the same two issues (ipchains and pppoe),
and this patch (based on patch from Sven Luther), solves all of them.
The first part make sure only m68k gets ipchains installed, and the
second removes pppoe.

diff -ur debootstrap-0.3.1.7/etch debootstrap-0.3.1.8/etch
--- debootstrap-0.3.1.7/etchThu Sep 15 16:48:46 2005
+++ debootstrap-0.3.1.8/etchTue Oct 18 17:57:49 2005
@@ -18,9 +18,7 @@
 required="base-files base-passwd bash bsdutils coreutils libacl1 libattr1 
debianutils diff dpkg dselect libblkid1 e2fsprogs e2fslibs libcomerr2 libss2 
libuuid1 findutils grep gzip hostname libcap1 libdb1-compat libdb3 libncurses5 
libnewt0.51 libpam-modules libpam-runtime libpam0g login makedev mawk mount 
ncurses-base ncurses-bin passwd perl-base procps sed slang1a-utf8 initscripts 
sysvinit sysv-rc tar util-linux libgcc1 gcc-3.3-base libstdc++5 zlib1g $LIBC6"

 if doing_variant - || doing_variant fakechroot; then
-  if [ "$ARCH" = "alpha" -o "$ARCH" = "m68k" ]; then
-IPFWTOOL="ipchains"
-  elif [ "$ARCH" = "powerpc" -o "$ARCH" = sparc ]; then
+  if [ "$ARCH" = "m68k" ]; then
 IPFWTOOL="ipchains iptables"
   else
 IPFWTOOL=iptables
@@ -28,7 +26,7 @@

   required="$required debconf debconf-i18n liblocale-gettext-perl 
libtext-wrapi18n-perl libtext-charwidth-perl libtext-iconv-perl"

-  base="adduser apt apt-utils libdb4.2 base-config aptitude 
libsigc++-1.2-5c102 bsdmainutils console-common console-tools libconsole 
console-data cpio cron dhcp-client ed libgnutls11 libgcrypt11 libgpg-error0 
libncursesw5 libopencdk8 libtasn1-2 fdutils gettext-base groff-base ifupdown 
info klogd libssl0.9.7 liblzo1 liblockfile1 libpcre3 libwrap0 logrotate man-db 
libgdbm3 manpages nano net-tools netbase netkit-inetd iputils-ping nvi ppp 
pppconfig pppoe pppoeconf libpcap0.7 sysklogd tasksel libtextwrap1 tcpd telnet 
wget libpopt0 modutils whiptail $IPFWTOOL"
+  base="adduser apt apt-utils libdb4.2 base-config aptitude 
libsigc++-1.2-5c102 bsdmainutils console-common console-tools libconsole 
console-data cpio cron dhcp-client ed libgnutls11 libgcrypt11 libgpg-error0 
libncursesw5 libopencdk8 libtasn1-2 fdutils gettext-base groff-base ifupdown 
info klogd libssl0.9.7 liblzo1 liblockfile1 libpcre3 libwrap0 logrotate man-db 
libgdbm3 manpages nano net-tools netbase netkit-inetd iputils-ping nvi ppp 
pppconfig pppoeconf libpcap0.7 sysklogd tasksel libtextwrap1 tcpd telnet wget 
libpopt0 modutils whiptail $IPFWTOOL"

   # libthings
   drop i386 required "libperl5.8"
@@ -58,9 +59,9 @@
   # base-config depends on console-tools and console-data
   # so we can't exclude them although they are useless on s390
   add s390 base "s390-tools telnetd devfsd"
-  drop s390 base "console-tools-libs fdutils ppp pppconfig pppoe pppoeconf"
+  drop s390 base "console-tools-libs fdutils ppp pppconfig pppoeconf"
   add s390x base "s390-tools telnetd devfsd"
-  drop s390x base "console-tools-libs fdutils ppp pppconfig pppoe 
pppoeconf"
+  drop s390x base "console-tools-libs fdutils ppp pppconfig pppoeconf"

 elif doing_variant buildd; then
   base="apt binutils cpio cpp cpp-3.3 dpkg-dev g++ g++-3.3 gcc gcc-3.3 
${LIBC6}-dev libdb4.2 libgdbm3 libstdc++5-3.3-dev linux-kernel-headers make 
patch perl perl-modules"


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



Bug#328161: debootstrap: should document --resolve-deps in usage info

2005-10-18 Thread Petter Reinholdtsen

tags 328161 + patch
thanks

Here is a patch to solve this problem.  I suggest the following
changelog entry:


  * [debootstrap] Document --resolve-deps in usage info. (Closes: #328161)

diff -ur debootstrap-0.3.1.7/debootstrap debootstrap-0.3.1.8/debootstrap
--- debootstrap-0.3.1.7/debootstrap Mon Sep 12 21:39:12 2005
+++ debootstrap-0.3.1.8/debootstrap Tue Oct 18 17:12:43 2005
@@ -70,6 +70,7 @@
   --help display this help and exit
   --include=A,B,Cadds specified names to the list of base packages 
   --exclude=A,B,Cremoves specified packages from the list
+  --resolve-deps try to resolve dependencies automatically
   --verbose  don't turn off the output of wget
   --components=A,B,C use packages from the listed components of the
  archive


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



Bug#334206: mozilla-enigmail not decrypting messages

2005-10-18 Thread Caspar Bothmer

Caspar Bothmer wrote:

I can't reproduce this error with a new account.


I did some tests and I am able to reproduce this error with a new account:

After starting mozilla mail using `mozilla --mail` I created a user 
"test" and pulled an encrypted message from the server I sent to that 
user before.  There is nothing special with the settings.


I was able to decrypt the message normally.

Then I changed the preferences:

In Preferences->Privacy&Security->Images is an option "Do not load
remote images in Mail & Newsgroup messages".

I checked this option.  It still decrypted properly.

After exiting and restarting mozilla I wasn't able to decrypt the message.

After unchecking that option and restarting mozilla it worked again 
(Indeed it works without having to restart, but that was a later test...).


As I started mozilla from the command line I got kind of a log.  This is 
a plain cut'n'paste without any changes.  The warnings are OK, I am 
logged in via ssh.


Only with mozilla-bin:8582 and mozilla-bin:8679 the message got 
decrypted properly.  These didn't have 
mailnews.message_display.disable_remote_image" set.  The others had this 
option set to "true".


I am not sure if other settings will have a similar effect to the 
behaviour of enigmail.  This is just the first setting I came across my 
tests.



caspar



[EMAIL PROTECTED]:~$ mozilla --mail

** (mozilla-bin:8582): WARNING **: Owner of /tmp/orbit-test1 is not the 
current user


MimeDummy_initialize: class_name=MimeDummy
MimeDummy_parse_begin:
MimeDummy_parse_begin: nchildren=2
MimeDummy_parse_begin: sibling class_name=MimeEncryptedCMS
MimeDummy_parse_begin: sibling superclass_name=MimeEncrypted
MimeDummy_parse_begin: found MimeEncrypted
MimeEnig_init:
MimeEnig_eof:
MimeEnig_free:
[EMAIL PROTECTED]:~$ mozilla --mail

** (mozilla-bin:8621): WARNING **: Owner of /tmp/orbit-test1 is not the 
current user


[EMAIL PROTECTED]:~$ mozilla --mail

** (mozilla-bin:8652): WARNING **: Owner of /tmp/orbit-test1 is not the 
current user


[EMAIL PROTECTED]:~$ mozilla --mail

** (mozilla-bin:8679): WARNING **: Owner of /tmp/orbit-test1 is not the 
current user


MimeDummy_initialize: class_name=MimeDummy
MimeDummy_parse_begin:
MimeDummy_parse_begin: nchildren=2
MimeDummy_parse_begin: sibling class_name=MimeEncryptedCMS
MimeDummy_parse_begin: sibling superclass_name=MimeEncrypted
MimeDummy_parse_begin: found MimeEncrypted
MimeEnig_init:
MimeEnig_eof:
MimeEnig_free:
[EMAIL PROTECTED]:~$ mozilla --mail

** (mozilla-bin:8714): WARNING **: Owner of /tmp/orbit-test1 is not the 
current user


[EMAIL PROTECTED]:~$


signature.asc
Description: OpenPGP digital signature


Bug#288063: [pkg-fetchmail-maint] Bug#288063: Reopen? /etc/fetchmailrc contains passwords

2005-10-18 Thread Loic Minier
Hi,

On Tue, Oct 18, 2005, Nico Golde wrote:
> :) Ok now we are at the beginning. I removed the rm -f 
> statement and also the output (which was the initial reason 
> for this bts together with the deletion).
> etc/fetchmailrc will not be deleted in the future.

 Please consider shipping a fetchmailrc in your package, it would help
 people now it can be used, and would serve as a template for edition
 and it would also shut up any future instances of this debate against
 purging it!  :)

-- 
Loïc Minier <[EMAIL PROTECTED]>



Bug#321272: [pkg-fetchmail-maint] Bug#321272: apt-get install fails: "chown: `fetchmail:nogroup': invalid user"

2005-10-18 Thread Nico Golde
Hi,
* Loic Minier <[EMAIL PROTECTED]> [2005-10-18 17:04]:
> On Tue, Oct 18, 2005, Nico Golde wrote:
> > Thats exactly the solution you currently can find in our 
> > subversion repos. But thanks! :)
> 
> bee% svn ls svn+ssh://[EMAIL PROTECTED]/svn/pkg-fetchmail
> bee% 

???
Regards Nico
-- 
Nico Golde - JAB: [EMAIL PROTECTED] | GPG: 0x73647CFF
http://www.ngolde.de | http://www.muttng.org | http://grml.org
Forget about that mouse with 3/4/5 buttons -
gimme a keyboard with 103/104/105 keys!


pgp5onF8RWaXB.pgp
Description: PGP signature


Bug#334544: mklibs: Patch to reduce number of rlibs in ld calls

2005-10-18 Thread Frans Pop
Package: mklibs
Version: 0.1.17
Severity: minor
Tags: patch

The attached patch makes sure a path to libraries in --root is only 
included once. Currently the same path may be included multiple times.
This significantly reduces the length of the command line when gcc is 
called to actually reduce a library.

During tests using mklibs while building the gtk-miniiso for d-i, this 
resulted in only 4 instead of 31 paths being included.

--- /usr/bin/mklibs	2005-10-14 10:03:03.0 +0200
+++ mklibs	2005-10-18 00:39:28.920890609 +0200
@@ -325,9 +325,11 @@
 rpath_val = rpath(obj)
 if rpath_val:
 if root:
-if debuglevel >= DEBUG_VERBOSE:
-print "Adding rpath " + ':'.join(rpath_val) + " for " + obj
-lib_rpath.extend(rpath_val)
+for rpath_elem in rpath_val:
+if not rpath_elem in lib_rpath:
+if debuglevel >= DEBUG_VERBOSE:
+print "Adding rpath " + rpath_elem + " for " + obj
+lib_rpath.append(rpath_elem)
 else:
 print "warning: " + obj + " may need rpath, but --root not specified"
 


pgpvho5MQz8Ub.pgp
Description: PGP signature


Bug#334545: CVS and tar debris

2005-10-18 Thread Barak Pearlmutter
Package: ipv6calc
Version: 0.46-2

There is some CVS debris doesn't belong.

$ dpkg --listfiles ipv6calc | egrep CVS

/usr/share/doc/ipv6calc/examples/CVS
/usr/share/doc/ipv6calc/examples/CVS/Entries
/usr/share/doc/ipv6calc/examples/CVS/Repository
/usr/share/doc/ipv6calc/examples/CVS/Root
/usr/share/doc/ipv6calc/examples/getopt/CVS
/usr/share/doc/ipv6calc/examples/getopt/CVS/Entries
/usr/share/doc/ipv6calc/examples/getopt/CVS/Repository
/usr/share/doc/ipv6calc/examples/getopt/CVS/Root
/usr/share/doc/ipv6calc/examples/ieee/CVS
/usr/share/doc/ipv6calc/examples/ieee/CVS/Entries
/usr/share/doc/ipv6calc/examples/ieee/CVS/Repository
/usr/share/doc/ipv6calc/examples/ieee/CVS/Root

There is also a tar file that doesn't belong as it is source code.

$ dpkg --listfiles ipv6calc | egrep tar
/usr/share/doc/ipv6calc/examples/getopt/libgnugetopt-1.1.tar.gz

In fact, the getopt stuff doesn't belong at all: Debian GNU/Linux uses
GNU glibc which contains GNU getopt anyway.
--
Barak A. Pearlmutter <[EMAIL PROTECTED]>
 Hamilton Institute & Dept Comp Sci, NUI Maynooth, Co. Kildare, Ireland
 http://www-bcl.cs.nuim.ie/~barak/


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



Bug#334546: tripwire: [INTL:sv] Swedish debconf templates translation

2005-10-18 Thread Daniel Nylander
Package: tripwire
Severity: wishlist
Tags: patch l10n


Swedish translation for tripwire (debconf)

-- 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: tripwire 2.3.1.2.0-5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-01-20 07:49-0800\n"
"PO-Revision-Date: 2005-10-18 18:28+0100\n"
"Last-Translator: Daniel Nylander <[EMAIL PROTECTED]>\n"
"Language-Team: Swedish <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Swedish\n"
"X-Poedit-Country: SWEDEN\n"
"X-Poedit-SourceCharset: iso-8859-1\n"

#. Type: boolean
#. Description
#: ../templates:4
msgid "Do you wish to upgrade?"
msgstr "Vill du uppgradera?"

#. Type: boolean
#. Description
#: ../templates:4
msgid "The format of the Tripwire database and configuration files have changed 
substantially between previous versions and this release."
msgstr "Formatet för Tripwire-databasen och konfigurationsfilerna har ändrats 
rejält mellan tidigare versioner och denna utgåva."

#. Type: boolean
#. Description
#: ../templates:4
msgid "To ensure your system remains secure, the upgrade process keeps a copy 
of the old version of Tripwire and the old configuration file along with any 
old databases that may exist.  You will find a detailed explanation for using 
the old version of Tripwire in /usr/share/doc/tripwire/README.Debian."
msgstr "För att se till att säkerheten på ditt system inte sänks kommer 
uppgraderingsprocessen behålla en kopia av den gamla versionen av Tripwire och 
den gamla konfigurationsfilen tillsammans med alla gamla databaser som kan 
finnas.  Du kan hitta en detaljerad förklaring om att använda den gamla 
versionen av Tripwire i /usr/share/doc/tripwire/README.Debian."

#. Type: boolean
#. Description
#: ../templates:4
msgid "However, as no conversion of the old configuration file and database is 
attempted, you may prefer not to upgrade."
msgstr "Alltså, eftersom inte konversion av den gamla konfigurationsfilen och 
databasen ska försöka göras kanske du föredrar att inte uppgradera."

#. Type: boolean
#. Description
#: ../templates:4
msgid "Due to the way Debian handles configuration files, if you choose to 
upgrade you must accept the new version of /etc/cron.daily/tripwire for regular 
reporting to occur.  The cron job associated with the previous version will 
continue to run regardless."
msgstr "På grund av det sätt som Debian hanterar konfigurationsfiler, om du 
väljer att uppgradera måste du acceptera den nya versionen av 
/etc/cron.daily/tripwire för att vanlig rapportering ska ske.  Cron-jobbet som 
kom med föregående version kommer fortfarande att köra oavsett."

#. Type: boolean
#. Description
#: ../templates:25
msgid "Do you wish to create/use your site key pass-phrase during installation?"
msgstr "Vill du skapa/använda lösenordsfrasen för din systemnyckel under 
installationen?"

#. Type: boolean
#. Description
#: ../templates:25
msgid "Tripwire uses a pair of keys to sign various files, thus ensuring their 
unaltered state.  By accepting here, you will be prompted for the pass-phrase 
for the first of those keys, the site key, during the installation.  You are 
also agreeing to the create of a site key if one doesn't already exist.  
Tripwire uses the site key to sign files that may be common to multiple 
systems, e.g. the configuration & policy files.  See twfiles(5) for more 
information."
msgstr "Tripwire använder ett par nycklar för att digitalt signera olika filer, 
för att vara säker att de inte ändrats på.  Genom att acceptera här kommer du 
att frågas efter lösenordsfrasen för den första av dessa nycklar, 
systemnyckeln, under installationen.  Du kan också acceptera att skapa en 
systemnyckel om den inte redan finns.  Tripwire använder systemnyckeln för att 
digitalt signera filer som kan vara vanliga för flera system, såsom 
konfiguration och policyfiler.  Se twfiles(5) för mer information."

#. Type: boolean
#. Description
#: ../templates:25
msgid "If you would rather not have this exposure, decline here.  You will then 
need to create a site key, configuration file & policy file by hand.  See 
twadmin(8) for more information."
msgstr "Om du inte önskar denna exponering, vägra här.  Du kommer då att 
behöver skapa 

Bug#306123: syslinux: FTBFS: undefined reference to `memcpy' and static declaration of 'crc_32_tab' follows non-static declaration)

2005-10-18 Thread Andreas Jochens
On 05-Oct-17 23:29, Lars Wirzenius wrote:
> Andreas Jochens, I'd like to ask for clarification for a point about the
> patch you included:
> 
> --- ../tmp-orig/syslinux-2.11/memdisk/Makefile2004-01-24
> 21:37:22.0 +
> +++ ./memdisk/Makefile2005-04-24 11:55:47.371139174 +
> @@ -39,7 +39,7 @@
>  SSRC = init.S16
>  NASMSRC  = memdisk.asm init32.asm
>  
> -all: memdisk e820test
> +all: memdisk
>  
>  # tidy, clean removes everything except the final binary
>  tidy:
> 
> You disable building of e820test. The package builds for me without this 
> change, 
> so I wonder, is it necessary?

Hello,

you are right, this part of the patch does not seem to be necessary 
any longer to make the package compile. 

Thank you for looking at this.

Regards
Andreas Jochens


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



Bug#238301: please use DEBCONF_NONINTERACTIVE_SEEN when installing sarge, etch, or sid, as is done for hoary and warty

2005-10-18 Thread Petter Reinholdtsen

tags 238301 + patch
thanks

This patch solves this issue for sarge, etch and sid.  I suggest this
changelog entry:

  * [sarge,etch,sid] Set DEBCONF_NONINTERACTIVE_SEEN=true during
build, to avoid questions during upgrade. (Closes: #238301)

diff -ur debootstrap-0.3.1.7/etch debootstrap-0.3.1.8/etch
--- debootstrap-0.3.1.7/etchThu Sep 15 16:48:46 2005
+++ debootstrap-0.3.1.8/etchTue Oct 18 17:57:49 2005
@@ -130,7 +131,8 @@
 fi

 DEBIAN_FRONTEND=noninteractive
-export DEBIAN_FRONTEND
+DEBCONF_NONINTERACTIVE_SEEN=true
+export DEBIAN_FRONTEND DEBCONF_NONINTERACTIVE_SEEN

 baseprog=0
 bases=40
diff -ur debootstrap-0.3.1.7/sarge debootstrap-0.3.1.8/sarge
--- debootstrap-0.3.1.7/sarge   Thu Jun 16 10:48:23 2005
+++ debootstrap-0.3.1.8/sarge   Tue Oct 18 18:14:43 2005
@@ -143,7 +141,8 @@
 in_target /sbin/ldconfig

 DEBIAN_FRONTEND=noninteractive
-export DEBIAN_FRONTEND
+DEBCONF_NONINTERACTIVE_SEEN=true
+export DEBIAN_FRONTEND DEBCONF_NONINTERACTIVE_SEEN

 baseprog=0
 bases=40
diff -ur debootstrap-0.3.1.7/sid debootstrap-0.3.1.8/sid
--- debootstrap-0.3.1.7/sid Thu Sep 15 16:48:46 2005
+++ debootstrap-0.3.1.8/sid Tue Oct 18 17:57:34 2005
@@ -85,7 +85,8 @@
 fi

 DEBIAN_FRONTEND=noninteractive
-export DEBIAN_FRONTEND
+DEBCONF_NONINTERACTIVE_SEEN=true
+export DEBIAN_FRONTEND DEBCONF_NONINTERACTIVE_SEEN

 baseprog=0
 bases=7


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



Bug#334506: debootstrap unable to build etch chroot, looking for non-existing libsigc++-1.2-5c102

2005-10-18 Thread Petter Reinholdtsen

tags 334506 + patch
thanks

This patch solves this issue for etch.  I suggest this changelog
entry:

 * [etch] Replace libsigc++-1.2-5c102 with libsigc++-1.2-5c2 in
$base. (Closes: #334506)

diff -ur debootstrap-0.3.1.7/etch debootstrap-0.3.1.8/etch
--- debootstrap-0.3.1.7/etchThu Sep 15 16:48:46 2005
+++ debootstrap-0.3.1.8/etchTue Oct 18 18:24:11 2005
@@ -28,7 +26,7 @@

   required="$required debconf debconf-i18n liblocale-gettext-perl 
libtext-wrapi18n-perl libtext-charwidth-perl libtext-iconv-perl"

-  base="adduser apt apt-utils libdb4.2 base-config aptitude 
libsigc++-1.2-5c102 bsdmainutils console-common console-tools libconsole 
console-data cpio cron dhcp-client ed libgnutls11 libgcrypt11 libgpg-error0 
libncursesw5 libopencdk8 libtasn1-2 fdutils gettext-base groff-base ifupdown 
info klogd libssl0.9.7 liblzo1 liblockfile1 libpcre3 libwrap0 logrotate man-db 
libgdbm3 manpages nano net-tools netbase netkit-inetd iputils-ping nvi ppp 
pppconfig pppoe pppoeconf libpcap0.7 sysklogd tasksel libtextwrap1 tcpd telnet 
wget libpopt0 modutils whiptail $IPFWTOOL"
+  base="adduser apt apt-utils libdb4.2 base-config aptitude 
libsigc++-1.2-5c2 bsdmainutils console-common console-tools libconsole 
console-data cpio cron dhcp-client ed libgnutls11 libgcrypt11 libgpg-error0 
libncursesw5 libopencdk8 libtasn1-2 fdutils gettext-base groff-base ifupdown 
info klogd libssl0.9.7 liblzo1 liblockfile1 libpcre3 libwrap0 logrotate man-db 
libgdbm3 manpages nano net-tools netbase netkit-inetd iputils-ping nvi ppp 
pppconfig pppoe pppoeconf libpcap0.7 sysklogd tasksel libtextwrap1 tcpd telnet 
wget libpopt0 modutils whiptail $IPFWTOOL"

   # libthings
   drop i386 required "libperl5.8"


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



Bug#334547: powerpc-utils: Sign problem in nvsetvol.

2005-10-18 Thread Eugen Dedu

Subject: powerpc-utils: Sign problem in nvsetvol.
Package: powerpc-utils
Version: 1.1.3-17
Severity: normal

Hi,

nvsetvol uses a parameter between 0 and 255.

nvsetvol.c, line 106:
  printf("new volume is %d\n", buf[VOLADDR]);
But buf is a char* and the compilation line uses -fsigned-char.

If the value is >127, then a negative number is printed.  See this 
thread 
http://groups.google.com/group/linux.debian.ports.powerpc/browse_thread/thread/47191ed3d5482c23/de8c0289022cdad6?lnk=st&q=debian+powerpc+nvsetvol&rnum=1&hl=en#de8c0289022cdad6


Patch : replace the above line with:
  printf("new volume is %d\n", (unsigned char)buf[VOLADDR]);
(or compile without -fsigned-char switch).

The same problem appears on line 98, do the same to fix it.

Thanks,
Eugen

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


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



Bug#334548: kernel error: invalid operand: 0000

2005-10-18 Thread Leandro Piccilli

package: linux-image-2.6.13-1-686


X and others programs are crashing constantly in my machine.
I cannot reproduce exactly.

Sometimes i got these errors on dmesg:

invalid operand:  [#1]
Modules linked in: binfmt_misc ipt_state ipt_LOG ipt_limit 
iptable_filter ip_nat_ftp ip_conntrack_ftp iptable_nat ip_conntrack 
ip_tables ipv6 af_packet tsdev nls_cp437 ide_cd dm_mod autofs4 cdrom 
gameport snd_page_alloc soundcore shpchp via_rhine via_ircc mii 
pci_hotplug irda crc_ccitt via_agp agpgart serio_raw psmouse evdev 
mousedev rtc cy82c693 atiixp hpt34x rz1000 pdc202xx_old sc1200 cs5520 
triflex cs5530 slc90e66 trm290 siimage pdc202xx_new amd74xx opti621 
aec62xx piix alim15x3 hpt366 cmd64x serverworks ns87415 it821x ide_disk 
ide_generic generic via82cxxx sis5513 ide_core unix fbcon tileblit font 
bitblit jfs xfs exportfs reiserfs ext3 jbd ext2 mbcache

CPU:0
EIP:0060:[]Not tainted VLI
EFLAGS: 00210002   (2.6.13-1-686)
EIP is at 0xc02ffb8a
eax: f660054a   ebx: f6600600   ecx: c03b3dc8   edx: 0001
esi: c03c1ec0   edi: 0001   ebp: f00c1d90   esp: f00c1d70
ds: 007b   es: 007b   ss: 0068
Process mozilla-thunder (pid: 7664, threadinfo=f00c task=f6d85540)
Stack: c0118d03 f66005f4 0001    00200292 
f58ed2b8
   f00c1db4 c0118d6c f6600698 0001 0001   
f6d9d500
   f58ed280 f58ed280 f8860274  0001  f6d9d500 
c024e4cb

Call Trace:
 [] __wake_up_common+0x43/0x80
 [] __wake_up+0x2c/0x40
 [] unix_write_space+0x34/0x70 [unix]
 [] sock_wfree+0x4b/0x50
 [] __kfree_skb+0x59/0x140
 [] unix_stream_recvmsg+0x1ed/0x480 [unix]
 [] scheduler_tick+0x113/0x320
 [] sock_aio_read+0xd2/0x120
 [] do_sync_read+0xca/0x130
 [] __get_free_pages+0x27/0x40
 [] do_pollfd+0x61/0xc0
 [] autoremove_wake_function+0x0/0x60
 [] do_ioctl+0x32/0x90
 [] vfs_read+0x1a0/0x1b0
 [] sys_read+0x4b/0x80
 [] sysenter_past_esp+0x54/0x75
Code: c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 80 f0 ff df 00 f1  df 
40 00 00 00 80 f1 ff df 00 f2 ff df 60 00 00 00 80 f2 ff

 <1>invalid operand:  [#2]
Modules linked in: binfmt_misc ipt_state ipt_LOG ipt_limit 
iptable_filter ip_nat_ftp ip_conntrack_ftp iptable_nat ip_conntrack 
ip_tables ipv6 af_packet tsdev nls_cp437 ide_cd dm_mod autofs4 cdrom 
gameport snd_page_alloc soundcore shpchp via_rhine via_ircc mii 
pci_hotplug irda crc_ccitt via_agp agpgart serio_raw psmouse evdev 
mousedev rtc cy82c693 atiixp hpt34x rz1000 pdc202xx_old sc1200 cs5520 
triflex cs5530 slc90e66 trm290 siimage pdc202xx_new amd74xx opti621 
aec62xx piix alim15x3 hpt366 cmd64x serverworks ns87415 it821x ide_disk 
ide_generic generic via82cxxx sis5513 ide_core unix fbcon tileblit font 
bitblit jfs xfs exportfs reiserfs ext3 jbd ext2 mbcache

CPU:0
EIP:0060:[]Not tainted VLI
EFLAGS: 00010002   (2.6.13-1-686)
EIP is at 0xc02ffb8a
eax: f631524a   ebx: f6315300   ecx: c03b3dc8   edx: 0001
esi: c03c1ec0   edi: 0001   ebp: f3d03d90   esp: f3d03d70
ds: 007b   es: 007b   ss: 0068
Process kwin (pid: 7512, threadinfo=f3d02000 task=f5e0f540)
Stack: c0118d03 f63152f4 0001    0292 
ed0080b8
   f3d03db4 c0118d6c f6315398 0001 0001   
f5a06b00
   ed008080 ed008080 f8860274  0001  f5a06b00 
c024e4cb

Call Trace:
 [] __wake_up_common+0x43/0x80
 [] __wake_up+0x2c/0x40
 [] unix_write_space+0x34/0x70 [unix]
 [] sock_wfree+0x4b/0x50
 [] __kfree_skb+0x59/0x140
 [] unix_stream_recvmsg+0x1ed/0x480 [unix]
 [] sock_aio_read+0xd2/0x120
 [] do_sync_read+0xca/0x130
 [] autoremove_wake_function+0x0/0x60
 [] do_ioctl+0x32/0x90
 [] vfs_read+0x1a0/0x1b0
 [] sys_read+0x4b/0x80
 [] sysenter_past_esp+0x54/0x75
Code: c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
00 00 00 00 00 00 00 00 00 00 00 20 00 00 00 80 f0 ff df 00 f1  df 
40 00 00 00 80 f1 ff df 00 f2 ff df 60 00 00 00 80 f2 ff

 <1>invalid operand:  [#3]
Modules linked in: binfmt_misc ipt_state ipt_LOG ipt_limit 
iptable_filter ip_nat_ftp ip_conntrack_ftp iptable_nat ip_conntrack 
ip_tables ipv6 af_packet tsdev nls_cp437 ide_cd dm_mod autofs4 cdrom 
gameport snd_page_alloc soundcore shpchp via_rhine via_ircc mii 
pci_hotplug irda crc_ccitt via_agp agpgart serio_raw psmouse evdev 
mousedev rtc cy82c693 atiixp hpt34x rz1000 pdc202xx_old sc1200 cs5520 
triflex cs5530 slc90e66 trm290 siimage pdc202xx_new amd74xx opti621 
aec62xx piix alim15x3 hpt366 cmd64x serverworks ns87415 it821x ide_disk 
ide_generic generic via82cxxx sis5513 ide_core unix fbcon tileblit font 
bitblit jfs xfs exportfs reiserfs ext3 jbd ext2 mbcache

CPU:0
EIP:0060:[]Not tainted VLI
EFLAGS: 00010002   (2.6.13-1-686)
EIP is at 0xc02ffb8a
eax: f631524a   ebx: f6315300   ecx: c03b3dc8   edx: 0001
esi: c03c1e60   edi:    ebp: f3d03b48   esp: f3d03b28
ds: 007b   es: 007b   ss: 0068
Process kwin (pid: 7512, threadinfo=f3d02000 task=f5e0f540)

Bug#334549: configure-debian: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: configure-debian
Version: 1.0.1
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for
configure-debian, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# cnews configure-debian translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the configure-debian package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: configure-debian\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-07-18 22:39-0400\n"
"PO-Revision-Date: 2005-09-05 16:21+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: select
#: ../configure-debian.templates:4
msgid "Which subsection do you want?"
msgstr "¿Qué subsección desea?"

#. Type: select
#: ../configure-debian.templates:8
msgid "${CHOICES}"
msgstr "${CHOICES}"

#. Type: select
#: ../configure-debian.templates:9
msgid "Which program do you want to configure?"
msgstr "¿Qué programa desea configurar?"

#. Type: boolean
#: ../configure-debian.templates:13
msgid "Would you like to configure another program?"
msgstr "¿Desearía configurar otro programa?"

#. Type: title
#: ../configure-debian.templates:17
msgid "Configure Packages"
msgstr "Configurar paquetes"



Bug#294407: libcurl3 optional package

2005-10-18 Thread Dan Fandrich
On Tue, Oct 18, 2005 at 05:40:59PM +0200, Domenico Andreoli wrote:
> all the autobuilder of the debian project found libldap.so, only on my
> machine it is libldap.so.2.
> 
> i definitely cannot drop the libldap2-dev dependency until i've not
> found the reason.

Does the Debian autobuilder have libldap2-dev installed at build time?  That's
a build requirement as it's the only way for curl's configure to tell the
proper LDAP library to load at run time.  If configure can't find the -dev
library, it hard-codes libldap.so as a fallback.

>>> Dan
-- 
http://www.MoveAnnouncer.com  The web change of address service
  Let webmasters know that your web site has moved


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



Bug#321272: [pkg-fetchmail-maint] Bug#321272: apt-get install fails: "chown: `fetchmail:nogroup': invalid user"

2005-10-18 Thread Lionel Elie Mamane
On Tue, Oct 18, 2005 at 06:03:14PM +0200, Nico Golde wrote:
> Hi,
> * Loic Minier <[EMAIL PROTECTED]> [2005-10-18 17:04]:
>> On Tue, Oct 18, 2005, Nico Golde wrote:

>>> Thats exactly the solution you currently can find in our
>>> subversion repos. But thanks! :)

>> bee% svn ls svn+ssh://[EMAIL PROTECTED]/svn/pkg-fetchmail
>> bee% 

> ???


The pkg-fetchmail svn repo on svn.debian.org is empty. If you are
using _another_ svn repo, I'd suggest you document that on
http://pkg-fetchmail.alioth.debian.org/ .

-- 
Lionel


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



Bug#334068: udev and Logitech mouse applet

2005-10-18 Thread Julien BLACHE
[EMAIL PROTECTED] (Marco d'Itri) wrote:

>> Colplugging should work with the old hotplug scripts, just as
>> hotplugging does.
> Actually udev better supports coldplugging than hotplug, which does not
> run the hotplug.d/ scripts.

OK. Will be fixed by a new revision before next week (being a bit busy
at the moment).

Thanks for the clarification,

JB.

-- 
 Julien BLACHE - Debian & GNU/Linux Developer - <[EMAIL PROTECTED]> 
 
 Public key available on  - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 


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



Bug#334501: [Pkg-openssl-devel] Bug#334501: libcryto.so.0.9.8 cause a SIGFAULT in ssh

2005-10-18 Thread Kurt Roeckx
On Tue, Oct 18, 2005 at 01:02:26PM +, Emilio J. Padrón wrote:
> Package: libssl0.9.8
> Version: 0.9.8a-1
> 
> I am not sure about whether I should report the bug against this
> package, apologies in advance.
> 
> The problem arises after the last debian AMD64 update: ssh gets a SIGFAULT
> when using the /usr/lib/libcrypto.so.0.9.8 provided with
> the 0.9.8a-1 update in AMD64. Just changing the library with a previous
> version (just the file libcrypto.so.0.9.8, not the whole package) works
> Ok.

This seems to have been caused by the assembler version of RC4
that we're using now, not sure yet why it breaks.  Will take a
closer look later.


Kurt




Bug#156138: Chicks will love you

2005-10-18 Thread Tyree Haywood
ur favorite brands of replica 

come and see our large selection 

Visit us: http://051.iwabntajobdonaldtrump.com



















reliquary you epa me, confucianism . gibbons you anybody me, autonomous nary . 
cluck you choreograph me, nee fluorite . 
collocation you blackball me, klux . ervin you abutted me, trident below dryden 
. void you piteous me, bedtime commodore . emmett you verbatim me, configure . 
http://www.iwabntajobdonaldtrump.com/rm/


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



Bug#334550: common-lisp-controller: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: common-lisp-controller
Version: 4.16
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for
common-lisp-controller, reviewed by the debian-l10n-spanish mailing
list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# common-lisp-controller po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the common-lisp-controller package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: common-lisp-controller\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-07-26 16:40+0200\n"
"PO-Revision-Date: 2005-09-02 17:53+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: string
#: ../templates:3
msgid "Unknown"
msgstr "Desconocido"

#. Type: string
#: ../templates:4
msgid "The short common LISP site name"
msgstr "Nombre corto del sitio de common LISP"

#. Type: string
#: ../templates:4
msgid "You can configure what the common LISP implementations are going to use as \"short site name\". This is mostly unused except in some error reporting tools."
msgstr "Puede configurar el parámetro que las implementaciones de common LISP van a usar como «nombre corto del sitio». Esto no se usa normalmente, excepto en algunas herramientas de informe de errores."

#. Type: string
#: ../templates:11
msgid "Site name not initialized"
msgstr "El nombre del sitio no está inicializado"

#. Type: string
#: ../templates:12
msgid "The long common LISP site name"
msgstr "Nombre largo del sitio de common LISP"

#. Type: string
#: ../templates:12
msgid "You can configure what the common LISP implementations are going to use as \"long site name\". This is mostly unused except in some error reporting tools."
msgstr "Puede configurar el parámetro que las implementaciones de common LISP van a usar como «nombre largo del sitio». Esto no se usa normalmente, excepto en algunas herramientas de informe de errores."




Bug#334551: please enhance description

2005-10-18 Thread Robert Bihlmeyer
Package: libiiimutils0
Severity: normal

   IIIMF Utilities library
   libiiimutils provides some functions to access the configuration files etc.

This borders on the useless... Questions that users will have that the
description should answer:

What is IIIMF?
Why do I need it? Why not alternative package X?
What part does libiiimutils play inside IIIMF?

Thanks!


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



Bug#334553: console-log: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: console-log
Version: 1.0-10
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for console-log, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# console-log po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the console-log package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: console-log\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-12-13 13:47+\n"
"PO-Revision-Date: 2005-10-10 16:24+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: note
#: ../console-log.templates:3
msgid "New config file format for /etc/console-log.conf"
msgstr "Nuevo formato de fichero de configuración para /etc/console-log.conf"

#. Type: note
#: ../console-log.templates:3
msgid "console-log's config file format has been changed to a format that is much more flexible. Since Debian policy explicitly forbids automatic conversion of dpkg-conffiles, the conversion must be done manually."
msgstr "El formato del fichero de configuración de console-log se ha cambiado a un formato que es mucho más flexible. Puesto que las normas de Debian prohiben explícitamente la conversión automática de dpkg-conffiles, la conversión ha de hacerse manualmente."

#. Type: note
#: ../console-log.templates:3
msgid "The script convert-console-log.conf is provided to help with that. See convert-console-log.conf(8) for details."
msgstr "Para ayudar en la conversión se proporciona el guión convert-console-log.conf. Consulte convert-console-log.conf(8) para más información."

#. Type: note
#: ../console-log.templates:3
msgid "If you didn't allow dpkg to replace your config file with the new config file from the package, your package will stop working."
msgstr "El paquete dejará de funcionar si no permitió a dpkg reemplazar el fichero de configuración por el nuevo fichero de configuración del paquete."

#. Type: note
#: ../console-log.templates:3
msgid "Be aware that your console-log package will stop working if you try to invoke the new version with and old-style config file."
msgstr "Tenga en cuenta que el paquete console-log dejará de funcionar si intenta invocar a la nueva versión con un fichero de configuración antiguo."



Bug#334554: linux-image-2.6.12-1-686: unresolved symbols in snd_usb_audio kernel module

2005-10-18 Thread Keith Geffert
Package: linux-image-2.6.12-1-686
Version: 2.6.12-10
Severity: normal

Loading snd_usb_audio fails with unresolved symbols.  I use a Logitech
USB Mic frequently and after the 2.6.12 upgrade hotplug now fails to
load the alsa device module. 2.6.10-x-686 does not exhibit this
behavior.

Sample syslog excerpt:
Oct 17 20:16:48 localhost kernel: usb 2-2: new full speed USB device
using uhci_hcd and address 2
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.170
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.89
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.173
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.112
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.110
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.150
Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
__compound_literal.102


-- 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=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages linux-image-2.6.12-1-686 depends on:
ii  coreutils [fileutils] 5.2.1-2.1  The GNU core utilities
ii  initrd-tools  0.1.83 tools to create initrd image for p
ii  module-init-tools 3.2-pre9-2 tools for managing Linux kernel mo

linux-image-2.6.12-1-686 recommends no packages.

-- no debconf information


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



Bug#318254: debootstrap: Debootstrap problem on etch with libslang2

2005-10-18 Thread Petter Reinholdtsen

tags 318254 + patch
thanks

[Thomas Petazzoni]
> By simply adding 'libslang2' to the list of 'required' packages, I could
> get it to work correctly.

Does it work any better when you add --resolve-deps to the debootstrap
command line?


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



Bug#334552: console-cyrillic: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: console-cyrillic
Version: 0.9-9
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for
console-cyrillic, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# console-cyrillic po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the console-cyrillic package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: console-cyrillic\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-06-22 10:53+0300\n"
"PO-Revision-Date: 2005-10-13 17:22+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: boolean
#: ../templates:4
msgid "Do you want to setup Cyrillic on the console at boot-time?"
msgstr "¿Quiere instalar el modo cirílico en la consola al arrancar el sistema? "

#. Type: boolean
#: ../templates:4
msgid "If you accept, the package console-cyrilic will setup Cyrillic on the console at boot-time."
msgstr "Si acepta, el paquete console-cyrillic instalará el modo cirílico en la consola al arrancar el sistema."

#. Type: boolean
#: ../templates:4
msgid "Otherwise, refuse if you don't use Cyrillic the whole time or if for some reason you want to use the console setup by console-data package."
msgstr "Responda negativamente si no utiliza letras cirílicas todo el tiempo o si por alguna razón quiere usar la configuración del paquete console-data."

#. Type: note
#: ../templates:13
msgid "Your /etc/console-cyrillic file will be preserved unchanged."
msgstr "Su fichero /etc/console-cyrillic se mantendrá sin cambios."

#. Type: note
#: ../templates:13
msgid "You have requested Debconf not to change the configuration file /etc/console-cyrillic.  The new version of this file will be written in /etc/console-cyrillic.debconf instead.  Note that this file is not read by console-cyrillic and will have no effect."
msgstr "Ha pedido que Debconf no cambie el fichero de configuración /etc/console-cyrillic. En su lugar, la nueva versión de este fichero se escribirá en /etc/console-cyrillic.debconf. Tenga en cuenta que este fichero no lo lee console-cyrillic y no tendrá ningún efecto."

#. Type: string
#: ../templates:28
msgid "What virtual consoles do you use?"
msgstr "¿Qué consolas virtuales utiliza?"

#. Type: string
#: ../templates:28
msgid "Please enter a space delimited list of virtual consoles you use. The usual Unix filename wildcards are allowed (*, ? and [...])."
msgstr "Por favor, introduzca las consolas virtuales que usa como una lista delimitada por espacios. Se permiten los comodines habituales de nombres de fichero (*, ? y [...])"

#. Type: string
#: ../templates:28
msgid "If you are unsure, then use the default /dev/tty[1-6], it is for six virtual consoles. If you use devfs, then enter /dev/vc/[1-6] instead."
msgstr "Si no está seguro, entonces utilice la opción por omisión /dev/tty[1-6] que es para seis consolas virtuales. Si utiliza devfs, entonces introduzca /dev/vc/[1-6] en su lugar."

#. Type: select
#: ../templates:37
msgid "Terminus Unicode Normal"
msgstr "Terminal Unicode normal"

#. Type: select
#: ../templates:37
msgid "Terminus Unicode Bold"
msgstr "Terminal Unicode en negrita"

#. Type: select
#: ../templates:37
msgid "Terminus Unicode Framebuffer"
msgstr "Terminal Unicode con framebuffer"

#. Type: select
#: ../templates:37
msgid "Terminus Slavic Normal"
msgstr "Terminal eslavo normal"

#. Type: select
#: ../templates:37
msgid "Terminus Slavic Bold"
msgstr "Terminal eslavo en negrita"

#. Type: select
#: ../templates:37
msgid "Terminus Slavic Framebuffer"
msgstr "Terminal eslavo con framebuffer"

#. Type: select
#: ../templates:37
msgid "Terminus Asian Normal"
msgstr "Terminal asiático normal"

#. Type: select
#: ../templates:37
msgid "Terminus Asian Bold"
msgstr "Terminal asiático en negrita"

#. Type: select
#: ../templates:37
msgid "Terminus Asian Fram

Bug#321272: [pkg-fetchmail-maint] Bug#321272: apt-get install fails: "chown: `fetchmail:nogroup': invalid user"

2005-10-18 Thread Nico Golde
Hi,
* Lionel Elie Mamane <[EMAIL PROTECTED]> [2005-10-18 18:40]:
> On Tue, Oct 18, 2005 at 06:03:14PM +0200, Nico Golde wrote:
> > Hi,
> > * Loic Minier <[EMAIL PROTECTED]> [2005-10-18 17:04]:
> >> On Tue, Oct 18, 2005, Nico Golde wrote:
> 
> >>> Thats exactly the solution you currently can find in our
> >>> subversion repos. But thanks! :)
> 
> >> bee% svn ls svn+ssh://[EMAIL PROTECTED]/svn/pkg-fetchmail
> >> bee% 
> 
> > ???
> 
> The pkg-fetchmail svn repo on svn.debian.org is empty. If you are
> using _another_ svn repo, I'd suggest you document that on
> http://pkg-fetchmail.alioth.debian.org/ .

We use the svn on alioth. I can not change it since I have 
no permissions to do this.
Lucas, can you do something?
Regards Nico

-- 
Nico Golde - JAB: [EMAIL PROTECTED] | GPG: 0x73647CFF
http://www.ngolde.de | http://www.muttng.org | http://grml.org
Forget about that mouse with 3/4/5 buttons -
gimme a keyboard with 103/104/105 keys!


pgpA8ZT0rgckc.pgp
Description: PGP signature


Bug#333079: rcconf: rcconf 1.14 does not work

2005-10-18 Thread Giovanni Ridolfi
On 17 Oct 2005 23:54:46 +0900, Atsushi KAMOSHIDA <[EMAIL PROTECTED]> wrote:
>
> > Can't locate stddef.ph  in @INC (did you run h2ph?)
> (@INC contains: /etc/perl /usr/local/lib/perl/5.8.7
> /usr/local/share/perl/5.8.7 /usr/lib/perl5 /usr/share/perl5
> /usr/lib/perl/5.8 /usr/share/perl/5.8 /usr/local/lib/site_perl .) at
> /usr/lib/perl/5.8/bits/types.ph line 10.
> > Compilation failed in require at /usr/lib/perl/5.8/termios.ph line 9.
> > Compilation failed in require at 
> > /usr/lib/perl/5.8/bits/ioctl-types.phline 8.
> > Compilation failed in require at /usr/lib/perl/5.8/sys/ioctl.ph line 9.
> > Compilation failed in require at /usr/bin/rcconf line 115.
> > Use of uninitialized value in unlink at /usr/bin/rcconf line 1006.
> > Use of uninitialized value in -f at /usr/bin/rcconf line 160.
>
> > I dont' know if it is due to rcconf or a misconfiguration of my
> > system (perl?).
>
> In my environment, above error doesn't occur.
> I think this problem is caused by perl package.
>
> Could you try update perl package?
>
> > ii perl 5.8.7-6 Larry Wall's Practical Extraction and Report
> > ii perl-modules 5.8.7-6 Core Perl modules

Hello, Atsushi,

I think 
Perl 5.8.7-7 is updated.

I downloaded rcconf 1.13 from snapshot.debian.net and
installed with
# dpkg -i rcconf-1.13

but rcconf gave the same error.

Then I updated to 1.14

and it still gives the same error.

Perhaps I should install some recommended packages?
well I can't figure out what could be.

Giovanni

P.S.

David wrote: 
> Wrong email address?

Yes, I'sorry for that.

(misconfiguration of Emacs :(



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



Bug#334206: mozilla-enigmail not decrypting messages

2005-10-18 Thread Alexander Sack
On Tue, Oct 18, 2005 at 06:13:30PM +0200, Caspar Bothmer wrote:
> 
> In Preferences->Privacy&Security->Images is an option "Do not load
> remote images in Mail & Newsgroup messages".
> 

OK, I know about this issue. Thanks for tracking this down. Anyway,
currently there is no way to fix this. So if you want decryption you
have to allow to load remote images :( ... for now.

> 
> I am not sure if other settings will have a similar effect to the 
> behaviour of enigmail.  This is just the first setting I came across my 
> tests.

No, this is indeed the only issue. You hit the nail. I know this 
discussion and afaik, there was no real compromise to fix mozilla 
security without breaking enigmail or adding special enigmail code 
to the mozilla base.


-- 
 GPG messages preferred.   |  .''`.  ** Debian GNU/Linux **
 Alexander Sack| : :' :  The  universal
 [EMAIL PROTECTED]   | `. `'  Operating System
 http://www.asoftsite.org  |   `-http://www.debian.org


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



Bug#334555: cpad-kernel: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: cpad-kernel
Version: 0.9-7
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for cpad-kernel, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# cpad-kernel po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the cpad-kernel package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: cpad-kernel\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-05-27 15:45+0930\n"
"PO-Revision-Date: 2005-10-11 17:57+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: boolean
#: ../cpad-kernel-source.templates:4
msgid "Would you like the cpad module to be compiled automatically?"
msgstr "¿Desea que el módulo cpad se compile automáticamente?"

#. Type: boolean
#: ../cpad-kernel-source.templates:4
msgid "In order to make full use of the cPad you need to compile and install the provided module to suit your running Linux kernel."
msgstr "Para poder usar el mando de control necesita compilar e instalar el módulo proporcionado para que se ajuste al núcleo Linux que usted ejecuta. "

#. Type: boolean
#: ../cpad-kernel-source.templates:4
msgid "Alternatively, you might prefer to build it manually.  The source to do this can be found in /usr/src/modules/cpad-kernel.  You may use a tool like make-kpkg(1) or `fakeroot debian/rules kdist [ KSRC=... KVERS=... ]` to create a Debian package as above, or you can simply `make` and install it by hand."
msgstr "Alternativamente quizás prefiera compilarlo manualmente. Puede encontrar el código fuente para hacer esto en /usr/src/modules/cpad-kernel. Puede usar una herramienta como make-kpkg(1) o «fakeroot debian/rules kdist [ KSRC=... KVERS=... ]» para crear un paquete Debian como el de arriba, o puede hacer un simple «make» e instalarlo a mano."

#. Type: boolean
#: ../cpad-kernel-source.templates:4
msgid "If little of the above made sense and you don't have a touchpad with an LCD screen in it, then you probably don't need this package at all."
msgstr "Si lo dicho arriba no tiene sentido y no tiene un mando con una pantalla LCD incorporada, probablemente no necesite este paquete."

#. Type: boolean
#: ../cpad-kernel-source.templates:29
msgid "Would you like to create a binary cpad-kernel-module package now?"
msgstr "¿Desea crear un paquete binario cpad-kernel-module ahora?"

#. Type: boolean
#: ../cpad-kernel-source.templates:29
msgid "If you opt to do this, the cpad module will be compiled into a Debian binary package using a local kernel configuration which you will be required to specify.  You must have either a kernel-headers-* package installed to suit the kernel you wish to use it with, or have a suitably configured kernel source tree available.  If you do not currently have either of these available you should choose not to do this at present.  Once you have suitable headers installed you can return to this selection with:"
msgstr "Si opta por hacer esto, el módulo cpad se compilará a un paquete binario Debian utilizando una configuración del núcleo local que tendrá que especificar. Debe disponer de un paquete kernel-headers-* instalado para que se ajuste al núcleo que desea usar, o tener disponible un árbol con las fuentes del núcleo configurado. Si no dispone de ninguna de las dos cosas debe rechazar hacer esto ahora. Una vez que tenga las cabeceras correctas instaladas puede volver a esta selección con:"

#. Type: boolean
#: ../cpad-kernel-source.templates:29
msgid "dpkg-reconfigure cpad-kernel-source"
msgstr "dpkg-reconfigure cpad-kernel-source"

#. Type: boolean
#: ../cpad-kernel-source.templates:29
msgid "Note that if you have already built a module package using the same kernel version it may be overwritten.  You should rename or relocate it before continuing if you wish to preserve it."
msgstr "Tenga en cuenta que s

Bug#334556: cpuburn: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: cpuburn
Version: 1.4-15
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for cpuburn, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# cpuburn po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the cpuburn package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: cpuburn\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-05-28 11:09+0200\n"
"PO-Revision-Date: 2005-10-11 18:02+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: note
#: ../templates:3
msgid "cpuburn is dangerous for your system"
msgstr "cpuburn es peligroso para su sistema"

#. Type: note
#: ../templates:3
msgid "This program is designed to heavily load CPU chips. Undercooled, overclocked or otherwise weak systems may fail causing data loss (filesystem corruption) and possibly permanent damage to electronic components. Use at your own risk."
msgstr "Este programa está diseñado para cargar intensamente los procesadores. Los sistemas mal refrigerados, «overclockeados» o débiles por algún otro motivo pueden fallar y producir pérdidas de datos (sistema de ficheros corrupto) y posible daño permanente en los componentes electrónicos. Utilícelo bajo su responsabilidad."

#. Type: note
#: ../templates:3
msgid "For more information, see /usr/share/doc/cpuburn/README."
msgstr "Si desea más información consulte /usr/share/doc/cpuburn/README."



Bug#334557: description will be word-wrapped

2005-10-18 Thread Robert Bihlmeyer
Package: testdisk
Severity: minor

Quotes are from Policy 5.6.13:

> The lines in the extended description can have these formats:

>* Those starting with a single space are part of a paragraph.
>  Successive lines of this form will be word-wrapped when
>  displayed. The leading space will usually be stripped off.

Because of that testdisk's description looks positively ugly when
viewed in tools (like aptitude) that actually do word-wrap. What you
probably want is this:

>* Those starting with two or more spaces. These will be displayed
>  verbatim. If the display cannot be panned horizontally, the
>  displaying program will line wrap them "hard" (i.e., without
>  taking account of word breaks). If it can they will be allowed
>  to trail off to the right. None, one or two initial spaces may
>  be deleted, but the number of spaces deleted from each line
>  will be the same (so that you can have indenting work
>  correctly, for example).


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



Bug#334558: linux-image-2.6.13: No more ACPI sleep support?

2005-10-18 Thread Christian Perrier
Package: linux-image-2.6.13
Severity: normal
Tags: experimental

Using the packages in experimental, I get this fomr hibernate (which happily
works with official 2.6.12 package):

hibernate: [10] Executing EnsureACPISleepCapable ...
Your kernel does not appear to have ACPI sleep support.
hibernate: EnsureACPISleepCapable refuses to let us continue.
hibernate: Aborting.

And, for sure /proc/acpi/sleep doe sno more exist.

Have I missed something in upstream changes and is this the gazillionth
change in power management handling for Linux kernel? :-)


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


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



Bug#334559: cpufreqd: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: cpufreqd
Version: 1.2.3-3
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for cpufreqd, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# cpufreqd po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the cpufreqd package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: cpufreqd\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-03-31 18:48+0200\n"
"PO-Revision-Date: 2005-10-11 18:09+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: note
#: ../templates:4
msgid "Unable to find a Power Management interface in your kernel."
msgstr "No se pudo encontrar una interfaz de gestión de energía en su núcleo."

#. Type: note
#: ../templates:4
msgid ""
" Cpufreqd won't be started, please enable ACPI, APM or PMU in your kernel and\n"
" 1. run dpkg-reconfigure cpufreqd to have a simple autoconfiguration or\n"
" 2. edit /etc/cpufreqd.conf by hand and run dpkg-reconfigure cpufreqd."
msgstr ""
"Cpufreqd no se arrancará, por favor, active ACPI, APM o PMU en su núcleo y\n"
" 1. ejecute dpkg-reconfigure cpufreqd para tener una configuración automática simple o\n"
" 2. edite /etc/cpufreqd.conf manualmente y ejecute dpkg-reconfigure cpufreqd."

#. Type: note
#: ../templates:12
msgid "Unable to find a CpuFreq interface in your kernel."
msgstr "No se pudo encontrar una interfaz CpuFreq en su núcleo."

#. Type: note
#: ../templates:12
msgid ""
" Cpufreqd won't be started, please enable a CpuFreq driver in your kernel and\n"
" 1. run dpkg-reconfigure cpufreqd to have a simple autoconfiguration or\n"
" 2. edit /etc/cpufreqd.conf by hand and run dpkg-reconfigure cpufreqd."
msgstr ""
"Cpufreqd no se arrancará, por favor, active un controlador CpuFreq en su núcleo y\n"
" 1. ejecute dpkg-reconfigure cpufreqd para tener una configuración automática simple o\n"
" 2. edite /etc/cpufreqd.conf manualmente y ejecute dpkg-reconfigure cpufreqd."



Bug#334560: crossfire: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: crossfire
Version: 1.6.0.dfsg.1-4
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for crossfire, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# crossfire po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the crossfire package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: crossfire\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-08-08 13:37+0300\n"
"PO-Revision-Date: 2005-10-11 18:19+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: select
#: ../templates:3
msgid "yes, no"
msgstr "sí, no"

#. Type: select
#: ../templates:4
msgid "Move files and directories?"
msgstr "¿Desea mover los ficheros y directorios?"

#. Type: select
#: ../templates:4
msgid "Beginning from version 1.0.0, all game runtime generated files are kept in /var/games/crossfire. Looks like you had old package installed, and files need to be moved from /var/lib/games/crossfire into /var/games/crossfire. Do you want me to do this? If you prefer to do this by yourself, just say no."
msgstr "Desde la versión 1.0.0, todos los ficheros del juego generados durante el mismo se guardan en /var/games/crossfire. Parece que tiene un paquete antiguo instalado, y se necesita mover los ficheros de /var/lib/games/crossfire a /var/games/crossfire. ¿Quiere qué haga esto por usted? Responda no si prefiere hacerlo usted mismo."



Bug#334562: cxref: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: cxref
Version: 1.6-8
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for cxref, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# cxref po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the cxref package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: cxref\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-11-29 23:26+0100\n"
"PO-Revision-Date: 2005-10-11 18:26+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: boolean
#: ../cxref.templates:4
msgid "Automatically configure cxref-cpp?"
msgstr "¿Desea configurar cxref-cpp automáticamente?"

#. Type: boolean
#: ../cxref.templates:4
msgid "cxref-cpp is a cpp-like program used by cxref for better comment processing and support.  Proper operation of cxref-cpp requires configuration against the gcc and cpp versions you have installed on your system.  These of course may change with each upgrade.  This package can attempt to automatically keep track of your installed gcc and cpp versions and reconfigure cxref-cpp accordingly, or it can leave such configuration up to you.  In the latter case, you can run /usr/bin/cxref-cpp-configure as root whenever you wish, and/or you can edit the file /etc/cxref/cxref-cpp.defines by hand.  In the former case, the defines file will be automatically updated every time the cxref package is reconfigured.  In addition, cxref-cpp will detect any gcc version mismatch at runtime and regenerate a temporary cxref-cpp.defines file on the fly, warning the user of the situation."
msgstr "cxref-cpp es un programa similar a cpp que usa cxref para un mejor soporte y procesamiento de los comentarios. Para un correcto funcionamiento de cxref-cpp se necesita configurar las versiones de gcc y cpp que tenga instaladas en su sistema. Por supuesto esto puede cambiar con cada actualización. Este paquete puede, automáticamente, intentar mantener el contacto con sus versiones instaladas de gcc y cpp, y reconfigurar cxref-cpp de acuerdo a estas, o puede dejarle a usted elegir la configuración. En el segundo caso, puede ejecutar cada vez que lo desee /usr/bin/cxref-cpp-configure como root, y/o puede editar el fichero /etc/cxref/cxref-cpp.defines de forma manual. En el primer caso, los ficheros define se actualizarán automáticamente cada vez que el paquete cxref sea reconfigurado. Además, cxref-cpp detectará en tiempo de ejecución cualquier desajuste de la versión de gcc y regenerará al vuelo un fichero temporal cxref-cpp.defines, avisando al usuario de la situación."



Bug#294407: libcurl3 optional package

2005-10-18 Thread Domenico Andreoli
tags 294407 + pending
thanks

On Tue, Oct 18, 2005 at 09:45:19AM -0700, Dan Fandrich wrote:
> On Tue, Oct 18, 2005 at 05:40:59PM +0200, Domenico Andreoli wrote:
> > all the autobuilder of the debian project found libldap.so, only on my
> > machine it is libldap.so.2.
> >
> > i definitely cannot drop the libldap2-dev dependency until i've not
> > found the reason.
>
> Does the Debian autobuilder have libldap2-dev installed at build time?  That's
> a build requirement as it's the only way for curl's configure to tell the
> proper LDAP library to load at run time.  If configure can't find the -dev
> library, it hard-codes libldap.so as a fallback.

ah! i added it to the build dependencies. the next upload, libcurl3
and libcurl3-gnutls packages will depend on libldap2. thank you.

cheers
domenico

-[ Domenico Andreoli, aka cavok
 --[ http://people.debian.org/~cavok/gpgkey.asc
   ---[ 3A0F 2F80 F79C 678A 8936  4FEE 0677 9033 A20E BC50


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



Bug#334501: [Pkg-openssl-devel] Bug#334501: libcryto.so.0.9.8 cause a SIGFAULT in ssh

2005-10-18 Thread Kurt Roeckx
On Tue, Oct 18, 2005 at 06:35:59PM +0200, Kurt Roeckx wrote:
> This seems to have been caused by the assembler version of RC4
> that we're using now, not sure yet why it breaks.  Will take a
> closer look later.

This seems to be assembler that is just wrong.  I have no idea
how to fix this yet.  The 0.9.7 version also didn't seem to be
used on amd64.

Make test also fails when using this.

Removing rc4-x86_64.o from x86_64_asm in Configure seems to fix
it, and I think it's the easiest way to fix it for now.

After that change, a make test works.


Kurt



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



Bug#334561: cvsd: Spanish debconf translation

2005-10-18 Thread César Gómez Martín
Package: cvsd
Version: 1.0.9
Priority: wishlist
Tags: l10n

Please find attached the spanish debconf translation for cvsd, reviewed
by the debian-l10n-spanish mailing list.

Thanks

--
César Gómez Martín - www.cesargomez.org -
[EMAIL PROTECTED]
# cvsd po-debconf translation to Spanish
# Copyright (C) 2005 Software in the Public Interest
# This file is distributed under the same license as the cvsd package.
#
# Changes:
#  - Initial translation
# César Gómez Martín <[EMAIL PROTECTED]>
#
#   Traductores, si no conoce el formato PO, merece la pena leer la
#   documentación de gettext, especialmente las secciones dedicadas a este
#   formato, por ejemplo ejecutando:
#  info -n '(gettext)PO Files'
#  info -n '(gettext)Header Entry'
# Equipo de traducción al español, por favor, lean antes de traducir
# los siguientes documentos:
#
#  - El proyecto de traducción de Debian al español
#http://www.debian.org/intl/spanish/
#especialmente las notas de traducción en
#http://www.debian.org/intl/spanish/notas
#
#  - La guía de traducción de po's de debconf:
#/usr/share/doc/po-debconf/README-trans
#o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
msgid ""
msgstr ""
"Project-Id-Version: cvsd 1.0.8\n"
"Report-Msgid-Bugs-To: Arthur de Jong <[EMAIL PROTECTED]>\n"
"POT-Creation-Date: 2005-05-22 11:16+0200\n"
"PO-Revision-Date: 2005-10-13 16:25+0100\n"
"Last-Translator: César Gómez Martín <[EMAIL PROTECTED]>\n"
"Language-Team: Debian l10n spanish \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Spanish\n"
"X-Poedit-Country: SPAIN\n"
"X-Poedit-SourceCharset: utf-8\n"

#. Type: string
#: ../templates:4
msgid "Location of chroot jail:"
msgstr "Ubicación de la cárcel «chroot»:"

#. Type: string
#: ../templates:4
msgid "cvsd can run in a chroot jail. This is the preferred method of operation. Specify the location of the chroot jail. If you make this 'none' no chroot jail will be created and used. A chroot file hierarchy will be created in the specified location."
msgstr "cvsd se puede ejecutar en una cárcel «chroot». Este es el mejor método de ejecución. Especifique la ubicación de la cárcel «chroot». Si escoge «ninguna» no se creará ninguna cárcel «chroot». Se creará una jerarquía de ficheros en la ubicación especificada."

#. Type: string
#: ../templates:13
msgid "The maximum number of connections that can be handled:"
msgstr "El número máximo de conexiones que se pueden gestionar:"

#. Type: string
#: ../templates:13
msgid "It is possible to specify a maximum number of connections that cvsd can handle simultaneously. Specifying 0 (zero) will put no limit to the number of connections."
msgstr "Es posible especificar el número máximo de conexiones que cvsd puede manejar simultáneamente. Si se especifica el valor 0 (cero) no se pondrán límites al número de conexiones."

#. Type: string
#: ../templates:21
msgid "Nice value cvsd should run at:"
msgstr "Valor «nice» con el que se debe ejecutar cvsd:"

#. Type: string
#: ../templates:21
msgid "cvsd can be run at reduced priority so it will not take up too many resources, especially if a user specifies a -z option to cvs. The priority can also be increased (negative value here)."
msgstr "cvsd se puede ejecutar con una prioridad reducida para que no use muchos recursos, especialmente si un usuario le introduce la opción -z a cvs. La prioridad puede también incrementarse (introduciendo aquí un valor negativo)."

#. Type: string
#: ../templates:29
msgid "Umask cvsd should run at:"
msgstr "Máscara «umask» con la que se debe ejecutar cvsd:"

#. Type: string
#: ../templates:29
msgid "Specify the umask cvsd and cvs should use when creating files."
msgstr "Especifique la máscara «umask» que cvsd y cvs deben usar al crear ficheros."

#. Type: string
#: ../templates:29
msgid "The umask should be specified as an octal value and represents the permissions that should be taken away when creating a file (e.g. using 027 will create files with mode 640 or rw-r-)."
msgstr "La máscara «umask» se debe especificar como un valor octal y representa los permisos que se deben quitar al crear un fichero (por ejemplo, usando 027 se crearán ficheros con los permisos 640 ó rw-r-)."

#. Type: string
#: ../templates:39
msgid "Address and port on which cvsd will listen:"
msgstr "Dirección y puerto en la que cvsd escuchará:"

#. Type: string
#: ../templates:39
msgid "With the first argument you can specify the address cvsd should listen on. The '*' address specifies that cvsd should listen on all addresses. You can specify a IPv4 address, IPv6 address, a hostname or '*'."
msgstr "Con el primer argumento puede especificar la dirección en la que debe escuchar cvsd. La dirección «*» indica que cvsd debe escuchar en todas las direcciones. Puede especificar una dirección IPv4, IPv6, un nombre de máquina o «*»."

#. Ty

Bug#334469: amarok: Should implement a "store and forward" feature when working offline

2005-10-18 Thread Christian Perrier
>   I believe it has always behaved like this. TTBOMK, amaroK stores the
>   list of songs to submit in the file ~/.kde/share/apps/amarok/submit.xml.
>   When they can't be submitted (e.g. because there's no connection, or
>   because the site is not accepting connections), the file just grow,
>   and songs are submitted in batches once it becomes possible to do so.
>   ISTR this file growing very very big once time the site was down for a
>   week or so. :)
> 
>   Christian, is this not working for you?


Doesn't seem so:

-the songs I've listened to are not added to last.fm (just check for
instance whether "Aqualung" by Jethro Tull is listed under bubulle's
listened songs on last.fm...this is what i'm listening now and I'm not
connected:-)))

-the file is empty even when I'm offline:


[EMAIL PROTECTED]:~/src/debian/aptitude/po> cat 
~/.kde/share/apps/amarok/submit.xml






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



Bug#320459: bind9: executes as SUID instead of UID bind, even with -u bind

2005-10-18 Thread Barry Sasser

  Correct on both accounts (thankfully I found someone
who can answer my questions! :D ).  Will reverify and
reply.

-BS


--- Elliott Mitchell <[EMAIL PROTECTED]> wrote:

> At a guess, you're running `ps auxwe | grep named`
> from a root shell?
> 
> As the command with the root UID is grep, this looks
> like `grep` is
> catching itself (since `grep named` itself has the
> string "named" in its
> command line). I imagine `ps auxwe > /tmp/foo`;
> `grep named /tmp/foo`
> wouldn't list this extra process.
> 
> As a further guess, from the long environment,
> you're logged in as root
> rather than using `su` or equivalent?
> 
> 
> -- 
> (\___(\___(\__  --=> 8-) EHM <=--   
>   __/)___/)___/)
>  \BS (| [EMAIL PROTECTED] PGP
> 8881EF59 |)   /
>   \_CS\   |  _  -O #include  O-
>   _  |   /  _/
> \___\_|_/82 04 A1 3C C7 B1 37 2A*E3 6E 84 DA 97
> 4C 40 E6\_|_/___/
> 
> 
> 





__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


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



Bug#334113: kernel allows loadkeys to be used by any user, allowing for local root compromise

2005-10-18 Thread Rudolf Polzer
Scripsis, quam aut quem »Krzysztof Halasa« appellare soleo:
> Horms <[EMAIL PROTECTED]> writes:
> 
> >> Then log out and let root login (in a computer pool, you can usually get
> >> an admin to log on as root on a console somehow). The next time he'll
> >> press TAB to complete a file name, he instead will run the shell
> >> command.
> 
> Why doesn't the intruder just simulate login process (printing "login: "
> and "Password:")? That's known and used for ages.
> 
> The root user (and any other user) should press the SAK key before
> attempting login. It should a) reset terminal to a sane state,
> b) terminate and/or disconnect all processes from current tty.

That does not help against the loadkeys issue if the attacking user is still
logged in on another virtual console. Even when tty1 is active, a user owning
tty6 can use loadkeys.

Plus, the Linux SAK does not reset the keyboard mapping. And SAK does not reset
the video mode, so when pressed on X, the terminal video mode is garbled until
reboot (maybe it works fine with some framebuffer drivers, but with the stock
VGA text console, it doesn't). X comes back up fine, but when pressing
Ctrl-Alt-F1, X will restore the video mode it saw on startup - which is the
mode of the previous X server the SAK has killed.

> Alternatively, he/she should hw-reset/power-cycle the terminal,
> if possible (say, with serial/X-terminal).

Well, sometimes you have problems that powercycling would "hide" so you can't
track them down if you powercycle the whole computer every time.

> OTOH I don't know why ordinary users should be allowed to change key
> bindings.

For using foreign languages and keyboard mappings.

But for that a suid wrapper around loadkeys would suffice - most distributions
include more than enough keyboard mapping files already.

> BTW: Not sure about Linux consoles, but in general ESCape sequences
> can redefine key bindings as well. That's why SAK/reset is so important.

If man console_codes is correct, they can't.



Bug#334563: shouldn't this be in libs?

2005-10-18 Thread Robert Bihlmeyer
Package: libsfs0c2
Severity: minor

libsfs0c2 does not provide any executables -- I think it would be better placed
in section libs.


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



Bug#334564: bsdmainutils: [calendar] update debian.calendar with sarge/2005 dpl

2005-10-18 Thread Jon Dowland
Package: bsdmainutils
Version: 6.0.17
Severity: wishlist

Please update the debian calendar data with the two big events of 2005:
the DPL election and the release of sarge. 

The attached patch describes both of these + Martin's re-election to DPL
in 2004.

Seeing as 17 Apr is the date for all DPL appointments since 2002, it
might be better to replace the list with something like

Apr 17 The Debian Project Leader is announced (since 2002)

I'll leave that for you to judge :)

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

Versions of packages bsdmainutils depends on:
ii  bsdutils 1:2.12p-4sarge1 Basic utilities from 4.4BSD-Lite
ii  debconf [debconf-2.0]1.4.30.13   Debian configuration management sy
ii  debianutils  2.8.4   Miscellaneous utilities specific t
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libncurses5  5.4-4   Shared libraries for terminal hand

-- debconf information excluded

-- 
Jon Dowland
http://jon.dowland.name/


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



Bug#334565: a number of packages misplaced in section net

2005-10-18 Thread Robert Bihlmeyer
Package: avahi
Severity: normal

The following packages are in net but should IMHO be in libs:
libavahi-cil
libavahi-client1
libavahi-common0
libavahi-core1
libavahi-glib0
libavahi-qt3-0
libavahi-qt4-0

The following packages are in net but should IMHO be in libdevel:
libavahi-client-dev
libavahi-common-dev
libavahi-core-dev
libavahi-glib-dev
libavahi-qt3-dev
libavahi-qt4-dev


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



Bug#305761: Bug#330077: flwm should provide a session file for kdm and gdm

2005-10-18 Thread Bill Allombert
Hello Christopher (Martin),

Would help me to fix menu-xdg bug  317567,324545,328055 ?
You send a patch to 305761, but I am a bit confused by the
second patch in bug #317567.

What is the correct fix ? Will that work with both GNOME
and KDE ?

Chris, I plan to NMU this package soon, I hope you don't mind.

Cheers,
-- 
Bill. <[EMAIL PROTECTED]>

Imagine a large red swirl here. 


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



Bug#330372: [Fwd: Re: #330372: squirrelmail: wrong line wrapping for unicode characters]

2005-10-18 Thread Thijs Kinkhorst
Upstream writes:

 Original Message 
Subject: Re: #330372: squirrelmail: wrong line wrapping for unicode 
characters
From:"Tomas Kuliavas" <[EMAIL PROTECTED]>
Date:Tue, October 18, 2005 18:03
To:  "Thijs Kinkhorst" <[EMAIL PROTECTED]>
--

> Hello Tomas,
>
> Could you assist me with this bug?
> http://bugs.debian.org/330372

See wrap-and-header.diff
http://article.gmane.org/gmane.mail.squirrelmail.devel/6521

It should solve two utf-8 issues. Wrapping and incorrect header encoding.

Fixed in 1.5.1cvs. There is open bugreport on stable tracker
(https://sourceforge.net/tracker/?func=detail&atid=423679&aid=1043576&group_id=311).

I need confirmation from stable team before adding patch to stable. I
haven't got any feedback on last wrapping patch
(http://article.gmane.org/gmane.mail.squirrelmail.devel/6046).

-- 
Tomas






Bug#334566: description will be word-wrapped

2005-10-18 Thread Robert Bihlmeyer
Package: irpas
Severity: minor

Quotes are from Policy 5.6.13:

> The lines in the extended description can have these formats:

>* Those starting with a single space are part of a paragraph.
>  Successive lines of this form will be word-wrapped when
>  displayed. The leading space will usually be stripped off.

Because of that the list of programs in irpas's description looks ugly
when viewed in tools (like aptitude) that actually do word-wrap. What
you probably want is this:

>* Those starting with two or more spaces. These will be displayed
>  verbatim. If the display cannot be panned horizontally, the
>  displaying program will line wrap them "hard" (i.e., without
>  taking account of word breaks). If it can they will be allowed
>  to trail off to the right. None, one or two initial spaces may
>  be deleted, but the number of spaces deleted from each line
>  will be the same (so that you can have indenting work
>  correctly, for example).


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



Bug#334567: numerous nasty error messages

2005-10-18 Thread Joey Hess
Package: debootstrap
Version: 0.3.1.7
Severity: normal
Tags: d-i

This is what I get if I run debootstrap --debian-installer
--resolve-deps etch /target http://ftp.debian.org/debian at the console
in d-i:

E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
E: Unimplemented function
usage: /usr/lib/debootstrap/pkgdetails PKGS mirror packagesfile pkgs..
   or: /usr/lib/debootstrap/pkgdetails FIELD field mirror packagesfile pkgs..
   or: /usr/lib/debootstrap/pkgdetails GETDEPS packagesfile pkgs..
   or: /usr/lib/debootstrap/pkgdetails WGET% low high end reason
E: Unimplemented function
E: Unimplemented function

I cannot tell where the Unimplemented functions are coming from. It
doesn't seem to happen if it's actually run inside d-i anyway, but it
sure is ugly. I'll guess it's related to the progress stuff.

The pkgdetails error is because in functions, line 861, it passes it the
"PKGS REAL" parameters, which is not supported in pkgdetails.c. Perhaps
it is in the perl version; the code is too horrible to comprehend.

While they don't seem to keep it from working, these error messages make
debugging debootstrap a PITA.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#334554: linux-image-2.6.12-1-686: unresolved symbols in snd_usb_audio kernel module

2005-10-18 Thread Maximilian Attems
On Tue, Oct 18, 2005 at 12:58:18PM -0400, Keith Geffert wrote:
> Loading snd_usb_audio fails with unresolved symbols.  I use a Logitech
> USB Mic frequently and after the 2.6.12 upgrade hotplug now fails to
> load the alsa device module. 2.6.10-x-686 does not exhibit this
> behavior.
> 
> Sample syslog excerpt:
> Oct 17 20:16:48 localhost kernel: usb 2-2: new full speed USB device
> using uhci_hcd and address 2
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.170
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.89
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.173
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.112
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.110
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.150
> Oct 17 20:16:54 localhost kernel: snd_usb_audio: Unknown symbol
> __compound_literal.102

that's a known issue alsa has a newer abi and needs an `alsaconf` run.
if not please give dmesg and lspci -v output.

--
maks


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



Bug#334568: [INTL:tr] Updated Turkish po-debconf translation

2005-10-18 Thread Recai Oktas
Package: xorg-x11
Severity: wishlist
Tags: patch l10n

Please find attached the Turkish po-debconf translation.  Thanks to
Tulay Muezzinoglu.

Regards,

-- 
roktas


tr.po.gz
Description: Binary data


signature.asc
Description: Digital signature


Bug#334039: close

2005-10-18 Thread Ralf Treinen
This has been fixed by Lamont's NMU (version 1:1.0.5-3.1). -Ralf.


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



Bug#334569: gaim: please allow irc-style message resending/repeating/history

2005-10-18 Thread Justin Pryzby
Package: gaim
Version: 1.5.0-1
Severity: wishlist

It is common for IRC clients to allow users to press "up" to access
previously-sent messages, to allow for them to be modified and resent.
I think it would be useful (and more consistent) if gaim also allowed
this; keep a list of recently sent messages, possibly capped to some
maximum number, if logging is disabled; if it is enabled, just access
the appropriate logs.

Closing a window could free() the recently sent list, but, with
logging, the list is on permenant, mass-media, and so the "history"
should be every log file for the given user/channel in every gaim
format since the birth of christ, so long as that log file is in the
expected ~/.gaim/ location.


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



Bug#334570: openssh-client: ssh-agent segfaults on startup

2005-10-18 Thread Modestas Vainius
Package: openssh-client
Version: 1:4.2p1-5
Severity: grave
Justification: renders package unusable

Hello,

ssh-agent segfaults on startup. By default it's started during X session
initialization, so this causes every X session to fail. You can find the
backtrace below.

GNU gdb 6.3-debian
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu"...Using host libthread_db library 
"/lib/libthread_db.so.1".

(gdb) r
Starting program: /usr/bin/ssh-agent

Program received signal SIGSEGV, Segmentation fault.
0x2ac40817 in RC4 () from /usr/lib/libcrypto.so.0.9.8
(gdb) bt
#0  0x2ac40817 in RC4 () from /usr/lib/libcrypto.so.0.9.8
#1  0x7f9b6fb0 in ?? ()
#2  0x0040f570 in arc4random_stir ()
#3  0x0040f487 in arc4random () at 
../../openbsd-compat/bsd-arc4random.c:47
#4  0x0040e2b7 in _gettemp (path=0x5150a0 "/tmp/ssh-X30723", 
doopen=0x0, domkdir=1, slen=0) at ../../openbsd-compat/mktemp.c:105
#5  0x0040e113 in mkdtemp (path=0x5150a0 "/tmp/ssh-X30723") at 
../../openbsd-compat/mktemp.c:68
#6  0x004058ac in main (ac=0, av=0x7f9b6fc0) at ../ssh-agent.c:1098
(gdb) q

This seems more like openssl issue though. I have tried downgrading
to 0.9.8-2 but this didn't help.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13.3-mdx
Locale: LANG=lt_LT, LC_CTYPE=lt_LT (charmap=ISO-8859-13)

Versions of packages openssh-client depends on:
ii  adduser 3.67.2   Add and remove users and groups
ii  debconf [debconf-2. 1.4.58   Debian configuration management sy
ii  dpkg1.13.11  package maintenance system for Deb
ii  libc6   2.3.5-7  GNU C Library: Shared libraries an
ii  libcomerr2  1.38-2   common error description library
ii  libedit22.9.cvs.20050518-2.2 BSD editline and history libraries
ii  libkrb531.3.6-5  MIT Kerberos runtime libraries
ii  libncurses5 5.5-1Shared libraries for terminal hand
ii  libselinux1 1.26-1   SELinux shared libraries
ii  libssl0.9.8 0.9.8a-1 SSL shared libraries
ii  zlib1g  1:1.2.3-6compression library - runtime

openssh-client recommends no packages.

-- no debconf information


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



Bug#334571: do I need all the files in /usr/lib/perl/5.8.7/asm-* ?

2005-10-18 Thread Paul Kimoto
Package: perl
Version: 5.8.7-7
Severity: minor

I noticed that perl_5.8.7-7_i386.deb is 3% larger than
perl_5.8.7-6_i386.deb even though changelog.Debian would suggest that there
should be no meaningful changes (for i386).  It looks like the directories
/usr/lib/perl/5.8.7/asm-{generic,i486,x86_64} are new.  Are their contents
needed?  (asm-x86_64/ particularly looks suspicious on ia32.)


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



Bug#334572: linux-image-2.6.12-1-k6: Module "tuner" prohibits additional options (i.e. "-type=5") , bug ???

2005-10-18 Thread Hans
Package: linux-image-2.6.12-1-k6
Version: linux-image-2.6.12-1-k7
Severity: normal



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

Descriptin: 

The kernel module "tuner.o" will not accept additional options,
just like -type=xx or pll=x. This was in earlier kernel-versions o.k.

As I have to set a tunertype to use th emodule for my tv-card,
th emodule must be loaded with parameters. The module willload without
any additional parameters, but then is unusuable. 

In documentation and changelog I found nothing about an improvement or 
change, that the tuner module will detect the tuner type automatically.

I use a debian-build kernel with udev, my tv card is older, the tuner is 
a pal tuner (must be type=5 , pll=2).

I suppose, it is a bug in tuner.o. If it is not, please drop me a line,
so I will look for the mistake here.

Best regards and thanks

Hans



 


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



Bug#334573: some locales misplaced in section web

2005-10-18 Thread Robert Bihlmeyer
Package: enigmail-locales
Severity: minor

Some of the enigmail-locale-* packages are (IMO correctly) placed in section
mail, the following ones are in web instead:

enigmail-locale-fi
enigmail-locale-nb
enigmail-locale-pt-br
enigmail-locale-sk


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



Bug#321998: [NMU] Re: linuxdoc-tools: [sgml2latex] Fails to produce DVI output with teTeX-3.0, always PDF

2005-10-18 Thread Frank Küster
Frank Küster <[EMAIL PROTECTED]> wrote:

> severity 321998 serious
> thanks
>
> Frank Küster <[EMAIL PROTECTED]> wrote:
>
>> This will cause packages to FTBFS once teTeX-3.0, currently in
>> experimental, gets into unstable (and then the severity will be RC).  We
>> expect to be able to do the upload within days or weeks.
>
> I'm going to upload teTex-3.0 this week, therefore raising the
> severity.  If there isn't an upload of linuxdoc-tools that fixes this
> bug until then, I'm going to NMU the package to prevent FTBFS bugs.

Sorry if this is a little bit fast.  But I decided today that I'd better
upload teTeX today.  So, in order to prevent packages from FTBFS
tomorrow, I'm doing the NMU now.

Regards, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer




Bug#334272: Did not start [was Re: Bug#334272: fail2ban: returned ERROR 256 from iptables]

2005-10-18 Thread Yaroslav Halchenko
On Tue, Oct 18, 2005 at 10:08:53AM -0400, Ralph Katz wrote:
> Yesterday using 0.5.4-5.14, valid ssh logins worked fine, and ssh
> attacks were correctly prevented.

> Maybe fail2ban starts too soon?
That would be my guess too. fail2ban boots in   rc2.d, so all relevant
modules should be loaded by that time. I hope you don't use any
"fast-boot" tricks as to boot init scripts in parallel (&)?

Anyway I should fix fail2ban to don't fail that miserably in the case
when iptables is not available at the start time. But I'm not sure what
should I do about iptables detection because fail2ban itself is
independent of specific firewalling solution -- commands are given in
the config file. I might want to add something like

waitCmd 
waitTime

so fail2ban runs waitCmd for waitTime seconds (sleeping a second between
runs) and if waitCmd never succeeds - exits, reporting the error.
That would prevent your cases from happening...

-- 
  .-.
=--   /v\  =
Keep in touch// \\ (yoh@|www.)onerussian.com
Yaroslav Halchenko  /(   )\   ICQ#: 60653192
   Linux User^^-^^[17]




pgpeCPI54zwVG.pgp
Description: PGP signature


Bug#328515: Patch against version 0.5.4

2005-10-18 Thread Loic Pefferkorn
Hello,

I've made a patch against version 0.5.4 to fix this problem :

http://dev.erodia.net/ubuntu/kcheckgmail-0.5.4/kubuntu_01_authentication_problem_fix.diff

I also updated Ubuntu package to latest release (0.5.4) and applied this 
patch, maybe you can sync from Ubuntu to get directly latest release 
working ;)


Best Regards,
Loic


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



Bug#334553: console-log: Spanish debconf translation

2005-10-18 Thread Marc Haber
tags #334553 l10n patch confirmed pending
thanks

On Tue, Oct 18, 2005 at 06:55:18PM +0200, César Gómez Martín wrote:
> Please find attached the spanish debconf translation for console-log, reviewed
> by the debian-l10n-spanish mailing list.

Committed to svn, thanks.

Greetings
Marc

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


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



Bug#334564: patch +tags patch

2005-10-18 Thread Jon Dowland
package bsdmainutils
tags 334564 +patch
thanks

Attached.

-- 
Jon Dowland
http://jon.dowland.name/
--- usr.bin/calendar/calendars/calendar.debian~ 2005-06-08 02:28:16.0 
+0100
+++ usr.bin/calendar/calendars/calendar.debian  2005-10-18 15:16:38.0 
+0100
@@ -18,6 +18,8 @@
 Apr  1 Ben Collins became Debian Project Leader, 2001
 Apr 17 Bdale Garbee became Debian Project Leader, 2002
 Apr 17 Martin Michlmayr became Debian Project Leader, 2003
+Apr 17 Martin Michlmayr retained the position of Debian Project Leader, 2004
+Apr 17 Branden Robinson became Debian Project Leader, 2005
 
 /* Days of death */
 Jul 11 Joel 'Espy' Klecker (Debian) died at the age of 21, 2000
@@ -35,6 +37,7 @@
 Mar  9 Debian GNU/Linux 2.1 alias ``slink'' released, 1999
 Aug 15 Debian GNU/Linux 2.2 alias ``potato'' relased, 2000
 Jul 19 Debian GNU/Linux 3.0 alias ``woody'' released, 2002
+Jun  6 Debian GNU/Linux 3.1 alias ``sarge'' released, 2005
 
 /* Notably other dates */
 Aug 16 Ian Murdock founded Debian, 1993



Bug#334574: scorched3d: missing versioned build-dep on libopenal-dev

2005-10-18 Thread Julien Cristau
Package: scorched3d
Version: 39.1+cvs20050929-1
Severity: minor

Hi,

scorched3d failed to build on mipsel because its configure script needs
an openal-config script, which was only added in openal version
0.2005080600-2. Please version your build-dependency on libopenal-dev to
">= 0.2005080600-2".

Thanks,
Julien Cristau


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

Versions of packages scorched3d depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfreetype6  2.1.7-2.4  FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libglu1-xorg  6.8.2.dfsg.1-7 Mesa OpenGL utility library [X.Org
ii  libsdl-mixer1 1.2.6-1.1  mixer library for Simple DirectMed
ii  libsdl-net1.2 1.2.5-3network library for Simple DirectM
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-5.3 Simple DirectMedia Layer
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libwxgtk2.4   2.4.3.1wxWindows Cross-platform C++ GUI t
ii  scorched3d-da 38.1-2 data files for Scorched3D game
ii  xlibmesa-gl [ 6.8.2.dfsg.1-7 Mesa 3D graphics library [X.Org]
ii  zlib1g1:1.2.3-4  compression library - runtime

scorched3d recommends no packages.

-- no debconf information


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



Bug#334575: apache2-mpm-prefork: mod_rewrite and PHP5.1CVS display a blank page

2005-10-18 Thread Jonathan SEMCZYK
Package: apache2-mpm-prefork
Version: 2.0.54-5
Severity: important



I have a blank page with PHP5.1 (snapshot from october 13, 2005) and
mod_rewrite. The rewrite engine is working cause even when I give a
wrong URL I get a code 200 in my logs but the size of the returned page
still 0.

Using a .htaccess file or putting the rewrite rules inside the
httpd.conf does the same.

If I rewrite everything to a .php file I get a blank page.
If I rewrite everything to a .html file it works as expected.
If I have the rewrite engine off, the PHP page displays.

First I thought it was a PHP bug, so I filled a bug report on the PHP
website :
http://bugs.php.net/bug.php?id=34846

I worked with a Zend developper and we find out that using the source
solves the issue.


.htaccess file :

RewriteEngine On
RewriteRule ^.*$ index.php [L]

index.php file :

jon


my apache configuration is very simple, I use a vhost :


ServerName karibou
DocumentRoot /home/jon/karibou/public_html

AllowOverride all
order allow,deny
allow from all




-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.26-grsec
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages apache2-mpm-prefork depends on:
ii  apache2-common 2.0.54-5  next generation, scalable, extenda
ii  libapr02.0.54-5  the Apache Portable Runtime
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libdb4.2   4.2.52-18 Berkeley v4.2 Database Libraries [
ii  libexpat1  1.95.8-3  XML parsing C library - runtime li
ii  libldap2   2.1.30-8  OpenLDAP libraries
ii  libpcre3   4.5-1.2sarge1 Perl 5 Compatible Regular Expressi
ii  libssl0.9.70.9.7e-3  SSL shared libraries
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#275126: evolution-webcal: typo in evolution-webcal.applications

2005-10-18 Thread Sebastien Bacher
close 275126 2.2.0-1
thanks

This file has been dropped with evolution-webcal 2.1.1 since GNOME uses
the shared-mime-info package for that now, which works fine.




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



Bug#334517: mysql-client-4.1: mysqldumpslow is looking for '/var/lib/mysql/*-slow.log'

2005-10-18 Thread sean finney
hi olaf, christian,

On Tue, Oct 18, 2005 at 03:41:36PM +0200, Olaf van der Spek wrote:
> # mysqldumpslow
> Can't find '/var/lib/mysql/*-slow.log'
> #
> 
> Could the default path be changed to '/var/log/mysql'?


taking a quick look at things, it looks like the mysqldumpslow (which is
a perl script) is assuming that the slow logs are going into the
datadir.  it wouldn't be too hard to patch it to use the value of
log-slow-queries (olaf: or should it be dirname of that?).

anyway, i'll throw something in svn if we can agree on a common default 
christian: do you think it would even be worth throwing a patch upstream?


sean

-- 


signature.asc
Description: Digital signature


Bug#334517: mysql-client-4.1: mysqldumpslow is looking for '/var/lib/mysql/*-slow.log'

2005-10-18 Thread Olaf van der Spek

sean finney wrote:

hi olaf, christian,

On Tue, Oct 18, 2005 at 03:41:36PM +0200, Olaf van der Spek wrote:


# mysqldumpslow
Can't find '/var/lib/mysql/*-slow.log'
#

Could the default path be changed to '/var/log/mysql'?




taking a quick look at things, it looks like the mysqldumpslow (which is
a perl script) is assuming that the slow logs are going into the
datadir.  it wouldn't be too hard to patch it to use the value of
log-slow-queries (olaf: or should it be dirname of that?).


I think the file itself is ok, due to logrotate there are multiple files 
but I don't think the script handles that anyway.



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



Bug#334569: gaim: please allow irc-style message resending/repeating/history

2005-10-18 Thread Luke Schierer
Part of this already exists.  Because gaim uses a multi-line entry
widget, "up" is naturally bound for in-message navigation.
control-up however will give you previously sent messages.

It does not however access the logs (where available) to fill this
buffer, it only acts for the life of that tab.

luke


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



Bug#334569: gaim: please allow irc-style message resending/repeating/history

2005-10-18 Thread Justin Pryzby
retitle 334569 gaim: Please enable the history to be filled by information from 
the logfiles, when available
# severity 334569 0
thanks

Awesome!  (Who knew!)  Maybe there is a way to make this more
intuitive?  (I just have to wonder how many other features I don't
know about, yet).  Is making use of the logs a reasonable request?

-- 
Clear skies,
Justin

On Tue, Oct 18, 2005 at 02:37:30PM -0400, Luke Schierer wrote:
> Part of this already exists.  Because gaim uses a multi-line entry
> widget, "up" is naturally bound for in-message navigation.
> control-up however will give you previously sent messages.
> 
> It does not however access the logs (where available) to fill this
> buffer, it only acts for the life of that tab.


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



Bug#334113: kernel allows loadkeys to be used by any user, allowing for local root compromise

2005-10-18 Thread Krzysztof Halasa
Rudolf Polzer <[EMAIL PROTECTED]> writes:

> That does not help against the loadkeys issue if the attacking user is still
> logged in on another virtual console. Even when tty1 is active, a user owning
> tty6 can use loadkeys.

Sure. The problem is that mappings are shared between VCs but anyway
it's solved by disabling user changes.
I don't think there is a solution here, easier than hardware reset.
As for "server" machines (not simple terminals), physical locking is
critical.

> Well, sometimes you have problems that powercycling would "hide" so you can't
> track them down if you powercycle the whole computer every time.

In security-sensitive instalation, you simply don't expose the computers
to non-admins.

> For using foreign languages and keyboard mappings.

Hope they don't change the keys in the process.
Anyway, most people don't need that nor they need suid-wrapper.

BTW: there are similar problems with serial access: users can play
with termio(s) settings (especially CLOCAL flag) and fake
login/password requests. Unless the getty programs are fixed,
you don't want to connect dial-in modems to a machine with user
accounts. Not a kernel thing, though - Linux has termios locking
for 10+ yrs.
-- 
Krzysztof Halasa


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



Bug#274220: ITP: gnome-btdowloader -- Gnome BitTorrent Downloader

2005-10-18 Thread -.JavaManiac.-
I'd like to work over this package,if doesn't have any objection,and
due to the   inactivity of the ITP owner ,i will take the ITP.

Thanks
--
Gerardo Curiel
Linux User # 374459
Geek By NaTure,LiNuX By ChOiCe,DebiAn of CoUrsE
<___-!!Java RuLeS!!-___>



Bug#334576: slrn: postinst destroys contents of /etc/mailname when _POSIX2_VERSION is set to 200112

2005-10-18 Thread Robert Luberda
Package: slrn
Version: 0.9.8.1pl1-12
Severity: grave


Hi,

The config and postinst scripts do not check exit status of `head -1' 
command, which fails when _POSIX2_VERSION environment variable is 
set to 200112, causing the slrn installation scripts  to replace
the contents of /etc/mailname file with one '\n' (newline) char:


   vox:~# export LC_ALL=C
   vox:~# ls -la /etc/mailname
   -rw-r--r--  1 root root 15 2005-10-18 20:30 /etc/mailname
[ Note, the file size is 15 ]
   vox:~# env | grep POSIX
   _POSIX2_VERSION=200112
   vox:~# apt-get install --reinstall slrn
[ Let's remove standard apt-get stuff ]
   Preconfiguring packages ...
   head: `-1' option is obsolete; use `-n 1'
   Try `head --help' for more information.
   head: `-1' option is obsolete; use `-n 1'
   Try `head --help' for more information.
   (Reading database ... 307461 files and directories currently installed.)
   Preparing to replace slrn 0.9.8.1pl1-12 (using 
.../slrn_0.9.8.1pl1-12_i386.deb) ...
   Unpacking replacement slrn ...
   Setting up slrn (0.9.8.1pl1-12) ...
   head: `-1' option is obsolete; use `-n 1'
   Try `head --help' for more information.
   head: `-1' option is obsolete; use `-n 1'
   Try `head --help' for more information.
   
   vox:~# ls -la /etc/mailname
   -rw-r--r--  1 root root 1 Oct 18 20:31 /etc/mailname
[ And now the size is 1; the file contains only the '\n' char ]

Severity grave, because this bug causes data loss, and breaks unrelated
software, like postfix (see bug #322602).

Best Regards,
robert

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

Versions of packages slrn depends on:
ii  debconf [debconf-2.0] 1.4.58 Debian configuration management sy
ii  debianutils   2.15   Miscellaneous utilities specific t
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libcanlock2   2b-3   library for creating and verifying
ii  libgcrypt11   1.2.1-4LGPL Crypto library - runtime libr
ii  libgnutls12   1.2.6-1the GNU TLS library - runtime libr
ii  libslang2 2.0.4-7The S-Lang programming library - r
ii  libtasn1-20.2.13-1   Manage ASN.1 structures (runtime)

slrn recommends no packages.

-- debconf information:
* shared/mailname:
* slrn/manual_getdescs:
* slrn/getdescs: manually
* slrn/getdescs_now: false
* shared/news/server:
  slrn/lost_slrnpull:


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



Bug#319425: [debian-edu] Bug#319425: riva128 requires 15 bit color but gets set to 16

2005-10-18 Thread Vagrant Cascadian
On Mon, Oct 17, 2005 at 10:34:55AM -0700, Bill Kendrick wrote:
> On Mon, Oct 17, 2005 at 04:42:30PM +0200, Jonas Smedegaard wrote:
> > > I am one of the discover maintainers too, and I have no idea how to
> > > detect it.  As far as I know, discover (v1 and v2) are unable to
> > > detect this.  :)
> > 
> > Arrgh. Too bad - I am out if good(?) ideas then :-(
> 
> Perhaps file a bug with X.org that asks them to provide a fallback color
> depth, so if 16bpp doesn't work, there could be an alternative line that
> tells X to try 15bpp next.  THEN die if it can't do that, either. :^)

this sounds like a good long-term solution.

as a short-term workaround, maybe xdebconfigurator (or discover) could
maintain a list of cards that don't support 16 bit color depth, but
support 15 or 24. i don't suspect it to be a long list, and it will
hopefully eventually be obsoleted.

you could check against the pci id, or the string for the card
identifier(the 4th column for discover1-data), though i suspect the pci
id would be better.

live well, 
  vagrant


signature.asc
Description: Digital signature


Bug#334577: fai-mirror and fai-cd should stop with error when FAI_CONFIGDIR is unavailable or empty

2005-10-18 Thread Henning Sprang
Package: fai
Version: 2.8.4
Severity: normal

When running fai-mirror and fai-cd they look "normal" at the first glance when 
you
run them even if there is no /usr/local/share/fai or better, FAI_CONFIGDIR.
Clearly, the resulting mirror and cd are not usable at all.

If looking exactly in the log files, you can guess that when fai-mirror 
downloads
only 30 MB it won't produce a usable cd, but it should be more clear for the 
user
what the problem is.



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages fai depends on:
ii  libapt-pkg-perl   0.1.13 Perl interface to libapt-pkg
ii  perl  5.8.4-8Larry Wall's Practical Extraction 

-- no debconf information


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



Bug#334578: libgphoto2-2: isn't configured if udev isn't installed

2005-10-18 Thread Baurzhan Ismagulov
Package: libgphoto2-2
Version: 2.1.6-5.1
Severity: normal


Hello Frederic,

the package fails to be configured if udev is not installed:

Setting up libgphoto2-2 (2.1.6-5.1) ...
/var/lib/dpkg/info/libgphoto2-2.postinst: line 25: /etc/udev/libgphoto2.rules: 
No such file or directory
dpkg: error processing libgphoto2-2 (--configure):
 subprocess post-installation script returned error exit status 1

The package recommends udev | hotplug, and I use hotplug. The problem
is that in my case, /etc/udev doesn't exist.

One solution could be to include all the necessary files / links in the
package, so that the paths are created by dpkg, and to patch it in
postinst.

Thanks in advance,
Baurzhan.


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

Versions of packages libgphoto2-2 depends on:
ii  adduser   3.48   Add and remove users and groups
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libexif12 0.6.12-2   library to parse EXIF files
ii  libgphoto2-port0  2.1.6-5.1  gphoto2 digital camera port librar
ii  libjpeg62 6b-6   The Independent JPEG Group's JPEG 

-- no debconf information


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



Bug#334579: ltsp-server: missing e1000 driver in initrd

2005-10-18 Thread Andreas Schockenhoff
Package: ltsp-server
Version: 0.56debian5
Severity: wishlist

I like to boot a thin client with Intel gigabit nic.

-- System Information:
Debian Release: skolelinux/sarge
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-386
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages ltsp-server depends on:
ii  atftpd   0.7-7   advanced TFTP server
ii  debconf [debconf-2.0]1.4.30.13   Debian configuration management sy
ii  debootstrap  0.2.45-0.2  Bootstrap a basic Debian system
ii  iproute  20041019-3  Professional tools to control the 
ii  netkit-inetd 0.10-10 The Internet Superserver
ii  nfs-kernel-server1:1.0.6-3.1 Kernel NFS server support
ii  syslinux 2.11-0.1Bootloader for Linux/i386 using MS

-- debconf information:
  ltsp-server/build_client: false


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



Bug#334580: qcad: Segfault when undoing removal of block

2005-10-18 Thread Jan Gorski
Package: qcad
Version: 2.0.4.0-1-2
Severity: normal

As in subject.
1. Draw a line (eg Draw->Line->2 Points).
2. Create a block from this line (Block->Create Block-> ...).
3. Remove this block.
4. Edit->Undo ... and qcad ends with nice message "Segmentation fault"

Pozdrawiam
Slimak (na krawędzi)

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

Versions of packages qcad depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libice6   6.8.2.dfsg.1-7 Inter-Client Exchange library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libqcad0  2.0.4.0-1-2Qcad libraries
ii  libqt3c102-mt 3:3.3.4-3  Qt GUI Library (Threaded runtime v
ii  libsm66.8.2.dfsg.1-7 X Window System Session Management
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System miscellaneous exte
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

qcad recommends no packages.

-- no debconf information


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



  1   2   3   4   5   >