Bug#330506: Fixed, thanks

2006-01-25 Thread Milan
I'm really sorry for my mail, but the last upgrade (yesterday) of 
cdrecord and cdda2wav fixed to issue. I should I've tried it before 
reporting.


You may consider this bug as fixed.

Thank you for answering so quickly. ;-)


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



Bug#333778: samba cannot share files with quote in filename

2006-01-25 Thread Steve Langasek
On Wed, Jan 25, 2006 at 06:49:59PM +0100, Peter Eisentraut wrote:
 tags 333778 + confirmed
 stop

 I can confirm that something completely bizarre is going on when a file 
 name contains double quotes.  I see 'Foo  Bar' being converted to 
 'FWT8B4~Q'.  Oddly enough one can access the file just fine.  Anyone 
 got a clue?  There doesn't seem to be any obvious shell exploit hidden 
 there, FWIW.

If you can access the file ok, then the bug title seems to be wrong?

I assume the name is being mangled for sharing due to concerns over clients
failing to handle the name correctly.  But I'm not sure that it's for the
benefit of /Windows/ clients in this case.

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


signature.asc
Description: Digital signature


Bug#347701: nanourl bug

2006-01-25 Thread Steve Langasek
severity 347701 serious
thanks

On Wed, Jan 25, 2006 at 10:35:26AM -0800, stefani banerian wrote:
 severity 347701 important
 tags 347701 pending
 thanks

 justification:

 the package is usable to those not using apache2.
 for apache2 users, edits to the apache2 configuration will render the
 package usable.

If just installing the package breaks apache2, then that's not releasable at
present.

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


signature.asc
Description: Digital signature


Bug#348706: Possible patch

2006-01-25 Thread Regis Boudin
On Wed, 2006-01-25 at 16:49 +0100, Amaya wrote:
 Regis Boudin wrote:
  It looks like the problem is due to the Mesa part. Applying the
  attached patch, amaya was linked against the Xorg shared library
  during the build instead of the internally provided one. 
 
 Forgot to attach the patch maybe? :)

Oups :P

Well, it doesn't matter much, it was not the best way... Attached this
time is one passing the --with-gl flag to configure, so it links against
the system-provided libGLU instead of the included source.

Also attached, a cumulative patch, which should close #341424, #348706,
#336014, #346632, #340289, and #348705. (is that enough ?)

 Thanks for everything, you rock!

Thank you for your work, too.

By the way, for information, my mail server rejected your mail, it looks
like there is no reverse DNS entry for our IP adress.

Thanks
Regis
-- 
While a monkey can be a manager, it takes a human to be an engineer
Erik Zapletal
diff -urN amaya-9.2.1/debian/rules amaya-9.2.1.gl/debian/rules
--- amaya-9.2.1/debian/rules	2006-01-25 18:57:16.476609560 +
+++ amaya-9.2.1.gl/debian/rules	2006-01-25 18:59:52.628870808 +
@@ -40,7 +40,7 @@
 	# Add here commands to configure the package.
 	mkdir -p Amaya/WX
 	cd Amaya/WX  \
-	../configure --prefix=/usr --with-wx --with-dav \
+	../configure --prefix=/usr --with-wx --with-gl --with-dav \
 		 --enable-offical-build  \
 	cd ../..
 	# --libpng, libjpeg, libtiff (currently builtin)
diff -urN amaya-9.2.1/Amaya/configure amaya-9.2.1.gl/Amaya/configure
--- amaya-9.2.1/Amaya/configure	2005-08-13 01:29:25.0 +0100
+++ amaya-9.2.1.gl/Amaya/configure	2006-01-25 19:01:07.001564440 +
@@ -13642,7 +13642,7 @@
   # this is the flags used to build amaya with OpenGL
   GL_OPTIONS=-D_GL
   GL_INCLUDES=-I${GL_BUILDDIR}/include
-  GL_LIBRARIES=-Wl,-rpath,${GL_BUILDDIR}/lib -L${GL_BUILDDIR}/lib -lGL -lGLU
+  GL_LIBRARIES=-L${GL_BUILDDIR}/lib -lGL -lGLU
 
 
 
@@ -13703,7 +13703,7 @@
 #   --enable-unicodecompile wxString with Unicode support
 #   --with-gtk  use GTK+
 #   --with-opengl   use OpenGL (or Mesa)
-WXCONFIGURE_OPTION=--with-opengl --with-gtk --enable-gtk2 --enable-unicode --enable-ipc --disable-shared  --with-libpng=builtin --with-libjpeg=builtin --with-libtiff=builtin $WXCONFIGURE_TUNNING_OPTION
+WXCONFIGURE_OPTION=--with-opengl --with-gtk --enable-gtk2 --enable-unicode --enable-ipc --disable-shared  --with-libpng=builtin --with-libjpeg=builtin --with-libtiff=builtin $WXCONFIGURE_TUNNING_OPTION --disable-rpath
   fi
   if test $AMAYAOS = MACOSX ; then
 # MACOSX
diff -urN amaya-9.2.1/debian/control amaya-9.2.1.gl/debian/control
--- amaya-9.2.1/debian/control	2006-01-25 18:57:16.470610472 +
+++ amaya-9.2.1.gl/debian/control	2006-01-25 19:01:19.517661704 +
@@ -2,7 +2,7 @@
 Section: web
 Priority: optional
 Maintainer: Anand Kumria [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), automake1.7, libgtk2.0-dev, libpng12-dev, libjpeg62-dev, xlibs-dev ( 4.1.0), libglu1-xorg-dev, xutils
+Build-Depends: debhelper (= 4.0.0), automake1.7, libgtk2.0-dev, libpng12-dev, libjpeg62-dev, libglu1-xorg-dev, libxt-dev, libxxf86vm-dev, libfreetype6-dev, xutils
 Standards-Version: 3.6.2.1
 
 Package: amaya
diff -urN amaya-9.2.1/debian/rules amaya-9.2.1.gl/debian/rules
--- amaya-9.2.1/debian/rules	2006-01-25 18:57:16.476609560 +
+++ amaya-9.2.1.gl/debian/rules	2006-01-25 19:01:03.005171984 +
@@ -40,7 +40,7 @@
 	# Add here commands to configure the package.
 	mkdir -p Amaya/WX
 	cd Amaya/WX  \
-	../configure --prefix=/usr --with-wx --with-dav \
+	../configure --prefix=/usr --with-wx --with-gl --with-dav \
 		 --enable-offical-build  \
 	cd ../..
 	# --libpng, libjpeg, libtiff (currently builtin)
@@ -58,7 +58,7 @@
 
 	# Add here commands to compile the arch part of the package.
 	cd Amaya/WX  \
-	$(MAKE) CFLAGS=$(CFLAGS)  \
+	HOME=$(CURDIR)/Amaya/WX $(MAKE) CFLAGS=$(CFLAGS)  \
 	cd ../..
 	touch build-arch-stamp
 
diff -urN amaya-9.2.1/wxWidgets/src/gtk/window.cpp amaya-9.2.1.gl/wxWidgets/src/gtk/window.cpp
--- amaya-9.2.1/wxWidgets/src/gtk/window.cpp	2005-08-13 01:29:47.0 +0100
+++ amaya-9.2.1.gl/wxWidgets/src/gtk/window.cpp	2006-01-25 19:01:15.519269552 +
@@ -4280,12 +4280,10 @@
 return gtk_widget_get_pango_context( m_widget );
 }
 
+// MR: Returns the same as GtkGetPangoDefaultContext until the symbol can be removed in 2.7.x
 PangoContext *wxWindowGTK::GtkGetPangoX11Context()
 {
-if (!m_x11Context)
-m_x11Context = pango_x_get_context( gdk_display );
-
-return m_x11Context;
+return gtk_widget_get_pango_context( m_widget );
 }
 #endif
  


Bug#349820: Processed: Re: Bug#349820: The ftp.is.debian.org mirror is out of date

2006-01-25 Thread Adam D. Barratt
On Wed, 2006-01-25 at 20:01 +, MJ Ray wrote:
 Has this been done or at least forwarded? I couldn't see the problem.

I forwarded the report to [EMAIL PROTECTED]; I'm assuming it should have
been [EMAIL PROTECTED]

Having just had a quick look at the mirror's contents, I have to admit
they look fine to me as well. tbh, I was mostly working on the basis
that mirrors was a more appropriate pseudo-package for a mirror problem
than ftp.d.o :)

Cheers,

Adam


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



Bug#349904: gsnes9x: amd64 missing among archs

2006-01-25 Thread Roberto Pariset
Package: gsnes9x
Version: 3.12-8
Severity: normal

Please add amd64 to the arch list or list gsnes9x among
Packages-arch-specific. Thanks,
Roberto

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to [EMAIL PROTECTED])


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



Bug#317082: Not just a dpkg bug

2006-01-25 Thread Frank Lichtenheld
On Wed, Jan 25, 2006 at 01:18:55PM -0500, Joey Hess wrote:
 BTW, dpkg-shlibdeps -l does not seem to be documented in its manual page
 or help text ATM.

I was talking about dh_shlibdeps -l and the LD_LIBRARY_PATH handling in
dpkg-shlibdeps. dpkg-shlibdeps has indeed no -l option. Sorry if that
was confusing.

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Bug#349905: /usr/share/initramfs-tools/hooks/evms not executable

2006-01-25 Thread Martin Waitz
Package: evms
Version: 2.5.4-4
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

hoi :)

the file /usr/share/initramfs-tools/hooks/evms is mode 0644 and is thus
not used by mkinitramfs when creating a new initramfs.

After chmod +x, the initramfs was generated correctly again on my
system.

- -- Package-specific info:

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

Versions of packages evms depends on:
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libevms-2.5   2.5.4-4Enterprise Volume Management Syste

Versions of packages evms recommends:
ii  evms-cli  2.5.4-4Enterprise Volume Management Syste
ii  evms-ncurses  2.5.4-4Enterprise Volume Management Syste

- -- no debconf information

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

iD8DBQFD1+IUj/Eaxd/oD7IRAikCAJ45YhVabRYzp3npxC/aj3p8/D9VngCfcA1m
OAe058pP1YgI0CZtyBlYM2U=
=wjFD
-END PGP SIGNATURE-


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



Bug#349906: nc.1.gz: EOF local or remote

2006-01-25 Thread Dan Jacobson
X-Debbugs-Cc: [EMAIL PROTECTED]
Package: netcat
Version: 1.10-29
Severity: wishlist
File: /usr/share/man/man1/nc.1.gz

Man page says:
  -q seconds   after  EOF  is detected, wait the specified number of sec-
onds and then quit.
Mention if this means a local EOF, remote EOF or both, etc.


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



Bug#349907: man2html: \(lq, \(rq rendered as lq, rq

2006-01-25 Thread Dan Jacobson
X-debbugs-CC: [EMAIL PROTECTED]
Package: man2html
Version: 1.6-3
Severity: normal
Tags: upstream

We can see that \(lq, \(rq are passed straight through!:
$ p=$(man -w xorg.conf)
$ zcat $p|man2html -|grep lq|sed q
is a relative path (with no lq..rq components) specified with the
$ zcat $p|grep lq|sed q
is a relative path (with no \(lq..\(rq components) specified with the


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



Bug#349908: xserver-xorg: document what 'DDC' stands for

2006-01-25 Thread Dan Jacobson
Package: xserver-xorg
Version: 6.8.2.dfsg.1-11
Severity: wishlist
Tags: upstream

It doesn't seem to be documented anywhere in the package what the
acronym DDC stands for.
Had to do
$ apropos DDC
to find the answer in /usr/share/man/man1/get-edid.1.gz

Anyway, make sure the user can find out what each possible
'Section Module' item is all about.

P.S.
$ man xorg.conf
   Clocks  clock ...
  specifies the pixel that are on your graphics board.

the pixel that are on your graphics board??


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



Bug#349909: cruft: no /var/lib/dpkg/info/*.extrafiles these days

2006-01-25 Thread Dan Jacobson
Package: cruft
Version: 0.9.6-0.4
Severity: wishlist

I notice there are seems to be no /var/lib/dpkg/info/*.extrafiles
these days. Maybe cruft should be revised to take this into account.


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



Bug#349910: apt-cache rdepends, showpkg call Suggests Depends

2006-01-25 Thread Dan Jacobson
Package: apt
Version: 0.6.43
Severity: normal
File: /usr/bin/apt-cache

Pending fixing this bug, the apt-cache manpage should warn that
showpkg and rdepends lump what are really Reverse Suggests, Reverse
Recommends, into Reverse Depends, calling all Reverse Depends.

Using showpkg B, or rdepends B, the user thinks e.g., gosh, A depends
on B, so I had better not think of removing B, when all along A
merely suggests B. Indeed unless he uses show A or depends A he
will go on for years, afraid to remove B.

P.S., the man page also says:
  For the specific meaning of the remainder of the output
  it is best to consult the apt source code.
But many users don't have source installed, etc.

And mention what | in this output means,
$ apt-cache rdepends debconf|grep \||wc -l
684

Also mention that e.g.,
   depends pkg(s)
  depends shows a listing of each dependency a package has and all
  the possible other packages that can fulfill that dependency.
shows Suggests and Recommends too, or establish separate 'suggests'
and 'recommends' commands. Perhaps also rsuggests, rrecommends?


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



Bug#349911: man snownews: incorporate README.colors

2006-01-25 Thread Dan Jacobson
Package: snownews
Version: 1.5.6.1-2.1
Severity: minor

The man page doesn't say how to turn off the colors.
Whatever I write in ~/.snownews/colors gets ignored and overwritten.
Oh, you should put README.colors into the man page.
And in each ~/.snownews/* put warnings about exactly what one can
change without it getting overwritten.
One only sees a Do not change buried deep elsewhere in the man page.

P.S., we see
README.Debian:7:b) auto-update check is disabled.
However if you don't say this on the manpage too, users will be going
nuts trying to turn it off.

Suggest to upstream that this be off by default, as that seems a habit
from Windows land, etc.

P.S., snownews said it couldn't parse
http://feeds.feedburner.com/~d/styles/rss2full.xsl .
As I am just a RSS beginner, I don't know who is to blame. Maybe me.

Also the 'i' key for 'info' should be usable at the top level screen
without having to first enter the page we want info about.


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



Bug#349912: please ship NEWS

2006-01-25 Thread Robert Bihlmeyer
Package: syslog-ng
Version: 1.9.8.1
Severity: wishlist

The upstream tarball includes a NEWS file, it would be nice if you installed
that into /usr/share/doc/syslog-ng.

TIA,
Robbe


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



Bug#349913: lynx-cur: DEFAULT_EDITOR:emacs +%l

2006-01-25 Thread Dan Jacobson
Package: lynx-cur-wrapper
Version: 2.8.6-17
Severity: wishlist
File: /usr/bin/lynx-cur
Tags: upstream

Regarding DEFAULT_EDITOR and
 e - Edit the current file

Well it would be neat to be able to pass it the current line number;
man emacs says
   +number Go  to  the  line  specified  by  number (do not insert a space
   between the + sign and the number).
As for ed, one would need to do e.g., 'ed\n654\n' perhaps to start on line 654.

So one should be able to do
DEFAULT_EDITOR:emacs +%l
as for ed, I'm not sure.


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



Bug#349914: atokx2: FTBFS on amd64: i386 only?

2006-01-25 Thread Roberto Pariset
Package: atokx2
Version: 17.0-2.0-4
Severity: normal

Hi,
atokx2 FTBFS on amd64. I am not sure but it's probably a i386 as atokx... 
if it really is i386 only please add it to Packages-arch-specific (as
atokx). Otherwise allow amd64 in the arch list. Thanks,
Roberto

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to [EMAIL PROTECTED])


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



Bug#349915: Buffer I/O error error=0x34 error=0x51

2006-01-25 Thread LANCE ASHENHURST





Package: cdrom
Image version: Debian Linux 3.1r1 i386 from 
Edmunds-enterprizes.com
Machine: eMachine T3103, ACPI 
Uniprocessor
Processor: AMD Sempron 3100+ 1.8 
GHz
Memory: 448 MB
Partitions:df -Tl File 
system Type 
1K-blocks Used 
Avail. Use%
/dev/hda3 
ext3 16057924 580640 
14661584 4%
 
tmpfs 
tmpfs 
225640 
0%

Output lspci: I got more than a screen full of 
firewire,IDE,USB etc. about host controllers.
 lspci 
-n: screen load of :00:10.4 0c03:1106:3104 (rev 86) etc.. 
I dont know what is being asked for here. I'm a newby.

System Install checklist

Initial Boot 
Worked: O
configure network 
HW:O
config. 
network: 
O
detect 
network:O
load intaller 
mods. E 
linux ide=nodma O
detect 
hardrives: 
O
Partition 
hardrives: 
O Being forced to use, linux ide=nodma, I probably didn't do this 
right. (too much detail for me in expert mode)
crfeate file 
system:O
mount 
partitions: 
O correctly?
install base 
syst.: E 

install boot 
loader: 
O
reboot: 
O

Comments/Problems: When doing install base 
systems, there was continious scrolling of -" hde media error (bad 
sector) drive ready seek complete error.
Buffer I/O error error=0x34 
status=51". After much reading about using BIOS to slow down CD reader I 
figured this is out of my ability to fix. I did do two 
integrity checks( MD5?). The first one gave 
me an error with a mozilla file, the next one gave me an error on another file, 
so I don't trust it. The installer hung on jfsutils-udeb file every 
time. Also, I tried to apt-get install installation-report reportbug, this 
did not work.







Bug#349916: siptoolbox: bad dependency on animal-dev

2006-01-25 Thread Roberto Pariset
Package: siptoolbox
Version: 0.3.99rc2alpha3-2
Severity: important
Justification: fails to build from source

Hi,
siptoolbox depends on animal-dev. Maybe it should depend on
libanimal-dev instead? It FTBFS on many archs. Thanks,
Roberto

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to [EMAIL PROTECTED])


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



Bug#349917: epiphany-browser: Can't display SVG images

2006-01-25 Thread Sam Morris
Package: epiphany-browser
Version: 1.8.3-3
Severity: normal

When I load http://code.google.com/webstats/2005-12/pages.html I get a
dialog box, saying

 The Libart/Freetype SVG rendering engine could not
 initialize the freetype library. Please go to
 http://www.mozilla.org/projects/fonts/unix/enabling_truetype.html and
 follow steps 2-7.

The images on the page are all drawn as black boxes.

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.15-1-k7
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages epiphany-browser depends on:
ii  gconf2 2.12.1-8  GNOME configuration database syste
ii  gnome-icon-theme   2.12.1-2  GNOME Desktop icon theme
ii  iso-codes  0.44-1ISO language, territory, currency 
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.10.3-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.8.1-2   Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.10.1-1  The Bonobo UI library
ii  libc6  2.3.5-8   GNU C Library: Shared libraries an
ii  libcairo2  1.0.2-3   The Cairo 2D vector graphics libra
ii  libdbus-1-20.60-5simple interprocess messaging syst
ii  libdbus-glib-1-2   0.60-5simple interprocess messaging syst
ii  libfontconfig1 2.3.1-2   generic font configuration library
ii  libgcc11:4.0.2-5 GCC support library
ii  libgconf2-42.12.1-8  GNOME configuration database syste
ii  libglade2-01:2.5.1-2 library to load .glade files at ru
ii  libglib2.0-0   2.8.5-1   The GLib library of C routines
ii  libgnome-desktop-2 2.12.2-2  Utility library for loading .deskt
ii  libgnome2-02.12.0.1-4The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.12.0-2  A powerful object-oriented display
ii  libgnomeprint2.2-0 2.12.1-3  The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0   2.12.1-2  GNOME 2.2 print architecture User 
ii  libgnomeui-0   2.12.0-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.12.2-5  GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.10-1  The GTK+ graphical user interface 
ii  libice66.9.0.dfsg.1-4Inter-Client Exchange library
ii  liborbit2  1:2.12.4-1libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.10.2-1  Layout and rendering of internatio
ii  libpopt0   1.7-5 lib for parsing cmdline parameters
ii  libsm6 6.9.0.dfsg.1-4X Window System Session Management
ii  libstartup-notificatio 0.8-1 library for program launch feedbac
ii  libstdc++6 4.0.2-5   The GNU Standard C++ Library v3
ii  libx11-6   6.9.0.dfsg.1-4X Window System protocol client li
ii  libxcursor11.1.3-1   X cursor management library
ii  libxext6   6.9.0.dfsg.1-4X Window System miscellaneous exte
ii  libxi6 6.9.0.dfsg.1-4X Window System Input extension li
ii  libxinerama1   6.8.2.dfsg.1-11   X Window System multi-head display
ii  libxml22.6.23.dfsg.1-0.1 GNOME XML library
ii  libxrandr2 6.9.0.dfsg.1-4X Window System Resize, Rotate and
ii  libxrender11:0.9.0.2-1   X Rendering Extension client libra
ii  libxslt1.1 1.1.15-2  XSLT processing library - runtime 
ii  mozilla-browser2:1.7.12-1The Mozilla Internet application s
ii  mozilla-psm2:1.7.12-1The Mozilla Internet application s
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#349918: New upstream version available (1.3.7)

2006-01-25 Thread Lukas Fittl
Package: lyx
Version: 1.3.6-1.1
Severity: wishlist

There is a new upstream version available (1.3.7) at http://www.lyx.org/

If possible, please package this version.

TIA
Lukas



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



Bug#349919: dak: jennifer as patched in this package (not upstream) dies on maintainer names with a ', '

2006-01-25 Thread Frederic Daniel Luc LEHOBEY
Package: dak
Version: 1.0-8
Severity: normal

Hi,

jennifer dies in the following way for a maintainer name with a ',':

Traceback (most recent call last):
  File /usr/bin/jennifer, line 1160, in process_it
action();
  File /usr/bin/jennifer, line 1029, in action
Katie.do_reject(0, reject_message);
  File /usr/lib/python2.3/site-packages/katie.py, line 652, in do_reject
utils.send_mail(reject_mail_message);
  File /usr/lib/python2.3/site-packages/utils.py, line 398, in send_mail
(rfc822_maint, rfc2047_maint, name, email) = fix_maintainer(item.strip())
  File /usr/lib/python2.3/site-packages/utils.py, line 361, in fix_maintainer
raise ParseMaintError, No @ found in email address part.
ParseMaintError: No @ found in email address part.

It occured to me with a backport of mpich_1.2.7 where the maintainer
name is 'Adam C. Powell, IV [EMAIL PROTECTED]' (with a ',').

If I do not mistake, the problem comes from the following lines in
utils.py

+# Fields to check. Here the order is important because Bcc
+# will be the last changed field
+fields = [To, Bcc, Cc]
+for field in fields:
+# Check each field
+value = message_raw.get(field, None)
+if value != None:
+match = [];
+for item in value.split(,):
+(rfc822_maint, rfc2047_maint, name, email) = 
fix_maintainer(item.strip())
+if email not in whitelist:
+print Skipping %s since it's not in %s % (item, 
Cnf[Dinstall::MailWhiteList])
+continue
+match.append(item)
+# Doesn't have any mail in whitelist so remove the header
+if len(match) == 0:
+del message_raw[field]
+else:
+message_raw.replace_header(field, string.join(match, 
, ))
+

that have been added specifically to the packaging of dak and do not
exist upstream.

I do not know yet how to fix this excepted with the obvious workaround
that is to remove any ',' in maintainer's names.

Thanks,
Frederic Lehobey

-- System Information:
Debian Release: 3.1
Architecture: sparc (sparc64)
Kernel: Linux 2.6.8-2-sparc64
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages dak depends on:
ii  apt [libapt-pkg-libc6.3-5-3 0.5.28.6 Advanced front-end for dpkg
ii  apt-utils   0.5.28.6 APT utility programs
ii  bzip2   1.0.2-7  high-quality block-sorting file co
ii  debconf 1.4.30.13Debian configuration management sy
ii  dpkg-dev1.10.28  Package building tools for Debian
ii  exim4-daemon-light [mail-tr 4.50-8   lightweight exim MTA (v4) daemon
ii  gnupg   1.4.1-1  GNU privacy guard - a free PGP rep
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3
ii  python  2.3.5-2  An interactive high-level object-o
ii  python-apt  0.5.10   Python interface to libapt-pkg
ii  python-ldap 2.0.4-1  A LDAP interface module for Python
ii  python-pygresql 1:3.6.1-1PostgreSQL module for Python
ii  ucf 1.17 Update Configuration File: preserv

-- debconf information:
* dak/username: deb-dak
* dak/groupname: debadmin
* dak/hostname: localhost.localdomain
* dak/path: /var/lib/dak
* dak/setup:
* dak/archivename: archive FDL (abonde)


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



Bug#309558: php4-vpopmail: same on amd64

2006-01-25 Thread Roberto Pariset
Package: php4-vpopmail
Version: 4.3.4-5.4.4+2
Followup-For: Bug #309558

Same issue on amd64. Full log avaiable at:
http://amd64.ftbfs.de/build.php?arch=amd64pkg=php4-vpopmailver=4.3.4-5.4.4%2B2

Thanks,
Roberto

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to [EMAIL PROTECTED])


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



Bug#336241: mediawiki: More than just a wish

2006-01-25 Thread grok
Package: mediawiki
Followup-For: Bug #336241


Seems to me that putting off a major upstream release for
a half year or more is something beyond a mere wishlist item.
Aren't these things considered actual _bugs_ at this point?

And note that this problem is _exactly_ why someone has gone to
all the trouble of packaging an *unofficial* version of v1.5.x...


-- grok.




-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (998, 'testing'), (501, 'stable'), (99, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.20
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#348054: xserver-xorg: [ati/radeon] Desktop window corrupted with ghost images

2006-01-25 Thread Mark Brown
On Wed, Jan 25, 2006 at 09:53:37AM +0100, Michel Dänzer wrote:

 Okay. Now, are you sure that EXA was enabled when you saw the ghosting
 with Option AccelMethod EXA as well? As noted in the other bug you
 mentioned, there's a known upstream bug in XAA
 (https://bugs.freedesktop.org/show_bug.cgi?id=4456) that causes a
 ghosting effect in the desktop rendered by Nautilus.

 If you really see the ghosting with EXA enabled, are the symptoms the
 same as with XAA? Otherwise, there might be a different bug in EXA
 causing similar symptoms.

How could I confirm if it was on?  I've tried toggling EXA off in the
configuration file and I now get ghosting again, even with RenderAccel
on, so it does look like two bugs.  With EXA the ghosts are greyscale
patterns whereas with XAA they mostly seem to be derived from things to
the top left of the screen.  

The areas where ghosting appears (IYSWIM) do seem relatively similar,
though obviously I can't do a side by side comparison.  

  I don't have radeonfb loaded so I didn't try this.

 Would it be a lot of effort to load radeonfb and try it?

Probably not but I don't have much time tonight: I will try to find time
over the next couple of days to run through that and also try the things
you suggested before with EXA disabled (changing down to 16 bit doesn't
help XAA - that was my configuration when I first saw trouble).

-- 
You grabbed my hand and we fell into it, like a daydream - or a fever.


signature.asc
Description: Digital signature


Bug#349283: This is CVE-2006-0414

2006-01-25 Thread Peter Palfrader
The Common Vulnerabilities and Exposures project has assigned
CVE-2006-0414 for this issue.

http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-0414

-- 
 PGP signed and encrypted  |  .''`.  ** Debian GNU/Linux **
messages preferred.| : :' :  The  universal
   | `. `'  Operating System
 http://www.palfrader.org/ |   `-http://www.debian.org/


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



Bug#349714: [Pkg-xfce-devel] Bug#349714: xfce4-panel: spams .xsession-errors full of *** attempt to put segment in horiz list twice

2006-01-25 Thread Markus Schulz
Am Mittwoch, 25. Januar 2006 15:50 schrieb Simon Huggins:
 reassign 349714 xfdesktop4
 thanks

 On Tue, Jan 24, 2006 at 09:27:43PM +0100, Markus Schulz wrote:
  like topic, spams .xsession-errors log with many many lines of ***
  attempt to put segment in horiz list twice.

 This is xfdesktop actually.

don't think so or it's xfdesktop too, cause i'm started xfce4-panel from 
a xterm (after killed the previously started one) and the i can see the 
error spam on my xterm.

 I think it's one of the libraries at fault when I reported it
 upstream last time - I'll have another look at this for you.

yes, i've found other reports on different applications with google but 
no library name until now.


Markus Schulz


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



Bug#349782: bash completion support for profile names

2006-01-25 Thread Sylvain Le Gall
Hello,

On Wed, Jan 25, 2006 at 09:47:05AM +0100, Stefano Zacchiroli wrote:
 Package: unison
 Version: 2.13.16-4
 Severity: wishlist
 
 It would be lovely to have tab completion for unison's profile names.
 Sorry, no time to write the needed bash function right now.
 
 Cheers.
 

I will take a look at this issue (when i will know how to write bash
completion file).

If you have any documentation/link send it to me.

Regard
Sylvain Le Gall


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



Bug#349888: [Pkg-octave-devel] Bug#349888: octave-gpc: missing libgpcl-dev

2006-01-25 Thread Rafael Laboissiere
* Roberto Pariset [EMAIL PROTECTED] [2006-01-25 20:47]:

 Package: octave-gpc
 Version: 0.1.5-5
 Severity: important
 Justification: fails to build from source
 
 Hi,
 on amd64 it FTBFS as you can see on [1]. The reason is:
 E: Couldn't find package libgpcl-dev

The libgpcl-dev package is in non-free.  I do not know about the current
buildd policy regarding non-free packages.  The lack of a buildd for
amd64 (see http://buildd.debian.org/build.php?arch=pkg=gpcl) may explain
why the package is not apt-getable.

 The bug is probably related to #334230 but I can't be sure as
 libgpcl-dev is not apt-gettable now. 

I think that these are two unrelated problems.

-- 
Rafael


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



Bug#349902: ssh prompt should include machine ip

2006-01-25 Thread Martin Michlmayr
* Joey Hess [EMAIL PROTECTED] [2006-01-25 15:23]:
 The message displayed when network-console is running that prompts the
 user to ssh in should include the machine IP so the user knows what
 machine to log into.

It does on the Cobalt LCD, but I agree the text box should mention it
as well.  We're not allowed to change messages before beta2, though,
or are we?
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#349888: [Pkg-octave-devel] Bug#349888: octave-gpc: missing libgpcl-dev

2006-01-25 Thread Roberto Pariset
Rafael Laboissiere ha scritto:
 * Roberto Pariset [EMAIL PROTECTED] [2006-01-25 20:47]:
 
 
Package: octave-gpc
Version: 0.1.5-5
Severity: important
Justification: fails to build from source

Hi,
on amd64 it FTBFS as you can see on [1]. The reason is:
E: Couldn't find package libgpcl-dev
 
 
 The libgpcl-dev package is in non-free.  I do not know about the current
 buildd policy regarding non-free packages.  The lack of a buildd for
 amd64 (see http://buildd.debian.org/build.php?arch=pkg=gpcl) may explain
 why the package is not apt-getable.
 
 
The bug is probably related to #334230 but I can't be sure as
libgpcl-dev is not apt-gettable now. 
 
 
 I think that these are two unrelated problems.
 

You are totally right. I am really sorry, I noticed libgpcl-dev was
non-free only after sending.
I can't even compile libgpcl-dev, so I can't say if amd64 is affected
by #334230 as well.
This said, I think the bug can be closed. And again, sorry for my
mistake.

All the best,
Roberto


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



Bug#349920: gpcl: FTBFS on amd64

2006-01-25 Thread Roberto Pariset
Package: gpcl
Version: 2.31-4
Severity: important
Justification: fails to build from source

Hi,
during configure I get:
[...]
checking whether gcc accepts -g... (cached) yes
checking host system type... Invalid configuration
`x86_64-unknown-linux-gnu': machine `x86_64-unknown' not recognized

checking build system type... Invalid configuration
`x86_64-unknown-linux-gnu': machine `x86_64-unknown' not recognized

checking for ranlib... (cached) ranlib
[...]
loading cache ./config.cache within ltconfig
ltconfig: you must specify a host type if you use `--no-verify'
Try `ltconfig --help' for more information.
configure: error: libtool configure failed
make: *** [build-stamp] Error 1

is this package not for amd64? If so, can you please add it to
Packages-arch-specific? Otherwise, would it be possible to fix it?
It actually prevents octave-gpc from building.

Thanks,
Roberto

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to [EMAIL PROTECTED])


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



Bug#349921: libtiff4: New version 3.8.0 is available

2006-01-25 Thread Oleksandr Moskalenko
Package: libtiff4
Version: 3.7.4-1
Severity: wishlist

Hello. I've started work on packaging a library that depends on libtiff4.
However, the latest version of that library requires libtiff 3.8.0. So, i
wonder about the progress of libtiff4 update.

Regards,

Alex.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-mrb319
Locale: LANG=uk_UA.KOI8-U, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)

Versions of packages libtiff4 depends on:
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libjpeg62 6b-11  The Independent JPEG Group's JPEG 
ii  zlib1g1:1.2.3-9  compression library - runtime

libtiff4 recommends no packages.

-- no debconf information


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



Bug#349922: umbrello: role multiplicity indicator in component diagram misplaced

2006-01-25 Thread Robert Lemmen
Package: umbrello
Version: 4:3.5.0-3
Severity: minor

hi everyone,

smallish but annoying bug: the multiplicity indicator does not move with
the end of the association, but around on the screen in a weird way.
steps to reproduce:

- create a new comopnent diagram
- create a component
- create an interface
- create an association between the two
- open the properties of the association
- enter a multiplicity for the interface
- move around the component (ok)
- move around the interface (surprise)

this probably happens in other cases/diagrams as well, i attach a simple
test case

cu  robert


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

Versions of packages umbrello depends on:
ii  kdelibs4c2a   4:3.5.0-3  core libraries for all KDE applica
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-6  GCC support library
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libstdc++64.0.2-6The GNU Standard C++ Library v3

umbrello recommends no packages.

-- no debconf information

-- 
Robert Lemmen   http://www.semistable.com 
?xml version=1.0 encoding=UTF-8?
XMI xmlns:UML=http://schema.omg.org/spec/UML/1.3; verified=false 
timestamp=2006-01-25T22:27:36 xmi.version=1.2 
 XMI.header
  XMI.documentation
   XMI.exporterumbrello uml modeller http://uml.sf.net/XMI.exporter
   XMI.exporterVersion1.5.1/XMI.exporterVersion
   XMI.exporterEncodingUnicodeUTF8/XMI.exporterEncoding
  /XMI.documentation
  XMI.metamodel xmi.name=UML href=UML.xml xmi.version=1.3 /
 /XMI.header
 XMI.content
  UML:Model isSpecification=false isLeaf=false isRoot=false xmi.id=m1 
isAbstract=false name=UML Model 
   UML:Namespace.ownedElement
UML:Stereotype isSpecification=false isLeaf=false visibility=public 
namespace=m1 xmi.id=3 isRoot=false isAbstract=false name=datatype /
UML:Stereotype isSpecification=false isLeaf=false visibility=public 
namespace=m1 xmi.id=14 isRoot=false isAbstract=false name=constructor 
/
UML:Stereotype isSpecification=false isLeaf=false visibility=public 
namespace=m1 xmi.id=15 isRoot=false isAbstract=false name=friend /
UML:Stereotype isSpecification=false isLeaf=false visibility=public 
namespace=m1 xmi.id=16 isRoot=false isAbstract=false name=virtual /
UML:Stereotype isSpecification=false isLeaf=false visibility=public 
namespace=m1 xmi.id=21 isRoot=false isAbstract=false name=interface /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=2 isRoot=false isAbstract=false 
name=int /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=4 isRoot=false isAbstract=false 
name=char /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=5 isRoot=false isAbstract=false 
name=bool /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=6 isRoot=false isAbstract=false 
name=float /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=7 isRoot=false isAbstract=false 
name=double /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=8 isRoot=false isAbstract=false 
name=short /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=9 isRoot=false isAbstract=false 
name=long /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=10 isRoot=false 
isAbstract=false name=unsigned int /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=11 isRoot=false 
isAbstract=false name=unsigned short /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=12 isRoot=false 
isAbstract=false name=unsigned long /
UML:DataType stereotype=3 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=13 isRoot=false 
isAbstract=false name=string /
UML:Component executable=0 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=19 isRoot=false 
isAbstract=false name=new_component /
UML:Interface stereotype=21 isSpecification=false isLeaf=false 
visibility=public namespace=m1 xmi.id=20 isRoot=false 
isAbstract=false name=new_interface /
UML:Association isSpecification=false visibility=public namespace=m1 
xmi.id=22 name= 
 UML:Association.connection
  UML:AssociationEnd isSpecification=false visibility=public 
changeability=changeable isNavigable=true xmi.id=23 aggregation=none 

Bug#349923: umbrello: export via cmdline needs X

2006-01-25 Thread Robert Lemmen
Package: umbrello
Version: 4:3.5.0-3
Severity: minor

hi,

umbrello allows the export of diagrams via the commandline with the
--export switch. this is a highly usefull feature missing in many
(expensive) uml modelling  programs, just think about auto-generating
documentation from a makefile. unfortunately umbrello does in fact start
up, generate the diagrams and then close down again. which is stupid as
you won't be able to use the interface and it means it requires a
working X to use the commandline options. it would be way cool if this
would work without X! a possibility to just export a single diagram
would be cool as well...

cu  robert

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

Versions of packages umbrello depends on:
ii  kdelibs4c2a   4:3.5.0-3  core libraries for all KDE applica
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-7  GCC support library
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libstdc++64.0.2-7The GNU Standard C++ Library v3

umbrello recommends no packages.

-- no debconf information

-- 
Robert Lemmen   http://www.semistable.com 


signature.asc
Description: Digital signature


Bug#190133: maybe I could solve this?

2006-01-25 Thread Harald Dunkel
Hi folks,

I had opened this bug http://bugs.debian.org/190133 years
ago (when I was working for another company). In the meantime
I am in the NM process.

Marc (my AM) has asked me to do some more contributions, e.g.
by solving bug reports for my favourite packages. Surely
wxcopy and wxpaste are some tools I am using very frequently.
But my favourite window manager is fvwm. I am sure that wmaker
is a good window manager, too, but I don't like installing
yet another wm, just to get 2 command line tools.

Maybe I could provide a patch to wmaker source to split out
wxcopy and wxpaste into a new package 'wxcopy'? The binary
wmaker package would depend upon wxcopy, of course. But
wxcopy could be installed independently.

Your oppinion? Would this be OK with the ftp masters?


Regards

Harri


signature.asc
Description: OpenPGP digital signature


Bug#273018: Build-Depends on libgpmg1-dev still missing

2006-01-25 Thread Thierry Reding
The last NMU fixed only part of the problem. While sdl-config now lists -lgpm
with the --static-libs option, the libsdl1.2-dev package is still missing a
build-dependency on libgpmg1-dev as mentioned by Daniel Burrows in the
original bug report.

Thierry



signature.asc
Description: Digital signature


Bug#305905: perhaps already fixed

2006-01-25 Thread Robert Lemmen
hi,

i tried this and it certainly works for me, didn't try the old
version to double-chek though. anyway, i think this is fixed in
4:3.5.0-3

cu  robert

-- 
Robert Lemmen   http://www.semistable.com 


signature.asc
Description: Digital signature


Bug#315615: autofs: Autofs starts before NIS in boot sequence

2006-01-25 Thread Matt Weatherford
Package: autofs
Version: 4.1.4-8
Followup-For: Bug #315615


Looks like autofs starts before NIS in the boot sequence:

S19autofs@
S19nis@

since these are both in /etc/rc2.d and both S19, the start
order is alphabetically determined, and autofs starts first.

This causes problems when autofs references an NIS map as in the
following example: (In /etc/auto.master)

 /net   yp:auto_net -nosuid,tcp,soft

One possible Solution:  

rename S19autofs to S20autofs, it should still start before
all the other S20 stuff I see in /etc/rc2.d

? dont know the impact of this on other startup stuff ?

Thanks for your efforts!

-Matt



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

Versions of packages autofs depends on:
ii  libc6 2.3.5-8.1  GNU C Library: Shared libraries an
ii  ucf   2.004  Update Configuration File: preserv

Versions of packages autofs recommends:
ii  nfs-common1:1.0.7-3  NFS support files common to client

-- no debconf information


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



Bug#349845: mednafen: ships locale.alias on 64-bit systems due to outdated gettext test

2006-01-25 Thread Ryan Schultz
I'll contact upstream; the last few releases of mednafen have been 
specifically related to correcting portability issues like this that Debian 
has found, so another shouldn't be a problem :- )

Thanks for reporting!

-- 
Ryan Schultz
Rise above oneself and grasp the world. -- Archimedes


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



Bug#349871: chrony: typo in chrnoyc.1 results in missing word

2006-01-25 Thread John Hasler
Thank you for your report.
-- 
John Hasler 
[EMAIL PROTECTED]
Elmwood, WI USA


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



Bug#349890: Bug#349893: psemu-input-omnijoy: no amd64 in arch list

2006-01-25 Thread Ryan Schultz
All of the psemu plugins will be switched to Arch: any with the next upload, 
which should be coming soon, along with the hopeful PCSX ASM build fix.

Thanks for reporting!

-- 
Ryan Schultz
Rise above oneself and grasp the world. -- Archimedes


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



Bug#349907: man2html: \(lq, \(rq rendered as lq, rq

2006-01-25 Thread Federico Lucifredi
Hello Dan,
 I have no idea what the following means. Please, enlighten/sumbit clearer 
report/patch/etc.

 best -f



 -Original Message-
 From: Dan Jacobson [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, January 25, 2006 06:34 PM
 To: 'Debian Bug Tracking System'
 Subject: Bug#349907: man2html: \(lq, \(rq rendered as lq, rq
 
 X-debbugs-CC: [EMAIL PROTECTED]
 Package: man2html
 Version: 1.6-3
 Severity: normal
 Tags: upstream
 
 We can see that \(lq, \(rq are passed straight through!:
 $ p=$(man -w xorg.conf)
 $ zcat $p|man2html -|grep lq|sed q
 is a relative path (with no lq..rq components) specified with the
 $ zcat $p|grep lq|sed q
 is a relative path (with no \(lq..\(rq components) specified with the
 
 




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



Bug#349924: Wrong Permissions on tty

2006-01-25 Thread Klaus Ethgen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: xterm
Version: 208-3.1
Severity: normal
Tags: sid

The newest xterm set the wrong permissions on tty:
ikki:~ ls -l `tty`
crw--w--w- 1 klaus ethgen 136, 9 2006-01-25 22:50 /dev/pts/9

this should be:
crw--w--w- 1 klaus tty136, 9 2006-01-25 22:50 /dev/pts/9

/etc/default/devpts:
# GID of the `tty' group
TTYGRP=5
...

(gid 5 is group tty

This wrong permissions are problematic with other tools.

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

Versions of packages xterm depends on:
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libncurses5   5.5-1  Shared libraries for terminal hand
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxaw8   6.9.0.dfsg.1-4 X Athena widget set library
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxft2   2.1.8.2-1  FreeType-based font drawing librar
ii  libxmu6   6.9.0.dfsg.1-4 X Window System miscellaneous util
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics
ii  xlibs-data6.9.0.dfsg.1-4 X Window System client data
ii  zlib1g1:1.2.3-9  compression library - runtime

Versions of packages xterm recommends:
ii  xutils6.9.0.dfsg.1-4 X Window System utility programs

- -- no debconf information

- -- 
Klaus Ethgenhttp://www.ethgen.de/
pub  2048R/D1A4EDE5 2000-02-26 Klaus Ethgen [EMAIL PROTECTED]
Fingerprint: D7 67 71 C4 99 A6 D4 FE  EA 40 30 57 3C 88 26 2B
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iQEVAwUBQ9fzc5+OKpjRpO3lAQIGzgf7BW163B/vjzX3Hl8mQfEtb/b7XqtsIeqw
YldvRKlJMxdYdwS8VcrDcVTN4HMldkON2SuSmWe9xZLWPwe3bw1QxYc88MUXlL+a
BqJ+KRMB5oegYKCdqkGB196fgePgx+r8pVFu7sDfDpH3fvs3wK2j7FnEIF0W/xQ/
+WW70Qdg2WiwiJ1/qrscbqa9pH6V9uZ80KRozbmoXoMmKO3N69or4MYh2rDniosy
wTprqSPwULiWUr3Cn1gZRKBy7QlgVgWFWSA0RB+aV1N/39ARjf9uU9gs/lyw//nm
UALtfVCK413im6NWmdPMlmj6J4JI+k5qEDGdSwquotEBrSS503mV+A==
=9Xq8
-END PGP SIGNATURE-


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



Bug#349925: dpkg: [manual] quotes need to be escaped in manual pages

2006-01-25 Thread Denis Barbier
Package: dpkg
Version: 1.13.11.1
Severity: minor
Tags: patch

Hi,

as explained in groff_char(7), ` and ' are replaced by quotation marks
when processed by groff, which means that cut'n'pasting these examples
produce errors, which is quite annoying.
Here is a patch.

Denis
Index: man/C/dpkg.1
===
--- man/C/dpkg.1(révision 50)
+++ man/C/dpkg.1(copie de travail)
@@ -544,7 +544,7 @@
 .SH EXAMPLES
 To list packages related to the editor vi:
 .br
-\fB dpkg \-l '*vi*'\fP
+\fB dpkg \-l \(aq*vi*\(aq\fP
 .br
 
 To see the entries in \fI/var/lib/dpkg/available\fP on two packages:
Index: man/C/dpkg-query.1
===
--- man/C/dpkg-query.1  (révision 50)
+++ man/C/dpkg-query.1  (copie de travail)
@@ -22,7 +22,7 @@
 
 .T
 .nf
-  \fBdpkg\-query \-l 'libc5*'\fP
+  \fBdpkg\-query \-l \(aqlibc5*\(aq\fP
 .fi
 .TP
 \fB\-W\fP | \fB\-\-show\fP \fIpackage-name-pattern\fP ...
Index: man/C/dpkg-name.1
===
--- man/C/dpkg-name.1   (révision 50)
+++ man/C/dpkg-name.1   (copie de travail)
@@ -30,12 +30,12 @@
 something similar (depending on whatever information is in the control
 part of `bar\-foo.deb').
 .TP
-.B find /root/debian/ \-name '*.deb' | xargs \-n 1 dpkg\-name \-a
+.B find /root/debian/ \-name \(aq*.deb\(aq | xargs \-n 1 dpkg\-name \-a
 All files with the extension `deb' in the directory /root/debian and its
 subdirectory's will be renamed by dpkg\-name if required into names with no
 architecture information.
 .TP
-.B find \-name '*.deb' | xargs \-n 1 dpkg\-name \-a \-o \-s \-c
+.B find \-name \(aq*.deb\(aq | xargs \-n 1 dpkg\-name \-a \-o \-s \-c
 .B Don't do this.
 Your archive will be messed up completely because a lot of packages
 don't come with section information.
Index: man/C/dpkg-architecture.1
===
--- man/C/dpkg-architecture.1   (révision 50)
+++ man/C/dpkg-architecture.1   (copie de travail)
@@ -74,9 +74,9 @@
 dpkg-buildpackage accepts the \fB\-a\fR option and passes it to 
dpkg\-architecture.
 Other examples:
 .PP
-CC=i386\-gnu\-gcc dpkg-architecture \f(CW\*(C`\-c\*(C'\fR debian/rules build
+CC=i386\-gnu\-gcc dpkg\-architecture \f(CW\*(C`\-c\*(C'\fR debian/rules build
 .PP
-eval `dpkg\-architecture \f(CW\*(C`\-u\*(C'\fR`
+eval \`dpkg\-architecture \f(CW\*(C`\-u\*(C'\fR\`
 .SH VARIABLES
 .IX Header VARIABLES
 The following variables are set by dpkg\-architecture:
@@ -130,15 +130,15 @@
 Instead of:
 .IP
 .nf
-ARCH=`dpkg \-\-print\-architecture`
+ARCH=\`dpkg \-\-print\-architecture\`
 configure $(\s-1ARCH\s0)\-linux
 .fi
 .PP
 please use the following:
 .IP
 .nf
-\\s-1DEB_BUILD_GNU_TYPE\s0 := $(shell dpkg-architecture \-qDEB_BUILD_GNU_TYPE)
-\\s-1DEB_HOST_GNU_TYPE\s0 := $(shell dpkg-architecture \-qDEB_HOST_GNU_TYPE)
+\\s-1DEB_BUILD_GNU_TYPE\s0 := $(shell dpkg\-architecture 
\-qDEB_BUILD_GNU_TYPE)
+\\s-1DEB_HOST_GNU_TYPE\s0 := $(shell dpkg\-architecture \-qDEB_HOST_GNU_TYPE)
 
 configure \-\-build=$(\s-1DEB_BUILD_GNU_TYPE\s0) 
\-\-host=$(\s-1DEB_HOST_GNU_TYPE\s0)
 .fi
@@ -147,7 +147,7 @@
 Instead of:
 .IP
 .nf
-ARCH=`dpkg \-\-print\-architecture`
+ARCH=\`dpkg \-\-print\-architecture\`
 ifeq ($(\s-1ARCH\s0),alpha)
   ...
 endif
@@ -156,7 +156,7 @@
 please use:
 .IP
 .nf
-\\s-1DEB_HOST_ARCH\s0 := $(shell dpkg-architecture \-qDEB_HOST_ARCH)
+\\s-1DEB_HOST_ARCH\s0 := $(shell dpkg\-architecture \-qDEB_HOST_ARCH)
 
 ifeq ($(\s-1DEB_HOST_ARCH\s0),alpha)
   ...
@@ -229,7 +229,7 @@
 .PP
 You don't need the full set. Choose a consistent set which contains the
 values you use in the rules file. For example, if you only need the host
-Debian architecture, `DEB_HOST_ARCH=`dpkg \-\-print\-architecture`
+Debian architecture, `DEB_HOST_ARCH=\`dpkg \-\-print\-architecture\`'
 is sufficient (this is indeed the Debian architecture of the build machine,
 but remember that we are only trying to be backward compatible with native
 compilation).


Bug#349926: FTBFS: error: size of array `_dummy' is negative

2006-01-25 Thread Roberto Pariset
Package: pose
Severity: important
Justification: fails to build from source

While building it give several warnings, and it ends like this:

../BuildUnix/../SrcShared/Hardware/EmCPU68K.cpp: In member function
`void EmCPU68K::ProcessException(ExceptionNumber)':
../BuildUnix/../SrcShared/Hardware/EmCPU68K.cpp:1194: error: size of
array `_dummy' is negative
../BuildUnix/../SrcShared/Hardware/EmCPU68K.cpp:1210: error: size of
array `_dummy' is negative
make[2]: *** [EmCPU68K.o] Error 1

So it doesn't build. Good luck :)
Roberto

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8) (ignored: LC_ALL 
set to [EMAIL PROTECTED])


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



Bug#280876: [a-users] Re: Uploading A/DeMuDi packages to Debian

2006-01-25 Thread Junichi Uekawa
Hi,


 Yes, I've prepared  the first package to upload,  it's a new  one (see
 #280876, the ITP is from Emiliano Grilli but I'll maintain the package
 myself).

Reading the BTS, it looks like it was a closed ITP.

Could you follow the usual Debian guidelines and fill in the fields
and Cc [EMAIL PROTECTED] 
(if you already have the package, it should be trivial)

* Package name: fmit
  Version : x.y.z
  Upstream Author : Name [EMAIL PROTECTED]
* URL : http://www.example.org/
* License : (GPL, LGPL, BSD, MIT/X, etc.)
  Description : Free Music Instrument Tuner


regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Bug#323044: another issue

2006-01-25 Thread martin f krafft
If a link contains special characters like the German ÄÖÜ, the link
definition will be highlighted as if it was a comment. Maybe use
[[:alpha:]] instead of [a-z] ?

-- 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP (sub)keys? Use subkeys.pgp.net as keyserver!
 
sobald man über niveau spricht
 ist man längst darüber hinweg.
  -- thomas krafft


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


Bug#349920: gpcl: FTBFS on amd64

2006-01-25 Thread Rafael Laboissiere
* Roberto Pariset [EMAIL PROTECTED] [2006-01-25 22:21]:

 Package: gpcl
 Version: 2.31-4
 Severity: important
 Justification: fails to build from source

Could you please try with version 2.32-1 of the package?  The source is
available at http://people.debian.org/~rafael/gpcl/

Thanks.

-- 
Rafael


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



Bug#344446: Don't hardcode paths in klcc

2006-01-25 Thread Martin Michlmayr
Stop makeklcc.pl from hardcoding paths of cc, ld and strip in the klcc
script it generates.  Using hardcoded paths is generally a bad idea.
First, the whole idea of $PATH is that you don't need to hardcode
paths.  Second, klcc is a Perl script but my hardcoding the paths
you make it less portable.

Signed-off-by: Martin Michlmayr [EMAIL PROTECTED]


--- klibc-1.1.16/klcc/makeklcc.pl~  2006-01-25 21:30:48.0 +
+++ klibc-1.1.16/klcc/makeklcc.pl   2006-01-25 21:39:59.0 +
@@ -9,23 +9,6 @@
 
 ($klccin, $klibcconf, $perlpath) = @ARGV;
 
-sub pathsearch($) {
-my($file) = @_;
-my(@path);
-my($p,$pp);
-
-if ( $file =~ /\// ) {
-   return File::Spec-rel2abs($file);
-}
-
-foreach $p ( split(/\:/, $ENV{'PATH'}) ) {
-   $pp = File::Spec-rel2abs(File::Spec-catpath(undef, $p, $file));
-   return $pp if ( -x $pp );
-}
-
-return undef;
-}
-
 print #!${perlpath}\n;
 
 open(KLIBCCONF, '', $klibcconf) or die $0: cannot open $klibcconf: $!\n;
@@ -34,12 +17,6 @@
 if ( $l =~ /^([^=]+)\=\s*(.*)$/ ) {
$n = $1;  $s = $2;
 
-   if ( $n eq 'CC' || $n eq 'LD' || $n eq 'STRIP' ) {
-   $s1 = pathsearch($s);
-   die $0: Cannot find $n: $s\n unless ( defined($s1) );
-   $s = $s1;
-   }
-
print \$$n = \\Q$s\E\;\n;
print \$conf{\'\L$n\E\'} = \\\$$n;\n;
 


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


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



Bug#349927: drbd0.7-utils: hard-coded dependency on libc6

2006-01-25 Thread Adeodato Simó
Package: drbd0.7-utils
Version: 0.7.14-3
Severity: grave
Justification: policy, plus uninstallability
Tags: patch

Hello,
  
  please do not hardcode library dependencies in your debian/control
  file: they are to  be generated through the shlibs mechanism.

  The attached patch fixes this issue.

  Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
Listening to: Ella baila sola - Victoria
--- drbd-0.7.15/debian/control
+++ drbd-0.7.15/debian/control
@@ -9,7 +9,7 @@
 Package: drbd0.7-utils
 Architecture: any
 Section: admin
-Depends: debconf | debconf-2.0, libc6 (= 2.3.5)
+Depends: debconf | debconf-2.0, ${shlibs:Depends}
 Conflicts: drbd-utils, drbd
 Provides: drbd-utils
 Replaces: drbd-utils, drbd


Bug#349928: evms-bootdebug is nonfunctional with initramfs-tools

2006-01-25 Thread Paul Traina
Package: evms-bootdebug
Version: 2.5.4-4
Severity: normal

the initramfs-tools/hooks/evms-bootdebug script isn't being built/installed

looking at /var/lib/dpkg/info/evms-bootdebug.list:

/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/evms-bootdebug
/usr/share/doc/evms-bootdebug/README.Debian
/usr/share/doc/evms-bootdebug/copyright
/usr/share/doc/evms-bootdebug/changelog.gz
/usr/share/doc/evms-bootdebug/changelog.Debian.gz

nothing there...


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US.iso88591)

Versions of packages evms-bootdebug depends on:
ii  evms-cli  2.5.4-4Enterprise Volume Management Syste
ii  evms-ncurses  2.5.4-4Enterprise Volume Management Syste
ii  initramfs-tools   0.51   tools for generating an initramfs

evms-bootdebug recommends no packages.

-- no debconf information


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



Bug#349929: evms: initramfs-tools new script not executed

2006-01-25 Thread Paul Traina
Package: evms
Version: 2.5.4-4
Severity: normal
Tags: 

Can't boot my system with the new evms.  Turns out the initramfs
is missing all the evms binaries.

/usr/share/initramfs-tools/hooks/evms
/usr/share/initramfs-tools/scripts/local-top/evms

need to be installed with the executable bit set (well, for sure the
hooks, local-top doesn't apparently need to be, but the rest of the
local-top scripts are installed 755 so you should match).

-- Package-specific info:

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US.iso88591)

Versions of packages evms depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libevms-2.5   2.5.4-4Enterprise Volume Management Syste

Versions of packages evms recommends:
ii  evms-cli  2.5.4-4Enterprise Volume Management Syste
ii  evms-gui  2.5.4-4Enterprise Volume Management Syste
ii  evms-ncurses  2.5.4-4Enterprise Volume Management Syste

-- no debconf information


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



Bug#273018: flooding...

2006-01-25 Thread Thierry Reding
Sorry for flooding the BTS, it seems as though all the emails I tried to send
did actually go out, even though my MTA said they didn't =\

Thierry



signature.asc
Description: Digital signature


Bug#316272: #316272 w3m-img displays no images

2006-01-25 Thread Damián Viano
Package: w3m-img
Version: 0.5.1-4
Severity: important


Since this package seems to work at least in one situation (framebuffer
or x-terminal-emulator) for every involved, downgrading to important as
per:

important
a bug which has a major effect on the usability of a package,
without rendering it completely unusable to everyone.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing-proposed-updates
  APT policy: (500, 'testing-proposed-updates'), (500, 'testing'), (500, 
'stable')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.8.1des-nv
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages w3m-img depends on:
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libgc1c2 1:6.6-2 conservative garbage collector for
ii  libgdk-pixbuf2   0.22.0-11   The GdkPixBuf image library, gtk+ 
ii  libglib1.2   1.2.10-10.1 The GLib library of C routines
ii  libgtk1.21.2.10-18   The GIMP Toolkit set of widgets fo
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous exte
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input extension li
ii  w3m  0.5.1-4 WWW browsable pager with excellent
ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries m

w3m-img recommends no packages.

-- no debconf information


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



Bug#346907: Patch for NMU of libast

2006-01-25 Thread Luk Claes
Hi

Attached the patch for the version I uploaded. Please respond if
you think that the attached patch won't work.

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D
diff -Nru /tmp/UmAty7247q/libast-0.6/debian/changelog 
/tmp/FuGyxkaJ2X/libast-0.6/debian/changelog
--- /tmp/UmAty7247q/libast-0.6/debian/changelog 2005-09-04 00:20:55.0 
+0200
+++ /tmp/FuGyxkaJ2X/libast-0.6/debian/changelog 2006-01-25 23:15:31.0 
+0100
@@ -1,3 +1,10 @@
+libast (0.6-0pre2003010606.2) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Split xlibs-dev build-dep (Closes: #346907).
+
+ -- Luk Claes [EMAIL PROTECTED]  Wed, 25 Jan 2006 23:14:39 +0100
+
 libast (0.6-0pre2003010606.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru /tmp/UmAty7247q/libast-0.6/debian/control 
/tmp/FuGyxkaJ2X/libast-0.6/debian/control
--- /tmp/UmAty7247q/libast-0.6/debian/control   2005-09-04 00:16:59.0 
+0200
+++ /tmp/FuGyxkaJ2X/libast-0.6/debian/control   2006-01-25 23:14:35.0 
+0100
@@ -2,7 +2,7 @@
 Section: libs
 Priority: optional
 Maintainer: Laurence J. Lane [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.1.0), cdbs, libimlib2-dev, xlibs-dev
+Build-Depends: debhelper ( 4.1.0), cdbs, libimlib2-dev, libxt-dev
 Standards-Version: 3.6.1.0
 
 Package: libast2


signature.asc
Description: OpenPGP digital signature


Bug#347672: evolution: Evolution 2.4.2.1 freezes on startup

2006-01-25 Thread Andrew Moise
  I see this as well in evolution 2.4.2.1-1.  For me, moving .evolution
away made it work again once, but now it doesn't.  I've downgraded to
evolution 2.2.3-5 and that seems to work again.  Here's some debugging
output as recommended by
http://www.gnome.org/projects/evolution/bugs.shtml :

[EMAIL PROTECTED] ~]$ CAMEL_DEBUG=all CAMEL_VERBOSE_DEBUG=1 GROUPWISE_DEBUG=1 
E2K_DEBUG=5 evolution 
adding hook target 'source'
Thread b69ca8e0 
CamelStore('mbox:/home/moise/.evolution/mail/local'):get_folder('Inbox', 1) = 
0x81470f0
 b69ca8e0 
Thread b69ca8e0 
CamelStore('mbox:/home/moise/.evolution/mail/local'):get_folder('Drafts', 1) = 
0x81473c8
 b69ca8e0 
Thread b69ca8e0 
CamelStore('mbox:/home/moise/.evolution/mail/local'):get_folder('Outbox', 1) = 
0x8147360
 b69ca8e0 
Thread b69ca8e0 
CamelStore('mbox:/home/moise/.evolution/mail/local'):get_folder('Sent', 1) = 
0x81472f8
 b69ca8e0 
Thread b69ca8e0 
CamelStore('mbox:/home/moise/.evolution/mail/local'):get_folder('Inbox', 1) = 
0x81470f0
 b69ca8e0 

(evolution:6819): camel-WARNING **: camel_exception_get_id called with NULL 
parameter.
Thread b52efbb0 
Get folder info(0x81ea258:vfolder:/home/moise/.evolution/mail/vfolder, 
'null') =
  uri: vfolder:/home/moise/.evolution/mail/vfolder#UNMATCHED
  full_name: UNMATCHED
  flags: 006a
 b52efbb0 
POP3_STREAM_LINE(95): '+OK vpopper at EarthLink (EngDev) v1.6 2000/09/29 
Virtual POP3 ready [EMAIL PROTECTED]'
POP3_STREAM_WRITE(6):
CAPA

POP3_STREAM_LINE(18): '-ERR unimplemented'
Thread b52efbb0 
Get folder info(0x81ea258:vfolder:/home/moise/.evolution/mail/vfolder, 
'null') =
  uri: vfolder:/home/moise/.evolution/mail/vfolder#UNMATCHED
  full_name: UNMATCHED
  flags: 006a
 b52efbb0 

(evolution:6819): Gdk-CRITICAL **: gdk_gc_set_foreground: assertion `GDK_IS_GC 
(gc)' failed

  ... and then comes the freeze.  It's worth noting that the
gdk_gc_set_foreground assertion happens even when evolution is working
correctly (and, indeed, even in version 2.2.3-5).

ii  evolution-dat 1.4.2.1-1  evolution database backend server
ii  gconf22.12.1-8   GNOME configuration database syste
ii  gnome-icon-th 2.12.1-2   GNOME Desktop icon theme
ii  gtkhtml3.83.8.1-1HTML rendering/editing library - b
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.3-1   The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libbonobo2-0  2.10.1-1   Bonobo CORBA interfaces library
ii  libbonoboui2- 2.10.1-2   The Bonobo UI library
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libcairo2 1.0.2-3The Cairo 2D vector graphics libra
ii  libcamel1.2-6 1.4.2.1-1  The Evolution MIME message handlin
ii  libcomerr21.38+1.39-WIP-2005.12.31-1 common error description library
ii  libcompfaceg1 1:1.5.2-2  Compress/decompress images for mai
ii  libdb4.2  4.2.52-23  Berkeley v4.2 Database Libraries [
ii  libebook1.2-5 1.4.2.1-1  Client library for evolution addre
ii  libecal1.2-3  1.4.2.1-1  Client library for evolution calen
ii  libedataserve 1.4.2.1-1  Utility library for evolution data
ii  libedataserve 1.4.2.1-1  GUI utility library for evolution
ii  libesd0   0.2.36-3   Enlightened Sound Daemon - Shared
ii  libfontconfig 2.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgail-commo 1.8.8-1GNOME Accessibility Implementation
ii  libgail17 1.8.8-1GNOME Accessibility Implementation
ii  libgconf2-4   2.12.1-8   GNOME configuration database syste
ii  libgcrypt11   1.2.2-1LGPL Crypto library - runtime libr
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.8.6-1The GLib library of C routines
ii  libgnome-keyr 0.4.6-2GNOME keyring services library
ii  libgnome-pilo 2.0.12-1.6 Support libraries for gnome-pilot
ii  libgnome2-0   2.12.0.1-4 The GNOME 2 library - runtime file
ii  libgnomecanva 2.12.0-2   A powerful object-oriented display
ii  libgnomeprint 2.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprint 2.12.1-2   GNOME 2.2 print architecture User
ii  libgnomeui-0  2.12.0-2   The GNOME 2 libraries (User Interf
ii  libgnomevfs2- 2.12.2-5   GNOME virtual file-system (runtime
ii  libgnutls11   1.0.16-14  GNU TLS library - runtime library
ii  libgpg-error0 1.1-4  library for common error 

Bug#348371: Patch for NMU of libgnu-regexp-java

2006-01-25 Thread Luk Claes
Hi

Attached the patch for the version I uploaded. Please respond if
you think that the attached patch won't work.

Cheers

Luk

-- 
Luk Claes - http://people.debian.org/~luk - GPG key 1024D/9B7C328D
Fingerprint:   D5AF 25FB 316B 53BB 08E7   F999 E544 DE07 9B7C 328D
diff -u libgnu-regexp-java-1.1.4/debian/rules 
libgnu-regexp-java-1.1.4/debian/rules
--- libgnu-regexp-java-1.1.4/debian/rules
+++ libgnu-regexp-java-1.1.4/debian/rules
@@ -7,7 +7,7 @@
 
 debian/stamp/binary/arch : debian/stamp/binary/libgnu-regexp-java
 
-export CLASSPATH=.:/usr/share/kaffe/Klasses.jar:/usr/share/java/gnu-getopt.jar
+export 
CLASSPATH=.:/usr/share/kaffe-common/lib/glibj.zip:/usr/share/java/gnu-getopt.jar
 
 debian/stamp/build :
$(MAKE) -C src JAVAC=jikes gnu.regexp utils
diff -u libgnu-regexp-java-1.1.4/debian/changelog 
libgnu-regexp-java-1.1.4/debian/changelog
--- libgnu-regexp-java-1.1.4/debian/changelog
+++ libgnu-regexp-java-1.1.4/debian/changelog
@@ -1,3 +1,10 @@
+libgnu-regexp-java (1.1.4-3.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Adjust CLASSPATH to upstream kaffe changes (Closes: #348371).
+
+ -- Luk Claes [EMAIL PROTECTED]  Wed, 25 Jan 2006 23:27:40 +0100
+
 libgnu-regexp-java (1.1.4-3) unstable; urgency=low
   * Removed extra backup file (Closes: #325854).
 


signature.asc
Description: OpenPGP digital signature


Bug#349784: krusader: Krusader dies in home dir

2006-01-25 Thread Anson Gardner
Package: krusader
Version: 1.60.0-3.1
Severity: important

Debian Unstable
Linux 2.6.15-1-686

I am experiencing the same problem described in #349784. My normal
configuration is to have the left panel at / and the right panel in my
home directory. Upgrading to 1.60.0-3.1 caused krusader to segfault when
opening. If I open it specifying the right panel at some other path it
will open fine (see below). As soon as I try to enter my home directory
it will crash. Downgrading via dpkg -i krusader_1.60.0-3+b1_i386.deb
fixes the problem.


~$ krusader --right /
krusader: Initialisising useractions...
krusader: 5 useractions read.
QLayout unnamed added to ListPanel unnamed, which already has a
layout
QLayout unnamed added to ListPanel unnamed, which already has a
layout
Uh oh.. can't write data..
KCrash: Application 'krusader' crashing...

Backtrace is below:

(no debugging symbols found)
Using host libthread_db library
/lib/tls/i686/cmov/libthread_db.so.1.
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1238111520 (LWP 6933)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[KCrash handler]
#4  0x08126c66 in QStrList::~QStrList ()
#5  0xb6c5a2df in QListViewPrivate::SortableItem::cmp ()
   from /usr/lib/libqt-mt.so.3
#6  0xb6c5a327 in QListViewPrivate::SortableItem::operator ()
   from /usr/lib/libqt-mt.so.3
#7  0xb6c5b3a6 in
qHeapSortPushDownQListViewPrivate::SortableItem ()
   from /usr/lib/libqt-mt.so.3
#8  0xb6c5b5ff in
qHeapSortHelperQListViewPrivate::SortableItem*,
QListViewPrivate::SortableItem () from /usr/lib/libqt-mt.so.3
#9  0xb6c5b6a0 in qHeapSortQListViewPrivate::SortableItem* ()
   from /usr/lib/libqt-mt.so.3
#10 0xb6c577c6 in QListViewItem::sortChildItems ()
from /usr/lib/libqt-mt.so.3
#11 0xb6c4220b in QListViewItem::enforceSortOrder ()
   from /usr/lib/libqt-mt.so.3
#12 0xb6c41448 in QListView::firstChild ()
from /usr/lib/libqt-mt.so.3
#13 0xb745ba54 in KListView::setSorting ()
from /usr/lib/libkdeui.so.4
#14 0x08129da0 in QStrList::~QStrList ()
#15 0x0811260c in QPtrListKFileItem::~QPtrList ()
#16 0x08113bfe in QPtrListKFileItem::~QPtrList ()
#17 0x0811c71d in QPtrListKFileItem::~QPtrList ()
#18 0xb6b4db57 in QObject::activate_signal ()
from /usr/lib/libqt-mt.so.3
#19 0xb6b4e63b in QObject::activate_signal ()
from /usr/lib/libqt-mt.so.3
#20 0x0813bf9d in QValueListPrivateKURL::remove ()
#21 0x0813c0b8 in QValueListPrivateKURL::remove ()
#22 0x08109be7 

Bug#349832: smokeping should start later

2006-01-25 Thread Jose Carlos Garcia Sogo
El mié, 25-01-2006 a las 16:56 +0100, Joerg Dorchain escribió:
 package: smokeping
 version: 2.0.5-2
 
 Smokeping is currently started via init scripts at priority 20. When you
 monitor services at localhost like ssh or http, those daemons are
 started later. In the case of sshd, smokpeing will not start because
 ERROR: output of '/usr/bin/ssh-keyscan -t rsa localhost' does not match
 (?i-xsm:^# \S+ SSH-) at (eval 25) line 1
 
 Please start later (apache starts at 91, just to avoid problem with http
 probes), as achived with  update-rc.d smokeping defaults 92 20

  I don't have anything against this. I will probably include it in next
upload. 

  Thanks

-- 
Jose Carlos Garcia Sogo
   [EMAIL PROTECTED]


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


Bug#349920: gpcl: FTBFS on amd64

2006-01-25 Thread Roberto Pariset
Rafael Laboissiere ha scritto:
 * Roberto Pariset [EMAIL PROTECTED] [2006-01-25 22:21]:
 
 
Package: gpcl
Version: 2.31-4
Severity: important
Justification: fails to build from source
 
 
 Could you please try with version 2.32-1 of the package?  The source is
 available at http://people.debian.org/~rafael/gpcl/
 
 Thanks.
 


$ LC_ALL=C apt-get source gpcl
Reading package lists... Done
Building dependency tree... Done
Need to get 58.0kB of source archives.
Err http://people.debian.org ./ gpcl 2.32-1 (dsc)
  404 Not Found
Err http://people.debian.org ./ gpcl 2.32-1 (tar)
  404 Not Found
Err http://people.debian.org ./ gpcl 2.32-1 (diff)
  404 Not Found
Failed to fetch
http://people.debian.org/~rafael/gpcl/gpcl-2.31/gpcl_2.32-1.dsc  404
Not Found
Failed to fetch
http://people.debian.org/~rafael/gpcl/gpcl-2.31/gpcl_2.32.orig.tar.gz
 404 Not Found
Failed to fetch
http://people.debian.org/~rafael/gpcl/gpcl-2.31/gpcl_2.32-1.diff.gz
404 Not Found
E: Failed to fetch some archives.

I managed to wget the source and the diff, and it actually builds =)
Congrats! Full log attached.

Rob
dpkg-buildpackage: source package is gpcl
dpkg-buildpackage: source version is 2.32-1
dpkg-buildpackage: source changed by Rafael Laboissiere [EMAIL PROTECTED]
dpkg-buildpackage: host architecture amd64
 fakeroot debian/rules clean
dpatch  deapply-all  
reverting patch 50_autotools-port from ./ ... ok.
rm -rf patch-stamp patch-stampT debian/patched
dh_testdir
dh_testroot
/usr/bin/make -i distclean
make[1]: Entering directory `/home/roberto/codice/debian/FTBFS/gpcl-2.32'
cd .  /bin/sh /home/roberto/codice/debian/FTBFS/gpcl-2.32/missing --run aclocal-1.9 
/usr/share/aclocal/tcl.m4:20: warning: underquoted definition of SC_PATH_TCLCONFIG
  run info '(automake)Extending aclocal'
  or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
/usr/share/aclocal/tcl.m4:124: warning: underquoted definition of SC_PATH_TKCONFIG
/usr/share/aclocal/tcl.m4:228: warning: underquoted definition of SC_LOAD_TCLCONFIG
/usr/share/aclocal/tcl.m4:295: warning: underquoted definition of SC_LOAD_TKCONFIG
/usr/share/aclocal/tcl.m4:333: warning: underquoted definition of SC_ENABLE_SHARED
/usr/share/aclocal/tcl.m4:373: warning: underquoted definition of SC_ENABLE_FRAMEWORK
/usr/share/aclocal/tcl.m4:428: warning: underquoted definition of SC_ENABLE_THREADS
/usr/share/aclocal/tcl.m4:564: warning: underquoted definition of SC_ENABLE_SYMBOLS
/usr/share/aclocal/tcl.m4:621: warning: underquoted definition of SC_ENABLE_LANGINFO
/usr/share/aclocal/tcl.m4:673: warning: underquoted definition of SC_CONFIG_MANPAGES
/usr/share/aclocal/tcl.m4:806: warning: underquoted definition of SC_CONFIG_CFLAGS
/usr/share/aclocal/tcl.m4:1967: warning: underquoted definition of SC_SERIAL_PORT
/usr/share/aclocal/tcl.m4:2096: warning: underquoted definition of SC_MISSING_POSIX_HEADERS
/usr/share/aclocal/tcl.m4:2178: warning: underquoted definition of SC_PATH_X
/usr/share/aclocal/tcl.m4:2263: warning: underquoted definition of SC_BLOCKING_STYLE
/usr/share/aclocal/tcl.m4:2328: warning: underquoted definition of SC_TIME_HANDLER
/usr/share/aclocal/tcl.m4:2405: warning: underquoted definition of SC_BUGGY_STRTOD
/usr/share/aclocal/tcl.m4:2467: warning: underquoted definition of SC_TCL_LINK_LIBS
/usr/share/aclocal/tcl.m4:2543: warning: underquoted definition of SC_TCL_EARLY_FLAG
/usr/share/aclocal/tcl.m4:2555: warning: underquoted definition of SC_TCL_EARLY_FLAGS
/usr/share/aclocal/tcl.m4:2587: warning: underquoted definition of SC_TCL_64BIT_FLAGS
/usr/share/aclocal/glib.m4:8: warning: underquoted definition of AM_PATH_GLIB
 cd .  /bin/sh /home/roberto/codice/debian/FTBFS/gpcl-2.32/missing --run automake-1.9 --foreign 
configure.in: no proper invocation of AM_INIT_AUTOMAKE was found.
configure.in: You should verify that configure.in invokes AM_INIT_AUTOMAKE,
configure.in: that aclocal.m4 is present in the top-level directory,
configure.in: and that aclocal.m4 was recently regenerated (using aclocal).
automake-1.9: no `Makefile.am' found for any configure output
automake-1.9: Did you forget AC_CONFIG_FILES([Makefile]) in configure.in?
make[1]: [Makefile.in] Error 1 (ignored)
cd .  /bin/sh /home/roberto/codice/debian/FTBFS/gpcl-2.32/missing --run autoconf
/bin/sh ./config.status --recheck
running /bin/sh ./configure  --prefix=/usr  --no-create --no-recursion
test -z libgpcl.la || rm -f libgpcl.la
rm -f ./so_locations
rm -rf .libs _libs
rm -f *.o
rm -f *.lo
rm -f *.tab.c
test -z  || rm -f 
rm -f libtool
rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
rm -f config.status config.cache config.log configure.lineno configure.status.lineno
rm -rf ./.deps
rm -f Makefile
make[1]: Leaving directory `/home/roberto/codice/debian/FTBFS/gpcl-2.32'
rm -f Makefile.in aclocal.m4 config.guess config.sub config.log \
	  configure depcomp install-sh ltmain.sh missing libtool
rm -f autotools-stamp configure-stamp build-stamp
dh_clean
dh_clean: Compatibility levels before 4 are deprecated.
 dpkg-source -b 

Bug#349920: gpcl: FTBFS on amd64

2006-01-25 Thread Roberto Pariset
Rafael Laboissiere ha scritto:
 * Roberto Pariset [EMAIL PROTECTED] [2006-01-25 22:21]:
 
 
Package: gpcl
Version: 2.31-4
Severity: important
Justification: fails to build from source
 
 
 Could you please try with version 2.32-1 of the package?  The source is
 available at http://people.debian.org/~rafael/gpcl/
 
 Thanks.
 

Forgot to say: after installing it, I could almost install octave-gpc,
but it failed because of libhdf5 (#328205). Thanks again for everything,
Rob


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



Bug#349930: evms: initramfs-tools scripts including bbr module and copy twice bbr_seg

2006-01-25 Thread Paul Traina
Package: evms
Version: 2.5.4-4
Severity: minor
Tags: patch

On executing mkinitramfs, we get the following warning:

W:copy_exec: Not copying /lib/evms/2.5.4/bbr_seg-1.1.12.so to 
$DESTDIR/lib/evms/2.5.4/bbr_seg-1.1.12.so, which is already a copy of 
/lib/evms/2.5.4/bbr-1.1.14.so

additionaly bbr-1.1.12.so is getting copied in when we don't need (or want it).



-- Package-specific info:

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US.iso88591)

Versions of packages evms depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libevms-2.5   2.5.4-4Enterprise Volume Management Syste

Versions of packages evms recommends:
ii  evms-cli  2.5.4-4Enterprise Volume Management Syste
ii  evms-gui  2.5.4-4Enterprise Volume Management Syste
ii  evms-ncurses  2.5.4-4Enterprise Volume Management Syste

-- no debconf information
--- evms.old2006-01-25 14:45:52.0 -0800
+++ evms2006-01-25 14:37:16.0 -0800
@@ -28,7 +28,7 @@
 mkdir -p ${DESTDIR}/lib/evms/${EVMS_VERSION}
 
 for x in bbr bbr_seg bsd disk dos drivelink gpt lvm2 mac md multipath; do
-   copy_exec /lib/evms/${EVMS_VERSION}/${x}* /lib/evms/${EVMS_VERSION}
+   copy_exec /lib/evms/${EVMS_VERSION}/${x}-* /lib/evms/${EVMS_VERSION}
 done
 
 for x in dm_mod linear raid0 raid1 raid10 raid5 raid6; do


Bug#348217: RFA: mozilla-firefox-locale-all

2006-01-25 Thread David Moreno Garza
On 21:33 Tue 24 Jan 2006, César wrote:
  I'd be glad to adopt it since I use it myself everyday, if you agree.
 
 Yes, I agree. Thank you very much,

I will have the package ready by the weekend.

-- 
David Moreno Garza [EMAIL PROTECTED]   |  http://www.damog.net/
   [EMAIL PROTECTED]  |  GPG: C671257D
 Ahí vienen esos pinches nacos otra vez.




Bug#349931: kde-clock.desktop: Can set the time zone after entering root password, but time zone does not stay set

2006-01-25 Thread Matt Weatherford
Package: kde-clock.desktop
Severity: important


Time zone changes thru /usr/bin/kcmshell kde-clock.desktop appear
to be changed by user input (after entering root password) but 
new settings do not stay set.  Reverts to UTC after closing the tool.




-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-amd64-generic
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#349932: xserver-xorg: Xorg server crash: symbol lookup error: MGAGetBOARDHANDLESize

2006-01-25 Thread Ziegler Gábor
Package: xserver-xorg
Version: 6.9.0.dfsg.1-4
Severity: important


I have dist-upgraded my 'unstable' system today. Since then, the  X server 
crashes. It has been working fine for years. 
The output on the console is as follows:
rillanon:/# X

X Window System Version 6.9.0 (Debian 6.9.0.dfsg.1-4 20060114230205 David 
Nusinow [EMAIL PROTECTED])
Release Date: 21 December 2005
X Protocol Version 11, Revision 0, Release 6.9
Build Operating System: Linux 2.6.15-1-686 i686 [ELF]
Current Operating System: Linux rillanon 2.6.11-1-686 #1 Mon Jun 20 22:00:38 
MDT 2005 i686
Build Date: 14 January 2006
Before reporting problems, check http://wiki.X.Org
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.11-1-686 ([EMAIL PROTECTED]) (gcc version 3.3.6 
(Debian 1:3.3.6-6)) #1 Mon Jun 20 22:00:38 MDT 2005 F
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Wed Jan 25 23:42:39 2006
(==) Using config file: /etc/X11/xorg.conf
X: symbol lookup error: /usr/X11R6/lib/modules/drivers/mga_drv.so: undefined 
symbol: MGAGetBOARDHANDLESize

-- Package-specific info:
Contents of /var/lib/xfree86/X.roster:
xserver-xfree86
xserver-xorg

/etc/X11/X target unchanged from checksum in /var/lib/xfree86/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 17 2005-11-05 22:22 /etc/X11/X - /usr/bin/X11/Xorg
-rwxr-xr-x 1 root root 1878044 2006-01-15 02:40 /usr/bin/X11/Xorg

Contents of /var/lib/xfree86/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
:01:00.0 VGA compatible controller: Matrox Graphics, Inc. MGA G550 AGP (rev 
01)

/etc/X11/xorg.conf does not match checksum in /var/lib/xfree86/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 5523 2006-01-25 22:55 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:

# XF86Config-4 (XFree86 X server configuration file) generated by dexconf, the
# Debian X Configuration tool, using values from the debconf database.
#
# Edit this file with caution, and see the XF86Config-4 manual page.
# (Type man XF86Config-4 at the shell prompt.)
#
# This file is automatically updated on xserver-xfree86 package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xfree86
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following commands as root:
#
#   cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
#   md5sum /etc/X11/XF86Config-4  /var/lib/xfree86/XF86Config-4.md5sum
#   dpkg-reconfigure xserver-xfree86
#Section ServerLayout
#   Identifier  Default Layout
#   Screen  Default Screen
#   InputDevice Generic Keyboard
#   InputDevice Configured Mouse
#EndSection
#Section Monitor
#   Identifier   Display Merged
#   HorizSync30.0 - 57.0
#   VertRefresh  43.0 - 72.0
#EndSection
#Section Screen
#   Identifier Display Merged
#   Device MATROX CARD 1
#   MonitorDisplay Merged
#   DefaultDepth 16
#   Option  Monitor2Position RightOf
#   Option  MetaModes 1024x768-1024x768 800x600-800x600 
640x480-640x480 1024x768 800x600 640x480 
#   Option  Monitor2HSync 30.0-57.0 
#   Option  Monitor2VRefresh 43.0-72.0 
#   Option  MergedFB
#   SubSection Display
#   #Virtual   2048 768
#   Virtual   2560 1024 
#   Depth 16
#   Modes1280x1024 1024x768 800x600 640x480
#   EndSubSection
#EndSection
#

Section ServerLayout

#   Screen  Default Screen RightOf Secondary Screen
Identifier Matrox PowerDesk configured.
Screen Display 1 LeftOf Display 2
Screen Display 2 0 0
InputDeviceGeneric Keyboard
InputDeviceConfigured Mouse
Option  Xinerama off
#   Screen  Secondary Screen 
EndSection

Section Files

# local font server
# if the local font server has problems, we can fall back on these
FontPath unix/:7100
FontPath /usr/lib/X11/fonts/Type1
FontPath /usr/lib/X11/fonts/CID
FontPath /usr/lib/X11/fonts/Speedo
FontPath /usr/lib/X11/fonts/misc
FontPath /usr/lib/X11/fonts/cyrillic
FontPath /usr/lib/X11/fonts/100dpi
FontPath /usr/lib/X11/fonts/75dpi
EndSection

Section Module

#Load   vbe
#   Option  omit xfree86-dga
#   EndSubSection
#   Loadint10
Load  ddc
#   Loadrecord
Load  dbe
Load  v4l
Load  extmod
#   SubSection extmod
Load  type1
Load  freetype
Load  speedo
#   Loadbitmap
Load  glx
Load  dri

Bug#349555: komi - FTBFS: cannot find -lgp

2006-01-25 Thread Moritz Muehlenhoff
Steve Kemp wrote:
 On Wed, Jan 25, 2006 at 12:29:32PM +0100, Thierry Reding wrote:
  * Bastian Blank wrote:
 
   Package: komi
   Version: 1.03-4
   Severity: serious
   
   There was an error while trying to autobuild your package:
   
 
  I've investigated this a bit, and it looks like the upstream Makefile links
  statically against SDL. I've tried rebuilding with dynamic linking and it
  solves the FTBFS.
  
  Any reason why komi would link statically against SDL? Steve? If not, maybe
  the attached patch should be applied.
 
   I see nothing wrong with this patch.  (Although I'm wondering why
  this build failure didn't manifest itself previously..?)

Possibly because of this SDL change:

libsdl1.2 (1.2.9-0.0) unstable; urgency=low

  * 002_static_libs.diff:
+ New patch that adds libaaâ8099s required static libraries to 
sdl-configâ8099s
  --static-libs output (Closes: #273018, #246477).

Speaking of SDL; it seems like the regular maintainer is MIA and the current
co-maintainer is not a DD. Maybe we can move it to the Debian Games Group as
well?

Cheers,
Moritz


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



Bug#349933: piuparts: Support testing strictly the install-remove process of given package(s)

2006-01-25 Thread James Vega
Package: piuparts
Version: 0.14-1
Severity: wishlist

It'd be useful if one could specify an option so that piuparts wouldn't
attempt to upgrade from an existing version in the archives.  Only an
install and remove of the specified package(s) would be tested.

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

Versions of packages piuparts depends on:
ii  apt   0.6.43.2   Advanced front-end for dpkg
ii  debootstrap   0.3.3  Bootstrap a basic Debian system
ii  python2.3.5-5An interactive high-level object-o

piuparts recommends no packages.

-- no debconf information


signature.asc
Description: Digital signature


Bug#344767: About bug #344767

2006-01-25 Thread Cesare Leonardi

Hi Otavio.
Recently i've talked with someone else that cannot purge 2.6.14, as 
described in #344767.
I know that now it is solved for 2.6.15, but for people that still use 
2.6.14 or have used it, the problem of purging it completely still 
exist. For example on my machine, the various kernel images i've used 
when i looked for bug 344767 are now uninstalled but marked as c and 
if i try to purge them, the locks described in the bug report arise.
After upgrading to 2.6.15 and have seen that the bug was corrected, i've 
forgotten about this and the not clean situation left by the 2.6.14 
uninstall procedure.


At the last comment of the bug report you have reported a method to 
clean the situation that i haven't understand:



I had the problem described here which I reported as bug #349219. I
have grub 0.97-4. I still cannot purge linux-image-2.6.14-2-386. Is
bug #344767 fixed in grub 0.97-4?


the problem isn't with grub but kernel-package scripts. Check the
postinst where it stops. Try to run it for purge with -x.


To which program do the -x options belong to?
Please, can you re-explain how to definitively purge 2.6.14 in a more 
verbose way?


I've CC'ed this message to the bug report hoping that your reply will go 
there too, helping other people that try to solve that purging problem.


Regards.

Cesare.


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



Bug#344767: About bug #344767

2006-01-25 Thread Otavio Salvador
Cesare Leonardi [EMAIL PROTECTED] writes:

 Hi Otavio.
 Recently i've talked with someone else that cannot purge 2.6.14, as
 described in #344767.
 I know that now it is solved for 2.6.15, but for people that still use
 2.6.14 or have used it, the problem of purging it completely still
 exist. For example on my machine, the various kernel images i've used
 when i looked for bug 344767 are now uninstalled but marked as c and
 if i try to purge them, the locks described in the bug report arise.
 After upgrading to 2.6.15 and have seen that the bug was corrected,
 i've forgotten about this and the not clean situation left by the
 2.6.14 uninstall procedure.

Edit its postrm file and remove db_stop call, IIRC. Should work.

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://www.freedom.ind.br/otavio
-
Microsoft gives you Windows ... Linux gives
 you the whole house.


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



Bug#348418: Solved

2006-01-25 Thread Georg Wittenburg
Hi!

Upgrading to hal 0.5.5.1-5 (and depending packages) indeed fixes the problem.

Please adjust the depends of the KDE packages accordingly.

Thanks for your help!

   Georg

-- 
Georg Wittenburg
http://page.mi.fu-berlin.de/~wittenbu/


pgp6AeWozzrAd.pgp
Description: PGP signature


Bug#349929: Acknowledgement (evms: initramfs-tools new script not executed)

2006-01-25 Thread Paul Traina
--- rules   2006-01-25 15:21:49.887915945 -0800
+++ rules   2006-01-25 15:22:27.427655231 -0800
@@ -107,10 +107,10 @@
 
install -m 644 debian/evms.devfs 
$(CURDIR)/debian/evms/etc/devfs/conf.d/evms
install -m 644 debian/evms.mkinitrd.probe 
$(CURDIR)/debian/evms/usr/share/initrd-tools/probe.d/evms
-   install -m 644 debian/hooks_evms 
$(CURDIR)/debian/evms/usr/share/initramfs-tools/hooks/evms
-   install -m 644 debian/local-top_evms 
$(CURDIR)/debian/evms/usr/share/initramfs-tools/scripts/local-top/evms
-   install -m 644 debian/hooks_evms_bootdebug 
$(CURDIR)/debian/evms-bootdebug/usr/share/initramfs-tools/hooks/evms_bootdebug
-   install -m 644 debian/local-top_evms_bootdebug 
$(CURDIR)/debian/evms-bootdebug/usr/share/initramfs-tools/scripts/local-top/evms_bootdebug
+   install -m 755 debian/hooks_evms 
$(CURDIR)/debian/evms/usr/share/initramfs-tools/hooks/evms
+   install -m 755 debian/local-top_evms 
$(CURDIR)/debian/evms/usr/share/initramfs-tools/scripts/local-top/evms
+   install -m 755 debian/hooks_evms_bootdebug 
$(CURDIR)/debian/evms-bootdebug/usr/share/initramfs-tools/hooks/evms_bootdebug
+   install -m 755 debian/local-top_evms_bootdebug 
$(CURDIR)/debian/evms-bootdebug/usr/share/initramfs-tools/scripts/local-top/evms_bootdebug
 
 binary-indep: build-indep
dh_testdir -i


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



Bug#349934: evms: heartbeat warnings (libhbclient.so.0)

2006-01-25 Thread Paul Traina
Package: evms
Version: 2.5.4-4
Severity: normal


EVMS Command Line Interpreter Version 2.5.4

Engine: Error loading /lib/evms/2.5.4/ha-1.1.0.so: libhbclient.so.0: cannot 
open shared object file: No such file or directory

I believe that /lib/evms/2.5.4/ha-1.1.0.so should be part of the
evms-ha package and not the base package.  If the heartbeat libraries
are installed, evms still whines about heartbeat not being configured.

I see that evms-ha.install is listing the ha*.so file, so I'm confused
why it's not being rmed... clearly there is some subtle stuff from the
move from *.files to *.install back on the 14th.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US.iso88591)

Versions of packages evms depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libevms-2.5   2.5.4-4Enterprise Volume Management Syste

Versions of packages evms recommends:
ii  evms-cli  2.5.4-4Enterprise Volume Management Syste
ii  evms-gui  2.5.4-4Enterprise Volume Management Syste
ii  evms-ncurses  2.5.4-4Enterprise Volume Management Syste

-- no debconf information


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



Bug#349935: FTBFS: undefined references in libselinux

2006-01-25 Thread Nicolas François
Package: rpm
Version: 4.4.1-5
Severity: normal
Tags: patch

Hello,

rpm currently fails to build from source:
...
# Build lsb-rpm, statically linked. I'm building only rpmb, which
# is all that should be needed in the lsbdev chroot. It can be
# installed as lsb-rpm, and should stand in for rpm.
cc -o lsb-rpm build.o rpmb.o ./build/.libs/librpmbuild.a \
./lib/.libs/librpm.a ./rpmdb/.libs/librpmdb.a \
./rpmio/.libs/librpmio.a -L/usr/local/lib -lbeecrypt -lneon \
-lssl -lcrypto -lxml2 -lm -lsqlite3 -lz -lbz2 -lpopt -ldb \
-lselinux -ldl -lpthread --static
./rpmio/.libs/librpmio.a(liblua_la-loadlib.o): In function 
`loadlib':lib/loadlib.c:53: AVERTISSEMENT: Using 'dlopen' in statically linked 
applications requires at runtime the shared libraries from the glibc version 
used for linking
./build/.libs/librpmbuild.a(names.o): In function 
`getGname':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/build/names.c:142: 
AVERTISSEMENT: Using 'getgrgid' in statically linked applications requires at 
runtime the shared libraries from the glibc version used for linking
./build/.libs/librpmbuild.a(names.o): In function 
`getGnameS':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/build/names.c:168: 
AVERTISSEMENT: Using 'getgrnam' in statically linked applications requires at 
runtime the shared libraries from the glibc version used for linking
./lib/.libs/librpm.a(psm.o): In function 
`rpmpsmStage':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/lib/psm.c:1995: 
AVERTISSEMENT: Using 'endgrent' in statically linked applications requires at 
runtime the shared libraries from the glibc version used for linking
./build/.libs/librpmbuild.a(names.o): In function 
`getUnameS':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/build/names.c:84: 
AVERTISSEMENT: Using 'getpwnam' in statically linked applications requires at 
runtime the shared libraries from the glibc version used for linking
./build/.libs/librpmbuild.a(names.o): In function 
`getUname':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/build/names.c:58: 
AVERTISSEMENT: Using 'getpwuid' in statically linked applications requires at 
runtime the shared libraries from the glibc version used for linking
./lib/.libs/librpm.a(psm.o): In function 
`rpmpsmStage':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/lib/psm.c:1990: 
AVERTISSEMENT: Using 'endpwent' in statically linked applications requires at 
runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.0.3/../../../../lib/libneon.a(ne_socket.o): In 
function `ne_addr_resolve': AVERTISSEMENT: Using 'getaddrinfo' in statically 
linked applications requires at runtime the shared libraries from the glibc 
version used for linking
./lib/.libs/librpm.a(rpmchecksig.o): In function 
`rpmcliSign':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/lib/rpmchecksig.c:353: 
AVERTISSEMENT: the use of `mktemp' is dangerous, better use `mkstemp'
./build/.libs/librpmbuild.a(names.o): In function 
`buildHost':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/build/names.c:230: 
AVERTISSEMENT: Using 'gethostbyname' in statically linked applications requires 
at runtime the shared libraries from the glibc version used for linking
./rpmio/.libs/librpmio.a(url.o): In function 
`urlSplit':/tmp/fetchmail/rpm/orig.build/rpm-4.4.1/rpmio/url.c:513: 
AVERTISSEMENT: Using 'getservbyname' in statically linked applications requires 
at runtime the shared libraries from the glibc version used for linking
/usr/lib/gcc/i486-linux-gnu/4.0.3/../../../../lib/libselinux.a(load_policy.o): 
In function 
`selinux_mkload_policy':/home/srivasta/libselinux-1.28/src/load_policy.c:40: 
référence indéfinie vers « sepol_policy_kern_vers_max »
:/home/srivasta/libselinux-1.28/src/load_policy.c:77: référence indéfinie vers 
« sepol_policy_file_create »
:/home/srivasta/libselinux-1.28/src/load_policy.c:79: référence indéfinie vers 
« sepol_policydb_create »
:/home/srivasta/libselinux-1.28/src/load_policy.c:83: référence indéfinie vers 
« sepol_policy_file_set_mem »
:/home/srivasta/libselinux-1.28/src/load_policy.c:84: référence indéfinie vers 
« sepol_policydb_read »
:/home/srivasta/libselinux-1.28/src/load_policy.c:89: référence indéfinie vers 
« sepol_policydb_set_vers »
:/home/srivasta/libselinux-1.28/src/load_policy.c:89: référence indéfinie vers 
« sepol_policydb_to_image »
:/home/srivasta/libselinux-1.28/src/load_policy.c:92: référence indéfinie vers 
« sepol_policy_file_free »
:/home/srivasta/libselinux-1.28/src/load_policy.c:93: référence indéfinie vers 
« sepol_policydb_free »
:/home/srivasta/libselinux-1.28/src/load_policy.c:99: référence indéfinie vers 
« sepol_policy_file_free »
:/home/srivasta/libselinux-1.28/src/load_policy.c:100: référence indéfinie vers 
« sepol_policydb_free »
:/home/srivasta/libselinux-1.28/src/load_policy.c:106: référence indéfinie vers 
« sepol_genusers »
:/home/srivasta/libselinux-1.28/src/load_policy.c:126: référence indéfinie vers 
« sepol_genbools_array »

Bug#349936: librsvg2-bin: mozilla plugin disables firefox 1.5 SVG support

2006-01-25 Thread Hans Ulrich Niedermann
Package: librsvg2-bin
Version: 2.12.7-3
Severity: normal


Firefox 1.5 comes with builtin SVG support. Installing the librsvg2-bin
disables the SVG support in FF 1.5 by overriding it with the rsvg
plugin -- even if one just wanted the rsvg and rsvg-view programs.

I'd suggest librsvg2-bin either
  a) ships with documentation on how to disable the specific FF plugin
  b) ceases shipping the mozilla plugin, moving it to a new package
where b) would be the preferred way.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (700, 'unstable'), (100, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-suspend2-2.2-rc15
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages librsvg2-bin depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libglib2.0-0  2.8.5-1The GLib library of C routines
ii  libgnomeprint2.2-02.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0  2.12.1-2   GNOME 2.2 print architecture User 
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  librsvg2-22.12.7-3   SAX-based renderer library for SVG
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li

librsvg2-bin recommends no packages.

-- no debconf information


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



Bug#300397: psi: docklet for wmaker produces additional window

2006-01-25 Thread Hubert Chan
The patch still works and applies cleanly to psi 0.10, with the 
exception that the file to be patched is now 
psi-0.10/src/tools/trayicon/trayicon_x11.cpp instead of 
psi-0.10/cutestuff/trayicon/trayicon_x11.cpp.


I think this bug should probably be forwarded upstream.

--
Hubert Chan [EMAIL PROTECTED] - http://www.uhoreg.ca/
PGP/GnuPG key: 1024D/124B61FA
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA
Key available at wwwkeys.pgp.net.   Encrypted e-mail preferred.


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



Bug#342128: does install-todo work?

2006-01-25 Thread Dan Jacobson
m Corrected in 0.11.8-0.12.0-pre4-3 (from Debian/experimental)
m You are losing your time if you file bugs that are ALREADY corrected.
I'm offline and use sid, not experimental. Do it take an effort to
track all of potential debian bugs...
Anyway, I hope
$ install-todo Bla
works. I don't see anything on my palm after running it with 0.11.8-17.


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



Bug#349556: pdftotext -raw a lifesaver

2006-01-25 Thread Dan Jacobson
D Regarding that PDF file -- I'm seeing a misordering of columns on page
D 12 (the one with the title The Debate about Husband Abuse.  Are you
D seeing any other problems besides that?

All I know is that page looks fine only if I use -raw.
$ pdftotext  -raw -f 12 -l 13 -enc Latin1 husbandenglish.pdf -|sum
55312 7
$ pdftotext   -f 12 -l 13 -enc Latin1 husbandenglish.pdf -|sum
01714 7
Just to make sure you see what I see.

D (For example, I've seen two-column PDF files where the text was drawn in
D the order column 1, line 1, col 2, line 1, col 1, line 2, col 2,

Sounds like my brief encounter with -layout mode.


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



Bug#349895: formatting error in filepp.1

2006-01-25 Thread Christoph Haas
On Wednesday 25 January 2006 21:21, Nicolas François wrote:
 The attached patch fixes a formatting error in filepp.1.

Thanks for your contribution. Updates package is on its way.

 Christoph



Bug#349924: Wrong Permissions on tty

2006-01-25 Thread Thomas Dickey
On Wed, Jan 25, 2006 at 11:20:15PM +0100, Klaus Ethgen wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Package: xterm
 Version: 208-3.1
 Severity: normal
 Tags: sid
 
 The newest xterm set the wrong permissions on tty:
 ikki:~ ls -l `tty`
 crw--w--w- 1 klaus ethgen 136, 9 2006-01-25 22:50 /dev/pts/9
 
 this should be:
 crw--w--w- 1 klaus tty136, 9 2006-01-25 22:50 /dev/pts/9

I believe this is the same problem as #349142.

I think it's a case where the build environment lacks a tty in its /etc/group
file, and have added an option to the configure script to allow the packager to
force it to work around this case (will be in #209).

-- 
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net


pgp1vw9xpb6MP.pgp
Description: PGP signature


Bug#349937: korganizer: export to HTML doesn't work with remote calendars

2006-01-25 Thread Ryan Nowakowski
Package: korganizer
Version: 4:3.5.0-4
Severity: minor


I'm using only remote calendars.  File-Export-Export Web Page
generates a list of my todo items but no calendar info.

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

Versions of packages korganizer depends on:
ii  kdelibs4c2a   4:3.5.0-3  core libraries for all KDE applica
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libaudio2 1.7-3  The Network Audio System (NAS). (s
ii  libc6 2.3.5-12   GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-7  GCC support library
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libidn11  0.5.18-1   GNU libidn library, implementation
ii  libjpeg62 6b-11  The Independent JPEG Group's JPEG 
ii  libkcal2b 4:3.5.0-4  KDE calendaring library
ii  libkdepim1a   4:3.5.0-4  KDE PIM library
ii  libkpimexchange1  4:3.5.0-4  KDE PIM Exchange library
ii  libkpimidentities14:3.5.0-4  KDE PIM user identity information 
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libstdc++64.0.2-7The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxi66.9.0.dfsg.1-4 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-4 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-4 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics
ii  perl  5.8.7-10   Larry Wall's Practical Extraction 
ii  zlib1g1:1.2.3-9  compression library - runtime

Versions of packages korganizer recommends:
ii  kghostview4:3.5.0-3  PostScript viewer for KDE

-- no debconf information


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



Bug#349888: [Pkg-octave-devel] Bug#349888: octave-gpc: missing libgpcl-dev

2006-01-25 Thread Roberto Pariset
Rafael Laboissiere ha scritto:
The bug is probably related to #334230 but I can't be sure as
libgpcl-dev is not apt-gettable now. 
 
 
 I think that these are two unrelated problems.


Also forgot: that problem should not affect amd64 as I have
/usr/include/gpcl/gpc.h.

R.


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



Bug#349938: rpm: The Japanese, Korean and Russian man pages should not be encoded in UTF-8

2006-01-25 Thread Nicolas François
Package: rpm
Version: 4.4.1-5
Severity: minor
Tags: patch

Hello,

Redhat distributes UTF-8 man pages. On Debian, the man pages must be
encoded according to the charset defined in man-db (src/encodings.c).
That is to say EUC-JP, EUC-KR and KOI8-R respectively for the Japanese,
Korean and Russian man pages.
I don't think there is a problem with the other languages.

The attached patch adds a debian/recode_manpages.sh script, called in the
binary-arch: rule of debian/rules.

Presently,
LANG=ja LC_ALL=ja_JP.UTF-8 man -Lja rpm  /dev/null
returns tons of
warning: can't find numbered character
Recoding the manpage fixes these warnings.

Best Regards,
-- 
Nekral
diff -rauN ../orig/rpm-4.4.1/debian/recode_manpages.sh 
./rpm-4.4.1/debian/recode_manpages.sh
--- ../orig/rpm-4.4.1/debian/recode_manpages.sh 1970-01-01 01:00:00.0 
+0100
+++ ./rpm-4.4.1/debian/recode_manpages.sh   2006-01-25 22:04:54.0 
+0100
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+# Upstream man pages are UTF-8encoded.
+# The man pages need to be recoded according to the encodings used in Debian.
+# (defined in src/encodings.c in man-db)
+
+echo jaEUC-JP
+  koEUC-KR
+  ruKOI8-R |
+while read lang encoding
+do
+echo recoding lang: $lang to $encoding
+for page in debian/tmp/usr/share/man/$lang/man[1-8]/*
+do
+echo recoding $page
+iconv -t $encoding -f UTF8  $page  $page.recoded
+mv $page.recoded $page
+done
+done
+
diff -rauN ../orig/rpm-4.4.1/debian/rules ./rpm-4.4.1/debian/rules
--- ../orig/rpm-4.4.1/debian/rules  2006-01-25 21:23:57.0 +0100
+++ ./rpm-4.4.1/debian/rules2006-01-26 00:53:03.0 +0100
@@ -78,6 +78,9 @@
chmod 644 debian/tmp/usr/lib/rpm/Specfile.pm
chmod -R 644 debian/tmp/usr/lib/python2.3/site-packages/rpmdb/
chmod 644 debian/tmp/usr/lib/python2.3/site-packages/rpm/__init__.py
+   # Recode the (translated) manpages according to the encoding expected
+   # on Debian
+   /bin/sh debian/recode_manpages.sh
# rpmdiff.cgi is crap that I don't want installed
dh_install -X rpmdiff.cgi
dh_link usr/share/man/man8/rpm.8 usr/share/man/man8/rpmdb.8 \


Bug#344236: addl information

2006-01-25 Thread Daniel Lakeland
I saw this same bug when I upgraded xfce4.

I upgraded one library at a time as suggested by Li Daobing.

The one that did the trick was libxfcegui4-3 4.2.3-1

Looks like a dependency problem, simply upgrading xfce4 should pull in
all the latest libraries.


-- 
Daniel Lakeland
[EMAIL PROTECTED]
http://www.street-artists.org/~dlakelan


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



Bug#349939: came: links to libfreetype6, which is going away

2006-01-25 Thread Steve Langasek
Package: came
Version: 1.9-1
Severity: grave
Tags: patch

Hi Ben,

The came package currently depends on libfreetype6, but it does not use it.
This dependency is being pulled in via giblib-config --libs, which works as
designed but is *not* a correct tool for getting a list of libs to link
against on a GNU system using dynamic linking.

Attached is a short patch which fixes the came package build to no longer
link against spurious libraries.  This patch changes the binary package
dependencies from this:

 Depends: giblib1 ( 1.2.4), libc6 (= 2.3.2.ds1-4), libcurl3 (= 7.12.2-1), 
libfreetype6 (= 2.1.5-1), libimlib2, libx11-6 | xlibs ( 4.1.0), libxext6 | 
xlibs ( 4.1.0), zlib1g (= 1:1.2.1)

to this:

 Depends: giblib1 ( 1.2.4), libc6 (= 2.3.5-1), libcurl3 (= 7.15.0-1), 
libimlib2

Although libfreetype6 is currently available in unstable, due to bug #314385
it is very likely that this package will have to go through a library
transition in the near future.  Since came doesn't use freetype, I'm filing
this bug at grave severity pre-emptively, to encourage you to get your
package free of the transition before it starts.  Please fix this bug at
your earliest convenience.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
diff -u came-1.9/debian/changelog came-1.9/debian/changelog
--- came-1.9/debian/changelog
+++ came-1.9/debian/changelog
@@ -1,3 +1,11 @@
+came (1.9-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Hard-code -lgiblib -lImlib2 instead of using the output of giblib-config,
+which is incorrect for GNU/* systems using dynamic linking.
+
+ -- Steve Langasek [EMAIL PROTECTED]  Wed, 25 Jan 2006 02:58:32 -0800
+
 came (1.9-1) unstable; urgency=low
 
   * New upstream.
only in patch2:
unchanged:
--- came-1.9.orig/Makefile
+++ came-1.9/Makefile
@@ -23,7 +23,7 @@
 all build: $(PROGS)
 
 camE: $(OBJS)
-   $(CC) $(CFLAGS) -o $@ $(OBJS) `giblib-config --libs` -lcurl
+   $(CC) $(CFLAGS) -o $@ $(OBJS) -lgiblib -lImlib2 -lcurl
 
 install: all
$(INSTALL_DIR) $(bindir)


signature.asc
Description: Digital signature


Bug#349825: .conf: section headers should not be commented

2006-01-25 Thread Peter Samuelson

[Olaf van der Spek]
 Is there a (good) reason these headers are comments?
 If not, please uncomment them.

No good reason.  I agreed with upstream's reply to you two days ago,
but hadn't thought about patching Debian's copy.

I expect this fix will get into upstream 1.3.x eventually, but if not,
I'll probably put it in Debian, since it's such a trivial patch.

Peter


signature.asc
Description: Digital signature


Bug#349928: evms-bootdebug is nonfunctional with initramfs-tools

2006-01-25 Thread Steinar H. Gunderson
severity 349928 grave
thanks

On Wed, Jan 25, 2006 at 02:32:22PM -0800, Paul Traina wrote:
 the initramfs-tools/hooks/evms-bootdebug script isn't being built/installed

Well, in that case, the package is useless. Upgrading the severity so the
version won't hit etch.

I'm really sorry to have evms in this state ATM, but as previously explained
I don't have a machine handy that can be actually used for testing. I'm
considering simply orphaning the package at this point, as there's no good
indication that my laptop is ever going to work again.

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


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



Bug#349913: lynx-cur: DEFAULT_EDITOR:emacs +%l

2006-01-25 Thread Thomas Dickey
On Wed, Jan 25, 2006 at 10:20:14PM +0100, Dan Jacobson wrote:
 Package: lynx-cur-wrapper
 Version: 2.8.6-17
 Severity: wishlist
 File: /usr/bin/lynx-cur
 Tags: upstream
 
 Regarding DEFAULT_EDITOR and
  e - Edit the current file
 
 Well it would be neat to be able to pass it the current line number;

it would.  But that's not always that simple (since lynx digests the source
file before rendering, it could only approximate this).  Actually (a quick
check) it is passing a line-number for me, but that's computed from the
display rather than the source.

-- 
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net


pgpt3uLrtM6ft.pgp
Description: PGP signature


Bug#349936: librsvg2-bin: mozilla plugin does not disable firefox 1.5 SVG support after all

2006-01-25 Thread Hans Ulrich Niedermann
Package: librsvg2-bin
Version: 2.12.7-3
Followup-For: Bug #349936


The original bug report was wrong: Installing the rsvg mozilla
plugin (contained in the librsvg2-bin package) does not disable
the SVG support built into firefox 1.5.

My apologies (I still had svg.enabled set to false in about:config).

However, the point that librsvg2-bin is forcing installation and
execution of a mozilla plugin onto all Mozilla/Firefox users who
just want to use one or two command line programs is still valid.

I still think that either
  - the mozilla plugin should be shipped in a separate package
or
  - the librsvg2-bin package should contain documentation on
how to disable the plugin (or even disable it by default)

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (900, 'stable'), (700, 'unstable'), (100, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-suspend2-2.2-rc15
Locale: LANG=C, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages librsvg2-bin depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libglib2.0-0  2.8.5-1The GLib library of C routines
ii  libgnomeprint2.2-02.12.1-3   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0  2.12.1-2   GNOME 2.2 print architecture User 
ii  libgtk2.0-0   2.8.10-1   The GTK+ graphical user interface 
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  librsvg2-22.12.7-3   SAX-based renderer library for SVG
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li

librsvg2-bin recommends no packages.

-- no debconf information


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



Bug#41030: 72% of members got laid

2006-01-25 Thread Adrian
Hey dude.
Just found this amazingly insane date site that is just for sex-addicts!

No cheezy pickup lines... no flowers... no walks on the beach... just meet up 
for sex

Sounds like fun? Well that's not all, it won't cost you a penny to joing :-P

http://www.getting-action-tonight.us


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



Bug#318825: dpkg: fix erranous directory not empty warnings (other patch)

2006-01-25 Thread Lars Wirzenius
ma, 2006-01-16 kello 00:45 +0100, Bart Martens kirjoitti:
 I've had a look at your patches, and I didn't feel comfortable with the
 idea of adding a generated list of parent directories.  I think it's
 better to prevent that the forgotten directories become forgotten.  The
 patch below does that.

I've now run piuparts with a dpkg using this patch against approximately
1200 packages that used to pass piuparts testing, and only three failed
and none of those failures were related to dpkg. This was without
piuparts minimizing the chroot (which triggered the bug for me), because
that's how things worked before. I conclude that the patch doesn't make
dpkg broken in usual usage.

I'll now see how well things work with the minimzing, i.e., to really
start excercising Bart's patch. I'll report tomorrow how things work.

-- 
If possible, use code, not comments.



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



Bug#349940: ssh: does not obey /etc/hosts.deny

2006-01-25 Thread Marcos Pinto
Package: ssh
Severity: serious
Justification: unkown

i have various machines listed in /etc/hosts.deny in this format:
ALL: x.x.x.x
where x.x.x.x = ip
however, sshd still allows those ips to login, when it should not.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-smp
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#349941: ide-scsi: Broken but initrd insists on using it for my cdburner.

2006-01-25 Thread Bernardo Arlandis Mañó

Package: initrd-tools
Version: 0.1.84
Severity: normal

Hi.

My system is booting with module ide-scsi loaded by the initrd image. I 
think this is the same as bug #232577, maybe a regression.


Best regards.

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

Versions of packages initrd-tools depends on:
ii  coreutils [fileutils] 5.2.1-2.1  The GNU core utilities
ii  cpio  2.6-10 GNU cpio -- a program to
manage ar
ii  cramfsprogs   1.1-6  Tools for CramFs
(Compressed ROM F
ii  dash  0.5.3-1The Debian Almquist Shell
ii  util-linux2.12p-8Miscellaneous system utilities

initrd-tools recommends no packages.

-- no debconf information

--
Bernardo Arlandis Mañó
http://berarma.webhop.org/




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



Bug#338407: Please remove guile 1.4 (all Source: guile-core related packages)

2006-01-25 Thread Jeroen van Wolffelaar
On Tue, Jan 17, 2006 at 04:07:55PM -0800, Rob Browning wrote:
 Jeroen van Wolffelaar [EMAIL PROTECTED] writes:
 
  On Sun, Nov 20, 2005 at 05:15:34PM -0800, Rob Browning wrote:
  Jeroen van Wolffelaar [EMAIL PROTECTED] writes:
  
   Please do file bugs on depending packages so that they can transition, 
   and
   won't become instantly buggy without prior warning.
  
  OK.  I've already sent mail to the gnurobots and gnubg maintainers.
  The gnurobots maintainer said that he'd just upload a new version, and
  it looks like he has.
 
  Last upload was 2004-03-14, and no, there still is no new upstream or so,
  nor is there even a bug filed on the package over this removal. Can you
  please do so?
 
 Hmm, well something's confused here.  The output of apt-cache show
 gnurobots seems to indicate that the package does not depend on Guile
 1.4.  I'm not sure why I thought it did.
 
   Package: gnurobots
   Priority: optional
   Section: games
   Installed-Size: 165
   Maintainer: James LewisMoss [EMAIL PROTECTED]
   Architecture: i386
   Version: 1:1.0D-6
   Depends: guile-1.6-libs, libc6 (= 2.3.2.ds1-4), libguile-ltdl-1, libice6 | 
 xlibs ( 4.1.0), libncurses5 (= 5.4-1), libqthreads-12, libsm6 | xlibs ( 
 4.1.0), libx11-6 | xlibs ( 4.1.0), libxpm4 | xlibs ( 4.1.0)

Architecture: i386
Version: 1:1.0D-6.1
Depends: libc6 (= 2.3.5-1), libguile9 (= 1:1.4-26), libice6, libncurses5 (= 
5.4-5), libsm6, libx11-6, libxpm4

Looks like the -6 version was built against guile1.6 in some way, despite
the build-depends really stating guile 1.4. I don't recall, but it might be
that libguile9 was only in the Depends for !i386.

Anyway, can you please file a bug still?

--Jeroen

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED]
http://jeroen.A-Eskwadraat.nl


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



Bug#349942: polipo: dies after timeout

2006-01-25 Thread Vincent Zweije
Package: polipo
Version: 0.9.8-1
Severity: important

Polipo crashes after timeout.

Not sure the timeout has to do with it, I'm also seeing a POST to a
setiathome URL.

Recompiled 0.9.8-1 from source, copied polipo to /usr/local/bin and used
that, core dump revealed a failed assertion:

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

Core was generated by `/usr/local/bin/polipo -c /etc/polipo/config 
pidFile=/var/run/polipo/polipo.pid'.
Program terminated with signal 11, Segmentation fault.

warning: Can't read pathname for load map: Input/output error.
Reading symbols from /lib/tls/libc.so.6...done.
Loaded symbols for /lib/tls/libc.so.6
Reading symbols from /lib/ld-linux.so.2...done.
Loaded symbols for /lib/ld-linux.so.2
#0  0x0805c725 in httpServerContinueObjectHandler (status=0, 
ohandler=0x80738e8) at server.c:1001
1001assert(object == connection-request-object);
(gdb) where
#0  0x0805c725 in httpServerContinueObjectHandler (status=0, 
ohandler=0x80738e8) at server.c:1001
#1  0x0804f8c4 in notifyObject (object=0x80738e8) at object.c:771
#2  0x0804eb4b in releaseNotifyObject (object=0x0) at object.c:293
#3  0x0805c96f in httpServerFinish (connection=0x8073a20, s=1, offset=0) at 
server.c:1061
#4  0x0805b424 in httpServerAbort (connection=0x8073a20, fail=1, code=502, 
message=0x8073cb0) at server.c:268
#5  0x0805da71 in httpServerReplyHandler (status=-104, event=0x8072ae0, 
srequest=0x8072af0) at server.c:1628
#6  0x0804c230 in do_scheduled_stream (status=0, event=0x8072ae0) at 
io.c:351
#7  0x0804b95b in eventLoop () at event.c:699
#8  0x0805439b in main (argc=8, argv=0xbfd6ff04) at main.c:163
(gdb) list
996 httpServerContinueObjectHandler(int status, ObjectHandlerPtr 
ohandler)
997 {
998 ObjectPtr object = ohandler-object;
999 HTTPConnectionPtr connection = 
*(HTTPConnectionPtr*)ohandler-data;
1000
1001assert(object == connection-request-object);
1002if(connection-request-wait_continue)
1003return 0;
1004httpServerDelayedDoSide(connection);
1005return 1;
(gdb) quit
#tail /var/log/polipo/polipo.log
Uncacheable object 
http://statse.webtrendslive.com/dcsb9yqktf9xjy8pgpa4kos1s_5q5o/dcs.gif?dcsredirect=1dcsdat=1138229523356dcssip=nl.gizmodo.comdcsuri=/dcsref=http://www.dogpile.com/info.dogpl/search/web/linux%2Bwireless%2BheadsetWT.tz=1WT.bh=23WT.ul=en-USWT.cd=24WT.sr=1280x1024WT.jo=NoWT.ti=Gizmodo%20NL%20:%20D%C3%A8%20gadget%20weblogWT.js=YesWT.jv=1.5WT.bs=1022x861WT.fi=YesWT.fv=7.0WT.sp=@@SPLITVALUE@@WT.cg_n=GizmodoWT.cg_s=gizmodoWT.co_f=213.84.230.57-4116620496.29762049WT.vt_f=1WT.vt_f_a=1WT.vt_f_s=1WT.vt_f_d=1WT.vt_sid=213.84.230.57-4116620496.29762049.1138229523362
 (2)
Uncacheable object 
http://www.geekzone.co.nz/forums.asp?ForumId=8TopicId=1659 (74)
Uncacheable object 
http://a.tribalfusion.com/j.ad?site=GeekzoneadSpace=ROSsize=468x60type=horizrequestID=632304700.7260265098561608
 (10)
Uncacheable object 
http://a.tribalfusion.com/j.ad?site=GeekzoneadSpace=ROSsize=160x600type=varrequestID=632308760.41459924356268807
 (10)
Unsupported Cache-Control directive x-gzip-ok -- ignored.
Unsupported Cache-Control directive x-gzip-ok -- ignored.
Unsupported Cache-Control directive x-gzip-ok -- ignored.
Read from server failed: Timeout (65539)
Connect to ldp.nllgg.nl:80 failed: Connection timed out (110)
Read from server failed: Connection reset by peer (104)
#tail /var/log/polipo-trace.log 
8372  1138230266.026320 gettimeofday({1138230266, 26331}, NULL) = 0
8372  1138230266.026370 connect(6, {sa_family=AF_INET, sin_port=htons(80), 
sin_addr=inet_addr(66.28.250.125)}, 16) = 0
8372  1138230266.026433 setsockopt(6, SOL_TCP, TCP_NODELAY, [1], 4) = 0
8372  1138230266.026495 write(6, POST /sah_cgi/file_upload_handle..., 
337) = 337
8372  1138230266.026559 gettimeofday({1138230266, 26568}, NULL) = 0
8372  1138230266.026595 poll([{fd=0, 
events=POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL}, {fd=2, 
events=POLLIN|POLLERR|POLLHUP|POLLNVAL}, {fd=1, 
events=POLLOUT|POLLERR|POLLHUP|POLLNVAL}, {fd=5, 
events=POLLIN|POLLERR|POLLHUP|POLLNVAL}, {fd=6, 
events=POLLIN|POLLERR|POLLHUP|POLLNVAL, revents=POLLIN|POLLERR|POLLHUP}], 5, 
3) = 1
8372  1138230266.350425 gettimeofday({1138230266, 350437}, NULL) = 0
8372  1138230266.350474 read(6, 0xb7dd7000, 4096) = -1 ECONNRESET 
(Connection reset by peer)

Bug#349020: Please remove the source package gmime and the binary packages libgmime0 and libgmime0-dev from unstable.

2006-01-25 Thread Jeroen van Wolffelaar
On Fri, Jan 20, 2006 at 03:59:09PM +0100, Guus Sliepen wrote:
 On Sun, May 30, 2004 at 06:40:32PM +0200, Ove Kaaven wrote:
 
  søn, 30.05.2004 kl. 13.37 skrev Guus Sliepen:
   I am planning to upload libgmime2 with just the Maintainer: field
   changed, and a new libgmime2.1 package. However, there are also packages
   in unstable for libgmime0 and libgmime1. As far as apt-cache rdepends
   can tell me, there are no Debian packages depending on them, so I'm
   inclined to send an email to ftp-master to have them removed. However,
   if you know that there still are people using those Debian packages,
   I'll continue maintaining them.
  
  I have no idea. Like you, anyone using this library is apparently doing
  it for their own projects, not for Debian. But if you want my opinion,
  you can almost certainly remove libgmime0. However, I wouldn't want to
  remove libgmime1 yet - at least not before sarge is released (with it),
  in any case, and maybe not even before people start thinking about
  removing libglib1.2 itself from Debian. It's difficult to be sure
  without user feedback, for sure. Maybe not even http//popcon.debian.org/
  (seems to down at the moment) would help much here...
 
 ftp-master: please remove libgmime0 and libgmime0-dev from unstable.

Hrmz, is there any good reason to really have this many (4 until I just
removed gmime0) versions of the same library in Debian? Only if it's very
difficult to migrate to a next version, and there are a lot of reverse
dependencies, it's IMHO sensible to have multiple versions. Otherwise, I
stronly suggest to make the source package name 'gmime', and not change
that while uploading new versions of the package, but instead filing bugs
on reverse-depends to migrate. There are only 3 packages using a version of
gmime, incidently, all are using the latest version already.

--Jeroen

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED]
http://jeroen.A-Eskwadraat.nl


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



Bug#349943: iptables: ROUTE and CONNMARK options don't seem to work

2006-01-25 Thread Jefferson Cowart
Package: iptables
Version: 1.2.11-10
Severity: normal

The CONNMARK and ROUTE targets for the mangle table don't appear to
work. I have the iptable_mangle module loaded, but when I try to add a
rule using that target I get an error:

jcc02003-1:/home/jeff# /sbin/iptables -t mangle -A POSTROUTING -o ! eth1 -s 
134.173.91.144/30 -j ROUTE --oif eth1 
 iptables: No chain/target/match by that name

-- System Information:
Debian Release: 3.1
Architecture: i386 (i586)
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages iptables depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an

-- no debconf information

-
This message has been scanned by Postini anti-virus software.



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



Bug#122771: boss doesnt want you to know his secrets

2006-01-25 Thread Judith X. Jones
Hi,,

You have been selected to generate 1.5 - 3.5k daily!

Phone me at my line below.

Let me help you generate payments!

Best Regards,
[EMAIL PROTECTED]
1.800.645.2308


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



Bug#106028: what your employer doesnt want you to know

2006-01-25 Thread Hancock Y. Scotty
Hello [EMAIL PROTECTED],,

You have been selected to generate 1.5 - 3.5k daily!

Phone me at my line below.

Let me help you generate payments!

Best Regards,
[EMAIL PROTECTED]
1.800.645.2308


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



Bug#349940: ssh: does not obey /etc/hosts.deny

2006-01-25 Thread Justin Pryzby
On Wed, Jan 25, 2006 at 08:13:40PM -0500, Marcos Pinto wrote:
 Package: ssh
 Severity: serious
 Justification: unkown
 
 i have various machines listed in /etc/hosts.deny in this format:
 ALL: x.x.x.x
 where x.x.x.x = ip
 however, sshd still allows those ips to login, when it should not.
With what versions of ssh do you experience this problem?

-- 
Clear skies,
Justin


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



<    1   2   3   4   5   >