Bug#353513: Stateful IPv6 w/ iptables 1.3.5 and the new upcomming kernel 2.6.16

2006-02-19 Thread Joerg Schuetter
Package: iptables
Version: 1.3.3-2
Severity: wishlist

Hi

With the new kernel (2.6.16) it will be possible to use stateful
inspection of ipv6 traffic w/o any patch from usagi or similar.
This feature requires iptables 1.3.5 (or later).
Can you please make a package with the new version.

Joerg

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

Versions of packages iptables depends on:
ii  libc6 2.3.6-1GNU C Library: Shared libraries an

iptables recommends no packages.

-- no debconf information


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



Bug#353493: Coq cannot compile CoRN: solution

2006-02-19 Thread Lionel Elie Mamane
tags 353493 +patch
thanks

I could reproduce the problem with a self-compiled Coq _without_ the
OCaml 3.09 adaptation patch. Please apply
ftp://ftp.inria.fr/INRIA/coq/V8.0pl3/patch-coq-8.0pl3-ocaml-3.09 to
the Debian Coq package.

-- 
Lionel


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



Bug#352103: NMU Patch to fix this bug

2006-02-19 Thread Matt Brown
On Sat, 2006-02-18 at 08:06 +0100, Javier Fernández-Sanguino Peña wrote:

> Should the check
> 
>  [ ! -f "$PIDFILE" ] && return 1
> 
> cover that? I don't see why that should fail, if the PIDFILE does not exist
> it should not go ahead and try to read from it.

It will cover it for most cases, but there is a race in the pathological
case where you call stop twice in quick succession and the second call
gets through to the running function before the TERM signal from first
reaches the daemon and causes the pidfile to be removed. 

Doesn't happen very often, perhaps never in real life, but my tests were
running two stops in a row (/etc/init.d/portreserve
stop; /etc/init.d/portreserve stop) which did trigger it. It doesn't
hurt the code to handle it nicely, so why not make the script more
robust? 

Cheers

-- 
Matt Brown
[EMAIL PROTECTED]
Mob +64 21 611 544 www.mattb.net.nz


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


Bug#353514: libsvn-mirror-perl: avoid `used uninitialized' warning

2006-02-19 Thread Jim Meyering
Package: libsvn-mirror-perl
Version: 0.68-1
Severity: minor
Tags: patch

*** Please type your report below this line ***
Typing `C-d' at a password prompt provokes a used-uninitialized warning.
However, the first time I saw this I didn't actually type Ctrl-D,
but rather simply typed `C-x C-q' from emacs to see what an attempt
to commit would provoke here.

Reproduce like this, typing Ctrl-D at the prompt:

  $ svk co svn://svn.clkao.org/svk/trunk svk-trunk
  $ cd svk-trunk/lib/SVK
  $ echo foo > Util.pm
  $ svk ci -m. Util.pm
  Commit into mirrored path: merging back directly.
  Merging back to mirror source svn://svn.clkao.org/svk/trunk.
  Authentication realm:  svk repository
  Password for 'meyering':
  Authentication realm:  svk repository
  Username: Use of uninitialized value in chomp at 
/usr/share/perl5/SVN/Mirror/Ra.pm line 284.
  Password for '':

Here's a patch (to /usr/share/perl5/SVN/Mirror/Ra.pm) that also
fixes the same problem a few lines above, in _ssl_client_cert_prompt:

* Ra.pm (_ssl_client_cert_prompt, _username_prompt): Test for
undefined before using `chomp'.

--- /t/Ra.pm2005-12-30 16:30:28.0 +0100
+++ /t/Ra.pm2006-02-19 09:10:02.217108426 +0100
@@ -262,7 +262,9 @@ sub _ssl_client_cert_prompt {
 my ($cred, $realm, $may_save, $pool) = @_;
 
 print "Client certificate filename: ";
-chomp(my $filename = );
+my $filename = ;
+$filename = '' unless defined $filename;
+chomp $filename;
 $cred->cert_file($filename);
 
 return OK;
@@ -281,8 +283,9 @@ sub _username_prompt {
 
 print "Authentication realm: $realm\n" if defined $realm and length $realm;
 print "Username: ";
-chomp(my $username = );
+my $username = ;
 $username = '' unless defined $username;
+chomp $username;
 
 $cred->username($username);
 

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

Versions of packages libsvn-mirror-perl depends on:
ii  libclass-accessor-perl  0.22-1   Automated accessor generator
ii  libfile-chdir-perl  0.06-1   A more sensible way to change dire
ii  libsvn-core-perl1.2.3dfsg1-3 perl bindings for Subversion (aka.
ii  libsvn-simple-perl  0.27-1   A simple interface for writing a d
ii  libterm-readkey-perl2.30-3   A perl module for simple terminal 
ii  libtimedate-perl1.1600-5 Time and date functions for Perl
ii  liburi-perl 1.35-1   Manipulates and accesses URI strin
ii  perl5.8.8-2  Larry Wall's Practical Extraction 

libsvn-mirror-perl recommends no packages.

-- no debconf information


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



Bug#353515: miscfiles: please clarify license for GNU Manifesto

2006-02-19 Thread Peter Samuelson

Package: miscfiles
Version: 1.4.2-1

The miscfiles copyright file says GNU-manifesto.gz is distributed under
the GPL.  The file itself says "Modified versions may not be made."

Please edit the file to remove the misleading statement, perhaps
replacing it with a standard GPL notice header.  (Or, if the statement
is actually correct, obviously stop distributing the file in main.)


signature.asc
Description: Digital signature


Bug#227386: libc6-dev: ENOTSUP==EOPNOTSUPP, which violates SUSv3

2006-02-19 Thread Brian M. Carlson
severity 227386 important
clone 227386 -1
reassign -1 linux-2.6
retitle -1 linux-2.6: ENOTSUP and EOPNOTSUPP should be different
thanks, control, and have a nice day

[Copied and pasted from the bug log, because I don't have the original.]

> At Mon, 12 Jan 2004 22:21:39 +,
> Brian M. Carlson <[EMAIL PROTECTED]> wrote:
> > ENOTSUP is the same as EOPNOTSUPP.
> 
> Because linux kernel does not distinct both, moreover they don't
> return ENOTSUP.

I have cloned this to the Linux kernel.  I really don't care which package
fixes it, as long as it is fixed, and soon.

My complaint is not that Linux doesn't return one or the other code, it's
that they are the same, which breaks code that checks for both, as well as
violating SUSv3.

> > SUSv3 requires these two values to be
> > distinct, even though no function uses both of them. The obvious
> > solution is for glibc to remap EOPNOTSUPP to the new ENOTSUP code when
> > the error code should be ENOTSUP. The SUSv3 functions that use ENOTSUP
> > are:
> 
> Well SuSv3 said that:
> 
> 7685   The  header shall provide a declaration for errno 
> and give positive values for the
> 7686   following symbolic constants. Their values shall be unique 
> except as noted below. |
   
^^^
Please note that this is not the case in GNU/Linux.  Last time I checked 
(yesterday),
only EAGAIN and EWOULDBLOCK are allowed (but not required) to be the
same.

> However from checking below functions, they merely returns ENOTSUP.
> Only pthread_attr_setscope and timer_create return ENOTSUP.  Linux
> kernel provides almost all function or just returns ENOSYS.  Is this
> modification really needed?  I believe it's really trivial.

I don't understand your first sentence WRT your second sentence.
The list I gave that you quoted only included functions that
return ENOTSUP.

I agree that the problem is trivial, but it's still a bug, and it
bites me frequently.  I am a little disappointed that a bug that
is probably quite trivial to fix has been open for over two
years.

Anyway, my problem is that the fact that these two errors are
the same is causing my code to break very badly.  I have a
library that contains its own error codes that will be negative
if casted to an int.  Additionally, I want to support the use
of the standard errno.h error codes.  To make my life easier,
I am using a script to generate a list of valid error codes:
the POSIX ones, as well as mine.  The code generated by the
script uses a switch statement to check whether a code is
valid.  But because two case statements cannot have the same
value, I get compiler errors.  I have logic to check for
EAGAIN and EWOULDBLOCK, and only use one if both are the same;
I'd prefer not to have to do this for other pairs.

So, here are some solutions, as I see them (in order of my
preference):
0. glibc fixes the error codes so that they are different
(I prefer this because GNU/kFreeBSD has the same problem,
unfortunately).
1. Linux fixes the error codes so that they are different.
2. I use a series of if statements to work around the bug.
If gcc warns that one of the statements will never be reached,
I punt and use option 3 instead, after wasting an hour.
3. I work around the bug by adding logic to check if they
are the same and print a big fat warning telling people
that GNU/Linux is buggered and encouraging people to use
an OS that cares about POSIX compatibility.
4. I tell people that GNU/Linux is not supported out of the
box.

Right now, it looks like if either 0 or 1 don't happen by
18:00 UTC on Monday, that I will do option 2 (falling back
to option 3 as stated).



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



Bug#346256: gnome-swallow-applet: Fails to swallow i8kmon

2006-02-19 Thread Josselin Mouette
Le vendredi 06 janvier 2006 à 11:20 -0600, Zachary C. Miller a écrit :
> When I add a swallow applet to my panel and configure it to run i8kmon it 
> works initially but when I log out and log back in to GNOME the i8kmon runs 
> but does not get swallowed. First I get an error dialog: 
> 
> Swallower Applet: Could not find a window named "i8kmon" (ran program 
> "i8kmon")
> 
> Then later the i8kmon starts in it's own non-swallowed window. If I
> right click on the blank area in the panel where the swallowed applet
> should be I get the reconfigure menu and if I just click "ok" without
> changing the already filled-in values the running applet gets
> swallowed.

First, sorry for the late reply.

This happens when the application you are trying to swallow is taking
too much time to start. I've also noticed that it may be gnome-swallow
itself that prevents the application from starting, by hugging the CPU.
However, this seems to be fixed with GNOME 2.12. Could you try again
with an up-to-date etch or sid system?

Regards,
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom


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


Bug#353517: gnome-screensaver: Should depend on dbus

2006-02-19 Thread Mattia Monga
Package: gnome-screensaver
Version: 0.0.24-2
Severity: normal

I was not able to understand why my gnome-screensaver failed with the message

gnome-screensaver-WARNING **: failed to register with the message bus

I worked a lot to find out that one has to export a variable
DBUS_SESSION_BUS_ADDRESS containing the address of dbus obtained with
dbus-daemon-1 --session --print-address (All these machinery can actually be 
substituted by a gnome-session launched by dbus-launch)

In fact, when I installed the package dbus, I discovered that all this work is 
actually done by /etc/X11/Xsession.d/75dbus_dbus-launch ...

Thus, gnome-screensaver should depend on dbus or at least, the machinery should 
be documented in a README.Debian


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

Versions of packages gnome-screensaver depends on:
ii  gconf2 2.12.1-9  GNOME configuration database syste
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.10.3-1  The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libavahi-client3   0.6.7-1   Avahi client library
ii  libavahi-common3   0.6.7-1   Avahi common library
ii  libavahi-compat-howl0  0.6.7-1   Avahi Howl compatibility library
ii  libbonobo2-0   2.10.1-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.10.1-2  The Bonobo UI library
ii  libc6  2.3.6-1   GNU C Library: Shared libraries an
ii  libcairo2  1.0.2-3   The Cairo 2D vector graphics libra
ii  libdbus-1-20.60-6simple interprocess messaging syst
ii  libdbus-glib-1-2   0.60-6simple interprocess messaging syst
ii  libesd-alsa0 [libesd0] 0.2.36-3  Enlightened Sound Daemon (ALSA) - 
ii  libexif12  0.6.12-2  library to parse EXIF files
ii  libfontconfig1 2.3.2-1.1 generic font configuration library
ii  libfreetype6   2.1.10-1  FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0]0.1.7-3   Client library for the gamin file 
ii  libgconf2-42.12.1-9  GNOME configuration database syste
ii  libgcrypt111.2.2-1   LGPL Crypto library - runtime libr
ii  libglade2-01:2.5.1-2 library to load .glade files at ru
ii  libglib2.0-0   2.8.6-1   The GLib library of C routines
ii  libgnome-keyring0  0.4.7-1   GNOME keyring services library
ii  libgnome-menu2 2.12.0-2.1an implementation of the freedeskt
ii  libgnome2-02.12.0.1-5The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.12.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.12.1-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.12.2-6  GNOME virtual file-system (runtime
ii  libgnutls111.0.16-14 GNU TLS library - runtime library
ii  libgpg-error0  1.1-4 library for common error values an
ii  libgtk2.0-02.8.12-1  The GTK+ graphical user interface 
ii  libice66.9.0.dfsg.1-4Inter-Client Exchange library
ii  libjpeg62  6b-11 The Independent JPEG Group's JPEG 
ii  liborbit2  1:2.12.4-1libraries for ORBit2 - a CORBA ORB
ii  libpam0g   0.79-3.1  Pluggable Authentication Modules l
ii  libpango1.0-0  1.10.3-1  Layout and rendering of internatio
ii  libpng12-0 1.2.8rel-5PNG library - runtime
ii  libpopt0   1.7-5 lib for parsing cmdline parameters
ii  libsm6 6.9.0.dfsg.1-4X Window System Session Management
ii  libtasn1-2 0.2.17-1  Manage ASN.1 structures (runtime)
ii  libx11-6   6.9.0.dfsg.1-4X Window System protocol client li
ii  libxcursor11.1.3-1   X cursor management library
ii  libxext6   6.9.0.dfsg.1-4X Window System miscellaneous exte
ii  libxi6 6.9.0.dfsg.1-4X Window System Input extension li
ii  libxinerama1   6.9.0.dfsg.1-4X Window System multi-head display
ii  libxml22.6.23.dfsg.1-0.1 GNOME XML library
ii  libxrandr2 6.9.0.dfsg.1-4X Window System Resize, Rotate and
ii  libxrender11:0.9.0.2-1   X Rendering Extension client libra
ii  libxss16.9.0.dfsg.1-4X Screen Saver client-side library
ii  libxxf86vm16.9.0.dfsg.1-4X Video Mode selection library
ii  zlib1g 1:1

Bug#353461: [2.6.16-rc3,powerpc] asm/highmem.h not found (ARCH=ppc vs. ARCH=powerpc)

2006-02-19 Thread Sven Luther
On Sat, Feb 18, 2006 at 06:52:41PM +0100, Rene Engelhard wrote:
> Package: linux-2.6
> Severity: important
> Version: 2.6.15+2.6.16-rc3-0experimental.0snapshot.5916
> 
> [ Sven tells me to file a bug here; although this package is unofficial
> and not-in-Debian I'll do so. complain at him if you think like me... ]
> 
> Hi,
> 
> while trying to build bcm43xx against 2.6.16-rc3:
> 
> mkdir -p 
> /home/rene/Debian/Pakete/bcm43xx/bcm43xx-20060215/drivers/net/wireless/bcm43xx/.tmp_versions
> make -f scripts/Makefile.build 
> obj=/home/rene/Debian/Pakete/bcm43xx/bcm43xx-20060215/drivers/net/wireless/bcm43xx
>   gcc 
> -Wp,-MD,/home/rene/Debian/Pakete/bcm43xx/bcm43xx-20060215/drivers/net/wireless/bcm43xx/.bcm43xx_main.o.d
>   -nostdinc -isystem /usr/lib/gcc/powerpc-linux-gnu/4.0.3/include 
> -D__KERNEL__ -Iinclude  -include include/linux/autoconf.h -Iarch/powerpc 
> -Iarch/powerpc/include -DCONFIG_BCM43XX=1 -DCONFIG_BCM43XX_DMA=1 
> -DCONFIG_BCM43XX_PIO=1 -DCONFIG_BCM43XX_DEBUG=1   -DMODULE 
> -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(bcm43xx_main)"  
> -D"KBUILD_MODNAME=KBUILD_STR(bcm43xx)" -c -o 
> /home/rene/Debian/Pakete/bcm43xx/bcm43xx-20060215/drivers/net/wireless/bcm43xx/.tmp_bcm43xx_main.o
>  
> /home/rene/Debian/Pakete/bcm43xx/bcm43xx-20060215/drivers/net/wireless/bcm43xx/bcm43xx_main.c
> In file included from include/linux/skbuff.h:27,
>  from include/linux/if_ether.h:110,
>  from include/linux/netdevice.h:29,
>  from include/linux/if_arp.h:26,
>  from 
> /home/rene/Debian/Pakete/bcm43xx/bcm43xx-20060215/drivers/net/wireless/bcm43xx/bcm43xx_main.c:34:
> include/linux/highmem.h:12:25: error: asm/highmem.h: No such file or directory
> [...]

08:51 < miltonm> svenl: ok well it is still in the include/ppc diretory ... if
(s)he is trying to build a seperate modules against ARCH=ppc then there were
 some issues with that directory ... otherwise i wouuld look
at which headers include that file and then look at those in
include/asm-powerpc

08:56 < svenl> miltonm: he is trying to build with ARCH=powerpc.
08:56 < svenl> miltonm: as supposedly 2.6.16-rc* now defaults to ARCH=powerpc.

08:59 < miltonm> svenl yes it does  i don't have a tree handy, but i would
guess asm/highmem.h should be indirectly included by some other mm header, and
 that was absorbed.  hence grep highmem.h include/ssm-p*pc/*.h
09:00 < svenl> miltonm: so you think it should be working ?
09:00 < miltonm> svenl: if its included under powerpc somwhere then it is the
kbuild for ext modules (seperate objdir?)  problems
09:00 < svenl> ok.
09:01 < miltonm> svenl: well, it could be no one has built with highmem
defined since the move (since ppc64 has !config_highmem and ben and paul might
hack
 2g/2g
09:02 < svenl> miltonm: that is also my guess.
09:02 < svenl> since most of you guys build with ppc64 those days :)
09:02 < miltonm> svenl: well they also build for their laptops but like i
said, maybe 2g/2g

09:03 < miltonm> svenl: or 32 bit grabs the old headers via
arch/powerpc/include symlink ??
09:04 < miltonm> like i said i don't have a src tree here , laptop is
elsewhere.
09:04 < svenl> miltonm: oh, there is still such a trick, i thought it would
die for arch/powerpc.
09:04 < svenl> hehe.
09:04 < miltonm> well, yea, that link should die, and i forget which way it
went.
09:05 < miltonm> svenl maybe linux/highmem.h vs asm/highmem.h ? or like you
said, no one tested highmem
09:05 < svenl> miltonm: there was a link from arch/ppc/include to the powerpc
stuff, i didn't know of a link the other way around.
09:05  * miltonm should stop speculating
09:05 < svenl> miltonm: i will be offline next week, will ask _rene_ to
investigate and eventually come here.
09:05 < svenl> ok ?
09:06 < miltonm> yea probably right ... is there anohter file that defines
those functions under include/asm-powerpc?

Rene, hope this helps, can you investigate and comment on this bug report.
Bastian i will be offline or mostly so until fosdem, can you fix this if it
ends up being a linux-2.6 header packaging bug ? 

Friendly,

Sven Luther



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



Bug#348421: (forw) Re: Bug#348421: samba: please remove broken vfs module: extd_audit

2006-02-19 Thread Christian Perrier

> > Quoting juan ([EMAIL PROTECTED]):
> > > Package: samba
> > > Version: 3.0.21a-1
> > > Severity: normal
> > > 
> > > looking at the source code, it's clear the the parameters announced in
> > > the samba doc are pure fiction. (log level = 0 vfs:x).
> > > please remove extd_audit until it's fixed upstream, it's just dangerous
> > > for a production server and confusing for the users.
> > 
> > Do you have more information for us to provide to upstream?
> 
> i can take an example :
> 
> vfs_extd_audit.c:151
> 
> 151 static SMB_STRUCT_DIR *audit_opendir(vfs_handle_struct *handle, 
> connection_struct *conn, const char *fname, const char *mask, uint32 a
> ttr)
> 152 {
> 153 SMB_STRUCT_DIR *result;
> 154 
> 155 result = SMB_VFS_NEXT_OPENDIR(handle, conn, fname, mask, attr);
> 156 
> 157 syslog(audit_syslog_priority(handle), "opendir %s %s%s\n",
> 158fname,
> 159(result == NULL) ? "failed: " : "",
> 160(result == NULL) ? strerror(errno) : "");
> 161 DEBUG(1, ("vfs_extd_audit: opendir %s %s %s\n",
> 162fname,
> 163(result == NULL) ? "failed: " : "",
> 164(result == NULL) ? strerror(errno) : ""));
> 165 
> 166 return result;
> 
> 
> The documentation say that you can controll verbosity
> http://us3.samba.org/samba/docs/man/Samba-HOWTO-Collection/VFS.html#id2617000
> 
> with log level = 0 vfs:0
> : Make Directory, Remove Directory, Unlink
> 
> it's clear that in audit_opendir(), the call is logged to syslog all the time.


Well, even though there is probably a bug, I don't think that this one
is enough to request for the *removal* of the module.

You probably have other examples, so please mention them.

Please also answer to the bug report, not to me directly.




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



Bug#353518: mozilla-thunderbird: crashes after upgrade libxft2 when opening a inbox folder

2006-02-19 Thread Manolo Díaz
Package: mozilla-thunderbird
Version: 1.0.7-3
Severity: important



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (1001, 'testing'), (101, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15.4
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

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

Versions of packages mozilla-thunderbird recommends:
ii  myspell-es [myspell-dictionar 1.9-1  The Spanish dictionary for myspell
pn  xprint (no description available)

-- debconf-show failed

Hi,
when I try to open a inbox folder this is what I get:

-
[EMAIL PROTECTED]:~$ mozilla-thunderbird
selected locale: es-ES
DOUBLE-CLICK: 250 --> -1 THRESHOLD: 8 --> -1 
/usr/lib/mozilla-thunderbird/mozilla-thunderbird-bin: symbol lookup error: 
/usr/lib/libXft.so.2: undefined symbol: FT_GlyphSlot_Embolden
-

Best Regards,
Manolo Díaz



Bug#353377: Buggy: find -name "*.gz" \! -regex '.*\n.*'

2006-02-19 Thread Andreas Metzler
On 2006-02-17 Victor Porton <[EMAIL PROTECTED]> wrote:
> Package: findutils
> Version: 4.2.27-1
> Severity: normal

> find -name "*.gz" \! -regex '.*\n.*'

> The above command produces listing of zero files, even if there are *.gz
> files (without \n in filename) in the current directory.
[...]

Hello,
Is there any documentation that \n *should* actually work? This does:
find -name "*.gz" \! -regex '.*
.*'

Compare with grep. - \t in the matching pattern matches a literal "\t"
but not a tabulator character. - A literal tab-character (inserted
with "Ctlr-v " works as expected.
--
[EMAIL PROTECTED]:/tmp$ printf 'foo\tbar\nblah\nbackslasht \\t\n' \
| egrep '\t'
backslasht \t
[EMAIL PROTECTED]:/tmp$ printf 'foo\tbar\nblah\nbackslasht \\t\n' \
| grep '\t'
backslasht \t
[EMAIL PROTECTED]:/tmp$ printf 'foo\tbar\nblah\nbackslasht \\t\n' \
| grep ''
foo bar
--

   cu andreas
-- 
The 'Galactic Cleaning' policy undertaken by Emperor Zhark is a personal
vision of the emperor's, and its inclusion in this work does not constitute
tacit approval by the author or the publisher for any such projects,
howsoever undertaken.(c) Jasper Ffforde


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



Bug#353519: xchat: Tab close icon clipped

2006-02-19 Thread Josselin Mouette
Package: xchat
Version: 2.6.1-1
Severity: normal
Tags: patch

When using an icon theme that provides the "tab close" icon, it appears 
clipped in xchat.

This is because xchat is using gtk_widget_set_usize on the icons. The 
GTK+ documentation strongly recommends not using this function, because 
it can lead to various breakage of the like.

The attached patch fixes the bug, without any other UI change that I 
could notice so far.

Regards,
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom
--- src/fe-gtk/gtkutil.c.old2006-02-19 10:07:07.0 +0100
+++ src/fe-gtk/gtkutil.c2006-02-19 10:07:21.0 +0100
@@ -440,7 +440,6 @@
if (stock)
{
img = gtk_image_new_from_stock (stock, GTK_ICON_SIZE_MENU);
-   gtk_widget_set_usize (img, 8, 6);
gtk_container_add (GTK_CONTAINER (bbox), img);
gtk_widget_show (img);
}


Bug#353520: dh-make: sample rules file doesn't use CFLAGS correctly

2006-02-19 Thread Julian Gilbey
Package: dh-make
Version: 0.40

The sample debian/rules files set CFLAGS = -Wall -g
But as this is neither used in the example build: target (as $(MAKE)
CFLAGS="$(CFLAGS)") nor exported (export CFLAGS), this variable can
easily be ignored.

   Julian


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



Bug#328586: RM ean13 -- last maintainer upload in 2000, NMU in 2003; superceeded by other packages

2006-02-19 Thread Don Armstrong
clone 328586 -1
reassign -1 ftp.debian.org
severity -1 normal
retitle -1 RM ean13 -- last maintainer upload in 2000, NMU in 2003; superceeded 
by other packages
thanks

As there has been no resolution to the RC bug which has been open
since September, this package has been basically unmaintained for the
past 5 years, and there are other packages in the archive which
provide the functionality of ean13, I'm asking for its removal.


Don Armstrong

-- 
"The trouble with you, Ibid" he said, "is that you think you're the
biggest bloody authority on everything"
 -- Terry Pratchet _Pyramids_ p146

http://www.donarmstrong.com  http://rzlab.ucr.edu


signature.asc
Description: Digital signature


Bug#346256: gnome-swallow-applet: Fails to swallow i8kmon

2006-02-19 Thread Zachary C. Miller
Josselin Mouette wrote:
> First, sorry for the late reply.

No problem. This is a minor annoyance rather than a show stopper so
I'm just glad someone is getting around to it at all!

> This happens when the application you are trying to swallow is taking
> too much time to start. I've also noticed that it may be gnome-swallow
> itself that prevents the application from starting, by hugging the CPU.
> However, this seems to be fixed with GNOME 2.12. Could you try again
> with an up-to-date etch or sid system?

I am running etch with gnome packages version 2.12.2-4 and I still
have the exact same problem.

ii  i8kutils 1.27  utilities for Dell Inspiron and Latitude lap
ii  gnome-swallow-applet 1.2-2 meta-applet to embed any application in the
ii  gnome-common 2.12.0-1  common scripts and macros to develop with GN

These are all the same versions as currently found in sid.

-- 
Zachary C. Miller - @= - http://zach.chambana.net/
IMSA 1995 - UIUC 2000 - Just Another Leftist Muppet - Ya Basta!
 Social Justice, Community, Nonviolence, Decentralization, Feminism,
 Sustainability, Responsibility, Diversity, Democracy, Ecology


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



Bug#346280: Merging bugs

2006-02-19 Thread Christian Perrier
reassign 346280 defoma
merge 346280 344296
thanks

Some investigation has shown that this bug is definitely a defoma
bug. Thanks to Josselin Mouette and François Jeanmougin who analysed
this quickly on a French-speaking IRC channel.


-- 





Bug#347650: libtool: Incorrect argument reordering

2006-02-19 Thread Ralf Wildenhues
* Loïc Minier wrote on Sat, Feb 18, 2006 at 09:07:19PM CET:
> On mer, jan 11, 2006, Kurt Roeckx wrote:
> > I suggest if you create a convience library, you don't link any
> > libraries to it at that time.  Instead, when you are linking in
> > the convience libraries to something, at that point you should
> > add those libraries.  This will avoid libtool from adding all the
> > depedency libraries on the command line.
> 
>  Unfortunately, the convenience library depends on another libtool
>  archive which is not a convenience lib, but a real library.

I don't quite know what you suggest what should happen here, but:
when you create a convenience lib, and add real libs as dependencies on
the command line, then _all_ libtool will do is add them to the
`dependency_libs' variable.  Nothing will differ wrt. the created file
libfoo.a.

That's usually *convenient*, because the whole purpose of that adding is
that, when you later put the convenience archive into a real library,
you don't forget to *also* link against those other libraries.

There simply is no indirection to be eliminated here.  None.  A
convenience archive will never exist as an installed entity, so you're
effectively just adding information that some link should also pull in
other links.  If you now don't want that information added, then simply
don't do it.

> Beside,
>  that convenience libcommon.la is used in some places, and it would be
>  inconvenient to change that (ie. upstream probably wouldn't like it).
> 
>  I'm not sure why libtool has to link all dependency_libs of a
>  convenience library.

Because there simply is no indirection to make use of.  The lib in which
the convenience lib will be merged into, will be a *direct* user of all
dependencies of this convenience lib.

Cheers,
Ralf



Bug#353454: gamin solves this problem

2006-02-19 Thread Daniel Rodriguez Garcia
Hello,

Installing gamin package (replaces fam) solves this problem.

I found this workaround by chance:

- I installed other packages on one of my computers, which
  required gamin.
- I noticed change in nautilus behaviour (now: no problem)
- I also installed gamin on my other comp. and reproduced
  the same change in behaviour.

Please investigate as all this may affect many other users.

Thanks


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



Bug#349784: Krusader: Test krusader-1.70.0 to see if it solves bug#349784

2006-02-19 Thread Frank Schoolmeesters
Hi,

Maybe you like to download the unofficial 1.70.0 deb package
and check if it solves this issue.
http://krusader.sourceforge.net/downloads.php
"powadha" reported that it solves the issue at
http://krusader.sourceforge.net/phpBB/viewtopic.php?t=1473
Any feedback to solve this issue is welcome.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=349784

I hope that an official deb package for 1.70.0 will become soon
available. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=352574

kind regards,

Frank Schoolmeesters
http://www.krusader.org



Bug#353489: rhythmbox: UI freezes and quickly becomes unusable during normal operation

2006-02-19 Thread Loïc Minier
Hi,

On sam, fév 18, 2006, Kevin Brown wrote:
> It's possible this bug is somehow AMD64-specific...

 Yes, it seems likely.

> I'll be reverting to 0.8.8-13 until this bug gets fixed.  Going back and
> forth between this version and 0.8.8-13 is quite easy, so I'll be happy
> to perform any testing you might need.
> ii  gstreamer0.10-alsa [gs 0.10.2-2  ALSA plugin for GStreamer
> ii  gstreamer0.10-gnomevfs 0.10.2-2  Gnome VFS plugin for GStreamer
> ii  gstreamer0.10-plugins- 0.10.2-2  Collection of various GStreamer 
> pl
> ii  gstreamer0.10-plugins- 0.10.1-2  Collection of various GStreamer 
> pl
> ii  gstreamer0.10-plugins- 0.10.1-1  Collection of various GStreamer 
> pl

 Be sure to update your plugins to the latest version:
 - gstreamer0.10-plugins-base to 0.10.3-1
 - gstreamer0.10-plugins-good to 0.10.2-1

 and let me know whether that helps.

 It would also be interesting to run rhythmbox from a terminal to see
 warnings (or check ~/.xsession-errors), and if it's not enough, to run
 "rhythmbox -d".

   Cheers,

-- 
Loïc Minier <[EMAIL PROTECTED]>
Current Earth status:   NOT DESTROYED



Bug#353522: ftp.debian.org: please consider making incoming.debian.org aptable

2006-02-19 Thread Marc Haber
Package: ftp.debian.org
Severity: wishlist

Hi,

please consider running apt-ftparchive on incoming.debian.org on a
hourly basis, making incoming.debian.org aptable. That way, it would
be easier for developers to install packages from incoming to mitigate
bad unstable bugs.

The code necessary is somewhere along the lines of

#!/bin/bash

cd $DIR
apt-ftparchive packages . | tee Packages | gzip > Packages.gz
apt-ftparchive sources . | tee Sources | gzip > Sources.gz

Greetings
Marc

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


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



Bug#297906: whowatch 1.6.0-5.1 NMU

2006-02-19 Thread Matej Vela
Hello,

I'm doing an NMU of whowatch to fix #297906; diff attached.

Thanks,

Matej
diff -u whowatch-1.6.0/debian/changelog whowatch-1.6.0/debian/changelog
--- whowatch-1.6.0/debian/changelog
+++ whowatch-1.6.0/debian/changelog
@@ -1,3 +1,12 @@
+whowatch (1.6.0-5.1) unstable; urgency=medium
+
+  * NMU.
+  * src/process.c, src/subwin.c: Lvalue casts are a no-no with gcc 4.0.
+Thanks to Andreas Jochens for the patch.  Closes: #297906.
+  * src/menu.c (submenus): Add terminating NULL.
+
+ -- Matej Vela <[EMAIL PROTECTED]>  Sun, 19 Feb 2006 11:07:10 +0100
+
 whowatch (1.6.0-5) unstable; urgency=low
 
   * Fixed ctime() prototype. (Closes: #226683)
diff -u whowatch-1.6.0/src/menu.c whowatch-1.6.0/src/menu.c
--- whowatch-1.6.0/src/menu.c
+++ whowatch-1.6.0/src/menu.c
@@ -37,7 +37,7 @@
 static unsigned short item_cursor;
 
 #define DUMMY_HEAD {0, 0}
-static char *submenus[] = { "File", "View", "Process", "Users",  "Help" };
+static char *submenus[] = { "File", "View", "Process", "Users",  "Help", NULL 
};
 struct item_bind_t  {
unsigned short submenu; /* index in the submenus table */
struct item_t item;
diff -u whowatch-1.6.0/src/process.c whowatch-1.6.0/src/process.c
--- whowatch-1.6.0/src/process.c
+++ whowatch-1.6.0/src/process.c
@@ -75,7 +75,7 @@
memset(z, 0, sizeof *z);
check_line(l);
z->line = l++;
-   (struct process *) p->priv = z;
+   p->priv = z;
z->proc = p;
if (*current){
z->next = *current;
diff -u whowatch-1.6.0/src/subwin.c whowatch-1.6.0/src/subwin.c
--- whowatch-1.6.0/src/subwin.c
+++ whowatch-1.6.0/src/subwin.c
@@ -201,7 +201,7 @@
static void *p = 0;
static int pid;
if(current == &users_list)
-   (char *)p = cursor_user()->name;
+   p = cursor_user()->name;
else {
pid = cursor_pid();
p = &pid;


Bug#297155: ps2ps fixes the broken files

2006-02-19 Thread Markus Schaber
Hello,

Was there any progress wr/t this bug?

Btw, postprocessing the psnup output with ps2ps gives much larger
postscript files, but they work fine again.

HTH,
Markus


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



Bug#353480: yaird: [hppa] /dev/sd* device nodes not created and eth0 not enabled

2006-02-19 Thread Joel Soete



Frans Pop wrote:


Package: yaird
Version: 0.0.12-3
Severity: important

After a new installation on hppa, the system seemed to boot correctly, but 
failed to
mount /boot and /home directories. Also the eth0 network interface was not 
brought
up automatically.

If I create the initrd using initramfs-tools these problems do not occur.

The reason /boot and /home are not mounted is that /dev/sd* is not present.
This seems to indicate a problem with udev, which would also explain eth0 not coming 
up as it needs to be "hotplug detected".


Full log attached. Here are some relevant pieces with comments.
 


[...]



udevd[862]: get_netlink_msg: unable to receive kernel netlink message: No 
buffer space available
 

mmm, yes I encountered the same pb with a recent smp kernel (iirc 
2.6.16-rc2...) and udev.

but not with a up kernel.



 


I don't (want to) use initramfs (not enough clue to rebuild it :\ )

[...]



Waiting for /dev to be fully populated...hda: CD-532E-B, ATAPI CD/DVD-ROM drive

[...]
Checking all file systems.
[/sbin/fsck.ext2 (1) -- /boot] fsck.ext2 -a -C0 /dev/sda2
fsck.ext2: No such file or directory while trying to open /dev/sda2
/dev/sda2:
The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
   e2fsck -b 8193 

[/sbin/fsck.ext3 (1) -- /home] fsck.ext3 -a -C0 /dev/sda7
fsck.ext3: No such file or directory while trying to open /dev/sda7
/dev/sda7:
The superblock could not be read or does not describe a correct ext2
filesystem.  If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
   e2fsck -b 8193 

fsck died with exit status 8
File system check failed.
A log is being saved in /var/log/fsck/checkfs if that location is writable.
Please repair the file system manually.
A maintenance shell will now be started.
CONTROL-D will terminate this shell and resume system boot.
Give root password for maintenance
(or type Control-D to continue):

 


The same here.

Sorry to not being of more help  but I don't yet found time to debug 
more this other udev pb with smp kernel ;<(


Joel


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



Bug#353365: ITP: gt5 -- Terminal program for visual disk usage with navigation

2006-02-19 Thread Jari Aalto
| 
| > >
| > > * Package name: gt5
| > >   Version : 1.3
| > >   Upstream Author : Thomas Sattler <[EMAIL PROTECTED]>
| > > * URL : http://sourceforge.net/projects/gt5
| > > * License : GPL
| > >   Description : Terminal program for visual disk usage with navigat=
| ion
| >
| > This is a real nitpick, but consider "console program" or "text-mode
| > program" instead of "terminal program"; I initially pictured something
| > like xterm with some sort of status bar. The phrase "terminal program" br=
| ings
| > to mind a terminal emulator to a lot of people, I would guess.
| 
| again, "console program" made me wonder if it was yet another program
| hardcoded for Linux console.  A quick check - no: it's hardcoded for
| elinks.
| 
| "text-mode" is ok, but "elinks utility" is more accurate.

Thank your for comments. The new *.deb package description is attached.

Jari

Description: shell program to display visual disk usage with navigation
 Years have passed and disks have become larger and larger, but even on
 this incredibly huge harddisk era, the space seems to disappear over
 time. This small and effective programs provides more convenient
 listing than the default du(1). It displays what has happened since
 last run and displays dir size and the total percentage. It is
 possible to navigate and ascend to directories by using cursor-keys
 with text based browser (links, elinks, lynx; See
 ).
 .
 Homepage: http://sourceforge.net/projects/gt5



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



Bug#233925: exim4-doc-info: missing or damaged index entries

2006-02-19 Thread Marc Haber
On Sat, Feb 18, 2006 at 09:03:14PM -0800, Ross Boylan wrote:
> As far as I can tell, i followed by anything produces this response.
> exim4-doc-info is now 4.60-2

Can you please retry with 4.60a-1 from unstable? Upstream has, once
more, re-worked the documentation creation process and won't accept
bugs against the older version.

Additionally, since I do not run emacs in a productive environment,
can you please validate whether the issue can be reproduced with text
mode emacs as well? I'd like to do the tests in a chroot.

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#336351: libfam0 should Provides: libgamin0, etc.

2006-02-19 Thread Loïc Minier
Hi,

On sam, oct 29, 2005, Christopher Martin wrote:
> Similarly, libfam-dev should Provides/Replaces/Conflicts libgamin-dev, and 
> libfam0 should Provides/Replaces/Conflicts libgamin0. fam should also 
> Conflict with gamin.
> 
> This way, packages built against gamin can still use fam, whereas currently 
> one has to build against fam, to avoid locking the user into gamin (since a 
> dependency on libgamin0 cannot be satisfied by libfam0 - only the other way 
> around).

 Can't one build-depend on libgamin-dev and link against -lfam?

-- 
Loïc Minier <[EMAIL PROTECTED]>
Current Earth status:   NOT DESTROYED



Bug#349790: NMU in 3 day delay

2006-02-19 Thread Don Armstrong
I've made an NMU upload to the gluck 3 day delay queue. This upload
can be overriden by a maintainer upload between now and then.

The interdiff of the NMU is attached.


Don Armstrong

-- 
Frankly, if ignoring inane opinions and noisy people and not flaming
them to crisp is bad behaviour, I have not yet achieved a state of
nirvana.
 -- Manoj Srivastava in [EMAIL PROTECTED]

http://www.donarmstrong.com  http://rzlab.ucr.edu
diff -u libcaca-0.9/debian/changelog libcaca-0.9/debian/changelog
--- libcaca-0.9/debian/changelog
+++ libcaca-0.9/debian/changelog
@@ -1,3 +1,17 @@
+libcaca (0.9-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Hard-code cacaview_LDFLAGS = -lImlib2 instead of using the output of
+imlib2-config which is incorrect for GNU/* systems using dynamic
+linking. (Closes: #349790)
+  * Add AM_MAINTAINER_MODE to configure.ac as well, to avoid build-time
+regeneration of autotools files.
+  * Fix syntax errors in doc/Makefile.am that aren't accepted by current
+automake-1.7
+  * Thanks to Steve Langasek for the above patches
+  
+ -- Don Armstrong <[EMAIL PROTECTED]>  Sun, 19 Feb 2006 01:46:44 -0800
+
 libcaca (0.9-5) unstable; urgency=low
 
   * debian/control:
diff -u libcaca-0.9/doc/Makefile.in libcaca-0.9/doc/Makefile.in
--- libcaca-0.9/doc/Makefile.in
+++ libcaca-0.9/doc/Makefile.in
@@ -76,6 +76,9 @@
 LIBOBJS = @LIBOBJS@
 LIBS = @LIBS@
 LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
 MAKEINFO = @MAKEINFO@
 MATH_LIBS = @MATH_LIBS@
 NEED_PIC_FALSE = @NEED_PIC_FALSE@
@@ -160,10 +163,10 @@
 all: all-am
 
 .SUFFIXES:
-$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  
$(top_srcdir)/configure.ac $(ACLOCAL_M4)
cd $(top_srcdir) && \
  $(AUTOMAKE) --gnu  doc/Makefile
-Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
+Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  
$(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
$(am__depfiles_maybe)
 doxygen.cfg: $(top_builddir)/config.status doxygen.cfg.in
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
@@ -405,7 +408,9 @@
 @BUILD_DOCUMENTATION_TRUE@ cp `find html -name '*.html' -o -name '*.gif' 
-o -name '*.png'` \
 @BUILD_DOCUMENTATION_TRUE@   $(DESTDIR)$(datadir)/doc/libcaca-dev/html
 @BUILD_DOCUMENTATION_TRUE@ $(mkinstalldirs) $(DESTDIR)$(mandir)/man3
[EMAIL PROTECTED]@  for mp in `find man -name '*.3caca'`; do sed 
's/man3caca/man3/g' $$mp > $(DESTDIR)$(mandir)/man3/`basename $$mp`; done
[EMAIL PROTECTED]@  for mp in `find man -name '*.3caca'`; do \
[EMAIL PROTECTED]@sed 's/man3caca/man3/g' $$mp > 
$(DESTDIR)$(mandir)/man3/`basename $$mp`; \
[EMAIL PROTECTED]@  done
 @BUILD_DOCUMENTATION_TRUE@ $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
 @BUILD_DOCUMENTATION_TRUE@ rm -f $(DESTDIR)$(mandir)/man1/cacaball.1
 @BUILD_DOCUMENTATION_TRUE@ ln -s cacademo.1 
$(DESTDIR)$(mandir)/man1/cacaball.1
diff -u libcaca-0.9/doc/Makefile.am libcaca-0.9/doc/Makefile.am
--- libcaca-0.9/doc/Makefile.am
+++ libcaca-0.9/doc/Makefile.am
@@ -45,10 +45,9 @@
cp `find html -name '*.html' -o -name '*.gif' -o -name '*.png'` \
  $(DESTDIR)$(datadir)/doc/libcaca-dev/html
$(mkinstalldirs) $(DESTDIR)$(mandir)/man3
-   for mp in `find man -name '*.3caca'`; do
- sed 's/man3caca/man3/g' $$mp > $(DESTDIR)$(mandir)/man3/`basename 
$$mp`;
+   for mp in `find man -name '*.3caca'`; do \
+ sed 's/man3caca/man3/g' $$mp > $(DESTDIR)$(mandir)/man3/`basename 
$$mp`; \
done
-   #cp `find man -name '*.3caca'` $(DESTDIR)$(mandir)/man3
$(mkinstalldirs) $(DESTDIR)$(mandir)/man1
rm -f $(DESTDIR)$(mandir)/man1/cacaball.1
ln -s cacademo.1 $(DESTDIR)$(mandir)/man1/cacaball.1
only in patch2:
unchanged:
--- libcaca-0.9.orig/src/Makefile.in
+++ libcaca-0.9/src/Makefile.in
@@ -76,6 +76,9 @@
 LIBOBJS = @LIBOBJS@
 LIBS = @LIBS@
 LTLIBOBJS = @LTLIBOBJS@
+MAINT = @MAINT@
+MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
+MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
 MAKEINFO = @MAKEINFO@
 MATH_LIBS = @MATH_LIBS@
 NEED_PIC_FALSE = @NEED_PIC_FALSE@
@@ -220,10 +223,10 @@
 
 .SUFFIXES:
 .SUFFIXES: .c .o .obj
-$(srcdir)/Makefile.in:  Makefile.am  $(top_srcdir)/configure.ac $(ACLOCAL_M4)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  
$(top_srcdir)/configure.ac $(ACLOCAL_M4)
cd $(top_srcdir) && \
  $(AUTOMAKE) --gnu  src/Makefile
-Makefile:  $(srcdir)/Makefile.in  $(top_builddir)/config.status
+Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  
$(top_builddir)/config.status
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
$(am__depfiles_maybe)
 
 AR = ar
only in patch2:
unchanged:
--- libcaca-0.9.orig/examples/Makefile.in
+++ libca

Bug#352520: vnc4 - FTBFS: mv: cannot stat `/build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/vnc.so': No such file or directory

2006-02-19 Thread Ola Lundqvist
severity normal
thanks

Hi

As s390 is no longer part of the release architecture (as far as I know)
and also that it do not exist in testing for that archtecture, this is not
a serious bug.

It probably occur becuase something else fail before as vnc.so should
really have been built...

Help is greatly appriciated and thanks for the report.

Regards,

// Ola

On Sun, Feb 12, 2006 at 03:21:01PM +0100, Bastian Blank wrote:
> Package: vnc4
> Version: 4.1.1+X4.3.0-1
> Severity: serious
> 
> There was an error while trying to autobuild your package:
> 
> > Automatic build of vnc4_4.1.1+X4.3.0-1 on debian-31 by sbuild/s390 85
> [...]
> > mv \
> > 
> > /build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/vnc.so
> >  \
> > 
> > /build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/libvnc.so
> > mv: cannot stat 
> > `/build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/vnc.so':
> >  No such file or directory
> > make: *** [install-arch] Error 1
> > **
> > Build finished at 20060212-0912
> > FAILED [dpkg-buildpackage died]
> 
> Bastian
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#352863: vnc4server: terminates with error: 'select: Invalid argument (22)'

2006-02-19 Thread Ola Lundqvist
severity 352863 important
thanks

On Tue, Feb 14, 2006 at 03:21:16PM +0100, M. Dietrich wrote:
> Package: vnc4server
> Version: 4.1.1+X4.3.0-1
> Severity: grave
> Justification: renders package unusable
> 
> 
> when trying to start x0vncserver or x0vnc4server i get:

Thanks for the report. The vncserver part work so I have lowered
the severity to important.

> 
> Tue Feb 14 15:08:09 2006
>  main:XTest extension present - version 2.2
>  main:Listening on port 5900
>  main:select: Invalid argument (22)
> ~ImageCleanup called
> 
> using strace the select call shown looks like:
> 
> select(1024, [3 4], NULL, NULL, {3086070392, 3217232984}) = -1 EINVAL
> (Invalid argument)
> 
> the timeval for select contains really strange values...

I agree.

> in this bugreport i saw version vnc-common is 3.x. i updated all to 4
> with the same result for x0vnc4server.

It should not matter.

Regards,

// Ola

> -- System Information:
> Debian Release: testing/unstable
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.15-1-686
> Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
> 
> Versions of packages vnc4server depends on:
> ii  libc6 2.3.6-1GNU C Library: Shared libraries 
> an
> ii  libgcc1   1:4.0.2-9  GCC support library
> ii  libstdc++64.0.2-9The GNU Standard C++ Library v3
> ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client 
> li
> ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous 
> exte
> ii  libxtst6  6.9.0.dfsg.1-4 X Window System event recording 
> an
> ii  vnc-common3.3.7-8Virtual network computing server 
> s
> ii  xbase-clients 6.9.0.dfsg.1-4 miscellaneous X clients
> ii  xserver-common6.9.0.dfsg.1-4 files and utilities common to 
> all 
> ii  zlib1g1:1.2.3-9  compression library - runtime
> 
> Versions of packages vnc4server recommends:
> ii  xfonts-base   6.9.0.dfsg.1-4 standard fonts for X
> 
> -- no debconf information
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#353348: marked as done (hpoj: ptal-mlcd failed to start!)

2006-02-19 Thread Mark Purcell
On Sunday 19 February 2006 00:01, Steve Langasek wrote:
> So, since Guilherme's follow-up confirms this, reopening and merging.  I
> think "important" is the correct severity; I think USB hpojs are more
> common than parallel, so this is still usable for the majority of users.

Thanks Steve,

hplip is now a better option for USB based multi-function devices and is the 
upstream  update to hpoj.

hpoj is still the only option for parallel based multi-function devices.

I'll revert hpoj to run as root which should fix this issue for parallel port 
operation.

In the meantime hpoj-0.91-4 from stable should work with parallel port 
multi-function devices.

Mark


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



Bug#353523: gthumb: Does not display thumbnails after an upgrade

2006-02-19 Thread Javier Fernández-Sanguino Peña

Package: gthumb
Version: 3:2.6.6-1
Severity: normal

For some reason, gthumb stopped displaying thumbnails for any of the files in
the directory where I hold pictures (actually, for any directory). I first
suspected a bug in the ~/.thumbnails/ directory and renamed it to have it be
recreated. To my surprise, after renaming the directory and launching gthumb,
the .thumbnails directory is never created again!

I then straced gthumb I don't see any call to '.thumbnails' being made
at all...

Reviewing the source code I see that it references
'/apps/gthumb/browser/show_thumbnails' (a GNOME registry option) and I fired
up the gconf-editor program (which I have not used before) and verify that it 
is,
indeed, set to False. However I have *ever* changed that and (as far as I can
see) that option cannot be setup in Gthumb, so I can only assume that the
preference changed on upgrade.  After enabling it to True thumbnails start
working again.

Why isn't there an option (in Preferences, on the GUI) to enable or
disable this behaviour? Why has this behaviour changed on an upgrade?


Regards

Javier




signature.asc
Description: Digital signature


Bug#353524: samba: Nmbd segmentation fault after upgrading to 3.0.14a-3sarge

2006-02-19 Thread Leszek Dubiel
Package: samba
Version: 3.0.14a-3sarge1
Severity: normal


I have upgraded samba. /var/log/aptitude says:

Aptitude 0.2.15.9: dziennik operacji
Fri Feb 17 17:42:54 2006

[UAKTUALNIONY] samba 3.0.14a-3 -> 3.0.14a-3sarge1
[UAKTUALNIONY] samba-common 3.0.14a-3 -> 3.0.14a-3sarge1
[UAKTUALNIONY] samba-doc 3.0.14a-3 -> 3.0.14a-3sarge1
[UAKTUALNIONY] smbclient 3.0.14a-3 -> 3.0.14a-3sarge1
[UAKTUALNIONY] smbfs 3.0.14a-3 -> 3.0.14a-3sarge1



In the night nmbd got killed with signal 11. Here goes the log -- it contains 
all lines starting from uprade-restart till restart next day morning when 
workers told something is wrong. Orion is hostname of my server, while Serwery 
is network group it stays in. 

[2006/02/17 17:43:15, 0] nmbd/nmbd.c:terminate(56)
  Got SIGTERM: going down...
[2006/02/17 17:43:53, 0] nmbd/nmbd.c:main(668)
  Netbios nameserver version 3.0.14a-Debian started.
  Copyright Andrew Tridgell and the Samba Team 1994-2004
[2006/02/17 21:19:25, 0] 
nmbd/nmbd_responserecordsdb.c:find_response_record(220)
  find_response_record: response packet id 1492 received with no 
matching record.
[2006/02/17 21:19:25, 0] 
nmbd/nmbd_responserecordsdb.c:find_response_record(220)
  find_response_record: response packet id 1492 received with no 
matching record.
[2006/02/17 21:59:26, 0] nmbd/nmbd_namequery.c:query_name_response(101)
  query_name_response: Multiple (2) responses received for a query on 
subnet 192.168.18.1 for name SERWERY<1d>.
  This response was from IP 192.168.18.2, reporting an IP address of 
192.168.18.2.
[2006/02/17 21:59:26, 0] nmbd/nmbd_namequery.c:query_name_response(101)
  query_name_response: Multiple (3) responses received for a query on 
subnet 192.168.18.1 for name SERWERY<1d>.
  This response was from IP 192.168.18.2, reporting an IP address of 
192.168.18.2.
[2006/02/17 21:59:26, 0] nmbd/nmbd_namequery.c:query_name_response(101)
  query_name_response: Multiple (4) responses received for a query on 
subnet 192.168.18.1 for name SERWERY<1d>.
  This response was from IP 192.168.18.2, reporting an IP address of 
192.168.18.2.
[2006/02/18 00:29:59, 0] 
nmbd/nmbd_responserecordsdb.c:find_response_record(220)
  find_response_record: response packet id 1546 received with no 
matching record.
[2006/02/18 00:29:59, 0] 
nmbd/nmbd_responserecordsdb.c:find_response_record(220)
  find_response_record: response packet id 1546 received with no 
matching record.
[2006/02/18 00:29:59, 0] 
nmbd/nmbd_responserecordsdb.c:find_response_record(220)
  find_response_record: response packet id 1546 received with no 
matching record.
[2006/02/18 00:29:59, 0] 
nmbd/nmbd_responserecordsdb.c:find_response_record(220)
  find_response_record: response packet id 1546 received with no 
matching record.
[2006/02/18 00:30:05, 0] 
nmbd/nmbd_nameregister.c:register_name_response(130)
  register_name_response: server at IP 192.168.18.2 rejected our name 
registration of SERWERY<1d> IP 192.168.18.1 with error code 6.
[2006/02/18 00:30:05, 0] 
nmbd/nmbd_become_lmb.c:become_local_master_fail2(417)
  become_local_master_fail2: failed to register name SERWERY<1d> on 
subnet 192.168.18.1. Failed to become a local master browser.
[2006/02/18 00:30:05, 0] 
nmbd/nmbd_become_lmb.c:become_local_master_fail2(417)
  become_local_master_fail2: failed to register name SERWERY<1d> on 
subnet 192.168.18.1. Failed to become a local master browser.
[2006/02/18 00:30:05, 0] 
nmbd/nmbd_namelistdb.c:standard_success_release(384)
  standard_success_release: Name release for name __MSBROWSE__<01> 
IP 192.168.18.1 on subnet 192.168.18.1. Name was not found on subnet.
[2006/02/18 00:30:05, 0] 
nmbd/nmbd_namelistdb.c:standard_fail_register(283)
  standard_fail_register: Failed to register/refresh name SERWERY<1d> 
on subnet 192.168.18.1
[2006/02/18 00:30:05, 0] lib/fault.c:fault_report(36)
  ===
[2006/02/18 00:30:05, 0] lib/fault.c:fault_report(37)
  INTERNAL ERROR: Signal 11 in pid 28986 (3.0.14a-Debian)
  Please read the appendix Bugs of the Samba HOWTO collection
[2006/02/18 00:30:05, 0] lib/fault.c:fault_report(39)
  ===
[2006/02/18 00:30:05, 0] lib/util.c:smb_panic2(1485)
[2006/02/18 08:33:21, 0] nmbd/nmbd.c:main(668)
  Netbios nameserver version 3.0.14a-Debian started.
  Copyright Andrew Tridgell and the Samba Team 1994-2004
[2006/02/18 08:33:55, 0] 
nmbd/nmbd_become_lmb.c:become_local_master_stage2(396)
  *
  
  Samba name server ORION is now a local master browser

Bug#352371: xastir 1.8.0-1.1 NMU

2006-02-19 Thread Matej Vela
Hamish Moffatt <[EMAIL PROTECTED]> writes:

> On Sat, Feb 18, 2006 at 11:29:47PM +0100, Matej Vela wrote:
>> I'm doing an NMU of xastir to fix #352371; diff attached.
>
> OK. I think one week delay for an otherwise active maintainer is a bit
> quick but otherwise I have no objection.

Sorry if I stepped on your toes.  I just saw an RC bug with no activity
in a week, and didn't investigate further since we're in permanent BSP
mode at the moment. [1]

[1] 

> urgency=medium also seems unjustified?

>From what I've seen, RC fixes are generally given medium or high
urgency.

Thanks!

Matej


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



Bug#257939: More info about this

2006-02-19 Thread Bas Wijnen
Ok, I checked this a bit better, and found most of the problems.  #103434 has
a bit more information on it.  The hang was caused by a race condition, where
falconseye spawned an external player (timidity), which started properly, but
died almost immediately, and after that falconseye started waiting for a
SIGCHLD (which didn't come anymore, since the player was already dead, and the
signal had been sent and was ignored at that time).

-- 
I encourage people to send encrypted e-mail (see http://www.gnupg.org).
If you have problems reading my e-mail, use a better reader.
Please send the central message of e-mails as plain text
   in the message body, not as HTML and definitely not as MS Word.
Please do not use the MS Word format for attachments either.
For more information, see http://129.125.47.90/e-mail.html


signature.asc
Description: Digital signature


Bug#317032: famd has a limit of about 1024 monitor requests

2006-02-19 Thread Loïc Minier
forwarded 317032 http://oss.sgi.com/bugzilla/show_bug.cgi?id=490
tag 317032 + confirmed upstream
stop

Hi,

 This is a followup for Debian bug .

On mar, jui 05, 2005, John McMonagle wrote:
> Jun 27 13:28:52 oshkosh famd[5361]: failed to accept new client: Too many 
> open files
> Jun 27 13:29:00 oshkosh famd[5361]: localclient socket(PF_UNIX, 
> SOCK_STREAM, 0): Too many open files
> restarting famd makes things resume.
> This stops the errors to syslog but still hangs when fam has a bit over 
> 1024 files opened.

 The upstream fam web site documents a limitation of the current
 implementation which uses select().  Upstream says select() is limited
 to 1024 fds.

 I've requested a workaround at:
http://oss.sgi.com/bugzilla/show_bug.cgi?id=490

 Perhaps this limit can be increased under Linux.

 You might want to use gamin instead which supports inotify and might
 work better in such scenarii.

   Cheers,

-- 
Loïc Minier <[EMAIL PROTECTED]>
Current Earth status:   NOT DESTROYED



Bug#352371: xastir 1.8.0-1.1 NMU

2006-02-19 Thread Hamish Moffatt
On Sun, Feb 19, 2006 at 11:37:01AM +0100, Matej Vela wrote:
> Hamish Moffatt <[EMAIL PROTECTED]> writes:
> 
> > On Sat, Feb 18, 2006 at 11:29:47PM +0100, Matej Vela wrote:
> >> I'm doing an NMU of xastir to fix #352371; diff attached.
> >
> > OK. I think one week delay for an otherwise active maintainer is a bit
> > quick but otherwise I have no objection.
> 
> Sorry if I stepped on your toes.  I just saw an RC bug with no activity
> in a week, and didn't investigate further since we're in permanent BSP
> mode at the moment. [1]
> 
> [1] 

OK no problem.

Thanks,
Hamish
-- 
Hamish Moffatt VK3SB <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>


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



Bug#302428: fam: stop monitoring directories after ~250 dirs

2006-02-19 Thread Loïc Minier
forwarded #302428 http://oss.sgi.com/bugzilla/show_bug.cgi?id=490
tags #302428 + upstream confirmed
merge #302428 #317032
stop

Hi,

 This is a followup for Debian bug .

On jeu, mar 31, 2005, Sergey Spiridonov wrote:
> After certain  (~250) directories fam
> stops working.

 The upstream fam web site documents a limitation of the current
 implementation which uses select().  Upstream says select() is limited
 to 1024 fds.

 I've requested a workaround at:
http://oss.sgi.com/bugzilla/show_bug.cgi?id=490

 Perhaps this limit can be increased under Linux.

 You might want to use gamin instead which supports inotify and might
 work better in such scenarii.

   Cheers,

-- 
Loïc Minier <[EMAIL PROTECTED]>
Current Earth status:   NOT DESTROYED



Bug#352520: vnc4 - FTBFS: mv: cannot stat `/build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/vnc.so': No such file or directory

2006-02-19 Thread Steve Langasek
On Sun, Feb 19, 2006 at 11:29:07AM +0100, Ola Lundqvist wrote:

> As s390 is no longer part of the release architecture (as far as I know)
> and also that it do not exist in testing for that archtecture, this is not
> a serious bug.

out of date on alpha: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
out of date on ia64: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
out of date on mips: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
out of date on mipsel: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
out of date on hppa: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8) (but 
hppa isn't keeping up, so nevermind)

Please don't assume that bugs reported on s390 don't apply to other
architectures.  This particular build failure shows up on hppa, mips, and
mipsel as well.  (the failure on alpha/ia64 is a different one.)

Also, the correct severity for a build failure on a non-release arch would
be 'important', not 'normal', please.

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


signature.asc
Description: Digital signature


Bug#352863: vnc4server: terminates with error: 'select: Invalid argument (22)'

2006-02-19 Thread Ola Lundqvist
tags 352863 + pending
thanks

Hi

I found the error. The timeout was not initialized.
Upload is on the way.

Regards,

// Ola

On Tue, Feb 14, 2006 at 03:21:16PM +0100, M. Dietrich wrote:
> Package: vnc4server
> Version: 4.1.1+X4.3.0-1
> Severity: grave
> Justification: renders package unusable
> 
> 
> when trying to start x0vncserver or x0vnc4server i get:
> 
> 
> Tue Feb 14 15:08:09 2006
>  main:XTest extension present - version 2.2
>  main:Listening on port 5900
>  main:select: Invalid argument (22)
> ~ImageCleanup called
> 
> using strace the select call shown looks like:
> 
> select(1024, [3 4], NULL, NULL, {3086070392, 3217232984}) = -1 EINVAL
> (Invalid argument)
> 
> the timeval for select contains really strange values...
> 
> in this bugreport i saw version vnc-common is 3.x. i updated all to 4
> with the same result for x0vnc4server.
> 
> -- System Information:
> Debian Release: testing/unstable
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.15-1-686
> Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
> 
> Versions of packages vnc4server depends on:
> ii  libc6 2.3.6-1GNU C Library: Shared libraries 
> an
> ii  libgcc1   1:4.0.2-9  GCC support library
> ii  libstdc++64.0.2-9The GNU Standard C++ Library v3
> ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client 
> li
> ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous 
> exte
> ii  libxtst6  6.9.0.dfsg.1-4 X Window System event recording 
> an
> ii  vnc-common3.3.7-8Virtual network computing server 
> s
> ii  xbase-clients 6.9.0.dfsg.1-4 miscellaneous X clients
> ii  xserver-common6.9.0.dfsg.1-4 files and utilities common to 
> all 
> ii  zlib1g1:1.2.3-9  compression library - runtime
> 
> Versions of packages vnc4server recommends:
> ii  xfonts-base   6.9.0.dfsg.1-4 standard fonts for X
> 
> -- no debconf information
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#353454: gamin solves this problem

2006-02-19 Thread Loïc Minier
reassign 353454 fam
severity 353454 important
tags 353454 + upstream confirmed
forwarded 353454 http://oss.sgi.com/bugzilla/show_bug.cgi?id=490
merge #302428 353454
stop

Hi,

On dim, fév 19, 2006, Daniel Rodriguez Garcia wrote:
> Installing gamin package (replaces fam) solves this problem.

 Thanks for the feedback, this is actually a fam limitation.

 The upstream fam web site documents a limitation of the current
 implementation which uses select().  Upstream says select() is limited
 to 1024 fds.

 I've requested a workaround at:
http://oss.sgi.com/bugzilla/show_bug.cgi?id=490

 Perhaps this limit can be increased under Linux.

 You might want to use gamin instead which supports inotify and might
 work better in such scenarii.

   Cheers,

-- 
Loïc Minier <[EMAIL PROTECTED]>
Current Earth status:   NOT DESTROYED



Bug#283232: screen, delete keys and terminal types

2006-02-19 Thread Richard Kettlewell
Thomas Dickey writes:
> nsterm is the recommended $TERM for Terminal.app; report bugs
> against that rather than screen (reading screen's source code should
> give a hint why it's better to make the terminal description correct
> than continue hacking screen).

That's useful to know.  Thankyou for chiming in.

ttfn/rjk


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



Bug#353525: console-setup: support for "space delimited list of virtual consoles" is broken, only one argument is allowed

2006-02-19 Thread Jonas Meurer
Package: console-setup
Version: 1.5
Severity: important

hello,

the last debconf question of console-setup asks to give a "space
delimited list of virtual consoles you use".
Unfortunately, this "space delimited list" is not supported.

if i give more than one argument, for example "/dev/tty1 /dev/tty2", the
final console font and keymap setup breaks:

awk: cmd. line:1: /^ *ACTIVE_CONSOLES=/ { print "ACTIVE_CONSOLES=\"/dev/tty1
awk: cmd. line:1:   ^ unterminated string

currently only one argument, just as /dev/tty[1-6] is supported.

in my environment, i would like to have configured all tty from 1 to 12,
except tty7 (x11).

this is not possible with the current console-setup package.

also, i have only 9 ttys left currently, though i have 12 configured in
/etc/inittab. i know that i had 12 virtual consoles in the past.
could this be caused by console-setup too?

...
 jonas

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

Versions of packages console-setup depends on:
ii  console-terminus  4.16-3 Fixed-width fonts for fast reading
ii  debconf [debconf-2.0] 1.4.70 Debian configuration management sy

Versions of packages console-setup recommends:
ii  kbd   1.12-13Linux console font and keytable ut

-- debconf information:
* console-setup/variant: Germany - Eliminate dead keys
  console-setup/modelcode: pc105
  console-setup/fontsize: 14
  console-setup/layoutcode: de
  console-setup/dont_ask_layout:
* console-setup/altgr: Right Alt
* console-setup/ttys: /dev/tty[1-6]
* console-setup/codeset: Uni3
  console-setup/toggle: No toggling
* console-setup/fontface: TerminusBold
* console-setup/fontsize-text: 14
* console-setup/compose: No compose key
  console-setup/switch: No temporary switch
* console-setup/charmap: UTF-8
  console-setup/optionscode: lv3:ralt_switch
* console-setup/layout: Germany
  console-setup/variantcode: nodeadkeys
* console-setup/model: Generic 105-key (Intl) PC
* console-setup/fontsize-fb: 14


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



Bug#353526: O: wav2cdr -- Converts wav files into CD-ROM audio file format

2006-02-19 Thread Philipp Kern
Package: wnpp
Severity: normal

I don't need this tool anymore, having all in GUI now, so somebody else
should care about it.

Description:
 This program converts wav sound files into a format suitable for
 CD-ROMs, and can perform some editing functions like cutting or volume
 change. It is rather rudimentary, the wav file must have the same
 sampling parameters as CD audio. Runs on big and little endian
 machines.

Kind regards,
Philipp Kern




signature.asc
Description: OpenPGP digital signature


Bug#353527: mrtg: rateup crashes with long basename

2006-02-19 Thread Ulf Harnhammar
Subject: mrtg: rateup crashes with long basename
Package: mrtg
Version: 2.12.2-1
Severity: normal
Tags: patch

Hello,

the rateup tool in MRTG crashes when you start it with a long basename:


[EMAIL PROTECTED]:~$ /usr/bin/rateup /tmp `perl -e 'print "U" x 170;'`
Rateup WARNING: /usr/bin/rateup could not read the primary log file for


UU
Rateup WARNING: /usr/bin/rateup The backup log file for


UU was invalid as well
Segmentation fault
[EMAIL PROTECTED]:~$


Despite being a buffer overflow, I don't see this as a security issue, since
the basename is defined by the system administrator who is trusted.

I have attached a patch that corrects this problem. I have Cc'ed upstream, as
the latest upstream version is affected as well.

// Ulf Harnhammar

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

Versions of packages mrtg depends on:
ii  debconf [debconf-2.0] 1.4.70 Debian configuration management sy
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libgd2-xpm2.0.33-3   GD Graphics Library version 2
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libsnmp-session-perl  1.08-1 Perl support for accessing SNMP-aw
ii  perl  5.8.7-10   Larry Wall's Practical Extraction 
ii  perl-modules  5.8.7-10   Core Perl modules
ii  zlib1g1:1.2.3-9  compression library - runtime

mrtg recommends no packages.

-- debconf information:
  mrtg/own_user: true
* mrtg/conf_mods: true

--- src/rateup.c.old2006-02-03 07:33:34.0 +0100
+++ src/rateup.c2006-02-19 11:52:52.0 +0100
@@ -1946,6 +1946,11 @@
   Mh = MAX_HISTORY;
 
   router = argv[2];
+  if (strlen(router) > 120)
+{
+  fprintf (stderr, "Rateup ERROR: Too long basename\n");
+  exit (1);
+}
 
   /* from  mrtg-2.x with x>5 rateup calling syntax changed to
  to support time properly ... this is for backward compat


Bug#353528: Segfaults with VPATH=/home/mattia/devel/kernel/git/linux-2.6: in linux kernel's make cscope target

2006-02-19 Thread Mattia Dongili
Package: cscope
Version: 15.5+cvs20050816-1
Severity: important
Tags: patch

Using current kbuild.git tree (or any -mm patch in 2.6.16-rc1 -maybe
earlier mm also-) I get a segfault in 'make cscope'.
I tracked this to be caused by:

VPATH=/home/mattia/devel/kernel/git/linux-2.6: cscope -b

cscope dies because of the trailing ':' in:
(gdb) bt
#0  0xb7e45cd3 in strlen () from /lib/tls/libc.so.6
#1  0x0805be0c in vpinit (current_dir=0x80a6460 
"/home/mattia/devel/kernel/git/linux-2.6") at vpinit.c:126
#2  0x0805267e in makevpsrcdirs () at dir.c:98
#3  0x080533a1 in makefilelist () at dir.c:276
#4  0x0805a70b in main (argc=0, argv=0xbffb6148) at main.c:538

the attached patch fixes the segfault.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-rc2-mm1-3
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages cscope depends on:
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libncurses5   5.5-1  Shared libraries for terminal hand

cscope recommends no packages.

-- no debconf information
-- 
mattia
:wq!
--- src/vpinit.c.clean  2006-02-19 12:05:46.614956144 +0100
+++ src/vpinit.c2006-02-19 12:05:53.376928967 +0100
@@ -99,7 +99,7 @@
/* count the nodes in the view path */
vpndirs = 1;
for (i = 0; vpath[i] != '\0'; ++i) {
-   if (vpath[i] == ':') {
+   if (vpath[i] == ':' && vpath[i+1]) {
++vpndirs;
}
}


signature.asc
Description: Digital signature


Bug#306762: falconseye manpage

2006-02-19 Thread Bas Wijnen
Hello,

I am preparing a QA upload for falconseye, so I wanted to include this
manpage.  However, I noticed that there already was a manpage in the source.
Because of a bug it didn't get included in the package.  Since that one seems
to be more complete, I used it instead.

Thanks,
Bas Wijnen

-- 
I encourage people to send encrypted e-mail (see http://www.gnupg.org).
If you have problems reading my e-mail, use a better reader.
Please send the central message of e-mails as plain text
   in the message body, not as HTML and definitely not as MS Word.
Please do not use the MS Word format for attachments either.
For more information, see http://129.125.47.90/e-mail.html


signature.asc
Description: Digital signature


Bug#327174: fbpanel: segfault at start up

2006-02-19 Thread Steve Langasek
So, what should be done with this bug?  It's been suggested that a simple
rebuild of the package fixes it -- do we know why?  If it's *not* caused by
silent ABI breakage in some dependent library, then the bug should probably
be downgraded or closed, since amd64 packages will be rebuilt before they
enter the main archive.

And the amd64 buildd maintainers should even be able to rebuild the package
before then if someone asks them to.

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


signature.asc
Description: Digital signature


Bug#339537: status of the viewcvs package

2006-02-19 Thread Diego Biurrun
Package: viewcvs
Followup-For: Bug #339537


Hi,

what is the status of the viewcvs package?  Is it being worked on?  The
currently available package is very outdated and has quite a few
outstanding problems.  I just tried to install it onto a server I manage
and I can confirm that the debconf values get discarded as described in
bug #270331 and that svn_parent_path is not working as described in bug
#264110.

Will there be an upgrade to viewvc 0.9.4 in the foreseeable future?  I
might be able to help out a little with the package in the
not-so-distant future...

Regards

Diego

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


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



Bug#348007: mozilla-thunderbird: Thunderbird 1.5 is out of beta

2006-02-19 Thread Olaf van der Spek

> a mozilla-thunderbird 1.5 package is available for testing here:

> http://people.debian.org/~asac/experimental/

Just wondering, why didn't you upload it to the experimental archive?


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



Bug#350113: libxft2 2.1.8.2-3 migrated to testing, breaks mozilla-mailnews

2006-02-19 Thread Mikael Magnusson
libxft2 2.1.8.2-3 migrated to testing yesterday, which breaks mozilla-mailnews
in testing.

/Mikael



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



Bug#350405: same problem

2006-02-19 Thread Ola Lundqvist
severity 350405 important
merge 352520 350405 350480
tags 352520 + help
tags 350405 + help
tags 350480 + help
thanks

It is the same problem.

void* to CARD32 looses precision.

Regards,

// Ola

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#349849: thrust 0.89c-3.2 NMU

2006-02-19 Thread Matej Vela
Hello,

I'm doing an NMU of thrust to fix #349849; diff attached.

Thanks,

Matej
diff -u thrust-0.89c/debian/changelog thrust-0.89c/debian/changelog
--- thrust-0.89c/debian/changelog
+++ thrust-0.89c/debian/changelog
@@ -1,3 +1,12 @@
+thrust (0.89c-3.2) unstable; urgency=medium
+
+  * NMU.
+  * debian/rules: Remove svgalib-dummyg1 hack.  Closes: #349849.
+  * Update SVGAlib build dependency to libsvga1-dev.  This makes
+`Build-Conflicts: svgalib-dummyg1' unnecessary.
+
+ -- Matej Vela <[EMAIL PROTECTED]>  Sun, 19 Feb 2006 12:23:16 +0100
+
 thrust (0.89c-3.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u thrust-0.89c/debian/rules thrust-0.89c/debian/rules
--- thrust-0.89c/debian/rules
+++ thrust-0.89c/debian/rules
@@ -106,15 +106,6 @@
-chmod ug+s debian/tmp/usr/games/thrust
dh_installdeb
dh_shlibdeps
-
-   set -e; \
-   if ! grep svgalib-dummyg1 debian/substvars >/dev/null ; then \
-   mv debian/substvars debian/substvars-unhacked ; \
-   sed -e 's/svgalibg1\( *([^)]*)\)\{0,1\}/& | svgalib-dummyg1\1/' 
\
-   debian/substvars; \
-   rm debian/substvars-unhacked; \
-   fi
-
dh_gencontrol
 #  dh_makeshlibs
dh_md5sums
diff -u thrust-0.89c/debian/control thrust-0.89c/debian/control
--- thrust-0.89c/debian/control
+++ thrust-0.89c/debian/control
@@ -1,8 +1,7 @@
 Source: thrust
 Section: games
 Priority: optional
-Build-Depends: debhelper, libx11-dev, x-dev, svgalibg1-dev [i386], 
libnetpbm9-dev, autotools-dev
-Build-Conflicts: svgalib-dummyg1
+Build-Depends: debhelper, libx11-dev, x-dev, libsvga1-dev [i386], 
libnetpbm9-dev, autotools-dev
 Maintainer: RISKO Gergely <[EMAIL PROTECTED]>
 Standards-Version: 3.6.1.1
 


Bug#352520: vnc4 - FTBFS: mv: cannot stat `/build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/vnc.so': No such file or directory

2006-02-19 Thread Ola Lundqvist
tags 352520 + pending
thanks

Hi again

I have found out that it is the same problem as:
#350480 and #350405 (and merged them).

c++ -c -O2   -I../include -I../../../include/extensions 
-I../../../exports/include/X11 -I../../../include/fonts 
-I../mfb -I../mi -I../../../../../common -I../../../../vncconfig -I../../.. 
-I../../../exports/include  -Dlinux -D__alpha__ -D_POSIX_C_SOURCE=199309L   
-D_POSIX_SOURCE -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
   -Dlinux -D__alpha__ -D_POSIX_C_SOURCE=199309L
-D_POSIX_SOURCE -D_XOPEN_SOURCE 
-D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE  
 -DSHAPE -DXINPUT -DXKB -DLBX -DXAPPGROUP   
-DXCSECURITY -DTOGCUP   -DXF86BIGFONT -DDPMSExtension -DPANORAMIX
-DRENDER -DRANDR -DGCCUSESGAS -DAVOID_GLYPHBLT -DPIXPRIV -DSINGLEDEPTH  
   -DXFreeXDGA -DXvExtension   
-DXFree86LOADER  -DXFree86Server-DXF86VIDMODE   
-DXvMCExtension 
-DSMART_SCHEDULE
-DBUILDDEBUG -DXResExtension
-DX_BYTE_ORDER=X_LITTLE_ENDIAN -D_XSERVER64 -DJENSEN_SUPPORT -DNDEBUG  
-DGC_HAS_COMPOSITE_CLIP -UXFree86LOADER   vncExtInit.cc
vncExtInit.cc: In function 'int ProcVncExtGetQueryConnect(_Client*)':
vncExtInit.cc:754: error: cast from 'void*' to 'CARD32' loses precision
make[6]: *** [vncExtInit.o] Error 1

The problem is that vnc do not seem to be buildable on 64 bit architectures,
probably because the compiler is stricter nowdays.

I think I have found it. Upload is on the way.

Regards,

// Ola

On Sun, Feb 19, 2006 at 02:59:14AM -0800, Steve Langasek wrote:
> On Sun, Feb 19, 2006 at 11:29:07AM +0100, Ola Lundqvist wrote:
> 
> > As s390 is no longer part of the release architecture (as far as I know)
> > and also that it do not exist in testing for that archtecture, this is not
> > a serious bug.
> 
> out of date on alpha: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
> out of date on ia64: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
> out of date on mips: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
> out of date on mipsel: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8)
> out of date on hppa: vnc4-common, vnc4server, xvnc4viewer (from 4.0-8) 
> (but hppa isn't keeping up, so nevermind)
> 
> Please don't assume that bugs reported on s390 don't apply to other
> architectures.  This particular build failure shows up on hppa, mips, and
> mipsel as well.  (the failure on alpha/ia64 is a different one.)
> 
> Also, the correct severity for a build failure on a non-release arch would
> be 'important', not 'normal', please.
> 
> Thanks,
> -- 
> Steve Langasek   Give me a lever long enough and a Free OS
> Debian Developer   to set it on, and I can move the world.
> [EMAIL PROTECTED]   http://www.debian.org/



-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



Bug#351043: Determining severity

2006-02-19 Thread David Gil

Thank you for explaining in deep the problem Filipus. Though I think
this is not an RC bug, you have gave me good reasons to keep the
severity as serious. I am convinced that this would frustrate other
users like you.

Just one more note, from http://www.sudoku.com/rule.htm:
Every puzzle has just one correct solution.

Greetings,
David.




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



Bug#352631: SONAME

2006-02-19 Thread Bartosz Fenski aka fEnIo
Hello Miklos.

Seems you've changed ABI in 2.5.x version of FUSE, but you left old SONAME
version, which causes many issues when filesystems that still want to work
with such library.

Please take a look at http://bugs.debian.org/352631

Could you please update your SONAME version to reflect ABI changes?

regards
fEnIo
-- 
  ,''`.  Bartosz Fenski | mailto:[EMAIL PROTECTED] | pgp:0x13fefc40 | irc:fEnIo
 : :' :   32-050 Skawina - Glowackiego 3/15 - w. malopolskie - Poland
 `. `'   phone:+48602383548 | proud Debian maintainer and user
   `-  http://skawina.eu.org | jid:[EMAIL PROTECTED] | rlu:172001


signature.asc
Description: Digital signature


Bug#353529: cdrdao: collides with cue2toc, again

2006-02-19 Thread Mario 'BitKoenig' Holbe
Package: cdrdao
Version: 1:1.2.1-5
Severity: serious

Hello,

while 1:1.2.1-4 did coexist well with cue2toc, 1:1.2.1-5 doesn't do
anymore:

Preparing to replace cdrdao 1:1.2.1-4 (using .../cdrdao_1%3a1.2.1-5_i386.deb) 
...
Unpacking replacement cdrdao ...
dpkg: error processing /var/cache/apt/archives/cdrdao_1%3a1.2.1-5_i386.deb 
(--unpack):
 trying to overwrite `/usr/share/man/man1/cue2toc.1.gz', which is also in 
package cue2toc
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/cdrdao_1%3a1.2.1-5_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


PS: I was thinking about adding this to #353500. However, I don't
understand this bug, so I just left it alone :)


Thanks for your work & regards
   Mario
-- 
The question of whether a computer can think is no more interesting than
the question of whether a submarine can swim.  -- E. W. Dijkstra


signature.asc
Description: Digital signature


Bug#306762: falconseye manpage

2006-02-19 Thread Bas Wijnen
On Sun, Feb 19, 2006 at 12:16:32PM +0100, Bas Wijnen wrote:
> Since that one seems to be more complete, I used it instead.

Giving it a second look, it is literally the nethack manpage.  The one
provided here is much better.

Thanks,
Bas

-- 
I encourage people to send encrypted e-mail (see http://www.gnupg.org).
If you have problems reading my e-mail, use a better reader.
Please send the central message of e-mails as plain text
   in the message body, not as HTML and definitely not as MS Word.
Please do not use the MS Word format for attachments either.
For more information, see http://129.125.47.90/e-mail.html


signature.asc
Description: Digital signature


Bug#353531: dumputils: modifies shipped conffile

2006-02-19 Thread Mario 'BitKoenig' Holbe
Package: dumputils
Version: 0.4-6
Severity: serious

Hello,

dumputils modifies /etc/dumputils.conf in it's postinst script, which is
against Debian Policy 10.7.3.
This behaviour did lead to a) DUMP_FLAGS=0 appended to my dumputils.conf
although I had DUMP_FLAGS=1 manually configured there (this is btw. IMHO
one of the reasons why the policy forbids modification of conffiles :))
and b) this line being added *multiple* times.

If you think it's a good idea to manipulate config-files, please think
about using ucf.
If you still think it's agood idea to manipulate config-files, please
consider that package postinst is probably the wrong place to do it,
since kernels can change independently of the installation/upgrade of
dumputils. Probably it would be better to give some warning in the
init-script if it detects a configuration incompatible to the currently
running kernel.


Thanks for your work & regards
   Mario
-- 
Tower: "Say fuelstate." Pilot: "Fuelstate."
Tower: "Say again." Pilot: "Again."
Tower: "Arghl, give me your fuel!" Pilot: "Sorry, need it by myself..."


signature.asc
Description: Digital signature


Bug#353530: Several package enhancements, fixing some flaws in maintainer scripts

2006-02-19 Thread Kel Modderman

Package: wpasupplicant
Version: 0.4.7-3

The following lintian report shows some quire serious problems:-

Now running lintian...
dpkg-source: warning: extracting unsigned source package (./dsc)
E: wpasupplicant: duplicate-updaterc.d-calls-in-postinst wpasupplicant
E: wpasupplicant: duplicate-updaterc.d-calls-in-postrm wpasupplicant
E: wpasupplicant: duplicate-conffile /etc/init.d/wpasupplicant
E: wpasupplicant: duplicate-conffile /etc/default/wpasupplicant
E: wpasupplicant: duplicate-conffile /etc/wpa_supplicant.conf
W: wpasupplicant: wrong-name-for-upstream-changelog 
usr/share/doc/wpasupplicant/ChangeLog.gz
Finished running lintian.

Upon inspecting the source package I also noticed a few other things that could 
be improved. Attached is a series of patches to address each issue that will be 
briefly described below:-

00_debian-changelog.patch

The changelog entry briefly describing the following changes


01_use-upstream-manpages.patch

Remove debian manpages and used those that are (well) maintained upstream. No 
need to duplicate efforts here imho.


02_wpagui-manpage-man8.patch

Install wpa_gui manpage to man8, as it is an administration tool. The other 
manpages also live here.


03_cleanup-install-target.patch

Eliminate double handling of the binary installation. Don't use debian/tmp or 
*.install files. Install binaries directly into their respective package 
staging directory tree via existing debian/rules commands.


04_precise-qmake-cmd.patch

Explicitly define qmake-qt4 as the $(QMAKE) var. Fails to build on systems with 
previous/parallel qt installations.


05_let-debhelper4-mark-conffiles.patch

The debhelper compat level used marks conffiles automatically.


06_let-dh_installinit-create-postrm.patch

The current postrm file contains the #DEBHELPER# token, which is automatically 
replaced by the _exact_ same code in the rest of the script by dh_installinit. 
This is not good.


07_dh_installinit-postinst-cleanup.patch

Set the update-rc.d options in debian/rules. Also eliminate duplication of code 
automatically injected by dh_installinit.


08_install-upstream-changelog-correctly.patch

Use debian/rules to correctly install the upstream changelog.


09_add-watch-file.patch

Add a watch file to assist in tracking new upstream releases.


Thanks, Kel.

diff -Nru wpasupplicant-0.4.7.orig/debian/changelog wpasupplicant-0.4.7/debian/changelog
--- wpasupplicant-0.4.7.orig/debian/changelog	2006-02-19 10:55:12.0 +1000
+++ wpasupplicant-0.4.7/debian/changelog	2006-02-19 14:34:27.083389648 +1000
@@ -1,3 +1,26 @@
+wpasupplicant (0.4.7-3.1) unstable; urgency=low
+
+  * Use upstream manpages.
+  * Install wpagui manpage to man8.
+  * Install packaged binaries directly into their package staging directories
+instead of double handling them via debain/tmp. Remove wpagui.install and
+wpasupplicant.install.
+  * Use qmake-qt4 directly, to avoid ftbfs on systems with other qt
+versions installed.
+  * When using debhelper >= 4.1.0, conffiles are automatically marked, do not
+duplicate this. Remove wpasupplicant.conffiles.
+  * Avoid duplication of update-rc.d commands in postrm by allowing
+dh_installinit to automatically handle the situation. Remove
+wpasupplicant.postrm.
+  * Use dh_installinit --update-rcd-params option when creating the
+wpasupplicant.postinst script.
+  * Remove code duplicated by dh_installinit in wpasupplicant.postinst,
+invoke-rc.d is added automatically.
+  * Install upstream changelog with correct name.
+  * Add watch file.
+
+ -- Kel Modderman <[EMAIL PROTECTED]>  Sun, 19 Feb 2006 13:55:46 +1000
+
 wpasupplicant (0.4.7-3) unstable; urgency=low
 
   * Another brown paper bag release.
diff -Nru wpasupplicant-0.4.7.orig/debian/wpa_cli.1 wpasupplicant-0.4.7/debian/wpa_cli.1
--- wpasupplicant-0.4.7.orig/debian/wpa_cli.1	2006-02-19 10:55:12.0 +1000
+++ wpasupplicant-0.4.7/debian/wpa_cli.1	1970-01-01 10:00:00.0 +1000
@@ -1,38 +0,0 @@
-.TH WPA_CLI 1 05.09.2004 "" "WPA client"
-.SH NAME
-wpa_cli \- WPA command line client
-.SH SYNOPSIS
-.B wpa_cli
-.I "[\-p] [\-i] [\-hvB] [\-a] [commands...]"
-.SH "DESCRIPTION"
-This manual page documents briefly the
-.BR wpa_cli
-utility.
-.SH OPTIONS
-A summary of commands follows. For a complete description, run
-.BR wpa_cli\ \-h
-from the command line. See the help output for a complete list of
-query commands.
-.TP
-.B \-p
-Path to find control sockets.
-.TP
-.B \-B
-Run a daemon in the background.
-.TP
-.B \-a
-Run in daemon mode, executing the action file based on events from wpa_supplicant.
-.TP
-.B \-i
-Interface to listen on. Default interface is the first found in the socket path.
-.TP
-.B \-h
-Help.
-.TP
-.B \-v
-Version information.
-.SH "SEE ALSO"
-wpa_supplicant(1), wpa_passphrase(1)
-.SH AUTHOR
-This manual page was written by Kyle McMartin <[EMAIL PROTECTED]> for
-the Debian GNU system (but may be used by others).
diff -Nru wpasupplicant-0.4.7.orig/debian/wpa_passphrase.1 wpasupp

Bug#353532: FTBFS (alpha): va_list abuse

2006-02-19 Thread Falk Hueffner
Package: poldi
Version: 0.3.0-1
Severity: important
Justification: fails to build from source

poldi fails to build on Alpha:
[...]
if alpha-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I../..  -I../../intl  -fPIC  
-Wall -g -O2 -Wall -MT logging.o -MD -MP -MF ".deps/logging.Tpo" -c -o 
logging.o logging.c; \
then mv -f ".deps/logging.Tpo" ".deps/logging.Po"; else rm -f 
".deps/logging.Tpo"; exit 1; fi
logging.c: In function 'set_file_fd':
logging.c:298: warning: assignment from incompatible pointer type
logging.c: In function 'do_logv':
logging.c:606: error: incompatible type for argument 3 of 'vsyslog'
make[4]: *** [logging.o] Error 1
make[4]: Leaving directory `/tmp/poldi-0.3.0/src/jnlib'

see full log at
http://buildd.debian.org/fetch.php?pkg=poldi&arch=alpha&ver=0.3.0-2&stamp=1140319236&file=log

This is because of:

  vsyslog (syslog_priorities[JNLIB_LOG_INFO],
   fmt_prefix, NULL);

NULL is not a va_list. I'm unsure what this is supposed to do,
probably you can just use syslog instead.

Falk



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


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



Bug#353533: Empty /usr/share/doc/grep-dctrl directory

2006-02-19 Thread Martin Orr
Package: grep-dctrl
Version: 2.8
Severity: serious
Tags: experimental
Justification: Violates Policy 12.5 and 12.7

grep-dctrl has an empty /usr/share/doc/grep-dctrl directory, despite the
fact that policy says that this directory must contain copyright and
changelog files.  The NEWS.Debian.gz file should also be here so that it is
shown by apt-listchanges on upgrade.  You can achieve this either by
installing these files to this directory, or, since grep-dctrl Depends on
dctrl-tools and comes from the same source package, by making
/usr/share/doc/grep-dctrl a symlink to /usr/share/doc/dctrl-tools.

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

Versions of packages grep-dctrl depends on:
ii  dctrl-tools   2.8Command-line tools to process Debi

grep-dctrl recommends no packages.

-- no debconf information


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



Bug#353534: reprepro: Please add "NotAutomatic: yes" in Release meta-file for experimental

2006-02-19 Thread Julien Valroff
Package: reprepro
Severity: wishlist

If users want to create experimental distributions, it would be great to add
the "NotAutomatic: yes" flag in the generated Release file.

This might also be an option for all distributions.

Cheers,
Julien



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



Bug#353535: define classes on the fai commandline

2006-02-19 Thread Holger Levsen
package: fai
version: 2.9.1
severity: wishlist

Hi,

it would be really useful (esp. for softupdates of systems), if one could 
add/define additional classes on the fai commandline, e.g.

fai -N --define-classes "FOO,BAR"


regards,
Holger


pgp8qspHvE4IQ.pgp
Description: PGP signature


Bug#353536: classes which includes classes

2006-02-19 Thread Holger Levsen
package: fai
version: 2.9.1
severity: wishlist

Hi,

I would be really useful, if classes could define sub-classes.

For example with a sub-directory in /class, let's call it "subclasses".

If the class FOO is defined, and a file /class/subclasses/FOO exists, with the 
following contents:

---begin-
BAR
BAZ
---end---

the classes BAR and BAZ are also defined for that system.


regards,
Holger


pgp3cKjBi2SRv.pgp
Description: PGP signature


Bug#338746: ifplugd and hotplug/udev

2006-02-19 Thread Jose Carlos Garcia Sogo

  Hi Marco,

  Related to this bug, I would ask you what is current udev status, and
how do you think this should be managed in ifplugd. What ifplugd needs
is a reliable way to know when an interface has been added. This will be
compared with ifplugd "hotplug" list of interfaces and if it matches, a
new ifplugd daemon will be initiated for that interface.

  It it not clear to me how this should be implemented in ifplugd right
now, with latest udev.

  Also I would like to ask Oliver what are his plans in regard of this
package, as I think he is somehow MIA (at least regarding this package)

  Cheers,

-- 
Jose Carlos Garcia Sogo
   [EMAIL PROTECTED]



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


Bug#340439: firestarter: denial of service

2006-02-19 Thread Steve Langasek
Hi Yann,

Should this bug report actually be grave?  From the description, it doesn't
sound to me as though it makes the package unusable; do you disagree?

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


signature.asc
Description: Digital signature


Bug#353417: fix for 349930 is incorrect - evms modules still not copied correctly

2006-02-19 Thread Steinar H. Gunderson
On Sat, Feb 18, 2006 at 12:02:20AM -0800, Paul Traina wrote:
> Hi, sorry, but your fix for the earlier bug I reported is pretty hosed.
> Here are my files, in their entirety, please just use them exactly as-is,
> if you feel the need to change them, please contact me and discuss it first,
> as I have a good test environment, and I assume your laptop is still broken.

Something more specific than "it's hosed" would be helpful -- your scripts
simply deviate too much from what's in the package to give me a good hint
about what's wrong and what should be fixed, except for the "do it this way
and all will be fine". :-) (OTOH, I do see that there are still oddities in 
what's _in_ the package; I don't dispute that something should be done, but
it would be nice to have an understanding of what issues we're trying to
fix.)

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Bug#82976: Don't be left out in the cold

2006-02-19 Thread Doreen Dupree
I talked to Adolfo mon and we both agreed that we both wanna get back into
sh ape. 

All we did was fill out 15 sec short form at www.bnyili.org/n2/ and theyll
get back to you asap.

"This is part of the situation that has been going on in Baluchistan for
the past quite some time, and those people have a hand in this who have been
involved in this type of explosion," Yaqoob told reporters.

Rosemarie Jewell





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



Bug#353485: Correction

2006-02-19 Thread Manuel Bilderbeek

Hello,

Sorry, I meant: sensitivity and acceleration settings. I didn't try the 
drag-and-drop threshold setting.


--
Grtjs, Manuel

PS: MSX FOR EVER! (Questions? http://faq.msxnet.org/ )
PPS: Visit my homepage at http://manuel.msxnet.org/


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



Bug#353537: improvements to default gmrunrc

2006-02-19 Thread martin f krafft
Package: gmrun
Version: 0.9.1-1
Severity: wishlist

Nice tool. Please consider the following patch against /etc/gmrunrc:

--- /etc/gmrunrc2003-09-07 07:38:30.0 +0200
+++ .gmrunrc2006-02-19 13:05:07.737153613 +0100
@@ -6,7 +6,7 @@
 Terminal = x-terminal-emulator
 TermExec = ${Terminal} -e
 # These commands will always be run in ${TermExec}
-AlwaysInTerm = ssh telnet ftp lynx mc vi vim pine centericq perldoc man
+AlwaysInTerm = ssh telnet ncftp ftp lynx mc vi vim pine centericq perldoc man 
w3m links mutt emacs editor reportbug
 
 # Set window geometry (except height)
 Width = 400
@@ -36,15 +36,17 @@
 URL_man = ${TermExec} man '%s'
 URL_info = ${TermExec} info '%s'
 URL_pd = ${TermExec} perldoc '%s'
-URL_readme = ${TermExec} 'less /usr/share/doc/%s/README'
+URL_readme = ${TermExec} 'sensible-pager /usr/share/doc/%s/README'
+URL_debreadme = ${TermExec} 'sensible-pager /usr/share/doc/%s/README.Debian'
+URL_changelog = ${TermExec} 'sensible-pager /usr/share/doc/%s/changelog.gz'
+URL_debchangelog = ${TermExec} 'sensible-pager 
/usr/share/doc/%s/changelog.Debian.gz'
 URL_info = ${TermExec} 'info %s'
-URL_sh = sh -c '%s'
+URL_sh = ${TermExec} sh -c "%s; read -p Hit\ enter\ to\ close\ window..."
 
 # Extention handlers
 # If you enter in a simple filename, ie: '/usr/share/doc/foo/index.html',
 #  it will run the given app with the entered text as %s
-EXT:html = gnome-moz-remote %s
-EXT:doc,rtf = AbiWord %s
-EXT:txt,cc,cpp,h,java,html,htm,epl,tex,latex,js,css,xml,xsl,am = emacs %s
-EXT:ps = gv %s
-EXT:pdf = xpdf %s
+EXT:doc,rtf = sh -c 'run-mailcap %s || AbiWord %s || ooffice %s'
+EXT:txt,c,cc,cpp,h,java,html,htm,epl,tex,latex,js,css,xml,xsl,am,in = 
${TermExec} editor %s
+EXT:ps,eps = sh -c 'run-mailcap %s || gv %s || kghostview %s'
+EXT:pdf = sh -c 'run-mailcap %s || xpdf %s || kpdf %s'

-- System Information:
Debian Release: testing/unstable
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'testing'), (98, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages gmrun depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.6-1GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-9  GCC support library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgtk2.0-0   2.8.12-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.10.3-1   Layout and rendering of internatio
ii  libstdc++51:3.3.6-12 The GNU Standard C++ Library v3

gmrun recommends no packages.

-- no debconf information

-- 
 .''`. martin f. krafft <[EMAIL PROTECTED]>
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP (sub)keys? Use subkeys.pgp.net as keyserver!
 
"if you stew apples like cranberries,
 they taste more like prunes than rhubarb does."
   -- groucho marx


signature.asc
Description: Digital signature (GPG/PGP)


Bug#353538: please add option to display stderr in an X window

2006-02-19 Thread martin f krafft
Package: gmrun
Version: 0.9.1-1
Severity: wishlist

It would be nice if gmrun had an option with which I could tell it
to display stderr output in an X window if the programme I executed
had a non-zero exit status.

-- System Information:
Debian Release: testing/unstable
  APT prefers stable
  APT policy: (700, 'stable'), (600, 'testing'), (98, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=en_GB, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages gmrun depends on:
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libc6 2.3.6-1GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-9  GCC support library
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgtk2.0-0   2.8.12-1   The GTK+ graphical user interface 
ii  libpango1.0-0 1.10.3-1   Layout and rendering of internatio
ii  libstdc++51:3.3.6-12 The GNU Standard C++ Library v3

gmrun recommends no packages.

-- no debconf information

-- 
 .''`. martin f. krafft <[EMAIL PROTECTED]>
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP (sub)keys? Use subkeys.pgp.net as keyserver!
 
seminars, n.:
  from "semi" and "arse", hence, any half-assed discussion.


signature.asc
Description: Digital signature (GPG/PGP)


Bug#353540: ~/.bzr.conf/email doesn't work -- man page out of date

2006-02-19 Thread Martin Michlmayr
Package: bzr
Version: 0.7-2
Severity: minor

I followed the documentation and created a ~/.bzr.conf/email file but
bzw whoami still shows the wrong result (namely the value of $EMAIL).

997:[EMAIL PROTECTED]: ~] cat .bzr.conf/email
Martin Michlmayr <[EMAIL PROTECTED]>
998:[EMAIL PROTECTED]: ~] bzr whoami
[EMAIL PROTECTED]

However, setting $BZREMAIL works:

1002:[EMAIL PROTECTED]: ~] export BZREMAIL="Martin Michlmayr
<[EMAIL PROTECTED]>"
1003:[EMAIL PROTECTED]: ~] bzr whoami
Martin Michlmayr <[EMAIL PROTECTED]>

Aha, creating  $HOME/.bazaar/bazaar.conf works.  So the bzr(1) man
page is out of date.



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

Versions of packages bzr depends on:
ii  python2.4 2.4.2-2An interactive high-level object-o
ii  python2.4-celementtree1.0.2-2Light-weight toolkit for XML proce

bzr recommends no packages.

-- no debconf information

-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#353539: metamail: crashes with very long filenames in messages

2006-02-19 Thread Ulf Harnhammar
Subject: metamail: crashes with very long filenames in messages
Package: metamail
Version: 2.7-50
Severity: normal
Tags: patch

Hello,

metamail crashes if a message has a part with a very long filename and the
user interacts to save it under that name, which is clearly visible on the
screen:


[EMAIL PROTECTED]:~/recently$ /usr/bin/metamail < metamail2.txt
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: metamail crash bug #2

This message contains raw digital data, which can either be viewed as text
or written to a file.

What do you want to do with the raw data?
1 -- See it as text
2 -- Write it to a file
3 -- Just skip it
4 -- Give another content type

2
Please enter the name of a file to which the data should be written
(Default: 













) 
>
Segmentation fault
[EMAIL PROTECTED]:~/recently$


I have attached a patch and a test message.

// Ulf Harnhammar

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

Versions of packages metamail depends on:
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libncurses5   5.5-1  Shared libraries for terminal hand

Versions of packages metamail recommends:
ii  mime-support  3.35-1 MIME files 'mime.types' & 'mailcap
ii  sharutils 1:4.2.1-15 shar, unshar, uuencode, uudecode

-- no debconf information

--- src/metamail/metamail.c.old 2006-02-19 13:18:51.0 +0100
+++ src/metamail/metamail.c 2006-02-19 13:20:35.0 +0100
@@ -385,6 +385,8 @@ int nestingdepth;
Fname[0] = 0;
 
 suggestedname = FindParam("name");
+if (strlen(suggestedname) > NAME_MAX - 50)
+suggestedname[NAME_MAX - 50] = '\0';
 if (!suggestedname) {
 MkTmpFileName(SugBuf);
 suggestedname = SugBuf;
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Subject: metamail crash bug #2
MIME-Version: 1.0
Content-Type: application/octet-stream; 
name=
Content-Transfer-Encoding: quoted-printable

hi!=00=00



Bug#353541: Please remove hsftp

2006-02-19 Thread Ola Lundqvist
Package: ftp.debian.org
Severity: normal

Hi

I no longer think hsftp is useful. The package only work
when no password is needed and that is not a very good solution
from a security point of view.

See bug #320573 for more information.

Regards,

// Ola

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#238687: Submit Debian release and subarchs

2006-02-19 Thread Falk Hueffner
Hi,

I'd like to lobby again for the inclusion of my patch at
http://bugs.debian.org/238687 again, which reports Alpha
subarchitectures and the Debian version. The motivation is to decide
whether to drop ev4 or ev56 support. The objections were:

* Subarchitecture information should come from another package. Well,
  there is no such package right now, and it seems silly to start one
  containing 10 lines of code. Moreover, I would prefer, as a matter
  of principle, to only report information we are sure is needed for
  some concrete decision.

* /etc/debian_version is unreliable. However, I don't think the
  percentage of users actively setting their /etc/debian_version to
  something bogus is that high, so it would be still useful.

It would be nice to get some more opinions on this...

-- 
Falk


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



Bug#320573: Package now requested for removal

2006-02-19 Thread Ola Lundqvist
Hi

I have now requested the removal of this package as upstream
support is no longer existing and the usefulness of this
package is nowdays very limited as there are support in ssh
for sftp.

Regards,

// Ola

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#338746: ifplugd and hotplug/udev

2006-02-19 Thread Marco d'Itri
On Feb 19, Jose Carlos Garcia Sogo <[EMAIL PROTECTED]> wrote:

>   Related to this bug, I would ask you what is current udev status, and
> how do you think this should be managed in ifplugd. What ifplugd needs
> is a reliable way to know when an interface has been added. This will be
I would do it this way, but of course some variations are possible.
Install a rule file like this, and the appropriate symlink:

SUBSYSTEM=="net", RUN+="/etc/init.d/ifplugd udev"

Then implement in the init script an udev parameter which checks $ACTION
("add" or "remove") and $INTERFACE (the interface name).
Add there the check for $HOTPLUG_INTERFACES too.

The call to ifrename needs to go because interfaces renaming must be
handled by udev or the events will be delivered for the old name.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#353533: Empty /usr/share/doc/grep-dctrl directory

2006-02-19 Thread Antti-Juhani Kaijanaho
Martin Orr wrote:
> grep-dctrl has an empty /usr/share/doc/grep-dctrl directory

It's supposed to be a symbolic link to dctrl-tools' doc dir.

I've seen this happen myself, but I don't know what causes it. Do you
have any theories?



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



Bug#353542: python-cherrypy2.1: Security update available

2006-02-19 Thread Magnus Therning
Package: python-cherrypy2.1
Version: 2.1.0-1
Severity: important

Cut from the CherryPy website:

 2006-01-10 CherryPy-2.1.1 released. Fixes serious security flaw in
 2.1.0.
 We just fixed a serious security flaw in staticfilter. Basically, if
 you used staticfilter anyone could read any file on your system by
 requesting URLs with ".." in them. The fix is in SVN and we backported
 it to the 2.1.0 release. If you're running 2.1.0 we recommend that you
 upgrade to 2.1.1 ASAP. Download links are on the download page.

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

Versions of packages python-cherrypy2.1 depends on:
ii  python2.3.5-5An interactive high-level object-o
ii  python2.3-cherrypy2.1 2.1.0-1Python web development framework f

python-cherrypy2.1 recommends no packages.

-- no debconf information


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



Bug#353543: cdrdao: file conflict with cue2toc (again)

2006-02-19 Thread Xavier Bestel
Package: cdrdao
Version: 1:1.2.1-4
Severity: grave
Justification: renders package unusable


Hi,

file /usr/share/man/man1/cue2toc.1.gz belongs to package cue2toc.

Thanks,
Xav

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-10-amd64-k8
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages cdrdao depends on:
ii  libc62.3.6-1 GNU C Library: Shared libraries an
ii  libgcc1  1:4.1-0exp0 GCC support library
ii  libstdc++6   4.1-0exp4   The GNU Standard C++ Library v3

cdrdao recommends no packages.

-- no debconf information



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



Bug#353544: takes too long to load each time emacs is started

2006-02-19 Thread Per Olofsson
Package: semantic
Version: 1:1.0pre3-1
Severity: important

When semantic is installed, emacs takes a lot longer to start, even
when semantic is not going to be used. Thus, semantic annoys all emacs
users on the computer, even those who never use semantic.

I think the problem is the following lines in
/etc/emacs/site-start.d/52semantic.el:

(require 'semantic-grammar)
(require 'semantic-ede-grammar)

According to the documentation[1], only (require 'semantic-load)
should be needed (it provides autoloads).

[1] http://cedet.sourceforge.net/info/semantic.html#Install

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

Versions of packages semantic depends on:
ii  cedet-common 1:1.0pre3-1 Collection of Emacs Development En
ii  ede  1:1.0pre3-1 File manager / Makefile generator 
ii  eieio1:1.0pre3-1 Enhanced Implementation of Emacs I
ii  speedbar 1:1.0pre3-1 Everything browser, or Dired on st

semantic recommends no packages.

-- no debconf information

-- 
Pelle


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



Bug#235654: teapop 0.3.7-4.1 NMU

2006-02-19 Thread Matej Vela
Hello,

I'm doing an NMU of teapop to fix #343804 and include new
translations; diff attached.

Thanks,

Matej
diff -u teapop-0.3.7/debian/changelog teapop-0.3.7/debian/changelog
--- teapop-0.3.7/debian/changelog
+++ teapop-0.3.7/debian/changelog
@@ -1,3 +1,13 @@
+teapop (0.3.7-4.1) unstable; urgency=medium
+
+  * NMU.
+  * Update MySQL build dependency to libmysqlclient15-dev.  Closes: #343804.
+  * debian/po/ca.po: Add translation by Joan Queralt.  Closes: #235654.
+  * debian/po/sv.po: Add translation by Daniel Nylander.  Closes: #342920.
+  * debian/po/vi.po: Add translation by Clytie Siddall.  Closes: #320326.
+
+ -- Matej Vela <[EMAIL PROTECTED]>  Sun, 19 Feb 2006 13:48:12 +0100
+
 teapop (0.3.7-4) unstable; urgency=low
 
   * Rebuild to update debconf dependency to allow use of cdebconf-2.0.
diff -u teapop-0.3.7/debian/control teapop-0.3.7/debian/control
--- teapop-0.3.7/debian/control
+++ teapop-0.3.7/debian/control
@@ -2,7 +2,7 @@
 Section: mail
 Priority: extra
 Maintainer: Nick Phillips <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.1.16), libmysqlclient14-dev, postgresql-dev, 
libldap2-dev
+Build-Depends: debhelper (>= 4.1.16), libmysqlclient15-dev, postgresql-dev, 
libldap2-dev
 Standards-Version: 3.6.1.1
 
 Package: teapop
only in patch2:
unchanged:
--- teapop-0.3.7.orig/debian/po/ca.po
+++ teapop-0.3.7/debian/po/ca.po
@@ -0,0 +1,178 @@
+#
+#Translators, if you are not familiar with the PO format, gettext
+#documentation is worth reading, especially sections dedicated to
+#this format, e.g. by running:
+# info -n '(gettext)PO Files'
+# info -n '(gettext)Header Entry'
+#Some information specific to po-debconf are available at
+#/usr/share/doc/po-debconf/README-trans
+# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
+#Developers do not need to manually edit POT or PO files.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: teapop_0.3.7-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2004-07-26 22:40+1200\n"
+"PO-Revision-Date: 2004-08-16 12:20+0200\n"
+"Last-Translator: Joan Queralt <[EMAIL PROTECTED]>\n"
+"Language-Team: Catalan \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.3.1\n"
+"Plural-Forms: plural=n != 1\n"
+
+#. Type: select
+#. Choices
+#: ../templates.master:3
+msgid "inetd, standalone, disabled"
+msgstr "inetd, independent, desactivat"
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid "How do you want teapop to be run?"
+msgstr "Com voleu que s'executi el teapop?"
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid ""
+"Teapop can be run either using one of the common inetd \"super-servers\", in "
+"\"standalone\" (otherwise known as \"daemon\") mode, or \"disabled\" (i.e. "
+"it will not be run at all at the moment)."
+msgstr ""
+"El teapop pot executar-se utilitzant un dels �«super-servidors�» comuns "
+"inetd, o en mode �«independent�» (tamb�© anomenat �«dimoni�»), o 
�«desactivat�» "
+"(�©s a dir que, de moment, no ser�  executat en absolut)."
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid ""
+"If run in standalone mode, teapop runs all the time, and does not have to be "
+"started up each time a user connects to it. This makes it more efficient for "
+"large/busy systems."
+msgstr ""
+"Si s'executa de forma independent, el teapop s'executa tot el temps, i no ha "
+"d'�©sser iniciat cada vegada que un usuari s'hi connecta. Aix�² fa que sigui "
+"m�©s eficient per sistemes grans o ocupats."
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid ""
+"If run in inetd mode, teapop is only run when needed. This means that it "
+"only uses memory when it's being used, and can give you more control over "
+"the number of concurrent connections, where it will accept connections from, "
+"and so on (especially with xinetd)."
+msgstr ""
+"Si s'executa en mode inetd, el teapop nom�©s s'executar�  quan es necessiti. "
+"Aix�² significa que nom�©s utilitzar�  mem�²ria quan s'estigui utilitzant, i 
us "
+"pot donar m�©s control sobre el nombre de connexions concorrents, des d'on "
+"acceptar�  connexions, etc (especialment amb el xinetd)."
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid "If disabled, everything will be set up, but nothing will actually be 
run."
+msgstr ""
+"Si es desactiva, es configurar�  tot, per�² res s'executar�  realment."
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid "The default is to use inetd mode."
+msgstr "L'opci�³ per defecte �©s utilitzar el mode inetd."
+
+#. Type: select
+#. Description
+#: ../templates.master:5
+msgid ""
+"If you change your mind later, see ${CONFFILE_DEB} for instructions on how "
+"to change it."
+msgstr ""
+"Si canvieu d'opini�³ m�©s endavant, mireu ${CONFFILE_DEB} per obtenir les "
+"instruccions per modificar-ho."
+
+#. Type: boolean
+#. Description
+#: ../templates.mast

Bug#348664: test compile with CONFIG_NFSMOUNT in config-udeb-linux

2006-02-19 Thread Holger Levsen
Hi,

I just did a test compile with CONFIG_NFSMOUNT enabled in config-udeb-linux, 
to see how much bigger it gets:

Roughly 3k for the udeb and the busybox binary, are there any other sizes to 
check ?

matrix:~$ ls -latr busybox-udeb_1.01-*udeb
-rw-r--r-- 1 holger holger 133082 Feb 19 12:30 busybox-udeb_1.01-4_i386.udeb
-rw-r--r-- 1 holger holger 136892 Feb 19 12:39 busybox-udeb_1.01-5_i386.udeb
matrix:~$ ls -la busybox-1.01-4/bin/busybox 
-rwxr-xr-x 1 holger holger 230248 Feb 19 12:30 busybox-1.01-4/bin/busybox
matrix:~$ ls -la busybox-1.01-5/bin/busybox 
-rwxr-xr-x 1 holger holger 233224 Feb 19 12:39 busybox-1.01-5/bin/busybox


I've also not tested yet, if this is sufficient to mount nfs-shares. 

I want this enabled in the busybox udeb, so it's possible to use d-i 
boot-media to mount an fai nfsroot, to do fai installs...


regards,
Holger


pgp8vsnPtgcjC.pgp
Description: PGP signature


Bug#348421: (forw) Re: Bug#348421: samba: please remove broken vfs module: extd_audit

2006-02-19 Thread bugs
On Sunday 19 February, 2006 � 09:43:00AM +0100, Christian Perrier wrote:
> 
> Well, even though there is probably a bug, I don't think that this one
> is enough to request for the *removal* of the module.
> 
> You probably have other examples, so please mention them.
> 
> Please also answer to the bug report, not to me directly.

for me it's clearly a bug because you cannot control the verbosity of
extd_audit and it will fill your logs in hours.



Bug#350033: binary in orig.tar.gz

2006-02-19 Thread Steve Langasek
FWIW, I looked at this and I'm pretty sure this binary does *not* correspond
to the current source code.  Since the software is released under the GPL,
we have no right to redistribute such a binary, so yes -- this bug is RC.

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


signature.asc
Description: Digital signature


Bug#353543: cdrdao: file conflict with cue2toc (again)

2006-02-19 Thread Daniel Baumann
I know it.. please check the bts first if the bug is already submitted,
especially when submitting a bug of severity grave/serious.

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


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



Bug#353530: Several package enhancements, fixing some flaws in maintainer scripts

2006-02-19 Thread Reinhard Tartler
Thank you very much for your bugreport and your patch.

We are currently preparing an upload for 0.4.7-4, you can look at our
current process here:
http://svn.debian.org/wsvn/pkg-wpa/trunk/wpasupplicant/?rev=0&sc=0

Parts of your patch are already included there, I will look if anything
is missing. The svn should already be lintian clean.

Thanks again,
Reinhard.

On Sun, Feb 19, 2006 at 09:44:58PM +1000, Kel Modderman wrote:
> Package: wpasupplicant
> Version: 0.4.7-3
> 
> The following lintian report shows some quire serious problems:-
> 
> Now running lintian...
> dpkg-source: warning: extracting unsigned source package (./dsc)
> E: wpasupplicant: duplicate-updaterc.d-calls-in-postinst wpasupplicant
> E: wpasupplicant: duplicate-updaterc.d-calls-in-postrm wpasupplicant
> E: wpasupplicant: duplicate-conffile /etc/init.d/wpasupplicant
> E: wpasupplicant: duplicate-conffile /etc/default/wpasupplicant
> E: wpasupplicant: duplicate-conffile /etc/wpa_supplicant.conf
> W: wpasupplicant: wrong-name-for-upstream-changelog 
> usr/share/doc/wpasupplicant/ChangeLog.gz
> Finished running lintian.
> 
> Upon inspecting the source package I also noticed a few other things that 
> could be improved. Attached is a series of patches to address each issue 
> that will be briefly described below:-
> 
> 00_debian-changelog.patch
> 
> The changelog entry briefly describing the following changes
> 
> 
> 01_use-upstream-manpages.patch
> 
> Remove debian manpages and used those that are (well) maintained upstream. 
> No need to duplicate efforts here imho.
> 
> 
> 02_wpagui-manpage-man8.patch
> 
> Install wpa_gui manpage to man8, as it is an administration tool. The other 
> manpages also live here.
> 
> 
> 03_cleanup-install-target.patch
> 
> Eliminate double handling of the binary installation. Don't use debian/tmp 
> or *.install files. Install binaries directly into their respective package 
> staging directory tree via existing debian/rules commands.
> 
> 
> 04_precise-qmake-cmd.patch
> 
> Explicitly define qmake-qt4 as the $(QMAKE) var. Fails to build on systems 
> with previous/parallel qt installations.
> 
> 
> 05_let-debhelper4-mark-conffiles.patch
> 
> The debhelper compat level used marks conffiles automatically.
> 
> 
> 06_let-dh_installinit-create-postrm.patch
> 
> The current postrm file contains the #DEBHELPER# token, which is 
> automatically replaced by the _exact_ same code in the rest of the script 
> by dh_installinit. This is not good.
> 
> 
> 07_dh_installinit-postinst-cleanup.patch
> 
> Set the update-rc.d options in debian/rules. Also eliminate duplication of 
> code automatically injected by dh_installinit.
> 
> 
> 08_install-upstream-changelog-correctly.patch
> 
> Use debian/rules to correctly install the upstream changelog.
> 
> 
> 09_add-watch-file.patch
> 
> Add a watch file to assist in tracking new upstream releases.
> 
> 
> Thanks, Kel.
> 

> diff -Nru wpasupplicant-0.4.7.orig/debian/changelog 
> wpasupplicant-0.4.7/debian/changelog
> --- wpasupplicant-0.4.7.orig/debian/changelog 2006-02-19 10:55:12.0 
> +1000
> +++ wpasupplicant-0.4.7/debian/changelog  2006-02-19 14:34:27.083389648 
> +1000
> @@ -1,3 +1,26 @@
> +wpasupplicant (0.4.7-3.1) unstable; urgency=low
> +
> +  * Use upstream manpages.
> +  * Install wpagui manpage to man8.
> +  * Install packaged binaries directly into their package staging directories
> +instead of double handling them via debain/tmp. Remove wpagui.install and
> +wpasupplicant.install.
> +  * Use qmake-qt4 directly, to avoid ftbfs on systems with other qt
> +versions installed.
> +  * When using debhelper >= 4.1.0, conffiles are automatically marked, do not
> +duplicate this. Remove wpasupplicant.conffiles.
> +  * Avoid duplication of update-rc.d commands in postrm by allowing
> +dh_installinit to automatically handle the situation. Remove
> +wpasupplicant.postrm.
> +  * Use dh_installinit --update-rcd-params option when creating the
> +wpasupplicant.postinst script.
> +  * Remove code duplicated by dh_installinit in wpasupplicant.postinst,
> +invoke-rc.d is added automatically.
> +  * Install upstream changelog with correct name.
> +  * Add watch file.
> +
> + -- Kel Modderman <[EMAIL PROTECTED]>  Sun, 19 Feb 2006 13:55:46 +1000
> +
>  wpasupplicant (0.4.7-3) unstable; urgency=low
>  
>* Another brown paper bag release.

> diff -Nru wpasupplicant-0.4.7.orig/debian/wpa_cli.1 
> wpasupplicant-0.4.7/debian/wpa_cli.1
> --- wpasupplicant-0.4.7.orig/debian/wpa_cli.1 2006-02-19 10:55:12.0 
> +1000
> +++ wpasupplicant-0.4.7/debian/wpa_cli.1  1970-01-01 10:00:00.0 
> +1000
> @@ -1,38 +0,0 @@
> -.TH WPA_CLI 1 05.09.2004 "" "WPA client"
> -.SH NAME
> -wpa_cli \- WPA command line client
> -.SH SYNOPSIS
> -.B wpa_cli
> -.I "[\-p] [\-i] [\-hvB] [\-a] [commands...]"
> -.SH "DESCRIPTION"
> -This manual page documents briefly the
> -.BR wpa_cli
> -utility.
> -.SH OPTIONS
> -A summary of commands follows. For a c

Bug#353543: cdrdao: file conflict with cue2toc (again)

2006-02-19 Thread Xavier Bestel
Le dimanche 19 février 2006 à 14:09 +0100, Daniel Baumann a écrit :
> I know it.. please check the bts first if the bug is already submitted,
> especially when submitting a bug of severity grave/serious.

Sorry, I checked too quicly.

Xav





Bug#353546: root-portal: cannot change height of gnometext windows

2006-02-19 Thread Gighi
Package: root-portal
Version: 0.5.2-2
Severity: normal

Hi, I noticed that if I change the parameter "height" of a gnometext
window, the program will reset it to a standard value, and this is very
boring, because i can't enlarge windows.
For example:

[EMAIL PROTECTED]:~/.root-portal$ cat config.rdf | grep height
  

After I run root-portal:

[EMAIL PROTECTED]:~/.root-portal$ cat config.rdf | grep height 
  

I also noticed that when I run the program, the values "xpos" and "ypos"
are every time incremented by 1.

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

Versions of packages root-portal depends on:
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.10.1-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.1-2   The Bonobo UI library
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libgcc1   1:4.0.2-8  GCC support library
ii  libgconf2-4   2.12.1-9   GNOME configuration database syste
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgnome-keyring0 0.4.6-2GNOME keyring services library
ii  libgnome2-0   2.12.0.1-5 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.12.0-2   A powerful object-oriented display
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.12.2-5   GNOME virtual file-system (runtime
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  liborbit2 1:2.12.4-1 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-02.12.2-3   library for GNOME 2 panel applets
ii  libpango1.0-0 1.10.3-1   Layout and rendering of internatio
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libstdc++64.0.2-8The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxi66.9.0.dfsg.1-4 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-4 X Window System multi-head display
ii  libxml1   1:1.8.17-12GNOME XML library
ii  libxml2   2.6.23.dfsg.1-0.1  GNOME XML library
ii  libxrandr26.9.0.dfsg.1-4 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libzvt2.0-0   2.0.1cvs20021009-4 The GNOME 2 zvt (zterm) widget - r
ii  zlib1g1:1.2.3-9  compression library - runtime

root-portal recommends no packages.

-- no debconf information


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



Bug#332666: Progress on Debian Package for FSL

2006-02-19 Thread Michael Hanke
Hi!

The last update on my packaging attempt of FSL was some time ago, so I
guess I should do another one.


On Thu, Jan 12, 2006 at 02:58:19PM +0100, Andreas Tille wrote:
> On Thu, 12 Jan 2006, Michael Hanke wrote:



> >And now for the remaining problems. There is still no official package
> >for 'newmat'. Although there has been a RFS lately:
> >
> >http://lists.debian.org/debian-mentors/2006/01/msg00047.html
> >
> >I also made an unofficial package of 'newmat', because the above
> >packaging attempt did not work with FSL due to some differences in the
> >build configuration. I asked the maintainer for the appropriate changes.
> >If this is done so I can add this package to the build-dependencies of
> >the FSL package.
> 
> If it is in your (=Debian-Med's) interest I would volunteer to sponsor
> a newmat package provided that it fits your needs.  So if a missing
> sponsor for newmat would be the final show stopper for FSL just come
> back to me.
I did some testing with the newmat package (made by Philippe Coval). It
includes a shared library and works pretty well for me. I had a quick
look on the package and made some suggestions, but it would be nice if
someone more experienced with shared-library packaging could have a look
at it (it is available from mentors.d.n). And IIRC the newmat package
still needs a sponsor (Andreas?!).

> >I was not able to use the Debian version of libgdchart. Neither did
> >compiling FSL worked nor was I able to locate the problem.
> 
> Can you specify the problem more detailed?  I have no experiences with
> libgdchart, but dicussing the problem on debian-devel is very often
> helpful.

I get a linker error if I use the Debian version of libgdchart:

g++  -L/usr/lib -L/home/michael/debian/build-area/fsl-xp/lib -L/usr/lib
-L/usr/lib  -L/usr/lib -L/usr/lib -L.
-L/home/michael/debian/build-area/fsl-xp/lib
-L/home/michael/debian/build-area/fsl-xp/lib -o filmbabe
halfcosbasisoptions.o filmbabe_manager.o filmbabeoptions.o
filmbabe_vb_flobs.o filmbabe.o -lutils -lmiscplot -lmiscpic -lnewimage
-lmiscplot -lmiscmaths -lnewmat -lfslio -lniftiio -lprob -lgdc -lgd
-lpng -lznz -lz -lm
/usr/lib/libgdc.so: undefined reference to `GDCPIE_label_font'
/usr/lib/libgdc.so: undefined reference to `GDC_title_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_3d_angle'
f/usr/lib/libgdc.so: undefined reference to `GDCPIE_label_dist'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_title_font'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_title_size'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_percent_labels'
/usr/lib/libgdc.so: undefined reference to `GDC_xtitle_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDC_annotation_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_label_line'
/usr/lib/libgdc.so: undefined reference to `GDC_title_font'
/usr/lib/libgdc.so: undefined reference to `GDC_annotation_font'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_label_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_LineColor'
/usr/lib/libgdc.so: undefined reference to `GDC_xtitle_font'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_EdgeColor'
/usr/lib/libgdc.so: undefined reference to `GDC_ytitle_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_explode'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_3d_depth'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_percent_fmt'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_other_threshold'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_title'
/usr/lib/libgdc.so: undefined reference to `GDC_xaxis_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDC_xaxis_font'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_PlotColor'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_missing'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_BGColor'
/usr/lib/libgdc.so: undefined reference to `GDC_ytitle_font'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_title_ptsize'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_perspective'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_Color'
/usr/lib/libgdc.so: undefined reference to `GDCPIE_label_size'
collect2: ld returned 1 exit status


I compared the included libgdc version with the current Debian one and
found no significant differences. I spend some time using Google and
only found a single guy with a similar problem, but no solution. My first
guess was a possible problem using a C lib in a C++ program. I attached
the source code file that seems to cause the problem. 

I my oppinion this issue has to be solved before considering FSL as a
candidate for Debian.


> >The last remaining library is CEPHES. There is still no package. But as
> >I do not know of any other application that uses this lib, it might be
> >ok to keep this one compiled from the FSL source code.
> 
> Well, this depends (as always).  If you ask me issuing a RFP or rather
> ITP and packaging it from a clean upstream source would be the
> clean way to go (TM).  If this doe

Bug#353547: Can't dpkg-reconfigure scanlogd

2006-02-19 Thread Mark-Walter
Package: scanlogd

Version: 2.2-1

  When I invoke `dpkg-reconfigure scanlogd' without arguments from an 
  ordinary shell prompt it prints `adduser: Warning: The home dir you
  specified already exists. User scanlogd does already exist. Exiting...
  Starting scanlogd:', .

  Here is a transcript:

  $ dpkg-reconfigure scanlogd 
  adduser: Warning: The home dir you specified already exists.
  User scanlogd does already exist. Exiting...
  Starting scanlogd:

  I suggest I have to delete the user scanlogd in order
  to reconfigure the package but I haven't tried so far.

I am using the distribution woody. The Linux version is 
2.6.15 ([EMAIL PROTECTED]) (gcc version 2.95.4 20011002 and
the  libc6 Version: 2.2.5-11.8.

-- 
Best Regards,

Mark


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



Bug#352520: vnc4 - FTBFS: mv: cannot stat `/build/buildd/vnc4-4.1.1+X4.3.0/debian/tmp/usr/X11R6/lib/modules/extensions/vnc.so': No such file or directory

2006-02-19 Thread Bastian Blank
reopen 352520
severity 352520 serious
thanks

On Sun, Feb 19, 2006 at 11:29:07AM +0100, Ola Lundqvist wrote:
> As s390 is no longer part of the release architecture (as far as I know)
> and also that it do not exist in testing for that archtecture, this is not
> a serious bug.

This is a general bug and not fixed.

Bastian

-- 
Spock: We suffered 23 casualties in that attack, Captain.



Bug#353530: Several package enhancements, fixing some flaws in maintainer scripts

2006-02-19 Thread Kel Modderman

Reinhard Tartler wrote:


Thank you very much for your bugreport and your patch.

We are currently preparing an upload for 0.4.7-4, you can look at our
current process here:
http://svn.debian.org/wsvn/pkg-wpa/trunk/wpasupplicant/?rev=0&sc=0

Parts of your patch are already included there, I will look if anything
is missing. The svn should already be lintian clean.

Thanks again,
Reinhard.

 



wpasupplicant.overide - "wpasupplicant: 
duplicate-updaterc.d-calls-in-postrm wpasupplicant"


Thats really not the best way to make it lintian clean :-)

I hope you will take some of take a few of the suggested changes on board.

And, I'm very glad there has been significant progress on the packaging 
of wpasupplicant., thanks.


Kel.


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



Bug#353549: udevtest pathname weird

2006-02-19 Thread Greg Kochanski
Package: udev
Version: 0.084-3
Severity: normal



Udevtest requires me to remove the first pathname component
from the actual (as mounted) pathname of a device.
For instance,
udevtest /class/...   
works, but
udevtest /sys/class/...
fails.

This is not documented in the udevtest man page.
So, it is at least a documentation bug.

It would be confusing to users, even if documented,
so I'd interpret it as a software bug; the behaviour
of devtest ought to change.

Still, I know how little enthusiasm there normally is
for actually changing the way programs work, so I don't expect
more than a fix to the documentation.While you're at it,
though, the man page could use an example showing a possible
path (or pseudo path) and the results from udevtest.



$ udevtest /sys/class/usb_device/usbdev1.1/
main: unable to open '/sys/class/usb_device/usbdev1.1/'
$


$ udevtest /class/usb_device/usbdev1.1/
main: looking at device '/class/usb_device/usbdev1.1' from subsystem 
'usb_device'
run_program: '/bin/sh -c 'K=usbdev1.1; K=${K#usbdev}; printf bus/usb/%03i/%03i 
${K%%.*} ${K#*.}''
run_program: '/bin/sh' (stdout) 'bus/usb/001/001'
run_program: '/bin/sh' returned with status 0
udev_rules_get_name: rule applied, 'usbdev1.1' becomes 'bus/usb/001/001'
create_node: creating device node '/dev/bus/usb/001/001', major = '189', minor 
= '0', mode = '0664', uid = '0', gid = '0'
main: run: 'socket:/org/kernel/udev/monitor'
main: run: 'udev_run_hotplugd usb_device'
main: run: 'udev_run_devd usb_device'
$


-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 4
lrwxrwxrwx  1 root root 20 2006-02-11 22:32 020_permissions.rules -> 
../permissions.rules
lrwxrwxrwx  1 root root 19 2006-02-11 22:35 025_libgphoto2.rules -> 
../libgphoto2.rules
lrwxrwxrwx  1 root root 16 2006-02-11 22:35 025_libsane.rules -> 
../libsane.rules
lrwxrwxrwx  1 root root 19 2006-02-11 22:32 cd-aliases.rules -> 
../cd-aliases.rules
-rw-r--r--  1 root root 70 2006-02-19 12:47 gpk.rules
lrwxrwxrwx  1 root root 13 2006-02-11 22:32 udev.rules -> ../udev.rules
lrwxrwxrwx  1 root root 19 2006-02-11 22:32 z20_persistent.rules -> 
../persistent.rules
lrwxrwxrwx  1 root root 12 2006-02-11 22:32 z50_run.rules -> ../run.rules
lrwxrwxrwx  1 root root 16 2006-02-11 22:32 z55_hotplug.rules -> 
../hotplug.rules
lrwxrwxrwx  1 root root 19 2006-02-11 20:17 z60_alsa-utils.rules -> 
../alsa-utils.rules
lrwxrwxrwx  1 root root 17 2006-02-11 22:32 z70_hotplugd.rules -> 
../hotplugd.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda3/dev
/sys/block/hdd/dev
/sys/block/ram0/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram1/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/block/sda/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input1/event1/dev
/sys/class/input/input2/event2/dev
/sys/class/input/input2/mouse0/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/hpet/dev
/sys/class/misc/hw_random/dev
/sys/class/misc/psaux/dev
/sys/class/misc/rtc/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dsp/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1c/dev
/sys/class/sound/pcmC0D2c/dev
/sys/class/sound/pcmC0D3c/dev
/sys/class/sound/pcmC0D4p/dev
/sys/class/sound/timer/dev
/sys/class/usb_device/usbdev1.1/dev
/sys/class/usb_device/usbdev2.1/dev
/sys/class/usb_device/usbdev3.1/dev
/sys/class/usb_device/usbdev4.1/dev
/sys/class/usb_device/usbdev5.1/dev
/sys/class/usb_device/usbdev5.6/dev

-- Kernel configuration:


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

Versions of packages udev depends on:
ii  initscripts   2.86.ds1-4 Standard scripts needed for bootin
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libselinux1   1.28-2 SELinux shared libraries
ii  lsb-base  3.0-15 Linux Standard Base 3.0 init scrip
ii  makedev   2.3.1-80   creates device files in /dev
ii  sed   4.1.2-8The GNU sed stream editor

udev recommends no packages.

-- no debconf information


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



Bug#353548: udevtest gives obscure/misleading error message

2006-02-19 Thread Greg Kochanski
Package: udev
Version: 0.084-3
Severity: normal


If I give udevtest a pathname in /sys, I expect it to do something
sensible, as suggested by various HowTos (e.g. 
http://www.reactivated.net/writing_udev_rules.html#debugging ).

This seems consistent with the udevtest man page, which merely says
"udevtest device-path ...simulates a udev run on the given device..."

Anyhow, all I get is a generic "unable to open" error message,
but "ls -l" shows that the file exists and is readable.
So, either udevtest is buggy and fails to open an openable
file, or it gives a rather poor error message.

Either one is a bug.


$udevtest /sys/class/usb_device/usbdev1.1/
main: unable to open '/sys/class/usb_device/usbdev1.1/'
$
$ ls -l /sys/class/usb_device/usbdev1.1/
total 0
-r--r--r--  1 root root 4096 2006-02-19 13:21 dev
lrwxrwxrwx  1 root root0 2006-02-19 13:21 device -> 
../../../devices/pci:00/:00:1d.0/usb1
--w---  1 root root 4096 2006-02-14 01:56 uevent
$


-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
total 4
lrwxrwxrwx  1 root root 20 2006-02-11 22:32 020_permissions.rules -> 
../permissions.rules
lrwxrwxrwx  1 root root 19 2006-02-11 22:35 025_libgphoto2.rules -> 
../libgphoto2.rules
lrwxrwxrwx  1 root root 16 2006-02-11 22:35 025_libsane.rules -> 
../libsane.rules
lrwxrwxrwx  1 root root 19 2006-02-11 22:32 cd-aliases.rules -> 
../cd-aliases.rules
-rw-r--r--  1 root root 70 2006-02-19 12:47 gpk.rules
lrwxrwxrwx  1 root root 13 2006-02-11 22:32 udev.rules -> ../udev.rules
lrwxrwxrwx  1 root root 19 2006-02-11 22:32 z20_persistent.rules -> 
../persistent.rules
lrwxrwxrwx  1 root root 12 2006-02-11 22:32 z50_run.rules -> ../run.rules
lrwxrwxrwx  1 root root 16 2006-02-11 22:32 z55_hotplug.rules -> 
../hotplug.rules
lrwxrwxrwx  1 root root 19 2006-02-11 20:17 z60_alsa-utils.rules -> 
../alsa-utils.rules
lrwxrwxrwx  1 root root 17 2006-02-11 22:32 z70_hotplugd.rules -> 
../hotplugd.rules

-- /sys/:
/sys/block/fd0/dev
/sys/block/hda/dev
/sys/block/hda/hda1/dev
/sys/block/hda/hda2/dev
/sys/block/hda/hda3/dev
/sys/block/hdd/dev
/sys/block/ram0/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram1/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/block/sda/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input1/event1/dev
/sys/class/input/input2/event2/dev
/sys/class/input/input2/mouse0/dev
/sys/class/input/mice/dev
/sys/class/misc/agpgart/dev
/sys/class/misc/hpet/dev
/sys/class/misc/hw_random/dev
/sys/class/misc/psaux/dev
/sys/class/misc/rtc/dev
/sys/class/sound/adsp/dev
/sys/class/sound/audio/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/dsp/dev
/sys/class/sound/mixer/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1c/dev
/sys/class/sound/pcmC0D2c/dev
/sys/class/sound/pcmC0D3c/dev
/sys/class/sound/pcmC0D4p/dev
/sys/class/sound/timer/dev
/sys/class/usb_device/usbdev1.1/dev
/sys/class/usb_device/usbdev2.1/dev
/sys/class/usb_device/usbdev3.1/dev
/sys/class/usb_device/usbdev4.1/dev
/sys/class/usb_device/usbdev5.1/dev
/sys/class/usb_device/usbdev5.6/dev

-- Kernel configuration:


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

Versions of packages udev depends on:
ii  initscripts   2.86.ds1-4 Standard scripts needed for bootin
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  libselinux1   1.28-2 SELinux shared libraries
ii  lsb-base  3.0-15 Linux Standard Base 3.0 init scrip
ii  makedev   2.3.1-80   creates device files in /dev
ii  sed   4.1.2-8The GNU sed stream editor

udev recommends no packages.

-- no debconf information


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



Bug#327468: svn-workbench: Crashes on startup

2006-02-19 Thread Matej Vela
tag 327468 unreproducible moreinfo
thanks

Jan Kellmer <[EMAIL PROTECTED]> writes:

> Package: svn-workbench
> Version: 1.1.6-1
> Severity: grave
> Justification: renders package unusable
>
> svn-workbench crashes on startup, showing the following stacktrace:
[...]

I'm unable to reproduce this with svn-workbench 1.1.6-1 or 1.2.0-1.
It may have been a problem in wxPython; can you still reproduce it?

Thanks!

Matej


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



Bug#353457: linux-source-2.6.15-4: CIFS_CLIENT locks system with multiple, parallel file access

2006-02-19 Thread Bastian Blank
severity 353457 important
thanks

On Sat, Feb 18, 2006 at 06:31:52PM +0100, Juergen Pfennig wrote:
> Justification: renders package unusable

No, it does not.

> This bug is easy to reproduce:  try to run synaptic against a cache that is 
> accessed via
> cifs. synaptic /or dpkg?/ would download multiple files in parallel - with 
> kernel 2.6.15-4
> this almost instantly locks your system until rebooted.

What software runs the server side? Which options do you use for the
mount? What are the contents of /proc/fs/cifs/DebugData?

Bastian

-- 
To live is always desirable.
-- Eleen the Capellan, "Friday's Child", stardate 3498.9


signature.asc
Description: Digital signature


Bug#353542: uupdate and recompilation seems to be enough to solve it

2006-02-19 Thread Magnus Therning
It looks like running `uupdate` on the new release and recompiling works
just fine, so this upgrade should be doable in no time.

-- 
Magnus Therning(OpenPGP: 0xAB4DFBA4)
[EMAIL PROTECTED]
http://therning.org/magnus

Software is not manufactured, it is something you write and publish.
Keep Europe free from software patents, we do not want censorship
by patent law on written works.

The right to search for truth implies also a duty; one must not
conceal any part of what one has recognized to be true.
 -- Albert Einstein


pgpeglHi6VwzO.pgp
Description: PGP signature


  1   2   3   4   >