Bug#378510: googleearth-package: missing dependencies

2006-07-17 Thread Bernd Zeimetz
Hi,
 The deps are generated by dpkg-shlibdeps, so if it's picking up those 
 versions, it's because dpkg thinks that's what it should use. Chances are 
 that the system where the binary deb was built had those experimental 
 libraries installed.

   
no.
 I recommend building the googleearth package on a clean test or unstable 
 system without any mixed libraries from other dists, or, alternately, just 
 rebuilding the googleearth package on the exact system you are going to 
 install it on.
   
that's what I did. I've build the binary package a minute before trying
to install it on the same system. While building it I've got a few
warnings as mentioned in #378504. Everything else worked well.

Best regards,

Bernd


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



Bug#378554: [arm/armeb] Please enable CONFIG_USB_EHCI_SPLIT_ISO on NSLU2

2006-07-17 Thread Martin Michlmayr
tags 378554 + pending
thanks

* [EMAIL PROTECTED] [EMAIL PROTECTED] [2006-07-17 13:34]:
 Playing audio to USB 1.1 devices through a USB 2.0 hub (I need to
 connect the audio device to a powered hub to avoid whining noise)
 requires CONFIG_USB_EHCI_SPLIT_ISO.

Done in SVN.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#378566: bugs.debian.org: Using Options to sort/redisplay bug reports eliminates usertag= URL part

2006-07-17 Thread Sven Mueller
Package: bugs.debian.org
Severity: important

Usertags are a major feature of the BTS today. However, I tried
rearranging/sorting the bugs with usertags for the
initscripts-ng-devel@lists.alioth.debian.org address at [1] Using the
Options available at the bottom of [1] and hitting Reload page. However,
while the URL [2] now contains the usertags for that email address, since
those are usertags, it would need the email address those tags are
associated with to find any bug with those tags, which isn't passed in
the URL anymore.

[1]http://bugs.debian.org/cgi-bin/[EMAIL PROTECTED]
[2]http://bugs.debian.org/cgi-bin/pkgreport.cgi?tag=missing-dependency,incorrect-boot-order,incorrect-dependency

Appending [EMAIL PROTECTED] to
[2] will reveal all bugs again.

Regards,
Sven

PS: If you feel important isn't the right Severity, I don't object
downgrading it. But since I use usertags a lot and usually don't want
the default sorting/filtering of bug lists, for me this is important.


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



Bug#367661: [PATCH] initramfs support

2006-07-17 Thread Jonathan McDowell
I've recently had call to use dmraid for my root disk and as such needed
this support. I've attached the patch I took from Ubuntu and applied to
the Debian package, which makes it work fine for me. Please consider
applying this (and also fixing #367796 - I found moving dmraid to 04
from 03 did the trick).

Thanks,
J.

-- 
jid: [EMAIL PROTECTED]
What the f**k was that? -- Mayor of
Hiroshima
diff -ruN dmraid-0.9.9+1.0.0.rc9.orig/debian/changelog 
dmraid-0.9.9+1.0.0.rc9/debian/changelog
--- dmraid-0.9.9+1.0.0.rc9.orig/debian/changelog2006-07-17 
15:32:52.0 +0100
+++ dmraid-0.9.9+1.0.0.rc9/debian/changelog 2006-07-16 19:44:03.0 
+0100
@@ -1,3 +1,11 @@
+dmraid (0.9.9+1.0.0.rc9-3.1) dapper; urgency=low
+
+  * Include the initramfs hook and script contributed by Tormod Volden,
+so dmraid can integrate effortlessly (closes: launchpad.net/22107)
+  * Call update-initramfs in our postinst, if we have it on the system.
+
+ -- Adam Conrad [EMAIL PROTECTED]  Wed, 17 May 2006 19:16:59 +1000
+
 dmraid (0.9.9+1.0.0.rc9-3) unstable; urgency=low
 
   * add dmraid-udeb by popular request, looking forward for d-i integration
diff -ruN dmraid-0.9.9+1.0.0.rc9.orig/debian/dmraid.initramfs-hook 
dmraid-0.9.9+1.0.0.rc9/debian/dmraid.initramfs-hook
--- dmraid-0.9.9+1.0.0.rc9.orig/debian/dmraid.initramfs-hook1970-01-01 
01:00:00.0 +0100
+++ dmraid-0.9.9+1.0.0.rc9/debian/dmraid.initramfs-hook 2006-07-16 
19:43:15.0 +0100
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+PREREQ=
+
+prereqs()
+{
+   echo $PREREQ
+}
+
+case $1 in
+# get pre-requisites
+prereqs)
+   prereqs
+   exit 0
+   ;;
+esac
+
+. /usr/share/initramfs-tools/hook-functions
+
+if [ -x /sbin/dmraid ]; then
+   manual_add_modules dm-mod
+   manual_add_modules dm-mirror
+   copy_exec /sbin/dmraid sbin
+fi
+
+exit 0
diff -ruN dmraid-0.9.9+1.0.0.rc9.orig/debian/dmraid.initramfs-local 
dmraid-0.9.9+1.0.0.rc9/debian/dmraid.initramfs-local
--- dmraid-0.9.9+1.0.0.rc9.orig/debian/dmraid.initramfs-local   1970-01-01 
01:00:00.0 +0100
+++ dmraid-0.9.9+1.0.0.rc9/debian/dmraid.initramfs-local2006-07-17 
15:31:00.0 +0100
@@ -0,0 +1,22 @@
+#!/bin/sh
+
+PREREQ=udev
+
+prereqs()
+{
+echo $PREREQ
+}
+
+case $1 in
+# get pre-requisites
+prereqs)
+prereqs
+exit 0
+;;
+esac
+
+modprobe dm-mod
+modprobe dm-mirror
+
+[ -x /sbin/dmraid ]  /sbin/dmraid -ay
+
diff -ruN dmraid-0.9.9+1.0.0.rc9.orig/debian/dmraid.postinst 
dmraid-0.9.9+1.0.0.rc9/debian/dmraid.postinst
--- dmraid-0.9.9+1.0.0.rc9.orig/debian/dmraid.postinst  1970-01-01 
01:00:00.0 +0100
+++ dmraid-0.9.9+1.0.0.rc9/debian/dmraid.postinst   2006-07-16 
19:43:15.0 +0100
@@ -0,0 +1,13 @@
+#! /bin/sh
+
+set -e
+
+#DEBHELPER#
+
+case $1 in
+  configure)
+if [ -x /usr/sbin/update-initramfs ]; then
+  /usr/sbin/update-initramfs -u
+fi
+  ;;
+esac
diff -ruN dmraid-0.9.9+1.0.0.rc9.orig/debian/rules 
dmraid-0.9.9+1.0.0.rc9/debian/rules
--- dmraid-0.9.9+1.0.0.rc9.orig/debian/rules2006-07-17 15:32:52.0 
+0100
+++ dmraid-0.9.9+1.0.0.rc9/debian/rules 2006-07-16 19:43:15.0 +0100
@@ -73,6 +73,11 @@
 
cd ${buildroot}/standard  make DESTDIR=../../../dmraid install  rm 
-rf debian/dmraid/lib
 
+   install -m 755 -D debian/dmraid.initramfs-hook \
+   debian/dmraid/usr/share/initramfs-tools/hooks/dmraid
+   install -m 755 -D debian/dmraid.initramfs-local \
+   debian/dmraid/usr/share/initramfs-tools/scripts/local-top/dmraid
+
dh_link
dh_installdocs ${version}/{CREDITS,KNOWN_BUGS,README,TODO}
dh_installchangelogs ${version}/CHANGELOG


Bug#378572: gajim doesn't start with cairo related error

2006-07-17 Thread Reinhard Tartler
Package: gajim
Version: 0.10.1-2
Severity: important

gajim fails to start for me with the following error message:

 LC_MESSAGES=C gajim
Session Management support not available (missing gnome.ui module)
Error: Cairo does not yet support the requested image format:
Depth: 32
Alpha mask: 0x
Red   mask: 0x00ff
Blue  mask: 0xff00
Green mask: 0x00ff
Please file an enhacement request (quoting the above) at:
http://bugs.freedesktop.org/enter_bug.cgi?product=cairo
python2.4:
/home/dajobe/dev/debian/cairo/libcairo-1.2.0/src/cairo-image-surface.c:144:
_cairo_format_from_pixman_format: Assertion `NOT_REACHED' failed.
zsh: abort  LC_MESSAGES=C gajim

Please tell me what additional information you need.

regards,
Reinhard


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.6-simigern-64bit
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages gajim depends on:
ii  libaspell15  0.60.4-4GNU Aspell spell-checker runtime l
ii  libatk1.0-0  1.11.4-2The ATK accessibility toolkit
ii  libc62.3.6-15GNU C Library: Shared libraries
hi  libcairo21.2.0-2 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.2-1The GLib library of C routines
ii  libgtk2.0-0  2.8.18-1The GTK+ graphical user interface 
ii  libgtkspell0 2.0.10-3+b1 a spell-checking addon for GTK's T
ii  libpango1.0-01.12.3-1Layout and rendering of internatio
ii  libx11-6 2:1.0.0-7   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  python-glade22.8.6-3 GTK+ bindings: Glade support
ii  python-gtk2  2.8.6-3 Python bindings for the GTK+ widge
ii  python-pysqlite2 2.3.2-1 python interface to SQLite 3

Versions of packages gajim recommends:
ii  dnsutils  1:9.3.2-2  Clients provided with BIND
ii  notification-daemon   0.3.4-4+b1 a daemon that displays passive pop
ii  python2.4-dbus0.62-4 simple interprocess messaging syst

-- no debconf information


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



Bug#378574: zsnes FTBFS on sid

2006-07-17 Thread Lucas Nussbaum
Package: zsnes
Version: 1.420-1
Severity: serious

Hi,

When building zsnes 1.420-1 with pbuilder (using sid as of 2006-07-17) :

[...]
g++  -pipe -I. -Wall -I/usr/local/include -I/usr/include -D__LINUX__
-I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -O3 -ffast-math
-fomit-frame-pointer -fexpensive-optimizations -s -march=i486 -o
jma/lzma.o -c jma/lzma.cpp
g++  -pipe -I. -Wall -I/usr/local/include -I/usr/include -D__LINUX__
-I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -O3 -ffast-math
-fomit-frame-pointer -fexpensive-optimizations -s -march=i486 -o
jma/lzmadec.o -c jma/lzmadec.cpp
g++  -pipe -I. -Wall -I/usr/local/include -I/usr/include -D__LINUX__
-I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -O3 -ffast-math
-fomit-frame-pointer -fexpensive-optimizations -s -march=i486 -o
jma/winout.o -c jma/winout.cpp
g++  -pipe -I. -Wall -I/usr/local/include -I/usr/include -D__LINUX__
-I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -O3 -ffast-math
-fomit-frame-pointer -fexpensive-optimizations -s -march=i486 -o
jma/zsnesjma.o -c jma/zsnesjma.cpp
g++ -o zsnes chips/sfxproc.o chips/fxemu2.o chips/dsp1proc.o
chips/fxemu2b.o chips/fxemu2c.o chips/fxtable.o chips/sa1proc.o
chips/sa1regs.o chips/dsp1emu.o chips/st10proc.o chips/seta10.o
chips/dsp2proc.o chips/sdd1emu.o cpu/addrni.o cpu/dma.o cpu/dsp.o
cpu/dspproc.o cpu/execute.o cpu/executec.o cpu/irq.o cpu/memory.o
cpu/spc700.o cpu/stable.o cpu/table.o cpu/tableb.o cpu/tablec.o
linux/copyvwin.o linux/sdlintrf.o linux/sdllink.o linux/sw_draw.o
linux/zloaderw.o linux/ztcp.o linux/zipxw.o linux/zfilew.o dos/debug.o
dos/joy.o dos/modemrtn.o dos/vesa2.o dos/initvid.o dos/sw.o dos/gppro.o
dos/vesa12.o gui/gui.o gui/menu.o video/makev16b.o video/makev16t.o
video/makevid.o video/mode716.o video/mode716b.o video/mode716d.o
video/mode716e.o video/mode716t.o video/mode7.o video/mode7ext.o
video/mv16tms.o video/newg162.o video/newgfx16.o video/newgfx2.o
video/newgfx.o video/m716text.o video/2xsaiw.o video/procvid.o
video/sw_draw.o video/hq2x16.o video/hq2x32.o video/hq3x16.o
video/hq3x32.o video/hq4x16.o video/hq4x32.o cfgload.o endmem.o init.o
initc.o uic.o patch.o ui.o vcache.o version.o zip/unzip.o zip/zpng.o
effects/burn.o effects/water.o effects/smoke.o jma/7zlzma.o jma/crc32.o
jma/iiostrm.o jma/inbyte.o jma/jma.o jma/lzma.o jma/lzmadec.o
jma/winout.o jma/zsnesjma.o  -pipe -I. -Wall -I/usr/local/include
-I/usr/include -D__LINUX__  -I/usr/include/SDL -D_GNU_SOURCE=1
-D_REENTRANT  -O3 -ffast-math -fomit-frame-pointer
-fexpensive-optimizations -s -march=i486  -L/usr/local/lib -L/usr/lib
-lz -L/usr/lib -lSDL -lpthread  -lpng -lm -L
g++: argument to '-L' missing

make[1]: *** [zsnes] Error 1
make[1]: Leaving directory `/tmp/buildd/zsnes-1.420/src'
make: *** [build-stamp] Error 2

Thank you,
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


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



Bug#378568: ITP: courieruserinfo -- Retrieve courier user account information

2006-07-17 Thread Charles Fry
Package: wnpp
Severity: wishlist
Owner: Charles Fry [EMAIL PROTECTED]


* Package name: courieruserinfo
  Version : 1.1.1
  Upstream Author : Andrew St. Jean [EMAIL PROTECTED]
* URL : http://www.arda.homeunix.net/store/
* License : GPL
  Description : Retrieve courier user account information

 Courieruserinfo works with the Courier mail server user authentication
 mechanism to allow user account information to be retrieved. The specific
 types of information which can be retrieved are: uid, home directory, name,
 address, mail directory, quota, and options.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (90, 'testing'), (80, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-386
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#348638: Part of the issue corrected after converting database and collations to UTF-8

2006-07-17 Thread Björn Wiberg

Hello!

We earlier had only $Self-{DefaultCharset} = 'utf-8'; but a default of 
latin1 for the MySQL database, and the OTRS database was created using 
latin1, and hence all tables had collation latin1.


We changed the default character set of the database to UTF-8 (for the 
future) and changed the collation of every single OTRS table to 
utf8_general_ci.


This solved the problem of Swedish characters not showing correctly in the 
Statistics graphs.


However, exporting as a comma separated value (CSV) file still yields the 
Swedish characters in iso-8859-1, but that is a minor issue.


Best regards,
Björn Wiberg
Uppsala University
IT Support Department

Bug#378373: haxe - FTBFS: ocamlopt: command not found

2006-07-17 Thread Samuel Mimram
Hi,

On Sun, Jul 16, 2006 at 12:27:27PM +0200, Jens Peter Secher wrote:
 Maybe you can help me out with the build failure of haxe on s390.
 
  Automatic build of haxe_20060715-1 on lxdebian.bfinv.de by sbuild/s390 85
  [...]
  ocamlc -c enum.mli bitSet.mli dynArray.mli extArray.mli extHashtbl.mli 
  extList.mli extString.mli global.mli IO.mli option.mli pMap.mli std.mli 
  uChar.mli uTF8.mli base64.mli unzip.mli refList.mli optParse.mli dllist.mli
  ocamlopt -c enum.ml
  sh: ocamlopt: command not found
  Exit Code 127 - Stopped
  Error while running ocaml install.ml -nodoc -d .. -n
  make: *** [build-stamp] Error 1
  **
  Build finished at 20060715-1322
  FAILED [dpkg-buildpackage died]
 
 According to the build log, ocaml-nox version 3.09.2-5 is being
 installed and on my i386 system the ocamlopt binary is in that very
 package:
 
 [EMAIL PROTECTED]:~$ apt-file search ocamlopt
 ocaml-native-compilers: usr/bin/ocamlopt.opt
 ocaml-nox: usr/bin/ocamlopt
 ocaml-nox: usr/share/man/man1/ocamlopt.1.gz
 ocaml-nox: usr/share/man/man1/ocamlopt.opt.1.gz
 
 Same FTBFS problem happens on arm, hppa, and mips, but I am having
 trouble loging into such Debian machines after the breakin.  When
 things settle down I will try to investigate myself.

ocamlopt, the native ocaml compiler is not available on every
architecture. Where it is not available, the bytecode compiler (ocamlc)
should be used instead. All this is explained in ocaml's policy[1].

Apparently, what you need to do is to change the lines 24 and 25 of install.ml
to:

let bytecode = true
let native = false

on architectures where /usr/bin/ocamlopt cannot be found.

Freel free to ask if you need some more help on this issue.

Cheers,

Samuel.

[1] /usr/share/doc/ocaml/ocaml_packaging_policy-html/index.html


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



Bug#378570: Inability to quote ${...} in .pc files

2006-07-17 Thread Robert Lupton

Package: pkg-config
Version: 1.20

Quoting of variables in .pc files doesn't work as advertised in the man
page:
   Note that variable references are written ${foo};
   you can escape literal ${ as $${.

In fact, $$ is used as an escape for % (see parse.c) and there appears
to be no way to pass a ${foo} unscathed through pkg-config.




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



Bug#378565: openldap2.3: [INTL:ja] updated Japanese debconf translation

2006-07-17 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: openldap2.3
Version: 2.3.24-2
Severity: wishlist
Tags: l10n patch

Hi,

I updated Japanese translation of debconf messages (ja.po).
Please apply this.

Thanks,
- -- 
Kenshi Muto
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEYEARECAAYFAkS7k0kACgkQQKW+7XLQPLGvAgCbBdAr+WwDry33twDaDfh75RIH
8MwAoIFFyE8m7mUA+qPAiFb6Kw+sDIIw
=h9Ma
-END PGP SIGNATURE-


ja.po.gz
Description: Binary data


Bug#378567: python-zeroc-ice: IcePy.so symlink broken

2006-07-17 Thread David Villa
Package: python-zeroc-ice
Severity: normal

The symlink
/usr/lib/python-support/python-zeroc-ice/python2.3/IcePy.so is broken.
It must link to /usr/share/python-support/python-zeroc-ice/IcePy.so.30

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


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



Bug#314737: snoopy: Snoopy's logged commands are truncated

2006-07-17 Thread Adrian Bridgett
each argument is logged to a maximum of MAX which is definted in
snoopy.h as 32.  Increasing this to (say), 128 would help.  

As the code warns, undefining MAX will compile the code such that it
logs all commands in full, but is slower. 

Adrian


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



Bug#378571: courier-authdaemon: socket directory should have 750 permissions

2006-07-17 Thread Charles Fry
Package: courier-authdaemon
Version: 0.58-3
Severity: critical
Tags: security
Justification: root security hole

Hi,

The current courier-authdaemon package sets 755 permissions on the
directory /var/run/courier/authdaemon which allows non-root users to
connect to the authentication daemon. The upstream package sets the
permissions to 750, preventing access to the authdaemon socket by
non-root users not in the daemon group.

I am reporting this as critical because it allows access to root
(or another privileged system account), or data normally accessible only
by such accounts. The courier authdaemon was designed to be accessible
only be root or members of the daemon group. It was not architected for
global user access.

The current permissions allow any user access to user information about
courier mail accounts, including plaintext passwords if they are stored
in the system. It also allows them to change passwords if they can guess
the old password, and as far as I can tell there is no throtle to
prevent dictionary attacks on mail user passwords (hence the necessity
of restricted access).

Charles

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

Versions of packages courier-authdaemon depends on:
ii  courier-authlib   0.58-3 Courier authentication library

courier-authdaemon recommends no packages.

-- no debconf information


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



Bug#378356: [m68k] Please move from gcc-3.4 to gcc-4.1

2006-07-17 Thread Laurent Fousse
Hello,

* Stephen R Marenka [2006-07-15]:
 I had occasion to rebuild part of the gcc toolchain by hand to workaround 
 a gcc bug and I noticed that mpfr is still using gcc-3.4. I rebuilt it using
 gcc-4.1 -O0 and it passed all of its tests.

Good.

 Looking at your bug reports I gather that's all you really expect on m68k 
 anyway, so I uploaded the result.
 
 So please drop gcc-3.4 for m68k on your next release.

Did you try without -O0? It's not fair to say it's all I expect on
m68k, it's really that's it's all I could get with, let's say, a very
varying level of support for this architecture from gcc. I'll drop the
dependancy on gcc-3.4. If you have the opportunity to test without the
-O0, please report as well (apparently the lock down for developer
machines is still in effect).

Thanks,

Laurent.


signature.asc
Description: Digital signature


Bug#378569: ITP: courierpasswd -- Authenticate courier passwords with checkpassword interface

2006-07-17 Thread Charles Fry
Package: wnpp
Severity: wishlist
Owner: Charles Fry [EMAIL PROTECTED]


* Package name: courierpasswd
  Version : 1.1.1
  Upstream Author : Andrew St. Jean [EMAIL PROTECTED]
* URL : http://www.arda.homeunix.net/store/
* License : GPL
  Description : Authenticate courier passwords with checkpassword interface

 Courierpasswd is a user authentication and password changing utility that
 works with the Courier mail server user authentication mechanism. It's
 interface follows that of checkpassword. It can be used, for example, to
 authenticate users who are sending email through a non-courier MTA.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (90, 'testing'), (80, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-386
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#378081: Cannot read V_BIOS memory allocation error

2006-07-17 Thread Milan Zamazal
I had the same problem.  I've finally solved it (I hope) by applying the
patch

  https://bugzilla.novell.com/attachment.cgi?id=86821

from

  https://bugzilla.novell.com/show_bug.cgi?id=171453x=0y=0

to xserver-xorg-core_1.0.2-9 (it required some manual adjustments).  I
don't know yet how stable the solution is but the X server at least
starts and seems to work on the first glance, including 3D acceleration,
on my secondary graphics card and the Cannot read V_BIOS error message
is gone.  My Linux kernel version is 2.6.17-3.

Regards,

Milan Zamazal

-- 
http://www.zamazal.org


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



Bug#378573: tightvncserver: 'vncserver' script should probably use /etc/X11/Xsession as the default client script

2006-07-17 Thread Nikita V. Youshchenko
Package: tightvncserver
Version: 1.2.9-15
Severity: normal

Currently, 'vncserver' script starts some custom session.
This makes some services (like ssh agent) unavailable, does not load
local customization that sysadmin has put into /etc/Xsession.d/, etc

Why not using /etc/X11/Xsession as default session script?


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (620, 'testing'), (600, 'unstable'), (550, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.16-1-k7-smp
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages tightvncserver depends on:
ii  dpkg  1.13.21package maintenance system for Deb
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libx11-6  2:1.0.0-7  X11 client-side library
ii  libxext6  1:1.0.0-4  X11 miscellaneous extension librar
ii  perl  5.8.8-4Larry Wall's Practical Extraction 
ii  vnc-common3.3.7-12   Virtual network computing server s
ii  x11-common1:7.0.22   X Window System (X.Org) infrastruc
ii  xbase-clients 1:7.1.ds-2 miscellaneous X clients
ii  zlib1g1:1.2.3-11 compression library - runtime

-- no debconf information


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



Bug#160419: [Xiph] #444: [PATCH] ogg123: ignores pipe write errors

2006-07-17 Thread Xiph
#444: [PATCH] ogg123: ignores pipe write errors
---+
 Reporter:  [EMAIL PROTECTED] |Owner:  [EMAIL PROTECTED]
 Type:  defect |   Status:  new 
 Priority:  P2 |Milestone:  
Component:  Vorbis Tools - ogg123  |  Version:  1.0 
 Severity:  normal |   Resolution:  
 Keywords: |  
---+
Changes (by anonymous):

  * summary:  ogg123: ignores pipe write errors = [PATCH] ogg123: ignores
  pipe write errors
  * type:  = defect

-- 
Ticket URL: http://trac.xiph.org/ticket/444
Xiph http://xiph.org/
building a new era of Open multimedia

Bug#378541: 0day root exploit available, please updates kernel packages

2006-07-17 Thread Martin Michlmayr
* Jan Gerle [EMAIL PROTECTED] [2006-07-17 10:30]:
 0day root exploit for kernel 2.6.17.4 available, bug is fixed in 2.6.17.5 -
 please update Debian packages

This has been fixed in today's upload.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#377808: Re : uim can cause crash of X

2006-07-17 Thread Jan Willem Stumpel
Etsushi Kato wrote:

 Hmm...  It it known that --async option has a side effect (and
 also SCIM's x11 has) in inputting characters into Tck/Tk 
 widget.

This is true, unfortunately; I installed tkpaint and no input was
possible. In fact X froze. I had to go to the console to kill
tkpaint. Tcl/tk version is 8.4.12. Without --async, tkpaint works.

 And I think our default behavior (not using --async) is 
 suitable for old applications like xfig and tgif.

xfig works 'more or less all right' with xfig -international both
with and without --async. It never works really well, of course;
this old program has no idea of UTF-8, ttf fonts, etc.

 [..] Yes, I can reproduce it.  But the bug is very difficult to
 describe and solve. [..] This is why we recommend to abandon 
 XIM.

 By the way, you seem to like using XIM instead of gtk+ 
 immodule because of the compose sequences in X11.

 Two reasons:

 1 - the compose sequences. [..] 
 2 - xim always works. [..]

 I see. For 1, I've implemented X11's equivalent compose 
 mechanism in uim-xim, so it should work as if it doesn't exist
 :).

Yes; uim-xim apparently uses the actual X compose mechanism (if
that is the right term), including the user's ~/.XCompose file. It
seems SCIM has it own internal version of the Compose file. So
with SCIM, the user's customisations do not work (for instance
things I like to have, such as Compose .- - …, Compose /\ - ∧,
Compose \/ - ∨). But they work with uim.

Mozilla and Thunderbird (and other GTK programs) seem to have
their own 'internal' compose table, which is much smaller than the
X Compose table. Some compose sequences work (like Compose ss -
ß), but more unusual ones do not (like Compose Uu - ŭ, which is
an easy test case). This is if you use GTK_IM_MODULE=uim. With
GTK_IM_MODULE=xim, Mozilla handles all Compose sequences.
Unfortunately Mozilla  Co (unlike 'normal' GTK programs like
Bluefish) do not offer an easy way to change between the xim and
uim input methods.

 Also I as noted in previous mail, please test uim's Latin IM 
 with uim immodule [..]

The 'Latin' IM can indeed do some things which Mozilla cannot do
by itself, like ŭ. But it still does not offer all the
possibilities of the full X Compose file; only Latin combinations,
e.g. no accented Greek letters (such as these nice things with
three accents, like ᾇ). IMHO it would be a waste to duplicate them
in uim, because they are already a standard feature in X. If you
ask me, the 'Latin' IM can be removed completely.

 For 2, That's true. [..] So, just set GTK_IM_MODULE=uim and 
 QT_IM_MODULE=uim environmental variable.  And for the rest of 
 traditional applications, just run uim-xim at startup of X and 
 set [EMAIL PROTECTED]  With this setting, you can use uim 
 everywhere. It not so complex.

Yes, this is completely true, thanks. Ι had to install uim-qt (not
default in Debian), but then I could indeed use uim 'everywhere',
also with GTK_IM_MODULE=uim and QT_IM_MODULE=uim. But then I had
the problem with Compose in Mozilla.

So now we have three choices:

xim - may crash Mozilla and X when used in URL field
   (because of the automatic 'history' drop-down
   box?).
xim --async - crashes Tcl/tk apps with input fields (until
   version 8.4.14?).
uim - no complete compose mechanism in Mozilla (not even
   with uim/Latin). I think this is pretty serious
   because many people use Mozilla/Thunderbird as
   mail clients. Mail is often very international..

The easiest, apparently, is to wait for Tcl 8.4.14. But for a
fundamental solution, I would say that xim handling in Mozilla
(or libX11?) should be fixed. Something that works across the
whole system is always to be preferred. That way, users do not get
surprises. This is just a non-programmer's opinion of course..

Regards, Jan
http://www.jw-stumpel.nl/stestu.html






Bug#378379: ITP: jlj -- a command-line livejournal client

2006-07-17 Thread Arnaud Vandyck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Michael Stevens wrote:
 * Package name: jlj
   Version : 2.12
   Upstream Author : [EMAIL PROTECTED]
 * URL : http://patsy.cis.rit.edu/Software/perl/#jlj
 * License : Freeware
   Description : a command-line livejournal client

This is not a valide license. Can you ask upstream to add a LICENSE file
in the tarball... a real one.

He can choose GPL, LGPL, BSD, CC, etc... there are a lot of free license
 for Debian, but Freeware is not really in our vocabulary ;-)

Freeware != Free Software

Thanks for your help in Debian,

- --
  .''`.
 : :' :rnaud
 `. `'
   `-
Java Trap: http://www.gnu.org/philosophy/java-trap.html
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEu5XW4vzFZu62tMIRAhDrAKCD1k5xNczVf3IoNeH8Zqs2YM57ywCfaOSd
Qp2ZsEt/NDaoVjlHg36l76w=
=6WsS
-END PGP SIGNATURE-


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



Bug#378504: Warnings by make-googleearth-package

2006-07-17 Thread Wesley J. Landaker
severity 378504 wishlist
thanks

On Sunday 16 July 2006 15:37, Uwe Kappe wrote:
 today I tried to make a googleearth-package. I got several warnings:

 dpkg-shlibdeps: warning: format of `NEEDED ./libcomponent.so' not
 recognized dpkg-shlibdeps: warning: format of `NEEDED ./libfusion.so' not
 recognized dpkg-shlibdeps: warning: format of `NEEDED ./libgeobase.so'
 not recognized dpkg-shlibdeps: warning: format of `NEEDED ./libmath.so'
 not recognized dpkg-shlibdeps: warning: format of `NEEDED
[...]
 dpkg-shlibdeps: warning: unable to find dependency information for shared
 library libtiff (soname 3, path libtiff.so.3, dependency field Depends)

These are all normal, as the googleearth binary has a bunch of included 
shared libraries that can't be handled by dpkg-shlibdeps correctly. They 
are harmless however. The best I could do is grep -v them out, but I'm not 
sure it's worth it.

Maybe adding a --quiet mode to the whole make-googleearth-package process 
would be helpful, though.

 After this I get the info Success!. I can install the package and I can
 start googleearth. But the graphical part looks scrambled.

If the graphical part looks scrambled, that could have something to do with 
your video drivers or something else, but certainly doesn't have to do with 
the dpkg warnings. Unfortunately, since it's a proprietary, closed-source 
program, there probably won't be anything I can do about bugs in the 
program itself. =(

-- 
Wesley J. Landaker [EMAIL PROTECTED] xmpp:[EMAIL PROTECTED]
OpenPGP FP: 4135 2A3B 4726 ACC5 9094  0097 F0A9 8A4C 4CD6 E3D2


pgpFJwqcZybfP.pgp
Description: PGP signature


Bug#359532: diff for 1.03-8.1 NMU

2006-07-17 Thread Amaya
Package: lx-gdb
Version: 1.03-8
Severity: normal
Tags: patch

Hi,

Attached is the diff for my lx-gdb 1.03-8.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u lx-gdb-1.03/debian/changelog lx-gdb-1.03/debian/changelog
--- lx-gdb-1.03/debian/changelog
+++ lx-gdb-1.03/debian/changelog
@@ -1,3 +1,10 @@
+lx-gdb (1.03-8.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359532).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 16:57:47 +0200
+
 lx-gdb (1.03-8) unstable; urgency=low
 
   * debian/control: add build-depends.
@@ -18,7 +25,7 @@
 
  -- Mark W. Eichin [EMAIL PROTECTED]  Sun, 18 Mar 2001 16:03:04 -0500
 
-lx-gdb (1.03-5) unstable; urgency=low, closes=80914
+lx-gdb (1.03-5) unstable; urgency=low
 
   * debian/rules: use dpkg-gencontrol -isp.  Move MANDIR and DOCDIR.  Use
 debstd.
@@ -26,7 +33,7 @@
 
  -- Mark W. Eichin [EMAIL PROTECTED]  Sat, 17 Mar 2001 19:57:44 -0500
 
-lx-gdb (1.03-4) unstable; urgency=low, closes=22785
+lx-gdb (1.03-4) unstable; urgency=low
 
   * debian/control, debian/changelog, New maintainer.
   * debian/control: Fix depends. [#22785]  Also make Priority part of
only in patch2:
unchanged:
--- lx-gdb-1.03.orig/debian/postinst
+++ lx-gdb-1.03/debian/postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/lx-gdb -a -d /usr/share/doc/lx-gdb ]; 
then
+rm -f /usr/doc/lx-gdb
+fi
+fi
+
+#DEBHELPER#


Bug#183963: how are you today?

2006-07-17 Thread Robby
Dob not ignore me please,
I found your email somewhere and now decidead to write you.
I am coming to your place in few weeks and thought we 
can meet each other. Let me know if you do not mind.
I am a nice pretty girlb. Don't areply to this email. 
Email me bdireclty at [EMAIL PROTECTED]




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



Bug#378575: Typo in /etc/init.d/makedev: \provies\ instead of \provides\

2006-07-17 Thread MB
Package: makedev
Version: 2.3.1-82
Severity: normal
Tags: patch

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

There's a typo in the INIT INFO header in /etc/init.d/makedev on line 4: 
instead of provides it says
provies. Unsure of how (or if) this affects functionality.



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

Versions of packages makedev depends on:
ii  base-passwd   3.5.11 Debian base system master password

makedev recommends no packages.

-- no debconf information








Home, no matter how far...
http://www.home.ro


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



Bug#161676: [Xiph] #250: [PATCH?] ogg123 issues with alsa amp; SIGHUP/SIGTERM

2006-07-17 Thread Xiph
#250: [PATCH?] ogg123 issues with alsa amp; SIGHUP/SIGTERM
+---
 Reporter:  [EMAIL PROTECTED]  |Owner:  [EMAIL PROTECTED]
 Type:  defect  |   Status:  assigned
 Priority:  P2  |Milestone:  
Component:  Vorbis Tools - ogg123   |  Version:  unspecified 
 Severity:  minor   |   Resolution:  
 Keywords:  |  
+---
Changes (by anonymous):

  * summary:  ogg123 issues with alsa amp; SIGHUP/SIGTERM = [PATCH?]
  ogg123 issues with alsa amp; SIGHUP/SIGTERM

-- 
Ticket URL: http://trac.xiph.org/ticket/250
Xiph http://xiph.org/
building a new era of Open multimedia

Bug#378572: gajim doesn't start with cairo related error

2006-07-17 Thread Le Boulanger Yann
Reinhard Tartler wrote:
 Package: gajim
 Version: 0.10.1-2
 Severity: important
 
 gajim fails to start for me with the following error message:
 

which GTK engine do you use ? Could you try with another one (a more
standard one) ?

why is your libcairo2 in hold status ?

Yann


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



Bug#377507: Please unblock testing migration of postgresql-7.4

2006-07-17 Thread Thiemo Seufer
Thiemo Seufer wrote:
 Martin Pitt wrote:
  Hi Thiemo!
  
  Thiemo Seufer [2006-07-16 21:42 +0100]:
FWIW, I tried a build with today's unstable on mips, after enabling
the server packages again. There was one failure in the testsuite:


...
test geometry ... ok
test horology ... failed (ignored)
  
  That's normal in 7.4, there is little I can do about it. It was fixed
  in 8.0, and it's nothing to worry about.
  
The resulting sever packages installed fine, no obvious failure
(but OTOH I don't know what a serious test would be).
  
  Merely passing the test suite is fine, so far it has failed right when
  trying to start postmaster.
  
   In addition, I built with gcc-4.1. Since some (mostly FFI related) ABI
   bugs were fixed between 3.3 and 4.0, this can explain the difference.
   
   I recommend to try a build without any mips/mipsel specific workarounds
   (the horology failure appears to be normal, it happens also on other
   architectures).
  
  Thank you for trying this out. However, I'm sceptical: postgresql-8.1
  still gives the same error when built with gcc-4.1:
  

  http://buildd.debian.org/fetch.php?pkg=postgresql-8.1ver=8.1.4-4arch=mipsstamp=1152713470file=logas=raw

  http://buildd.debian.org/fetch.php?pkg=postgresql-8.1ver=8.1.4-4arch=mipselstamp=1152713545file=logas=raw
  
  So maybe the buildds run some different package versions.
 
 I did a rebuild on unstable/mips, no failures, packages install fine,
 postmaster process runs. So the failure might be related to the buildd
 environment.

It seems to be kernel related, a build on a 2.6.12 64bit kernel shows
bus errors.


Thiemo


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



Bug#378576: python2.4: cannot easily convert from string to int, using locale

2006-07-17 Thread Jean-Michel
Package: python2.4
Version: 2.4.2-2
Severity: normal

When I try to convert a string to an int, python2.4 fails:
idem with a float.
NB: however, it works fine with 567, however, I would like to use big
numbers.


[EMAIL PROTECTED]:~$ python2.4
Python 2.4.2 (#2, Nov 20 2005, 17:04:48)
[GCC 4.0.3 2005 (prerelease) (Debian 4.0.2-4)] on linux2
Type help, copyright, credits or license for more information.
 int('567')
567
 int('1.234.567')
Traceback (most recent call last):
  File stdin, line 1, in ?
  ValueError: invalid literal for int(): 1.234.567
 float('567')
567.0
 float('567,89')
Traceback (most recent call last):
  File stdin, line 1, in ?
  ValueError: invalid literal for float(): 567,89



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

Versions of packages python2.4 depends on:
ii  libbz2-1.01.0.3-3high-quality block-sorting file co
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdb4.3  4.3.29-4.1 Berkeley v4.3 Database Libraries [
ii  libncurses5   5.5-2  Shared libraries for terminal hand
ii  libreadline5  5.1-7  GNU readline and history libraries
ii  libssl0.9.8   0.9.8b-2   SSL shared libraries
ii  python2.4-minimal 2.4.2-2A minimal subset of the Python lan

python2.4 recommends no packages.

-- no debconf information


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



Bug#378231: mesa: nasty smelly hack to make mesa work with glibc 2.4

2006-07-17 Thread Michel Dänzer
forwarded 378231 https://bugs.freedesktop.org/show_bug.cgi?id=6244
kthxbye

On Fri, 2006-07-14 at 14:38 +0100, Colin Watson wrote: 
 
 Anyway, the attached nasty fix avoids this problem by redefining mesa's
 dprintf to gludprintf, after including stdio.h to make sure glibc's
 version is already defined. A better solution would be to rename it
 completely upstream, [...]

Already done, see the upstream report.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer




Bug#366114: xserver-xorg-video-ati: Issue persists: RV100 + DRI enabled = sys.wide freeze

2006-07-17 Thread Michel Dänzer
forwarded 366114 https://bugs.freedesktop.org/show_bug.cgi?id=6429
kthxbye

On Sun, 2006-07-16 at 23:26 +1000, Matt Sulzberger wrote: 
 Package: xserver-xorg-video-ati
 Version: 1:6.5.8.0-1
 Followup-For: Bug #366114
 
 
 Michel,
 Comments at https://bugs.freedesktop.org/show_bug.cgi?id=6429
 provided me with a soultion for this.
 
 Building xf86-video-ati-X11R7.1-6.6.0.tar.gz and replacing ati_drv.so and
 radeon_drv.so from the 1:6.5.8.0-1 package with these fixed the issue. 

Thanks, but 6.6.0 didn't contain the fix I mentioned. If 6.5.8 is
broken, most likely so is 6.6.1, and we still don't know whether the fix
in current git resolves this issue.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer




Bug#359541: diff for 1.65-2.1 NMU

2006-07-17 Thread Amaya
Package: ov511
Version: 1.65-2
Severity: normal
Tags: patch

Hi,

Attached is the diff for my ov511 1.65-2.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u ov511-1.65/debian/changelog ov511-1.65/debian/changelog
--- ov511-1.65/debian/changelog
+++ ov511-1.65/debian/changelog
@@ -1,3 +1,10 @@
+ov511 (1.65-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359541).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 17:25:47 +0200
+
 ov511 (1.65-2) unstable; urgency=low
 
   * Added Source line to modules control file.
@@ -67,3 +73,0 @@
-Local variables:
-mode: debian-changelog
-End:
only in patch2:
unchanged:
--- ov511-1.65.orig/debian/postinst
+++ ov511-1.65/debian/postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/ov511-source -a -d 
/usr/share/doc/ov511-source ]; then
+rm -f /usr/doc/ov511-source
+fi
+fi
+
+#DEBHELPER#


Bug#378508: No bridge support for wireless LAN?

2006-07-17 Thread Santiago Garcia Mantinan
 auto br0
 
 iface br0 inet static
 address 192.168.0.4
 network 192.168.0.0
 netmask 255.255.255.0
 broadcast 192.168.0.255
 gateway 192.168.0.100
 bridge_ports eth2 eth0

That's ok, but then if you are using those ports there you don't need any of
this:

 iface eth0 inet static
 address 192.168.0.18
 netmask 255.255.255.0
 network 192.168.0.0
 broadcast 192.168.0.255
 
 iface eth2 inet static
 address 192.168.0.19
 netmask 255.255.255.0
 network 192.168.0.0
 broadcast 192.168.0.255
 wireless_mode managed
 wireless_essid myESSID
 wireless_channel 1
 wireless_key 1234...

In fact, as eth0 and eth1 don't have an auto on their definition I assume
they are not configured, unless the hotplug system does so because of some
other lines on your config.

If you want to have a bridge interface configure it, and add to it whatever
ports you need, and if some of those ports need some preconfig, then you
must do so on a pre-up command on your bridge definition. This would be
something like...

auto br0

iface br0 inet static
address 192.168.0.4  
network 192.168.0.0  
netmask 255.255.255.0  
broadcast 192.168.0.255
gateway 192.168.0.100
bridge_ports eth2 eth0
pre-up iwconfig eth2 mode managed essid myESSID channel 1 key 1234...

I have not tested this right now, but if I didn't get any mistakes on the
syntax that should work, you can even have several pre-up lines with
different iwconfig commands or whatever you need for your card.

I believe that's the best way to do what you want, even though there are
other ways, try that and let us know how that went so that we can close this
bug.

Regards...
-- 
Manty/BestiaTester - http://manty.net


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



Bug#378572: gajim doesn't start with cairo related error

2006-07-17 Thread Reinhard Tartler
reassign 378572 libcairo2
merge 378572 376858
stop

On Mon, Jul 17, 2006 at 05:13:56PM +0200, Le Boulanger Yann wrote:
 Reinhard Tartler wrote:
  Package: gajim
  Version: 0.10.1-2
  Severity: important
  
  gajim fails to start for me with the following error message:
  
 
 which GTK engine do you use ? Could you try with another one (a more
 standard one) ?
 
 why is your libcairo2 in hold status ?

after doing some more research, I found that this is in fact bug
#376858. Reassigning and merging. Sorry for bugging you.

Gruesse,
Reinhard



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



Bug#378577: auctex: installation may not ignore everything except emacs21|emacs-snapshot

2006-07-17 Thread Daniel 'NebuchadnezzaR' Dehennin
Package: auctex
Version: 11.83-2
Severity: wishlist

Hello,

The installation and removal scripts may ignore specific targets.

Thus the installation will succeed with home-made emacsen (like
emacs-lorentey for me).

See attached patch.

-- Package-specific info:

Content of '/usr/share/emacs/site-lisp/auctex/'

a01bf9fd3d73621b98d0464203315f9d  /usr/share/emacs/site-lisp/auctex/aclocal.m4
c515b501a8d5009537edfb0348d3f14e  /usr/share/emacs/site-lisp/auctex/auctex.el
e23e60e9de6051db5156aecaaaea11e7  /usr/share/emacs/site-lisp/auctex/auctex.el.in
70edfb6456295f3a85f539d6154a27f1  /usr/share/emacs/site-lisp/auctex/bib-cite.el
ac421dfa908cb4b4ca10225f5f392642  /usr/share/emacs/site-lisp/auctex/ChangeLog
221b209b70c601cdf4f51d5a88b3e19d  /usr/share/emacs/site-lisp/auctex/configure
8cd4b9e2d5a60d887e9a7ef2071c522c  /usr/share/emacs/site-lisp/auctex/configure.ac
5006452b1a7118be03053d7b6658b8cb  /usr/share/emacs/site-lisp/auctex/context.el
b8e6439d05bcb7f5b471e18fd4531806  
/usr/share/emacs/site-lisp/auctex/context-en.el
f6993976f1541119a029722ff4ae5e59  
/usr/share/emacs/site-lisp/auctex/context-nl.el
2b11f4f8c3a4189bf7cc8fec5a51e8c0  
/usr/share/emacs/site-lisp/auctex/doc/Makefile.in
f219971ef3cebc73ca1dbf21b18fc2a2  
/usr/share/emacs/site-lisp/auctex/font-latex.el
f176261b5a5511cbe1401ee72ffb8947  
/usr/share/emacs/site-lisp/auctex/images/amstex.xpm
d33121019448617a3ad3bcafdeb8db40  
/usr/share/emacs/site-lisp/auctex/images/bibtex.xpm
1a43d6438010bceb374ab0a5f2bd05a8  
/usr/share/emacs/site-lisp/auctex/images/dropdown.xpm
41f1ae0341ae2e307d92a7b8b815f868  
/usr/share/emacs/site-lisp/auctex/images/dvipdf.xpm
2e4b8669b0168f32247411be3f999437  
/usr/share/emacs/site-lisp/auctex/images/dvips.xpm
55f7600cadc3a209e94bacf6bbc42a7c  
/usr/share/emacs/site-lisp/auctex/images/error.xpm
79b958849511c67d6b13ef9f5b3673e8  
/usr/share/emacs/site-lisp/auctex/images/execbibtex.xpm
a8570e26e9f96b6f527cdbe218d6c55f  
/usr/share/emacs/site-lisp/auctex/images/execdvips.xpm
e647bc601aef2dc71b134a989df1adff  
/usr/share/emacs/site-lisp/auctex/images/execerror.xpm
4610ec6133f89ceb441c43dfee077361  
/usr/share/emacs/site-lisp/auctex/images/execpdftex.xpm
c9cd1fc9fe4fd122cbf900fae654a67b  
/usr/share/emacs/site-lisp/auctex/images/exectex.xpm
6a6b9af945d4735f048ea8e475f8d9b8  
/usr/share/emacs/site-lisp/auctex/images/execviewdvi.xpm
466466f6d1867510b058a9c184ffce5d  
/usr/share/emacs/site-lisp/auctex/images/execviewpdf.xpm
39d8ccaffb40b0c118e000f45272db05  
/usr/share/emacs/site-lisp/auctex/images/execviewps.xpm
c29ad797273fd27201a40bd939a95fe0  
/usr/share/emacs/site-lisp/auctex/images/exec.xpm
6767e2583c668dcb47495197b9e8cb65  
/usr/share/emacs/site-lisp/auctex/images/gv.xpm
ff9c61ef5148a0cacd5422d7c0d99396  
/usr/share/emacs/site-lisp/auctex/images/jumpdvi.xpm
ece6608586b591f50f20d17cdb316a1c  
/usr/share/emacs/site-lisp/auctex/images/ltx-symb-turn-off.xpm
b1f10de33dcf1b5ca9ac6155c13683a3  
/usr/share/emacs/site-lisp/auctex/images/ltx-symb-turn-on.xpm
44e35faa18ab34f3c13ac3b0082bcc47  
/usr/share/emacs/site-lisp/auctex/images/pdftex.xpm
84673eb20ac3be7bf0eb4e84e23e828f  
/usr/share/emacs/site-lisp/auctex/images/prverr16.xpm
59e6a0dddb00ab16c4209a2e4c6e283d  
/usr/share/emacs/site-lisp/auctex/images/prverr20.xpm
30dc2ada41625cb24ea459bd62f7386c  
/usr/share/emacs/site-lisp/auctex/images/prverr24.xbm
225929f8131bdd7b9b8207494a59619a  
/usr/share/emacs/site-lisp/auctex/images/prverr24.xpm
40feb30f80d3606f32ba54b57ba18af5  
/usr/share/emacs/site-lisp/auctex/images/prvtex12.xbm
e1b3c9d6a6eb6fb6f096736cdfc059cf  
/usr/share/emacs/site-lisp/auctex/images/prvtex12.xpm
32406fc4b893b48d2996c424f61ea238  
/usr/share/emacs/site-lisp/auctex/images/prvtex16.xbm
cc4101ee6a3ab6a1f4e9991b91b3ff0b  
/usr/share/emacs/site-lisp/auctex/images/prvtex16.xpm
d4dbe057a8d3b2facd61cf7583c1e97c  
/usr/share/emacs/site-lisp/auctex/images/prvtex20.xpm
f25ba1b984b095c9c561e5443f3d77a3  
/usr/share/emacs/site-lisp/auctex/images/prvtex24.xbm
28ac0855d853f606dd91e3cfacaa8a14  
/usr/share/emacs/site-lisp/auctex/images/prvtex24.xpm
0dac3d8eb00c902037cc5fa6a03e53e3  
/usr/share/emacs/site-lisp/auctex/images/prvtex-cap-up.xpm
6ce704103821329336489e990bc6f267  
/usr/share/emacs/site-lisp/auctex/images/prvwrk12.xpm
5607f4e8bc0eb555206e6a3542205f45  
/usr/share/emacs/site-lisp/auctex/images/prvwrk14.xpm
878a72cde3bb6f0ea6d586cff56e619c  
/usr/share/emacs/site-lisp/auctex/images/prvwrk16.xpm
41811748a97673381115957d42a6529b  
/usr/share/emacs/site-lisp/auctex/images/prvwrk20.xpm
254fc07db6a03a8a24f762135a403433  
/usr/share/emacs/site-lisp/auctex/images/prvwrk24.xbm
9690511307f3693e6f28e4db93fdc58c  
/usr/share/emacs/site-lisp/auctex/images/prvwrk24.xpm
e30a80ecb0711ceb42a2ca966ad74bbb  
/usr/share/emacs/site-lisp/auctex/images/pspdf.xpm
5cc696e2c69ae401c0c223d84d013c8e  
/usr/share/emacs/site-lisp/auctex/images/sep.xpm

Bug#377977: xserver-xorg-video-ati: dpms not working with xlock, log noise instead

2006-07-17 Thread Michel Dänzer
On Wed, 2006-07-12 at 13:42 +0200, Eduard Bloch wrote: 
 Package: xserver-xorg-video-ati
 Version: 1:6.5.8.0-1a
 Severity: normal
 
 Hello,
 
 on my desktop machine with Radeon X800 GTO, DPMS standby does not work
 when xlock -mode blank is active. The monitor just does not go off,
 though standy works usually when no xlock runs. This alone would
 indicate a problem in xlock, 

Indeed. If it works without xlock, that pretty much rules out a driver
issue.

 but I see messages in Xorg.0.log, appearing every five seconds:
 
 (**) RADEON(0): RADEONSaveScreen(2)
 (**) RADEON(0): RADEONSaveScreen(2)
 (**) RADEON(0): RADEONSaveScreen(2)
 (**) RADEON(0): RADEONSaveScreen(2)
 (**) RADEON(0): RADEONSaveScreen(2)
 
 So I assume that something has been prepared for the DPMS standby but is
 looping somehow, somewhere.

No, this just means that the driver's SaveScreen hook gets called
repeatedly. This could originate in the X server, but more likely from
repeated client requests. Looking at the xlock manpage, you may be
looking for the -resetsaver or other DPMS related xlock command line
arguments.

As the X server is single threaded, it becomes unresponsive if it ever
loops anywhere.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer




Bug#377731: xserver-xorg-video-ati: dual head mergedfb without dri causes system freeze

2006-07-17 Thread Michel Dänzer
forwarded 377731 https://bugs.freedesktop.org/show_bug.cgi?id=7154
kthxbye

On Mon, 2006-07-10 at 14:50 -0700, Michael Crozier wrote:
 Package: xserver-xorg-video-ati
 Version: 1:6.5.8.0-1
 Severity: critical
 Justification: causes serious data loss

... with specific setups.

Anyway, there's little that can be done without somebody at least
isolating the upstream change(s) that caused this regression.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer




Bug#367726: diff for 1.1-2.1 NMU

2006-07-17 Thread Amaya
Package: oss-preserve
Version: 1.1-2
Severity: normal
Tags: patch

Hi,

Attached is the diff for my oss-preserve 1.1-2.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u oss-preserve-1.1/debian/changelog oss-preserve-1.1/debian/changelog
--- oss-preserve-1.1/debian/changelog
+++ oss-preserve-1.1/debian/changelog
@@ -1,3 +1,13 @@
+oss-preserve (1.1-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359539).
+  * This bug does not apply (Closes: #367726).
+  * Applied patch by Robert Millan [EMAIL PROTECTED], so that it doesn't
+FTBFS on GNU/kFreeBSD (Closes: #322206).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 17:21:26 +0200
+
 oss-preserve (1.1-2) unstable; urgency=low
 
   * Add Conflicts: aumix to resolve interaction problems.
@@ -35,3 +44,0 @@
-Local variables:
-mode: debian-changelog
-End:
diff -u oss-preserve-1.1/debian/postinst oss-preserve-1.1/debian/postinst
--- oss-preserve-1.1/debian/postinst
+++ oss-preserve-1.1/debian/postinst
@@ -42,7 +42,12 @@
 # `abort-remove' or `abort-deconfigure'.
 
 case $1 in
-configure|abort-upgrade|abort-remove|abort-deconfigure)
+configure)
+if [ -d /usr/doc -a -h /usr/doc/oss-preserve -a -d 
/usr/share/doc/oss-preserve ]; then
+rm -f /usr/doc/oss-preserve
+fi
+   ;;
+abort-upgrade|abort-remove|abort-deconfigure)
;;
 *)
echo postinst called with unknown argument \`$1' 2
only in patch2:
unchanged:
--- oss-preserve-1.1.orig/ossctl.c
+++ oss-preserve-1.1/ossctl.c
@@ -28,7 +28,7 @@
 #include glib.h
 
 #include errno.h
-#include linux/soundcard.h
+#include sys/soundcard.h
 #include sys/ioctl.h
 #include sys/types.h
 


Bug#270895: diff for 0.6.1-7.2 NMU

2006-07-17 Thread Amaya
Package: odontolinux
Version: 0.6.1-7.1
Severity: normal
Tags: patch

Hi,

Attached is the diff for my odontolinux 0.6.1-7.2 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -Nru /tmp/IthHG59ens/odontolinux-0.6.1/debian/changelog 
/tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/changelog
--- /tmp/IthHG59ens/odontolinux-0.6.1/debian/changelog  2006-07-09 
12:04:25.0 +0200
+++ /tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/changelog  2006-07-17 
17:34:58.0 +0200
@@ -1,3 +1,11 @@
+odontolinux (0.6.1-7.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359542).
+  * Now arch:all (Closes: #270895).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 17:34:32 +0200
+
 odontolinux (0.6.1-7.1) unstable; urgency=high
 
   * Non-maintainer upload.
@@ -51,6 +59,3 @@
 
  -- Gaetano Paolone (bigpaul) [EMAIL PROTECTED]  Wed, 26 Dec 2001 00:25:00 
+0200
 
-Local variables:
-mode: debian-changelog
-End:
diff -Nru /tmp/IthHG59ens/odontolinux-0.6.1/debian/control 
/tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/control
--- /tmp/IthHG59ens/odontolinux-0.6.1/debian/control2006-07-09 
12:04:39.0 +0200
+++ /tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/control2006-07-17 
17:34:42.0 +0200
@@ -6,7 +6,7 @@
 Standards-Version: 3.5.2
 
 Package: odontolinux
-Architecture: any
+Architecture: all
 Depends: php4, php4-pgsql
 Suggests: postgresql-8.1 | postgresql-7.4
 Description: Dental office management software (PHP4 + PostgreSQL)
diff -Nru /tmp/IthHG59ens/odontolinux-0.6.1/debian/postinst 
/tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/postinst
--- /tmp/IthHG59ens/odontolinux-0.6.1/debian/postinst   2002-01-16 
11:45:24.0 +0100
+++ /tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/postinst   2006-07-17 
17:33:41.0 +0200
@@ -1,10 +1,11 @@
 #!/bin/bash
 
 if [ $1 = configure ]; then
- if [ -d /usr/doc -a ! -e /usr/doc/odontolinux -a -d 
/usr/share/doc/odontolinux ]; then
-  ln -sf ../share/doc/odontolinux /usr/doc/odontolinux
- fi
+if [ -d /usr/doc -a -h /usr/doc/odontolinux -a -d 
/usr/share/doc/odontolinux ]; then
+rm -f /usr/doc/odontolinux
+fi
 fi
+
 export PGUSER=postgres
 su - postgres -c /usr/share/odontolinux/makedb.sh
 
diff -Nru /tmp/IthHG59ens/odontolinux-0.6.1/debian/rules 
/tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/rules
--- /tmp/IthHG59ens/odontolinux-0.6.1/debian/rules  2002-01-16 
11:30:08.0 +0100
+++ /tmp/6eNIjKcv2L/odontolinux-0.6.1/debian/rules  2006-07-17 
17:37:25.0 +0200
@@ -29,6 +29,7 @@
 
# Add here commands to clean up after the build process.
-$(MAKE) clean
+   rm -f gettext/*.mo
dh_clean
 
 install: build


Bug#377163: openoffice.org: OO.org crashes on startup (Unknown error forking main binary / abnormal early exit)

2006-07-17 Thread Rene Engelhard
tag 377163 + moreinfo
forwarded 377163 Jan Holesovsky [EMAIL PROTECTED]
thanks

Max Gilead wrote:
 OO.org shows a splash screen and exits after about two seconds:
 
 $ openoffice
 
 ** (process:16654): WARNING **: Unknown error forking main binary / abnormal 
 early exit ...

I once saw rgar on amd64 (with the 64-bit OOo) but it went away...

 strace log below.

Can you send us strace -f's output please?

Regards,

Rene


signature.asc
Description: Digital signature


Bug#378578: RM: libstruts1.1-java, superseeded by libstruts1.2-java

2006-07-17 Thread Arnaud Vandyck
Package: ftp.debian.org
Severity: normal

Hi ftpmasters,

Thanks to remove libstruts1.1-java from unstable and testing, this
library is no more used, it's been superseeded by libstruts1.2-java.

Many thanks,


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



Bug#349574: jed: 'M-x compile' not working: acompile.sl not found

2006-07-17 Thread Jörg Sommer
Hello Torok,

can you please test, if can still reproduce this bug with the version
0.99.18-3? I can't.

Bye, Jörg.
-- 
- StGB §§ 328 Absatz 2, Nr.3 : Mit Freiheitsstrafe bis zu
fünf Jahren oder mit Geldstrafe wird bestraft, wer eine
nukleare Explosion verursacht.


pgpub6bouLtuB.pgp
Description: PGP signature


Bug#378583: eric3 conflict

2006-07-17 Thread Matthias Klose
Package: eric
Version: 3.9.0

missing conflict/replaces to old eric3 package.


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



Bug#359549: diff for 1.0.0.1-4.1 NMU

2006-07-17 Thread Amaya
Package: pgapack
Version: 1.0.0.1-4
Severity: normal
Tags: patch

Hi,

Attached is the diff for my pgapack 1.0.0.1-4.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u pgapack-1.0.0.1/debian/changelog pgapack-1.0.0.1/debian/changelog
--- pgapack-1.0.0.1/debian/changelog
+++ pgapack-1.0.0.1/debian/changelog
@@ -1,3 +1,10 @@
+pgapack (1.0.0.1-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359549).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 17:53:25 +0200
+
 pgapack (1.0.0.1-4) unstable; urgency=low
 
   * Updated to policy version 3.6.1.1, no symlink in /usr/doc
@@ -114,3 +120,0 @@
-Local variables:
-mode: debian-changelog
-End:
reverted:
--- pgapack-1.0.0.1/debian/changelog.dch~
+++ pgapack-1.0.0.1.orig/debian/changelog.dch~
@@ -1,104 +0,0 @@
-pgapack (1.0.0.1-2.2) unstable; urgency=low
-
-  * 
-
- -- anfra [EMAIL PROTECTED]  Mon, 31 Mar 2003 21:40:54 +0200
-
-pgapack (1.0.0.1-2.1) unstable; urgency=low
-  * Non-maintainer upload.
-  * Fix printf-is-a-macro issue (gcc 3.0).  Closes: #103157
-
- -- LaMont Jones [EMAIL PROTECTED]  Mon,  9 Jul 2001 21:39:34 -0600
-
-pgapack (1.0.0.1-2) unstable; urgency=low
-
-  * Fixed Bug
-  #79496: segmentation fault
-by recompiling the package.
-
- -- Andreas Franzen [EMAIL PROTECTED]  Mon, 18 Dec 2000 21:17:37 +0100
-
-
-pgapack (1.0.0.1-1) unstable; urgency=low
-
-  * Added postinst+prerm spripts for /usr/doc-symlink.
-
-  * Changed the location of docs and man-pages.
-
-  * Fixed Bug
-  #52377: segmentation fault
-by recompiling the package.
-
-  * Fixed Bug
-  #52378: problems compiling
-by setting the file permissions in the source file to standard values.
-Changed the source version from 1.0 to 1.0.0.1 to indicate this.
-
-  * Fixed Bug
-  #53742: no debug library
-by adding a second compilation run.
-
- -- Andreas Franzen [EMAIL PROTECTED]  Wed,  5 Jan 2000 22:28:01 +0100
-
-pgapack (1.0-10) unstable; urgency=low
-
-  * Fixed Bug
-  #29552: pgapack: hardcoded dependency in debian/control
-by changing the dependency field to ${shlib:Depends}.
-
- -- Andreas Franzen [EMAIL PROTECTED]  Fri,  2 Apr 1999 18:35:56 +0200
-
-pgapack (1.0-9) unstable; urgency=low
-
-  * Replaced fort77 by g77 in the rules file to prevent the
-Illegal option: -s error when compiling the fortran examples.
-
-  * Redefined the fortran function names in mpi_stub.c to take into account
-that both fort77 and g77 add two underscores to a function name when
-creating an object file, if the original name contains one or more
-underscores. This is necessary to compile the fortran examples.
-
- -- Andreas Franzen [EMAIL PROTECTED]  Fri, 24 Sep 1998 17:49:50 +0200
-
-pgapack (1.0-8) unstable; urgency=low
-
-  * Fixed Bug
-  #12418: pgapack: debian/fixman.sh is not executable
-by calling sh debian/fixman.sh instead.
-
-  * Renamed changelog.upstream.gz to changelog.gz.
-
-  * New maintainer.
-
- -- Andreas Franzen [EMAIL PROTECTED]  Sun, 23 Aug 1998 14:49:52 +0200
-
-pgapack (1.0-7) unstable; urgency=low
-
-  * Recompiled with libc6.
-
- -- Karl Sackett [EMAIL PROTECTED]  Wed, 25 Jun 1997 09:38:54 -0500
-
-pgapack (1.0-6) unstable; urgency=low
-
-  * Convert package to 2.1.1.0 standard.
-
- -- Karl Sackett [EMAIL PROTECTED]  Mon, 4 Nov 1996 13:24:56 -0600
-
-1.0-5
-* Support files now architecture-independent
-* Package conforms to latest naming standards
-
-1.0-4
-* Added 'Section' line to debian.control
-* debian.rules now adds architecture extension to files
-
-1.0-3
-* configure.in Changed SHELL variable to /bin/sh.
-* Makefile.in: Mods to install target.
-* man pages: The man pages as originally distributed are scattered
-  across sections 1-8, and l.  fixman.sh edits them to be
-  placed in section 3.
-
-Local variables:
-mode: debian-changelog
-End:


Bug#378581: bad parsing of CHECK_RCPT_DOMAIN_DNSBLS

2006-07-17 Thread Robert Millan
Package: exim4-config
Version: 4.62-2
Severity: normal
Tags: patch

Parsing of CHECK_RCPT_DOMAIN_DNSBLS in acl/30_exim4-config_check_rcpt assumes
this macro contains only one host:

  dnslists = CHECK_RCPT_DOMAIN_DNSBLS/$sender_address_domain

which would expand to:

  dnslists = rhsbl.foo.org/$sender_address_domain

But if you define CHECK_RCPT_DOMAIN_DNSBLS to contain multiple black lists, this
fails:

  dnslists = rhsbl.foo.org : rhsbl.bar.org/$sender_address_domain

My proposed solution is to remove the suffix and add an explanatory comment:

diff -ur exim4-4.62.old/debian/debconf/conf.d/acl/30_exim4-config_check_rcpt 
exim4-4.62/debian/debconf/conf.d/acl/30_exim4-config_check_rcpt
--- exim4-4.62.old/debian/debconf/conf.d/acl/30_exim4-config_check_rcpt 
2006-07-14 21:19:12.0 +0200
+++ exim4-4.62/debian/debconf/conf.d/acl/30_exim4-config_check_rcpt 
2006-07-17 18:07:34.0 +0200
@@ -221,6 +221,11 @@
   # Check against DNSBLs which list sender domains, with an option to locally
   # whitelist certain domains that might be blacklisted. If you want one
   # blacklist per domain, you need to replicate the stanza for each DNSBL.
+  #
+  # Note: If you define CHECK_RCPT_DOMAIN_DNSBLS, you must append
+  # /$sender_address_domain after each domain.  For example:
+  # CHECK_RCPT_DOMAIN_DNSBLS = rhsbl.foo.org/$sender_address_domain \
+  #: rhsbl.bar.org/$sender_address_domain
   .ifdef CHECK_RCPT_DOMAIN_DNSBLS
   warn
 message = X-Warning: $sender_address_domain is listed at $dnslist_domain 
($dnslist_value: $dnslist_text)
@@ -228,7 +233,7 @@
 !senders = ${if exists{CONFDIR/local_domain_dnsbl_whitelist}\
 {CONFDIR/local_domain_dnsbl_whitelist}\
 {}}
-dnslists = CHECK_RCPT_DOMAIN_DNSBLS/$sender_address_domain
+dnslists = CHECK_RCPT_DOMAIN_DNSBLS
   .endif

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

Versions of packages exim4-config depends on:
ii  adduser   3.87   Add and remove users and groups
ii  debconf [debconf-2.0] 1.5.2  Debian configuration management sy

exim4-config recommends no packages.

-- debconf information excluded


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



Bug#378582: Firefox FTBFS on mips/mipsel

2006-07-17 Thread Thiemo Seufer
Package: firefox
Version: 1.5.dfsg+1.5.0.4-2
Severity: serious

Firefox FTBFS on mips/mipsel due to a typo in the build dependencies
(bintuils instead of binutils).


Thiemo


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



Bug#377744: tetex-doc: more broken links

2006-07-17 Thread Bruno Gravato
Package: tetex-doc
Version: 3.0-19
Followup-For: Bug #377744


I think this is related to this bug.
I've found some broken links in /usr/share/doc/tetex-doc/index.html

Some links point to files in /usr/share/texmf/doc/ which is a symlink to
/usr/share/doc/texmf/ but at least some of those files are located in
/usr/share/doc/tetex-doc/

Some examples of this are the links in the Latex guides section, such as full
reference manual link.

I could try to fix this, but I'm not sure what to fix... Is it the symlink that
is wrong and should be pointing to /usr/share/doc/tetex-doc/ ? (most files are 
here).
On the other hand, /usr/share/doc/texmf/ is not empty so that could brake some
other links... I think the best policy might be placing all docs in the same
place.


Best regards,
Bruno Gravato.

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

tetex-doc depends on no packages.

Versions of packages tetex-doc recommends:
ii  acroread [pdf-viewer] 7.0.8-0.0  Adobe Acrobat Reader: Portable Doc
ii  dillo [www-browser]   0.8.5-4Small and fast web browser
ii  elinks [www-browser]  0.11.1-1   advanced text-mode WWW browser
ii  epiphany-browser [www 2.14.2.1-2 Intuitive GNOME web browser
ii  firefox [www-browser] 1.5.dfsg+1.5.0.4-1 lightweight web browser based on M
ii  gnome-gv [postscript- 1:2.12.0-1 GNOME PostScript viewer
ii  gpdf [pdf-viewer] 2.10.0-3   Portable Document Format (PDF) vie
ii  gs-esp [postscript-vi 8.15.1.dfsg.1-2The Ghostscript PostScript interpr
ii  gs-gpl [postscript-vi 8.50-1.1   The GPL Ghostscript PostScript int
ii  gv [pdf-viewer]   1:3.6.1-13 PostScript and PDF viewer for X
ii  mozilla-browser [www- 2:1.7.12-1.1   The Mozilla Internet application s
ii  tetex-bin 3.0-17 The teTeX binary files
ii  w3m [www-browser] 0.5.1-4WWW browsable pager with excellent
ii  xpdf  3.01-8 Portable Document Format (PDF) sui
ii  xpdf-reader [pdf-view 3.01-8 Portable Document Format (PDF) sui
ii  xpdf-utils [pdf-viewe 3.01-8 Portable Document Format (PDF) sui

-- no debconf information


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



Bug#378580: eric is not independent of the python version

2006-07-17 Thread Matthias Klose
Package: eric
Version: 3.9.0

has XS-Python-Version: current, but eric3config.debian has 2.3 hard
coded. so either XS-Python-Version should be 2.3, or hardcoding the
version should be avoided.

Also for python modules please depend on the first version of the
module converted to the new policy.

  Matthias


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



Bug#362308: ITP: laptoptemp -- GNOME applet that shows cpu temperature

2006-07-17 Thread Adriaan Peeters
Hi,

On Sat, 2006-07-15 at 01:00 -1200, Gürkan Sengün wrote:
 i'm getting 404 on that URL!

The program was renamed to computertemp which you can find at
http://computertemp.berlios.de/

You can also install the Debian package computertemp.

Adriaan


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


Bug#378579: TypeError: unsubscriptable object traceback when net goes down

2006-07-17 Thread Martin Michlmayr
Package: dput
Version: 0.9.2.25
Severity: normal

I just got the following traceback when my network experienced problem
while I was upload some debs:

Uploading via ftp libklibc-dev_1.4.8-1.1_i386.deb:
Error '(113, 'No route to host')' during ftp transfer of 
libklibc-dev_1.4.8-1.1_i386.deb
Traceback (most recent call last):
  File /usr/bin/dput, line 911, in ?
main()
  File /usr/bin/dput, line 860, in main
files_to_upload, debug, ftp_mode, progress)
  File /usr/share/dput/ftp.py, line 59, in upload
if e.args and e.args[0][:3]=='553':
TypeError: unsubscriptable object
zsh: exit 1 dput klibc_1.4.8-1.1_multi.changes


-- 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.17-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages dput depends on:
ii  debconf [debconf-2.0] 1.5.2  Debian configuration management sy
ii  gnupg 1.4.3-2GNU privacy guard - a free PGP rep
ii  python2.3.5-11   An interactive high-level object-o

dput recommends no packages.

-- debconf information excluded

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


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



Bug#353422: xserver-xorg: sometimes eyboard stops working after X starts

2006-07-17 Thread Isaac Clerencia
On Monday, 17 July 2006 12:09, Michel Dänzer wrote:
 reassign 353422 kdm
 kthxbye

 On Fri, 2006-07-07 at 16:29 +0530, Joshua N Pritikin wrote:
  On Tue, Feb 21, 2006 at 11:48:25AM +0100, Michel Dänzer wrote:
   On Sat, 2006-02-18 at 14:48 +0530, Joshua Pritikin wrote:
Initially, we thought it was a kernel bug but the keyboard works
during the system startup.  If I type stuff then it appears on
console interleaved with the boot messages.  However, the
keyboard stops working as soon as X starts, sometimes.  Sometimes
means like 1 in 4 times the keyboard works and 3 in 4 times it
doesn't work.  Any idea how to track this down?
  
   If you're using a display manager, this is usually due to a race
   condition which causes the X server and display manager not to use the
   same VT. Display managers usually work around this by passing vtX
   explicitly on the X server command line.
 
  I was using kdm 4:3.3.2-1.  The problem seems to have disappeared
  (4 days so far) after switching to gdm 2.8.0.6-2.
 
  Shall I file a bug against kdm?

 I'm reassigning this one.
I've experienced this one lately and it was something related to kde 
accesibility. Try deleting ~/.kde/share/config/kaccessrc and check if that 
helps.

Best regards
-- 
Isaac Clerencia at Warp Networks, http://www.warp.es
Work: [EMAIL PROTECTED]   | Debian: [EMAIL PROTECTED]


pgp5K8NGzTJpD.pgp
Description: PGP signature


Bug#353422: xserver-xorg: sometimes eyboard stops working after X starts

2006-07-17 Thread Joshua N Pritikin
On Mon, Jul 17, 2006 at 05:08:20PM +0200, Isaac Clerencia wrote:
 I've experienced this one lately and it was something related to kde 
 accesibility. Try deleting ~/.kde/share/config/kaccessrc and check if that 
 helps.

That doesn't make sense. The keyboard is already non-functional before 
entering a login/password.


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



Bug#378587: ITP: qrfcview -- viewer for IETF RFCs

2006-07-17 Thread Frederic Daniel Luc LEHOBEY
Package: wnpp
Severity: wishlist
Owner: Frederic Daniel Luc LEHOBEY [EMAIL PROTECTED]

* Package name: qrfcview
  Version : 0.62
  Upstream Author : Romain ROLLET [EMAIL PROTECTED]
* URL : http://qrfcview.berlios.de/
* License : GPL
  Programming Lang: C++
  Description : viewer for IETF RFCs

 qRFCView is a viewer for IETF RFC featuring:
 .
  - automatic table of content, with direct opening of section;
  - handling of RFC internal cross-references;
  - automatic downloading of a referenced RFC from the IETF web site
on a simple click;
  - caching of RFC in a local directory;
  - tab-browsing of RFC;
  - searching.
 .
  Homepage: http://qrfcview.berlios.de/


-- 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.8-3-k7
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#378586: FTBFS: Build-Depends are outdated and unsatisfiable

2006-07-17 Thread Amaya Rodrigo Sastre
Package: ldaptor
Severity: serious

Build-Depends-Indep: python, python2.3-dev, python2.4-dev, cdbs,
debhelper (= 4.1.68), docbook-slides (= 3.2.0), xsltproc,
source-highlight, python-epydoc, dia (= 0.93-2), python2.3-twisted-core
(= 2.2), python2.3-twisted-names (= 0.2), python2.3-twisted-mail (=
0.2), python2.3-twisted-web (= 0.5), python2.3-nevow (= 0.6.0),
python2.3-webut, python2.3-pyparsing, python2.3-pyopenssl,
python2.3-crypto, python2.4-twisted-core (= 2.2),
python2.4-twisted-names (= 0.2), python2.4-twisted-mail (= 0.2),
python2.4-twisted-web (= 0.5), python2.4-nevow (= 0.6.0),
python2.4-webut, python2.4-pyparsing, python2.4-pyopenssl,
python2.4-crypto

Should read something like:

Build-Depends-Indep: python, python2.3-dev, python2.4-dev, cdbs,
debhelper (= 4.1.68), docbook-slides (= 3.2.0), xsltproc,
source-highlight, python-epydoc, dia (= 0.93-2), python-twisted-core
(= 2.2), python-twisted-names (= 0.2), python-twisted-mail (= 0.2),
python-twisted-web (= 0.5), python-nevow (= 0.6.0), python-webut,
python-pyparsing, python-pyopenssl, python-crypto

Even after trying this, it still FTBFS:

make -C doc
make[1]: Entering directory 
`/home/amaya/debian/3_NMU/0_really_broken/ldaptor/old/ldaptor-0.0.44/doc'
dia --export-to-format=png-libart --export=ldap-is-a-tree.dia.png.tmp 
ldap-is-a-tree.dia
Unknown option --export-to-format=png-libartmv ldap-is-a-tree.dia.png.tmp 
ldap-is-a-tree.dia.png
mv: cannot stat `ldap-is-a-tree.dia.png.tmp': No such file or directory
make[1]: *** [ldap-is-a-tree.dia.png] Error 1
make[1]: Leaving directory 
`/home/amaya/debian/3_NMU/0_really_broken/ldaptor/old/ldaptor-0.0.44/doc'
make: *** [build/ldaptor-doc] Error 2
debuild: fatal error at line 1224:
debian/rules build failed




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

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com



Bug#378584: FTBFS: embedded build conflicts and dependencies checks fail

2006-07-17 Thread Amaya Rodrigo Sastre
Package: pipsecd
Version: 1:19990511-27
Severity: serious

[EMAIL PROTECTED]debuild
 fakeroot debian/rules clean
rm -f debian/install-tree-stamp
rm -rf debian/tmp* debian/files* debian/substvars
rm -f debian/build-stamp debian/depends-stamp
make clean
make[1]: Entering directory `/home/amaya/debian/3_NMU/pipsecd/pipsecd-19990511'
rm -f *.core *.o pipsecd
make[1]: Leaving directory `/home/amaya/debian/3_NMU/pipsecd/pipsecd-19990511'
rm -f *~ debian/*~ debian/pipsecd.8
 dpkg-source -b pipsecd-19990511
dpkg-source: building pipsecd using existing pipsecd_19990511.orig.tar.gz
dpkg-source: building pipsecd in pipsecd_19990511-27.1.diff.gz
dpkg-source: building pipsecd in pipsecd_19990511-27.1.dsc
 debian/rules build
Checking build conflicts and dependencies; just a minute...
grep-dctrl...grep-status: /var/lib/dpkg/status:19571: expected a colon.
grep-dctrl (virtual package)...grep-status: /var/lib/dpkg/status:19571: 
expected a colon.
Build depends on `grep-dctrl' (any version), which is not satisfied
make: *** [debian/depends-stamp] Error 1
debuild: fatal error at line 1224:
debian/rules build failed



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

Versions of packages pipsecd depends on:
ii  iproute   20051007-4 Professional tools to control the 
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libssl0.9.7   0.9.7i-1   SSL shared libraries

pipsecd recommends no packages.

-- no debconf information

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com



Bug#359552: diff for 1.107.0pre108-4.1 NMU

2006-07-17 Thread Amaya
Package: pilot-manager
Version: 1.107.0pre108-4
Severity: normal
Tags: patch

Hi,

Attached is the diff for my pilot-manager 1.107.0pre108-4.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u pilot-manager-1.107.0pre108/debian/changelog 
pilot-manager-1.107.0pre108/debian/changelog
--- pilot-manager-1.107.0pre108/debian/changelog
+++ pilot-manager-1.107.0pre108/debian/changelog
@@ -1,3 +1,10 @@
+pilot-manager (1.107.0pre108-4.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359552).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 18:41:52 +0200
+
 pilot-manager (1.107.0pre108-4) unstable; urgency=low
 
   * Added libpda-pilot-perl as alternate dependency.
@@ -113,3 +119,0 @@
-** Local Variables: **
-** mode:debian-changelog **
-** End: **
diff -u pilot-manager-1.107.0pre108/debian/control 
pilot-manager-1.107.0pre108/debian/control
--- pilot-manager-1.107.0pre108/debian/control
+++ pilot-manager-1.107.0pre108/debian/control
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Chris Waters [EMAIL PROTECTED]
 Standards-Version: 3.5.0
-Build-Depends-Indep: debhelper (= 3.0.18)
+Build-Depends: debhelper (= 3.0.18)
 
 Package: pilot-manager
 Depends: perl (= 5.6.0-16), perl-tk, libdigest-md5-perl, pilot-link-perl | 
libpda-pilot-perl
diff -u pilot-manager-1.107.0pre108/debian/menu 
pilot-manager-1.107.0pre108/debian/menu
--- pilot-manager-1.107.0pre108/debian/menu
+++ pilot-manager-1.107.0pre108/debian/menu
@@ -1,2 +1,2 @@
-?package(pilot-manager):needs=X11 section=Apps/Tools\
-  title=Pilot Manager command=/usr/bin/PilotManager
+?package(pilot-manager):needs=X11 section=Apps/Tools\
+  title=Pilot Manager command=/usr/bin/PilotManager
only in patch2:
unchanged:
--- pilot-manager-1.107.0pre108.orig/debian/postinst
+++ pilot-manager-1.107.0pre108/debian/postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/pilot-manager -a -d 
/usr/share/doc/pilot-manager ]; then
+rm -f /usr/doc/pilot-manager
+fi
+fi
+
+#DEBHELPER#


Bug#378005: this bug is also found etch.

2006-07-17 Thread darren
updated to libcairo (1.2.0-3),the bug is still there.


Bug#378581: bad parsing of CHECK_RCPT_DOMAIN_DNSBLS

2006-07-17 Thread Marc Haber
tags #378581 confirmed pending
thanks

On Mon, Jul 17, 2006 at 06:13:14PM +0200, Robert Millan wrote:
 My proposed solution is to remove the suffix and add an explanatory comment:

Accepted and committed to svn.

Greetings
Marc

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


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



Bug#378585: please document /etc/dokuwiki/user{style,print}.css as a way of customizing the stylesheets

2006-07-17 Thread Joseph Nahmias
Package: dokuwiki
Version: 0.0.20060309-5
Severity: minor

I wanted to customize the stylesheets used by dokuwiki.  At first I
modified the files directly in /usr/share/dokuwiki (ie.
/usr/share/dokuwiki/lib/tpl/default/{design,print}.css).  Much, much
later I found a reference to conf/userstyle.css and conf/userprint.css
in dokuwiki's online developer's documentation.

It would be nice if these were mentioned in the README.Debian and if
stubs were installed in /etc/dokuwiki, perhaps with a comment like:

/* Place customizations to print mode style sheet here */


Thanks,
--Joe

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

Versions of packages dokuwiki depends on:
ii  apache [httpd-cgi]   1.3.34-2versatile, high-performance HTTP s
ii  apache2-mpm-prefork [httpd-c 2.0.55-4traditional model for Apache2
ii  debconf [debconf-2.0]1.5.2   Debian configuration management sy
ii  php4 4:4.4.2-1.1 server-side, HTML-embedded scripti
ii  ucf  2.0012  Update Configuration File: preserv

dokuwiki recommends no packages.



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



Bug#378589: colorgcc bug report (with patch): g++ output not being colorized

2006-07-17 Thread Narcélio Filho

Package: colorgcc
Version: 1.3.2.0-4

Colorgcc does not colorize output from g++ (tested with g++ 4.0.3).

Possible patch:

--- colorgcc.backup 2006-07-17 11:30:31.0 -0300
+++ colorgcc2006-07-17 13:22:10.0 -0300
@@ -163,7 +163,7 @@
   # This substitute replaces `foo' with `AfooB' where A is the escape
   # sequence that turns on the the desired source color, and B is the
   # escape sequence that returns to $normalColor.
-   $line =~ s/\`(.*?)\'/\`$srcon$1$srcoff\'/g;
+   $line =~ s/(\`|\')(.*?)\'/\`$srcon$2$srcoff\'/g;

   print($line, color(reset));
}


--
/*  []s,  Narcelio Filho  */ main(){char l,I=0,*O=9!?=! 7!3! 1- ;
/*   [EMAIL PROTECTED]   */ while(*O){for(l=6;l;)putchar(*O--l1?
/*  ICQ# 3903490  */ 0x23:040);++I%3?l|=l:putchar(10);O++;}}


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



Bug#378588: nutupsdrv(8) refers to non-existing driver energizerups

2006-07-17 Thread Eric Van Buggenhaut
Package: nut
Version: 2.0.1-3
Severity: normal

/usr/share/man/man8/nutupsdrv.8.gz reads:

.SS Drivers:
\fBapcsmart\fR(8), \fBbelkin\fR(8), \fBbelkinunv\fR(8),
\fBbestuferrups\fR(8), \fBbestups\fR(8), \fBcpsups\fR(8),
\fBcyberpower\fR(8), \fBenergizerups\fR(8), \fBetapro\fR(8),

but energizerups and its manpage are missing from the package. Please include
them.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.16.20
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages nut depends on:
ii  adduser 3.63 Add and remove users and groups
ii  debconf [debconf-2.0]   1.4.30.13Debian configuration management sy
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

-- debconf information:
  nut/change_system_user:
  nut/major_conf_changes:
  nut/major_upstream_changes:
  nut/remove_debian_conf:
  nut/2_0_upstream_changes:


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



Bug#375077: initrd needs its own, static, nsswitch.conf

2006-07-17 Thread Michael Schultheiss
reopen 375077 !
kthxbye

Stephen Frost wrote:
 * Michael Biebl ([EMAIL PROTECTED]) wrote:
   case here?  Also, have you tried waiting it out?  Each request would end
   up taking about 2 minutes, but technically it *should* give up
   eventually..
  
  I waited for something like 10min without success. But honestly this
  wouldn't be a proper solution anyways.
 
 Please try 251-5, I believe it'll help...

I have 251-5 installed and am still seeing:

udevd[PID]: nss_ldap: failed to bind to LDAP server

I temporarily edited /etc/nsswitch.conf and removed the ldap entries so
the system would boot, then re-added them and restarted libnss-ldap.

-- 
---
Michael Schultheiss
E-mail: [EMAIL PROTECTED]


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



Bug#378427: needs to be updated to libbluetooth2

2006-07-17 Thread Filippo Giunchedi
On Sun, Jul 16, 2006 at 07:45:30PM +0200, Marc 'HE' Brockschmidt wrote:
 Oh, I didn't know that - could you upload reasonably fast, so that this
 whole transition can start to move on?

done, bluez-utils 3.1-2 is on its way to archive...

filippo
--
Filippo Giunchedi - http://esaurito.net
PGP key: 0x6B79D401
random quote follows:

UNIX IS user friendly, it is just selective who his friends are.


signature.asc
Description: Digital signature


Bug#368997: /usr/bin/po4aman-display-po: improvements to po4aman-display-po

2006-07-17 Thread Nicolas François
On Mon, Jul 17, 2006 at 01:57:48AM +0200, Julien Cristau wrote:
 As I understand it, po4a-translate outputs the translated manpage in the
 charset of the po file (which, in my case, is utf-8).  Then,
 po4aman-display-po uses iconv to recode that to the current locale
 charset (which, in my case, is also utf-8) and then feeds that to man.
 In my experience, man doesn't like that, because it seems to only groks
 latin1 encoding.  My patch tried to recode the output of po4a-translate
 from the po encoding to latin1.

You probably need to specify the -o -L ISO-8859-1 option to
po4aman-display-po (tell me if it works).

I'm not sure there is a way to autodetect the correct set of options for
po4a and maybe for man, which may require some options (like -Llang).

Testing with some Polish pages could be interresting.

Kind Regards,
-- 
Nekral


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



Bug#378263: e2fsprogs: segfaults on a corrupted ext3

2006-07-17 Thread Zoran Dzelajlija
On Sat, Jul 15, 2006 at 12:45:30AM -0400, Theodore Tso wrote:
 On Sat, Jul 15, 2006 at 04:09:29AM +0200, Zoran Dzelajlija wrote:
  tar xfSj theres-a-sparse-file-in-this-archive.tar.bz2
  
  will just uncompress the archive (about .5GB), and tar will seek over the
  holes when creating the file.
 
 mmm, yes, I had forgotten about the -S option.  However, tar is still
 exec'ing bunzip2 when you use the -j optoin, so 200GB is still going
 to be sent across stdout.

I don't think so.

 So it's no better than explicitly using bunzip2, but no worse, either.

But, bzip2 is used like

bzip2 -d foo.tar.bz2
tar xfS foo.tar

... and foo.tar is only 500MB, not 200GB.  Compare, if you wish:

wget http://ext3:[EMAIL PROTECTED]/~jelly/linux/hdb1.e2i.bz2
time bunzip2  hda1.e2i.bz2 | make-sparse hda1.e2i

wget http://ext3:[EMAIL PROTECTED]/~jelly/linux/hdb1.e2i.tar.bz2
time tar xfSj hdb1.e2i.tar.bz2

What's more interesting is that the compression took a lot more time when it
was done in the pipe.  3:50 for e2image|bzip2, and 1:05 for e2image; tar;
bzip2 combined.

Anyway, back to the bug report: running e2fsck without -n fixes the htrees
for two directories, and a repeated e2fsck finds no errors.  Accessing the
directory which would previously make kernel oops now works too.

# e2fsck.static -vfC0 /dev/hdb1
e2fsck 1.39 (29-May-2006)
Pass 1: Checking inodes, blocks, and sizes
HTREE directory inode 1060239 has an invalid root node.
Clear HTree indexy? yes

HTREE directory inode 1630724 has an invalid root node.
Clear HTree indexy? yes

Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 3A: Optimizing directories
Pass 4: Checking reference counts
Pass 5: Checking group summary information

storage: * FILE SYSTEM WAS MODIFIED *

 1235327 inodes used (49%)
9141 non-contiguous inodes (0.7%)
 # of inodes with ind/dind/tind blocks: 77373/3656/4
45456181 blocks used (93%)
   0 bad blocks
   4 large files

 1122207 regular files
   83709 directories
3179 character device files
 block device files
  51 fifos
1092 links
   18312 symbolic links (17309 fast symbolic links)
  83 sockets

 1236410 files

Maybe I should ask the author of Ext2 IFS For Windows to disallow writing
if -O dir_index is present.

Regards,
Zoran


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



Bug#378573: tightvncserver: 'vncserver' script should probably use /etc/X11/Xsession as the default client script

2006-07-17 Thread Ola Lundqvist
severity 378573 wishlist
thanks

Hi Nikita

On Mon, Jul 17, 2006 at 06:32:07PM +0400, Nikita V. Youshchenko wrote:
 Package: tightvncserver
 Version: 1.2.9-15
 Severity: normal
 
 Currently, 'vncserver' script starts some custom session.
 This makes some services (like ssh agent) unavailable, does not load
 local customization that sysadmin has put into /etc/Xsession.d/, etc
 
 Why not using /etc/X11/Xsession as default session script?

It could be something to do. I'll think about it and see if there are
some disadvantages of this. I can remember some problems with this,
related to the fact that vnc and X do not really behave in the same
way.

I'll think about it.

Regards,

// Ola

 
 -- System Information:
 Debian Release: testing/unstable
   APT prefers testing
   APT policy: (620, 'testing'), (600, 'unstable'), (550, 'experimental')
 Architecture: i386 (i686)
 Kernel: Linux 2.6.16-1-k7-smp
 Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
 
 Versions of packages tightvncserver depends on:
 ii  dpkg  1.13.21package maintenance system for 
 Deb
 ii  libc6 2.3.6-15   GNU C Library: Shared libraries
 ii  libjpeg62 6b-13  The Independent JPEG Group's 
 JPEG 
 ii  libx11-6  2:1.0.0-7  X11 client-side library
 ii  libxext6  1:1.0.0-4  X11 miscellaneous extension 
 librar
 ii  perl  5.8.8-4Larry Wall's Practical 
 Extraction 
 ii  vnc-common3.3.7-12   Virtual network computing server 
 s
 ii  x11-common1:7.0.22   X Window System (X.Org) 
 infrastruc
 ii  xbase-clients 1:7.1.ds-2 miscellaneous X clients
 ii  zlib1g1:1.2.3-11 compression library - runtime
 
 -- no debconf information
 
 

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


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



Bug#359553: diff for 1.1.2-1.1 NMU

2006-07-17 Thread Amaya
Package: python-imaging-doc-handbook
Version: 1.1.2-1
Severity: normal
Tags: patch

Hi,

Attached is the diff for my python-imaging-doc-handbook 1.1.2-1.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u python-imaging-doc-handbook-1.1.2/debian/changelog 
python-imaging-doc-handbook-1.1.2/debian/changelog
--- python-imaging-doc-handbook-1.1.2/debian/changelog
+++ python-imaging-doc-handbook-1.1.2/debian/changelog
@@ -1,9 +1,16 @@
+python-imaging-doc-handbook (1.1.2-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * python-imaging-doc-html: Get rid of the /usr/doc link in postinst
+(Closes: #359553).
+  * python-imaging-doc-pdf: Get rid of the /usr/doc link in postinst
+(Closes: #359557).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 18:54:59 +0200
+
 python-imaging-doc-handbook (1.1.2-1) unstable; urgency=low
 
   * Initial Release, split out from the python-imaging package.
 
  -- Simon Richter [EMAIL PROTECTED]  Sat,  9 Jun 2001 17:19:08 +0200
 
-Local variables:
-mode: debian-changelog
-End:
reverted:
--- 
python-imaging-doc-handbook-1.1.2/debian/python-imaging-doc-html.postinst.debhelper
+++ 
python-imaging-doc-handbook-1.1.2.orig/debian/python-imaging-doc-html.postinst.debhelper
@@ -1,12 +0,0 @@
-# Automatically added by dh_installdocs
-if [ $1 = configure ]; then
-   if [ -d /usr/doc -a ! -e /usr/doc/python-imaging-doc-html -a -d 
/usr/share/doc/python-imaging-doc-html ]; then
-   ln -sf ../share/doc/python-imaging-doc-html 
/usr/doc/python-imaging-doc-html
-   fi
-fi
-# End automatically added section
-# Automatically added by dh_installdocs
-if [ $1 = configure ]  command -v install-docs /dev/null 21; then
-   install-docs -i /usr/share/doc-base/python-imaging-doc-html
-fi
-# End automatically added section
reverted:
--- 
python-imaging-doc-handbook-1.1.2/debian/python-imaging-doc-html.prerm.debhelper
+++ 
python-imaging-doc-handbook-1.1.2.orig/debian/python-imaging-doc-html.prerm.debhelper
@@ -1,11 +0,0 @@
-# Automatically added by dh_installdocs
-if [ \( $1 = upgrade -o $1 = remove \) -a -L 
/usr/doc/python-imaging-doc-html ]; then
-   rm -f /usr/doc/python-imaging-doc-html
-fi
-# End automatically added section
-# Automatically added by dh_installdocs
-if [ $1 = remove -o $1 = upgrade ]  \
-   command -v install-docs /dev/null 21; then
-   install-docs -r python-imaging-doc-html
-fi
-# End automatically added section
only in patch2:
unchanged:
--- 
python-imaging-doc-handbook-1.1.2.orig/debian/python-imaging-doc-html.postinst
+++ python-imaging-doc-handbook-1.1.2/debian/python-imaging-doc-html.postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/python-imaging-doc-html -a -d 
/usr/share/doc/python-imaging-doc-html ]; then
+rm -f /usr/doc/python-imaging-doc-html
+fi
+fi
+
+#DEBHELPER#
only in patch2:
unchanged:
--- 
python-imaging-doc-handbook-1.1.2.orig/debian/python-imaging-doc-pdf.postinst
+++ python-imaging-doc-handbook-1.1.2/debian/python-imaging-doc-pdf.postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/python-imaging-doc-pdf -a -d 
/usr/share/doc/python-imaging-doc-pdf ]; then
+rm -f /usr/doc/python-imaging-doc-pdf
+fi
+fi
+
+#DEBHELPER#


Bug#378590: gpm: GPM init.d script should modprobe mousedev in case no mouse is plugged in.

2006-07-17 Thread Tim Phipps
Package: gpm
Version: 1.19.6-22
Severity: normal

I've got /dev/input/mice as my GPM mouse device (I think it was the default)
and I'm using udev. If a mouse isn't plugged in udev does not load the
mousedev driver at boot (which is probably correct) and so there is no
/dev/input/mice for gpm to open. A modprobe -q mousedev in the initscript
if the device is /dev/input/mice would fix this nicely (probably just before
the loop marked # HACK that waits for $device to appear).


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

Versions of packages gpm depends on:
ii  debconf [debconf-2.0] 1.5.2  Debian configuration management sy
ii  debianutils   2.16.2 Miscellaneous utilities specific t
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  ucf   2.0012 Update Configuration File: preserv

gpm recommends no packages.

-- debconf information:
* gpm/responsiveness:
* gpm/repeat_type: none
* gpm/append:
  gpm/restart: false
* gpm/sample_rate:
* gpm/type: exps2
* gpm/device: /dev/input/mice


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



Bug#378592: qemu: -smb only works if supervisor

2006-07-17 Thread Francesco Potorti`
Package: qemu
Version: 0.8.1-1
Severity: normal

I use this command line:

sudo qemu -localtime -smb ~/qemu -usb -soundhw sb16 -fda floppy.img -cdrom 
/dev/cdrom -m 64 w98.img

If I omit the sudo, then I get no errors, but Windows 98 inside says
it cannot access the network.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-proposed-updates')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.30-pre2-pr-hrt-1kHz-1
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set 
to C)

Versions of packages qemu depends on:
ii  bochsbios 2.2.6-2BIOS for the Bochs emulator
ii  libasound21.0.11-3   ALSA library
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libsdl1.2debian   1.2.10-3   Simple DirectMedia Layer
ii  openhackware  0.4.1-2OpenFirmware emulator for PowerPC
ii  proll 18-2   JavaStation PROM 2.x compatible re
ii  vgabios   0.5d-1 VGA BIOS software for the Bochs an
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages qemu recommends:
ii  debootstrap   0.3.3  Bootstrap a basic Debian system
ii  sharutils 1:4.2.1-15 shar, unshar, uuencode, uudecode

-- no debconf information


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



Bug#378591: gnome-session: Register timeout killing applications

2006-07-17 Thread Jiri Palecek
Package: gnome-session
Severity: wishlist

Hello,

I was getting streange errors when starting some applications
(Opera, Kate, etc.), they wouldn't start without any notice
when the system was under load.

I have realized that it was the session manager that was killing
them after timeout, which is 15 s. I changed it to 0 and everything
goes well.

Is having a timeout of only 15 s sensible? Is even having any timeout
sensible?

Regards
   Jiri Palecek
__
XXL-Speicher, PC-Virenschutz, Spartarife  mehr: Nur im WEB.DE Club!
Jetzt gratis testen! http://freemail.web.de/home/landingpad/?mc=021130



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



Bug#378595: clearsilver_0.10.3-2(mips/unstable): FTBFS - outdated config.guess

2006-07-17 Thread Ryan Murray
Package: clearsilver
Version: 0.10.3-2
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of clearsilver_0.10.3-2 on ball by sbuild/mips 99.9
 Build started at 20060705-1020

[...]

 ** Using build dependencies supplied by package:
 Build-Depends: python-all-dev (= 2.3.5-10), debhelper (= 5.0.37.2), cdbs 
 (= 0.4.41), zlib1g-dev, autotools-dev

[...]

   done ; \
   fi
 if test -e /usr/share/misc/config.sub ; then \
   for i in ./config.sub ; do \
   if ! test -e $i.cdbs-orig ; then \
   mv $i $i.cdbs-orig ; \
   cp --remove-destination 
 /usr/share/misc/config.sub $i ; \
   fi ; \
   done ; \
   fi
 touch debian/stamp-autotools-files
 chmod a+x /build/buildd/clearsilver-0.10.3/./configure
 cd .  CC=cc CXX=g++ CFLAGS=-g -Wall -O2 -fPIC CXXFLAGS=-g -Wall -O2 
 CPPFLAGS= LDFLAGS= /build/buildd/clearsilver-0.10.3/./configure 
 --build=mips-linux-gnu --prefix=/usr --includedir=\${prefix}/include 
 --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info 
 --sysconfdir=/etc --localstatedir=/var 
 --libexecdir=\${prefix}/lib/clearsilver --disable-maintainer-mode 
 --disable-dependency-tracking --srcdir=.  --enable-python 
 --with-perl=/usr/bin/perl --disable-ruby --disable-csharp --disable-apache 
 --enable-gettext 
 /build/buildd/clearsilver-0.10.3/./configure: line 949: config.log: 
 Permission denied
 make: *** [config.status] Error 1

A full build log can be found at:
http://buildd.debian.org/build.php?arch=mipspkg=clearsilverver=0.10.3-2

The versions of config.guess and config.sub in this source package are
too old to correctly support the Debian mips and mipsel architectures. 
A version is needed from 2002 or later, which is available in the
autotools-dev packages that are in current woody, sarge, and sid.

The package also runs configure in the clean target, creating files as user
root that can't be written to by the buildd during the build process.  You can
reproduce this on any architecture by running the following command as a
regular user:
dpkg-buildpackage -uc -us -B -rsudo


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



Bug#378511: [xml/sgml-pkgs] Bug#378511: libxml2-dev: libxml2.la's dependency_libs contains -lz, but zlib1g-dev|libz-dev is not depended upon anymore

2006-07-17 Thread Mike Hommey
tag 378511 wontfix
thanks

On Mon, Jul 17, 2006 at 01:45:59AM +0200, Nicolas Boullis [EMAIL PROTECTED] 
wrote:
 Package: libxml2-dev
 Version: 2.6.26.dfsg-2
 Severity: important
 
 Hi,
 
 This is clearly related to #374017; the fix to this bug was incomplete.
 It causes FTBFS in packages that build-depend on libxml2-dev but not
 zlib1g-dev|libz-dev, and that use libtool. (See for example #378374.)

In the meanwhile, I remembered that libxslt, that I built with the new
libxml2 to verify the changes to libxml2-dev dependencies don't break
everything, also uses libtool. So, wondering what was the matter, I also
remembered libxslt is autoreconfed.

To solve the problem, then, all you have to do is relibtoolize your
package. This can be achieved by running autoreconf. You will need
libtool, autoconf2.13 and automake1.9. That solves the issue much better
than adding useless build-dep AND dependency on zlib.

I'm going to tag this bug wontfix, and will leave it open for
documentation purpose. I may send a mail to maintainers of reverse
dependencies.

For other cases, check the autoconf version used by upstream by grepping
Generated by in configure, and the automake version by grepping
generated by in Makefile.in.

Cheers

Mike


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



Bug#378596: python-imaging: missing dependencies of .so module

2006-07-17 Thread Brian Sutherland
Package: python-imaging
Version: 1.1.5-10
Severity: important

It appears that python-imaging somehow lost the dependencies of the
extension module. Perhaps in the conversion to the new policy.

Trying this in a minimal pbuilder environment with python2.4,
python-imaging installed:

[EMAIL PROTECTED]:/# python2.4
Python 2.4.4c0 (#2, Jun 14 2006, 22:35:41)
[GCC 4.1.2 20060613 (prerelease) (Debian 4.1.1-4)] on linux2
Type help, copyright, credits or license for more information.
 from PIL import _imaging
Traceback (most recent call last):
  File stdin, line 1, in ?
ImportError: libjpeg.so.62: cannot open shared object file: No such file or 
directory

 % apt-cache depends python2.3-imaging python-imaging
python2.3-imaging
  Depends: python2.3
  Depends: libc6
  Depends: libfreetype6
  Depends: libjpeg62
  Depends: zlib1g
 |Depends: mime-support
  Depends: python2.3-imaging-tk
python-imaging-tk
  Suggests: python-imaging-doc
  Conflicts: pil
  Conflicts: python-pil
  Replaces: pil
  Replaces: python-pil
python-imaging
  Depends: python-central
  Depends: python
  Depends: python
 |Depends: mime-support
  Depends: python-imaging-tk
  Suggests: python-imaging-doc
  Conflicts: pil
  Conflicts: python-pil
  Conflicts: python2.3-imaging
  Conflicts: python2.4-imaging
  Replaces: pil
  Replaces: python-pil
  Replaces: python2.3-imaging
python-imaging
  Replaces: python2.4-imaging
python-imaging


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

Versions of packages python-imaging depends on:
ii  mime-support  3.36-1 MIME files 'mime.types'  'mailcap
ii  python2.3.5-11   An interactive high-level object-o
ii  python-central0.5.0  register and build utility for Pyt

python-imaging recommends no packages.

-- no debconf information


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



Bug#359555: diff for 1.12-6.1 NMU

2006-07-17 Thread Amaya
Package: printop
Version: 1.12-6
Severity: normal
Tags: patch

Hi,

Attached is the diff for my printop 1.12-6.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u printop-1.12/debian/changelog printop-1.12/debian/changelog
--- printop-1.12/debian/changelog
+++ printop-1.12/debian/changelog
@@ -1,3 +1,10 @@
+printop (1.12-6.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359555).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 19:33:29 +0200
+
 printop (1.12-6) unstable; urgency=low
 
   * Changed lpc to /usr/sbin/lpc in confLPC variable to fix PATH problems
@@ -58,3 +64,0 @@
-Local Variables:
-mode: debian-changelog
-End:
diff -u printop-1.12/debian/printop.menu printop-1.12/debian/printop.menu
--- printop-1.12/debian/printop.menu
+++ printop-1.12/debian/printop.menu
@@ -16,16 +16,7 @@
 ?package(printop):\
   needs=x11\
   section=Apps/System\
-  description=\
-  \
-printop is a tcl program that gives you a tk graphical interface\
-to control the printers and queues for UNIX-like systems using\
-the lpd daemon from the LPRng print system. It uses the commands\
-lpq, lpc, lprm to get information and control the printers and you\
-just have to click with your mouse.  In a large network it shows\
-you all the printers and gives you the full functionality of the\
-lprng commands, so you have a good overview of what is happening.\
-  \
+  description=Graphical interface to control the printers and queues
   longtitle=printop - graphical interface to LPRng print system\
   title=Printop\
   icon=/usr/X11R6/include/X11/pixmaps/mini-doc.xpm\
only in patch2:
unchanged:
--- printop-1.12.orig/debian/postinst
+++ printop-1.12/debian/postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/printop -a -d /usr/share/doc/printop 
]; then
+rm -f /usr/doc/printop
+fi
+fi
+
+#DEBHELPER#


Bug#378598: libranlip: FTBFS: bashisms

2006-07-17 Thread Julien Danjou
Package: libranlip
Version: 1.0-4
Severity: important

Hello,

There was a problem while autobuilding your package:

 Automatic build of libranlip_1.0-4 on avidan by sbuild/i386 0.48
 Build started at 20060717-1930
 **
...
 cd debian  install -m 644 shlibs libranlip1c2/DEBIAN
 cd shared/lib  strip --remove-section=.comment --remove-section=.note 
 --strip-unneeded libranlip.so.1.0.0
 cd static/lib  strip --strip-debug libranlip.a
 mv shared/lib/libranlip.so.* debian/libranlip1c2/usr/lib/ranlip
 mv shared/lib/libranlip.so debian/libranlip-dev/usr/lib/ranlip
 sed s/^libdir=.*/libdir=\'\/usr\/lib\/ranlip\'/ shared/lib/libranlip.la  
 debian/libranlip-dev/usr/lib/ranlip/libranlip.la
 mv static/lib/libranlip.a debian/libranlip-dev/usr/lib/ranlip 
 sed s/^#include \ranlipdist.h\/#include ranlip\/ranlipdist.h/ 
 static/include/ranlip.h  debian/libranlip-dev/usr/include/ranlip/ranlip.h
 mv static/include/{ranlipdist,ranlipproc}.h 
 debian/libranlip-dev/usr/include/ranlip
 mv: cannot stat `static/include/{ranlipdist,ranlipproc}.h': No such file or 
 directory
 make: *** [binary-arch] Error 1
 **
 Build finished at 20060717-1931
 FAILED [dpkg-buildpackage died]
 --

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#378594: xserver-xorg-video-ati: Can't get Radeon 7500 / Mobility M6 / RV200 TV out working

2006-07-17 Thread Mark Carroll
Package: xserver-xorg-video-ati
Version: 1:6.5.8.0-1
Severity: normal

I have a Thinkpad R40 2681-5UU with a 
ATI Technologies Inc Radeon Mobility M6 LY

I can't get output to the TV working properly. The computer does seem to have
noticed the TV:

# atitvout detect
CRT is attached.
TV is attached via S-Video.

I've tried various things in xorg.conf, similar to:

Section Device
Identifier  Video Card for Internal
Driver  radeon
BusID   PCI:1:0:0
Option BIOSHotkeys true
Option composite_sync off
Option MonitorLayout LVDS, STV
Option TVOutput  NTSC
Screen 0
EndSection

An interesting bit of Xorg.0.log is,

(II) RADEON(0): Detected Radeon Mobility M6, disabling multimedia i2c
(II) Loading sub module theatre_detect
(II) LoadModule: theatre_detect
(II) Loading /usr/lib/xorg/modules/multimedia/theatre_detect_drv.so
(II) Module theatre_detect: vendor=X.Org Foundation
compiled for 7.0.0, module version = 1.0.0
ABI class: X.Org Video Driver, version 0.8
(II) RADEON(0): no multimedia table present, disabling Rage Theatre.
(WW) RADEON(0): Option composite_sync is not used
(WW) RADEON(0): Option TVOutput is not used
(**) RADEON(0): RADEONScreenInit finished

(I've tried at 800x600 resolution in case the theater_out module was looking
for that, given the hints under Making it work at
http://gatos.sourceforge.net/theater_out.php )

I am using xserver-xorg 1:7.0.22 reporting itself as
X Window System Version 7.0.0

http://gatos.sourceforge.net/supported_cards.php suggests that
my card should work, but I don't know how much gatos code has made
it into X.Org.

Before the upgrade, with XFree86 Version 4.4.0 I could use atitvout to display
to the TV, but if I try that with current X.Org (atitvout isn't reported to
work with recent X.Org anyway) then when a mouse pointer moves out of the
window it was in a horrifying false inverted colour sort of effect happens
and sticks.

I'd prefer not to resort to non-free stuff like fglrx to get the TV out
working again, so I thought I'd check to see if I shouldn't have to. (Perhaps
if your package isn't even meant to offer TV out then this becomes a wishlist
item.)

Apologies if I did anything clueless - this is my first experience of X.Org
and the package installation just left me a completely empty xorg.conf !

-- Mark

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages xserver-xorg-video-ati depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  xserver-xorg-core 1:1.0.2-9  X.Org X server -- core server

xserver-xorg-video-ati recommends no packages.

-- no debconf information


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



Bug#378270: diff for 0.1cvs20050420-3.2 NMU of jabber-irc

2006-07-17 Thread Luk Claes
Hi,

Attached is the diff for my jabber-irc 0.1cvs20050420-3.2 NMU.

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D
diff -u jabber-irc-0.1cvs20050420/debian/changelog 
jabber-irc-0.1cvs20050420/debian/changelog
--- jabber-irc-0.1cvs20050420/debian/changelog
+++ jabber-irc-0.1cvs20050420/debian/changelog
@@ -1,3 +1,11 @@
+jabber-irc (0.1cvs20050420-3.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Depend on python-xmpp instead of python2.3-xmpp and remove python2.3
+dependency (Really closes: #376894).
+
+ -- Luk Claes [EMAIL PROTECTED]  Mon, 17 Jul 2006 19:15:45 +0200
+
 jabber-irc (0.1cvs20050420-3.1) unstable; urgency=high
 
   * Non-maintainer upload.
diff -u jabber-irc-0.1cvs20050420/debian/control 
jabber-irc-0.1cvs20050420/debian/control
--- jabber-irc-0.1cvs20050420/debian/control
+++ jabber-irc-0.1cvs20050420/debian/control
@@ -8,7 +8,7 @@
 
 Package: jabber-irc
 Architecture: all
-Depends: python-irclib, python2.3-xmpp, jabber-common, python2.3, python
+Depends: python-irclib, python-xmpp, jabber-common, python
 Suggests: jabber
 Description: IRC transport for jabber
  Provides jabber server with gateway to IRC messaging system.


signature.asc
Description: Digital signature


Bug#378356: [m68k] Please move from gcc-3.4 to gcc-4.1

2006-07-17 Thread Stephen R Marenka
On Mon, Jul 17, 2006 at 03:56:39PM +0200, Laurent Fousse wrote:

 Did you try without -O0? It's not fair to say it's all I expect on
 m68k, it's really that's it's all I could get with, let's say, a very
 varying level of support for this architecture from gcc. I'll drop the
 dependancy on gcc-3.4. If you have the opportunity to test without the
 -O0, please report as well (apparently the lock down for developer
 machines is still in effect).

gcc has been a problem for us lately. Right now I know there's a -O2 bug, 
which is why I was building some libs -O0. I'll test it out again when we 
get that fixed.

-- 
Stephen R. Marenka If life's not fun, you're not doing it right!
[EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#378593: D-I partition manager unable to see one of two Macintosh partition tables

2006-07-17 Thread Rick Thomas

Package: installation-reports

Boot method: How did you boot the installer? CD? floppy? network?
BootX and netinst CD (see below)
I also tried using the businesscard CD witht he same results

Image version: Full URL to image you downloaded is best
	http://cdimage.debian.org/cdimage/daily-builds/daily/20060715/ 
powerpc/iso-cd/


Index of /cdimage/daily-builds/daily/20060715/powerpc/iso-cd
 Name  Last modified  Size

 Parent Directory   -
 MD5SUMS   16-Jul-2006 02:38  143
 debian-testing-powerpc-businesscard.iso   16-Jul-2006 02:36   55M
 debian-testing-powerpc-netinst.iso16-Jul-2006 02:38  166M

Apache/2.0.53 (Debian GNU/Linux) Server at cdimage.debian.org Port 80

Date: Date and time of the install
About 3:00 AM (US East Coast) Monday, July 17, 2006

Machine: Description of machine (eg, IBM Thinkpad R32)
Powermac Beige G3 (OldWorld)

[EMAIL PROTECTED]:~$ cat /proc/cpuinfo
processor   : 0
cpu : 740/750
temperature : 39-41 C (uncalibrated)
clock   : 300MHz
revision: 2.2 (pvr 0008 0202)
bogomips: 600.06
machine : Power Macintosh
motherboard : AAPL,Gossamer MacRISC
detected as : 48 (PowerMac G3 (Gossamer))
pmac flags  : 
L2 cache: 1024K unified pipelined-syncro-burst
memory  : 384MB
pmac-generation : OldWorld
[EMAIL PROTECTED]:~$

debian:~# ( lspci ; lspci -n ) | sort
00:00.0 0600: 1057:0002 (rev 40)
00:00.0 Host bridge: Motorola MPC106 [Grackle] (rev 40)
00:0d.0 0200: 1186:1300 (rev 10)
	00:0d.0 Ethernet controller: D-Link System Inc RTL8139 Ethernet (rev  
10)

00:0e.0 0100: 1191:0009 (rev 06)
00:0e.0 SCSI storage controller: Artop Electronic Corp ATP865 (rev 06)
00:0f.0 0604: 3388:0021 (rev 13)
	00:0f.0 PCI bridge: Hint Corp HB6 Universal PCI-PCI bridge (non- 
transparent mode) (rev 13)

00:10.0 Class ff00: Apple Computer Inc. Heathrow Mac I/O (rev 01)
00:10.0 ff00: 106b:0010 (rev 01)
00:12.0 0300: 1002:4754 (rev 9a)
	00:12.0 VGA compatible controller: ATI Technologies Inc 3D Rage I/II  
215GT [Mach64 GT] (rev 9a)

01:08.0 0c03: 1033:0035 (rev 41)
01:08.0 USB Controller: NEC Corporation USB (rev 41)
01:08.1 0c03: 1033:0035 (rev 41)
01:08.1 USB Controller: NEC Corporation USB (rev 41)
01:08.2 0c03: 1033:00e0 (rev 02)
01:08.2 USB Controller: NEC Corporation USB 2.0 (rev 02)
01:0b.0 0c00: 104c:8020
	01:0b.0 FireWire (IEEE 1394): Texas Instruments TSB12LV26 IEEE-1394  
Controller (Link)

debian:~#


Partitions: df -Tl will do; the raw partition table is preferred
debian:~# parted /dev/hdc
GNU Parted 1.6.25.1
Copyright (C) 1998 - 2005 Free Software Foundation, Inc.
	This program is free software, covered by the GNU General Public  
License.


	This program is distributed in the hope that it will be useful, but  
WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU  
General Public License for more details.


Using /dev/hdc
(parted) unit s
(parted) p
Disk geometry for /dev/hdc: 0s - 12594959s
Disk label type: mac
	Number  Start   End SizeFile system  Name   
Flags

1   1s  63s 63s  Apple
2   64s 117s54s  Macintosh
3   118s191s74s  Macintosh
4   192s703s512s Macintosh
5   704s1215s   512s Patch Partition
6   1216s   12594949s 12593734s hfs+ untitled
(parted) select /dev/hde
Using /dev/hde
(parted) p
Error: The partition's data region doesn't occupy the entire partition.
Ignore/Cancel? i
Error: The partition's data region doesn't occupy the entire partition.
Ignore/Cancel? i
Disk geometry for /dev/hde: 0s - 160836479s
Disk label type: mac
	Number  Start   End SizeFile system  Name   
Flags

1   1s  63s 63s  Apple
2   64s 117s54s  Macintosh
3   118s191s74s  Macintosh
4   192s703s512s Macintosh
5   704s1215s   512s Macintosh_SL
6   1216s   6145215s 6144000s hfs+ untitled
	7   6145216s 25676466s 19531251s ext3  

Bug#378597: liblip: FTBFS: bashisms

2006-07-17 Thread Julien Danjou
Package: liblip
Version: 1.2-3
Severity: important

Hello,

There was a problem while autobuilding your package:

 Automatic build of liblip_1.2-3 on avidan by sbuild/i386 0.48
 Build started at 20060717-1900
 **

 cd shared/lib  strip --remove-section=.comment --remove-section=.note 
 --strip-unneeded liblip.so.1.0.2
 cd static/lib  strip --strip-debug liblip.a
 mv shared/lib/liblip.so.* debian/liblip1/usr/lib
 mv shared/lib/liblip.so debian/liblip-dev/usr/lib 
 mv shared/lib/liblip.la debian/liblip-dev/usr/lib 
 mv static/lib/liblip.a debian/liblip-dev/usr/lib  
 sed s/^#include \forest.h\/#include lip\/forest.h/ 
 static/include/interpol.h  debian/liblip-dev/usr/include/lip/interpol.h
 sed s/^#include \memblock.h\/#include lip\/memblock.h/ 
 static/include/forest.h  debian/liblip-dev/usr/include/lip/forest.h
 mv static/include/{intwrapper,memblock}.h debian/liblip-dev/usr/include/lip
 mv: cannot stat `static/include/{intwrapper,memblock}.h': No such file or 
 directory
 make: *** [binary-arch] Error 1
 **

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#378592: qemu: -smb only works if supervisor

2006-07-17 Thread Francesco Potorti`
sudo qemu -localtime -smb ~/qemu -usb -soundhw sb16 -fda floppy.img -cdrom 
/dev/cdrom -m 64 w98.img

If I omit the sudo, then I get no errors, but Windows 98 inside says
it cannot access the network.

I just discovered two more things:

- even with sudo, I can write to the directory only if it and the files
  are writable by all

- without sudo, I find an smbd core dump in the directory: so smbd is
  the culprit!


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



Bug#359328: xserver-xorg-video-i810: Bug also confirmed here

2006-07-17 Thread Daniel R.
Package: xserver-xorg-video-i810
Version: 1:1.5.1.0-2
Followup-For: Bug #359328


I confirm this bug also happens to me.

I am running debian testing (etch) on an HP Pavilion ze4944ea 
(Intel Centrino 1.4Ghz), with 82852/855GM Integrated Graphics Device.

I realized this bug happened because the stellarium application
ran very slowly (after upgrading this package): fps  1 as indicated
by the application's UI.

In order to solve my problem I have followed these steps:

1. I have upgraded my kernel from 2.6.15-1-686 (debian testing) to 2.6.17.6:

   A cat /var/log/Xorg.0.log | grep dri command reported that 
   a higher version of kernel modules was required.

2. I replaced the i810_drv.so and i915_dri.so files (in their corresponding 
   locations under /usr/lib/) in my system with those from 
   http://dri.freedesktop.org/snapshots/i915-20060403-linux.i386.tar.bz2 
   as described above.

Now I have direct rendering, and the stellarium application reports about
25fps in its UI.

However I also get the warnings when running LIBGL_DEBUG=verbose glxinfo:

libGL: XF86DRIGetClientDriverName: 1.5.1 i915 (screen 0)
libGL: OpenDriver: trying /usr/lib/dri/i915_dri.so
drmOpenByBusid: Searching for BusID pci::00:02.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 4, (OK)
drmOpenByBusid: drmOpenMinor returns 4
drmOpenByBusid: drmGetBusid reports pci::00:02.0
libGL warning: 3D driver claims to not support visual 0x23
libGL warning: 3D driver claims to not support visual 0x25
libGL warning: 3D driver claims to not support visual 0x27
libGL warning: 3D driver claims to not support visual 0x29
libGL warning: 3D driver claims to not support visual 0x2b
libGL warning: 3D driver claims to not support visual 0x2d
libGL warning: 3D driver claims to not support visual 0x2f
libGL warning: 3D driver claims to not support visual 0x31
libGL error: 
Can't open configuration file /etc/drirc: No such file or directory.
libGL error: 
Can't open configuration file /home/daniel/.drirc: No such file or
directory.
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
GLX_EXT_import_context, GLX_OML_swap_method, GLX_SGI_make_current_read, 
GLX_SGIS_multisample, GLX_SGIX_hyperpipe, GLX_SGIX_swap_barrier, 
GLX_SGIX_fbconfig
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, 
GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, 
GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control, 
GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, 
GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group
GLX version: 1.2
GLX extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, 
GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, 
GLX_SGI_make_current_read, GLX_SGI_video_sync, GLX_SGIS_multisample, 
GLX_SGIX_fbconfig
OpenGL vendor string: Tungsten Graphics, Inc
OpenGL renderer string: Mesa DRI Intel(R) 852GM/855GM 20050225 x86/MMX/SSE2
OpenGL version string: 1.3 Mesa 6.5
OpenGL extensions:
GL_ARB_imaging, GL_ARB_multisample, GL_ARB_multitexture, 
GL_ARB_point_parameters, GL_ARB_texture_border_clamp, 
GL_ARB_texture_compression, GL_ARB_texture_cube_map, 
GL_ARB_texture_env_add, GL_ARB_texture_env_combine, 
GL_ARB_texture_env_crossbar, GL_ARB_texture_env_dot3, 
GL_ARB_texture_mirrored_repeat, GL_ARB_texture_rectangle, 
GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object, 
GL_ARB_vertex_program, GL_ARB_window_pos, GL_EXT_abgr, GL_EXT_bgra, 
GL_EXT_blend_color, GL_EXT_blend_equation_separate, 
GL_EXT_blend_func_separate, GL_EXT_blend_minmax, GL_EXT_blend_subtract, 
GL_EXT_clip_volume_hint, GL_EXT_cull_vertex,
GL_EXT_compiled_vertex_array, 
GL_EXT_convolution, GL_EXT_copy_texture, GL_EXT_draw_range_elements, 
GL_EXT_fog_coord, GL_EXT_histogram, GL_EXT_multi_draw_arrays, 
GL_EXT_packed_pixels, GL_EXT_point_parameters, GL_EXT_polygon_offset, 
GL_EXT_rescale_normal, GL_EXT_secondary_color, 
GL_EXT_separate_specular_color, GL_EXT_stencil_wrap, GL_EXT_subtexture, 
GL_EXT_texture, GL_EXT_texture3D, GL_EXT_texture_edge_clamp, 
GL_EXT_texture_env_add, GL_EXT_texture_env_combine, 
GL_EXT_texture_env_dot3, GL_EXT_texture_filter_anisotropic, 
GL_EXT_texture_lod_bias, GL_EXT_texture_object,
GL_EXT_texture_rectangle, 
GL_EXT_vertex_array, GL_3DFX_texture_compression_FXT1, 
GL_APPLE_client_storage, GL_APPLE_packed_pixels, 
GL_ATI_blend_equation_separate, GL_IBM_rasterpos_clip, 

Bug#357603: Please unblock testing migration of postgresql-7.4

2006-07-17 Thread Thiemo Seufer
Thiemo Seufer wrote:
[snip]
   Thank you for trying this out. However, I'm sceptical: postgresql-8.1
   still gives the same error when built with gcc-4.1:
   
 
   http://buildd.debian.org/fetch.php?pkg=postgresql-8.1ver=8.1.4-4arch=mipsstamp=1152713470file=logas=raw
 
   http://buildd.debian.org/fetch.php?pkg=postgresql-8.1ver=8.1.4-4arch=mipselstamp=1152713545file=logas=raw
   
   So maybe the buildds run some different package versions.
  
  I did a rebuild on unstable/mips, no failures, packages install fine,
  postmaster process runs. So the failure might be related to the buildd
  environment.
 
 It seems to be kernel related, a build on a 2.6.12 64bit kernel shows
 bus errors.

The bus error happens immediately at startup when writing a double to
unaligned address. I'll have to test if the binary was miscompiled
(due to kernel differences?!), or if the kernel is supposed to handle
this better.


Thiemo


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



Bug#374986: tested patch, still crashes

2006-07-17 Thread Robert Millan
On Mon, Jul 17, 2006 at 02:06:21PM +0200, Michel Dänzer wrote:
 On Tue, 2006-07-04 at 20:12 +0200, Robert Millan wrote:
  Tried with radeon-force-some-clocks.diff, twice.  One of the times I got 
  much
  further (I could actualy play the game, rather than only reach the menus), 
  but
  it also crashed after a very short time (1/2 minutes).  The second time it 
  just
  crashed in the menus as usual.
 
 You're probably hitting a different issue then. Please try Mesa CVS or
 at least libg11-mesa-dri from experimental.

With libgl1-mesa-dri from experimental (6.5.0.cvs.20060524-1), I get it to work
for quite longer (at least, this is my subjective impression), but it still
crashes at some point.  I couldn't capture any logs as they weren't synced to
disk.

With Mesa CVS, Xorg.log claims that direct rendering is enabled, but glxinfo
says otherwise.  xmoto seems to agree with that (no crash, and gameplay horribly
slow).  My Xorg.log for this attempt is attached.

-- 
Robert Millan

My spam trap is [EMAIL PROTECTED]  Note: this address is only intended for
spam harvesters.  Writing to it will get you added to my black list.


Xorg.0.log.gz
Description: Binary data


Bug#359558: diff for 1.00-8.1 NMU

2006-07-17 Thread Amaya
Package: pmtools
Version: 1.00-8
Severity: normal
Tags: patch

Hi,

Attached is the diff for my pmtools 1.00-8.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u pmtools-1.00/debian/changelog pmtools-1.00/debian/changelog
--- pmtools-1.00/debian/changelog
+++ pmtools-1.00/debian/changelog
@@ -1,3 +1,10 @@
+pmtools (1.00-8.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359558).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 19:50:30 +0200
+
 pmtools (1.00-8) unstable; urgency=low
 
   * update debian/rules, don't install spurious .packlist
@@ -50,3 +56,0 @@
-Local variables:
-mode: debian-changelog
-End:
only in patch2:
unchanged:
--- pmtools-1.00.orig/debian/postinst
+++ pmtools-1.00/debian/postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/pmtools -a -d /usr/share/doc/pmtools 
]; then
+rm -f /usr/doc/pmtools
+fi
+fi
+
+#DEBHELPER#


Bug#378602: bluez-utils: doesn't detect bluetooth device in 2005 PowerBook G4 12

2006-07-17 Thread Wolfram Quester
Package: bluez-utils
Version: 3.1-1
Severity: important

Hi altogether!

Since the last update the internal bluetooth device of my PowerBook G4
12 isn't found by hcitool dev after a reboot anymore. This is with
versions 3.1-1 and 3.1-2 from incoming. If I install 2.25-1 from testing
the device is found again, even if I upgrade to 3.1. Having 3.1
installed it fails to detect the device again after a reboot.

Thanks,

Wolfi


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

Versions of packages bluez-utils depends on:
ii  libbluetooth1  2.25-2Library to use the BlueZ Linux Blu
ii  libc6  2.3.6-15  GNU C Library: Shared libraries
ii  libdbus-1-20.62-4simple interprocess messaging syst
ii  libusb-0.1-4   2:0.1.12-2userspace USB programming library
ii  lsb-base   3.1-10Linux Standard Base 3.1 init scrip
ii  makedev2.3.1-82  creates device files in /dev
ii  module-init-tools  3.2.2-3   tools for managing Linux kernel mo
ii  modutils   2.4.27.0-6Linux module utilities
ii  sysvinit   2.86.ds1-14.1 System-V-like init utilities

bluez-utils recommends no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#374986: tested patch, still crashes

2006-07-17 Thread Robert Millan

I forgot to mention that, in order to get Mesa CVS building, I disabled
r200 driver that required a version of libdrm not yet present in debian.  I
suppose this shouldn't be relevant (my card is r300).

-- 
Robert Millan

My spam trap is [EMAIL PROTECTED]  Note: this address is only intended for
spam harvesters.  Writing to it will get you added to my black list.


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



Bug#378446: pairing seems not to be fixed with 3.1-2

2006-07-17 Thread Johannes Raspe
Pairing still does not work with 3.1-2. My mobile phone doesn't see the PC and 
pairing requests from th PC to the phone fail without any request for a 
passkey.
After downgrading to 2.25-1 the phone finds the PC and pairing works.

Everything seems to work fine with the new version and an already paired 
device (e.g. wammu finds the phone).

Johannes
-- 
Johannes Raspe - [EMAIL PROTECTED]
GnuPG-Key ID: D342E105
Fingerprint: D681 F800 FB2D 913E D14C 1F17 C3DB B1F1 D342 E105


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



Bug#378601: problems with multiple groups in contact list; fixed upstream.

2006-07-17 Thread Andrew Sveikauskas

Package: grouch.app
Version: 0.20060516-1

The version of Grouch.app that is in Debian has trouble with contact 
lists with multiple groups.  If your list has 2 groups and group 1 has 
N users, up to N users of group 2 may not appear.


This has been fixed upstream:
http://mail.rochester.edu/~asveikau/grouch/grouch-src-20060713.tar.gz



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



Bug#359561: diff for 1.03-2.1 NMU

2006-07-17 Thread Amaya
Package: ras
Version: 1.03-2
Severity: normal
Tags: patch

Hi,

Attached is the diff for my ras 1.03-2.1 NMU.

-- 
  ·''`.  Policy is your friend. Trust the Policy.
 : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius
 `. `'   Proudly running unstable Debian GNU/Linux
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com
diff -u ras-1.03/debian/changelog ras-1.03/debian/changelog
--- ras-1.03/debian/changelog
+++ ras-1.03/debian/changelog
@@ -1,3 +1,10 @@
+ras (1.03-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Get rid of the /usr/doc link in postinst (Closes: #359561).
+
+ -- Amaya Rodrigo Sastre [EMAIL PROTECTED]  Mon, 17 Jul 2006 20:10:57 +0200
+
 ras (1.03-2) unstable; urgency=low
 
   * New maintainer email.
only in patch2:
unchanged:
--- ras-1.03.orig/debian/postinst
+++ ras-1.03/debian/postinst
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ $1 = configure ]; then
+if [ -d /usr/doc -a -h /usr/doc/ras -a -d /usr/share/doc/ras ]; then
+rm -f /usr/doc/ras
+fi
+fi
+
+#DEBHELPER#


Bug#369977: original example

2006-07-17 Thread Joachim Reichel
Hi,

the package that triggered this bug has now entered the archive (libcgal-dev, 
non-free).

$ file /usr/bin/cgal_create_makefile
/usr/bin/cgal_create_makefile: awk script text

Joachim


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



Bug#378599: [m68k] gcc-4.1 -O2 optimization problem

2006-07-17 Thread Stephen R Marenka
Package: gcc-4.1
Version: 4.1.1-8
Severity: important

gcc-4.1 seems to have an optimization problem at -O2 and -O1. If I
compile libgc -O2, then one of the tests segfaults. If I compile it -O0
then the self-tests run fine.

binutils showed a strange linker error until recompiled with -O0.

We now have about sixteen packages that end up with a segfault or an
illegal instruction. I haven't tried recompiling all these to verify that 
this is the same problem, but I will if it will help.

The problem is I have no idea how to isolate this bug. I'd be happy to
perform any tests you can direct or we can get you access to m68k
hardware if necessary.

In the meantime maybe it would be good to have gcc build itself or at 
least the bootstrap compiler -O0?

Thanks,

Stephen

-- 
Stephen R. Marenka If life's not fun, you're not doing it right!
[EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#378600: grubconf: Old libtool, links against indirect dependencies

2006-07-17 Thread Andreas Metzler
Package: grubconf
Version: 0.5.1-4
Severity: minor

Hej,
grubconf uses a old version of libtool and therefore links against
indirect dependencies, debdiff on freshly built versions with old and
new libtool looks like this:

Depends: libart-2.0-2 (= 2.3.16), libatk1.0-0 (= 1.12.1), [-libaudiofile0 (= 
0.2.3-4), libavahi-client3 (= 0.6.0), libavahi-common3 (= 0.6.10), 
libavahi-glib1 (= 0.6.0),-] libbonobo2-0 (= 2.13.0), libbonoboui2-0 (= 
2.5.4), libc6 (= 2.3.6-6), libcairo2 (= 1.2.0), [-libdbus-1-2 (= 0.62), 
libesd0 (= 0.2.35) | libesd-alsa0 (= 0.2.35),-] libfontconfig1 (= 2.3.0), 
[-libfreetype6 (= 2.2),-] libgconf2-4 (= 2.13.5), [-libgcrypt11 (= 1.2.2),-] 
libglib2.0-0 (= 2.10.0), libgnome-keyring0 (= 0.4.3), libgnome2-0 (= 
2.14.1), libgnomecanvas2-0 (= 2.11.1), libgnomeui-0 (= 2.13.0), 
libgnomevfs2-0 (= 2.13.92), [-libgnutls13 (= 1.4.0-0), libgpg-error0 (= 
1.2),-] libgtk2.0-0 (= 2.8.0), libice6, [-libjpeg62,-] liborbit2 (= 
1:2.10.0), libpango1.0-0 (= 1.12.3), [-libpng12-0 (= 1.2.8rel),-] libpopt0 
(= 1.10), libsm6, [-libtasn1-3 (= 0.3.4),-] libx11-6, libxcursor1 ( 1.1.2), 
libxext6, libxfixes3, libxi6, libxinerama1, libxml2 (= 2.6.26), libxrandr2, 
libxrender1, [-zlib1g (= 1:1.2.1),-] grub (= 0.93+cvs20030224-2)

This got rid of libaudiofile0 libavahi-glib libdbus-1-2 libesd0
libfreetype6 libgcrypt11 libgnutls13 libgpg-error0 libjpeg62
libpng12-0 libtasn1-3 and zlib1g 

I only did a quick-and-dirty relibtoolizing (libtoolize -c -f;
aclocal1.9; automake1.9 --add-missing -c -f ; autoconf) for testing
purposes. Producing a package ready for upload will require quite a bit
more work.

cu andreas



Bug#344734: intent to hijack python-paramiko

2006-07-17 Thread martin f krafft
1.6.1 is now upstream, and #344734 is over half a year old. Unless
we hear from the maintainer (Jeremy Bouse, on CC to be sure) by the
end of this week, we will take over the package as it's blocking bzr
0.9, which is to be released RSN. Wouter van Heyst would be the new
maintainer and I'd sponsor.

We'll also upload 1.6.1-0.1 to experimental during the week to make
things easier for us.

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. 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


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


Bug#344734: intent to hijack python-paramiko

2006-07-17 Thread Martin Michlmayr
* martin f krafft [EMAIL PROTECTED] [2006-07-17 19:35]:
 1.6.1 is now upstream, and #344734 is over half a year old. Unless
 we hear from the maintainer (Jeremy Bouse, on CC to be sure) by the
 end of this week, we will take over the package as it's blocking bzr

He was moving cross-country in May, so I suggest you NMU for now.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#378590: gpm: GPM init.d script should modprobe mousedev in case no mouse is plugged in.

2006-07-17 Thread Peter Samuelson

[Tim Phipps]
 I've got /dev/input/mice as my GPM mouse device (I think it was the
 default) and I'm using udev. If a mouse isn't plugged in udev does
 not load the mousedev driver at boot (which is probably correct)

Right, that's probably reasonable on udev's part.  Although, can I
assume this same behavior also affects xserver-xorg?

 A modprobe -q mousedev in the initscript if the device is
 /dev/input/mice would fix this nicely (probably just before the loop
 marked # HACK that waits for $device to appear).

Ah yes, good idea.  I mean, it's already a hack there, it's not going
to look uglier than it already does.

Thanks,
Peter


signature.asc
Description: Digital signature


Bug#353422: xserver-xorg: sometimes eyboard stops working after X starts

2006-07-17 Thread Isaac Clerencia
On Monday, 17 July 2006 18:01, Joshua N Pritikin wrote:
 On Mon, Jul 17, 2006 at 05:08:20PM +0200, Isaac Clerencia wrote:
  I've experienced this one lately and it was something related to kde
  accesibility. Try deleting ~/.kde/share/config/kaccessrc and check if
  that helps.

 That doesn't make sense. The keyboard is already non-functional before
 entering a login/password.
Ok, sorry, I didn't read the bug that thoroughly.

Best regards
-- 
Isaac Clerencia at Warp Networks, http://www.warp.es
Work: [EMAIL PROTECTED]   | Debian: [EMAIL PROTECTED]


pgpzfZACSbA8m.pgp
Description: PGP signature


Bug#378593: D-I partition manager unable to see one of two Macintosh partition tables

2006-07-17 Thread Frans Pop
reassign 378593 parted
tags 378593 + d-i
thanks

On Monday 17 July 2006 19:26, Rick Thomas wrote:
   (parted) select /dev/hde
   Using /dev/hde
   (parted) p
   Error: The partition's data region doesn't occupy the entire
 partition. Ignore/Cancel? i
   Error: The partition's data region doesn't occupy the entire
 partition. Ignore/Cancel? i
   Disk geometry for /dev/hde: 0s - 160836479s
   Disk label type: mac
   Number  Start   End SizeFile system  Name
 Flags
   1   1s  63s 63s  Apple
   2   64s 117s54s  Macintosh
   3   118s191s74s  Macintosh
   4   192s703s512s Macintosh
   5   704s1215s   512s Macintosh_SL
   6   1216s   6145215s 6144000s hfs+ untitled
   7   6145216s 25676466s 19531251s ext3
 root  root
   8   25676467s 27629592s 1953126s linux-swap
 swap  swap
   9   27629593s 47160843s 19531251s ext3 beta2
   10  47160844s 66692094s 19531251s ext3 root20060710
   11  66692095s 160836479s 94144385s  Macintosh_SL

D-I fails to recognize the disk layout, probably because of this issue.
Please advise.


pgpFcrGpGYiLa.pgp
Description: PGP signature


Bug#372734: (kein Betreff)

2006-07-17 Thread Florian Effenberger

What version do you have installed or is it trying to install?


Setting up base-config (2.53.10.1) ...
Template #30 in /var/lib/dpkg/info/base-config.templates does not 
contain a 'Template:' line

dpkg: error processing base-config (--configure):
 subprocess post-installation script returned error exit status 9
Errors were encountered while processing:
 base-config
E: Sub-process /usr/bin/dpkg returned an error code (1)




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



<    1   2   3   4   >