Bug#325372: lintian: please add check for careless usage of make clean and the like

2005-08-28 Thread Branden Robinson
Package: lintian
Version: 1.23.10
Severity: wishlist

A lot of packages, particularly those with upstreams that use the GNU
autotools, have a very nasty habit of running the upstream clean rule while
utterly ignoring any errors from it.  This is very, very bad.  Please add a
check for it.

An egrep regex to catch this is probably about as simple as:

'\t[[:space:]]*-(\$[({]MAKE[)}]|make)[[:space:]].*(dist)?clean'

See transcript of IRC discussion below for further elaboration of rationale.

00:35  Overfiend joshk: What didn't you like about my changes to
   debian/rules?
00:36  Overfiend a configure target for autofoo-using packages is
   common practice AFAICT
00:36  Overfiend because of the problem of getting a properly cleaned
   tree
00:36  Overfiend if you were to assert that configure getting run
   *twice* for every package build from a freshly-unpacked source were
   a bit stupid, I'd agree.
00:36  Overfiend But that stupidity appears to be forced on us by
   GNU autofoo.
00:37  joshk yes - my scripts run a clean and then a build..
00:37  Overfiend your scripts?  debuild does that too.
   dpkg-buildpackage might as well, I don't remember.
00:37  Overfiend it's the Right Thing to do.
00:37  vorlon Overfiend: meh? Why would it be run twice?
00:37  Overfiend Builds should always start from a known state.
00:37  Overfiend vorlon: because debuild invokes debian/rules clean
   before debian/rules binary
00:38  Overfiend or dpkg-buildpackage does
00:38  Overfiend as I said, I don't remember
00:38  doogie why does clean depend on configure?
00:38  vorlon Overfiend: there's no reason clean should need to depend
   on configure
00:38  Overfiend can't make clean if there's no Makefile...
00:38  vorlon not with sane autotoolery
00:38  doogie then don't
00:38  vorlon yes, so you type -make clean instead
00:38  Overfiend UGH!
00:38  doogie what he said
00:38  joshk -$(MAKE) distclean, here
00:38  * Overfiend vomits across the room
00:38  Overfiend that's fucking moronic
00:38  doogie no, this is how it's done
00:38  joshk Overfiend: wow. have you considered entering a contest?
00:38  Overfiend I don't care why make clean failed.  Ignore it.
00:39  vorlon fine.  [ ! -f Makefile ] || make clean
00:39  vorlon :P
00:39  Overfiend That's like swatting a fly with a neutron star.
00:39  doogie however, this is why I hate build systems that don't
   support a build dir.
00:39  joshk build system? what build system? :|
00:39  Overfiend vorlon: that's a bit more reasonable.
00:39  joshk vorlon: hmm, good idea
00:39  doogie ifeq (Makefile,$(wildcard Makefile))
00:40  doogie make clean
00:40  doogie endif
00:40  Overfiend Ignore all errors from make on the assumption that
   the only reason it would fail is because there's no Makefile is
   mondo stupid.
00:40  joshk well, the reason i chose to do it my way is because it's
   that way in every single one of my autofoo using packages currently
00:40  doogie my way is more efficient.  less forking.
00:40  joshk so even if you were right, i'd end up having to orchestrate
   that change over all my packages anyway..
00:40  joshk IOW: someday.
00:41  Overfiend I don't care which approach, vorlon's or doogie's,
   people use.  but -$(MAKE) {dist,}clean is just unholy bad.
00:41  vorlon doogie: doesn't every line get passed to sh for execution?
   If [ is a builtin, there's no difference in fork count
   (Connection timed out)]
00:42  Overfiend Recall that people mindlessly ignoring error conditions
   is why we see most security advisories.
00:42  doogie vorlon: try again.  if the Makefile doesn't exist,
   $(wildcard) expands to nothing, so the line isn't sent to the shell
00:42  vorlon ah.
00:42  vorlon right.
00:42  joshk Overfiend: a ton of people, not just myself, use a
   variation of -make clean - you may want to submit a lintian check
   for it...
00:42  doogie and you have to test for the file's existance anyways.
00:42  joshk sounds like something that would get in. and it would
   compel me to do it more quickly :)
00:42  doogie altho, it does make the file harder to read
00:43  Overfiend joshk, doogie, vorlon: permission to quote you guys
   in my bug report.
00:43  joshk Overfiend: granted
00:43  Overfiend I'd rather paste this discussion than rewrite it.
00:43  vorlon Overfiend: as long as you leave out the fart noises
   [Read error: 104 (Connection reset by peer)]
00:43  Overfiend vorlon: oh, very well
00:43  doogie you can always quote my makefile foo, if it is meant to
   scare and intimidate
00:43  Overfiend doogie: :)

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

Versions of packages lintian depends on:
ii  binutils   2.16.1-2  The GNU assembler, linker and bina
ii  diffstat   1.41-1 

Bug#325373: Syntax error of glibc.sh

2005-08-28 Thread shock
Package: libc6
Version: 2.3.5-5

When /bin/sh is dash, /etc/init.d/glibc.sh causes a syntax error.

/etc/init.d/glibc.sh: 100: Syntax error: Bad substitution
invoke-rc.d: initscript glibc.sh, action start failed.
dpkg: error processing libc6 (--install):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 libc6


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



Bug#325351: libpam-ssh: pam-ssh without common-auth for authentication authorize to login with wrong password

2005-08-28 Thread Steve Langasek
On Sun, Aug 28, 2005 at 12:10:07AM +0200, Sylvain wrote:
 I want to use only pam-ssh to login on my comptuter. So I modify the
 login pam file and comment @include common-auth.

 Here is a part of my /etc/pam.d/login

snip

 # Standard Un*x authentication.
 @include pam-ssh-auth
 [EMAIL PROTECTED] common-auth

 With this configuration, I can login with the wrong or null passphrase.
  If I want to only user pam-ssh-auth, I need to modify
 /etc/pam.d/pam-ssh-auth and replace sufficient by required. It is very
 easy to insert a security hole in your system.

While I'm not sure I agree that this qualifies as a user security hole,
I do think it's inappropriate for libpam-ssh to provide separate pam.d
include files in this fashion.  The @include common-* infrastructure
provided by the libpam package was never intended for this, and Sylvain
points out at least one reason why PAM modules can't provide their own
config files that will be generally useful.

-- 
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#325374: dia: FTBFS: could not find pygtk module

2005-08-28 Thread Andreas Jochens
Package: dia
Version: 0.94.0-12
Severity: normal
Tags: patch

When building 'dia' in a clean unstable chroot,
I get the following error:

checking if Python version = 1.5.2... okay
checking local Python configuration... checking for  script directory... 
/usr/lib/python2.3/site-packages
checking for  extension module directory... /usr/lib/python2.3/site-packages
looks good
checking for python module gtk... X11 connection rejected because of wrong 
authentication.
no
configure: error: could not find pygtk module
make: *** [build-stamp] Error 1

Regards
Andreas Jochens

diff -urN ../tmp-orig/dia-0.94.0/configure.in ./configure.in
--- ../tmp-orig/dia-0.94.0/configure.in 2004-08-17 15:03:26.0 +
+++ ./configure.in  2005-08-27 17:54:47.0 +
@@ -401,7 +401,6 @@
 
 if test x$with_python != xno; then
   AM_PATH_PYTHON(1.5.2)
-  AM_CHECK_PYMOD(gtk,,,[AC_MSG_ERROR(could not find pygtk module)])
   AM_CHECK_PYTHON_HEADERS
   AM_CHECK_PYTHON_LIB
 
diff -urN ../tmp-orig/dia-0.94.0/configure ./configure
--- ../tmp-orig/dia-0.94.0/configure2004-08-18 15:36:58.0 +
+++ ./configure 2005-08-27 17:55:42.0 +
@@ -25277,44 +25277,6 @@
 echo ${ECHO_T}looks good 6
 
 
-py_mod_var=`echo gtk'_' | sed 'y%./+-%__p_%'`
-echo $as_me:$LINENO: checking for python module gtk 5
-echo $ECHO_N checking for python module gtk... $ECHO_C 6
-if eval test \\${py_cv_mod_$py_mod_var+set}\ = set; then
-  echo $ECHO_N (cached) $ECHO_C 6
-else
-
-prog=
-import sys
-try:
-import gtk
-except ImportError:
-sys.exit(1)
-except:
-sys.exit(0)
-sys.exit(0)
-if $PYTHON -c $prog 15 25
-  then
-eval py_cv_mod_$py_mod_var=yes
-  else
-eval py_cv_mod_$py_mod_var=no
-  fi
-
-fi
-
-py_val=`eval echo \`echo '$py_cv_mod_'$py_mod_var\``
-if test x$py_val != xno; then
-  echo $as_me:$LINENO: result: yes 5
-echo ${ECHO_T}yes 6
-  else
-  echo $as_me:$LINENO: result: no 5
-echo ${ECHO_T}no 6
-  { { echo $as_me:$LINENO: error: could not find pygtk module 5
-echo $as_me: error: could not find pygtk module 2;}
-   { (exit 1); exit 1; }; }
-fi
-
-
 echo $as_me:$LINENO: checking for headers required to compile python 
extensions 5
 echo $ECHO_N checking for headers required to compile python extensions... 
$ECHO_C 6
 py_prefix=`$PYTHON -c import sys; print sys.prefix`


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



Bug#307144: totem-gstreamer: avi thumbnails still fail for version 1.0.4-1

2005-08-28 Thread josh
Subject: totem-gstreamer: avi thumbnails still fail for version 1.0.4-1
Followup-For: Bug #307144
Package: totem-gstreamer
Version: 1.0.4-1

Sebastien Bacher wrote:
 Thanks for your bug. Do you still have this issue with the current
 version?

Hi, sorry it's taking a while to check this.

I installed version 1.0.4-1. Thumbnails are still not generated for
.avi's, but thumbnails *are* generated for .mpg's (hurrah).  When I
re-install totem-xine, then thumbnails for the avi's are generated.

hope this helps

-j



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

Versions of packages totem-gstreamer depends on:
ii  dbus-1   0.23.4-1simple interprocess
messaging syst
ii  gconf2   2.10.0-2GNOME configuration
database syste
ii  gstreamer0.8-aa [gstream 0.8.10-3AA-lib plugin for GStreamer
ii  gstreamer0.8-alsa [gstre 0.8.10-3ALSA plugin for GStreamer
ii  gstreamer0.8-artsd [gstr 0.8.10-3aRtsd plugin for GStreamer
ii  gstreamer0.8-caca [gstre 0.8.10-3Colour AsCii Art library
plugin fo
ii  gstreamer0.8-esd [gstrea 0.8.10-3Enlightened Sound Daemon
plugin fo
ii  gstreamer0.8-gnomevfs0.8.10-3Gnome VFS plugin for GStreamer
ii  gstreamer0.8-jack [gstre 0.8.8-2 JACK plugin for GStreamer
ii  gstreamer0.8-mad 0.8.10-3MAD MPEG audio decoder
plugin for
ii  gstreamer0.8-misc0.8.10-3Collection of various
GStreamer pl
ii  gstreamer0.8-oss [gstrea 0.8.10-3OSS plugin for GStreamer
ii  gstreamer0.8-polypaudio  0.8.10-3polypaudio plugin for GStreamer
ii  gstreamer0.8-sdl [gstrea 0.8.10-3SDL videosink plugin for
GStreamer
ii  gstreamer0.8-vorbis  0.8.10-3Vorbis plugin for GStreamer
ii  gstreamer0.8-x [gstreame 0.8.10-3X videosink plugin for
GStreamer
ii  libart-2.0-2 2.3.17-1Library of functions for 2D
graphi
ii  libatk1.0-0  1.10.1-2The ATK accessibility toolkit
ii  libaudiofile00.2.6-6 Open-source version of
SGI's audio
ii  libbonobo2-0 2.8.1-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.8.1-2 The Bonobo UI library
ii  libc62.3.5-3 GNU C Library: Shared
libraries an
ii  libesd0  0.2.35-2Enlightened Sound Daemon -
Shared
ii  libgconf2-4  2.10.0-2GNOME configuration
database syste
ii  libgcrypt11  1.2.0-11.1  LGPL Crypto library -
runtime libr
ii  libglade2-0  1:2.5.1-2   library to load .glade
files at ru
ii  libglib2.0-0 2.6.5-1 The GLib library of C routines
ii  libgnome-desktop-2   2.10.1-2Utility library for loading
.deskt
ii  libgnome-keyring00.4.3-1 GNOME keyring services library
ii  libgnome2-0  2.8.1-2 The GNOME 2 library -
runtime file
ii  libgnomecanvas2-02.10.2-2A powerful object-oriented
display
ii  libgnomeui-0 2.10.0-2The GNOME 2 libraries (User
Interf
ii  libgnomevfs2-0   2.10.1-5The GNOME virtual
file-system libr
ii  libgnutls11  1.0.16-13.1 GNU TLS library - runtime
library
ii  libgpg-error01.0-1   library for common error
values an
ii  libgstreamer-gconf0.8-0  0.8.10-3GConf support for GStreamer
ii  libgstreamer-plugins0.8- 0.8.10-3Various GStreamer libraries
and li
ii  libgstreamer0.8-00.8.10-2Core GStreamer libraries,
plugins,
ii  libgtk2.0-0  2.6.8-1 The GTK+ graphical user
interface
ii  libhal0  0.4.8-1 Hardware Abstraction Layer
- share
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libjpeg626b-10   The Independent JPEG
Group's JPEG
ii  liblircclient0   0.7.1pre2-2 LIRC client library
ii  libnautilus-burn12.10.2-1Nautilus Burn Library -
runtime ve
ii  liborbit21:2.12.2-1  libraries for ORBit2 - a
CORBA ORB
ii  libpango1.0-01.8.2-1 Layout and rendering of
internatio
ii  libpopt0 1.7-5   lib for parsing cmdline
parameters
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session
Management
ii  libstartup-notification0 0.8-1   library for program launch
feedbac
ii  libtasn1-2   0.2.10-3Manage ASN.1 structures
(runtime)
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol
client li
ii  libxml2  2.6.20-1GNOME XML library
ii  libxrandr2   4.3.0.dfsg.1-14 X Window System Resize,
Rotate and
ii  libxrender1  1:0.9.0-2   X Rendering Extension
client libra
ii  

Bug#325375: f-spot: sqlite dependency is missing

2005-08-28 Thread Carlos Z.F. Liu
Package: f-spot
Version: 0.1.1-1
Severity: grave

f-spot 0.1.1-1 doesn't depend on libsqlite0 anymore. Without this
library, f-spot is totally unusable.

Thanks.


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

Versions of packages f-spot depends on:
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libexif12 0.6.12-2   library to parse EXIF files
ii  libgconf2.0-cil   1.9.5-2CLI binding for GConf 2.0, unstabl
ii  libglade2.0-cil   1.9.5-2CLI binding for the Glade librarie
ii  libglib2.0-0  2.8.0-1The GLib library of C routines
ii  libglib2.0-cil1.9.5-2CLI binding for the GLib utility l
ii  libgnome2.0-cil   1.9.5-2CLI binding for GNOME 2.0, unstabl
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgphoto2-2  2.1.6-3gphoto2 digital camera library
ii  libgtk2.0-0   2.6.9-1The GTK+ graphical user interface 
ii  libgtk2.0-cil 1.9.5-2CLI binding for the Gtk+ toolkit 2
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  liblcms1  1.13-1 Color management library
ii  mono-classlib-1.0 1.1.8.2-1  Mono class library (1.0)
ii  mono-jit  1.1.8.2-1  fast CLI (.NET) JIT compiler for M

f-spot recommends no packages.

-- no debconf information


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



Bug#319712: Bugs/Patches for goobox in the Debian BTS

2005-08-28 Thread Helge Kreutzmann
Hello Paolo,
I don't know if the Debian maintainer for goobox already sent you the
bug reports and patches (sorry in this case, I did not see anything
regarding this), if not, could you have a look at them? They are
against 0.9.91 and you can find them on

http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=goobox

The first problem is the most anyoing one (and I think I found a
solution): 
#319719: goobox: GENRE is repeated depending on track number

Do you think my patch is ok? If so, can you apply it to your sources
as well?


The other two ones which bug me a bit (but I haven't found a solution
yet) are
#319713: goobox: Cannot choose destination folder for extraction
#319712: goobox: Fails to show directory after extraction

which essentially means that extraction has to happen into a
predefined (from a previous run) directory. It looks like a trivial
bug during build. The only way I found to change the setting is in
.gconf/apps/goobox/dialogs/extract/%gconf.xml

Thanks for writing goobox, I really like it!

Greetings

 Helge
-- 
Dr. Helge Kreutzmann, Dipl.-Phys.   [EMAIL PROTECTED]
   gpg signed mail preferred 
64bit GNU powered  http://www.itp.uni-hannover.de/~kreutzm
  Help keep free software libre: http://www.ffii.de/


pgp2oUOWgHAzW.pgp
Description: PGP signature


Bug#325376: cacti: Does not depend on proper libphp-adodb version

2005-08-28 Thread Javier Fernández-Sanguino Peña

Package: cacti
Version: 0.8.6f-4
Priority: minor

In version 0.8.6f-3 cacti used the new naming schem from libphp-adodb.
Notice, however, that the Depends line was not changed and remains just
'libphp-adodb' when it should be 'libphp-adodb (= 4.50-1)' which is 
the version that introduced the change.

Please change it so that people will not install this package with older
libphp-adodb versions.

Regards

Javier


signature.asc
Description: Digital signature


Bug#323447: gstreamer0.8-alsa: audio constantly clicks when alsa is selected as playback

2005-08-28 Thread Bert Vermeulen
On Sat, 2005-08-27 at 21:05 +0200, Loïc Minier wrote:
 Hi,
 
  P. Oscar Boykin, Bert Vermeulen, and [ATR]Dj-Death: do you use dmix?
 
  If yes, please follow the suggestion of Paul van Tilburg at:
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=323447;msg=32

Yup, that fixed it alright. Thanks for the tip!

  If it helps, please send me:
  - your borken ALSA dmix configuration

In attachment.

  - your working ALSA dmix configuration

Copied the sample one, as described in the mail above.

  - description of your ALSA hardware

It's an Ensoniq 5880 AudioPCI card, using the snd_ens1371 ALSA kernel
module.


-- 
Bert Vermeulen[EMAIL PROTECTED]  email/sip/xmpp
Never underestimate the power of organized knuckle-dragging
pcm.!default {
type plug
slave.pcm dmixer
}

ctl.!default {
type plug
slave.ctl dmixer
}

pcm.dmixer {
type dmix
ipc_key 1024
slave {
pcm hw:0,0
period_time 0
period_size 1024
buffer_size 4096
rate 44100
}
bindings {
0 0
1 1
}
}

ctl.dmixer {
type hw
card 0
}





Bug#325374: dia: FTBFS: could not find pygtk module

2005-08-28 Thread Roland Stigge
tag 325374 - patch
thanks

Hi Andreas,

thanks for reporting this. Unfortunately, the patch (- configure)
probably won't apply to future upstream versions, so I'm still looking
for a more elegant solution.

The severity normal seems to be fine since most people building dia
(including the buildds) don't have this problem.

Thanks.

bye,
  Roland


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



Bug#325377: flyspray: Does not depend on proper libphp-adodb version

2005-08-28 Thread Javier Fernández-Sanguino Peña

Package: flyspray
Version: 0.9.7-5
Priority: minor

In version 0.9.7-5 flyspray used the new naming scheme from libphp-adodb.
However, its  Depends line was not changed and remains just
'libphp-adodb (= 4.21),' when it should be 'libphp-adodb (= 4.50-1)' which is 
the version that introduced the directory change.

Please change it so that people will not install this package with older
libphp-adodb versions.

Regards

Javier


signature.asc
Description: Digital signature


Bug#325378: mediamate: Uses old location of adodb php files

2005-08-28 Thread Javier Fernández-Sanguino Peña

Package: mediamate
Version:  0.9.3.6-2
Priority: serious
Tags: patch

Since version 4.50-1 libphp-adodb no longer includes the PHP files under
/usr/share/adodb. They are included in /usr/share/php/adodb. Your package
uses the old location which means that the include of the Adodb libraries
will fail.

Please consider the attached (untested) patch to fix this.

Regards

Javier


signature.asc
Description: Digital signature


Bug#325357: vrweb: FTBFS on 64 bit arches: cast from 'AnyLight*' to 'int' loses precision

2005-08-28 Thread Petter Reinholdtsen
[Kurt Roeckx]
 Your package is failing to build on 64 bit arches with the following
 error:

Heh, I guess it always was broken, but no-one used it on 64-bit archs. :)

 It's trying to print the address.  In C, with printf, you'd use a %p
 for it.  I have no idea if std::cout has something simular.

Is this the only place this is happening?  Did it compile when this
line is fixed?  Is this the only 64-bit problem in this code?

 I think the easiest way to fix it would be cast it to an intptr_t.

The code in question is debug output.  I guess it is trying to print
out a pointer, yes.  Why not just drop the cast completely?

   FaceAttr* faceattr = new FaceAttr(vertex_num, vertexlist_wc,
 0 /*normal_num*/, normallist_wc);
   [...]
   std::cout  addr of light_:   faceattr-light()  std::endl;
 * std::cout  int (*(faceattr-light()))  std::endl;
   faceattr-print();

faceattr-light() returns 'AnyLight**', and thus this line try to
print 'AnyLight*'.  If it can porint 'AnyLight**', it should be
capable of printing 'AnyLight*' too.


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



Bug#325377: flyspray: Does not depend on proper libphp-adodb version

2005-08-28 Thread Pierre Habouzit
Le Dim 28 Août 2005 10:31, Javier Fernández-Sanguino Peña a écrit :
 Package: flyspray
 Version: 0.9.7-5
 Priority: minor

 In version 0.9.7-5 flyspray used the new naming scheme from
 libphp-adodb. However, its  Depends line was not changed and remains
 just
 'libphp-adodb (= 4.21),' when it should be 'libphp-adodb (=
 4.50-1)' which is the version that introduced the directory change.

 Please change it so that people will not install this package with
 older libphp-adodb versions.

 Regards

good point, though, I leave for Creta tomorrow, and I'll do it when I 
come back (6 september)
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpDfXbzbZ7aV.pgp
Description: PGP signature


Bug#325379: python-cairo: undefined symbol: cairo_ps_surface_create

2005-08-28 Thread Adam Olsen
Package: python-cairo
Version: 0.9.0-3
Severity: grave
Justification: renders package unusable

$ python -c 'import cairo'
Traceback (most recent call last):
  File string, line 1, in ?
  File /usr/lib/python2.3/site-packages/cairo/__init__.py, line 1, in ?
from _cairo import *
ImportError: /usr/lib/python2.3/site-packages/cairo/_cairo.so: undefined
symbol: cairo_ps_surface_create

I had it working a few days ago so obviously related to the new
libcairo2 package.  The python2.4 package has the same problem.


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

Versions of packages python-cairo depends on:
ii  python2.3-cairo   0.9.0-3Python 2.3 language bindings for t

python-cairo recommends no packages.

-- no debconf information


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



Bug#322750: ghemical: FTBFS on 64-bit platforms (assumes 32-bit pointers)

2005-08-28 Thread Steve Langasek
It appears that the testing version of ghemical also fails to build with
the current C++ toolchain, at least on alpha (though with a different
error):

make[2]: Entering directory `/home/devel/release/ghemical-1.01/src/graphics'
alpha-linux-gnu-g++  -c -g -O2 -fno-exceptions -I../../src/graphics 
-I../../src/common -I/usr/include/openbabel 
-I/home/devel/release/ghemical-1.01/src -I/usr/include/sc 
-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include 
-I/usr/include/gnome-1.0 -DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include 
-I/usr/include/gtk-1.2 -I/usr/include/glib-1.2 -I/usr/lib/glib/include  
./mtools.cpp
./objects.h:93: error: 'obj_loc_data* dummy_object::GetLocDataRW() const' is 
protected
./objects.h:180: error: within this context
./views.h:233: error: variable or field 'mm1_apply_udata_as_cset' declared void
./views.h:233: error: 'mm1_docv' was not declared in this scope
./views.h:233: error: expected primary-expression before ',' token
./views.h:233: error: expected primary-expression before 'void'
./views.h:233: error: initializer expression list treated as compound expression
make[2]: *** [mtools.o] Error 1
make[2]: Leaving directory `/home/devel/release/ghemical-1.01/src/graphics'

The code that causes the build failure in unstable doesn't seem to be
present in ghemical 1.01, which is what I was checking for, but the
package does nevertheless fail to build, which is a serious bug.  I
didn't open a second bug for that failure, because I expect that
ghemical will just be removed from testing if this bug isn't resolved
soon.

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#319750: [Parted-maintainers] Bug#319750: Please check if continue to happen

2005-08-28 Thread leslie . polzer
On Thu, Aug 25, 2005 at 10:23:18PM -0300, Otavio Salvador wrote:
 
 Please review the last upload (1.6.24) and check if move command works
 for you.
No problems here. Can you give me a test case that fails?

 Is very important to try to clean up the BTS and that will allow us to
 focus on current real bugs and allow upstream also know about fixes
 that he did or need to do.
I don't understand what you wanted to say. Please rephrase :)

Leslie

-- 
PGP-KID: 0x52D70289


pgptl9pQ96O8R.pgp
Description: PGP signature


Bug#325304: More info

2005-08-28 Thread Marc Coll
I've just discovered that if I disable the delay module (by uncomenting 
the line DelayEngine	off in the configuration file), the problem 
solves. So I guess it's a bug in the delay module.



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



Bug#325382: foomatic-gui: French program translation update

2005-08-28 Thread Jean-Luc Coulon (f5ibh)
Package: foomatic-gui
Version: 0.7.4.17
Severity: wishlist
Tags: l10n

Hi,

Please find attached the updated French translation for the program, proofread
by the debian-l10n-french mailing list contributors.

Regards

Jean-Luc

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

Versions of packages foomatic-gui depends on:
ii  gksu  1.3.4-1graphical frontend to su
ii  python2.3.5-3An interactive high-level object-o
ii  python-foomatic   0.7.4.17   Python interface to the Foomatic p
ii  python-glade2 2.6.2-1GTK+ bindings: Glade support
ii  python-gnome2 2.10.0-2   Python bindings for the GNOME desk
ii  python-gnome2-extras  2.10.0-4   Python bindings for the GNOME desk
ii  python-gtk2   2.6.2-1Python bindings for the GTK+ widge

Versions of packages foomatic-gui recommends:
ii  netcat1.10-27TCP/IP swiss army knife
pn  nmap  none (no description available)
pn  pconf-detect  none (no description available)
ii  smbclient 3.0.14a-6  a LanManager-like simple client fo

-- no debconf information
# translation of fr.po to 
# This file is distributed under the same license as the foomatic-gui package.
# Copyright (C) 2005 THE foomatic-gui'S COPYRIGHT HOLDER, 2005.
# 
# 
msgid 
msgstr 
Project-Id-Version: foomatic-gui 0.7.4.17\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2005-07-20 20:14-0500\n
PO-Revision-Date: 2005-08-20 13:27+0200\n
Last-Translator: Jean-Luc Coulon (f5ibh) [EMAIL PROTECTED]\n
Language-Team:  French debian-l10n-french@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=iso-8859-15\n
Content-Transfer-Encoding: 8bit

#: foomatic-gui.glade:9
msgid foomatic-gui
msgstr foomatic-gui

#: foomatic-gui.glade:71
msgid Add a new printer
msgstr Ajouter une nouvelle imprimante

#: foomatic-gui.glade:72
msgid _Add Printer...
msgstr _Ajouter une imprimante...

#: foomatic-gui.glade:93
msgid Remove this printer
msgstr Supprimer cette imprimante

#: foomatic-gui.glade:94
msgid _Delete Printer
msgstr _Supprimer l'imprimante

#: foomatic-gui.glade:115
msgid Change interface or driver settings for this printer
msgstr Changer l'interface ou les paramètres du pilote de cette imprimante

#: foomatic-gui.glade:116
msgid _Configure Printer...
msgstr _Configurer l'imprimante...

#: foomatic-gui.glade:149
msgid Make this printer the default
msgstr Utiliser cette imprimante par défaut

#: foomatic-gui.glade:150 foomatic-gui.glade:264
msgid _Make Default
msgstr _Utiliser par défaut

#: foomatic-gui.glade:171
msgid Print a test page on the selected printer
msgstr Imprimer une page de test sur l'imprimante sélectionnée

#: foomatic-gui.glade:172
msgid _Print Test Page
msgstr _Imprimer une page de test

#: foomatic-gui.glade:193
msgid Set default options for this printer
msgstr Régler les options par défaut de cette imprimante

#: foomatic-gui.glade:194
msgid Printer _Options...
msgstr _Options de l'imprimante...

#: foomatic-gui.glade:324
msgid _Configure
msgstr _Configurer

#: foomatic-gui.glade:354
msgid _Options
msgstr _Options

#: foomatic-gui.glade:371
msgid _Test Page
msgstr Page de _Test

#: foomatic-gui.glade:404
msgid Printer queues
msgstr Files d'impression de l'imprimante

#: foomatic-gui.glade:447 foomatic-gui:413
msgid Add Printer
msgstr Ajouter une imprimante

#: foomatic-gui.glade:475
msgid Add a new printer queue
msgstr Ajouter une nouvelle file d'impression

#: foomatic-gui.glade:476
msgid 
The following pages will walk you through the process of configuring a new 
printer queue using Foomatic.\n
\n
If you have a USB or parallel printer, please make sure it is connected to 
your computer and switched on, so it can be detected by Foomatic-GUI.
msgstr 
Dans les pages suivantes, vous allez configurer une nouvelle file 
d'impression en utilisant Foomatic.\n
\n
Si vous avez une imprimante de type USB ou de type parallèle, veuillez vous 
assurer qu'elle est raccordée à votre ordinateur et qu'elle est sous 
tension, afin qu'elle puisse être détectée par Foomatic-GUI.

#: foomatic-gui.glade:486
msgid Choose printer connection
msgstr Choisir le mode de raccordement de l'imprimante

#: foomatic-gui.glade:585
msgid _Detect network printers
msgstr _Détecter des imprimantes réseau

#: foomatic-gui.glade:660
msgid _Enter connection manually
msgstr _Entrer vous-même le mode de connexion

#: foomatic-gui.glade:709
msgid Enter interface details
msgstr Entrer les paramètres de l'interface

#: foomatic-gui.glade:727
msgid 
Enter the interface details below; contact your network administrator if you 
are unsure what settings to use.\n
\n
(Normally this 

Bug#325380: Installation report

2005-08-28 Thread Andrea Brenci
Package: installation-reports

INSTALL REPORT

debian-installer-version: Debian 3.1 r0a i386 (jigdo completed on 21 Aug 
2005 from http://ftp.it.debian.org/debian)

Uname -a:Linux debian 2.6.8-2-686 #1 Thu May 19 17:53:30 JST 2005 i686 
GNU/Linux
Date: 27 Aug 2005
Method: bootable CD

machine: Fujitsu Siemens Computers C series Lifebook
Processor: Intel Pentium M (Centrino 1.6 GHz)
Memory: 248 MB
Root Device: IDE disk - hda3
Root Size/partition table:

Command (m for help):
Disk /dev/hda: 40.0 GB, 40007761920 bytes
255 heads, 63 sectors/track, 4864 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/hda1   *   12731219367267  HPFS/NTFS
/dev/hda23397486311783677+   7  HPFS/NTFS
/dev/hda327323396 5341612+  83  Linux

Partition table entries are not in disk order

Command (m for help):


output of lspci and lspci -n:

debian:~# lspci

:00:00.0 Host bridge: Intel Corp. 82852/855GM Host Bridge (rev 02)
:00:00.1 System peripheral: Intel Corp. 855GM/GME GMCH Memory I/O 
Control Registers (rev 02)
:00:00.3 System peripheral: Intel Corp. 855GM/GME GMCH Configuration 
Process Registers (rev 02)
:00:02.0 VGA compatible controller: Intel Corp. 82852/855GM 
Integrated Graphics Device (rev 02)
:00:02.1 Display controller: Intel Corp. 82852/855GM Integrated 
Graphics Device (rev 02)
:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03)
:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03)
:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03)
:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 
2.0 EHCI Controller (rev 03)
:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 83)
:00:1f.0 ISA bridge: Intel Corp. 82801DBM LPC Interface Controller 
(rev 03)
:00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4) Ultra ATA 
Storage Controller (rev 03)
:00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
SMBus Controller (rev 03)
:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM 
(ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03)
:00:1f.6 Modem: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) 
AC'97 Modem Controller (rev 03)
:01:0a.0 CardBus bridge: O2 Micro, Inc. OZ6933 Cardbus Controller 
(rev 01)
:01:0a.1 CardBus bridge: O2 Micro, Inc. OZ6933 Cardbus Controller 
(rev 01)
:01:0c.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
RTL-8139/8139C/8139C+ (rev 10)
:01:0d.0 Network controller: Intel Corp. PRO/Wireless 2200BG (rev 
05)


debian:~# lspci -n

:00:00.0 0600: 8086:3580 (rev 02)
:00:00.1 0880: 8086:3584 (rev 02)
:00:00.3 0880: 8086:3585 (rev 02)
:00:02.0 0300: 8086:3582 (rev 02)
:00:02.1 0380: 8086:3582 (rev 02)
:00:1d.0 0c03: 8086:24c2 (rev 03)
:00:1d.1 0c03: 8086:24c4 (rev 03)
:00:1d.2 0c03: 8086:24c7 (rev 03)
:00:1d.7 0c03: 8086:24cd (rev 03)
:00:1e.0 0604: 8086:2448 (rev 83)
:00:1f.0 0601: 8086:24cc (rev 03)
:00:1f.1 0101: 8086:24ca (rev 03)
:00:1f.3 0c05: 8086:24c3 (rev 03)
:00:1f.5 0401: 8086:24c5 (rev 03)
:00:1f.6 0703: 8086:24c6 (rev 03)
:01:0a.0 0607: 1217:6933 (rev 01)
:01:0a.1 0607: 1217:6933 (rev 01)
:01:0c.0 0200: 10ec:8139 (rev 10)
:01:0d.0 0280: 8086:4220 (rev 05)

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[O]
Reboot: [O]

Comments/Problems:

Installation completed without problems.
Note: the machine must be mains-connected to have a reliable boot; if it 
is battery powered, sometimes the boot process stops with a kernel 
panic; but, I think, this problem is not an installation-related one.

Install logs and other status info is available in 
/var/log/debian-installer/.
Once you have filled out this report, mail it to [EMAIL PROTECTED]

Regards,
Andrea Brenci


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



Bug#325381: fakeroot: does not play nicely w/ posh

2005-08-28 Thread Andres Salomon
Package: fakeroot
Version: 1.4.3

Fakeroot doesn't actually run when sh points to posh:

[EMAIL PROTECTED]:~/src/ndiswrapper-1.3rc1$ ls -l /bin/sh; fakeroot id
lrwxrwxrwx  1 root root 4 2005-08-28 05:02 /bin/sh - posh
/usr/bin/fakeroot:92: shift: nothing to shift
[EMAIL PROTECTED]:~/src/ndiswrapper-1.3rc1$ ls -l /bin/sh; fakeroot id
lrwxrwxrwx  1 root root 4 2005-08-28 05:03 /bin/sh - dash
uid=0(root) gid=0(root)
groups=20(dialout),24(cdrom),29(audio),44(video),46(plugdev),1000(dilinger)

I'm not sure whether this is a bug in fakeroot or posh; this is posh
0.4.1, btw.



-- 
Andres Salomon [EMAIL PROTECTED]


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


Bug#307144: totem-gstreamer: avi thumbnails still fail for version 1.0.4-1

2005-08-28 Thread Loïc Minier
Hi,

On Sun, Aug 28, 2005, josh wrote:
 I installed version 1.0.4-1. Thumbnails are still not generated for
 .avi's, but thumbnails *are* generated for .mpg's (hurrah).  When I
 re-install totem-xine, then thumbnails for the avi's are generated.

 Do you have gstreamer0.8-ffmpeg installed?  Please try again with this
 package if you don't.

   Bye,

-- 
Loïc Minier [EMAIL PROTECTED]
Come, your destiny awaits!



Bug#325357: vrweb: FTBFS on 64 bit arches: cast from 'AnyLight*' to 'int' loses precision

2005-08-28 Thread Kurt Roeckx
On Sun, Aug 28, 2005 at 10:39:25AM +0200, Petter Reinholdtsen wrote:
 [Kurt Roeckx]
 
  It's trying to print the address.  In C, with printf, you'd use a %p
  for it.  I have no idea if std::cout has something simular.
 
 Is this the only place this is happening?  Did it compile when this
 line is fixed?  Is this the only 64-bit problem in this code?

It compiled after that line was fixed, I did not try to run it.
It seems to be working.

  I think the easiest way to fix it would be cast it to an intptr_t.
 
 The code in question is debug output.  I guess it is trying to print
 out a pointer, yes.  Why not just drop the cast completely?
 
FaceAttr* faceattr = new FaceAttr(vertex_num, vertexlist_wc,
  0 /*normal_num*/, normallist_wc);
[...]
std::cout  addr of light_:   faceattr-light()  std::endl;
  * std::cout  int (*(faceattr-light()))  std::endl;
faceattr-print();
 
 faceattr-light() returns 'AnyLight**', and thus this line try to
 print 'AnyLight*'.  If it can porint 'AnyLight**', it should be
 capable of printing 'AnyLight*' too.

You're right, just dropping the cast makes it build too.


Kurt



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



Bug#324620: pbuilder: pdebuild does not respect all dpkg-buildpackage options

2005-08-28 Thread Daniel Leidert
Am Sonntag, den 28.08.2005, 13:39 +0900 schrieb Junichi Uekawa:
 Hi,
 
 $ pdebuild --debbuildopts '-sa' --debug
 
 dpkg-genchanges: including full source code in upload
[..]

 I'm getting different results to yours; 
 pdebuild --debbuildopts '-sa' --debug -- --debug
 
 I think your config file has some funky setting:
   --logfile ../bluefish_pdebuild.log
 
 
 Can you check that your config file doesn't have DEBBUILDOPTS line?

It had DEBBUILDOPTS=. After commenting that out, it worked.

 You are probably overriding the debbuildopts command option.
 They are evaluated from left-to-right, and the rightmost command
 has the precedence.

So

pdebuild --configfile /etc/pbuilderrc.sarge --debbuildopts -us -uc -sa

should have worked? I suggest to mention that in the man-page of
pdebuild (pbuilder), because --configfile is also mentioned before the
--debuuildopts option in man-page.

Regards, Daniel



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



Bug#310154: 855resolution: should be run from rcS.d

2005-08-28 Thread Will Dyson
Even if running from rcS.d is too much of a danger, 855resolution could 
still install the startup link at a lower priority than 20.



--
Will Dyson
Back off man, I'm a scientist! -Dr. Peter Venkman


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



Bug#325069: wxvlc: No shortcut keys after switch to wxwidgets 2.6

2005-08-28 Thread Morten Brix Pedersen
I now found out that shortcut keys work without any problem when vlc is
in full-screen. If you go into full-screen, I can easily press 'f' to go
out of full screen mode, but I cannot press f to go into full-screen
mode. Only via menus.

  - Morten.


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



Bug#325135: maildrop: lockmail doesn't drop privileges

2005-08-28 Thread Steve Kemp
On Sat, Aug 27, 2005 at 07:03:55PM -0400, Andres Salomon wrote:

Certainly.  Once the advisory is out I can make an upload if Joy
   hasn't already made one.
  
 
 I can also do an upload; Joy already said I should comaintain, I've just
 been waiting for racke to do a new courier upload so that I can actually
 use maildrop (I have new maildrop packages in experimental that're just
 rotting away, waiting).

  I'll leave it to you then, unless you tell me differently.

Steve
-- 
# The Debian Security Audit Project.
http://www.debian.org/security/audit



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



Bug#244601: previous bug report

2005-08-28 Thread Marc Lehmann
Sorry, my previous report should not have been added to this bug. I looked
at it in reportbug to see wether it's the same issue, and pressed x to
exit, but I actually chose extend bug report with that. Shall I resubmit
it?

-- 
The choice of a
  -==- _GNU_
  ==-- _   generation Marc Lehmann
  ---==---(_)__  __   __  [EMAIL PROTECTED]
  --==---/ / _ \/ // /\ \/ /  http://schmorp.de/
  -=/_/_//_/\_,_/ /_/\_\  XX11-RIPE


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



Bug#244601: tetex-extra: package fails to configure: Error: `omega -ini -jobname=lambda -progname=lambda lambda.ini' failed

2005-08-28 Thread Marc Lehmann
Package: tetex-extra
Version: 2.0.2c-8
Followup-For: Bug #244601


2.0.2c-8 fails to configure:

   PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11/bin apt-get -f install
   ...
   Setting up tetex-extra (2.0.2c-8) ...
   Running initex. This may take some time. ...
   Error: `omega -ini  -jobname=lambda -progname=lambda lambda.ini' failed

   
###
   fmtutil: Error! Not all formats have been built successfully.
   Visit the log files in directory
   /var/lib/texmf/web2c
   for details.
   
###

This message is not too helpful, as /var/lib/texmf/web2c contains lots of
files. However, it seems that lambda.log is the relevant logfile.

   This is Omega, Version 3.14159--1.23.2.1 (Web2C 7.4.5) (INIOMEGA)
   28 AUG 2005 11:37
   Copyright (c) 1994--2000 John Plaice and Yannis Haralambous
   **lambda.ini
   (/usr/share/texmf/tex/latex/config/lambda.ini
   ! I can't find file `lambda.tex'.
   l.3 \input lambda.tex

   Please type another input file name: 
   ! Emergency stop.
   l.3 \input lambda.tex

   End of file on the terminal!

   No pages of output.

I have no idea what happens here.

-- Package-specific info:
Please read and follow the instructions in the first lines below
the text: -- Package-specific info:.
Thank you.

Press ENTER to continue
If you report an error when running one of the TeX-related binaries 
(latex, pdftex, metafont,...), or if the bug is related to bad or wrong
output, please include a MINIMAL example input file that produces the
error in your report. Don't forget to also include minimal examples of
other files that are needed, e.g. bibtex databases. Often it also helps
to include the logfile. Please, never send included pictures!

If your example file isn't short or produces more than one page of
output (except when multiple pages are needed to show the problem),
you can probably minimize it further. Instructions on how to do that
can be found at

http://www.latex-einfuehrung.de/mini-en.html (english)

or 

http://www.latex-einfuehrung.de/mini.html (german)

##
minimal input file


##
other files

##
 List of ls-R files

-rw-rw-r--  1 root staff 79 Aug  8 23:45 /usr/local/share/texmf/ls-R
-rw-rw-r--  1 root staff 91 Aug  8 23:45 /usr/local/lib/texmf/ls-R
-rw-rw-r--  1 root users 793 Aug  8 23:45 /var/lib/texmf/ls-R
lrwxrwxrwx  1 root root 29 Aug  8 23:45 /usr/share/texmf/ls-R - 
/var/lib/texmf/ls-R-TEXMFMAIN

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

Versions of packages tetex-extra depends on:
ii  dpkg  1.13.10Package maintenance system for Deb
ii  gsfonts   8.14+v8.11+urw-0.2 Fonts for the Ghostscript interpre
ii  tetex-base2.0.2c-8   Basic library files of teTeX
ii  tetex-bin 2.0.2-30   The teTeX binary files
ii  ucf   2.001  Update Configuration File: preserv

tetex-extra recommends no packages.

-- no debconf information


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



Bug#252850: addFileExts() effects only checktype_byfilename()

2005-08-28 Thread NOKUBI Takatsugu
addFileExts() method is for only checktype_byfilename(), so other
methods don't care about filename extention.
So it is not a bug, is specification.



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



Bug#322002: tetex-bin relies on specific PATH

2005-08-28 Thread Marc Lehmann
On Sat, Aug 27, 2005 at 05:40:47PM +0200, Frank Küster [EMAIL PROTECTED] 
wrote:
 Frank Küster [EMAIL PROTECTED] wrote:
 
  Marc Lehmann [EMAIL PROTECTED] wrote:
 
 [...]
  The obvious fix would be to either set the PATH or specify the full path
  of the program.
 
 [...]
  In my opinion, this is not a bug.
 
 Marc, is it okay to close that bug?

Yes, I'll open another bug for the remaining issue (I just found out it
doesn't install even with standard PATH).

-- 
The choice of a
  -==- _GNU_
  ==-- _   generation Marc Lehmann
  ---==---(_)__  __   __  [EMAIL PROTECTED]
  --==---/ / _ \/ // /\ \/ /  http://schmorp.de/
  -=/_/_//_/\_,_/ /_/\_\  XX11-RIPE


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



Bug#325081: mlmmj: runs through configure twice

2005-08-28 Thread Martin Zobel-Helas
Hi Søren,

On Saturday, 27 Aug 2005, you wrote:
 On Fri, Aug 26, 2005 at 01:34:13AM +0200, Martin Zobel-Helas wrote:
  
  it seems to me you are running through configure twice, once before
  doing make and once before doing make install.
 
 Yup. You are right. I've been trying to convince make to do otherwise, but I
 have so far been unsuccessful. Any help would be appreciated.

I had a short investigation and i just tried the following:

--- mlmmj-1.2.8/debian/rules2005-08-28 09:29:09.980598215 +
 +++ mlmmj-1.2.8.zobel/debian/rules  2005-08-28 09:25:23.851548426 +
 @@ -28,7 +28,7 @@
 INSTALL_PROGRAM += -s
  endif
  
 -config.status: patch configure
 +config.status: patch-stamp configure
 dh_testdir
 # Add here commands to configure the package.
 CFLAGS=$(CFLAGS) ./configure --host=$(DEB_HOST_GNU_TYPE) 
 --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man 
 --infodir=\$${prefix}/share/info

I didn't check if the resulting binary is correct, but i run through the
configire only once than.

Greetings
Martin



Bug#270813: magic(5) file

2005-08-28 Thread NOKUBI Takatsugu
libfile-mmagic has built-in magic(5) entry, and usually I only tested
with it.
Your test uses /etc/magic file, so the behavor depends on the file.

By the way, Debian's file(1) uses /usr/share/misc/file/magic, and
/etc/magic is for user's additional entries.



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



Bug#325384: python2.3-svn: The module fails to init when imported

2005-08-28 Thread Konstantin Isakov
Package: python2.3-svn
Version: 1.2.0-2
Severity: grave
Justification: renders package unusable


When trying to import pysvn, it fails:

Python 2.3.5 (#2, Aug 13 2005, 20:34:00)
[GCC 4.0.2 20050806 (prerelease) (Debian 4.0.1-4)] on linux2
Type help, copyright, credits or license for more information.
 import pysvn
Traceback (most recent call last):
  File stdin, line 1, in ?
  File /usr/lib/python2.3/site-packages/pysvn/__init__.py, line 12, in ?
from _pysvn import *
ImportError: dynamic module does not define init function (init_pysvn)


Seems to be a grave problem.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6-iii
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages python2.3-svn depends on:
ii  libapr0   2.0.54-4   the Apache Portable Runtime
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.1-6  GCC support library
ii  libstdc++64.0.1-6The GNU Standard C++ Library v3
ii  libsvn0   1.2.0-1shared libraries used by Subversio
ii  libsvncpp0c2  0.8.0-3Subversion C++ shared library
ii  python2.3 2.3.5-7An interactive high-level object-o

python2.3-svn recommends no packages.

-- no debconf information


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



Bug#325383: libgnomevfs2-common: gnomevfs-ls report invalid file size for files 4Gb

2005-08-28 Thread Benoit Hamet
Package: libgnomevfs2-common
Version: 2.8.4-4
Severity: minor

a sample :

ls -l /mnt/drive
-rw-r--r--  1 root root 5248663552 2005-07-29 12:01 sauvegarde.img
-rw-r--r--  1 root root 4133896192 2005-07-29 12:20 update.img

gnomevfs-ls file://mnt/drive
sauvegarde.img  (Regular, application/octet-stream) size
953696256  mode 0644
update.img  (Regular, application/octet-stream) size
-161071104 mode 0644

(shortened for brievity)

The main problem is that it seems that this is causing some apps to
fail. For example gnomebaker is not able to see these files. I test
gnomevfs-info and this one was working fine...

regards,

Benoît.

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

Versions of packages libgnomevfs2-common depends on:
ii  desktop-file-utils 0.10-1Utilities for .desktop files
ii  gconf2 2.8.1-6   GNOME configuration database syste
ii  gnome-mime-data2.4.2-1   base MIME and Application database
ii  libbonobo2-0   2.8.1-2   Bonobo CORBA interfaces library
ii  libbz2-1.0 1.0.2-7   high-quality block-sorting file co
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libfam0c1022.7.0-6   client library to control the FAM 
ii  libgconf2-42.8.1-6   GNOME configuration database syste
ii  libgcrypt111.2.0-11.1LGPL Crypto library - runtime libr
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgnomevfs2-0 2.8.4-4   The GNOME virtual file-system libr
ii  libgnutls111.0.16-13.1   GNU TLS library - runtime library
ii  libgpg-error0  1.0-1 library for common error values an
ii  liborbit2  1:2.12.2-1libraries for ORBit2 - a CORBA ORB
ii  libpopt0   1.7-5 lib for parsing cmdline parameters
ii  libsmbclient   3.0.14a-3 shared library that allows applica
ii  libtasn1-2 0.2.10-3  Manage ASN.1 structures (runtime)
ii  libxml22.6.16-7  GNOME XML library
ii  shared-mime-info   0.16-3FreeDesktop.org shared MIME databa
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#319750: [Parted-maintainers] Bug#319750: Please check if continue to happen

2005-08-28 Thread Sven Luther
On Sun, Aug 28, 2005 at 10:50:38AM +0200, [EMAIL PROTECTED] wrote:
 On Thu, Aug 25, 2005 at 10:23:18PM -0300, Otavio Salvador wrote:
  
  Please review the last upload (1.6.24) and check if move command works
  for you.
 No problems here. Can you give me a test case that fails?
 
  Is very important to try to clean up the BTS and that will allow us to
  focus on current real bugs and allow upstream also know about fixes
  that he did or need to do.
 I don't understand what you wanted to say. Please rephrase :)

Leslie, i think there are some misunderstanding here.

The parted-maintainers alioth mailing list was created to act as the
collective debian parted packages maintainer mailing list, and if i am not
wrong, you are using this same one for parted-upstream maintainership, right
?

As such, all communication about debian bugs will go to this mailing list, and
in particular the above message send by Otavio to Christian Kurz for bug
report http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=319750.

BTW, otavio, did you set 319750-submitter as the email address, or Christian
will never see the bug report.

If you want to look at the rest of the debian bugs, they are at :

  http://bugs.debian.org/cgi-bin/pkgreport.cgi?src=parted

Friendly,

Sven Luther



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



Bug#325385: debootstrap: not able to debootstrap sid

2005-08-28 Thread Martin Zobel-Helas
Package: debootstrap
Version: 0.2.45-0.2
Severity: important
Tags: sarge

Hi,

debootstrap in sarge is not able to debootstrap sid.

solar:/# debootstrap sid sid ftp://192.168.114.3/debian
I: Retrieving debootstrap.invalid_dists_sid_Release
I: Validating debootstrap.invalid_dists_sid_Release
I: Retrieving debootstrap.invalid_dists_sid_main_binary-i386_Packages
I: Validating debootstrap.invalid_dists_sid_main_binary-i386_Packages
I: Checking adduser...
I: Checking apt...
I: Checking apt-utils...
I: Checking aptitude...
I: Checking at...
I: Checking base-config...
I: Checking base-files...
I: Checking base-passwd...

[...]

I: Retrieving libpcre3
I: Validating libpcre3
I: Retrieving libpopt0
I: Validating libpopt0
E: Couldn't download libsigc++-1.2-5c102

The mirror is clean.

solar:/# dpkg -l debootstrap
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:uppercase=bad)
||/ Name  Version   
Description
+++-=-=-==
ii  debootstrap   0.2.45-0.2
Bootstrap a basic Debian system



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



Bug#325386: libgnomevfs2-common: gnomevfs-ls report invalid file size for files 4Gb

2005-08-28 Thread Benoit Hamet
Package: libgnomevfs2-common
Version: 2.8.4-4
Severity: minor

a sample :

ls -l /mnt/drive
-rw-r--r--  1 root root 5248663552 2005-07-29 12:01 sauvegarde.img
-rw-r--r--  1 root root 4133896192 2005-07-29 12:20 update.img

gnomevfs-ls file://mnt/drive
sauvegarde.img  (Regular, application/octet-stream) size
953696256  mode 0644
update.img  (Regular, application/octet-stream) size
-161071104 mode 0644

(shortened for brievity)

The main problem is that it seems that this is causing some apps to
fail. For example gnomebaker is not able to see these files. I test
gnomevfs-info and this one was working fine...

regards,

Benoît.


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

Versions of packages libgnomevfs2-common depends on:
ii  desktop-file-utils 0.10-1Utilities for .desktop files
ii  gconf2 2.8.1-6   GNOME configuration database syste
ii  gnome-mime-data2.4.2-1   base MIME and Application database
ii  libbonobo2-0   2.8.1-2   Bonobo CORBA interfaces library
ii  libbz2-1.0 1.0.2-7   high-quality block-sorting file co
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libfam0c1022.7.0-6   client library to control the FAM 
ii  libgconf2-42.8.1-6   GNOME configuration database syste
ii  libgcrypt111.2.0-11.1LGPL Crypto library - runtime libr
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgnomevfs2-0 2.8.4-4   The GNOME virtual file-system libr
ii  libgnutls111.0.16-13.1   GNU TLS library - runtime library
ii  libgpg-error0  1.0-1 library for common error values an
ii  liborbit2  1:2.12.2-1libraries for ORBit2 - a CORBA ORB
ii  libpopt0   1.7-5 lib for parsing cmdline parameters
ii  libsmbclient   3.0.14a-3 shared library that allows applica
ii  libtasn1-2 0.2.10-3  Manage ASN.1 structures (runtime)
ii  libxml22.6.16-7  GNOME XML library
ii  shared-mime-info   0.16-3FreeDesktop.org shared MIME databa
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information



Bug#325387: libtool: some options available in documentation are not usable under AMD64

2005-08-28 Thread Benoit Hamet
Package: libtool
Version: 1.5.6-6
Severity: normal

Hi,

I found that on AMD64 (I can't test it under other plateform) the
-static and -all-static options are rejected by libtools as
unrecognized option `-static'
but libtool --help list them as valid ones ... so what happens ?

regards,

Benoit.

-- 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.11-9-amd64-k8
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages libtool depends on:
ii  autotools-dev 20050803.1 Update infrastructure for config.{
ii  cpp   4:4.0.1-3  The GNU C preprocessor (cpp)
ii  file  4.12-1 Determines file type using magic
ii  gcc [c-compiler]  4:4.0.1-3  The GNU C compiler
ii  gcc-3.3 [c-compiler]  1:3.3.6-9  The GNU C compiler
ii  gcc-3.4 [c-compiler]  3.4.4-7The GNU C compiler
ii  gcc-4.0 [c-compiler]  4.0.1-5The GNU C compiler
ii  libc6-dev [libc-dev]  2.3.5-4GNU C Library: Development Librari

Versions of packages libtool recommends:
ii  libltdl3-dev  1.5.6-6A system independent dlopen wrappe

-- no debconf information


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



Bug#323312: [Peter 'p2' De Schrijver] Bug#323733: patch

2005-08-28 Thread RISKO Gergely
Patch posted to wrong bug number.

---BeginMessage---
Hi,

Attached you will find a patch which makes gnubg compile with gcc 4.0.

Cheers,

Peter (p2).
diff -urN gnubg-0.12/gtkprefs.c fixed/gnubg-0.12/gtkprefs.c
--- gnubg-0.12/gtkprefs.c   2001-10-31 16:57:40.0 +0100
+++ fixed/gnubg-0.12/gtkprefs.c 2005-08-27 22:01:21.0 +0200
@@ -42,10 +42,12 @@
 gtk_color_selection_set_opacity
 #endif
 
+GtkWidget *pwBoard;
+
 static GtkAdjustment *apadj[ 2 ], *paAzimuth, *paElevation,
 *apadjCoefficient[ 2 ], *apadjExponent[ 2 ], *apadjPoint[ 2 ],
 *padjBoard, *padjSpeed;
-static GtkWidget *apwColour[ 2 ], *apwPoint[ 2 ], *pwBoard, *pwTranslucent,
+static GtkWidget *apwColour[ 2 ], *apwPoint[ 2 ],  *pwTranslucent,
 *pwLabels, *pwUseDiceIcon, *pwPermitIllegal, *pwBeepIllegal,
 *pwHigherDieFirst, *pwAnimateNone, *pwAnimateBlink, *pwAnimateSlide,
 *pwSpeed;
diff -urN gnubg-0.12/sgf.c fixed/gnubg-0.12/sgf.c
--- gnubg-0.12/sgf.c2001-11-01 16:47:56.0 +0100
+++ fixed/gnubg-0.12/sgf.c  2005-08-27 21:57:10.0 +0200
@@ -279,6 +279,7 @@
break;

default:
+   break;
/* ignore */
}
 


signature.asc
Description: Digital signature
---End Message---


Bug#325371: ITP: binfmtc -- a binfmt_misc hook for running C programs as scripts

2005-08-28 Thread Romain Francoise
Junichi Uekawa [EMAIL PROTECTED] writes:

 I would be interested to know if there is any existing tool that does
 something similar, and also if anyone finds use for such system.

TCC does C scripting, but it's nowhere near as complete as GCC and while
it runs much faster, the resulting code is not optimized at all and runs
very slowly.

So yeah, binfmt + gcc is probably the way to go.

-- 
  ,''`.
 : :' :Romain Francoise [EMAIL PROTECTED]
 `. `' http://people.debian.org/~rfrancoise/
   `-


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



Bug#325388: mozilla-firefox downloads don't work after security updates

2005-08-28 Thread serja
Package: mozilla-firefox
Version: 1.0.4-2sarge2

After upgrading thus package via security updates the download within firefox 
won't work. I click at the download link, but nothing happen. I've asked on 
the mailing lists and folks report other problems with firefox after security 
updates.

I'm using Debian Sarge 3.1 kernel 2.6.8-2-686.


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



Bug#295860:

2005-08-28 Thread Max Bowsher
The language does say *If* the directory db contains a Berkeley DB 
environment, but I agree that's a bit pathetic.


Taken upstream. Ought to be fixed for 1.3.0.

Max.



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



Bug#325390: libqca1: Please recompile against latest qt

2005-08-28 Thread Anders Ellenshøj Andersen
Package: libqca1
Severity: wishlist


the gcc4 transition has left libqca uninstallable in sid. QT has been compiled 
with gcc4 and seems to be 
production ready by now, so please recompile libqca against this version of QT.

Thanks.

Anders E. Andersen

-- 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.3
Locale: LANG=da_DK, LC_CTYPE=da_DK (charmap=ISO-8859-1)


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



Bug#325389: ITP: gprsec -- GPRS Easy Connect - Connect to the Internet with a GPRS phone

2005-08-28 Thread Gabor Nagy
Package: wnpp
Severity: wishlist
Owner: Gabor Nagy [EMAIL PROTECTED]


* Package name: gprsec
  Version : 2.5.3
  Upstream Author : Name [EMAIL PROTECTED]
* URL : http://gprsec.linuxforum.hu/
* License : (GPL)
  Description : GPRS Easy Connect - Connect to the Internet with a GPRS 
phone

(Include the long description here.)

This program is a GUI to make GPRS connection
It supports 291 phones and 217 providers.


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



Bug#325383: Acknowledgement (libgnomevfs2-common: gnomevfs-ls report invalid file size for files 4Gb)

2005-08-28 Thread Benoit Hamet
Hum, sorry for the duplicate with Bug#325386, I get some problems with
my mails and was thinking that the mail was not sent.

Regards,

Benoît.



signature.asc
Description: OpenPGP digital signature


Bug#325383: libgnomevfs2-common: gnomevfs-ls report invalid file size for files 4Gb

2005-08-28 Thread Loïc Minier
forwarded 325383 http://bugzilla.gnome.org/show_bug.cgi?id=314691
thanks

Hi,

On Sun, Aug 28, 2005, Benoit Hamet wrote:
 The main problem is that it seems that this is causing some apps to
 fail. For example gnomebaker is not able to see these files. I test
 gnomevfs-info and this one was working fine...

 Thanks for your report.  I confirm this in GNOME 2.10 and I've
 forwarded your report to the upstream authors at:
http://bugzilla.gnome.org/show_bug.cgi?id=314691

 I suggest you subscribe to the upstream discussion.

   Regards,

-- 
Loïc Minier [EMAIL PROTECTED]
Come, your destiny awaits!



Bug#322143: build dependency gcj-3.3 will be removed

2005-08-28 Thread Steve Langasek
tags 322143 -fixed
thanks

Hi John,

Looks like I missed a bit in preparing this NMU, as it immediately
failed to build on arm after reaching the buildd.  The attached second
patch should take care of this, by stopping classpath from looking for
/usr/bin/gcj-3.3.

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/

diff -u classpath-0.14/debian/rules.cdbs classpath-0.14/debian/rules.cdbs
--- classpath-0.14/debian/rules.cdbs
+++ classpath-0.14/debian/rules.cdbs
@@ -21,7 +21,7 @@
 # Workaround a jikes bug on arm (jikes gets into an endless loop).
 DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
 ifeq ($(DEB_BUILD_ARCH),arm)
-   DEB_CONFIGURE_USER_FLAGS := --with-glibj=both 
--with-gcj=/usr/bin/gcj-3.3
+   DEB_CONFIGURE_USER_FLAGS := --with-glibj=both --with-gcj
 else
DEB_CONFIGURE_USER_FLAGS := --with-glibj=both 
--with-jikes=/usr/bin/jikes
 endif
diff -u classpath-0.14/debian/rules classpath-0.14/debian/rules
--- classpath-0.14/debian/rules
+++ classpath-0.14/debian/rules
@@ -19,7 +19,7 @@
 # 
(http://oss.software.ibm.com/developerworks/bugs/?func=detailbugbug_id=3973group_id=10)
 DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
 ifeq ($(DEB_BUILD_ARCH),arm)
-   OPT_COMPILER=--with-gcj=/usr/bin/gcj-3.3
+   OPT_COMPILER=--with-gcj
 else
OPT_COMPILER=--with-jikes=/usr/bin/jikes
 endif
diff -u classpath-0.14/debian/changelog classpath-0.14/debian/changelog
--- classpath-0.14/debian/changelog
+++ classpath-0.14/debian/changelog
@@ -1,3 +1,12 @@
+classpath (2:0.14-2.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * In addition to build-depending on gcj, we also need to invoke gcj
+when building instead of looking for /usr/bin/gcj-3.3!
+(really-closes: #322143)
+
+ -- Steve Langasek [EMAIL PROTECTED]  Sun, 28 Aug 2005 00:21:07 -0700
+
 classpath (2:0.14-2.1) unstable; urgency=medium
 
   * Non-maintainer upload.


signature.asc
Description: Digital signature


Bug#325386: libgnomevfs2-common: gnomevfs-ls report invalid file size for files 4Gb

2005-08-28 Thread Loïc Minier
forwarded 325386 http://bugzilla.gnome.org/show_bug.cgi?id=314691
merge 325383 325386
submitter 325383 [EMAIL PROTECTED]
thanks

Hi,

On Sun, Aug 28, 2005, Benoit Hamet wrote:
 The main problem is that it seems that this is causing some apps to
 fail. For example gnomebaker is not able to see these files. I test
 gnomevfs-info and this one was working fine...

 You've submitted this bug twice, I guess because of the mail address.
 I've set your submitter address for both bugs to the second one.

 (See http://www.debian.org/Bugs/server-refcard.)

   Bye,

-- 
Loïc Minier [EMAIL PROTECTED]
Come, your destiny awaits!



Bug#314923: No more problems after massive upgrade from testing to unstable

2005-08-28 Thread Manolo Díaz
Hi,

Although I've used the same version, 5.99.0+final-6, after a massive
upgrade from testing to unstable there are no more broken links in
/usr/share/grace/fonts/type1 any more.

Regards.
Manolo.


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



Bug#325392: NEWS.Debian uninstalled

2005-08-28 Thread Marco Nenciarini
Package: dhcp3
Severity: minor
Tags: patch

Your changelog says:

  * Added NEWS.Debian regarding change in functionality with respect to
next-server now being required for booting.

But no NEWS.Debian is found in any binary package.

--- rules~  2005-08-28 12:02:34.0 +0200
+++ rules   2005-08-28 12:53:51.0 +0200
@@ -155,7 +155,7 @@
dh_testroot -a
dh_installdebconf
#-#dh_installdocs -a -A --no-package=dhcp3-client-udeb 
debian/README.Debian
-   dh_installdocs -a -A debian/README.Debian
+   dh_installdocs -a -A debian/README.Debian debian/NEWS.Debian
dh_installexamples -a
 #  dh_installmenu -a
 #  dh_installemacsen -a


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


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



Bug#325391: kwallet doesn't allow to choose kdewallet as the default wallet

2005-08-28 Thread Ritesh Raj Sarraf
Package: kwallet
Version: kwalletmanager
Severity: normal


Once you create an additional wallet (foo), kdewallet doesn't allow you
to choose kdewallet as the default kde wallet.

Steps to reproduce:
1) You have one wallet named kdewallet by default
2) Create another wallet, foo.
3) kwallet doesn't allow you to choose kdewallet as the default wallet
if you change it once.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (300, 'unstable'), (100, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-bsplash-skas3-v8
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#259134:

2005-08-28 Thread Max Bowsher

As Wesley J. Landaker says above, this is NOT a bug.

It would conceivably be possibly to relax a few restrictions to allow this 
to work in additional - but not all - cases.


Anyway, either this bug should be closed, or it needs to be taken upstream, 
because fixing it would be more complex than would be reasonable to do in a 
distro-local patch.


Max.



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



Bug#323447: Replace dmix config

2005-08-28 Thread Loïc Minier
Hi,

On Sat, Aug 27, 2005, Paul van Tilburg wrote:
 This might be useful or not, but I had the same problem when I updated
 to gstreamer0.8-alsa 0.8.10-3. I also use dmix on PowerPC and got
 constant ticking (about 4Hz) through my sound.

 Very useful, thanks!

   Bye,

-- 
Loïc Minier [EMAIL PROTECTED]
Come, your destiny awaits!



Bug#325395: dput: expand environment variables

2005-08-28 Thread Filippo Giunchedi
Package: dput
Version: 0.9.2.19
Severity: wishlist

Hi,
it would be handy if dput can expand environment variables like $HOME if
used in dput.cf

filippo

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

Versions of packages dput depends on:
ii  debconf   1.4.58 Debian configuration management sy
ii  gnupg 1.4.1-1GNU privacy guard - a free PGP rep
ii  python2.3.5-3An interactive high-level object-o

dput recommends no packages.

-- debconf information:
  dput/config-file-format:


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



Bug#325393: hpoj cannot start without scanner group existing

2005-08-28 Thread Luke Kenneth Casson Leighton
Package: hpoj
Version: 0.91-4
Severity: normal


i haven't installed sane and i don't know if that's the appropriate
minimalist dependency i just installed printconf on a basic system - a
server only - which has no x-windows, nothing.

the printer is an HP 1215 (which printconf detects as a 1310 oh well)
but it cannot operate without hpoj.


-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux highfield 2.6.11-1-686 #1 Fri May 20 07:34:54 UTC 2005 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages hpoj depends on:
ii  libc6   2.3.5-3  GNU C Library: Shared libraries an
ii  libgcc1 1:4.0.1-3GCC support library
ii  libsnmp55.1.2-6  NET SNMP (Simple Network Managemen
ii  libstdc++5  1:3.3.4-11   The GNU Standard C++ Library v3
ii  libusb-0.1-42:0.1.10a-14 userspace USB programming library

-- no debconf information



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



Bug#325394: apticron: should mention aptitude instead of apt-get

2005-08-28 Thread Filippo Giunchedi
Package: apticron
Version: 1.1.12
Severity: wishlist

Hi,
I would recommend to switch to aptitude instead of apt-get in apticron's
notifications because since sarge it is the way to go :)

thanks in advance,
filippo

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

Versions of packages apticron depends on:
ii  apt-listchanges  2.59-0.2Display change history from .deb a
ii  coreutils5.2.1-2 The GNU core utilities
ii  debconf  1.4.58  Debian configuration management sy
ii  iproute  20041019-3  Professional tools to control the 
ii  mailx1:8.1.2-0.20050715cvs-1 A simple mail user agent

apticron recommends no packages.

-- debconf information:
* apticron/notification: root


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



Bug#325396: linux-2.6: add an option to decompress after installation

2005-08-28 Thread Filippo Giunchedi
Package: linux-2.6
Severity: wishlist

Hi,
it would be fine to have an option (e.g in /etc/linux-source.conf) to
decompress the .tar.bz2/.tar.gz in background while executing postinst
(of course defaulting to no). I often find myself doing some work on
old /usr/src/linux-source-x.y.z.

thanks in advance,
filippo

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (600, 'unstable'), (550, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
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#325397: [amd64] Crash X sometimes with powernow-k8

2005-08-28 Thread Kyuma Ohta
Package: xserver-xorg
Version: 6.8.2.dfsg.1-5
Severity: grave
Tags: sid

  When using powernowd (or other powercontroller) with powernow-k8
kernel driver, some process wat using X is crashed  with X server
with kernel oops with below message:

I'm using kernel 2.6.11 or later (Now,2.6.13-rc7) ,
this issue is happend with powernowd sometimes,
but I'm not using powernowd (or another power controller),
this issue han *not* happened.

I'm running system on MSI K8T Neo2 (VIS K8T800) with 
nVidia GeForce 5200FX and Athlon64 3000+.

Regards,
Ohta
---
Aug 27 06:45:04 melchior kernel: [ 3261.724581] Unable to handle kernel NULL 
pointer dereference at 0103 RIP: 
Aug 27 06:45:04 melchior kernel: [ 3261.724587] 8040deb1{sk_free+49}
Aug 27 06:45:04 melchior kernel: [ 3261.724596] PGD 1615a067 PUD 67c5067 PMD 0 
Aug 27 06:45:04 melchior kernel: [ 3261.724600] Oops:  [1] 
Aug 27 06:45:04 melchior kernel: [ 3261.724602] CPU 0 
Aug 27 06:45:04 melchior kernel: [ 3261.724603] Modules linked in: w83627hf 
i2c_viapro i2c_isa i2c_dev nvidia deflate zlib_deflate twofish serpent 
aes_x86_64 blowfish des sha256 sha1 crypto_null lp ipt_TOS ipt_MASQUERADE 
ipt_REJECT ipt_LOG ipt_state ipt_pkttype ipt_CONNMARK ipt_MARK ipt_connmark 
ipt_owner ipt_recent ipt_iprange ipt_physdev ipt_multiport ipt_conntrack 
iptable_mangle ip_nat_irc ip_nat_tftp ip_nat_ftp iptable_nat ip_conntrack_irc 
ip_conntrack_tftp ip_conntrack_ftp iptable_filter ip_tables ipv6 parport_pc 
parport pcspkr w83627hf_wdt i2c_sensor saa7115 upd64083 upd64031a mpg600gr 
saa717x ivtv i2c_algo_bit tvaudio tuner saa7134 video_buf v4l2_common 
v4l1_compat i2c_core ir_common videodev snd_seq_dummy snd_seq_oss snd_seq_midi 
snd_seq_midi_event snd_seq snd_via82xx snd_ac97_codec snd_pcm_oss snd_mixer_oss 
snd_pcm snd_timer snd_page_alloc snd_mpu401_uart snd_rawmidi snd_seq_device snd 
soundcore psmouse r8169 tg3 sbp2 tsdev joydev evdev usbhid usblp
Aug 27 06:45:04 melchior kernel: [ 3261.724641] Pid: 14467, comm: gnome-panel 
Tainted: P  2.6.13-rc7-gcc402
Aug 27 06:45:04 melchior kernel: [ 3261.724645] RIP: 0010:[8040deb1] 
8040deb1{sk_free+49}
Aug 27 06:45:04 melchior kernel: [ 3261.724651] RSP: 0018:810016563c28  
EFLAGS: 00010206
Aug 27 06:45:04 melchior kernel: [ 3261.724654] RAX: 0001 RBX: 
81001c828c00 RCX: 
Aug 27 06:45:04 melchior kernel: [ 3261.724657] RDX:  RSI: 
81001d1d5080 RDI: 00ff
Aug 27 06:45:04 melchior kernel: [ 3261.724660] RBP:  R08: 
 R09: 
Aug 27 06:45:04 melchior kernel: [ 3261.724664] R10:  R11: 
80196760 R12: 81001c828ce0
Aug 27 06:45:04 melchior kernel: [ 3261.724667] R13:  R14: 
0001 R15: 
Aug 27 06:45:04 melchior kernel: [ 3261.724671] FS:  40800960() 
GS:80720800() knlGS:556ea6c0
Aug 27 06:45:04 melchior kernel: [ 3261.724674] CS:  0010 DS:  ES:  
CR0: 8005003b
Aug 27 06:45:04 melchior kernel: [ 3261.724677] CR2: 0103 CR3: 
3df26000 CR4: 06e0
Aug 27 06:45:04 melchior kernel: [ 3261.724682] Process gnome-panel (pid: 
14467, threadinfo 810016562000, task 810017a45850)
Aug 27 06:45:04 melchior kernel: [ 3261.724684] Stack: 81001d1d5080 
 81001c828c00 80481747 
Aug 27 06:45:04 melchior kernel: [ 3261.724690] 
81001d711c00  81001d711c78 
Aug 27 06:45:04 melchior kernel: [ 3261.724695]81000213f8c0 
81001d711c78 
Aug 27 06:45:04 melchior kernel: [ 3261.724699] Call 
Trace:80481747{unix_release_sock+439} 
8040a091{sock_release+33}
Aug 27 06:45:04 melchior kernel: [ 3261.724715]
8040aa85{sock_close+53} 8019f122{__fput+210}
Aug 27 06:45:04 melchior kernel: [ 3261.724725]
8019b6a8{filp_close+104} 8013dd24{put_files_struct+116}
Aug 27 06:45:04 melchior kernel: [ 3261.724737]
8013f763{do_exit+803} 8014f02e{__dequeue_signal+558}
Aug 27 06:45:04 melchior kernel: [ 3261.724750]
80140694{do_group_exit+532} 
80150847{get_signal_to_deliver+3559}
Aug 27 06:45:04 melchior kernel: [ 3261.724763]
8010e57d{do_signal+157} 801b8635{poll_freewait+85}
Aug 27 06:45:04 melchior kernel: [ 3261.724785]
801b918b{sys_poll+875} 8010f3a7{sysret_signal+28}
Aug 27 06:45:04 melchior kernel: [ 3261.724800]
8010f68f{ptregscall_common+103} 
Aug 27 06:45:04 melchior kernel: [ 3261.724816] 
Aug 27 06:45:04 melchior kernel: [ 3261.724817] Code: 8b 47 04 8d 04 c5 08 00 
00 00 29 83 d8 00 00 00 ff 0f 0f 94 
Aug 27 06:45:04 melchior kernel: [ 3261.724825] RIP 
8040deb1{sk_free+49} RSP 810016563c28
Aug 27 06:45:04 melchior kernel: [ 3261.724830] CR2: 0103
Aug 27 06:45:04 melchior kernel: [ 

Bug#313067: defoma: Defoma prevents ghostscript from rendering fonts properly

2005-08-28 Thread Angus Lees
At Sat, 11 Jun 2005 12:14:17 -0400, Kirill wrote:
 I am trying to set up an HPLJ 1012 to print from KDE apps (KWord, Konqueror)
 using CUPS. I am getting most fonts messed up by ghostscript (gs-esp). I've
 been struggling with it for a whole week now with very little progress so far.

 When I print to a PostScript file and then try to view it with ghostscript,
 almost all fonts are totally messed up, both the typeface and letter spacing
 is bad. Same with print preview and on paper.
 
 Printing with Times New Roman in regular, italic, bold and bold italic and 
 then
 looking in the .ps file I see:
 
 %%DocumentFonts: Times-Bold Times-Italic Times-Roman Times-BoldItalic
 
 Then I run gs on it, and it says:
 
 ESP Ghostscript 7.07 (2003-07-12)
 Copyright 2003 artofcode LLC and Easy Software Products, all rights reserved.
 This software comes with NO WARRANTY: see the file PUBLIC for details.
 Loading NimbusRomNo9L-MediItal font from 
 /var/lib/defoma/gs.d/dirs/fonts/n021024l.pfb... 2149928 764523 1763096 439747 
 0 done.
 Loading NimbusRomNo9L-ReguItal font from 
 /var/lib/defoma/gs.d/dirs/fonts/n021023l.pfb... 2307264 878740 1763096 385118 
 0 done.
 Loading NimbusRomNo9L-Medi font from 
 /var/lib/defoma/gs.d/dirs/fonts/n021004l.pfb... 2444504 1012113 1783192 
 401765 0 done.
 Loading NimbusRomNo9L-Regu font from 
 /var/lib/defoma/gs.d/dirs/fonts/n021003l.pfb... 2581744 1137566 1783192 
 387726 0 done.
 showpage, press return to continue
 
 Result: it shows the page with Nimbus Roman instead of Times New Roman, and
 all letter spacing is fubared.

URW Nimbus Roman is supposed to be metric-compatible with Adobe's
Times New Roman, so this substitution is exactly what is supposed to
happen.  (I'm assuming here that you haven't gone out and bought the
real Adobe fonts)

Having the letter spacing wrong probably means the original kword app
somehow didn't get the font metric information correct, however.  Has
this ever worked for you in the past?  My only experience with kword
was many years ago and I too was appalled at the print quality
although I never investigated it.

 When I format all text with Nimbus Roman, I get:
 
 %%DocumentFonts: NimbusRomanNo9L-Bold NimbusRomanNo9L-Italic NimbusRomanNo9L 
 NimbusRomanNo9L-BoldItalic
 
 in the .ps file, and then
 
 ESP Ghostscript 7.07 (2003-07-12)
 Copyright 2003 artofcode LLC and Easy Software Products, all rights reserved.
 This software comes with NO WARRANTY: see the file PUBLIC for details.
 Can't find (or can't open) font file 
 /usr/share/ghostscript/fonts/NimbusRomanNo9L-Italic.
 Can't find (or can't open) font file NimbusRomanNo9L-Italic.
 Substituting font Times-Italic for NimbusRomanNo9L-Italic.
 Loading NimbusRomNo9L-ReguItal font from 
 /var/lib/defoma/gs.d/dirs/fonts/n021023l.pfb... 2170024 782484 1763096 440505 
 0 done.
 Loading NimbusSanL-ReguItal font from 
 /var/lib/defoma/gs.d/dirs/fonts/n019023l.pfb... 2267072 876716 1763096 445071 
 0 done.
[...]
 
 and everything shows up in Nimbus Sans.

Hrm.  ghostscript (via Defoma and gsfonts.hints) only knows this font
as NimbusRomNo9L-ReguItal.  Where did kword get the name
NimbusRomanNo9L-Italic from?

Since Nimbus Roman isn't one of the base postcript fonts, Kword (or
whatever KDE component created the postscript) should have embedded
the font in the produced postscript file and ghostscript would not
have had to look for the font data itself.  Have you by any chance
turned some font embedding option off?  (I'd be extremely surprised if
it was off by default)

 Bold, italic and bold italic are shown fine, but normal Georgia it
 can't find because in defoma aliases it's known as Georgia-Regular
 rather than Georgia.
[similar with other font families]

It seems that kword is working off a totally different list of font
names than ghostscript.  This would be just fine if kword embedded the
font data in the postscript output, but it isn't and its expecting
ghostscript to be able to find the font data under the same font names
its using.

Since I don't have kword installed anywhere (and don't really want to
lug in all of KDE just to have a look), I'm CCing this to the kword
maintainer.  Ben, how does kword find font information when producing
postscript?  At the moment, it looks like Defoma (and ghostscript) are
doing the right thing and I'm thinking of reassigning this bug to
kword.


Kirill, As a temporary workaround, you could manually edit
/etc/defoma/hints/gsfonts.hints, etc and add the aliases that Kword is
assuming exist.  Just run defoma-font reregister-all $hintfile after
editing a hintfile for defoma to act on your changes.

-- 
 - Gus


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



Bug#325135: maildrop: lockmail doesn't drop privileges

2005-08-28 Thread Martin Schulze
Andres Salomon wrote:
 On Sat, 2005-08-27 at 11:42 +0100, Steve Kemp wrote:
  On Sat, Aug 27, 2005 at 12:27:51PM +0200, Martin Schulze wrote:
  
   Thanks a lot for the report.  This is CAN-2005-2655.
   
The bug affects 1.5.3-1.1 sarge/etch/sid and 1.8.1-2 in experimental,
and should be easy to fix: Just add setgid(getgid()) before the
execvp(). I tested the attached patch briefly and verified that it
builds and prevents this bug.
   
   Steve, could you take care of sid and experimental packages if Joy
   is too busy?
  
Certainly.  Once the advisory is out I can make an upload if Joy
   hasn't already made one.
  
 
 I can also do an upload; Joy already said I should comaintain, I've just

Please go ahead.

 been waiting for racke to do a new courier upload so that I can actually
 use maildrop (I have new maildrop packages in experimental that're just
 rotting away, waiting).
 
 Speaking of racke, has anyone checked whether courier-maildrop needs the
 same patch?

Not before your mail.  However, it seems that the code is in the source
package, but there is no lockmail binary exposed by courier, hence, no
need to patch it as well.

Regards,

Joey

-- 
If nothing changes, everything will remain the same.  -- Barne's Law

Please always Cc to me when replying to me on the lists.


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



Bug#325398: Support of SUID root

2005-08-28 Thread shock
Package: xmame-sdl
Version: 0.99-1
Severity: wishlist

Please prepare the templates for setting SUID root as well as xmame-x 
or xmess-x. DGA extension can be used also in a SDL port.
 # SDL_VIDEODRIVER=dga xmame.SDL


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



Bug#325399: gtksee: update to current version

2005-08-28 Thread Rolandas Juodzbalis
Package: gtksee
Version: 0.5.6-1
Severity: wishlist

Please update to current version (0.6.0)

-- 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.11-1-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages gtksee depends on:
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libgtk1.2 1.2.10-17  The GIMP Toolkit set of widgets fo
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libtiff4  3.7.3-1Tag Image File Format (TIFF) libra
ii  libx11-6  6.8.2.dfsg.1-5 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-5 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-5 X Window System Input extension li
ii  xlibs 6.8.2.dfsg.1-5 X Window System client libraries m
ii  zlib1g1:1.2.3-3  compression library - runtime

gtksee recommends no packages.

-- no debconf information


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



Bug#325400: gs-gpl: should not provide Fontmap.GS and only use defoma

2005-08-28 Thread Ralf Stubner
Package: gs-gpl
Version: 8.01-5
Severity: normal

I wanted to change what fonts gs-gpl uses when a PS file calls, e.g.,
for Times-Roman. I therefore registered a hint file with entries like:

begin /usr/share/texmf/fonts/type1/urw/times/utmr8a.pfb
  AFM = /usr/share/texmf/fonts/afm/urw/times/utmr8a.afm
  FontName = Times-Roman
  Charset = ISO8859-1
  Family = Times
  GeneralFamily = Roman
  Weight = Regular
  Width = Variable
  Shape = Normal Upright
  Priority = 30
end

with 'defoma-font register-all hintfile'. I confirmed with dfontmgr
that the fonts are installed correctly for 'gs'. However, gs-gpl still
uses the NimbusSerifL provided by gsfonts. Calling gs-gpl with strace
indicates that gs-gpl reades /usr/share/gs-gpl/8.01/lib/Fontmap.GS
before it reads /var/lib/defoma/gs.d/dirs/fonts/Fontmap, and it seems
that one can't overwrite the settings made by Fontmap.GS later on. I was
able to circumvent this by commenting the line in /etc/gs-gpl/Fontmap
that loads Fontmap.GS. However, I think gs-gpl should not provide
Fontmap.GS at all and only use defoma (or /etc/gs-gpl/Fontmap) for font
configuration.

For gs-esp the situation is worse, as there is no '/etc/gs-esp/Fontmap'
and one would have to edit /usr/share/gs-esp/7.07/lib/Fontmap, which is
of course not save with respect to updates.

BTW, Fontmap.GS also defines some fonts that aren't provided in Debian
at all (Utopia).

cheerio
ralf

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

Versions of packages gs-gpl depends on:
ii  gs-common  0.3.7 Common files for different
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libr
ii  libgimpprint1  4.2.7-10  The Gimp-Print printer dri
ii  libice64.3.0.dfsg.1-14   Inter-Client Exchange libr
ii  libjpeg62  6b-10 The Independent JPEG Group
ii  libpaper1  1.1.14-3  Library for handling paper
ii  libpng12-0 1.2.8rel-1PNG library - runtime
ii  libsm6 4.3.0.dfsg.1-14   X Window System Session Ma
ii  libx11-6   4.3.0.dfsg.1-14   X Window System protocol c
ii  libxext6   4.3.0.dfsg.1-14   X Window System miscellane
ii  libxt6 4.3.0.dfsg.1-14   X Toolkit Intrinsics
ii  xlibs  4.3.0.dfsg.1-14   X Keyboard Extension (XKB)
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runt

-- no debconf information



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



Bug#325401: liblablgtk2-ocaml-dev: Possible dependency problem

2005-08-28 Thread Thomas Petazzoni
Package: liblablgtk2-ocaml-dev
Severity: normal


Hi,

When trying to install liblablgtk2-ocaml-dev, apt-get wants to remove
libglu1-xorg and x-window-system-core. I find it quite strange. Is it
normal ?

$ sudo apt-get install liblablgtk2-ocaml-dev
Reading package lists... Done
Building dependency tree... Done
The following extra packages will be installed:
  liblablgl-ocaml-dev xlibmesa-glu xlibmesa-glu-dev
Suggested packages:
  liblablgtk2-gnome-ocaml-dev
The following packages will be REMOVED:
  libglu1-xorg x-window-system-core
The following NEW packages will be installed:
  liblablgl-ocaml-dev liblablgtk2-ocaml-dev xlibmesa-glu
xlibmesa-glu-dev
0 upgraded, 4 newly installed, 2 to remove and 3 not upgraded.

Thanks,

Thomas

-- 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.11.11
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)


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



Bug#325402: prelink: assertion failure in dso.c:1465

2005-08-28 Thread Laurent Bonnaud
Package: prelink
Version: 0.0.20050610-1
Severity: important


Hi,

here is what I see in /var/log/prelink.log:

/usr/sbin/prelink -a -mR
[...]
prelink.bin: ../../src/dso.c:1465: recompute_nonalloc_offsets: Assertion 
`dso-shdr[i - 1].sh_offset  dso
-ehdr.e_shoff' failed.
Prelink failed with return value 134


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

Versions of packages prelink depends on:
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libelfg0  0.8.5-1an ELF object file access library
ii  libselinux1   1.24-4 SELinux shared libraries

prelink recommends no packages.

-- no debconf information


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



Bug#323212: hal: Can't eject CDROM

2005-08-28 Thread jjluza
Sjoerd Simons wrote

 It's not related to hal. The error just says that a certain property
 doesn't exist on the device, but that's valid.

 I don't know what in KDE actually ejects a cd. So i can't reassign it to
 the right package. Do you know ?

   Sjoerd

I have recently upgrade my system and now it works.
I think you can close this bug.
Sorry for having report it against the wrong package.
Regards,
JJ Luza


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



Bug#282262: mcatalog debian package

2005-08-28 Thread Carlos Z.F. Liu
Hi Fabio,

Are you still maintaining the mcatalog debian package? The newest one I
can find is 0.0.4-3 on mentors.debian.net.

I tried the current upstream tarball yesterday. My feeling is very good.
If you haven't enough time to work on it, I'd like to take this package.
If you agree, I will upload my one to mentors.debian.net.

Thanks.

-- 
 Best Regards,
 Carlos


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



Bug#297174: Can't reproduce anymore?

2005-08-28 Thread Stian Jordet
Hi,

I've just done some quick testing, and want to hear what others have to
say about it, but I can't reproduce this with 4.52-2? The error was
still there with -1, but now it seems ok. Is that only me?

I'll do some more testing later tonight :)

Best regards,
Stian



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



Bug#325403: gnet: Can't declare a GUnixSocket* element in a struct

2005-08-28 Thread Florian Ragwitz
Package: gnet
Severity: normal

Hello,

compiling the following program doesn't work:

#include gnet.h

typedef struct {
GTcpSocket* tcp;
GUnixSocket* unix;
} socket;

int main (int argc, char** argv) {
return 0;
}

It gives me an error about a syntax error after a numeric constant in
the GUnixSocket line.

If I omit this line it works.


Regards,
Flo

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.7-1-686
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#325404: FTBFS on GNU/kFreeBSD

2005-08-28 Thread Aurelien Jarno
Package: cron
Version: 3.0pl1-83
Severity: important
Tags: patch

Hi,

This version of cron fails to build on GNU/kFreeBSD, because selinux is
Linux specific. Please find attached a patch to fix that. It removes the
dependency on libselinux-dev for kfreebsd-i386, and reverses it detects
linux in debian/rules, instead of detecting !gnu.

It would be nice if you can apply it in the next upload of cron.

Thanks in advance,
Aurelien

-- System Information:
Debian Release: testing/unstable
Architecture: kfreebsd-i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU/kFreeBSD 5.3-1
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

Versions of packages cron depends on:
ii  adduser3.67  Add and remove users and groups
ii  debianutils2.14.2Miscellaneous utilities specific t
ii  libc0.12.3-1+kbsd.11 GNU C Library: Shared libraries an
ii  libpam0g   0.76-15   Pluggable Authentication Modules l

Versions of packages cron recommends:
ii  exim4-daemon-light [mail-tran 4.52-2 lightweight exim MTA (v4) daemon

-- no debconf information
diff -u cron-3.0pl1/debian/control cron-3.0pl1/debian/control
--- cron-3.0pl1/debian/control
+++ cron-3.0pl1/debian/control
@@ -4,7 +4,7 @@
 Maintainer: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
 Uploaders: Steve Greenland [EMAIL PROTECTED]
 Standards-Version: 3.6.1
-Build-Depends: debhelper, libpam0g-dev, libselinux1-dev [!hurd-i386]
+Build-Depends: debhelper, libpam0g-dev, libselinux1-dev [!hurd-i386 
!kfreebsd-i386]
 
 Package: cron
 Architecture: any
diff -u cron-3.0pl1/debian/rules cron-3.0pl1/debian/rules
--- cron-3.0pl1/debian/rules
+++ cron-3.0pl1/debian/rules
@@ -19,14 +19,14 @@
 endif
 
 # Set system type (Linux, HURD, etc.)
-DEB_HOST_GNU_SYSTEM = $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM)
-ifeq ($(DEB_HOST_GNU_SYSTEM), gnu)
-  PAM_DEFS = 
-  PAM_LIBS =
-else
+DEB_HOST_ARCH_OS = $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
+ifeq ($(DEB_HOST_ARCH_OS), linux)
   PAM_DEFS = -DUSE_PAM
   PAM_LIBS = -lpam
   SELINUX = yes
+else
+  PAM_DEFS = 
+  PAM_LIBS =
 endif
 
 export PAM_DEFS
@@ -40,10 +40,10 @@
 
 export SELINUX_DEFS SELINUX_LIBS
 
-ifeq ($(DEB_HOST_GNU_SYSTEM), gnu)
-build: build-cron
-else
+ifeq ($(DEB_HOST_ARCH_OS), linux)
 build: build-cron build-cron-se
+else
+build: build-cron
 endif
 
 build-cron: b-cron/build-stamp
diff -u cron-3.0pl1/debian/changelog cron-3.0pl1/debian/changelog
--- cron-3.0pl1/debian/changelog
+++ cron-3.0pl1/debian/changelog
@@ -1,3 +1,9 @@
+cron (3.0pl1-91+kbsd) unreleased; urgency=low
+
+  * Don't depend on selinux on GNU/kFreeBSD. 
+
+ -- Aurelien Jarno [EMAIL PROTECTED]  Sun, 28 Aug 2005 13:49:42 +0200
+
 cron (3.0pl1-91) unstable; urgency=low
 
   * Proper fix for #324017, the previous fix was dumb. This one


Bug#313380: Acknowledgement (f-spot: Attach tag lists hardware devices instead of tags)

2005-08-28 Thread Sven Arvidsson
This bug was fixed in version 0.1.0, this report can be closed.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


signature.asc
Description: Digital signature


Bug#325405: Please recompile against newer version of libzipios++

2005-08-28 Thread Sebastian Rittau
Package: enigma
Version: 0.92-1
Severity: normal

Due to the gcc 4.0 transition there is a new version of the libzipios++
library in the archive that conflicts with the old version. Please
recompile enigma against the new version.

Thanks,

 - Sebastian

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

Versions of packages enigma depends on:
ii  enigma-data   0.92-1 Data file for the game enigma
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.1-6  GCC support library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libsdl-image1 1.2.4-1image loading library for Simple D
ii  libsdl-mixer1 1.2.6-1.1  mixer library for Simple DirectMed
ii  libsdl-ttf2.0 2.0.6-5ttf library for Simple DirectMedia
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-5.3 Simple DirectMedia Layer
ii  libstdc++51:3.3.6-9  The GNU Standard C++ Library v3
ii  libzipios++0c 0.1.5.9+cvs.2004.02.07-3   a small C++ library for reading zi

enigma recommends no packages.

-- no debconf information



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



Bug#325406: poxml: split2po failed

2005-08-28 Thread Philippe Batailler
Package: poxml
Version: 4:3.3.2-3
Severity: important

With the two files attached (1.xml 2.xml)
I ran:
split2po 1.xml 2.xml  3.po

The file 3.po is incorrect but split2po does not say anything.

Regards,

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

Versions of packages poxml depends on:
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libgcc1  1:3.4.3-12  GCC support library
ii  libice6  4.3.0.dfsg.1-12.0.1 Inter-Client Exchange library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-2   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-12.0.1 X Window System Session Management
ii  libstdc++5   1:3.3.6-4   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-12.0.1 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-12.0.1 X Window System miscellaneous exte
ii  xlibs4.3.0.dfsg.1-12 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information

-- 
Philippe Batailler





1.xml
Description: application/xml


2.xml
Description: application/xml


Bug#297174: Can't reproduce anymore?

2005-08-28 Thread Andreas Metzler
On 2005-08-28 Stian Jordet [EMAIL PROTECTED] wrote:
 I've just done some quick testing, and want to hear what others have to
 say about it, but I can't reproduce this with 4.52-2? The error was
 still there with -1, but now it seems ok. Is that only me?

 I'll do some more testing later tonight :)

Hello,
Thanks for testing. As 4.52-2 is using libgnutls12 instead of
libgnutls11 it is entirely possible that something has changed.
   cu andreas
-- 
See, I told you they'd listen to Reason, [SPOILER] Svfurlr fnlf,
fuhggvat qbja gur juveyvat tha.
Neal Stephenson in Snow Crash


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



Bug#308778: slalom skiing works in 0.92-1

2005-08-28 Thread Sebastian Rittau
Package: enigma
Followup-For: Bug #308778

This level works for me in enigma 0.92-1.

 - Sebastian

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

Versions of packages enigma depends on:
ii  enigma-data   0.92-1 Data file for the game enigma
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.1-6  GCC support library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libsdl-image1 1.2.4-1image loading library for Simple D
ii  libsdl-mixer1 1.2.6-1.1  mixer library for Simple DirectMed
ii  libsdl-ttf2.0 2.0.6-5ttf library for Simple DirectMedia
ii  libsdl1.2debi 1.2.7+1.2.8cvs20041007-5.3 Simple DirectMedia Layer
ii  libstdc++51:3.3.6-9  The GNU Standard C++ Library v3
ii  libzipios++0c 0.1.5.9+cvs.2004.02.07-3   a small C++ library for reading zi

enigma recommends no packages.

-- no debconf information



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



Bug#325399: gtksee: update to current version

2005-08-28 Thread Nico Golde
Hallo Rolandas,

* Rolandas Juodzbalis [EMAIL PROTECTED] [2005-08-28 13:59]:
 Package: gtksee
 Version: 0.5.6-1
 Severity: wishlist
 
 Please update to current version (0.6.0)

[...] 
No, it is a beta version and me and upstream decided that it
is not stable enough for including it into debian.
Regards Nico
-- 
Nico Golde - JAB: [EMAIL PROTECTED] | GPG: 0x73647CFF
http://www.ngolde.de | http://www.muttng.org | http://grml.org 
VIM has two modes - the one in which it beeps 
and the one in which it doesn't -- encrypted mail preferred


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



Bug#325407: pvm: FTBFS (ppc64): Please support the ppc64 architecture

2005-08-28 Thread Andreas Jochens
Package: pvm
Version: 3.4.5-3
Severity: wishlist
Tags: patch

When building 'pvm' on ppc64/unstable,
I get the following error:

chmod +x lib/pvmgetarch
chmod +x debian/getpvmarch
PVM_ROOT=`pwd` ./lib/aimk -here -f ./conf/`sh debian/getpvmarch`.def -f 
./Makefile.aimk CFLOPTS='-g -O2 -DRSHCOMMAND=\\\/usr/lib/pvm3/bin/rsh\\\ 
-DPVMDPATH=\\\pvmd\\\ -DPVMDFILE=\\\/usr/bin/pvmd\\\ 
-DPVM_DEFAULT_ROOT=\\\/usr/lib/pvm3\\\ -DOVERLOADHOST'  PVMDIR=`pwd`  default
Unknown architecture!
aimk: no pvmgetarch - is $PVM_ROOT set correctly?
make: *** [build] Error 1

With the attached patch 'pvm' can be compiled on ppc64.

Regards
Andreas Jochens

diff -urN ../tmp-orig/pvm-3.4.5/debian/getpvmarch ./debian/getpvmarch
--- ../tmp-orig/pvm-3.4.5/debian/getpvmarch 2005-08-28 13:51:11.0 
+0200
+++ ./debian/getpvmarch 2005-08-28 13:43:29.0 +0200
@@ -36,6 +36,9 @@
powerpc)
echo LINUXPPC
;;
+   ppc64)
+   echo LINUX64
+   ;;
arm)
echo LINUXARM
;;


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



Bug#323254: dhcp3-client: dhclient-script should not disturb other protocols on interfaces

2005-08-28 Thread Samuel Thibault
Hi,

Here is an updated patch. Please consider applying it, and from now on
always check that neither of the following commands return anything:

# check for non inet-only configuration
grep ifconfig /etc/dhcp3/dhclient-script | grep -ve '\inet\'

# dhclient should never put an interface down, since other protocols may
# be running on it.
grep ifconfig /etc/dhcp3/dhclient-script | grep down

Regards,
Samuel
--- dhclient-script-orig2005-08-27 09:15:16.0 +0200
+++ dhclient-script 2005-08-28 13:53:35.0 +0200
@@ -129,7 +129,7 @@
 # Bring down alias interface. Its routes will disappear too.
 ifconfig $interface:0- inet 0
 fi
-ifconfig $interface 0 up
+ifconfig $interface inet 0 up
 
 # We need to give the kernel some time to get the interface up.
 sleep 1
@@ -148,7 +148,7 @@
  $old_ip_address != $new_ip_address ]; then
 # IP address changed. Bringing down the interface will delete all 
routes,
 # and clear the ARP cache.
-ifconfig $interface inet 0 down
+ifconfig $interface inet 0
 
 fi
 
@@ -182,7 +182,7 @@
 
 if [ -n $old_ip_address ]; then
 # Shut down interface, which will delete routes and clear arp 
cache.
-ifconfig $interface inet 0 down
+ifconfig $interface inet 0
 fi
 
 if [ -n $alias_ip_address ]; then
@@ -363,7 +363,7 @@
 # Bring down alias interface. Its routes will disappear too.
 ifconfig $interface:0- inet 0
 fi
-ifconfig $interface 0 up
+ifconfig $interface inet 0 up
 
 # We need to give the kernel some time to get the interface up.
 sleep 1
@@ -382,7 +382,7 @@
  $old_ip_address != $new_ip_address ]; then
 # IP address changed. Bringing down the interface will delete all 
routes,
 # and clear the ARP cache.
-ifconfig $interface inet 0 down
+ifconfig $interface inet 0
 
 fi
 
@@ -416,7 +416,7 @@
 
 if [ -n $old_ip_address ]; then
 # Shut down interface, which will delete routes and clear arp 
cache.
-ifconfig $interface inet 0 down
+ifconfig $interface inet 0
 fi
 
 if [ -n $alias_ip_address ]; then
@@ -597,7 +597,7 @@
 # Bring down alias interface. Its routes will disappear too.
 ifconfig $interface:0- inet 0
 fi
-ifconfig $interface 0 up
+ifconfig $interface inet 0 up
 
 # We need to give the kernel some time to get the interface up.
 sleep 1
@@ -616,7 +616,7 @@
  $old_ip_address != $new_ip_address ]; then
 # IP address changed. Bringing down the interface will delete all 
routes,
 # and clear the ARP cache.
-ifconfig $interface inet 0 down
+ifconfig $interface inet 0
 
 fi
 
@@ -650,7 +650,7 @@
 
 if [ -n $old_ip_address ]; then
 # Shut down interface, which will delete routes and clear arp 
cache.
-ifconfig $interface inet 0 down
+ifconfig $interface inet 0
 fi
 
 if [ -n $alias_ip_address ]; then


Bug#324760: another small change

2005-08-28 Thread martin f krafft
Instead of using and requiring  in the conf file, please use [']
and create the result accordingly.  are only really needed when
doing interpolation, it's a good practice to use '' by default.

-- 
 .''`. 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!
 
i wish i hadn't slept all day, it's really lowered my productivity
   -- robert mcqueen


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


Bug#325401: liblablgtk2-ocaml-dev: Possible dependency problem

2005-08-28 Thread Sylvain LE GALL
Hello,

On Sun, Aug 28, 2005 at 01:34:50PM +0200, Thomas Petazzoni wrote:
 Package: liblablgtk2-ocaml-dev
 Severity: normal
 
 
 Hi,
 
 When trying to install liblablgtk2-ocaml-dev, apt-get wants to remove
 libglu1-xorg and x-window-system-core. I find it quite strange. Is it
 normal ?
 
 $ sudo apt-get install liblablgtk2-ocaml-dev
 Reading package lists... Done
 Building dependency tree... Done
 The following extra packages will be installed:
   liblablgl-ocaml-dev xlibmesa-glu xlibmesa-glu-dev
 Suggested packages:
   liblablgtk2-gnome-ocaml-dev
 The following packages will be REMOVED:
   libglu1-xorg x-window-system-core
 The following NEW packages will be installed:
   liblablgl-ocaml-dev liblablgtk2-ocaml-dev xlibmesa-glu
 xlibmesa-glu-dev
 0 upgraded, 4 newly installed, 2 to remove and 3 not upgraded.
 

Use this command:

$ apt-get install libglu1-xorg-dev liblablgtk2-ocaml-dev

It should works, as for me.

Kind regard
Sylvain Le Gall


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



Bug#325408: There are no menu entries for gnome-splashscreen-manager

2005-08-28 Thread Alexandre Touret
Package: gnome-splashscreen-manager
Version: 0.2-1
Severity: minor

It would be nice if there are menu entries for this manager. Actually I have no 
both gnome menu entry and debian menu entry.

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

Versions of packages gnome-splashscreen-manager depends on:
ii  libgconf2-ruby0.12.0-2   GConf 2 bindings for the Ruby lang
ii  libglade2-ruby0.12.0-2   Libglade 2 bindings for the Ruby l
ii  ruby  1.8.2-1An interpreter of object-oriented 

gnome-splashscreen-manager recommends no packages.

-- no debconf information


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



Bug#175553: [zebra] doesn't support interface renaming

2005-08-28 Thread Achilleas Kotsis
I believe this bug has been fixed since 0.99.1-1, so it should be closed with
that version number.

Achilleas Kotsis a.k.a. Achille
-- whois awk?, sed Grep --



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



Bug#321669: enigma: Copyright violation for menu.s3m

2005-08-28 Thread Erich Schubert
Hi,
I'm going to upload a new enigma package soon, since enigma in unstable
is uninstallable now (depending on the old libzipios package, g++
transition to 4.0)

I'd like to resolve this issue with the same upload - what do you
suggest?

I'm cc'ing debian-legal, too. Short version of the situation for
debian-legal:
Enigma contains a music file - menu title song - which I'd consider
non-free with respect to Debian DFSG rules.
Enigma was given the permission to distribute that song in an informal
email.
The author of the song is credited in the manual as
  Andrew Sega   Menu music (Pentagonal Dreams)

I basically see three solutions:
- make an enigma 0.92.1 upload, removing the s3m file
  (eventually making a non-free enigma-music package, but I'm too lazy)
- ask the author of the song if he'd GPL-licence it
- move enigma as-is to non-free

The second would be the nicest, but I'd go for the first for now.

Debian-Legal: I also need your advice for Debian stable.
AFAICT it's non-obvious that the music is not GPL-licenced.
(Well, the file's internal copyright says all rights reserved)
Neither that you can't just take it out and distribute it by itself!

best regards,
Erich Schubert
-- 
erich@(vitavonni.de|debian.org)--GPG Key ID: 4B3A135C(o_
   To understand recursion you first need to understand recursion.   //\
Es ist beschämender seinen Freunden zu mißtrauen als von ihnen   V_/_
getäuscht zu werden. --- François de la Rochefoucauld




Bug#325409: prelude-nids: FTBFS (ppc64): Please update config.guess and config.sub

2005-08-28 Thread Andreas Jochens
Package: prelude-nids
Version: 0.8.6-1
Severity: wishlist
Tags: patch

When building 'prelude-nids' on ppc64/unstable,
I get the following error:


hostinfo   = 
/bin/universe  = 
/usr/bin/arch -k   = 
/bin/arch  = ppc64
/usr/bin/oslevel   = 
/usr/convex/getsysinfo = 

UNAME_MACHINE = ppc64
UNAME_RELEASE = 2.6.12-1-ppc64
UNAME_SYSTEM  = Linux
UNAME_VERSION = #1 SMP Fri Aug 12 15:44:43 UTC 2005
configure: error: can not guess host type; you must specify one
make[3]: *** [libpcap/Makefile] Error 1

With the attached patch 'prelude-nids' can be compiled on ppc64.

Regards
Andreas Jochens

diff -urN ../tmp-orig/prelude-nids-0.8.6/debian/control ./debian/control
--- ../tmp-orig/prelude-nids-0.8.6/debian/control   2005-08-28 
14:39:26.0 +0200
+++ ./debian/control2005-08-28 14:39:08.0 +0200
@@ -2,7 +2,7 @@
 Section: net
 Priority: optional
 Maintainer: Mickael Profeta [EMAIL PROTECTED]
-Build-Depends: debhelper ( 3.0.0), libprelude-dev (= 0.8.7), libssl-dev, 
flex, bison
+Build-Depends: debhelper, autotools-dev, libprelude-dev (= 0.8.7), 
libssl-dev, flex, bison
 Standards-Version: 3.6.1.0
 
 Package: prelude-nids
diff -urN ../tmp-orig/prelude-nids-0.8.6/debian/rules ./debian/rules
--- ../tmp-orig/prelude-nids-0.8.6/debian/rules 2005-08-28 14:39:26.0 
+0200
+++ ./debian/rules  2005-08-28 14:38:50.0 +0200
@@ -5,6 +5,7 @@
 configure: configure-stamp
 configure-stamp:
dh_testdir
+   cp /usr/share/misc/config.{guess,sub} .
 #  ./autogen.sh
./configure --prefix=/usr --mandir=\$${prefix}/share/man 
--bindir=\$${prefix}/sbin --enable-gtk-doc=no --sysconfdir=/etc
touch configure-stamp


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



Bug#324927: 2.8.8-1 works better for me

2005-08-28 Thread Ross Johnson
I've been getting Died at /usr/bin/fetchyahoo line 1245. with version 
2.8.6.  I upgraded to 2.8.8-1 and I don't get any error messages (at 
least not yet).


My cron is

# min   hours   dayOfM  month   dOfWeek usercommand
# Run fetchyahoo every day for each user (no hurry)
36 5* * *   ross/usr/bin/fetchyahoo
19 6* * *   elizabeth   /usr/bin/fetchyahoo

I suggest we change the severity of this bug to important or normal 
so that it can get into testing.  The package is not unusable by 
everyone and it's an improvement for me.  Mike, could you invoke 
fetchyahoo like the above and report back?


Ross


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



Bug#325280: Acknowledgement (munin: Use of uninitialized value in concatenation (...) at /usr/share/perl5/Munin.pm)

2005-08-28 Thread Lucas Bonnet

I patched munin-graph with the patch from Robert Loomans (bug 324605 :
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=324605) and now munin
works fine. I'm no longer flooded by cron in my mails. You can probably
merge this bug with the other, as it appears that the same patch fixes
both behaviors.

Thanks,
-- 
Lucas BONNET


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



Bug#325401: liblablgtk2-ocaml-dev: Possible dependency problem

2005-08-28 Thread Thomas Petazzoni
Hello,

Sylvain LE GALL a écrit :

 $ apt-get install libglu1-xorg-dev liblablgtk2-ocaml-dev
 
 It should works, as for me.

Thanks, it worked. But shouldn't it work correctly without this trick ?

Sincerly,

Thomas
-- 
PETAZZONI Thomas - [EMAIL PROTECTED]
http://thomas.enix.org - Jabber: [EMAIL PROTECTED]
KOS: http://kos.enix.org/ - SOS: http://sos.enix.org
Fingerprint : 0BE1 4CF3 CEA4 AC9D CC6E  1624 F653 CB30 98D3 F7A7



signature.asc
Description: OpenPGP digital signature


Bug#325401: liblablgtk2-ocaml-dev: Possible dependency problem

2005-08-28 Thread Sylvain LE GALL
Hello,

On Sun, Aug 28, 2005 at 02:52:31PM +0200, Thomas Petazzoni wrote:
 Hello,
 
 Sylvain LE GALL a écrit :
 
  $ apt-get install libglu1-xorg-dev liblablgtk2-ocaml-dev
  
  It should works, as for me.
 
 Thanks, it worked. But shouldn't it work correctly without this trick ?
 
 Sincerly,
 

Bug is in labgl, which depend on xlibmesa-gl-dev | libglu-dev. If you
don't have libglu1-xorg-dev, which provides libglu-dev, apt will try to
install xlibmesa-gl-dev or libglu-dev, since libglu-dev is a virtual
package, it install the only real package it knows : xlibmesa-gl-dev
which in turn conflict with libglu1-xorg-dev... 

So the answer to your question: it works exactly as expected, but it is
not enough clever to understand that it should install libglu1-xorg-dev
in place xlibmesa-gl-dev because it is the best solution...

I have filled a bug on lablgl, and propose a solution.

Kind regard
Sylvain Le Gall


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



Bug#325410: drpython: Broken dependency libwxgtk2.5.3-python

2005-08-28 Thread Sven Hoexter
Package: drpython
Version: 3.10.13-1
Severity: normal
Tags: patch

Hi,
now that libwxgtk2.6 and the needed python- packages are in Debian/unstable it
would be nice if you could re-upload the package with the new dependencys.

Here is small diff showing the two things which need to be changed:

diff -Nur drpython-3.10.13-orig/debian/control drpython-3.10.13/debian/control
--- drpython-3.10.13-orig/debian/control2005-08-28 15:09:57.0 
+0200
+++ drpython-3.10.13/debian/control 2005-08-28 15:10:10.0 +0200
@@ -7,7 +7,7 @@

 Package: drpython
 Architecture: all
-Depends: ${python:Depends}, libwxgtk2.5.3-python
+Depends: ${python:Depends}, python-wxgtk2.6, python-wxversion
 Description: simple and customizable editor for the Python language
  DrPython is a clean and simple yet powerful and highly customizable
  editor/environment for developing programs written in Python.
diff -Nur drpython-3.10.13-orig/debian/patches/03_pythonfix.dpatch 
drpython-3.10.13/debian/patches/03_pythonfix.dpatch
--- drpython-3.10.13-orig/debian/patches/03_pythonfix.dpatch2005-08-28 
15:09:57.0 +0200
+++ drpython-3.10.13/debian/patches/03_pythonfix.dpatch 2005-08-28 
15:10:15.0 +0200
@@ -13,7 +13,7 @@
  #franz: stat is not used
  import os.path, sys, os, shutil, re, string, traceback
 +import wxversion
-+wxversion.select('2.5.3-unicode')
++wxversion.select('2.6-unicode')
  import wx, wx.stc
 +sys.path.insert(0, '/usr/share/drpython')
  import drScrolledMessageDialog


Regards,
Sven

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-1) (ignored: 
LC_ALL set to de_DE)

Versions of packages drpython depends on:
ii  python2.3.5-3An interactive high-level object-o
ii  python-wxgtk2.6   2.6.1.2wxWidgets Cross-platform C++ GUI t
ii  python-wxversion  2.6.1.2wxWidgets Cross-platform C++ GUI t

drpython recommends no packages.

-- no debconf information


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



Bug#325411: jmagick: FTBFS: rm: too few arguments

2005-08-28 Thread Kurt Roeckx
Package: jmagick
Version: 6.0.4-0-1
Severity: serious

Hi,

Your package is failing to build with the following error:
dh_clean
find obj -type f -o -type l -print0 | xargs -0 rm
rm: too few arguments
Try `rm --help' for more information.
make: *** [clean] Error 123


obj/magick/ is an empty dir, nothing else in obj/


Kurt



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



Bug#325412: [INTL:it] ntlmaps italian debconf templates translation

2005-08-28 Thread Luca Monducci
Package: ntlmaps
Severity: wishlist
Tags: patch l10n

Please add the italian debconf templates translation (attached).

Thanks,
Luca

ntlmaps.it.po.gz
Description: GNU Zip compressed data


Bug#325413: debconf: Ukrainian translation of templates is not included

2005-08-28 Thread Denis Barbier
Package: debconf
Version: 1.4.58
Severity: minor
Tags: l10n

Hi,

Ukrainian translation has been dropped from 1.4.58, because its
conversion from UTF-8 to KOI8-U fails.  This happens because the
string change introduced some outdated translations (prefixed
by `#~') which cause trouble.  This is strange, maybe the translation
from cdebconf cannot be recoded into KOI8-U?
Anyway you can safely remove these outdated strings from debian/po/uk.po
to fix this bug.

Denis


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



Bug#308995: konqueror: web shortcuts: incorrect encoding

2005-08-28 Thread Jukka Suomela
Package: konqueror
Version: 4:3.4.2-1
Followup-For: Bug #308995

Hi,

Just wanted to inform that the same thing happens with the latest
Konqueror package, version 3.4.2.

Best regards,
Jukka Suomela

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

Versions of packages konqueror depends on:
ii  kcontrol  4:3.4.2-1  control center for KDE
ii  kdebase-kio-plugins   4:3.4.2-1  core I/O slaves for KDE
ii  kdelibs4c24:3.4.2-2  core libraries for all KDE applica
ii  kdesktop  4:3.4.2-1  miscellaneous binaries and files f
ii  kfind 4:3.4.2-1  file-find utility for KDE
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libaudio2 1.7-2  The Network Audio System (NAS). (s
ii  libc6 2.3.5-4GNU C Library: Shared libraries an
ii  libfam0c102 [libfam0] 2.7.0-7client library to control the FAM 
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-6  GCC support library
ii  libice6   6.8.2.dfsg.1-5 Inter-Client Exchange library
ii  libidn11  0.5.18-1   GNU libidn library, implementation
ii  libkonq4  4:3.4.2-1  core libraries for Konqueror
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libqt3-mt 3:3.3.4-7  Qt GUI Library (Threaded runtime v
ii  libsm66.8.2.dfsg.1-5 X Window System Session Management
ii  libstdc++64.0.1-6The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-5 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.8.2.dfsg.1-5 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxinerama1  6.8.2.dfsg.1-5 X Window System multi-head display
ii  libxrandr26.8.2.dfsg.1-5 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  libxt66.8.2.dfsg.1-5 X Toolkit Intrinsics
ii  xlibs 6.8.2.dfsg.1-5 X Window System client libraries m
ii  zlib1g1:1.2.3-3  compression library - runtime

konqueror recommends no packages.

-- no debconf information


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



Bug#325414: RFP: white_dune -- White_dune is a graphical VRML97 editor

2005-08-28 Thread Mari Wang

Package: wnpp
Severity: wishlist

*** Please type your report below this line ***

* Package name: whitedune
  Version : 0.28pl11
  Upstream Author : J. MUFTI Scheurich [EMAIL PROTECTED]
* URL : http://www.csv.ica.uni-stuttgart.de/vrml/dune/
* License : GPL
  Description : White_dune is a graphical VRML97 editor

White_dune is a graphical VRML97 editor, simple (NURBS) 3D modeller
and animation tool in development. It can read VRML97 files, display
and let the user change the scene graph, fields and routes. This can
be used to improve or make VRML97 3D-worlds, animations and
interactions.

The modelling features of white_dune are not strong enough (yet), to
use it alone. It makes sense, to let it work together with a 3D
modelling tool with static VRML97 export (like for example wings3D or
Art Of Illusion).

In difference to most 3D modelling tools the lightning/colouring and
the internal structure of white_dune is based on the VRML97 standard.

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

-- 

Mari Wang


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



Bug#325415: ITP: pida -- Python Integrated Development Application, a Python IDE.

2005-08-28 Thread Jan Luebbe
Package: wnpp
Severity: wishlist
Owner: Jan Luebbe [EMAIL PROTECTED]

* Package name: pida
  Version : 0.2.2
  Upstream Author : Ali Afshar [EMAIL PROTECTED]
* URL : http://pida.berlios.de/
* License : MIT
  Description : Python Integrated Development Application, a Python IDE.

PIDA is the Python Integrated Development Application.
It is an IDE (integrated development environment) written
in Python (http://www.python.org/) and the GTK
(http://www.pygtk.org/) graphical toolkit.

Pida is an IDE, but one that is slightly different from
other IDEs. Rather than attempting to write a set of
development tools  of its own, Pida uses tools that the
developer has available. In this regards Pida can be used as
a framework for putting together your own bespoke IDE.

Although still a young application, Pida can already boast
a huge number of features because of the power of some of
the tools it integrates. For example features such as code completion
and syntax highlighting are well implemented in Pida's integrated
editors far better than any editor built for a commercial IDE.
Pida currently features:
Full code editing (syntax highlighting, code completion, automatic
indenting, block commenting etc) Project management, version control management,
Python debugger and profiler, GTK graphical user interface building and
rapid application design, Pastebin integration.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (300, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.20-021stab028.17.777-smpnosplit
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Bug#325416: d-shlibs: d-devlibdeps fix for librt1-dev

2005-08-28 Thread Max Hofer
Package: d-shlibs
Version: 0.26
Severity: normal

d-devlibdeps generates a developer package librt1-dev which does not
exist. librt.so.1 is part of libc6 (or amd64-libs). So I fixed it by adding

-e 's/librt1-dev//' \

in function overridedevlibdeps.

Regards
Max

-- 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.10-susp
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages d-shlibs depends on:
ii  binutils  2.16.1-2
ii  debianutils 2.14.2

d-shlibs recommends no packages.

-- no debconf information





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



Bug#322352: Fixed the debian/rules to properly remove upstream's debian/ files

2005-08-28 Thread Christoph Haas
As said before the upstream distributes his own debian/ directory. We
tried to remove it in the clean: target. However that wasn't run
always before building the package. So we now moved it to the build:
target. The fixed package will be uploaded to stable-proposed-updates.


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



Bug#325215: squirrelmail: file handle

2005-08-28 Thread Thijs Kinkhorst
retitle 325215 Multiple attachments sometimes breaks due to chunk_split changed 
behaviour
tags 325215 patch
thanks

On Sat, 2005-08-27 at 10:05 +0200, Thijs Kinkhorst wrote:
 On Fri, 2005-08-26 at 18:16 -0300, Ezequiel Larrarte wrote:
  Package: squirrelmail
  Version: 2:1.4.4-6sarge1
  Severity: grave
  Justification: renders package unusable
 
 Please, this is not a grave bug. That in some cases some attachments
 don't work doesn't render the package unusable.

Ezequiel Larrarte wrote to me in private mail:
 based on debian reportbug:
 grave
 makes the package in question unusable by most or all
 users,  
or causes data loss, or introduces a security hole allowing
 access to the accounts of users who use the package.
 
 My attachment blows off == data loss! so .. It 's grave for me!!!

Please followup to the bug itself aswell, so all information is properly
recorded.

I'll check with my co-maintainer and possibly with the release manager
to see whether they think this issue should be fixed in stable. In any
case, we can't upload the new squirrelmail version to stable, we would
have to upload a new package containing just this fix. The updating
policy for stable is very strict (and that makes stable as stable as it
is) so it's unsure whether it will be accepted.

I've attached the patch that is used upstream for three months, and in
Debian testing/unstable without problems. The issue is that PHP changed
the behaviour of chunk_split in version 4.3.11, and appearently Debian
backported this also to their PHP 4.3.10 version (strange...).

I'll get back to you once I know whether this will be uploaded to stable
or not.

regards,
Thijs
diff -u -w -r1.18.2.21 -r1.18.2.22
--- Deliver.class.php	22 May 2005 08:30:30 -	1.18.2.21
+++ Deliver.class.php	3 Jun 2005 19:51:11 -	1.18.2.22
@@ -179,6 +179,11 @@
 $encoded = '';
 while ($tmp = fread($file, 570)) {
$body_part = chunk_split(base64_encode($tmp));
+// Up to 4.3.10 chunk_split always appends a newline, 
+// while in 4.3.11 it doesn't if the string to split 
+// is shorter than the chunk length.
+if( substr($body_part, -1 , 1 ) != \n )
+$body_part .= \n;
 $length += $this-clean_crlf($body_part);
 if ($stream) {
 $this-writeToStream($stream, $body_part);


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


Bug#199530: Please test in 3.01

2005-08-28 Thread Hamish Moffatt
On Sun, Aug 28, 2005 at 03:51:57PM +0200, Thomas Nemeth wrote:
 | Could you please test with this version?
 
   It's not possible by now :
 
  LC_ALL=C sudo apt-get install xpdf-reader/unstable
[..]
 The following packages have unmet dependencies:
   xpdf-reader: Depends: libc6 (= 2.3.5-1) but 2.3.2.ds1-22 is to be installed
Depends: xpdf-common (= 3.01-1) but 3.00-13 is to be installed
 E: Broken packages
 
   I'm using testing by now and since libc6 isn't upgraded too,
   it seems that I won't be able to upgrade and test xpdf 3.01...

Ah. You will have to wait until libc6 and xpdf make it to testing.

   Anyway, I actually use xpdf 3.00-13 and don't have any problems
   with it.

Thanks, I have reported this to the bug tracker.

Regards
Hamish
-- 
Hamish Moffatt VK3SB [EMAIL PROTECTED] [EMAIL PROTECTED]


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



  1   2   3   >