Bug#299447: gv: doubly embedded ps files confuse scanner

2005-03-14 Thread Sanjoy Mahajan
Package: gv
Version: 1:3.6.1-9
Severity: normal

In certain cases the ps file scanner can get confused by ps files
embedded within a page.  The file
,
extracted from a colleague's textbook, shows the problem.  Running gv
several-pages.ps shows only page "540,54" (really "540,541") in the
page list.  But the file has a few pages: (540,541) and (543,542) and
(639,638).  On my laptop (Pentium 3) all versions of gs (v8.01, 8.14,
and 8.50) show the full set of pages, so I the problem is most likely
in gv.

The

file has the difficult page itself, without the huge prolog (all those
tex fonts) or the pages after it.

Also, the vanilla gv 3.6.1, say from the gv_3.6.1.orig.tar.gz file,
shows all the pages in the sidebar.  So the problem is probably in a
Debian patch.  By trying various partial patches and guessing a bit, I
narrowed it down to this hunk from
debian/patches/02_293976=045735_filename+unknown.diff (available after
doing 'apt-src install gv/unstable'), which applies to the readline()
routine:

--- gv-3.6.1.orig/src/ps.c
+++ gv-3.6.1/src/ps.c
@@ -1826,7 +1858,12 @@
else
 #endif
if  (!IS_COMMENT("Begin")) {} /* Do nothing */
-   else if IS_BEGIN("Document:")  SKIP_UNTIL_1("EndDocument")
+   else if IS_BEGIN("Document:")  {  /* Skip the EPS without handling its 
content */
+while (line && !IS_END("Document")) {
+   line = ps_io_fgetchars(fd,-1);
+   if (line) *line_lenP += FD_LINE_LEN;
+}
+   }
else if IS_BEGIN("Feature:")   SKIP_UNTIL_1("EndFeature")
 #ifdef USE_ACROREAD_WORKAROUND
else if IS_BEGIN("File")   SKIP_UNTIL_2("EndFile","EOF")

(also available at
)

The culprit seems to be the change from SKIP_UNTIL_1("EndDocument") to
the while loop.  SKIP_UNTIL_1() calls readline(), which skips over
embedded ps documents.  The while loop, however, blindly reads to the
next %%EndDocument.  The difference shows up when an included ps
document includes a ps document, as the troublesome page does.  Here
is its structure:

$ egrep '^%%(Begin|End)Document' difficult-page.ps 
%%BeginDocument: /home/mackay/handbook/figs/inter/sc_a1.blank.ps
%%BeginDocument: EPSF
%%EndDocument
%%EndDocument
%%BeginDocument: /home/mackay/handbook/figs/inter/sc_a2b.blank.ps
%%BeginDocument: EPSF
%%EndDocument
%%EndDocument
%%BeginDocument: /home/mackay/handbook/figs/inter/sc_a3.blank.ps
%%BeginDocument: EPSF
%%EndDocument
%%EndDocument
%%BeginDocument: /home/mackay/handbook/figs/test_train.eps
%%EndDocument
%%BeginDocument: /home/mackay/handbook/figs/probability.eps
%%EndDocument
%%BeginDocument: /home/mackay/handbook/figs/error_bar_net.ps
%%EndDocument

So the first document includes another document.  With the patch, the
scanner will get to the first BeginDocument, then skip to the first
EndDocument, which matches the *second* BeginDocument.  But the second
BeginDocument gets skipped over, so the scanner should be quite
confused!

Now, I'm not sure whether the analysis above is totally right.  But
applying the patch above produces the bug, and reverting it removes
the bug.  And the behavior with the patch seems to be incorrect and
worth fixing.

Although perhaps the embedded ps file is part of the problem?  It was
created by gnuplot and is basically an EPS file surrounded by a few
lines to turn it into a regular PS file -- probably one is asking for
trouble by including it.  That section of 'several-pages.ps' begins:

%%BeginDocument: /home/mackay/handbook/figs/inter/sc_a2b.blank.ps
%!PS-Adobe-2.0
%%Creator: gnuplot
%%DocumentFonts: Courier
%%DocumentNeededFonts: Courier
%%Pages: (atend)
%%BoundingBox: 46 50 550 770
%%EndComments
/GnuTransform {
  90 rotate
  50 -550 translate
  2 2 scale
} def
%%EndProlog
%%Page: ? 1
gsave
GnuTransform
%%BeginDocument: EPSF
1 dict begin
/showpage {} def
%!PS-Adobe-2.0 EPSF-2.0
%%Creator: gnuplot
%%DocumentFonts: Courier
%%DocumentNeededFonts: Courier
%%BoundingBox: 0 0 360 252
%%EndComments

So gnuplot was doing something funky by making an EPS file and
wrapping a few lines of ps around it to handle the scaling and moving
the figure towards the center of the page.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-200503091
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages gv depends on:
ii  gs   8.01-5  Transitional package
ii  gs-afpl [gs] 8.14-3  The AFPL Ghostscript PostScript in
ii  gs-gpl [gs]  8.01-5  The GPL Ghostscript PostScript int
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libsm6   4.3.0

Bug#295679: mozilla-firefox: download manager "hangs" when file type helper application is missing

2005-03-14 Thread Anders Boström
> "ED" == Eric Dorland <[EMAIL PROTECTED]> writes:

 ED> * Anders Boström ([EMAIL PROTECTED]) wrote:
 >> > "ED" == Eric Dorland <[EMAIL PROTECTED]> writes:
 >> 
 ED> * Anders Bostr?m ([EMAIL PROTECTED]) wrote:
 >> >> Package: mozilla-firefox
 >> >> Version: 1.0+dfsg.1-2
 >> >> Severity: normal
 >> >> 
 >> >> The download of a file just hangs if the program associated with the
 >> >> file type is missing. No error message, it just hangs.
 >> >> 
 >> >> An error message and a dialog to select application would be good
 >> >> behavior.
 >> 
 ED> Can you give me a reproduction recipe? 
 >> 
 >> In a shell:
 >> 
 >> # touch /tmp/foo
 >> # chmod +x /tmp/foo
 >> 
 >> Then edit an association to a filetype (for an exmple ZIP) in firefox
 >> to open with /tmp/foo . Press OK.

 ED> Perhaps a silly question coming from me, but how did you edit the
 ED> association? It wasn't immediately obvious to me.
 
Edit->Preferences->Downloads->Select the File Type (ZIP)->Change
Action...->Open them in this application:->Change...->Select
/tmp/foo->Open->OK->OK

 >> In a shell:
 >> 
 >> # rm /tmp/foo
 >> 
 >> Then click on a link to a file of type ZIP in firefox => problem.
 >> 
 >> The real-world case of this is when you run firefox on several
 >> computers with the same home-directory (using NFS) and when some
 >> application (for an example mplayer) is installed on one computer but
 >> not on all other.

/ Anders



Bug#236874: acknowledged by developer (Check if the bug persists in the new version)

2005-03-14 Thread Andres Salomon
Ugh.  Please don't do that.  If you're going to ping bug submitters,
don't immediately close the bug as well.

That said, I don't particularly care if this bug stays open or not; it
was originally submitted as a joke.


On Sun, 2005-03-13 at 04:03 -0800, Debian Bug Tracking System wrote:
> This is an automatic notification regarding your Bug report
> #236874: xscreensaver: pacman screensaver plays game incorrectly,
> which was filed against the xscreensaver package.
> 
> It has been closed by one of the developers, namely
> Ralf Hildebrandt <[EMAIL PROTECTED]>.
> 
> Their explanation is attached below.  If this explanation is
> unsatisfactory and you have not received a better one in a separate
> message then please contact the developer, by replying to this email.
> 
> Debian bug tracking system administrator
> (administrator, Debian Bugs database)
> 
> Received: (at 236874-done) by bugs.debian.org; 13 Mar 2005 11:46:29 +
> From [EMAIL PROTECTED] Sun Mar 13 03:46:28 2005
> Return-path: <[EMAIL PROTECTED]>
> Received: from mail.charite.de [160.45.207.131] 
>   by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
>   id 1DARYB-0005nA-00; Sun, 13 Mar 2005 03:46:27 -0800
> Received: from postamt.charite.de (postamt-ext.charite.de [160.45.207.132])
>   (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
>   (Client did not present a certificate)
>   by mail.charite.de (Postfix) with ESMTP id DF8892209D1;
>   Sun, 13 Mar 2005 12:46:29 +0100 (CET)
> Received: by postamt.charite.de (Postfix, from userid 7945)
>   id 7D814220AA5; Sun, 13 Mar 2005 12:46:24 +0100 (CET)
> Date: Sun, 13 Mar 2005 12:46:24 +0100
> From: Ralf Hildebrandt <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED],
>   [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: Check if the bug persists in the new version
> Message-ID: <[EMAIL PROTECTED]>
> Mime-Version: 1.0
> Content-Type: text/plain; charset=us-ascii
> Content-Disposition: inline
> User-Agent: Mutt/1.5.6+20040907i
> X-Virus-Scanned: amavisd-new at charite.de
> Delivered-To: [EMAIL PROTECTED]
> X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
>   (1.212-2003-09-23-exp) on spohr.debian.org
> X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
>   version=2.60-bugs.debian.org_2005_01_02
> X-Spam-Level: 
> X-CrossAssassin-Score: 27
> 
> Current are 3.34 and/or 4.16, and since you filed the bug against an
> older version I'd like to ask you to verify if the bug persists in the
> new version as well.
> 
-- 
Andres Salomon <[EMAIL PROTECTED]>


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


Bug#299448: better integration with ifupdown

2005-03-14 Thread martin f krafft
Package: bluez-utils
Version: 2.15-1
Severity: wishlist

Apparently, dund supports the --msdun option, such that

  DUND_OPTIONS="--listen --persist --msdun call dun"

will cause it to pass "call dun" to pppd. At least it works.

It would be nice if this were augmented by a generic exec method, or
an ifupdown switch, such that one could call 'ifup interface' and
'ifdown interface' respectively. I am not sure what to do about the
blocking.

It would be nice to use ifupdown for this because of the connection
hooks of ifupdown.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing'), (98, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-wing
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages bluez-utils depends on:
ii  bluez-pin   0.24-1   Bluetooth PIN helper with D-BUS su
ii  dbus-1  0.23.2-3 simple interprocess messaging syst
ii  libbluetooth1   2.15-2   Library to use the BlueZ Linux Blu
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libusb-0.1-42:0.1.10a-6  userspace USB programming library
ii  module-init-tools   3.2-pre1-2   tools for managing Linux kernel mo
ii  modutils2.4.26-1.2   Linux module utilities
ii  sysvinit2.86.ds1-1   System-V like init

-- no debconf information

-- 
 .''`. martin f. krafft <[EMAIL PROTECTED]>
: :'  :proud Debian developer, admin, user, and author
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP subkeys? Use subkeys.pgp.net as keyserver!


signature.asc
Description: Digital signature


Bug#299449: xtide: this version very out of date now

2005-03-14 Thread Hamish
Package: xtide
Version: 2.6.4-1
Severity: wishlist

Hello,

it would be really nice to have an update for Xtide, the version in sid is from 
november 2003. There have been 9 releases since then.

Specifically access to the "About this station" is very useful, and only in 
v2.8+.
(The harmonics and datum for my local area are wrong in Xtide and I'm trying to 
debug..)

latest upstream release to date: XTide 2.8.2 (2005-01-06)


thanks,
Hamish


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

Versions of packages xtide depends on:
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libxaw7  4.3.0.dfsg.1-10 X Athena widget set library
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#290977: xfce4.2

2005-03-14 Thread Rimas Kudelis
Simon Huggins wrote:
I cannot provide any feedback for the packages from
http://the.earth.li/~huggie/xfce4/, however, i've been using similar
packages for sarge from http://www.os-works.com/debian/ on Ubuntu, and
they work nicely. Xfce4.2 is currently my favourite DE.
   

Ha.  So you're not even using Debian and you're not even testing my
packages?
If you want to actually help then you really should test the packages
from the.earth.li and feedback to the alioth project lists at:
http://alioth.debian.org/mail/?group_id=30247
 

Ha. So my first complaint is: you don't provide an xfce4 package. :)
Should I join any of those lists you mentioned?
Even more people saying they work fine or that they don't would be
useful.
 

Yeah, i know. However, some people might never test 4.2 until it's in 
unstable at least.

Would anyone please upload 4.2.(0|1) to at least experimental (I'd
love to see them in unstable though). I would test them on my sid box
at work. Maybe, others would do that too.
   

I can't currently as I don't have a key in the keyring yet.  I need to
sort this out but also probably need to think about getting a sponsor
for the existing packages.
 

How about the official xfce4 package maintainers?
RQ

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


Bug#299446: RFH: vim -- Vi IMproved - enhanced vi editor

2005-03-14 Thread Pierre Habouzit
Le Lun 14 Mars 2005 08:35, Norbert Tretkowski a écrit :
> Package: wnpp
> Severity: normal
>
> I'm looking for someone who wants to co-maintain vim, since I
> realized that I'm currently unable to take care of the package alone.
> There are a lot of open bugs that should be fixed, and there's also
> the upcoming vim 7.0 package which is a complete rewrite of the
> packaging. It should be easy to work on the package together, there's
> a project on alioth using subversion already.
>
> Drop me a mail if you're interested.
>
> The package description is:
>  Vim is an almost compatible version of the UNIX editor Vi.  Many new
>  features have been added: multi level undo, syntax highlighting,
>  command line history, on-line help, filename completion, block
> operations, folding, Unicode support, etc.

I am.

IANADD *yet* but I am quite near to be one (I'm the 5th from the end, in 
the DAM Approval waiting guys, was approved by joerg on Feb 15th, and 
only wait for my account creation)

I'm quite a big vim user, and believe I may help.
-- 
·O·  Pierre Habouzit
··O
OOOhttp://www.madism.org


pgpNFdZmQ8nYb.pgp
Description: PGP signature


Bug#293194: Same here with kernel-image-2.6.8-2-k7

2005-03-14 Thread Olivier Berger
Package: kernel-image-2.6.8-2-k7
Version: 2.6.8-13
Followup-For: Bug #293194

Hi.

I experienced the same problem.

Had already reported this here : 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=272233&msg=4 but I think it 
was not reported in the right place, as it is closer from your report, I think.

Anyway, I tried and get some debug information on what's happening at boot.

I added a set -x in /etc/hotplug/usb.rc and it appears that the script hangs on 
a :
grep -q -i bus /proc/bus/usb/devices

This very same problem seems to be reported on various places, but I couldn't 
find any definitive solution provided.

Several links that may be of interest though : 

http://sysadminforum.com/showthread.php?s=026cf0eaa04824d8e2a7205bf4beb535&p=459910&mode=threaded#post459910

Also maybe the same problem and a suggested correction patch :
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=277835

The patch : 
http://marc.theaimsgroup.com/?l=linux-usb-devel&m=109241303306477&w=2 (which 
I've hadn't time to test yet).

And https://bugzilla.redhat.com/beta/show_bug.cgi?id=135171 maybe ?

FYI, it seems to be working much better if my Philips USB webcam and my 
firewire external hard-disk are unplugged at boot time.

Hope this helps.

I'll try and give the patch a try to see if it helps.

Best regards,

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages kernel-image-2.6.8-2-k7 depends on:
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  fileutils 5.2.1-2The GNU file management utilities 
ii  initrd-tools  0.1.77 tools to create initrd image for p
ii  module-init-tools 3.2-pre1-2 tools for managing Linux kernel mo

-- no debconf information


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



Bug#296448: ITP: poc -- MP3 streaming server and tools

2005-03-14 Thread Matthias Klose
Joachim Breitner writes:
> Package: wnpp
> Severity: wishlist
> Owner: Joachim Breitner <[EMAIL PROTECTED]>
> 
> * Package name: poc
>   Version : 0.4.
>   Upstream Author : Manuel Odendahl <[EMAIL PROTECTED]>
> * URL : http://www.bl0rg.net/software/poc/
> * License : BSD
>   Description : MP3 streaming server and tools
> 
> poc is a suite of MP3 tools and MP3 streaming programs. It can stream
> MP3s over HTTP, RTP (RFC 2250 and RFC 3119) and a special protocol to
> enable the use of Forward Error Correction to protect the MP3 stream
> against packet loss. It can also stream OGGs over HTTP.
> 
> In addition to the streaming programs, poc contains two MP3 tools:
> mp3cue and mp3cut. mp3cue can cut a big MP3 file according to a
> tracklisting contained in a .cue file. mp3cut can split and
> concatenate MP3 files according to time slices given on the command
> line.

Please consider another package name, woody shipped with 'poc', the
portable objective-c compiler, which was recently removed from
sarge. IMO a not so good idea to package something completely
different under the same name.


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



Bug#299242: ITP: ha-prosper -- improved LaTeX class for writing transparencies

2005-03-14 Thread Frank Küster
Josselin Mouette <[EMAIL PROTECTED]> schrieb:

> Le dimanche 13 mars 2005 à 23:10 +0100, Michael Prokop a écrit :
>
>> And TeXciting might never be released, quoting Hendri - the author
>> of ha-prosper:
>> 
>> | I have reconsidered whether it will be possible
>> | to finish this project. Taking into account also
>> | the work that I'm doing on other packages and
>> | my involvement in LaTeX3, I conclude that it will
>> | unfortunately be very unlikely, that I will ever
>> | finish that project.
>> 
>> See his posting on ha-prosper-mailinglist for more details:
>> http://listserv.surfnet.nl/scripts/wa.exe?A2=ind0503&L=ha-prosper&F=&S=&P=777
>> 
>> So in my opinion it would be useful to provide a debian package of
>> ha-prosper.
>
> If TeXciting isn't likely to be released soon, that makes the point of
> making a separate package from prosper moot, doesn't it?

One way or the other, the old prosper style files should be available in
Debian, be it because ha-propser has its own package, or because both
prosper and ha-prosper can be shipped in one updated package.  None of
them is in teTeX in sarge, nor in teTeX-3.0.

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




Bug#299451: please only clamp MSS on affected connections

2005-03-14 Thread martin f krafft
Package: pppoeconf
Version: 1.1-0.1
Severity: minor

From what I can tell, MSS clamping is only needed for packets
leaving a the system through a PPPoE tunnel. If I select to clamp
the MSS for a connection in pppoeconf, /etc/ppp/ip-up.d/0clampmss is
put in place, which causes *all* packets to be clamped to the MSS. 

Please use the -o option to iptables to restrict the rule to packets
leaving the PPPoE interface.

Also, please remove the rule again when the interface is brought
down.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing'), (98, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-wing
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages pppoeconf depends on:
ii  gettext-base0.14.1-10GNU Internationalization utilities
ii  ppp 2.4.2+20040428-6 Point-to-Point Protocol (PPP) daem
ii  whiptail [whiptail-prov 0.51.6-20Displays user-friendly dialog boxe

-- no debconf information

-- 
 .''`. martin f. krafft <[EMAIL PROTECTED]>
: :'  :proud Debian developer, admin, user, and author
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP subkeys? Use subkeys.pgp.net as keyserver!


signature.asc
Description: Digital signature


Bug#299450: dak: Small problems with debconf templates

2005-03-14 Thread Clément Stenac
Package: dak
Severity: minor

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

There are a few problems with your debconf templates:

> msgid "/opt/dak"
This string should not be made translatable

> "Makes life easier"
Ok, dak is mainly a package for geeks, but please make full sentences anyway :)

> the default is vor /opt/dak
I guess there is a mistake here.

> msgid "localhost"
This string should not be translatable

> msgid "What is the hostname for the archive host?"
> msgid "The name of your archive."

Please rephrase these questions so that they make a prompt (please refer
to http://people.debian.org/~bubulle/dtsg/dtsg.txt):

"Hostname for the archive host :"
"Name of your archive :"
something like that

> so your Users see what it is about.
Is the capital U needed ?


Could you please change your templates, run debconf-updatepo and send me
the updated templates so I can adapt the translation and send it back to
you before the next upload ?

Regards,

- -- 
Zorglub
Clément Stenac

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

iD8DBQFCNUh+rSbtgqbIBbkRAuGAAJ95Alp0ocPgB7cErVfOdU/9H1si4gCgh6Wn
F9NBr3X6RzCoMICsbFHvACU=
=jvbl
-END PGP SIGNATURE-



Bug#136872: vim: cvs commit file recognition not working

2005-03-14 Thread Igor Stroh
Hi Joey,
it seems like problem has been dealt with the mean time, can
you confirm that this bug has been fixed?
Cheers,
Igor
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#272233: Please disregard my previous followup

2005-03-14 Thread Olivier Berger
Hi.

The issue I reported in the previous followup to this report
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=272233&msg=4) is
probably not related to the same issue. Please disregard it.

It concerns another report (#293194) and I added some followup that may help
others facing the same problem :
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=293194&msg=11

Sorry about that misplaced report.

Best regards,
-- 
Olivier BERGER (OpenPGP: 1024D/B4C5F37F)
APRIL (http://www.april.org) - Vive python (http://www.python.org)
Pétition contre les brevets logiciels : http://petition.eurolinux.org



Bug#287160: Reverse patch for 4.3.9-2

2005-03-14 Thread C.Y.M
Matthew Palmer wrote:
On Fri, Mar 11, 2005 at 11:32:11AM -0800, C.Y.M wrote:
The trouble lies within this patch.  I am trying to narrow it down as much 
as possible.  The first section of the code that changed looks like this:

-   if ((rv = check_mysql_auth_require(user, t, r))
-   != HTTP_UNAUTHORIZED)
-   {
-   return rv;

That looks perfectly reasonable.  I can't see any issues with the parameters
to this function, either.
Throw the attached single-line patch in and rebuild.  An extra debug line
should pop out -- that's important.
Thanks for the debug patch.  I have applied it and reproduced the error, but I 
do not get any new debug info in the log.  I am running apache2 in debug mode.

grep "mysql_check_group complete" /var/log/apache2/* <-- no results
[Mon Mar 14 00:12:22 2005] [info] Initial (No.1) HTTPS request received for 
child 1 (server my.website.net:443)
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1482): Handling an 
authentication request for section /var/www/
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1523): Starting basic user 
auth for [test_user] in /var/www/, child pid 29904
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1338): Constructing password 
collection query with passfield=[passwd], table=[user_info], 
userfield=[test_user], where_clause=[]
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1192): sec->dbh in /var/www/ is
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1199): Ordinary query
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1216): Running query: 
[SELECT passwd FROM user_info WHERE username='test_user']
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1298): Checking with SHA1Sum
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1300): Auth succeeded
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1442): Making group query 
with auth_table=[user_group], auth_user_field=[username], esc_user=[test_user], 
esc_group=[adm], auth_group_field=[groups], where_clause=[]
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1449): Group query created; 
[SELECT count(*) FROM user_group WHERE username='test_user' and 
FIND_IN_SET('adm',groups)]
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1192): sec->dbh in /var/www/ is
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1199): Ordinary query
[Mon Mar 14 00:12:22 2005] [debug] mod_auth_mysql.c(1216): Running query: 
[SELECT count(*) FROM user_group WHERE username='test_user' and 
FIND_IN_SET('adm',groups)]
[Mon Mar 14 00:12:22 2005] [crit] [client 10.1.1.66] configuration error: 
couldn't check access.  No groups file?: /adm/, referer: https://my.website.net/
[Mon Mar 14 00:12:22 2005] [info] Connection to child 1 closed with unclean 
shutdown(server my.website.net:443, client 10.1.1.66)

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


Bug#275024: munin-node: initializing plugins hangs forever when installing in a debian-edu environment

2005-03-14 Thread Tore Anderson
reassign 275024 perl-modules
retitle 275024 Net::Domain::hostfqdn() pointlessly looks in DNS
quit

* Tore Anderson

 >  I am now fairly confident that this is a bug / misdesign of
 > Net::Domain and that it should therefore be reassigned to
 > perl-modules.  I'll await your feedback before doing so, though.

* Finn-Arne Johansen

 > Seems correct. You reassign then  ?

  Yes.  Brendan:  An executive summary of this bug is that
 Net::Domain::hostfqdn() seems to insist on looking in DNS even though
 it has everything it needs in /etc/hosts.  Also, what it looks for in
 DNS seems to be a few more or less bizarre concatination of (parts of)
 the hostname as returned by uname(2) and the search domains - sometimes
 several at the same time.

  It does however return the correct fully-qualified host name in the
 end.  The submitter had problems installing "munin-node" as part of
 Debian-Edu, as the DNS server isn't configured properly when munin-node
 is configured.  It calls the Net::Domain::hostfqdn() function quite a
 lot of times, and the unconfigured DNS server ends up waiting for some
 timeout every time the function asks the superfluous queries.

  Finn-Arne:  I will discuss with upstream whether we should try a
 method such as

  perl -MSys::Hostname -e 'print((gethostbyname(hostname()))[0],"\n")'

  before falling back on Net::Domain.  This seems to work better, and
 mimics more closely the behaviour of "/bin/hostname --fqdn" (no DNS
 lookups).  Not sure if that will make it into the 1.2.x stable branch,
 though, which at the moment seems the most likely to make it into
 Sarge.  (On the other hand, 1.0.x did so for a long time as well...)

Thanks,
-- 
Tore Anderson


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



Bug#136020: acknowledged by developer (Re: mozilla-browser: password expiry time can be changed by anyone)

2005-03-14 Thread Francesco Potorti`
The original bug report that I submitted said:

The password expiry time, which decides how much time should pass before
asking you the master password again, can be changed without entering
the master password itself.  This is a serious security hole, because I
can set it to 2 minutes and go away from the room.  Then someone gets
in, changes the time to 1000 minutes, and the next time they can use my
master password without me noticing anything.

and you closed it with:

>Lock your session.
>If you left your session open someone would be able to put a keylogger
>to get your password.

I think this answer does not make sense.  If you suppose that you are
always in front of your screen or else you lock it, then the password
expiry time has no meaning.  The only meaning I can see for the
password expiry time is that, after some time you don't use your
passwords, you are sure that your password wallet is locked.  But, given
that the expiry time can be changed without entering the master
password, the whole purpose of the expiry time is moot.

If your answer is good, then that's a good reason to remove the password
expiry time feature at all.

Please reopen this bug.


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



Bug#299426: Upstream URL outdated

2005-03-14 Thread Mark Wielaard
Hi,

On Mon, 2005-03-14 at 02:18 +0100, Jeroen van Wolffelaar wrote:
> Package: gjdoc
> Version: 0.7.2-2
> Severity: normal
> 
> The copyright file should refer to the upstream location/website where
> to retrieve upstream versions. However, you refer to
> http://savannah.gnu.org/cvs/?group=cp-tools, which is disabled. When
> searching for the project, it seems that this project has been merged
> with classpath.

Yes, we (GNU Classpath hackers) merged tools and core libraries last
year. We still make distinct releases. gjdoc is the most actively
maintained tool. The official homepage is
http://www.gnu.org/software/classpath/cp-tools/

> On http://ftp.gnu.org/gnu/classpath/ however, the
> latest upstream version is 0.7.1. Where can users download 0.7.2, or
> even 0.7.3?

Sorry I was on vacation so I couldn't do an official upload yet.
We noticed some small buglets in 0.7.2 and are preparing an official
0.7.3 today or tommorrow. But the 0.7.2 release did fix one big nasty
bug which we wanted to push out asap. Preliminary releases can be found
at Julian Scheid site http://cpx.sektor37.de/

Cheers,

Mark


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


Bug#297770: Trying to link motion against ffmpeg failes...

2005-03-14 Thread Sam Hocevar
On Mon, Mar 14, 2005, Frederik Dannemare wrote:

> Thanks a bunch. Just the info I needed. That brings me down to:
> 
> i386-linux-gcc  -o motion motion.o conf.o draw.o video.o track.o alg.o
> event.o picture.o  rotate.o netcam.o netcam_wget.o webcam.o ffmpeg.o
> xmlrpc-httpd.o control.o -lm -lavcodec -lvorbis -lvorbisenc -ldts -la52
> -lz -lm -lpthread -ljpeg -L/usr/lib -lavformat -lavcodec -lm -lz
> -L/usr/lib -lxmlrpc -lxmlrpc_xmlparse -lxmlrpc_xmltok  -L/usr/lib
> -lmysqlclient -lz -L/usr/lib -lpq
> /usr/lib/libavcodec.a(dtsdec.o)(.text+0x33d): In function
> `dts_decode_frame':
> : undefined reference to `dts_frame'

   Mmmh, try to add an additional -ldts after the last -lavcodec. And I
think you can remove the first -lavcodec.

   The reason is that -lavformat uses avcodec symbols that are not
used within motion, so these symbols are only linked in at the second
-lavcodec occurrence. And since these new symbols probably use dts
symbols, it's too late because the -ldts is behind.

Sam.
-- 
Sam Hocevar <[EMAIL PROTECTED]> 
 Software should be free -- http://www.debian.org/
 Media access should be free -- http://www.videolan.org/
  Knowledge must be free -- http://www.wikipedia.org/


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



Bug#299452: exim4-daemon-light: permission denied while sending local email with Maildir

2005-03-14 Thread Giuseppe Sacco
Package: exim4-daemon-light
Version: 4.44-2
Severity: normal

I had a perfectly working system and then decided to try Maildir instead of the 
standard
mbox file format.
I followed the instructions in README.Maildir and exim restarted working very 
well.
Every email received via SMTP is correctly accepted and delivered but local 
emails
are giving a permission denied error. Here an example when I send an email to 
myself:

[EMAIL PROTECTED]:~/debian$ strace -o /tmp/mail.log -f -s128 mail -e [EMAIL 
PROTECTED] -s test
line one
line two
.
Cc: 
2005-03-14 09:15:38 1DAkji-0007JF-AE Failed to create spool file 
/var/spool/exim4/input//1DAkji-0007JF-AE-D: Permission denied
2005-03-14 09:15:38 1DAkji-0007JF-AE Failed to create spool file 
/var/spool/exim4/input//1DAkji-0007JF-AE-D: Permission denied
2005-03-14 09:15:38 1DAkji-0007JF-AE Failed to create spool file 
/var/spool/exim4/input//1DAkji-0007JF-AE-D: Permission denied
Can't send mail: sendmail process failed with error code 1
[EMAIL PROTECTED]:~/debian$

Permissions are like this:
[EMAIL PROTECTED]:~$ ls -ld /var/spool/exim4/input/ /var/spool/exim4/ 
/usr/sbin/exim4 /usr/sbin/sendmail
Password: 
drwxr-x---  5 Debian-exim Debian-exim 1024 2005-03-14 06:37 /var/spool/exim4/
drwxr-x---  2 Debian-exim Debian-exim 3072 2005-03-14 09:28 
/var/spool/exim4/input/
-rwsr-xr-x  1 root root 665528 2005-01-27 13:57 /usr/sbin/exim4
lrwxrwxrwx  1 root root  5 2005-02-27 15:37 /usr/sbin/sendmail -> exim4
[EMAIL PROTECTED]:~$


Bye,
Giuseppe

-- Package-specific info:
Exim version 4.44 #1 built 27-Jan-2005 13:55:35
Copyright (c) University of Cambridge 2004
Berkeley DB: Sleepycat Software: Berkeley DB 4.2.52: (December  3, 2003)
Support for: iconv() IPv6 GnuTLS
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dsearch nis 
nis0 passwd
Authenticators: cram_md5 plaintext
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore autoreply lmtp pipe smtp
Fixed never_users: 0
Configuration file is /var/lib/exim4/config.autogenerated
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'

dc_eximconfig_configtype='smarthost'
dc_other_hostnames='eppesuigoccas.homedns.org'
dc_local_interfaces='0.0.0.0'
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets='192.168.2.0/26'
dc_smarthost='mail.tin.it'
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname='false'
dc_mailname_in_oh='true'
dc_localdelivery=maildir_home
mailname:eppesuigoccas.homedns.org

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-k7
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to it_IT.utf8)

Versions of packages exim4-daemon-light depends on:
ii  exim4-base  4.44-2   support files for all exim MTA (v4
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libdb4.24.2.52-18Berkeley v4.2 Database Libraries [
ii  libgnutls11 1.0.16-9 GNU TLS library - runtime library
ii  libpcre34.5-1.1  Perl 5 Compatible Regular Expressi

-- no debconf information


mail.log.gz
Description: Binary data


Bug#159259: acknowledged by developer (Re: vim-perl: Using $curbuf causes vim to die)

2005-03-14 Thread Joergen Haegg
> 
> I'm closing this bug, it's unreproducible and I got no answer to my
> question from the submitter.

That question must have drowned somewhere in the spam flood, sorry about
that.  And because of the bug I've moved away from vim-perl and
is now using the vim native scripting language instead.
Therefor I don't know if the bug still exists.

So it's ok by me closing the bug.



Bug#297504: Can't build avr-libc from source

2005-03-14 Thread Hakan Ardo
On Tue, Mar 08, 2005 at 06:39:41PM +0100, Santiago Vila wrote:
> 
> My system is unstable as of today.
> Is there a missing "build-depends: netpbm" or something?

Probably, I'll look into it...

-- 
Hakan Ardo


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



Bug#299453: evince: cannot set page range while printing

2005-03-14 Thread Francesco Potorti`
Package: evince
Version: 0.1.4-1
Severity: normal

The printing dialog box, in the first tab, has a title for "Range", but
there is no entry box to actually set the page range.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.30-pre2-pr-hrt-1kHz-1
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set 
to C)

Versions of packages evince depends on:
ii  gconf2   2.8.1-4 GNOME configuration database syste
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libaudiofile00.2.6-5 Open-source version of SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-1 The Bonobo UI library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libesd0  0.2.35-2Enlightened Sound Daemon - Shared 
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libgconf2-4  2.8.1-4 GNOME configuration database syste
ii  libgcrypt11  1.2.0-4 LGPL Crypto library - runtime libr
ii  libglade2-0  1:2.4.2-1   library to load .glade files at ru
ii  libglib2.0-0 2.6.2-1 The GLib library of C routines
ii  libgnome-keyring00.4.1-1 GNOME keyring services library
ii  libgnome2-0  2.8.1-2 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeprint2.2-0   2.8.2-1 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0 2.8.2-2 GNOME 2.2 print architecture User 
ii  libgnomeui-0 2.8.0-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.4-2 The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-9GNU TLS library - runtime library
ii  libgpg-error01.0-1   library for common error values an
ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user interface 
ii  libhowl0 0.9.8-2 Library for Zeroconf service disco
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  liborbit21:2.10.5-0.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libtasn1-2   0.2.10-3Manage ASN.1 structures (runtime)
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxml2  2.6.16-3GNOME XML library
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#299348: libcurl3-dev: linking fails when using `curl-config --libs` flags.

2005-03-14 Thread Domenico Andreoli
hi David,

On Sun, Mar 13, 2005 at 02:22:06PM -0500, David Roundy wrote:
> 
> For some reason (which I haven't tracked down), the latest libcurl3-dev has
> broken the curl behavior.  Below is the error message I get.  A brief
> googling suggests that 'tld_strerror' and 'idna_strerror' ought to be in
> libidn.  Might it be that libcurl is compiled with an ABI-incompatible
> version of libidn11-dev?

this is a known issue of libidn, please see bug #299319.

i'm going to make a new upload, this bug should disappear in few days.

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#299455: svn-workbench: FTBFS: make[1]: python: Command not found

2005-03-14 Thread Kaare Hviid
Package: svn-workbench
Version: 1.0.0-1
Severity: serious


svn-workbench 1.0.0-1 suffers FTBFS in pbuilder:

/usr/bin/make -C WorkBench/Source -f linux.mak wb_version.py \
PYTHON=python \
PYCHECKER_DIR=/tmp/buildd/svn-workbench-1.0.0 \
MEINC_INSTALLER_DIR=/tmp/buildd/svn-workbench-1.0.0
make[1]: Entering directory `/tmp/buildd/svn-workbench-1.0.0/WorkBench/Source'
python ../Builder/brand_version.py ../Builder/version.info 
wb_version.py.template
make[1]: python: Command not found
make[1]: *** [wb_version.py] Error 127
make[1]: Leaving directory `/tmp/buildd/svn-workbench-1.0.0/WorkBench/Source'
make: *** [build-stamp] Error 2
pbuilder: Failed autobuilding of package


Adding a Build-Depends on python solves this.

-ukh


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



Bug#299426: Upstream URL outdated

2005-03-14 Thread Michael Koch
On Mon, Mar 14, 2005 at 09:39:04AM +0100, Mark Wielaard wrote:
> Hi,
> 
> On Mon, 2005-03-14 at 02:18 +0100, Jeroen van Wolffelaar wrote:
> > Package: gjdoc
> > Version: 0.7.2-2
> > Severity: normal
> > 
> > The copyright file should refer to the upstream location/website where
> > to retrieve upstream versions. However, you refer to
> > http://savannah.gnu.org/cvs/?group=cp-tools, which is disabled. When
> > searching for the project, it seems that this project has been merged
> > with classpath.
> 
> Yes, we (GNU Classpath hackers) merged tools and core libraries last
> year. We still make distinct releases. gjdoc is the most actively
> maintained tool. The official homepage is
> http://www.gnu.org/software/classpath/cp-tools/
> 
> > On http://ftp.gnu.org/gnu/classpath/ however, the
> > latest upstream version is 0.7.1. Where can users download 0.7.2, or
> > even 0.7.3?
> 
> Sorry I was on vacation so I couldn't do an official upload yet.
> We noticed some small buglets in 0.7.2 and are preparing an official
> 0.7.3 today or tommorrow. But the 0.7.2 release did fix one big nasty
> bug which we wanted to push out asap. Preliminary releases can be found
> at Julian Scheid site http://cpx.sektor37.de/

This was prelimiary release ? Julian told me it is final. Good that
Jeroen has not uploaded it to debian yet.

I really like miscommunication.


Sigh,

Michael
-- 
Java Trap: http://www.gnu.org/philosophy/java-trap.html


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



Bug#299189: postgresql: configure script fails without explanation

2005-03-14 Thread Robert Hunter
On Sun, Mar 13, 2005 at 01:38:37PM +0100, Martin Pitt wrote:
> Robert Hunter [2005-03-13  1:21 +1300]:
> > I'm upgrading an unused installation and was suprised to
> > see the following:
> > 
> > Setting up postgresql (7.4.7-3) ...
> > dpkg: error processing postgresql (--configure):
> >  subprocess post-installation script returned error exit status 10
> >  Errors were encountered while processing:
> >   postgresql
> >   
> I've never seen this; can you please look which debconf version you have 
> (dpkg -s debconf) and please also try to do
> 
>   $ sudo su 
>   # export DEBCONF_DEBUG=developer
>   # bash -x /var/lib/dpkg/info/postgresql.postinst configure
> 
> This should produce debconf debugging output, maybe this reveals the
> bug.
The installed debconf is version: 1.4.22
The debugging output from the command listed abpve looks pretty
straightforward for the most part (I've saved the full output
and I can attach it if needed).

However, this part (right at the end) looks interesting:

debconf (developer): starting /var/lib/dpkg/info/postgresql.postinst
configure
debconf (developer): <-- FSET ucf/changeprompt seen false
debconf (developer): --> 10 ucf/changeprompt doesn't exist

I'd never heard of ucf before, but it seems that running
it from the commandline (in the same way that postinst
calls it) shows the same behaviour: exits with return code 10,
and no output.

A bug in ucf? Interesting that of all the upgrades, only configuring
postgres has triggered it.

Any ideas?

(Thanks for your time, by the way, and have a fantastic day!)

-- 
Clothes make the man.  Naked people have little or no influence on society.
-- Mark Twain


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



Bug#299446: RFH: vim -- Vi IMproved - enhanced vi editor

2005-03-14 Thread Matthijs Mohlmann
Norbert Tretkowski wrote:
Package: wnpp
Severity: normal
I'm looking for someone who wants to co-maintain vim, since I realized
that I'm currently unable to take care of the package alone. There are
a lot of open bugs that should be fixed, and there's also the upcoming
vim 7.0 package which is a complete rewrite of the packaging. It
should be easy to work on the package together, there's a project on
alioth using subversion already.
Drop me a mail if you're interested.
The package description is:
 Vim is an almost compatible version of the UNIX editor Vi.  Many new
 features have been added: multi level undo, syntax highlighting,
 command line history, on-line help, filename completion, block operations,
 folding, Unicode support, etc.
-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-686
Locale: LANG=POSIX, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Hi,
I'm interested in co-maintaining this package. Vim is my favorite editor
on all my servers so it should not be a big problem to fix bugs i think.
I'm not yet DD so i don't have upload rights.
Regards,
Matthijs Mohlmann


signature.asc
Description: OpenPGP digital signature


Bug#287160: Reverse patch for 4.3.9-2

2005-03-14 Thread Matthew Palmer
On Mon, Mar 14, 2005 at 12:27:10AM -0800, C.Y.M wrote:
> Thanks for the debug patch.  I have applied it and reproduced the error, 
> but I do not get any new debug info in the log.  I am running apache2 in 
> debug mode.

That's... odd.  Once "Running query" gets printed, and "Query maybe-failed
isn't printed, you're out the bottom of safe_mysql_query, and then your
options for the next log message are one of "Group query failed", "Store
result failed", or "mysql_check_group complete".  I don't suppose you might
not have installed the compiled module correctly?  Perhaps change
AUTH_MYSQL_VERSION at the top to something unique, so you can check that
version string appears in the error log when you restart apache.

- Matt


signature.asc
Description: Digital signature


Bug#237661: acknowledged by developer (Check if the bug persists in the new version)

2005-03-14 Thread Roberto Gordo Saez
On Sun, Mar 13, 2005 at 04:04:06AM -0800, Debian Bug Tracking System wrote:
> Current are 3.34 and/or 4.16, and since you filed the bug against an
> older version I'd like to ask you to verify if the bug persists in the
> new version as well.

It does, and it is very simple to reproduce: you only need to open
kcontrol, select "Appearance & Themes -> Screen Saver", select
XScreensaver and click on "Test". It does not work.

When kcontrol is launched from a terminal, the following is shown:

Unknown parameter: -window-id
Unknown parameter: 27263801
Usage: ./xscreensaver.kss -install|-setup|-desc [-delay num] [-lock] [-nice num]
[...]

It seems to happen only with Debian KDE. Please note that although this
bug has been reassigned to xscreensaver, i still think that the bug is
somewhere in KDE (kscreensaver/kcontrol...).

As Jamie Zawinski has previously pointed, xscreensaver.kss has been
removed from newer versions of xscreensaver, so i think that this bug can
be "fixed" by removing the option from kcontrol, which is better than
a broken one, IMHO.


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



Bug#299457: xmlto: improper parsing of replaceable groups

2005-03-14 Thread Hendrik Sattler
Package: xmlto
Version: 0.0.18-5
Severity: normal


Hi,

upon creating a docbook file for a manpage (refentry), xmlto fails to
properly translate the following situation within a cmdsynopsis:
 
--number

  number
  name

  
I think, the intention is clear: it should be translated to:
  --number [number|name]
and docbook2x does this. xmlto creates the following:
  --number [numbername]
It just "forgets" the '|'.

A groups with arg is translated properly.

This fails with both, target man and target html-nochunks.

If this bug should be for another package than xmlto, please reassign it
to the proper one, thanks.

HS

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xmlto depends on:
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  docbook-xml 4.3-1.1  standard XML documentation system,
ii  docbook-xsl 1.66.1-1 stylesheets for processing DocBook
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpaper-utils  1.1.14-3 Library for handling paper charact
ii  libxml2-utils   2.6.16-3 XML utilities
ii  sgml-base   1.26 SGML infrastructure and SGML catal
ii  xsltproc1.1.12-5 XSLT command line processor

-- no debconf information


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



Bug#298800: attempt to kill apache in shutdown unnecessary

2005-03-14 Thread Alexis Sukrieh
* Renan Melhado ([EMAIL PROTECTED]) disait :
> When I kill apache processes at the system with "killall apache" 
> command, the apache is killed, obviously. But when shutdown the system, 
> it attempts to kill apache again, and obviosly, it fails, since the 
> apache was already killed in the past.

I would say that killing apache "by hand" is not the good way to stop it.
Just use `/etc/init.d/apache stop` to stop apache and everything will
work as expected.

Generally, using `kill` to stop something should not be used, moreover if
a startup script exists.

Regards.

Alexis.

-- 
  Alexis Sukrieh <[EMAIL PROTECTED]>
   http://www.sukria.net

« Quidquid latine dictum sit, altum sonatur. » 
Whatever is said in Latin sounds profound.



Bug#299288: rhythmbox: The iPod preferences tab isn't working

2005-03-14 Thread Loïc Minier
forwarded 299288 http://bugzilla.gnome.org/show_bug.cgi?id=170289
severity 299288 minor
thanks

Hi,

On Sun, Mar 13, 2005, Daniel van Eeden wrote:
> 
> Edit->Preferences->iPod is exactly the same as
> Edit->Preferences->Library

 Thanks for your report, I've sent the bug to the upstream developers,
 where you might want to subscribe to the discussion:
 

   Regards,
-- 
Loïc Minier <[EMAIL PROTECTED]>
"Neutral President: I have no strong feelings one way or the other."




Bug#299278: French programs translation

2005-03-14 Thread Christian Perrier

> > -it is wrongly named : you should use fr.po rather than fr_FR.po and
> >I don't really understand why it was renamed that way as former
> >versions were correct in that matter
> 
> Well, fr_FR is supposed to be french french, and using fr.po would
> close the door to fr_CA or whatever (even if there are little chances
> that someone spend time for do these translations).
> 
> In many packages packages got such names.
> 
> In think we switched to such name after:
> 
> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=200861

The case for Portuguese is different. It is established practice that
Portuguese spoken in Portugal and former colonies is different from
Brazilian Portuguese and translation use the country variant to
distinguish between both.

However, for French, the language is the very same (at least according
to standardization issues) among all french-speaking countries. The
debian-l10n-french team is a team of francophones users and so are all
french localisation teams I'm aware of in free software. So, it's very
likely that you'll never get any fr_BE, fr_CA, fr_CH, fr_LU translations.

The benefit bringed by possibles variant is highly counterbalanced by
the missing translation for not covered locales.

By using fr_FR.po, you're indeed limiting your french translation to
French users. Users from Quebec, Belgium, Switzerland and Luxembourg
will just get English.

For Debian-specific translation, the current policy, blessed by
debian-i18n is using language codes only with a few currently
"registered" exceptions:

-pt vs pt_BR
-zh_CN vs zh_TW (Chinese is a special case where one has to
distinguish between two written forms)
-very recently : pa_IN vs pa_PK for Punjabi which has two written
forms

The latter two are indeed tricks as country modifiers should indeed be
used, but this is a very well established practice nowand, before
you ask, no this is not written in any policy document.

Common sense may however be applied here : as long as you keep having
a fr_FR translation, you depriving other french speaking users a good
French translation. If, in the future, you feel for the need of
variants, you can still keep a fr.po file and add fr_FR, fr_CA,
whateverwhich all have to be maintained.*

Would you indeed imagine renaming the es.po file to es_ES.po and then
revet your Latin American users to English. I guess you don't want this.

> > Anyway, you'll find attached a new version of the translation
> >file. I used there the usual translations used by the Debian french
> >localisation team, which sometimes involves some rewrites (use of
> >non-breaking spaces when appropriate, use of "superutilisateur",
> >avoid using first person, s/bug/bogue and so on).
> 
> Well, I'm quite confident in my understanding of french typography
> rules (in particular, I doubt someone would be able to catch
> errouneous ponctuation in what I write in French - that's the kind of
> mistakes I simply do not do, unlike grammar mistakes and alike).

Well, then you probably want to check spaces before colons in the
original fr_FR.po files..:-)

> 
> If there's first person usage, I think a bug should be posted against
> the whole package (unless this first person usage exists only in the
> translation). Where did you find it?

In the French translation : "nous ne pouvons obtenir des données
valables" vs "we cannot find".


Who is "we" ? :-)

Here, I very often strongly discourage the use of first person in
either original strings, or translations. Software documentation, user
interaction and so on should be regarded with the same writing style
than publications : be neutral and factual

Yes, this should certainly trigger a bug report for the English
strings as well.

> 
> About superutilisateur instead of "root user", why not. But it would
> be more precisely a translation of superuser... because in any cases,
> the root user is the root user, called root in French... 
> Anyway, I updated the string to catch this suggestions.

The French l10n team has established this practice. For instance, this
is how the installer prompt for the root password. The general
rationale is avoiding jargon as much as possible.

> 
> About bug, I do not really want to translate it "bogue" (ugly and
> ununderstandable for a french, unless he guess from what he knows of
> the similar english word - that clearly defeats translation purpose)
> but anomalie. And there are already in debian packages that use this
> translation (like pan).  

Well, I'm afraid to say that Debian packages are not always consistent
with regard to French translations..the only exception being the
packages where translations are handleed by the maintainer and not the
l10n team.

The team work not only brings manpower : it also brings a guarantee
for consistency all along localisation work, which strongly gives
users a feeling of professionalismthis is why I would insist for
"bogue" even if I happen to say "bug" quite often. 

> I'm checking a diff wit

Bug#299460: udev should create a symlink from vbi0 to vbi to cooperate with scantv

2005-03-14 Thread Helmut Grohne
Package: udev
Version: 0.054-2
Severity: minor

udev created /dev/vbi0 on probing the module correctly. Unfortunately
the corresponding symbolic link to /dev/vbi which is needed by
applications like scantv is missing. I therefore suggest to add a line
to one of the rules files. It might look like this:

NAME="vbi0", SYMLINK="vbi"

-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 4
lrwxrwxrwx  1 root root  19 2004-12-05 10:39 cd-aliases.rules -> 
../cd-aliases.rules
-rw-r--r--  1 root root 145 2004-12-29 15:52 twinmos.rules
lrwxrwxrwx  1 root root  13 2004-10-24 13:04 udev.rules -> ../udev.rules

-- /sys/:
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda3/dev
/sys/block/hda/hda5/dev
/sys/block/hda/hda6/dev
/sys/block/hda/hda7/dev
/sys/block/hda/hda8/dev
/sys/block/hda/hda9/dev
/sys/block/hdb/dev
/sys/block/hdc/dev
/sys/block/hdd/dev
/sys/block/hde/dev
/sys/block/hde/hde1/dev
/sys/block/hde/hde2/dev
/sys/block/hde/hde3/dev
/sys/block/hde/hde5/dev
/sys/block/hde/hde6/dev
/sys/block/hde/hde7/dev
/sys/block/hde/hde8/dev
/sys/block/hdg/dev
/sys/block/hdg/hdg1/dev
/sys/class/input/event0/dev
/sys/class/input/event1/dev
/sys/class/input/event2/dev
/sys/class/input/mice/dev
/sys/class/input/mouse0/dev
/sys/class/misc/device-mapper/dev
/sys/class/misc/psaux/dev
/sys/class/netlink/arpd/dev
/sys/class/netlink/dnrtmsg/dev
/sys/class/netlink/fwmonitor/dev
/sys/class/netlink/ip6_fw/dev
/sys/class/netlink/nflog/dev
/sys/class/netlink/route6/dev
/sys/class/netlink/route/dev
/sys/class/netlink/skip/dev
/sys/class/netlink/tap0/dev
/sys/class/netlink/tap10/dev
/sys/class/netlink/tap11/dev
/sys/class/netlink/tap12/dev
/sys/class/netlink/tap13/dev
/sys/class/netlink/tap14/dev
/sys/class/netlink/tap15/dev
/sys/class/netlink/tap1/dev
/sys/class/netlink/tap2/dev
/sys/class/netlink/tap3/dev
/sys/class/netlink/tap4/dev
/sys/class/netlink/tap5/dev
/sys/class/netlink/tap6/dev
/sys/class/netlink/tap7/dev
/sys/class/netlink/tap8/dev
/sys/class/netlink/tap9/dev
/sys/class/netlink/tcpdiag/dev
/sys/class/netlink/usersock/dev
/sys/class/netlink/xfrm/dev
/sys/class/printer/lp0/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/controlC1/dev
/sys/class/sound/controlC2/dev
/sys/class/sound/controlC3/dev
/sys/class/sound/dmmidi/dev
/sys/class/sound/dsp/dev
/sys/class/sound/midiC0D0/dev
/sys/class/sound/midi/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1p/dev
/sys/class/sound/timer/dev
/sys/class/video4linux/radio0/dev
/sys/class/video4linux/vbi0/dev
/sys/class/video4linux/video0/dev

-- Kernel configuration:


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.9
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages udev depends on:
ii  hotplug  0.0.20040329-17 Linux Hotplug Scripts
ii  initscripts  2.86.ds1-1  Standard scripts needed for bootin
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  makedev  2.3.1-76creates device files in /dev
ii  sed  4.1.4-2 The GNU sed stream editor

-- debconf information:
  udev/devfs-warning:
  udev/reboot-warning:


signature.asc
Description: Digital signature


Bug#299461: xmlto: accept input from stdin

2005-03-14 Thread Hendrik Sattler
Package: xmlto
Version: 0.0.18-5
Severity: wishlist


Hi,

xmlto cannot check an XML file itself or change the encoding, so using
xmllint and piping to xmlto would be most useful :)
xsltproc already accepts stdin by using "-" as file name,
I guess xmlto uses it?

HS

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xmlto depends on:
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  docbook-xml 4.3-1.1  standard XML documentation system,
ii  docbook-xsl 1.66.1-1 stylesheets for processing DocBook
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpaper-utils  1.1.14-3 Library for handling paper charact
ii  libxml2-utils   2.6.16-3 XML utilities
ii  sgml-base   1.26 SGML infrastructure and SGML catal
ii  xsltproc1.1.12-5 XSLT command line processor

-- no debconf information


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



Bug#299462: w3m - saves files with content-encoding

2005-03-14 Thread Bastian Blank
Package: w3m
Version: 0.5.1-3
Severity: important

w3m saves files without undo the content-encoding.

| kernel-image-2.6.11-1-s390_2.6.11-1_s390.deb: Debian binary package (format 
2.0), uses gzip compression

After downloading it with w3m:

| kernel-image-2.6.11-1-s390_2.6.11-1_s390.deb: gzip compressed data, from Unix

This matches the Content-Encoding of the HTTP request.

Bastian

-- 
Bones: "The man's DEAD, Jim!"


signature.asc
Description: Digital signature


Bug#293862: Orphaning three packages

2005-03-14 Thread Neil McGovern
On Mon, Mar 14, 2005 at 03:22:09AM +, Martin Michlmayr wrote:
> * Neil McGovern <[EMAIL PROTECTED]> [2005-02-12 14:30]:
> > I'm orphaning three packages:
> > hawhaw-doc - the documentation for HAWHAW and HAWXY
> > hawxy - a script that makes PHP-enabled webservers to HAWHAW proxies
> > libphp-hawhaw - a PHP toolkit to create universal mobile applications
> ...
> > If no one wants them, I'll ask for their removal.
> 
> It has been over a month and nobody has indicated interest.  Since
> these packages have never been part of a stable release, I think
> removing them would make sense.  Is it okay with you to go ahead with
> this?

Yup, no problems.

All the best,
Neil McGovern
-- 
A. Because it breaks the logical sequence of discussion
Q. Why is top posting bad?
gpg key - http://www.halon.org.uk/pubkey.txt ; the.earth.li B345BDD3


signature.asc
Description: Digital signature


Bug#299278: French programs translation

2005-03-14 Thread Christian Perrier

> msgstr "La dernière mise-à-jour fût effectuée en %s."
>   -->
> msgstr "La dernière mise-à-jour a été effectuée en %s."
> 
> I have nothing against applying this change but what makes the first
> translation wrong?


s/fût/fut anyway.

The suggestion here is using "passé composé" which is more common than
"passé antérieur"

> 
> 
> 3. 
> msgstr " %"
>   -->
> msgstr "%"
> 
> I'm 99% this change is buggy. Units are always separated by a space in
> French.

Error on my side. I indeed changed the units ("Mo" to " Mo") and
reverted this when I realised that the space is in the strings which
use themunfortunately I also reveted the space before the percent
sign, which is wrong as you mention. BTW, this should be a
non-breaking space...




Bug#299452: exim4-daemon-light: permission denied while sending local email with Maildir

2005-03-14 Thread Marc Haber
tags #299452 moreinfo
thanks

On Mon, Mar 14, 2005 at 09:35:39AM +0100, Giuseppe Sacco wrote:
> I had a perfectly working system and then decided to try Maildir instead of 
> the standard
> mbox file format.
> I followed the instructions in README.Maildir and exim restarted working very 
> well.

The exim4 packages do not include a README.Maildir. Which instructions
did you follow?

> Every email received via SMTP is correctly accepted and delivered but
> local emails are giving a permission denied error. Here an example
> when I send an email to myself:
> 
> [EMAIL PROTECTED]:~/debian$ strace -o /tmp/mail.log -f -s128 mail -e [EMAIL 
> PROTECTED] -s test
> line one
> line two
> .
> Cc: 
> 2005-03-14 09:15:38 1DAkji-0007JF-AE Failed to create spool file 
> /var/spool/exim4/input//1DAkji-0007JF-AE-D: Permission denied
> 2005-03-14 09:15:38 1DAkji-0007JF-AE Failed to create spool file 
> /var/spool/exim4/input//1DAkji-0007JF-AE-D: Permission denied
> 2005-03-14 09:15:38 1DAkji-0007JF-AE Failed to create spool file 
> /var/spool/exim4/input//1DAkji-0007JF-AE-D: Permission denied
> Can't send mail: sendmail process failed with error code 1
> [EMAIL PROTECTED]:~/debian$

Please retry the same with exim -d:

strace -o /tmp/mail.log -f -s128 /usr/sbin/exim4 -d [EMAIL PROTECTED]

> Permissions are like this:
> [EMAIL PROTECTED]:~$ ls -ld /var/spool/exim4/input/ /var/spool/exim4/ 
> /usr/sbin/exim4 /usr/sbin/sendmail
> Password: 
> drwxr-x---  5 Debian-exim Debian-exim 1024 2005-03-14 06:37 /var/spool/exim4/
> drwxr-x---  2 Debian-exim Debian-exim 3072 2005-03-14 09:28 
> /var/spool/exim4/input/
> -rwsr-xr-x  1 root root 665528 2005-01-27 13:57 /usr/sbin/exim4
> lrwxrwxrwx  1 root root  5 2005-02-27 15:37 /usr/sbin/sendmail -> exim4
> [EMAIL PROTECTED]:~$

These look ok.

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#299437: missing manpage: totem-video-thumbnailer

2005-03-14 Thread Bastien Nocera
On Sun, 2005-03-13 at 22:34 -0500, Zack Cerza wrote:
> Package: totem
> Version: 0.100-4
> Severity: minor
> Tags: patch
> 
> totem-video-thumbnailer is missing a manpage. I wrote a smallish one for
> it, that gives a little more information than is in totem's usage
> statement. Better than nothing :)

Which I promptly added to CVS. Thanks a lot!

---
Bastien Nocera <[EMAIL PROTECTED]> 




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



Bug#299446: RFH: vim -- Vi IMproved - enhanced vi editor

2005-03-14 Thread Alexis Sukrieh
* Norbert Tretkowski ([EMAIL PROTECTED]) disait :
> I'm looking for someone who wants to co-maintain vim, since I realized
> that I'm currently unable to take care of the package alone. There are
> a lot of open bugs that should be fixed, and there's also the upcoming
> vim 7.0 package which is a complete rewrite of the packaging. It
> should be easy to work on the package together, there's a project on
> alioth using subversion already.

If you are still looking for someone, I'd start looking at bugs I could
manage.

Cheers

Alexis.

-- 
  Alexis Sukrieh <[EMAIL PROTECTED]>
   http://www.sukria.net

« Quidquid latine dictum sit, altum sonatur. » 
Whatever is said in Latin sounds profound.



Bug#294645: mozilla-thunderbird: Rebooting helps

2005-03-14 Thread Alexander Sack
dh wrote:
Package: mozilla-thunderbird
Version: 1.0-3
Followup-For: Bug #294645
Maybe I can shed some more light on this bug (or make it more confusing,
whatever you prefer:
I've found that thunderbird starts up allright the first time after a
reboot. However, if I quit and then try to start the program again, the
same symptoms.
Just restarting X is not enough. I haven't checked what runlevel I have
at least to go down to to make this happen; a reboot works though. I
haven't been able to find any tbird-related processes left running after
a quit.
Is this always true? Have you found some way to work around the problem? Have 
you tried to fix it the way described in the README.Debian? If you really 
encounter such a strange behaviour, please backup your .mozilla-thunderbird 
directory, so maybe we have a chance to track it down.

--
 GPG messages preferred. |  .''`.  ** Debian GNU/Linux **
 Alexander Sack  | : :' :  The  universal
 [EMAIL PROTECTED] | `. `'  Operating System
 http://www.jwsdot.com/  |   `-http://www.debian.org/
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#299463: xmlto html-nochunks forgets doctype

2005-03-14 Thread Hendrik Sattler
Package: xmlto
Version: 0.0.18-5
Severity: normal


Hi,

checking the created HTML file validator.w3c.org shows the main flaw with
many HTML files:
 You HAVE TO specify the DOCTYPE in the HTML document.
 
HS

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xmlto depends on:
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  docbook-xml 4.3-1.1  standard XML documentation system,
ii  docbook-xsl 1.66.1-1 stylesheets for processing DocBook
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpaper-utils  1.1.14-3 Library for handling paper charact
ii  libxml2-utils   2.6.16-3 XML utilities
ii  sgml-base   1.26 SGML infrastructure and SGML catal
ii  xsltproc1.1.12-5 XSLT command line processor

-- no debconf information


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



Bug#299464: libmng1: should provide libmng-mini

2005-03-14 Thread Oliver Sorge
Package: libmng1
Version: 1.0.8-1
Severity: normal


libmng should provide libmng-mini so that aplltications can be statically
compiled with libmng. for example:

bootsplash-3.2/Utilities$ make
gcc -Os -Wall -I/usr/include/freetype2 -L/usr/lib -o splash -L/usr/lib splash.o 
/usr/lib/libmng-mini.a -lz -lm
gcc: /usr/lib/libmng-mini.a: No such file or directory
make: *** [splash] Error 1

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (650, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.3
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-15) (ignored: LC_ALL set to [EMAIL 
PROTECTED])

Versions of packages libmng1 depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libjpeg62   6b-10The Independent JPEG Group's JPEG 
ii  liblcms11.13-1   Color management library
ii  zlib1g  1:1.2.2-4compression library - runtime

-- no debconf information


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



Bug#299465: xmlto html-nochunks uses inproper character set

2005-03-14 Thread Hendrik Sattler
Package: xmlto
Version: 0.0.18-5
Severity: normal


Hi,

is there any reason why ISO-8859-1 is enforces and entities used for everything
that does not fit in?
Why isn't the encoding of the XML file used? It has to fit anyway and makes the
output much more readable!

I assume you agree that forcing ISO-8859-1 does not make much sense with UTF-8
input (except for some countries).

HS

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xmlto depends on:
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  docbook-xml 4.3-1.1  standard XML documentation system,
ii  docbook-xsl 1.66.1-1 stylesheets for processing DocBook
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpaper-utils  1.1.14-3 Library for handling paper charact
ii  libxml2-utils   2.6.16-3 XML utilities
ii  sgml-base   1.26 SGML infrastructure and SGML catal
ii  xsltproc1.1.12-5 XSLT command line processor

-- no debconf information


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



Bug#299278: French programs translation

2005-03-14 Thread Mathieu Roy
Christian Perrier <[EMAIL PROTECTED]> tapota :

>> > -it is wrongly named : you should use fr.po rather than fr_FR.po and
>> >I don't really understand why it was renamed that way as former
>> >versions were correct in that matter
>> 
>> Well, fr_FR is supposed to be french french, and using fr.po would
>> close the door to fr_CA or whatever (even if there are little chances
>> that someone spend time for do these translations).
>> 
>> In many packages packages got such names.
>> 
>> In think we switched to such name after:
>> 
>> http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=200861

[...]


> The latter two are indeed tricks as country modifiers should indeed be
> used, but this is a very well established practice nowand, before
> you ask, no this is not written in any policy document.
>
> Common sense may however be applied here : as long as you keep having
> a fr_FR translation, you depriving other french speaking users a good
> French translation. If, in the future, you feel for the need of
> variants, you can still keep a fr.po file and add fr_FR, fr_CA,
> whateverwhich all have to be maintained.*
>

Good to know.
Ok, I'll make that change.


> Would you indeed imagine renaming the es.po file to es_ES.po and
>then revet your Latin American users to English. I guess you don't
>want this.
>
>> > Anyway, you'll find attached a new version of the translation
>> >file. I used there the usual translations used by the Debian french
>> >localisation team, which sometimes involves some rewrites (use of
>> >non-breaking spaces when appropriate, use of "superutilisateur",
>> >avoid using first person, s/bug/bogue and so on).
>> 
>> Well, I'm quite confident in my understanding of french typography
>> rules (in particular, I doubt someone would be able to catch
>> errouneous ponctuation in what I write in French - that's the kind of
>> mistakes I simply do not do, unlike grammar mistakes and alike).
>
> Well, then you probably want to check spaces before colons in the
> original fr_FR.po files..:-)

Seems ok to me:

[EMAIL PROTECTED]:~/projects/cvs.gna.org$ more pdbv/po/fr_FR.po  | grep msgstr 
| grep ":"
msgstr "Liste de paquets :"
msgstr "Paquet :"
msgstr "Version :"
msgstr "Section :"
msgstr "Priorité :"
msgstr "Essentiel :"
msgstr "État :"
msgstr "Date d'installation :"
msgstr "Dépend de :"
msgstr "En conflit avec :"
msgstr "Améliore :"
msgstr "Fournit :"
msgstr "Recommande :"
msgstr "Suggère :"
msgstr "Responsable :"
msgstr "Origine :"
msgstr "Source :"
msgstr "Site internet :"
msgstr "Description :"
msgstr "Taille :"
msgstr "Utilisation :"
msgstr "Fichiers :"
msgstr "Usage : pdbv [OPTIONS]"
( -> arg! usage != usage; I fixed that in the CVS but I'm now using
another computer than early in the morning and this one havent got the
CVS up to date)

>> If there's first person usage, I think a bug should be posted against
>> the whole package (unless this first person usage exists only in the
>> translation). Where did you find it?
>
> In the French translation : "nous ne pouvons obtenir des données
> valables" vs "we cannot find".
>
> Who is "we" ? :-)

Indeed I caught that later. But the mistake is in fact in the original
wording (english - I'm guilty too but that's not the point).


>> About bug, I do not really want to translate it "bogue" (ugly and
>> ununderstandable for a french, unless he guess from what he knows of
>> the similar english word - that clearly defeats translation purpose)
>> but anomalie. And there are already in debian packages that use this
>> translation (like pan).  
>
> Well, I'm afraid to say that Debian packages are not always consistent
> with regard to French translations..the only exception being the
> packages where translations are handleed by the maintainer and not the
> l10n team.
>
> The team work not only brings manpower : it also brings a guarantee
> for consistency all along localisation work, which strongly gives
> users a feeling of professionalismthis is why I would insist for
> "bogue" even if I happen to say "bug" quite often. 

My personal stance on translation is:
   a translation is no good if the translation is meaningless without
   understanding the original untranslated word.

Bogue cannot be understood without a little understanding of
"bug". Anomalie can. So bogue is a bad translation, anomalie is the
good one. The point of translation is to avoid people to learn another
language in order to use a software; providing translations that
cannot be understood without learning another language obvious defeat
this purpose.

The same goes for "mél" instead of "courriel", all these translations
are way more annoying than angliscisms.

I used to use bogue until it became obvious to me that anomalie was a
great replacement. And I wish that it would get more
common. But... I'm afraid it will probably not happen. For reasons
similar that most distros (debian apart!) use the word "paquetage" as
translation of package, which is plainly wrong according to 

Bug#298918: phpbb2: multiboard documentation would be helpful

2005-03-14 Thread Thijs Kinkhorst
Hello Jeroen,

As I was planning anyway to experiment with the multiboard setup soon, I
will take notes and write a short document about how I did it and the
problems I encountered.


Thijs


signature.asc
Description: OpenPGP digital signature


Bug#299467: Need explicit LC_NUMERIC=POSIX for some plugins.

2005-03-14 Thread Olleg Samoylov
Package: nagios-common
Version: 2:1.3-cvs.20050116-4
Severity: normal
Tags: l10n

Some locales, for instance russian, use comma instead of decimal point.
Plugins check_procs, check_load, check_ping, etc  
get float parameters separated by comma and thus don't work. Simplest fix
of this bug is add to /etc/init.d/nagios

export LC_NUMERIC=POSIX

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.10-9-amd64-k8
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages nagios-common depends on:
ii  adduser  3.63Add and remove users and groups
ii  apache2-mpm-work 2.0.53-5high speed threaded model for Apac
ii  coreutils [fileu 5.2.1-2 The GNU core utilities
ii  debconf [debconf 1.4.46  Debian configuration management sy
ii  mailx1:8.1.2-0.20040524cvs-4 A simple mail user agent
ii  nagios-pgsql [na 2:1.3-cvs.20050116-4A host/service/network monitoring 
ii  nagios-plugins   1.4-3   Plugins for the nagios network mon

-- debconf information excluded


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



Bug#299466: businesscard with kernel 2.6

2005-03-14 Thread Nelson Morales
Package: installation-reports
Debian-installer-version: sarge-i386-businesscard.iso
uname -a: I couldn't install, so I can't tell. Date: March 11, 2005
Method: Run from CD, used DHCP. No proxy.
Machine: Dell 600M
Processor: Centrino 1.4Ghz
Memory: 512Mb
Root Device: IDE. Samsumg 40Gb.
Root Size/partition table:
Disk /dev/hda: 40.0 GB, 40060403712 bytes
255 heads, 63 sectors/track, 4870 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
 Device Boot  Start End  Blocks   Id  System
/dev/hda1   1 974 7823623+  83  Linux
/dev/hda2 9751097  987997+  82  Linux swap / 
Solaris
/dev/hda31098487030306622+   5  Extended
/dev/hda51098413724418768+  83  Linux
/dev/hda6   *41384502 2931831   83  Linux < 
WANTED TO INSTALL DEBIAN HERE.
/dev/hda745034870 2955928+  83  Linux

Output of lspci and lspci -n:
:00:00.0 Host bridge: Intel Corporation 82855PM Processor to I/O 
Controller (rev 03)
:00:01.0 PCI bridge: Intel Corporation 82855PM Processor to AGP 
Controller (rev 03)
:00:1d.0 USB Controller: Intel Corporation 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01)
:00:1d.1 USB Controller: Intel Corporation 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01)
:00:1d.2 USB Controller: Intel Corporation 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01)
:00:1d.7 USB Controller: Intel Corporation 82801DB/DBM (ICH4/ICH4-M) 
USB2 EHCI Controller (rev 01)
:00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev 81)
:00:1f.0 ISA bridge: Intel Corporation 82801DBM (ICH4-M) LPC 
Interface Bridge (rev 01)
:00:1f.1 IDE interface: Intel Corporation 82801DBM (ICH4-M) IDE 
Controller (rev 01)
:00:1f.5 Multimedia audio controller: Intel Corporation 
82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01)
:00:1f.6 Modem: Intel Corporation 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 01)
:01:00.0 VGA compatible controller: ATI Technologies Inc Radeon R250 
Lf [FireGL 9000] (rev 01)
:02:00.0 Ethernet controller: Broadcom Corporation NetXtreme 
BCM5702X Gigabit Ethernet (rev 02)
:02:01.0 CardBus bridge: O2 Micro, Inc. OZ711EC1 SmartCardBus 
Controller (rev 20)
:02:01.1 CardBus bridge: O2 Micro, Inc. OZ711EC1 SmartCardBus 
Controller (rev 20)
:02:03.0 Network controller: Intel Corporation PRO/Wireless LAN 2100 
3B Mini PCI Adapter (rev 04)

:00:00.0 Class 0600: 8086:3340 (rev 03)
:00:01.0 Class 0604: 8086:3341 (rev 03)
:00:1d.0 Class 0c03: 8086:24c2 (rev 01)
:00:1d.1 Class 0c03: 8086:24c4 (rev 01)
:00:1d.2 Class 0c03: 8086:24c7 (rev 01)
:00:1d.7 Class 0c03: 8086:24cd (rev 01)
:00:1e.0 Class 0604: 8086:2448 (rev 81)
:00:1f.0 Class 0601: 8086:24cc (rev 01)
:00:1f.1 Class 0101: 8086:24ca (rev 01)
:00:1f.5 Class 0401: 8086:24c5 (rev 01)
:00:1f.6 Class 0703: 8086:24c6 (rev 01)
:01:00.0 Class 0300: 1002:4c66 (rev 01)
:02:00.0 Class 0200: 14e4:16a6 (rev 02)
:02:01.0 Class 0607: 1217:7113 (rev 20)
:02:01.1 Class 0607: 1217:7113 (rev 20)
:02:03.0 Class 0280: 8086:1043 (rev 04)
Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[E]
Mount partitions:   [ ]
Install base system:[ ]
Install boot loader:[ ]
Reboot: [ ]
Comments/Problems:
The installation failed when running kernel 2.6. It wasn't able to 
create the file system. Tried to change partition from logical to 
primary. Worked, but got again the same problem.
Restarted with kernel 2.4 and no problem!


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


Bug#299446: RFH: vim -- Vi IMproved - enhanced vi editor

2005-03-14 Thread Torsten Landschoff
Hi Norbert, 

On Mon, Mar 14, 2005 at 08:35:39AM +0100, Norbert Tretkowski wrote:
> I'm looking for someone who wants to co-maintain vim, since I realized
> that I'm currently unable to take care of the package alone. There are
> a lot of open bugs that should be fixed, and there's also the upcoming
> vim 7.0 package which is a complete rewrite of the packaging. It
> should be easy to work on the package together, there's a project on
> alioth using subversion already.
> 
> Drop me a mail if you're interested.

As I am using vim for editing anything (as this email :)) I'd like to
help. Problem is that I really don't have much time either but I could
fix a bug or two in subversion when time permits.

Greetings

Torsten


signature.asc
Description: Digital signature


Bug#298194: lmodern: New version 0.98 available

2005-03-14 Thread Florent Rougon
Hi,

I think that version 0.98 is not suitable for unstable (without several
fixes). First, the problem with lmtt not being really monospaced is
*not* solved. The one that was mentioned in 0info098.txt was something
else (about a misplaced underscore, IIRC). Second, as you probably saw
on dctt, lm.map is far from being complete (only the lmtt family seems
to be there) and the encoding-specific map files are not shipped
anymore. This is easy to fix, but reveals IMHO a lack of testing[1] of
the released material which makes me reluctant to upload the new
release.

Incidentally, ftp://bop.eps.gda.pl/pub/lm/ is now an empty directory. I
suppose there is a reason...

Regards,


  [1] Of the TeX stuff, at least; maybe the OpenType fonts, for
  instance, were more thouroughly tested.

-- 
Florent


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



Bug#297905: [Pkg-nagios-devel] Bug#297905: nagios-text: nagios init script fails to start

2005-03-14 Thread Stephane Dudzinski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
sean finney wrote:
| hi stephane,
Hello Sean,
Sorry for the late reply, i was away last week.
| you should point your config file at the proper location:
| /var/run/nagios/nagios.cmd
| and rm -rf /var/log/nagios/rw
Done, works like a charm, thanks again and carry on the good work :)
Steph
- --
Stephane Dudzinski - IT Manager
DIAS - http://www.dias.ie
This mail was sent using Debian GNU/Linux
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCNWrPxCVslAry32ARAiRKAJ0TxmpcIN9eyM9LmNHp0t2BELXowACfYURG
6H4m4SAEkNFrcpeHGh8tE+w=
=3F2d
-END PGP SIGNATURE-
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#294186: Problems (re)building ipw2200 against 2.6.10

2005-03-14 Thread Andrew Pollock
Hi,

As I documented in my blog[1], I struck some problems building the latest
ipw2200 module against the kernel headers provided with 2.6.10. I also
couldn't rebuild older versions (that had successfully built in the past).

Is this a problem with the kernel headers or with the ipw2200 module? (I'm
inclined to think the former, given that old stuff no longer builds, but I'm
no kernel guru).

[1] http://blog.andrew.net.au/2005/02/01#ipw_building_problems

regards

Andrew

-- 
linux.conf.au 2005   -  http://linux.conf.au/  -  Birthplace of Tux
April 18th to 23rd   -  http://linux.conf.au/  -   LINUX
Canberra, Australia  -  http://linux.conf.au/  -Get bitten!


signature.asc
Description: Digital signature


Bug#299468: pumount by directory

2005-03-14 Thread A Mennucc
Package: pmount
Version: 0.7.1-1
Severity: wishlist


currently the usage of pmount is as
$ pmount /dev/sda1 usbdisk
$ pumount /dev/sda1

I would like to also be able to do
$ pmount /dev/sda1 usbdisk
$ pumount  usbdisk

thanx a lot for this package anyway

a.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-k7
Locale: LANG=C, LC_CTYPE=C

Versions of packages pmount depends on:
ii  dbus-1  0.23-1   simple interprocess messaging syst
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libhal0 0.4.7-1  Hardware Abstraction Layer - share
ii  libsysfs1   1.2.0-4  interface library to sysfs

-- no debconf information

-- 
Andrea Mennucc
 "Ukn ow,Ifina llyfixe dmysp acebar.ohwh atthef"


signature.asc
Description: Digital signature


Bug#294826: [Evms-devel] Re: Bug#294826: kernel-image-2.4.27-1-686-smp: kernel panic in dm_snapshot.c

2005-03-14 Thread Horms
On Thu, Mar 10, 2005 at 10:31:09AM +0300, Alexander N. Kogan wrote:
> Hi!
> 
> > > It crashes again when snapshots were resetted several times. Please see
> > > attached screenshot. Error occurs in line 1064 of dm-snapshot.c
> >
> > Ah, I see what's going on now. It's hitting the BUG statement in
> > dm-snapshot.c::do_origin(), but EVMS provides a work-around for this issue.
> > You should apply evms-2.5.1/kernel/2.4/dm-snapshot.patch to your kernel
> > before using snapshots with EVMS. I'd also recommend reading over
> > http://evms.sourceforge.net/install/kernel.html just to make sure you have
> > all the DM kernel patches necessary for your system.
> >
> > Let me know if that works for you.
> 
> Thank you! I'll try these patches.
> 
> To debian kernel maintainers:
> Are these patches in debian? Or may be it is better to patch debian kernel 
> package?

Hi,

The 2.4.27 kernel includes device-mapper 1.00.19 but
does not include any of the EVMS patches. I
am not entirely sure what to do about this, but
if you could test the EVMS patches against
the debian 2.4.27 kernel that would be an
excellent start.

Thanks

-- 
Horms


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



Bug#298230: Serial problems with kernel 2.4.27

2005-03-14 Thread Horms
Hi,

Are you in a position to see if this patch helps the USB serial problem
you are seeing?

-- 
Horms
# origin: paulkf (BitKeeper)
# cset: 1.1482.2.2 (2.4) key=4186b9cdrEhF6Csz1SSx9dzswhwG8Q
# URL: http://linux.bkbits.net:8080/linux-2.4/[EMAIL PROTECTED]
# inclusion: upstream
# descrition: [PATCH] usb serial write fix
# revision date: Mon, 14 Mar 2005 19:43:38 +0900
#
# S rset: ChangeSet|1.1482.2.1..1.1482.2.2
# I rset: drivers/usb/serial/usbserial.c|1.31..1.32
#
# Key:
# S: Skipped  ChangeSet file only
# O: Original Followed by Updated
# U: Updated  Included with updated range of versions
# I: Included Included verbatim
# E: Excluded Excluded on request from user
# D: Deleted  Manually deleted by subsequent user edit
# R: Revised  Manually revised by subsequent user edit
#
#
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
#   2004/11/01 20:33:49-02:00 [EMAIL PROTECTED] 
#   [PATCH] usb serial write fix
#   
#   Fix usb serial write path in post_helper to check return
#   code from component driver write routine and
#   resubmit if necessary. The post helper introduced in
#   2.4.27-pre6 can lose write data if component device write is busy.
#   
#   This was previously reported as a problem with
#   the pl2303 driver running PPP by [EMAIL PROTECTED]
#   Oleksiy has tested the patch with success.
#   
#   Signed-off-by: Paul Fulghum <[EMAIL PROTECTED]>
# 
# drivers/usb/serial/usbserial.c
#   2004/11/01 12:29:07-02:00 [EMAIL PROTECTED] +12 -2
#   usb serial write fix
# 
#
= drivers/usb/serial/usbserial.c 1.31 vs 1.32 =
--- 1.31/drivers/usb/serial/usbserial.c 2004-06-22 10:51:57 +09:00
+++ 1.32/drivers/usb/serial/usbserial.c 2004-11-01 23:29:07 +09:00
@@ -508,8 +508,18 @@ static void post_helper(void *arg)
down(&port->sem);
dbg("%s - port %d len %d backlog %d", __FUNCTION__,
port->number, job->len, port->write_backlog);
-   if (port->tty != NULL)
-   __serial_write(port, 0, job->buff, job->len);
+   if (port->tty != NULL) {
+   int rc;
+   int sent = 0;
+   while (sent < job->len) {
+   rc = __serial_write(port, 0, job->buff + sent, 
job->len - sent);
+   if ((rc < 0) || signal_pending(current))
+   break;
+   sent += rc;
+   if ((sent < job->len) && current->need_resched)
+   schedule();
+   }
+   }
up(&port->sem);
 
spin_lock_irqsave(&post_lock, flags);


Bug#299047: inkscape: unable to install on fresh Debian unstable system

2005-03-14 Thread Wolfram Quester
Hi,

On Fri, Mar 11, 2005 at 01:13:36PM +0100, Max Gilead wrote:
> Package: inkscape
> Severity: important
> 
> 
> maxbox:~# apt-get install inkscape
> Reading Package Lists... Done
> Building Dependency Tree... Done
> Some packages could not be installed. This may mean that you have
> requested an impossible situation or if you are using the unstable
> distribution that some required packages have not yet been created
> or been moved out of Incoming.
> 
> Since you only requested a single operation it is extremely likely that
> the package is simply not installable and a bug report against
> that package should be filed.
> The following information may help to resolve the situation:
> 
> The following packages have unmet dependencies:
>   inkscape: Depends: libgtkmm-2.4-1 but it is not going to be installed
> E: Broken packages
> maxbox:~# apt-get install libgtkmm-2.4-1
> Reading Package Lists... Done
> Building Dependency Tree... Done
> Some packages could not be installed. This may mean that you have
> requested an impossible situation or if you are using the unstable
> distribution that some required packages have not yet been created
> or been moved out of Incoming.
> 
> Since you only requested a single operation it is extremely likely that
> the package is simply not installable and a bug report against
> that package should be filed.
> The following information may help to resolve the situation:
> 
> The following packages have unmet dependencies:
>   libgtkmm-2.4-1: Depends: libatk1.0-0 (>= 1.9.0) but 1.8.0-4 is to be
> installed
> E: Broken packages
> maxbox:~# apt-get install libatk1.0-0
> Reading Package Lists... Done
> Building Dependency Tree... Done
> libatk1.0-0 is already the newest version.
> 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
> maxbox:~#

Thanks for your report. The problem here is not inkscape though. It is
libgtkmm-2.4-1 which is compiled against a version of libatk1.0-0 in the
experimental distibution. This was reported as debian bug #298517.


Thanks,

Wolfi


signature.asc
Description: Digital signature


Bug#299335: please remove the lecture from sudo's first invocation or provide an option

2005-03-14 Thread Gustavo Noronha Silva
Em Dom, 2005-03-13 Ãs 18:14 -0700, Bdale Garbee escreveu:
> This can already be handled in the sudoers file, from 'man sudoers':

Hey Bdale!

> Is that sufficient?

I can't see how to use this for the thing to work out of the box, no.
The only oportunity I'd have to modify sudoers would be on package
install time, as gksu has no setuid binaries, and even then, modifying
sudoers is something I think I should not be doing.

If a command line option to override this is not inherently evil, I'd be
happy to have it.

Thanks!

-- 
  [EMAIL PROTECTED]: Gustavo Noronha 
 Debian:   *  


signature.asc
Description: Esta =?ISO-8859-1?Q?=E9?= uma parte de mensagem	assinada digitalmente


Bug#299383: More details

2005-03-14 Thread Daniel
Hi,

first of all, the problem still exists with package version 1.0.1-2.
Secondly, I have found a clue as to where the bug hides. Namely, the
described problem only appears when firefox is told to use OCSP (via
Edit->Preferences->Advanced->Validation->Use OCSP to validate only
certificates that specify an OCSP service URL). With this options set,
the errors occur. With OCSP turned off, everything is fine. Please
mark this as Severity: Important as it prevents the use of a very
important aspect in the certification scheme.

Thanks,
Daniel


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



Bug#253984: VOTE +1

2005-03-14 Thread Ossama Khayat
VOTE +1

- Ossama

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


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



Bug#299470: /etc/init.d/nagios reload don't work for nagios-pgsql

2005-03-14 Thread Olleg Samoylov
Package: nagios-common
Version: 2:1.3-cvs.20050116-4
Severity: normal

# /etc/init.d/nagios reload
Reloading nagios configuration files.
Not running.

As I can understand, this is due to malfunction of check_started() in
/etc/init.d/nagios :

# /usr/lib/nagios/plugins/check_nagios -e 15 -F /var/log/nagios/status.log -C 
'/usr/sbin/nagios'
CRITICAL - Cannot open status log for reading!

status.log always absent with nagios-pgsql.

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.10-9-amd64-k8
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)

Versions of packages nagios-common depends on:
ii  adduser  3.63Add and remove users and groups
ii  apache2-mpm-work 2.0.53-5high speed threaded model for Apac
ii  coreutils [fileu 5.2.1-2 The GNU core utilities
ii  debconf [debconf 1.4.46  Debian configuration management sy
ii  mailx1:8.1.2-0.20040524cvs-4 A simple mail user agent
ii  nagios-pgsql [na 2:1.3-cvs.20050116-4A host/service/network monitoring 
ii  nagios-plugins   1.4-3   Plugins for the nagios network mon

-- debconf information excluded


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



Bug#247993: SparcClassic *still* has CD mounting/detection problems

2005-03-14 Thread Lionel Elie Mamane
tags 247993 -moreinfo
thanks

Hi,

I finally found the right cable to try again, and I had similar, if
somewhat different problems.

I downloaded
http://cdimage.debian.org/pub/cdimage-testing/daily/sparc/current/sarge-sparc-netinst.iso,
bearing timestamp 2005-03-14 00:28. As far as I understand, it gives
me the 20050313 version.

I did a completely fresh install. Everything went well until after
partitioning/formatting, the "install base system" stage. I had
successfully (manually, not DHCP) configured the network and the
system has successfully gotten the hostname and domain from a reverse
DNS on the IP. The install system is operating in "low memory mode".

At the "install base system" stage, the system said "Cannot figure out
how to install Debian: No install CD found and no mirror
configured". Well, it didn't give me any opportunity to choose a
mirror, and I don't see one in the menu I get dumped to. Re-running
the "detect CD" stage unstuck the thing; it then recognised the CD as
containing a base and the "install base system" stage is currently
on its way.

(Now that I have found back the right cables, I'll be much more
 responsive to try out new d-i snapshots if useful.)

-- 
Lionel


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



Bug#299279: xmorph: Please consider re-packaging this package as a non native Debian package

2005-03-14 Thread A Mennucc
On Sun, Mar 13, 2005 at 09:45:47AM +0100, Christian Perrier wrote:
> As far as I can see, xmorph is not really a Debian-specific package and one
> could thus consider there is no need to have it packaged as a native Debian
> package.

(philosophically speaking,
almost all Debian software is not really  Debian-specific : 
even APT is now used in Mandrake and RedHat )
 
> >From reading the various doc files, I understand that the maintainer is a
> co-author of the upstream software, but also that the software is also
> developed outside Debian.

in the last five years, I have been the only person
doing any work in xmorph 
(but for a few nice contribution by some users)

in a sense, the original author has passed me the whole of the
package

in particular, I am the only author of gtkmorph

>So, is there really a reason for having it in the native Debian packages list?

xmorph is developed in Debian, and only uploaded into Debian

the only reason I keep a page in sourceforge is that it may 
give it some publicity (and it is free)

I have even asked to the sf people to delete the CVS (I dont use it)

> What brings me to this topic is localization. I usually recommend
> translators who are seeking for work to do to focus on Debian native package
> as these software have probably no chance to be translated outside Debian
> and are often Debian-specific software.
> 
> So, Debian native packages indeed are prioritized with regard to l10nand
> we of course want to prioritize what really needs to be.

xmorph  does not have  debconf templates , so I guess you are talking 
about program messages

AFAIR no one has ever provided me of any localization  for  xmorph

I have done some localization for italian , but it is outdated


a.

-- 
Andrea Mennucc
 "Ukn ow,Ifina llyfixe dmysp acebar.ohwh atthef"


signature.asc
Description: Digital signature


Bug#297504: Can't build avr-libc from source

2005-03-14 Thread Hakan Ardo
On Mon, Mar 14, 2005 at 11:48:10AM +0100, Santiago Vila wrote:
> On Mon, 14 Mar 2005, Hakan Ardo wrote:
> 
> > On Tue, Mar 08, 2005 at 06:39:41PM +0100, Santiago Vila wrote:
> > > 
> > > My system is unstable as of today.
> > > Is there a missing "build-depends: netpbm" or something?
> > 
> > Probably, I'll look into it...
> 
> I noticed there was a bug report already opened for this, so I sent
> this info to the BTS. It will help a lot if you could try building the
> package in a chroot (as I was doing, using sbuild).

Sure, I've never done that, but I'll try i out...

-- 
Hakan Ardo


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



Bug#299475: amule segfaults when connecting

2005-03-14 Thread Ciro Mattia Gonano
Package: amule
Version: 1.2.6+rc8-2
Severity: grave
Justification: renders package unusable

Amule fires up normally, when I connect it does its job cycling servers,
but when it finds a usable server, it segfaults when the connection is
done.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)

Versions of packages amule depends on:
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libcurl3 7.13.1-1Multi-protocol file transfer libra
ii  libgcc1  1:3.4.3-11  GCC support library
ii  libglib2.0-0 2.6.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-4 The GTK+ graphical user interface 
ii  libidn11 0.5.13-1.0  GNU libidn library, implementation
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libssl0.9.7  0.9.7e-3SSL shared libraries
ii  libstdc++5   1:3.3.5-12  The GNU Standard C++ Library v3
ii  libwxgtk2.5.32.5.3.2 wxWidgets Cross-platform C++ GUI t
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#299474: no .shlibs file is shipped with libfox1.2

2005-03-14 Thread Bastian Kleineidam
Package: libfox1.2
Version: 1.2.4-2
Severity: normal

Hi,

after installing libfox1.2 there was no libfox1.2.shlibs file in
/var/lib/dpkg/info. This results in missing dependency information for
applications using libfox1.2, so they must use a debian/shlibs.local file.
Please provide a .shlibs file in the package build. I think it can be
generated by dh_makeshlibs automatically.

Regards,
  Bastian

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.2-treasure1
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libfox1.2 depends on:
ii  libbz2-1.0   1.0.2-5 high-quality block-sorting file co
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libcupsys2-gnutls10  1.1.23-7Common UNIX Printing System(tm) - 
ii  libgcc1  1:3.4.3-11  GCC support library
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.5-12  The GNU Standard C++ Library v3
ii  libtiff4 3.7.1-4 Tag Image File Format (TIFF) libra
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-12.0.1 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu 4.3.0.dfsg.1-12.0.1 Mesa OpenGL utility library [XFree
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-4   compression library - runtime

-- no debconf information


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



Bug#299472: vpnc: more detailed specification for routing

2005-03-14 Thread Ph. Marek
X-Reportbug-Version: 3.8
X-Debbugs-Cc: [EMAIL PROTECTED]
Package: vpnc
Version: 0.3.2+SVN20041123-1
Severity: wishlist


Hello Eduard!

I'd like to specify a subset of programs/users/ports to use with this tunneled 
connection, ie.
- only user xyz
- and only to the ports 21&22,

and similar things - everything that is possible with iptables/iproute2.

I believe that the best way would be to have some more fields in the 
configuration files, which define which things to route and which not.


Regards,

Phil



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ruby
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-1) (ignored: 
LC_ALL set to de_AT)

Versions of packages vpnc depends on:
ii  iproute 20041019-3   Professional tools to control the 
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries 
an
ii  libgcrypt11 1.2.0-11 LGPL Crypto library - runtime 
libr
ii  libgpg-error0   1.0-1library for common error values 
an

-- no debconf information


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



Bug#299473: audacity: autosave function

2005-03-14 Thread Guaka
Package: audacity
Version: 1.2.3-1
Severity: wishlist


It would be extremely nice if Audacity had an autosave every N minutes
option. The program still crashes now and then (of which I'll try to
get some more specific details), and an autosave function would help
people to avoid losing lots of work.



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ck5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: 
LC_ALL set to C)

Versions of packages audacity depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libid3tag0  0.15.1b-3ID3 tag reading library from the M
ii  libmad0 0.15.1b-1MPEG audio decoder library
ii  libogg0 1.1.0-1  Ogg Bitstream Library
ii  libsndfile1 1.0.10-2 Library for reading/writing audio 
ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
ii  libvorbis0a 1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.0.1-1  The Vorbis General Audio Compressi
ii  libwxgtk2.4 2.4.2.6  wxWindows Cross-platform C++ GUI t

-- no debconf information


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



Bug#299471: FTBFS: config.sub not executable

2005-03-14 Thread Wouter Verhelst
Package: grip
Version: 3.2.0-4
Severity: serious
Justification: no longer builds from source

Hi,

There was an error trying to build your package from source. From the
build log:

Automatic build of grip_3.2.0-4 on kiivi by sbuild/m68k 1.170.5
Build started at 20050313-2154
**
[...]
checking sun/audioio.h usability... no
checking sun/audioio.h presence... no
checking for sun/audioio.h... no
configure: error: cannot run /bin/sh ./config.sub
make: *** [config.status] Error 1
[...]

As usual, a full build log can be found on http://buildd.debian.org/


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



Bug#296977: gworkspace.app: GWorkspace doesn't start on a VNC 8bit display

2005-03-14 Thread Lars Wirzenius
la, 2005-03-12 kello 10:19 +0100, Eric Heintzmann kirjoitti:
> Could try to run these commands ( not sure if you need to do that as 
> user or as root ) on the machine where gworkspace is  installed:
> 
> . /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh (there is space 
> between . an / at the beginning)
> defaults write NSGlobalDomain XWindowBufferUseXShm no

This didn't help, sorry. I tried both as root and as a normal user.



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



Bug#299330: hdparm exits when software raid isn't synced, seems to be intended

2005-03-14 Thread Stephen Gran
This one time, at band camp, Ralf Dragon said:
> > Does this seem sufficient to allow you to do what you need to do?
> 
> Yes. Some notification to root would be helpful. Perhaps some mail to root or 
> something logcheck takes note of if hdpams are not set.

Sounds good.  I have already done the environment variable work, and
I'll make sure the script exits with some string like 
*** RAID array not OK.  Exiting ***
or something.

Thanks again,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


pgpLMOQFJQIGJ.pgp
Description: PGP signature


Bug#297877: gnome-media: Fixed in 2.10

2005-03-14 Thread Andrew Ferrier
Package: gnome-media
Version: 2.8.0-0.2
Followup-For: Bug #297877

Apparently this is fixed in Gnome 2.10, so you might want to close this when 
that gets into unstable.

Thanks,
Andrew.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages gnome-media depends on:
ii  gstreamer0.8-misc0.8.7-3 Collection of various GStreamer pl
ii  gstreamer0.8-oss [gstrea 0.8.7-3 OSS plugin for GStreamer
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libaudiofile00.2.6-5 Open-source version of SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-1 The Bonobo UI library
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libesd0  0.2.35-2Enlightened Sound Daemon - Shared 
ii  libgail-common   1.8.2-1 GNOME Accessibility Implementation
ii  libgail171.8.2-1 GNOME Accessibility Implementation
ii  libgconf2-4  2.8.1-4 GNOME configuration database syste
ii  libgcrypt11  1.2.0-4 LGPL Crypto library - runtime libr
ii  libglade2-0  1:2.4.2-1   library to load .glade files at ru
ii  libglib2.0-0 2.6.2-1 The GLib library of C routines
ii  libgnome-keyring00.4.1-1 GNOME keyring services library
ii  libgnome2-0  2.8.1-2 The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.8.0-1 A powerful object-oriented display
ii  libgnomeui-0 2.8.0-3 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.8.3-11The GNOME virtual file-system libr
ii  libgnutls11  1.0.16-9GNU TLS library - runtime library
ii  libgpg-error01.0-1   library for common error values an
ii  libgstreamer-gconf0.8-0  0.8.7-3 GConf support for GStreamer
ii  libgstreamer-plugins0.8- 0.8.7-3 Various GStreamer libraries and li
ii  libgstreamer0.8-00.8.8-1 Core GStreamer libraries, plugins,
ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user interface 
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  liborbit21:2.10.5-0.1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.8.0-3 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libtasn1-2   0.2.10-3Manage ASN.1 structures (runtime)
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxml2  2.6.16-3GNOME XML library
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#299476: audacity: Noise removal makes it to sound "very digital"

2005-03-14 Thread Guaka
Package: audacity
Version: 1.2.3-1
Severity: normal


Noise removal makes it to sound "very digital".

Note: this is not really my own bugreport, I know it is very difficult
to do a well sounding noise removal. But I got the complaint that
Audacity isn't doing very well compared to Cool Edit Pro and Sound
Forge. I haven't used non-free audio software in a very long while, so
I cannot confirm this. So maybe make this a minor bug. Or a feature
request for a better noise removal.




-- System Information: Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ck5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: 
LC_ALL set to C)

Versions of packages audacity depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libid3tag0  0.15.1b-3ID3 tag reading library from the M
ii  libmad0 0.15.1b-1MPEG audio decoder library
ii  libogg0 1.1.0-1  Ogg Bitstream Library
ii  libsndfile1 1.0.10-2 Library for reading/writing audio 
ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
ii  libvorbis0a 1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.0.1-1  The Vorbis General Audio Compressi
ii  libwxgtk2.4 2.4.2.6  wxWindows Cross-platform C++ GUI t

-- no debconf information


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



Bug#287160: Reverse patch for 4.3.9-2

2005-03-14 Thread C.Y.M
Matthew Palmer wrote:
On Mon, Mar 14, 2005 at 12:27:10AM -0800, C.Y.M wrote:
Thanks for the debug patch.  I have applied it and reproduced the error, 
but I do not get any new debug info in the log.  I am running apache2 in 
debug mode.

That's... odd.  Once "Running query" gets printed, and "Query maybe-failed
isn't printed, you're out the bottom of safe_mysql_query, and then your
options for the next log message are one of "Group query failed", "Store
result failed", or "mysql_check_group complete".  I don't suppose you might
not have installed the compiled module correctly?  Perhaps change
AUTH_MYSQL_VERSION at the top to something unique, so you can check that
version string appears in the error log when you restart apache.
I'm sorry.. I must have messed up the patch the first time.  Now I am seeing the 
additional debug.  The result gives me a "0" which seems correct since the user 
is not in the "adm" group.

[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1483): Handling an 
authentication request for section /var/www/
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1524): Starting basic user 
auth for [test_user] in /var/www/, child pid 16898
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1338): Constructing password 
collection query with passfield=[passwd], table=[user_info], 
userfield=[test_user], where_clause=[]
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1192): sec->dbh in /var/www/ is
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1199): Ordinary query
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1204): No DB connection open 
- firing one up
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1096): Opening DB connection 
for /var/www/
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1165): Persistent in 
/var/www/ is 1
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1212): Correctly opened a 
new DB connection
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1216): Running query: 
[SELECT passwd FROM user_info WHERE username='test_user']
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1298): Checking with SHA1Sum
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1300): Auth succeeded
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1442): Making group query 
with auth_table=[user_group], auth_user_field=[username], esc_user=[test_user], 
esc_group=[adm], auth_group_field=[groups], where_clause=[]
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1449): Group query created; 
[SELECT count(*) FROM user_group WHERE username='test_user' and 
FIND_IN_SET('adm',groups)]
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1192): sec->dbh in /var/www/ is
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1199): Ordinary query
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1216): Running query: 
[SELECT count(*) FROM user_group WHERE username='test_user' and 
FIND_IN_SET('adm',groups)]
[Mon Mar 14 03:19:16 2005] [debug] mod_auth_mysql.c(1466): mysql_check_group 
complete; result [0]
[Mon Mar 14 03:19:16 2005] [crit] [client 10.1.1.66] configuration error: 
couldn't check access.  No groups file?: /adm/, referer: https://my.website.net/
[Mon Mar 14 03:19:16 2005] [info] Connection to child 4 closed with unclean 
shutdown(server my.website.net:443, client 10.1.1.66)

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


Bug#293057: kernel-image-2.6.10-1-686: Intel e100 NIC works with 2.6.8, fails with 2.6.9, 2.6.10

2005-03-14 Thread Aino de Vries
Package: kernel-image-2.6.10-1-686
Version: 2.6.10-6
Followup-For: Bug #293057

System is a Thinkpad A31 (2652-M5G). The e100 NIC worked fine with
kernel-image-2.6.8, but stopped working with with 2.6.9 and 2.6.10. No
error messages in syslog (as far as i can tell), the card appears to be
sending frames, but does not receive.

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

Versions of packages kernel-image-2.6.10-1-686 depends on:
ii  coreutils [fileutils] 5.2.1-2The GNU core utilities
ii  fileutils 5.2.1-2The GNU file management utilities 
ii  initrd-tools  0.1.77 tools to create initrd image for 
p
ii  module-init-tools 3.2-pre1-2 tools for managing Linux kernel 
mo

-- no debconf information


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



Bug#299278: French programs translation

2005-03-14 Thread Mathieu Roy
Christian Perrier <[EMAIL PROTECTED]> tapota :

>> msgstr "La dernière mise-à-jour fût effectuée en %s."
>>   -->
>> msgstr "La dernière mise-à-jour a été effectuée en %s."
>> 
>> I have nothing against applying this change but what makes the first
>> translation wrong?
>
> s/fût/fut anyway.
>

Ok.

>
> The suggestion here is using "passé composé" which is more common
>than "passé antérieur"

Hum. And afterward we complain that people only use a third of the
french language and ignore all about the rest :)



>> 
>> 3. 
>> msgstr " %"
>>   -->
>> msgstr "%"
>> 
>> I'm 99% this change is buggy. Units are always separated by a space in
>> French.
>
> Error on my side. I indeed changed the units ("Mo" to " Mo") and
> reverted this when I realised that the space is in the strings which
> use themunfortunately I also reveted the space before the percent
> sign, which is wrong as you mention. BTW, this should be a
> non-breaking space...

Yes but I have in my that pdbv could have something different html as
output. And putting html in po files would be a problem in this
regard.


-- 
Mathieu Roy

  +-+
  | General Homepage:   http://yeupou.coleumes.org/ |
  | Computing Homepage: http://alberich.coleumes.org/   |
  | Not a native english speaker:   |
  | http://stock.coleumes.org/doc.php?i=/misc-files/flawed-english  |
  +-+


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



Bug#299478: no CD when linux26 on SATA HP computer or hanging up on ide-detect when linux

2005-03-14 Thread Artur Górniak
Package: install
Severity: important

I have HP Compaq system with following PCI devices:

i:00:00.0 Host bridge: Intel Corp.: Unknown device 2580 (rev 04)
:00:02.0 VGA compatible controller: Intel Corp.: Unknown device
2582 (rev 04)
:00:02.1 Display controller: Intel Corp.: Unknown device 2782 (rev
04)
:00:1c.0 PCI bridge: Intel Corp. I/O Controller Hub PCI Express
Port 0 (rev
03)
:00:1c.1 PCI bridge: Intel Corp. I/O Controller Hub PCI Express
Port 1 (rev
03)
:00:1d.0 USB Controller: Intel Corp. I/O Controller Hub USB (rev 03)
:00:1d.1 USB Controller: Intel Corp. I/O Controller Hub USB (rev 03)
:00:1d.2 USB Controller: Intel Corp. I/O Controller Hub USB (rev 03)
:00:1d.3 USB Controller: Intel Corp. I/O Controller Hub USB (rev 03)
:00:1d.7 USB Controller: Intel Corp. I/O Controller Hub USB2 (rev
03)
:00:1e.0 PCI bridge: Intel Corp. 82801BA/CA/DB/EB/ER Hub interface
to PCI Bridge (rev d3)
:00:1e.2 Multimedia audio controller: Intel Corp. I/O Controller
Hub Audio (rev 03)
:00:1f.0 ISA bridge: Intel Corp. I/O Controller Hub LPC (rev 03)
:00:1f.2 IDE interface: Intel Corp. I/O Controller Hub SATA cc=ide
(rev 03)
:05:04.0 RAID bus controller: CMD Technology Inc Adaptec AAR-1210SA
SATA HostRAID Controller (rev 02)
:40:00.0 Ethernet controller: Broadcom Corporation: Unknown device
1677 (rev 01)

on recent install DVD 1 I have getting following problems:

* when using default installer my system is hanging up when inserting
  ide-detect kernel module. Without AAR-1210SA system is installing ok
  without Broadcom ethernet card (I need to have combined SATA
  controllers in BIOS)
* in linux26 installer there is no problem with ethernet card and
* AAR-1210SA but my CD-ROM disapeaers.

hard to five any solution of the problem. I am now recompiling 2.6.10
so if after recompile I will have SATA and CD-ROM there will be follow
up in this bug report.

I think that I had CD and RAID in 2.4.25 after booting up with
installed system so possible there is some problem in install kernel.

Not possible for me to inspect this further.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (101, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: LANG=pl_PL, LC_CTYPE=pl_PL (charmap=ISO-8859-2)


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



Bug#287160: Reverse patch for 4.3.9-2

2005-03-14 Thread C.Y.M
Matthew Palmer wrote:
On Mon, Mar 14, 2005 at 12:27:10AM -0800, C.Y.M wrote:
Thanks for the debug patch.  I have applied it and reproduced the error, 
but I do not get any new debug info in the log.  I am running apache2 in 
debug mode.

Out of curiosity, how do you define the access to each directory?  Are you 
defining the MySQL options within the .htaccess file or the apache2.conf file? 
What kind of mysql database structure are you using?  I have mine setup using 
separate tables (one for user and one for group).  The user table defines 
"username" and "passwd" with username as the primary key.  The group table 
contains "username" and "groups" with both fields set to the primary keys. Note: 
I have tested using a single table database structure and got the same results 
(username, passwd, and groups in a single table).

The MySQL username and pass is defined in the apache2.conf and the MySQL 
directives are set within the "sites-available" configs.

Example of apache2.conf:
--SNIP--
# Mod Auth MySQL Settings
Auth_MySQL_Info localhost mysql_auth password
Auth_MySQL_General_DB http_auth2
--SNIP--

Options Indexes FollowSymLinks MultiViews
AllowOverride AuthConfig
Auth_MySQL on
Auth_MySQL_Empty_Passwords off
Auth_MySQL_Encryption_Types SHA1Sum
Auth_MySQL_Password_Table user_info
Auth_MySQL_Group_Table user_group
Order allow,deny
Allow from all

--SNIP--
Then.. the .htaccess is like this:
AuthName "Authenticated Zone"
AuthType Basic
require group adm
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#298194: lmodern: New version 0.98 available

2005-03-14 Thread Frank Küster
Florent Rougon <[EMAIL PROTECTED]> schrieb:

> Hi,
>
> I think that version 0.98 is not suitable for unstable (without several
> fixes). 

I agree.

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




Bug#299480: synaptic: Package/Configure... on package with no settings is confusing

2005-03-14 Thread Andrew Ferrier
Package: synaptic
Version: 0.55+cvs20050218-1
Severity: normal

If I select Package/Configure... on a debconfable package with no settings to 
set right now (for example, adduser behaves like that on my system), the 
behaviour is confusing. If I run

dpkg-reconfigure -fgnome adduser

from the command line, it does indeed return to the command line straight 
away, which is probably expected. Since synaptic uses this (as far as I know), 
it seems to do nothing, which makes it look like it's ignoring the menu item 
entirely. I'm not sure about the best way to fix this, perhaps 
dpkg-reconfigure has a return code you could check?

Thanks,
Andrew.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (50, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages synaptic depends on:
ii  apt [libapt-pkg-libc6.3- 0.5.28.1Advanced front-end for dpkg
ii  gksu 1.2.4-1 graphical frontend to su
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libglade2-0  1:2.4.2-1   library to load .glade files at ru
ii  libglib2.0-0 2.6.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user interface 
ii  libncurses5  5.4-4   Shared libraries for terminal hand
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libvte4  1:0.11.11-5 Terminal emulator widget for GTK+ 
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxft2  2.1.2-6 FreeType-based font drawing librar
ii  libxml2  2.6.16-3GNOME XML library
ii  libxrender1  0.8.3-7 X Rendering Extension client libra
ii  scrollkeeper 0.3.14-9.1  A free electronic cataloging syste
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- debconf-show failed


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



Bug#299479: libvtk4: Incomplete shlibs file

2005-03-14 Thread Rafael Laboissiere
Package: libvtk4
Version: 4.4.2-4
Severity: normal

The shlibs files for libtvk4 and friends are incomplete, in the sense that
they lack version information.  This can be easily fixed by calling
dh_makeshlibs -V in debian/rules.  It will produce files like this:

libvtkCommon 4 libvtk4 (>= 4.4.2-4)
libvtkDICOMParser 4 libvtk4 (>= 4.4.2-4)
libvtkFiltering 4 libvtk4 (>= 4.4.2-4)
libvtkGraphics 4 libvtk4 (>= 4.4.2-4)
libvtkHybrid 4 libvtk4 (>= 4.4.2-4)
libvtkIO 4 libvtk4 (>= 4.4.2-4)
libvtkImaging 4 libvtk4 (>= 4.4.2-4)
libvtkParallel 4 libvtk4 (>= 4.4.2-4)
libvtkRendering 4 libvtk4 (>= 4.4.2-4)
libvtkfreetype 4 libvtk4 (>= 4.4.2-4)
libvtkftgl 4 libvtk4 (>= 4.4.2-4)

Fixing this will be very useful for the octaviz package, which depend on
libvtk >= 4.4.  Since the libvtk4 shlibs filers are wrong, when I use
dh_shlibdeps in octaviz, I get in substvars only libvtk4, without
versioned dependency.  For now, I am using a temporary shlibs.local as
the one shown above.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages libvtk4 depends on:
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libexpat11.95.8-1XML parsing C library - runtime li
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libice6  4.3.0.dfsg.1-10 Inter-Client Exchange library
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libsm6   4.3.0.dfsg.1-10 X Window System Session Management
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libtiff4 3.7.1-4 Tag Image File Format (TIFF) libra
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-10 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu1]   4.3.0.dfsg.1-10 Mesa OpenGL utility library [XFree
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information



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



Bug#299481: FIX Segfault when using make_options

2005-03-14 Thread Craig Shelley
Package: apt-build
Severity: serious
Tags: patch

apt-build segfaults when using make_options
This appears to be due to a typo in config.c (line 141)
if(args.make_options &&
strlen(args.options) &&
(str = strtok(args.options, " ")))
{

The code appears to check the validity of the wrong pointer, and should
be...

if(args.options &&
strlen(args.options) &&
(str = strtok(args.options, " ")))
{

This fixes the seg-fault problem


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-reiser4-fbsplash-swsuspend
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)


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



Bug#299412: zynaddsubfx: Menu Icon not referenced in menu file

2005-03-14 Thread Eduardo Marcel Macan
Sure! Thanks for the report.
I'll fix it in the 2.2 package too (which is currently waiting for 
libmxml to get into the archives to be uploaded)

tim hall wrote:
Package: zynaddsubfx
Version: 1.4.3-1.1
Severity: minor
Hi Eduardo,
For the Debian package please could you reference the XPM icon from 
/usr/lib/menu/zynaddsubfx by adding this:
icon="/usr/share/pixmaps/zynaddsubfx.xpm"
For more information, please refer to the updated Debian Policy:
http://www.debian.org/doc/packaging-manuals/menu.html/ch3.html#s3.7
This will ensure that your nice icon shows up in most menus.
Thanks for taking the time to deal with this, and thanks for all the effort you 
have put in to maintaining great free software.
tim hall
AGNULA/DeMuDi menu monitor
-- System Information:
Debian Release: 3.1
 APT prefers testing
 APT policy: (101, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-multimedia-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_GB)
Versions of packages zynaddsubfx depends on:
ii  fftw2 [fftw2-double 2.1.3-16 Library for computing Fast Fourier
ii  libasound2  1.0.8-3  ALSA library
ii  libc6   2.3.2.ds1-20.demudi1 GNU C Library: Shared libraries an
ii  libfltk1.1c102  1.1.6-2  Fast Light Toolkit shared librarie
ii  libjack0.80.0-0 0.99.0-2 JACK Audio Connection Kit (librari
ii  libstdc++5  1:3.3.5-8The GNU Standard C++ Library v3
ii  libxft2 2.1.2-6  FreeType-based font drawing librar
ii  xlibs   4.3.0.dfsg.1-10  X Keyboard Extension (XKB) configu
-- no debconf information
Esta mensagem foi verificada pelo E-mail Protegido Terra.
Scan engine: McAfee VirusScan / Atualizado em 11/03/2005 / Versão: 4.4.00 - Dat 
4445
Proteja o seu e-mail Terra: http://mail.terra.com.br/
 


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


Bug#24900: Uusi Julkkikset-sivusto

2005-03-14 Thread JULKKIKSET.FI
Hyvä median edustaja.

http://www.julkkikset.fi

http://www.julkkikset.fi/gallery/

http://www.julkkikset.fi/forum/


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



Bug#299482: dgate2: shared lib deps broken

2005-03-14 Thread Sami Liedes
Package: libgtkada2-dev
Version: 2.4.0-4
Severity: normal

dgate2 does not work:


$ dgate2
dgate2: error while loading shared libraries:
libgtkada_glade-2.4.so.0: cannot open shared object file: No such file
or directory


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing'), (150, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.11.2
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libgtkada2-dev depends on:
ii  gnat3.15p-12 The GNU Ada 95 compiler
ii  libc6-dev   2.3.2.ds1-20 GNU C Library: Development Librari
ii  libglade2-dev   1:2.4.2-1development files for libglade
ii  libgtk2.0-dev   2.6.2-4  Development files for the GTK+ lib
ii  libgtkada-2.4   2.4.0-4  Ada binding for the GTK library

-- no debconf information


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



Bug#299469: libclamav1: clamscan spins forever on linux-kernel digest 4-70 from lists.us.dell.com

2005-03-14 Thread Alessandro Polverini
On Mon, 2005-03-14 at 21:19 +1030, John Pearson wrote:
> Package: libclamav1
> Version: 0.83-3
> Severity: important
> 
> 
> clamd and clamscan appear to run forever trying to scan issue
> 4-70 of the linux-kernel daily digest from lists.us.dell.com.
> 
> I've attached (I hope) the output of 'clamscan --debug lk-4-70.eml'
> and the offending email.  I killed it after about 2 minutes
> on my athlon XP2100, but it seemed happy to run essentially forever
> on our mail server at work, so I assume it's looping on something.

I can confirm the bad behavior, today it has bitten me too :(

Alex



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



Bug#299366: ecawave: Menu Icon please

2005-03-14 Thread Junichi Uekawa
> If you're not graphically inclined, I'm prepared to create a suitable icon 
> and submit a menufile patch into the bargain. Please email me with your 
> requirements if this is the case.

Please do submit.

regards,
junichi


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



Bug#297770: Trying to link motion against ffmpeg failes...

2005-03-14 Thread Frederik Dannemare

On 3/14/2005, "Sam Hocevar" <[EMAIL PROTECTED]> wrote:
>On Mon, Mar 14, 2005, Frederik Dannemare wrote:
>
>> Thanks a bunch. Just the info I needed. That brings me down to:
>>
>> i386-linux-gcc  -o motion motion.o conf.o draw.o video.o track.o alg.o
>> event.o picture.o  rotate.o netcam.o netcam_wget.o webcam.o ffmpeg.o
>> xmlrpc-httpd.o control.o -lm -lavcodec -lvorbis -lvorbisenc -ldts -la52
>> -lz -lm -lpthread -ljpeg -L/usr/lib -lavformat -lavcodec -lm -lz
>> -L/usr/lib -lxmlrpc -lxmlrpc_xmlparse -lxmlrpc_xmltok  -L/usr/lib
>> -lmysqlclient -lz -L/usr/lib -lpq
>> /usr/lib/libavcodec.a(dtsdec.o)(.text+0x33d): In function
>> `dts_decode_frame':
>> : undefined reference to `dts_frame'
>
>   Mmmh, try to add an additional -ldts after the last -lavcodec. And I
>think you can remove the first -lavcodec.
>
>   The reason is that -lavformat uses avcodec symbols that are not
>used within motion, so these symbols are only linked in at the second
>-lavcodec occurrence. And since these new symbols probably use dts
>symbols, it's too late because the -ldts is behind.

Great, this was it. motion now builds with support for ffmpeg - and I've
learned something in the process.

Feel free to close this report.

Thanks,



Bug#298683: RFE: Ability to use /var/cache/apt/archives/ from outside the chroot for pbuilder create/update

2005-03-14 Thread Junichi Uekawa
> > but I think you are missing a large portion of point here; is
> > everything you need available from /var/cache/apt/archives? If that's
> > the case, that's the only source of Debian package you will ever need.
> > If not, you will need to work around debootstrap to get multiple deb
> > source working.
> 
> Ah, I see, so it's not the trivial amount of work I thought it might be.

So, what do you want this bugreport to  be?
Reassigned to debootstrap, as one of the duplicates or closed.


regards,
junichi


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



Bug#294826: [Evms-devel] Re: Bug#294826: kernel-image-2.4.27-1-686-smp: kernel panic in dm_snapshot.c

2005-03-14 Thread Alexander Kogan
Hi!

> The 2.4.27 kernel includes device-mapper 1.00.19 but
> does not include any of the EVMS patches. I
> am not entirely sure what to do about this, but
> if you could test the EVMS patches against
> the debian 2.4.27 kernel that would be an
> excellent start.

Ok. I'll try to test the kernel with EVMS snapshot patch and will replay you 
results.

-- 
Alexander Kogan
Institute of Applied Physics
Russian Academy of Sciences


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



Bug#299485: audacity: Pasting to an empty track should be on the cursor, not at the beginning

2005-03-14 Thread Guaka
Package: audacity
Version: 1.2.3-1
Severity: normal


When pasting to an empty track the sound is being put at the beginning
of the track. This can be very confusing, since when you're not
actually looking at the beginning you won't have any feedback of the
action. It's also wrong, since it would be much more logical to paste
on the current position. So please make it to paste to the current
position, and if this is somehow unwanted behaviour, move the current
view to the beginning.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ck5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: 
LC_ALL set to C)

Versions of packages audacity depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libid3tag0  0.15.1b-3ID3 tag reading library from the M
ii  libmad0 0.15.1b-1MPEG audio decoder library
ii  libogg0 1.1.0-1  Ogg Bitstream Library
ii  libsndfile1 1.0.10-2 Library for reading/writing audio 
ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
ii  libvorbis0a 1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.0.1-1  The Vorbis General Audio Compressi
ii  libwxgtk2.4 2.4.2.6  wxWindows Cross-platform C++ GUI t

-- no debconf information


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



Bug#299483: interface: clicking stop button twice should move cursor to start

2005-03-14 Thread Guaka
Package: audacity
Version: 1.2.3-1
Severity: wishlist


Like in many other audio editors, clicking the stop button twice
should move the cursor to the beginning.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ck5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: 
LC_ALL set to C)

Versions of packages audacity depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libid3tag0  0.15.1b-3ID3 tag reading library from the M
ii  libmad0 0.15.1b-1MPEG audio decoder library
ii  libogg0 1.1.0-1  Ogg Bitstream Library
ii  libsndfile1 1.0.10-2 Library for reading/writing audio 
ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
ii  libvorbis0a 1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.0.1-1  The Vorbis General Audio Compressi
ii  libwxgtk2.4 2.4.2.6  wxWindows Cross-platform C++ GUI t

-- no debconf information


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



Bug#299403: ecasound2.2: Menu Icon please

2005-03-14 Thread Junichi Uekawa
> 
> If you're not graphically inclined, I'm prepared to create a suitable icon 
> and submit a menufile patch into the bargain. Please email me with your 
> requirements if this is the case.


Please do submit.

regards,
junichi


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



Bug#299393: soundtracker: Menu Icon please

2005-03-14 Thread Junichi Uekawa
> If you're not graphically inclined, I'm prepared to create a suitable icon 
> and submit a menufile patch into the bargain. Please email me with your 
> requirements if this is the case.

Please do submit.

regards,
junichi


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



Bug#299486: Mozilla-firefox: firefox crashes

2005-03-14 Thread Vlad Lazar
Package: Mozilla-firefox
Version: 1.0.1-2
Severity: grave
Justification: renders package unusable

Whenever I try to write anything in the address bar or google search bar
the Firefox chases (I uninstalled all extensions and wiped out all
configuration files)


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.11
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages Mozilla-firefox depends on:
ii  debianutils  2.8.4   Miscellaneous utilities specific t
ii  fontconfig   2.2.3-4 generic font configuration library
ii  libatk1.0-0  1.8.0-4 The ATK accessibility toolkit
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libfontconfig1   2.2.3-4 generic font configuration library
ii  libfreetype6 2.1.7-2.3   FreeType 2 font engine, shared lib
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libglib2.0-0 2.6.3-1 The GLib library of C routines
ii  libgtk2.0-0  2.6.2-3 The GTK+ graphical user interface 
ii  libidl0  0.8.3-1 library for parsing CORBA IDL file
ii  libjpeg626b-9The Independent JPEG Group's JPEG 
ii  libkrb53 1.3.6-1 MIT Kerberos runtime libraries
ii  libpango1.0-01.8.1-1 Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxft2  2.1.2-6 FreeType-based font drawing librar
ii  libxp6   4.3.0.dfsg.1-10 X Window System printing extension
ii  libxt6   4.3.0.dfsg.1-10 X Toolkit Intrinsics
ii  psmisc   21.5-1  Utilities that use the proc filesy
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#299484: audacity: Playing the sound shouldn't block editting

2005-03-14 Thread Guaka
Package: audacity
Version: 1.2.3-1
Severity: wishlist


It should be possible to keep on working on the project while
listening to it.

If you devs are scared this might brake some things: make it optional
so that people like me, who prefer to listen while editting can live
with the possible dangers (if the autosave option I wished for in
another bugreport is implemented as well this would be less of a
problem).



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-ck5
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: 
LC_ALL set to C)

Versions of packages audacity depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-6GCC support library
ii  libid3tag0  0.15.1b-3ID3 tag reading library from the M
ii  libmad0 0.15.1b-1MPEG audio decoder library
ii  libogg0 1.1.0-1  Ogg Bitstream Library
ii  libsndfile1 1.0.10-2 Library for reading/writing audio 
ii  libstdc++5  1:3.3.5-5The GNU Standard C++ Library v3
ii  libvorbis0a 1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.0.1-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.0.1-1  The Vorbis General Audio Compressi
ii  libwxgtk2.4 2.4.2.6  wxWindows Cross-platform C++ GUI t

-- no debconf information


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



Bug#299445: [Logcheck-devel] Bug#299445: logcheck: invalid regulart expression

2005-03-14 Thread maximilian attems
tags 299445 moreinfo
thanks

On Mon, 14 Mar 2005, Slaanesh wrote:

> Package: logcheck
> Version: 1.2.35
> Severity: grave
> Justification: renders package unusable

not shure about this, as it works for lots others,
but let's wait if you can back it up.
 
> Command /usr/sbin/logcheck dies with following error message:
> grep: invalid regular expression

please do as root:
su -s /bin/bash -c "/usr/sbin/logcheck -t -d" logcheck 2> errors

and send in the errors file.

--
maks


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



Bug#247993: sparc and silo

2005-03-14 Thread Lionel Elie Mamane
The install system let me create XFS partitions without warning, but
then cannot install silo because the latter doesn't support XFS. The
install system should warn people when they select filesystems that
won't work!

The silo install is not idempotent: it is thus impossible to try again
without manual fiddling. The precise problem is the "ln -s . etc" and
"ln -s . boot": the install should check if these links already exist
and not fail if these are already the right ones!

-- 
Lionel


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



Bug#296552: More info, please

2005-03-14 Thread Ralf Hildebrandt
> The flurry screensaver does show right in the previsualization screen

Of which program? xscreensaver-demo?

> but when the screensaver is activated it shows a strange behaviour. So
> to say, instead of smooth sapes sharp random staight lines appear.

I cannot reproduce that here, neither with 4.16 nor with 4.20
How does it look like if you call /usr/lib/xscreensaver/flurry directly?



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



  1   2   3   4   5   >