Bug#345117: scribus should recommend python-imaging-tk

2005-12-28 Thread Oleksandr Moskalenko
* C. Scott Ananian <[EMAIL PROTECTED]> [2005-12-26 20:22:59 -0500]:

> Package: scribus
> Version: 1.2.2.1.dfsg+cvs20050829-1
> Severity: normal
> 
> The FontSample script included with Scribus wants the python-imaging-tk
> package installed in order to display a font preview; thus the scribus
> package should Suggests: it.
>  --scott

Scott,

Thank you for the report. I will add the appropriate Suggests on the next
upload.

Regards,

Alex
 
> -- System Information:
> Debian Release: testing/unstable
>   APT prefers unstable
>   APT policy: (500, 'unstable'), (500, 'stable')
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.15-rc5
> Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
> 
> Versions of packages scribus depends on:
> ii  gs-esp   8.15.1.dfsg.1-1 The Ghostscript PostScript 
> interpr
> ii  gs-gpl   8.15-4  The GPL Ghostscript PostScript 
> int
> ii  libart-2.0-2 2.3.17-1Library of functions for 2D 
> graphi
> ii  libc62.3.5-9 GNU C Library: Shared libraries 
> an
> ii  libcupsys2   1.1.23-14   Common UNIX Printing System(tm) 
> - 
> ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared 
> lib
> ii  libgcc1  1:4.0.2-5   GCC support library
> ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
> ii  libjpeg626b-11   The Independent JPEG Group's 
> JPEG 
> ii  liblcms1 1.13-1  Color management library
> ii  libpng12-0   1.2.8rel-5  PNG library - runtime
> ii  libqt3-mt3:3.3.5-3   Qt GUI Library (Threaded runtime 
> v
> ii  libsm6   6.8.2.dfsg.1-11 X Window System Session 
> Management
> ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
> ii  libtiff4 3.7.4-1 Tag Image File Format (TIFF) 
> libra
> 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  libxml2  2.6.22-2GNOME XML library
> ii  python-tk2.3.5-3 Tkinter - Writing Tk 
> applications 
> ii  python2.32.3.5-9 An interactive high-level 
> object-o
> ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries 
> m
> ii  zlib1g   1:1.2.3-9   compression library - runtime
> 
> Versions of packages scribus recommends:
> ii  gsfonts-x11  0.17Make Ghostscript fonts available 
> t
> ii  xfonts-scalable  6.8.2.dfsg.1-11 scalable fonts for X
> 
> -- no debconf information
> 


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



Bug#345120: ITP: ksalup -- Enhanced port of Winpopup for KDE

2005-12-28 Thread Javier Ballesteros
Package: wnpp
Severity: wishlist

* Package name : ksalup
Upstream Author : Emmanul Zurmely <[EMAIL PROTECTED]>
* URL : http://ksalup.sourceforge.net/
* License : GPL
Description : Enhanced port of Winpopup for KDE

  KSalup is an enhanced port of Winpopup for KDE. It also allows the
 user to send and receive Winpopup messages over a local network (LAN).
 .
 KSalup supports two protocols :
 .
  Communication with a computer running Winpopup or using the
 NetBios protocol over TCP sending and receiving messages through
 Samba.
 .
  Communication with computers on a local subnet, using the
 Netbios protocol over UDP, compatible with almost all of the current
 softwares (Kurupop, Pipo p, Salup, Windows NT, ...)



Bug#345119: jabber-yahoo: gaim-sha.[hc] not 64-bit clean

2005-12-28 Thread Corey Wright
Package: jabber-yahoo
Severity: important
Tags: sarge patch

this might be specific to the amd64 architecture, but i figure it's a problem
on any platform where sizeof(long) = 8.

in migrating my jabber server from woody on 386 (using personal backports) to
sarge on amd64, the yahoo transport broke.  using a constant seed, peppering
the code with printfs, and comparing the output on both platforms, i traced
the problem to the sha algorithm in gaim-sha.[hc].

in the current jabber-yahoo version, the GAIM_SHA_CTX struct uses unsigned
longs (32 bits on 386, 64 bits on AMD64).  the latest/last version in gaim cvs
uses guint32 (from glib), which i presume is explicitly 32 bits regardless of
platform.  plus gaim's version includes proper copyright attribution and
explicit licensing.

doing nothing more than using gaim's sha.h and appending "gaim_" or "GAIM_"
where necessary to match the original version fixed the problem.

thanks for maintaining jabber-yahoo.
diff -urNp jabber-yahoo-2.3.2/debian/changelog 
jabber-yahoo-2.3.2.fix/debian/changelog
--- jabber-yahoo-2.3.2/debian/changelog 2005-12-28 07:24:49.449918147 +
+++ jabber-yahoo-2.3.2.fix/debian/changelog 2005-12-28 07:24:16.695029112 
+
@@ -1,3 +1,10 @@
+jabber-yahoo (2.3.2-1.1) stable; urgency=low
+
+  * make gaim-sha.[hc] work on AMD64 by using glib's 32-bit type
+http://cvs.sourceforge.net/viewcvs.py/*checkout*/gaim/gaim/src/Attic/sha.h
+
+ -- Corey Wright <[EMAIL PROTECTED]>  Wed, 28 Dec 2005 01:20:32 -0600
+
 jabber-yahoo (2.3.2-1) unstable; urgency=low
 
   * new upstream version (Closes: #258255)
diff -urNp jabber-yahoo-2.3.2/gaim-sha.h jabber-yahoo-2.3.2.fix/gaim-sha.h
--- jabber-yahoo-2.3.2/gaim-sha.h   2003-09-28 17:30:47.0 +
+++ jabber-yahoo-2.3.2.fix/gaim-sha.h   2005-12-28 07:09:40.966517000 +
@@ -1,22 +1,41 @@
-/*
-#if (SIZEOF_INT == 4)
-typedef unsigned int uint32;
-#elif (SIZEOF_SHORT == 4)
-typedef unsigned short uint32;
-#else
-typedef unsigned int uint32;
-#endif  HAVEUINT32 */
+/* 
+ * The contents of this file are subject to the Mozilla Public
+ * License Version 1.1 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.mozilla.org/MPL/
+ * 
+ * Software distributed under the License is distributed on an "AS
+ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+ * implied. See the License for the specific language governing
+ * rights and limitations under the License.
+ * 
+ * The Original Code is SHA 180-1 Reference Implementation (Compact version)
+ * 
+ * The Initial Developer of the Original Code is Paul Kocher of
+ * Cryptography Research.  Portions created by Paul Kocher are 
+ * Copyright (C) 1995-9 by Cryptography Research, Inc.  All
+ * Rights Reserved.
+ * 
+ * Contributor(s):
+ *
+ */
+#ifndef _GAIM_SHA_H_
+#define _GAIM_SHA_H_
+
+#include 
 
-int strprintsha(char *dest, int *hashval);
- 
 typedef struct {
-  unsigned long H[5];
-  unsigned long W[80];
-  int lenW;
-  unsigned long sizeHi,sizeLo;
+   guint32 H[5];
+   guint32 W[80];
+   int lenW;
+   guint32 sizeHi;
+   guint32 sizeLo;
 } GAIM_SHA_CTX;
- 
+
+int strprintsha(char *dest, int *hashval);
 void gaim_shaInit(GAIM_SHA_CTX *ctx);
 void gaim_shaUpdate(GAIM_SHA_CTX *ctx, unsigned char *dataIn, int len);
 void gaim_shaFinal(GAIM_SHA_CTX *ctx, unsigned char hashout[20]);
 void gaim_shaBlock(unsigned char *dataIn, int len, unsigned char hashout[20]);
+
+#endif /* _GAIM_SHA_H_ */


Bug#127778: not really a bug...

2005-12-28 Thread Bdale Garbee
severity 127778 wishlist
tags 127778 +wontfix
thanks

Using a positive value for the 'use' size of a holdingdisk definition in 
amanda.conf will indeed cause that amount of space to be used if available
and needed for the current run, regardless of what "leftovers" may be on 
disk from previous runs.  Nothing in the docs suggests otherwise.

A reasonable workaround for preventing complete filesystem consumption is to
specify a negative value for the 'use' size instead.  This will cause Amanda
to believe it can use whatever space is on the disk less that amount, in 
effect ensuring that a certain minimum amount of free space is left open.

It is clearly a best practice to use a distinct filesystem/partition on the
Amanda server for the holdingdisk space, in which case a value of 0 will allow
Amanda to consume the entire filesystem if desired... or a negative number can
be specified to ensure there's always a little free space available.

Implementing the suggested changes would be a redefinition of upstream
behavior, and after more than 3 years, I'm still not so inclined.  Downgrading
this bug to wishlist and tagging it wontfix to reflect that fact.

Bdale


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



Bug#37078: bts procmail 2

2005-12-28 Thread Justin Pryzby
Included is a second-attempt procmail config file which also handles
control bot messages.

-- 
Clear skies,
Justin
# This handles initial submissions ("Thank you for the problem
# report...") and also followups ("Thank you for the additional
# information...").
:0
* ^From: [EMAIL PROTECTED] \(Debian Bug Tracking System\)$
* ^Subject: Bug#\/[0-9]*
|echo |mail "[EMAIL PROTECTED]"

# This handles bug reports on which I've had an effect via the control
# bot.
:0
* ^To: Justin Pryzby <[EMAIL PROTECTED]>$
* ^From: [EMAIL PROTECTED] \(Debian Bug Tracking System\)$
* ^Subject: Processed:
|grep -Eo '^Bug#[0-9]+:' |sed -e 's/^Bug#//' -e 's/:$/[EMAIL PROTECTED]/ ' |tr 
'\n' ',' |sed -e 's/^/To: /' -e 's/,$/\n/' |sendmail -t

:0
* ^From: [EMAIL PROTECTED]
* ^Subject: Please confirm subscription to [EMAIL PROTECTED]
* ^Reply-To: \/[EMAIL PROTECTED]
|echo |mail "$MATCH"

:0
* ^From: [EMAIL PROTECTED]
* ^Subject: Subscription to [EMAIL PROTECTED] successful$
Mail/bug_subscription_success


Bug#300760: changelog best practice

2005-12-28 Thread Justin Pryzby
I agree with the sentiment which I think Bastian Blank is expressing.
It is a documented best-practice to document what change caused each
bug to be closed.

  
http://www.us.debian.org/doc/manuals/developers-reference/ch-pkgs.en.html#s-upload-bugfix

The idea is that bug reporters will get ample information in the
'close' message, rather than just a note that 'a bug you reported was
fixed'.

If the bugs were all fixed because of the "new upstream release", I
would have expected the close entries to be indented below the comment
for that release.  Furthermore, since you are the upstream author, it
should be simple to provide more information.

-- 
Clear skies,
Justin


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



Bug#226139: seems easy to fix

2005-12-28 Thread Bdale Garbee
tags 226139 +pending
thanks

It appears that if you don't explicitly tell it to do otherwise, Amanda will
use the value of AMANDA_TMPDIR as the place to write debugging logs.  There
is a configure option to redirect these elsewhere, and I'll use it to push
them to /var/log/amanda which is clearly a better place.

In the process of researching this, I found and fixed a couple of typos in
the latest source with respect to the handling of the AMANDA_DBGDIR constant,
which suggests to me that this option to redirect the debugging logs is rarely
used...

Fixes are in my CVS for the next upload.

Bdale


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



Bug#344478: slocate: does not work, "fatal error: set_path_head: path_head len <= 0: 0"

2005-12-28 Thread Kevin Lindsay
This is due to the slocate database format changing, and me forgetting to
force a remove of the database upon upgrade. The next upload will fix this.

A workaround is to just execute: /etc/cron.daily/slocate

This will recreate the database and all should be good.

Kevin-

--
Kevin Lindsay <[EMAIL PROTECTED]>
PGP Key Id:   746C51F4


signature.asc
Description: Digital signature


Bug#345118: gstreamer0.10-plugins-base: Package doesn't install

2005-12-28 Thread Andreas Schmidt
Package: gstreamer0.10-plugins-base
Version: 0.10.0-3
Severity: grave
Justification: renders package unusable

Unpacking gstreamer0.10-plugins-base (from
/gstreamer0.10-plugins-base_0.10.0-3_i386.deb) ...
dpkg: error processing
/var/cache/apt/archives/gstreamer0.10-plugins-base_0.10.0-3_i386.deb
(--unpack):
 trying to overwrite `/usr/lib/gstreamer-0.10/libgstadder.so', which is
 also in package gstreamer0.10-misc
 dpkg-deb: subprocess paste killed by signal (Broken pipe)
 Errors were encountered while processing:
  /var/cache/apt/archives/gstreamer0.10-plugins-base_0.10.0-3_i386.deb


-- 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.9-1-k7
Locale: LANG=en_US.ISO-8859-1, [EMAIL PROTECTED] (charmap=ISO-8859-15)


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



Bug#344754: fails to load ide-disk, doesn't find hdd

2005-12-28 Thread Joey Hess
maximilian attems wrote:
> could you try the attached hook file,
> please place it under  /usr/share/initramfs-tools/scripts/init-premount/
> and recreate the initramfs: update-initramfs -u
> 
> hope it works,

Yes, works ok here too.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#345117: scribus should recommend python-imaging-tk

2005-12-28 Thread C. Scott Ananian
Package: scribus
Version: 1.2.2.1.dfsg+cvs20050829-1
Severity: normal

The FontSample script included with Scribus wants the python-imaging-tk
package installed in order to display a font preview; thus the scribus
package should Suggests: it.
 --scott

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

Versions of packages scribus depends on:
ii  gs-esp   8.15.1.dfsg.1-1 The Ghostscript PostScript interpr
ii  gs-gpl   8.15-4  The GPL Ghostscript PostScript int
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libc62.3.5-9 GNU C Library: Shared libraries an
ii  libcupsys2   1.1.23-14   Common UNIX Printing System(tm) - 
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libjpeg626b-11   The Independent JPEG Group's JPEG 
ii  liblcms1 1.13-1  Color management library
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqt3-mt3:3.3.5-3   Qt GUI Library (Threaded runtime v
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libtiff4 3.7.4-1 Tag Image File Format (TIFF) libra
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  libxml2  2.6.22-2GNOME XML library
ii  python-tk2.3.5-3 Tkinter - Writing Tk applications 
ii  python2.32.3.5-9 An interactive high-level object-o
ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries m
ii  zlib1g   1:1.2.3-9   compression library - runtime

Versions of packages scribus recommends:
ii  gsfonts-x11  0.17Make Ghostscript fonts available t
ii  xfonts-scalable  6.8.2.dfsg.1-11 scalable fonts for X

-- no debconf information


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



Bug#345116: ant: NullPointerException in XSLT with gij-4.1

2005-12-28 Thread Nick Lewycky
Package: ant
Version: 1.6.5-3
Severity: normal
Tags: experimental

Using libgcj7 4.1-0exp4 (experimental) I experience a
NullPointerException when running the following rule:

  

The interesting part of the exception is:

  java.lang.NullPointerException
 at gnu.xml.transform.ApplyTemplatesNode.clone (libgcj.so.7)
 at gnu.xml.transform.LiteralNode.clone (libgcj.so.7)
 at gnu.xml.transform.Template.clone (libgcj.so.7)
 at gnu.xml.transform.Stylesheet.clone (libgcj.so.7)
 at gnu.xml.transform.TemplatesImpl.newTransformer (libgcj.so.7)
 at org.apache.tools.ant.taskdefs.optional.TraXLiaison.createTransformer 
(TraXLiaison.java:228)

where TraXLiaison.java:228 is the following line of code:

  transformer = templates.newTransformer();

I've written a simple testcase based on TraXLiaison.java to test
whether the problem is in libgcj7, but for me it worked fine.

Because this involved experimental packages, reproducing the problem
is not entirely trivial. I've attached a full ant.log generated:

$ ant --execdebug -l ant.log -v -d eclipse-plugin
exec "/usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0//bin/java" -classpath 
"/usr/share/ant/lib/ant-launcher.jar:/usr/share/java/xmlParserAPIs.jar:/usr/share/java/xercesImpl.jar"
 -Dant.home="/usr/share/ant" -Dant.library.dir="/usr/share/ant/lib" 
org.apache.tools.ant.launch.Launcher -cp 
"/home/nicholas/sable/soot/polyglot/trunk/lib/polyglot.jar:/home/nicholas/sable/soot/polyglot/trunk/lib/java_cup.jar:/home/nicholas/sable/soot/jasmin/trunk/lib/jasminclasses-2.1.1.jar:."
 "-l" "ant.log" "-v" "-d" "eclipse-plugin"

except that because "java-1.4.2-gcj-4.1.../bin/java" is in a custom
package, you'll need to replace it with "gij-wrapper-4.1" which works
just as well and produces the same output.

I'm using libgcj7 because it's the first release after the classpath
0.19 merge. Earlier versions don't have the gnu.xml.transform.Stylesheet
class causing a failure much earlier.

Thanks,
Nick Lewycky

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

Versions of packages ant depends on:
ii  gij [java-virtual-machine]4:4.0.2-2  The GNU Java bytecode interpreter
ii  gij-3.3 [java1-runtime]   1:3.3.6-7  The GNU Java bytecode interpreter
ii  gij-4.0 [java1-runtime]   4.0.2-5j2  The GNU Java bytecode interpreter
ii  gij-4.1 [java1-runtime]   4.1-0exp4  The GNU Java bytecode interpreter
ii  j2re1.4 [java2-runtime]   1.4.1  Sun JDK v1.4.1
ii  libxerces2-java   2.6.2-3Validating XML parser for Java wit
ii  sablevm [java1-runtime]   1.11.3-2   Free implementation of Java Virtua

Versions of packages ant recommends:
ii  ant-optional  1.6.5-3Java based build tool like make - 
ii  gcj-4.1 [java-compiler]   4.1-0exp4  The GNU compiler for Java(TM)
ii  jikes 1:1.22-3   Fast Java compiler adhering to lan
ii  jikes-sablevm [java-compiler] 1.11.3-2   Wrapper for jikes using classes fr

-- debconf-show failed
Adding reference: ant.PropertyHelper
Detected Java version: 1.5 in: /usr/lib/jvm/java-1.4.2-gcj-4.1-1.4.2.0/jre
Detected OS: Linux
Adding reference: ant.ComponentHelper
Setting ro project property: ant.version -> Apache Ant version 1.6.5 compiled 
on October 1 2005
Setting ro project property: ant.file -> 
/home/nicholas/sable/soot/trunk/build.xml
Adding reference: ant.projectHelper
Adding reference: ant.parsing.context
Adding reference: ant.targets


Bug#345115: allows me to subscribe myself to a given bug multiple times

2005-12-28 Thread Justin Pryzby
Package: bugs.debian.org, lists.debian.org
Version: 20051229
Severity: minor

b.d.o appears to allow me to subscribe multiple times to a given bug.
For its own sake, and for a convenience to myself, it should either
check before adding me again, and do nothing if I am already
subscribed, or something to the effect of |sort -u.


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



Bug#345040: linux-image-2.6.15-rc5-686: No console after logging out from Gnome/X in IBM Thinkpad T43

2005-12-28 Thread LUK ShunTim
Jonas Smedegaard wrote:
> On Thu, 29 Dec 2005 00:37:36 +0800
> LUK ShunTim <[EMAIL PROTECTED]> wrote:
> 
> 
>>>This happens on a IBM Thinkpad T43 with the non-free ATI driver fglrx
>>>8.20.8-1.
> 
> 
> I believe not only non-free, but also unsupported.
> 
> If possible then try switching to a driver provided with Debian and see
> if the problem persists. If it does then we need to solve the problem,
> if not then file a bug whereever you found your unsupported driver.
> 
> 
>  - Jonas
> 

Thanks Jonas, but this driver is provided by debian, now.   
http://packages.debian.org/unstable/x11/fglrx-driver

I'm not really competent enough to judge whether this problem is related
to the kernel or the driver (or both) but I did not run into this
problem with the older 2.6.12 kernel (driver compiled from same source
using m-a). I looked at various logs and that's what I found. If it's
not related to the kernel, I can file it against the driver.

Thanks very much again,
ST
--



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



Bug#199094: Private Invite From Kitty Please join us

2005-12-28 Thread Kitty
Private Invite

Please join this site so that that we can chat live 

http://www.sexyhotstars.com

Thanks
Kitty


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



Bug#152152: Heather Is looking for you

2005-12-28 Thread Heather
Private Invite

Please join this site so that that we can chat live 

http://www.sexyhotbod.com

Thanks
Heather


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



Bug#344032: bbdb also broken with vm under newest emacs

2005-12-28 Thread Dirk Eddelbuettel

As a follow-up to the this bug report, now that this version of emacs21 is in
testing, my mail setup also broke. Thanks to Roland for the snipped of how he
fixed his setup for gnus, the following at the top of ~/.vm did the trick for
me with vm:

; 28 Dec 2005  bbdb breakage after today's emacs upgrade:
(setq load-path (cons (concat "/usr/share/emacs21/site-lisp/bbdb") load-path))
(setq load-path (cons (concat "/usr/share/emacs/site-lisp/bbdb/lisp") 
load-path))
(provide 'bbdb/load-path)
(load-library "bbdb")
(load-library "bbdb-com")
(load-library "bbdb-vm")
(provide 'bbdb-autoloads)
;;
;(bbdb-insinuate-vm)
(bbdb-initialize 'vm)


Regards,  Dirk

-- 
Hell, there are no rules here - we're trying to accomplish something. 
  -- Thomas A. Edison


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



Bug#345112: (no subject)

2005-12-28 Thread Justin Pryzby
mysql and openssh also have this problem.


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



Bug#344594: RFS: gmysqlcc -- GTK+ client for mysql databases

2005-12-28 Thread Carlos C Soto

Sorry for the late!

Laszlo Boszormenyi wrote:


 It looks good, but I have some points:
- please close your ITP from debian/changelog;

Yes, at the moment I upload the package I did not have the ITP.


- debian/README contains your changes to upstream source, but not
  debian/changelog;

This is the initial debian release, do you think this is apropiate?
I supouse you do, so I'll list it.


- debian/rules is OK, but why don't you use debhelper and its dh_*
  commands?
Because I am understanding the process as much I can, gcolor2 and 
alltray are using dh_*, this one is by-hand.



This is for the first round. There may be others, but today I wish you
all Merry Christmas!

Merry Christmas and Happy New Year!!!

On the first time in my office I'll update the package.


Cheers,
Laszlo/GCS


Carlos C Soto :: eclipxe


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



Bug#345114: yasgml: reference and assigment to free variable

2005-12-28 Thread Justin Pryzby
Package: yasgml
Version: 1.5-7
Severity: important

While dist-upgrading, I got the following message during emacs21
postinst: 

Loading yatexhks...
While compiling toplevel forms in file 
/usr/share/emacs21/site-lisp/yasgml/yasgml.el:
  ** reference to free variable shell-command-option
  ** assignment to free variable kanji-fileio-code
While compiling yasgml-jump-to-name in file 
/usr/share/emacs21/site-lisp/yasgml/yasgml.el:
  ** reference to free variable href
While compiling the end of the data in file 
/usr/share/emacs21/site-lisp/yasgml/yasgml.el:
  ** The following functions are not known to be defined:
set-file-coding-system, YaTeX-typeset
Wrote /usr/share/emacs21/site-lisp/yasgml/yasgml.elc


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



Bug#335259: ssh conffile prompts

2005-12-28 Thread Justin Pryzby
severity 335259 important
severity 339978 important
merge 335259 3339978 35276
thanks

ssh doesn't handle conffiles the right way at all.  I'm including a
tarball of stuff that failed to work properly while upgrading from
1:3.8.1p1-8.sarge.4 to 1:4.2p1-5, excluding the "moduli" files,
because I don't know if their contents are sensitive..

I think you can do what is necessary with custom MD5 handling as
described at:

  http://www.dpkg.org/ConffileHandling

mozilla and mysql also have this problem.


ssh.tar.bz2
Description: Binary data


Bug#345113: mysql-server-4.1: conffile prompts during upgrade

2005-12-28 Thread Justin Pryzby
Package: mysql-server-4.1
Severity: important

Upgrading from 4.0.24-10sarge1 to 5.0.16-1 I got a large number of
unnecessary conffile prompts.  I'm including a tarball of the files
that caused prompting.  Actually I'm not sure about the package names
or versions, so I'm also including my dpkg.log fragments.

This might be useful: http://www.dpkg.org/ConffileHandling

firefox and openssh also have this problem.
BZh91AY&SY0?\'%?}???``?p????hh?
CCCL?
h??p????hh?
CCCL?
h??4?#?`L&?0 ???&  ?#  ?$ ? [EMAIL PROTECTED]w??K??s.??nG???v6z[?)?j?o??#
???:??_???C'??`?:S???u75r~7???;|+? 
YUly???45I?ojq??JSA???!!w?x?9?????hdt?V????UH??l?>Wk?e>??lzSQ?[??}4S??4?]??g??:&?x??6N????h??z?qY?JRO?0??C??'?*??0aK?K(??J?2Q,?)r?h?uK?K(s??'7??K??Y??=?V??>?0h?6No???)?????}U?RKUJ???-???$0?!??T?Q*??r/2o???cr?5?>[EMAIL
 PROTECTED]&?Ya?`u2??iN.m???-?K4ld???z???t)??`??R?xWi???|? 
'?JH>i?#?K+?Tm?4L???T???'????6???qC7?:??G???R?E?6?K5?T?I?An?E0??????T?H?J?U%L?ba?O??:\?G??RGd?M?(??E????+?d?:?FIJ+?*U?UTQQ>tY??5L?F??yH??I9H??
9ttq???-?R??$E?%ydW   ??I:e?i??Hey???
??]i1?Hj?.4??V$kQ??e#??q|&?e)E?
??a*DS-??M-x???,?ld???jd?b?#2C)6??T?I?b?TF5?d??4(?d?1???R*C
???
?l??l?f??t???B?I?!??%?!v??c?=?g(?)?$n)'H???!u??d?>WR,?'??P??E9??K?r??C]
??R9T???i?]???&???z????h???g???JdnN???{??#?F6su?v??${g???)?6x?,?R???Z?Y???u:n:S???A??sbln>?7?6??q??ne??D
Ir>?W???]??J]???O???M?{?r?o!???*?Q??]g?sE?S&'B6=??e???~d?}7)#(?Tf???O??n???Q?grI?Ig?9?$qn:$??f`?Rh??&Z&?
?(??N-?doh?(?`??I&-Mp?\??d??2~???
#?&??$?HN??Q.???d??P???~Q3(O[]?[??Z;???{?ag?Y?E???U"q!J{ 
?'?D???E?^Ep?Iw|?6???,???h?
T??*j????u(?aL??&oB,?bs?RToadN??)P??I??Nh?B???mF?k4Y61???
~?czQ??{??5mN/??YK?=?]G??F?mM?a?:??2f??&??5??Wgh?E?t???K?Y??Ye?Y&l?R?b?R??0???VlI:??g????(?f?D??P??,??)?f
 
T?)??y?O???I?ae???p?n?wZZ??U?k--k*??r|jxpfNFT???E??E??M?*Q?'??#???JsR??(?Ja?E??'Sp?)?zIag??+
:~???"?X?hZXawZ]f,???I:7fl6?S
[??h????z^V??sbEI??J^KI?R?EH?8+6Fe
??yb?3DaK???R??I7??Y?I??4a??MJ^?%?bK3>E&??rh??G?P?&?$FI5MQr?9?6f??<mZ\??LR?2??O??o??"w???
??  
n??'j?`YfGjDw??a??CDof?t???>r?"#?z?]R?r?u;?hQ??R?RJr2T%)!?"??,tX?,|?>???J????
?,?8?8??]l???;???FH???Ax?oj(??$?y??j[EMAIL 
PROTECTED]'

Bug#345112: firefox: unnecessary prompts about conffiles after migrating from package 'mozilla-firefox'

2005-12-28 Thread Justin Pryzby
Package: firefox
Version: 1.5.dfsg-3
Severity: important
File: ./debian/preinst, 
 bookmarks.html,
 firefox.js,
 search.rdf

I just updated to the 'firefox' package available in sid, replacing
'mozilla-firefox' packages in testing to test a bug, as requested by
Eric.  I got prompts about conffiles which I should not have gotten,
since I did not modify those files.  This is probably caused by the
new package shipping conffiles which were previously owned by the old
package, and failing to provide any preinst foo to handle it.

Please see the examples at http://www.dpkg.org/ConffileHandling.  The
goal is to save all our users from having to deal with this prompt,
which will, until fixed, affect sarge to etch upgrades.  Remember to
preserve deletion of a conffile.

I can't reproduce this behaviour of causing a .diff after a conffile
is changed in a new package name which conflicts+replaces the old
package, btw.

Included are the files which I saw changed on 2 upgrades.


firefox.tar.bz2
Description: Binary data
BZh91AY&SYh?2?FB????`2}? *? [EMAIL 
PROTECTED]
[EMAIL PROTECTED](AT   [EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]"M4OJxS'??i2bh?f??Dz?h???10?S [EMAIL 
PROTECTED]


1
[EMAIL PROTECTED]<[EMAIL PROTECTED] 
*K?2h?^??=???a?JP(T???Q)BI\??,IbKP*0RIZ%[$?T?H??7}2EL1Ib?D??)!_?#?%i???J??i=5/???;???al????D?9?5='X????i?RA}"???"[EMAIL
 
PROTECTED])S?*?&??Y?yS???I??(?b}?b"O??T???K8??FU?Q?3???m?m?V???]??9???cZ??a\X7WJ1???UX?PE???J?

??b?IqR?+?'e&?>k???k7?*l?\R?*z???j?J???SU??[
??Y?&l??n??S?Ul`fGA-m?ek`?y}??M?_dk??c4?K,uZZDm?M2?,?^%?35?Q?,?8?YZ1?>???g??L?kE.??85o?[?I?5j9
,om??u??[???R??2??h??n??9C   ??=-iY???.?n?*???Z??9)vL0?J?XZ)yV
??D??J??lX0K?S8???r?4(??i?*???(?4??lN???B???/???Q??v???i???q??Q~?\,I'iQD??+Q???%??T]r??Q???I??fS?I,?=???$??K?Z?k?_L/????5J?*??3??q#??}?b?XX?Y2??-.?hX?k??K??S
;?l?=?K!0(m9?c5??*0?5??V?
e??'???d?^*Q(??I??=v???:???$??Q??L???M???9Y??#q??F1Z???\J?Y???7?+Y.'?0?J7??^5S:
$n(]8c??&V!?l(?*=?U?h4?AE???p3*m??sA30?L??C?O;??6W??f?CAYa?Vq???p????n;??K???l??^,Z??V?F???*??GB?1???,I0??M??mUFE???E?"Q?b??ZK???
z???kd???Yt?K???Qb='!?#wt?j>r|?i(??+??]??8???M2a6?.[CB?t???j?Lj?;J?7[
(??S?Yy?E*???f??C??7??R$???&???
I9?G??p'I?z?
u?gi=kQ*v3???ZN??bs*n??Mjb?fGss?}???i??o?i%?*???b?M_J?1|?;Oa8???x?O9?O1h?O???d?q???&3?z?cx?e???}?G???I?9???7??N?,?Z?{,?%ICd?t???B?y???J??|*I??V???m1???(??:???z??l???T{?Vl;???C?t?hhLRny??N????(r,O3y^??Mt???4?:5??d9NBTfKM??&A?O?Lg??bq??p?b|Y
 ??=?c+?P?9??z??]m'???T}?
6??e?k?
?e??*I.Tkc9???f???3?0?L?? ?4???/??BQ3?rh3.#C?V?v?
??R??Q-c?P???J?zT8\M-???k?D^Vu?]?-O}???K??4??u??zN"???Ow??m???KRL?S??G:?a|??
 
?%??e&????q?j9?-rZ??'???Y:?O???r??U?aDJ)dR??d?E??.?>&?{???5??o
R??R"?????J??yK?uI}?y?f#f??g?b?q?]d??g??'mn???Z0^*bfS2?FK?,??2O?b5????a^T??$??#<?d??)?A\I?Q????$??n?.j3Q?1(?y
???bV?`4???Rb1

#?1??h6?&?0??H?0q?J
?YZH,T??93?3?F?Y(L??t???/??j???`o?:-?H?G?`???H?3????~
???L?Z_N2f2X?P?&%???--o2?g9?j??F P4?#>6???10,[EMAIL 
PROTECTED]>??Xn?LMw???%??j?S?9I?N?ZO1Y?^6???06??XM?XJ???T????I????$?B??Q?r???D?q???}???X~L?g??x'??9??

??r:T?(?;;?(??J?O"Q??F?y?J??Nbl??$?&?d'Y-b=??j?
  
?O??Or?X??%d~&?Ai?Oi?mw???j??|???E???P?B?r?Z|]D?%d?=???_???c'  
6?s??_#yY?x?_=p??f?N<   q??$?fx4?  ?k??g???' 
???'???m???IR???F?d?J$??bQcTK?"?c?`Y$?"[EMAIL 
PROTECTED](?L?O?&??%??v?}E???&??/H=?bZM?V???UPq?"A???I???
c9?????ZZTm4?Q????7I??`8????+P?=?FB????9??XT?'pm?IG?d?(M???Q???K?j:K???|K???3?O??"?1???9?NS??.??y6???7?????jD?*??r???6??QSho??I?fxIE??'q[????oaG?q?[;?|  
  S??'I??>?a.8q?(v8??v5
?B?&?p??d?H??q?hs??4??zI??0r?S   ?V??V??H??k??'??
??r?p.0?x???,=\s?g??'?KV?bn??9?{ ?8N?
?q[Y?t??!Y?&?t5???kP?{???D??eSH???&??L???OIS???ECfeM?h?w??c?N????:?"?z??OO??9
   
??l$??x%b?|??mcH?O??a.??????YF%?M?s???4>??]z\?egz?eK?Qc)a?MU??y?:?h???'?'#M4?_V?i?o1??$J7J,V*&%
(QB|??-?E
????,????Jp?q??,n*+?$?ZdVQ[?????QP??V6_Rt???
??Er'y0KK?a5
??R?EQIJ???qt?A??J?:n??B???v???c'?Z]5L%??\u?t0?w??=Dq??.;M??Ld?0M???ke?S?'s??H???%??I0??C??H?9,/Nr?,Tm8?2?'??'#*x?]NGQ?*&???zK?Ai?Q?ko?-??r/=???o??Ou?6.;d-*&c?t!???;
  ?aj#?hf&W?i??|  
??6?^???Q??&hV?w??c8t(???*8?*?(???Q?^t?Z?????K?{I?Vf%???Mc??KV?v??O?V?6M?a9????i#?%Mr?\?Iy?(?V?o??S
   ?%?]???d=?S+???c??w?Re????I?L??'??'?
???'???M?j??^=?y?{??

Bug#197412: Delta Scuttlebutt Newsletter - December 2005

2005-12-28 Thread Hal
Hello Scuttlebutt Readers ...

Finally!  We are back... I've received lots of inquiries regarding where the
Scuttlebutt has been.  As we all know, life hits you when you aren't looking,
so I've not been able to produce a Newsletter in months.  Christmas is over
and we are looking toward an exciting new year in the Delta.

-
HAL & JOANIE UPDATE

Hal and Joanie Schell are still in the Rehabilitation Hospital in Stockton.
Hal is doing about as well as can be expected.  On his good days, they get
him
out of bed, he gets dressed and scoots around in a wheel chair.  I'm sure he
is gathering information for his next book!  He does not yet use a computer,
so no email folks.  You certainly can send him a postcard or note at the
following address: La Salette Rehab, 537 E Fulton St, Stockton, CA 95204.  I
know he would love to hear from his devoted readers.  Both Hal and Joanie are
looked after by Joanie's daughter, Kathy.  She visits them almost daily and
keeps their spirits high.

-
DELTA CHAMBERS NEWS
-
DELTA MAKEOVER

The Delta is in for an Image Makeover!   "The Delta is probably the best and
the most extensive piece of real estate in this crazy state of ours today,
and
it's also the one that's probably the least recognized for the resource it
is," said Ken Scheidegger, owner of the Riverboat Marina & Boatworks on
Brannan Island.

With the Delta Protection Commission's help, Ken Scheidegger has formed a
nonprofit group, the Discover The Delta Foundation (DTDF) to raise money for
the campaign to raise Delta awareness.  Walnut Grove Artist, Marty Stanley,
is
designing the artwork for the Delta signage.  Signs will be placed in
approximately 20 locations around the Delta.  The California Coastal
Commission has agreed to chip in the money for the signs.

Also, the newly formed DTDF is negotiating a lease for a California Delta
Visitor's Center to be built at the intersection of Hwy 12 and 160 near Rio
Vista.  The Center will be a barn-style structure up to 3,000 square feet for
displays, Delta information, Delta Chambers Office, and history center, with
perhaps smaller centers spread throughout the Delta.  We will keep you posted
as things unfold!If you are interested in supporting this campaign,
please
contact Mr. Ken Scheidegger at (916) 777-5447.

-
DELTA CHAMBERS OFFICE MOVES:

The Delta Chambers lost their lease for the office in Tower Park Marina.  So,
a move was necessary and Korth's Pirate's Lair Marina stepped up to assist.
They had empty office space, so were willing to rent it to the Chamber.  Some
of the Chamber Board Members spent a day moving everything out of Tower Park
and into the new digs at Korth's.  The new address is:  169 W. Brannan Island
Road
Isleton, CA 95641.  Phone: (916) 777-4041.  We extend a big THANK YOU to the
Korth family for their kind assistance.
-
NEW MEMBERS

FishDelta.com: (http://www.fishdelta.com) is a new Delta Chambers member.
Also, for those missing the old Delta Chambers Fish Forum, you can now go to
FishDeltaBuzz
(http://www.fishdelta.com/messageboard/delta-fishing-messageboard-index.html)
and participate in their fishing forums.

Chucks Towing:  Chuck & Debora Smith, Owners in Oakley, 925-382-1003

Kaylyn's Glass Engraving:  (http://www.kaylyns.net) Lynette Melish, Owner,
343
S. Sunset Drive, Lodi, CA 95240, 209-365-1118

-
LIGHTHOUSE RESTAURANT CLOSES

Yes, it was a sad day when the Lighthouse Restaurant owners Sal & Karen
Curcuruto, lost their lease.  However, don't despair ... Sal has moved over
to
Moore's Riverboat Restaurant where he is now the General Manager.  According
to Sal, Moore's is going to be one fun place this coming year!

The Lighthouse Resort & Marina (http://www.lighthouseresortandmarina.com) has
not yet decided when a new restaurant will open on the site.
-

NEW STOCKTON ARENA

Have you seen the beautiful new Stockton Arena??  It is truly a work of art
(at least in my opinion!) and looks fabulous at night. Stockton has a web
camera that shows the arena.  Click the following link to view it (if you
cannot click on the link, just copy it and past it into your browser address
bar):
http://cos-netcam-1.ci.stockton.ca.us/home/JViewer.html
-

DELTA RIVER HOUSE OPENS

The home previous occupied by Ken Scheidegger (Delta Boatworks) has been
turned into a luxury vacation home.  It is also available for banquet,
wedding, and party rentals.  Our own Trisha Meag

Bug#342501: Fix

2005-12-28 Thread Bdale Garbee
tags 342501 +pending
thanks

On Thu, 2005-12-08 at 03:20 +, Reuben Thomas wrote:
> If line 95 of /bin/zgrep is changed from
> 
>gzip -cdfq "$i" |
> 
> to
> 
>gzip -cdfq -- "$i" |
> 
> this fixes the bug.

Looks reasonable.  Thanks!  In my CVS for the next upload.

Bdale



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



Bug#345084: $ w3m URL1 URL2...

2005-12-28 Thread Fumitoshi UKAI
At Thu, 29 Dec 2005 00:31:09 +0800,
Dan Jacobson wrote:

> Something is ignored when one does
> $ w3m URL1 URL2
> Perhaps die with an error message at least to be consistent with
> SYNOPSIS on the man page. Or do like firefox...

All URLs are in buffer list, so you can select
by s key (SELECT).

For example:

 $ w3m http://www.debian.org/ http://bugs.debian.org/
 
 [lanuched w3m and shows http://www.debian.org/]

Then press 's' shows a buffer select box which contains
 - http://www.debian.org/
 - http://bugs.debian.org/
so that you can move cursor with 'j' or 'k' key and select one by RET key

Should we fix the man page?

Regards,
Fumitoshi UKAI


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



Bug#74909: Allice wants you to join us

2005-12-28 Thread Allice
Private Invite

Please join this site so that that we can chat live 

http://www.sexyhotbod.com

Thanks
Allice


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



Bug#342925: fails to load ide-disk, doesn't find hdd

2005-12-28 Thread Frans Pop
On Thursday 29 December 2005 02:48, maximilian attems wrote:
> could you try the attached hook file,
> please place it under 
> /usr/share/initramfs-tools/scripts/init-premount/

The ide hook file in #344754 works for me on both my Sparc and laptop.

Cheers,
FJP


pgpp2ng7tQJyc.pgp
Description: PGP signature


Bug#94197: Private Invite from Sara

2005-12-28 Thread Sara
Private Invite

Please join this site so that that we can chat live 

http://www.hotsexyplace.com

Thanks
Sara


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



Bug#345091: ITP: checkgmail -- Alternative Gmail Notifier for Linux via Atom feeds

2005-12-28 Thread Adam Heath
On Wed, 28 Dec 2005, Sandro Tosi wrote:

> Package: wnpp
> Severity: wishlist
> Owner: Sandro Tosi <[EMAIL PROTECTED]>
>
> * Package name: checkgmail
>   Version : 1.4
>   Upstream Author : Owen Marshall <[EMAIL PROTECTED]>
> * URL : http://checkgmail.sourceforge.net/
> * License : GPL
>   Description : Alternative Gmail Notifier for Linux via Atom feeds

I looked at the homepage, and while this does appear useful, is it really
nescessary to be packaged all by itself?

Think about a collection package; I don't think debian should be overloaded
with tons of single-program packages.


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



Bug#341675: qt-x11-free build fails

2005-12-28 Thread Grant Grundler
On Wed, Dec 28, 2005 at 02:04:44AM -0500, Steve M. Robbins wrote:
> Rather than debugging this by remote control, you might find it 
> easier to simply run "uic" yourself.  Obtain the sources for
> cppunit (e.g. by "apt-get source cppunit) then do:
> 
> cd src/qttestrunner
> /usr/share/qt3/bin/uic testbrowserdlg.ui -o testbrowserdlg.h
> 
> (per 
> http://buildd.debian.org/fetch.php?&pkg=cppunit&ver=1.10.2-5&arch=hppa&stamp=1134615988&file=log&as=raw)

Yup - thanks. I'm able to reproduce the "illegal instruction" symptom
with both qt-x11-free-3.3.5 and cppunit-1.10.2 .

I have no clue what the problem but find it odd that uic is the
only program to expose it. I've tried and reproduced the problem
with "testing" and "sid" releases (systems "riot" and "ios" respectively).
I'll look at it some more and see if I can get some help.

thanks,
grant


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



Bug#345111: bug in kde 3.5

2005-12-28 Thread Xavier Lopez
Package: libdbus-qt4-1-1Version: 0.60-2HelloI think kdebase 3.5 musts depends on libdbus-qt4-1-1 because it's necessary for kde can detect devices in media:/Sorry for my poor englishGreetings
Xavier


Bug#345110: libboost-serialization-dev: -lboost_serialization must come after an object file in linker command

2005-12-28 Thread Bryan Donlan
Package: libboost-serialization-dev
Version: 1.33.0-6
Severity: normal

If I attempt to link a program using boost-serialization, and put
-lboost_serialization before any object or source files on the g++
command line, the linker fails to use the boost-serialization archive
while linking. If I move the serialization library to the end of the
command line, it works.

For example, the following fails:
  g++ -DCV=0 -otest -lboost_serialization tools/serialtest.cpp -I.
But this works:
  g++ -DCV=0 -otest tools/serialtest.cpp -lboost_serialization -I.

Toolchain versions:
||/ Name   VersionDescription
+++-==-==-
ii  binutils   2.16.1cvs20051 The GNU assembler, linker and binary utiliti
ii  g++4.0.2-2The GNU C++ compiler

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

Versions of packages libboost-serialization-dev depends on:
ii  libboost-dev  1.33.0-6   Boost C++ Libraries development fi

libboost-serialization-dev recommends no packages.

-- no debconf information


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



Bug#345109: dh-make: please don't ship the conffiles.ex as it exists now

2005-12-28 Thread Justin Pryzby
Package: dh-make
Version: 0.40
Severity: normal

conffiles.ex is confusing to people, since, as of debhelper compat
level 3, all files which a package includes in /etc/ are automatically
marked as conffiles.  Please either document that this is true (and
provide examples of strange conffiles files which are not in /etc/:
"Note that normal conffiles in /etc/ should not be listed here.  Only
strange and nonconforming conffiles not in /etc/ should be listed
here, such as /), or don't ship conffiles.ex.


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



Bug#345013: kaffe: buggy java.util.zip implementation

2005-12-28 Thread Dalibor Topic

Michael Koch wrote:

On Wed, Dec 28, 2005 at 03:15:23PM +0100, Filip Van Raemdonck wrote:


On Wed, Dec 28, 2005 at 02:32:49PM +0100, Filip Van Raemdonck wrote:


Trying the war from inside
http://switch.dl.sourceforge.net/alfresco/alfresco-war-1.1.1.zip (or any
other sf mirror of that file) in a sarge tomcat4+kaffe deployment, fails
with an IOException for one of the jar files inside.


...


Googling around for the exception message learns that the kaffe zip classes
are known to be buggy, and supposedly using those from classpath-common
might help.


FWIW, I've rebuilt testing/unstable kaffe for sarge and it happens with
that one, too.


Regards,

Filip

PS. I can upload my kaffe build to backports.org, if you wish, so it is
publicly available for others. At least it fixes the security manager
issue with tomcat among other things.



I doubt this is a goos idea as kaffe in testing/unstable is severely
broken. We should at least wait for the next release of kaffe. This
"should" fix most of the issues. Uploading kaffe in current state will
only give bad press.


Hi Filip, Hi Michael,

Indeed, kaffe's CVS head is shaping up nicely for me, and passes the 
regression test suites on x86-linux,x86-frerbsd,amd64-linux and 
powerpc-linux, and even looks fairly good (just three failing regression 
tests) on alpha-linux for the first time in a while.


Regarding the zip implementation, I would not mind switching Kaffe over 
to use the GNU Classpath java.util.zip implementation, if I can see that 
it performs as well on the interpreter engine as what we have at the 
moment. I need to give it another look, I have not investigated that 
recently.



BTW: I plan to maintain some backports of Java stuff from unstable on
backports.org including kaffe, ant, tomcat5, eclipse, etc.


Thanks, Michael!

cheers,
dalibor topic


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



Bug#344754: fails to load ide-disk, doesn't find hdd

2005-12-28 Thread maximilian attems
On Wed, 28 Dec 2005, Joey Hess wrote:

> I also see this bug, using initramfs-tools 0.44 and
> linux-image-2.6.14-2-386 (2.6.14-6).

could you try the attached hook file,
please place it under  /usr/share/initramfs-tools/scripts/init-premount/
and recreate the initramfs: update-initramfs -u

hope it works,
should load ide-disk and ide-generic after the udev run,
as udev currently fails to do so.
 
> It's puzzling that the changelog for this version of the kernel
> claims to have dropped the module ide patch, but all the ide modules
> including ide-disk, ide-generic and the ide/pci/* modules, are still there
> in the debian package.

removed the patch without furthere notice as your concerns weren't 
touched by it.


-- 
maks
#!/bin/sh

PREREQ="udev"

prereqs()
{
echo "$PREREQ"
}

case $1 in
# get pre-requisites
prereqs)
prereqs
exit 0
;;
esac

modprobe -q ide-generic

[ -e /proc/ide ] || return

for drive in /proc/ide/*; do
[ -e ${drive}/media ] || continue
# nothing to do if the device has already been took in charge
unit=${drive#/proc/ide/}
[ -d /sys/block/$unit ] && continue

read media < $drive/media
case "$media" in
disk)   MODULE=ide-disk ;;
cdrom)  MODULE=ide-cd ;;
tape)   MODULE=ide-tape ;;
floppy) MODULE=ide-floppy ;;
*)  MODULE=ide-generic ;;
esac

modprobe -q ${MODULE}
done


Bug#344482: clean build on Sparc

2005-12-28 Thread maximilian attems
On Wed, 28 Dec 2005, Geert Stappers wrote:

> On Wed, Dec 28, 2005 at 01:21:34AM +0100, maximilian attems wrote:
> > 
> > trave11er succesfully build this on his unstable sparc machine,
> > could you please try to debuild it?
> 
> It did build fine ...

cool,
as expected could you please attach the build log so i could
compare to what the sparc buildd f***s up??
 
> Please leave this bugreport open until all arch have the packages
> in the archive ( I will help monitoring )

hmm the powerpc cause should be fixed with next upload.
 
-- 
maks


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



Bug#345108: gdb: FTBFS on hurd-i386: Some warnings, one build failure

2005-12-28 Thread Michael Banck
Package: gdb
Version: 6.4-1
Severity: important
Tags: patch

Hi,

The new release adds some warnings on non-Linux code paths apparently:

cc1: warnings being treated as errors
/build/buildd/gdb-6.3.90.20051119/bfd/elf.c: In function
+'elfcore_write_pstatus':
/build/buildd/gdb-6.3.90.20051119/bfd/elf.c:7869: warning: unused
parameter
+'cursig'
/build/buildd/gdb-6.3.90.20051119/bfd/elf.c:7870: warning: unused
parameter
+'gregs'
make[5]: *** [elf.lo] Error 1

There seem to be quite some warnings in the GNU/Hurd specific code
somebody needs to attend to upstream, would it be possible to add
--disable-werror to the configure flags for hurd-i386 until this is
resolved?

There is a real error in gdb/gnu-nat.c the attached patch fixes.
I am not sure about the upstream status of that, but Alfred should know
himself wether to submit it or not I guess.

build-stamp is built fine after that.


Michael

-- 
Michael Banck
Debian Developer
[EMAIL PROTECTED]
http://www.advogato.org/person/mbanck/diary.html
--- debian/rules.orig   2005-12-29 02:42:24.0 +0100
+++ debian/rules2005-12-28 21:34:57.0 +0100
@@ -33,6 +33,10 @@
   run_tests := no
 endif
 
+ifeq ($(DEB_HOST_GNU_SYSTEM),gnu)
+  arch_config_args := --disable-werror
+endif
+
 ifeq ($(DEB_HOST_GNU_CPU),ia64)
   arch_config_args := --with-libunwind
 endif
2005-09-15  Alfred M. Szmidt  <[EMAIL PROTECTED]>

* gnu-nat.c (inf_validate_procs): Don't use lvalue in assignments.

--- orig/gdb/gnu-nat.c
+++ mod/gdb/gnu-nat.c
@@ -1050,7 +1050,10 @@
proc_debug (thread, "died!");
thread->port = MACH_PORT_NULL;
thread = _proc_free (thread);   /* THREAD is dead.  */
-   (last ? last->next : inf->threads) = thread;
+   if (last)
+ last->next = thread;
+   else
+ inf->threads = thread;
  }
   }
 
@@ -1063,7 +1066,10 @@
  /* THREADS[I] is a thread we don't know about yet!  */
  {
thread = make_proc (inf, threads[i], next_thread_id++);
-   (last ? last->next : inf->threads) = thread;
+   if (last)
+ last->next = thread;
+   else
+ inf->threads = thread;
last = thread;
proc_debug (thread, "new thread: %d", threads[i]);
add_thread (pid_to_ptid (thread->tid)); /* Tell GDB's generic 
thread code.  */


Bug#291694: Who's going to package bloat?

2005-12-28 Thread David Moreno Garza
On 21:15 Wed 28 Dec 2005, Mohammed Adnène Trojette wrote:
> I only retitled it because its title was "ITP:" or something like that.
> 
> So you are totally free to package it!

I second this proposal :)

-- 
David Moreno Garza <[EMAIL PROTECTED]>   |  http://www.damog.net/
   <[EMAIL PROTECTED]>  |  GPG: C671257D
 Voy camino al infierno y no lo puedo parar.




Bug#345107: udev: typos in manpage

2005-12-28 Thread Frans Pop
Package: udev
version: 0.079-1
Severity: minor

After your tip I finally decided to read up a bit on udev. While reading 
the manpage, I noticed the following typos.

BUSMatch the typ of bus the device is connected to.
s/typ/type/

  NAME   The name of the node to be created, or the name, the network
  interface should be renamed to. Only one rule can set the a
  name, all later rules with a NAME key will be ignored.
s/the name, the/the name the/
s/the a/the/ (or a?)

  The permissions for the device node. Every specified value over
  writes the compiled-in default value.
s/over writes/overwrites/

  last_rule stops further rules application. No later rules will
  have any effect.  ignore_device will ignore this event
  completely.  ignore_remove will ignore any later remove event
  for this device. This may be useful as a workaround for broken
  device drivers.  all_partitions will create device nodes for all
  available partitions of a block device. This may be useful for
  removable media.
Would it be possible to start the different options on separate lines?



pgp3RUcioOoxH.pgp
Description: PGP signature


Bug#345050: linked against libstdc++5

2005-12-28 Thread Steve Langasek
severity 345050 normal
close 345050
thanks

On Wed, Dec 28, 2005 at 10:57:13AM -0700, Philipp Kern wrote:

> `pretzel' still depends on `libstdc++5' which was superseded by `libstdc++6'
> during the C++ ABI transition. No source changes seem necessary to
> accomplish the new dependency, so a binary NMU scheduled on all architectures
> would help.

Yes, and scheduled it has been.  In the meantime, this is not a release
critical bug; libstdc++5 will still be around for etch, and it isn't
breaking anything to have stand-alone apps depending on the old version.

The release team will eventually schedule rebuilds for all remaining
packages that use libstdc++5, so please don't file bugs about these
individually.

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


signature.asc
Description: Digital signature


Bug#344978: [pkg-fetchmail-maint] Bug#344978: fetchmailconf: typos an clarifications in helpfile

2005-12-28 Thread Matthias Andree
tags 344978 + confirmed upstream fixed-upstream
thanks

Justin,

Thank you for your bug report. fetchmail 6.3.2 will ship with a
clarified/corrected help text (and a related 6.3.X-only bug that
affected --configdump for "skip" entries).

I will not, as upstream, release a fixed package, as 6.2.X is near
end-of-life and a new release will only be made in case a security or
critical bug is found.

Debian packagers, please try the attached patch for 6.2.*.

Kind regards,

-- 
Matthias Andree
Index: fetchmailconf.py
===
--- fetchmailconf.py	(Revision 4587)
+++ fetchmailconf.py	(Revision 4588)
@@ -666,9 +666,12 @@
 
 4. A protocol to use (POP, IMAP, ETRN, etc.)
 
-5. A polling interval.
+5. A poll interval in seconds.
+   If 0, fetchmail will run in the foreground once when started.
+   If > 0, fetchmail will run in the background and start a new poll
+   cycle after the interval has elapsed.
 
-6. Options to fetch old messages as well as new, uor to suppress
+6. Options to fetch old messages as well as new, or to suppress
deletion of fetched message.
 
 The novice-configuration code will assume that you want to forward mail


pgpOvq3jdX0do.pgp
Description: PGP signature


Bug#344754: fails to load ide-disk, doesn't find hdd

2005-12-28 Thread Joey Hess
I also see this bug, using initramfs-tools 0.44 and
linux-image-2.6.14-2-386 (2.6.14-6).

It's puzzling that the changelog for this version of the kernel
claims to have dropped the module ide patch, but all the ide modules
including ide-disk, ide-generic and the ide/pci/* modules, are still there
in the debian package.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#339845: [PATCH] patch to fix the problem

2005-12-28 Thread Michael Welsh Duggan
Tags: patch

This match may not be enough, but fixes the base case on my system at
least:

*** /usr/bin/rsnapshot~ Wed Apr 13 22:28:27 2005
--- /usr/bin/rsnapshot  Wed Dec 28 00:40:15 2005
***
*** 3221,3228 
return (0);
}

# make the system call to GNU cp
!   $result = system( $config_vars{'cmd_cp'}, '-al', "$src", "$dest" );
if ($result != 0) {
print_err("$config_vars{'cmd_cp'} failed. Perhaps this is not 
GNU cp?", 2);
return (0);
--- 3221,3231 
return (0);
}

+   # strip the final slash off the destination
+   $dest =~ /(.*)\//;
+   
# make the system call to GNU cp
!   $result = system( $config_vars{'cmd_cp'}, '-al', "$src", "$1" );
if ($result != 0) {
print_err("$config_vars{'cmd_cp'} failed. Perhaps this is not 
GNU cp?", 2);
return (0);

-- 
Michael Welsh Duggan
([EMAIL PROTECTED])


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



Bug#330125: status of toolchain-source?

2005-12-28 Thread Hakan Ardo
Hi,
I've handed over this package into the hands of Daniel Widenfalk. Any
progress Daniel?

On 12/28/05, Simon Richter <[EMAIL PROTECTED]> wrote:
> Hi,
>
> what are your current plans involving this package? At present, the gdb
> packages built from it cannot be compiled on modern gcc at least for ARM
> due to lvalue casts in the old gdb sources. Should I try to bring it up
> to date?
>
> Simon
>
>
>


--
Håkan Ardö



Bug#318825: dpkg: fix erranous "directory not empty" warnings

2005-12-28 Thread Lars Wirzenius
This is about the bug in dpkg that makes it forget /etc and /etc/defoma
belong to ttf-bitstream-vera (among others) when removing the package,
but leaving /etc/defoma/hints (which
contains /etc/defoma/hints/ttf-bitstream-vera.hints). When the defoma
packgae is purged, dpkg then complains about the directory not being
empty.

I reported earlier that Goswin's patch failed. I've now looked at it a
bit further, and attach what I think is a fixed version. Two important
differences: mine does not put empty elements into the list in the
listclosure function, and does not call push_leftover with
"&list" (which would result in a
pointer-to-pointer-to-pointer-to-struct-fileinlist), but just with
"list".

I hope this now works. I've tested it briefly with piuparts, and will be
doing so further in the near future.

I have recently made a change to piuparts so that it minimizes the
chroot it uses by removing (with debfoster) all unnecessary packages. As
a result, it happens that all (or almost all) piuparts runs now fail,
because many of the important/standard packages (which formerly weren't
being tested) get installed and removed and this triggers the dpkg bug.
Because of that, I'd appreciate a quick resolution of this, and if I can
help, please tell me. Thanks.

diff -ru dpkg-1.13.11/debian/changelog dpkg-1.13.11.patched/debian/changelog
--- dpkg-1.13.11/debian/changelog	2005-08-17 06:45:20.0 +0300
+++ dpkg-1.13.11.patched/debian/changelog	2005-12-28 22:43:01.0 +0200
@@ -1,3 +1,10 @@
+dpkg (1.13.11.0.0.999) unstable; urgency=low
+
+  * NOT TO BE UPLOADED.
+  * Testing Goswin Brederlow's patch for #318825.
+
+ -- Lars Wirzenius <[EMAIL PROTECTED]>  Wed, 28 Dec 2005 22:42:29 +0200
+
 dpkg (1.13.11) unstable; urgency=low
   
   The "Good, clean fun" Release.
diff -ru dpkg-1.13.11/src/remove.c dpkg-1.13.11.patched/src/remove.c
--- dpkg-1.13.11/src/remove.c	2005-08-14 21:23:51.0 +0300
+++ dpkg-1.13.11.patched/src/remove.c	2005-12-29 01:57:31.0 +0200
@@ -188,6 +188,43 @@
   *leftoverp= newentry;
 }
 
+/* Generate closure of list by recursively adding all parent directories that
+ * don't already exist
+ */
+void listclosure(struct fileinlist **list) {
+  struct fileinlist *tmp1= *list;
+  struct filenamenode *namenode;
+  while(tmp1) {
+char *dirname= m_malloc(strlen(tmp1->namenode->name)+1);
+char *p = dirname + strlen(tmp1->namenode->name);
+strcpy(dirname,tmp1->namenode->name);
+while(p > dirname) {
+  struct fileinlist *tmp2= *list;
+  debug(dbg_eachfiledetail, "removal_bulk reinclude test `%s'", dirname);
+  while(p > dirname && *p != '/') { // get dirname
+*p = 0;
+	--p;
+  }
+  *p = 0;
+  if (strcmp(dirname, "") != 0 && strcmp(dirname, "/") != 0) {
+while(tmp2) {
+	  debug(dbg_eachfiledetail, "removal_bulk reinclude cmp `%s'", tmp2->namenode->name);
+  if (strcmp(dirname, tmp2->namenode->name) == 0)
+	break;
+	  tmp2= tmp2->next;
+}
+  }
+  if (!tmp2) {
+	debug(dbg_eachfiledetail, "removal_bulk reinclude add `%s'", dirname);
+	namenode= findnamenode(dirname,0);
+	push_leftover(list,namenode);
+  }
+}
+free(dirname);
+tmp1= tmp1->next;
+  }
+}
+
 static void removal_bulk_remove_files(
 struct pkginfo *pkg, 
 int *out_foundpostrm) 
@@ -275,6 +312,7 @@
   }
   if (unlink(fnvb.buf)) ohshite(_("cannot remove file `%.250s'"),fnvb.buf);
 }
+listclosure(&leftover);
 write_filelist_except(pkg,leftover,0);
 maintainer_script_installed(pkg, POSTRMFILE, "post-removal",
 "remove", (char*)0);
@@ -373,6 +411,7 @@
 push_leftover(&leftover,namenode);
 continue;
   }
+  listclosure(&leftover);
   write_filelist_except(pkg,leftover,0);
 
   modstatdb_note(pkg);


Bug#289011: mozilla-firefox: Fails to update address bar

2005-12-28 Thread Justin Pryzby
On Wed, Dec 28, 2005 at 07:31:58PM -0500, Eric Dorland wrote:
> still seeing this in firefox 1.5? 
I just upgraded to firefox/sid; I'll watch out for it.

-- 
Clear skies,
Justin


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



Bug#193106: Charlen Is looking for you

2005-12-28 Thread Charlen
PRIVATE MESSAGE

Charlen has invited you to join her at  http://www.sexyhotbod.com




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



Bug#192792: Barb wants you to join us

2005-12-28 Thread Barb
PRIVATE MESSAGE

Barb has invited you to join her at  http://www.sexyhotstars.com




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



Bug#17561: Steph Has Invited you!

2005-12-28 Thread Steph
Private Invite

Please join this site so that that we can chat live 

http://www.sexyhotstars.com

Thanks
Steph


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



Bug#154613: Private Invite From Shannon Please join us

2005-12-28 Thread Shannon
PRIVATE MESSAGE

Shannon has invited you to join her at  http://www.sexyhotstars.com




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



Bug#135192: Private Invite from Shannon

2005-12-28 Thread Shannon
Private Invite

Please join this site so that that we can chat live 

http://www.hotsexyplace.com

Thanks
Shannon


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



Bug#122630: Bonnie wants you to join us

2005-12-28 Thread Bonnie
Private Invite

Please join this site so that that we can chat live 

http://www.sexyhotstars.com

Thanks
Bonnie


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



Bug#118666: Ally Has Invited you!

2005-12-28 Thread Ally
Private Invite

Please join this site so that that we can chat live 

http://www.hotvideosexy.com

Thanks
Ally


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



Bug#345106: mount: man page does not mention hfsplus fstype

2005-12-28 Thread Jutta Wrage
Package: mount
Version: 2.12p-4sarge1
Severity: normal


The man page does only mention hfs fstype but not hfs+ (which is hfsplus
in mount's fstypes.

As fstype auto only mounts as hfs the device is unreadable if one does
not know that mount supports hfs+.

Please update the man page to mention all supported file systems.

Jutta


-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.8-powerpc
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages mount depends on:
ii  libblkid1   1.37-2sarge1 block device id library
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libuuid11.37-2sarge1 universally unique id library

-- no debconf information


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



Bug#114877: Steph Is looking for you

2005-12-28 Thread Steph
PRIVATE MESSAGE

Steph has invited you to join her at  http://www.getsexyphotos.com




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



Bug#345105: dvdauthor dumps core on some mpegs

2005-12-28 Thread Norman Ramsey
Package: dvdauthor
Version: 0.6.11-2.1
Severity: important

dvdauthor dumps core on some mpegs.  The problem is that a signed -1
is tested as unsigned.  Here is a patch in diff -u form (against the
latest alpha sources, dvdauthor-0.6.12-alpha-2992), which fixes the bug:

--- da-internal.h~  2005-03-04 18:50:50.0 -0500
+++ da-internal.h   2005-12-28 20:02:26.0 -0500
@@ -189,7 +189,7 @@
 pts_t getptsspan(const struct pgc *ch);
 pts_t getframepts(const struct vobgroup *va);
 unsigned int buildtimeeven(const struct vobgroup *va,int64_t num);
-unsigned int getaudch(const struct vobgroup *va,int a);
+int getaudch(const struct vobgroup *va,int a);
 int findcellvobu(const struct vob *va,int cellid);
 pts_t getcellpts(const struct vob *va,int cellid);
 int vobgroup_set_video_attr(struct vobgroup *va,int attr,char *s);
--- dvdauthor.c~2005-03-04 19:12:03.0 -0500
+++ dvdauthor.c 2005-12-28 20:02:44.0 -0500
@@ -151,7 +151,7 @@
 return buildtimehelper(va,num,ratedenom[rc]);
 }
 
-unsigned int getaudch(const struct vobgroup *va,int a)
+int getaudch(const struct vobgroup *va,int a)
 {
 if( !va->ad[a].aid )
 return -1;


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12hdk7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages dvdauthor depends on:
ii  libbz2-1.0   1.0.2-11high-quality block-sorting file co
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libdps1  6.8.2.dfsg.1-11 Display PostScript (DPS) client li
ii  libdvdread3  0.9.4-5.1   Simple foundation for reading DVDs
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine, shared lib
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libjasper-1.701-11.701.0-2   The JasPer JPEG-2000 runtime libra
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  liblcms1 1.13-1  Color management library
ii  libmagick9   6:6.2.4.5-0.2   Image manipulation library
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session Management
ii  libtiff4 3.7.4-1 Tag Image File Format (TIFF) libra
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  libxml2  2.6.22-2GNOME XML library
ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries m
ii  zlib1g   1:1.2.3-8   compression library - runtime

dvdauthor recommends no packages.

-- no debconf information


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



Bug#337820: acknowledged by developer (Bug#337820: fixed in tse3 0.3.1-3)

2005-12-28 Thread Steve Langasek
reopen 337820
severity 337820 important
user debian-release@lists.debian.org
usertag 337820 rc-s390
thanks

On Wed, Dec 28, 2005 at 03:19:01PM -0800, Steve Langasek wrote:
> On Wed, Dec 28, 2005 at 07:50:20PM +0100, Bastian Blank wrote:
> > >* Apply Steve Langasek's suggestion to fix the build failures on 64-bit
> > >  machines by explicitly adding a uint64_t variant of
> > >  XmlFileWriter::element. (Closes: #337820)

> > This will not fix this bug. s390 have size_t == signed int.

> Hrm, that doesn't make any sense.  The previous set of implementations were

> void element(const std::string &name, const std::string 
> &value);
> void element(const std::string &name, const char
> *value);
> void element(const std::string &name, int
> value);
> void element(const std::string &name, unsigned int   
> value);
> void element(const std::string &name, bool   
> value);

> If size_t == signed int, why did the third of these not match automatically?
> Where's the ambiguity?

Ok, on IRC I was told that size_t is unsigned long on s390, rather than
signed (or unsigned) int.  sizeof(long) == sizeof(int) on s390, but long !=
int in C++, hence the ambiguity.

And conveniently, unsigned long is the same thing as uint64_t on our 64-bit
archs, so just using unsigned long instead of uint64_t should work
everywhere, I think?

-- 
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#289011: mozilla-firefox: Fails to update address bar

2005-12-28 Thread Eric Dorland
still seeing this in firefox 1.5? 

-- 
Eric Dorland <[EMAIL PROTECTED]>
ICQ: #61138586, Jabber: [EMAIL PROTECTED]
1024D/16D970C6 097C 4861 9934 27A0 8E1C  2B0A 61E9 8ECF 16D9 70C6

-BEGIN GEEK CODE BLOCK-
Version: 3.12
GCS d- s++: a-- C+++ UL+++ P++ L++ E++ W++ N+ o K- w+ 
O? M++ V-- PS+ PE Y+ PGP++ t++ 5++ X+ R tv++ b+++ DI+ D+ 
G e h! r- y+ 
--END GEEK CODE BLOCK--


signature.asc
Description: Digital signature


Bug#186767: apt: Release files should have a default pin-priority

2005-12-28 Thread Carsten Hey
Hi,

a default pin-priority as described in Goswin Brederlows mail would also
be very useful for backports.org.

Currently users have to configure pinning to get only the packages they
want.  When they make an error while configuring pinning (since pinning
is not that trivial this is very common for unexperienced users) they
will get _all_ backported packages.

Setting NotAutomatic to yes is not a solution, since users will miss
important security-updates for the backported packages they use.

So the only solution I see to provide sane defaults is to add something
like DefaultPriority and in case of backports.org set it to 101.  Client
side pinning should of course override the default priority provided by
the repository.

Backports.org is only an example where this would be useful, there are
many other repositories that would benefit from such a feature.

DefaultPriority could substitute NotAutomatic in Etch+1, since setting
NotAutomatic to yes is equivalent to setting DefaultPriority to 1.
Until NotAutomatic can been dropped, parsing NotAutomatic only when
DefaultPriority is not provided would imho be the right way. 


Regards
Carsten Hey


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



Bug#345104: dokuwiki: Broken watch file

2005-12-28 Thread Matti Pöllä
Package: dokuwiki
Version: 0.0.20050922-4
Severity: minor

The watch file (debian/watch) of the source package has been broken
since the upstream web site was changed. For example, the URL for the
latest release is now

http://www.splitbrain.org/_media/projects/dokuwiki/dokuwiki-2005-09-22.tgz?id=projects%3Adokuwiki&cache=cache


cheers,

-Matti


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

Versions of packages dokuwiki depends on:
ii  debconf [debconf-2.0] 1.4.66 Debian configuration management sy
ii  php4  4:4.4.0-4  server-side, HTML-embedded scripti
ii  ucf   2.004  Update Configuration File: preserv

Versions of packages dokuwiki recommends:
ii  apache2-mpm-prefork [httpd-cg 2.0.55-3   traditional model for Apache2

-- debconf information:
* dokuwiki/system/documentroot: /dokuwiki
* dokuwiki/system/accessible: localhost only
  dokuwiki/system/localnet: 10.0.0.0/24
  dokuwiki/webservers: apache
* dokuwiki/system/purgepages: true


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



Bug#345103: apmd: excessive console output

2005-12-28 Thread Chip Salzenberg
Package: apmd
Version: 3.2.2-3
Severity: normal

I find apmd an unfriendly (or at least impolite) daemon in its verbose
output to the console of normal and unremarkable events, including
power status changes and battery status updates.

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

Versions of packages apmd depends on:
ii  debconf   1.4.66 Debian configuration management sy
ii  libapm1   3.2.2-3Library for interacting with APM d
ii  libc6 2.3.5-9GNU C Library: Shared libraries an
ii  powermgmt-base1.22   Common utils and configs for power

apmd recommends no packages.

-- debconf information:
  apmd/overwrite-config-file: true
  apmd/hdparm-removed:
  apmd/suspend-on-ac: true


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



Bug#341452: erm

2005-12-28 Thread Joey Hess
It's unacceptible to leave this bug open and wontfix. My main server
uses the 2.4 kernel and lvm; when this bug was brought to my attention
it was clear to me that since it's tracking unstable, the next time I
reboot it it will no longer be able to mount its lvm volumes. The fact
that debian unstable gets a system into this situation with no indication
of the problem is a horrific bug.

Conflict with the 2.4 kernel, add a postinst check for 2.4, add a
NEWS.Debian, add a debconf warning, but don't sit on your hands and
let users break their running systems!

-- 
see shy jo, removing lvm from all his systems in the meantime


signature.asc
Description: Digital signature


Bug#249327: Heather Is looking for you

2005-12-28 Thread Heather
PRIVATE MESSAGE

Heather has invited you to join her at  http://www.sexyhotaction.com




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



Bug#192797: Charlen Is looking for you

2005-12-28 Thread Charlen
PRIVATE MESSAGE

Charlen has invited you to join her at  http://www.hotvideosexy.com




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



Bug#183045: Private Invite From Sara Please join us

2005-12-28 Thread Sara
PRIVATE MESSAGE

Sara has invited you to join her at  http://www.sexyhotdreams.com




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



Bug#130048: Private Invite From Dorthy Please join us

2005-12-28 Thread Dorthy
PRIVATE MESSAGE

Dorthy has invited you to join her at  http://www.sexyhotbod.com




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



Bug#345064: music123(GNU/kFreeBSD): FTBFS: kfreebsd-i386 not in the architecture list

2005-12-28 Thread David Starner
On 12/28/05, Aurelien Jarno <[EMAIL PROTECTED]> wrote:
> Package: music123
> Version: N/A
> Severity: wishlist
>
> Hello,
>
> The current version of music123 fails to build on GNU/kFreeBSD,
> because kfreebsd-i386 is not listed in the Architecture: field.
>
> Could you please add kfreebsd-i386 to the list of the supported
> architectures?

I don't have a working computer anymore. I find it unlikely that I
will be able to update music123 in the near future. I can't even make
a new upload to orphan it. If anyone wishes to NMU it (and orphan it),
or adopt it, go ahead.



Bug#341705: mysql-server-5.0: MySQL Server silently crashes

2005-12-28 Thread Alexis Iglauer
Package: mysql-server-5.0
Version: 5.0.16-1
Followup-For: Bug #341705

MySQL crashes silently (no entries in syslog) and for no apparent
reason.  The DB has virtually zero load (still busy setting it up for a
small webserver).  Any idea how I can trace the problem?

Regards
Alexis

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.20-021stab028.19.777-enterprise
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages mysql-server-5.0 depends on:
ii  adduser  3.80Add and remove users and groups
ii  debconf [debconf 1.4.65  Debian configuration management sy
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libdbi-perl  1.48-2  Perl5 database interface by Tim Bu
ii  libgcc1  1:4.0.2-5   GCC support library
ii  libmysqlclient15 5.0.16-1mysql database client library
ii  libncurses5  5.5-1   Shared libraries for terminal hand
ii  libreadline5 5.0-11  GNU readline and history libraries
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library v3
ii  libwrap0 7.6.dbs-8   Wietse Venema's TCP wrappers libra
ii  mailx1:8.1.2-0.20050715cvs-1 A simple mail user agent
ii  mysql-client-5.0 5.0.16-1mysql database client binaries
ii  mysql-common 5.0.16-1mysql database common files (e.g. 
ii  passwd   1:4.0.13-7  change and administer password and
ii  perl 5.8.7-9 Larry Wall's Practical Extraction 
ii  psmisc   21.8-1  Utilities that use the proc filesy
ii  zlib1g   1:1.2.3-8   compression library - runtime

mysql-server-5.0 recommends no packages.

-- debconf information:
  mysql-server-5.0/really_downgrade: false
  mysql-server-5.0/start_on_boot: true
  mysql-server-5.0/mysql_update_hints1:
  mysql-server-5.0/nis_warning:
  mysql-server-5.0/postrm_remove_databases: false
* mysql-server-5.0/mysql_install_db_notes:


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



Bug#337788: Same prob with kernel 2.6.14.4

2005-12-28 Thread jedd
Howdi,

Seeing the same thing here on a Dell 8500 - using KDE's ctrl-alt-esc
'click the mouse on whatever you want to KILL' feature - to get rid
of the splash screen, and I notice (via top) that:
 o   kded disappears from the process table, and
 o   when hitting the vol-UP special key on the poota, that WAIT
goes way up, with kded using maybe 7% CPU.  This on an otherwise
idle machine.  (2ghz Pentium4 with 1.5GB RAM).

My kernel is self-compiled, and I'm running on a mostly unstable
Debian setup.  I do not have the i8k module compiled - although
CONFIG_I8K is compiled into the kernel.  If I thought that it was
reasonable to expect that I8K should be removed in order for volume
keys to work, I'd experiment with removing it -- but Jan 's already
proved that this fixes (but does not *resolve*) the problem.

ii  klineakconfig0.8-beta2-5 
KDE configurator for lineakd
ii  liblineak0   0.8.3-8 
LinEAK development files
ii  lineakd  0.8.3-8 
Linux support for Easy Access and Internet Keyboards
ii  kmix 3.4.3-5 
sound mixer applet for KDE

Cheers,
Jedd.


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



Bug#192797: Charlen Has Invited you!

2005-12-28 Thread Charlen
Private Invite

Please join this site so that that we can chat live 

http://www.Charlen

Thanks
Charlen


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



Bug#141692: Ally Is looking for you

2005-12-28 Thread Ally
Private Invite

Please join this site so that that we can chat live 

http://www.Ally

Thanks
Ally


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



Bug#130048: Private Invite from Dorthy

2005-12-28 Thread Dorthy
Private Invite

Please join this site so that that we can chat live 

http://www.Dorthy

Thanks
Dorthy


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



Bug#339177: Intention to NMU

2005-12-28 Thread Robert Jordens
Hello!

[Wed, 28 Dec 2005] Luk Claes wrote:
> Attached the patch for the version I intend to upload. Please respond if
> you don't want this NMU to happen, if you are working yourself on a
> patch or if you think that the attached patch won't work.

Looks cool. Thanks for preparing the NMU! Feel free to go for it.

Robert.


-- 
Intel CPUs are not defective, they just act that way.
-- Henry Spencer


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



Bug#329126: please add conflict with sarge gawk to post-sarge libc6

2005-12-28 Thread Steve Langasek
On Wed, Dec 28, 2005 at 06:53:34PM +, Phil Blundell wrote:
> On Mon, 2005-09-19 at 23:07 +0400, Nikita V. Youshchenko wrote:
> > [EMAIL PROTECTED]:~> echo -n | fakeroot awk '{print}'
> > awk: relocation error: awk: symbol _dl_catch_error, version GLIBC_PRIVATE 
> > not defined in file ld-linux.so.2 with link time reference

> > This is fixed in post-sarge gawk 3.1.4-2.0.1.

> > This may affect large number of people, who upgrade to post-sarge libc6 to
> > be able to install other post-sarge packages. So it seems reasonable to
> > add a conflict with sarge version of gawk to current libc6 packages.

> I have a feeling that adding this conflict is likely to result in gawk
> just being uninstalled, and potentially taking a lot of other packages
> with it, during upgrades.  If that's the case, it seems that the cure
> would be rather worse than the original disease.  That said, I agree
> with you that just leaving gawk in a broken state is not exactly
> satisfactory either.

> I've copied this note to debian-release in case the fine folks on that
> list can provide any guidance.

Well, as awk is virtually essential, it would only be removed if mawk was
installed in its place.  I don't know what the resolver from sarge's apt
or aptitude would do in this situation; the possibilities are 1) upgrade
gawk (what we want it to do!), 2) uninstall gawk in favor of mawk, or 3)
break and stick the admin with resolving it.

2) would affect a handful of packages that depend specifically on gawk (14
in total), and 3) is obviously not viable.

So unless the answer turns out to be 1), perhaps it would be better for
current libc6 on i386 to Depends: mawk | gawk (>= 1:3.1.4-2.0.1) ?

-- 
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#345102: libnss-pgsql1: doesn't work with SSL-enabled server

2005-12-28 Thread Javier Serrano Polo
Package: libnss-pgsql1
Version: 1.3
Severity: normal

Doesn't work with remote 7.4.7 server (sarge version) when ssl is true 
in postgresql.conf.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-2-586tsc
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libnss-pgsql1 depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libpq31:7.4.9-2  PostgreSQL C client library

libnss-pgsql1 recommends no packages.

-- no debconf information


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



Bug#343632: mysql-query-browser: Older versions fail too

2005-12-28 Thread Pau Tallada Crespi
Package: mysql-query-browser
Followup-For: Bug #343632

I have tried to install older versions from snapshot.debian.net and I have also 
rebuilt versions 1.1.17-4, 1.1.17-3, 
1.1.17-2, 1.1.17-1, 1.1.14 and 1.1.12 from sources available at former site and 
they segfault too.

I think this could be due to some external library all those versions are using 
???

Thanks in advance for your work!

Willing to help and sorry my English.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-pau
Locale: LANG=ca_ES.UTF-8, LC_CTYPE=ca_ES.UTF-8 (charmap=UTF-8)


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



Bug#320375: Processed: Re: Bug#320375: conquest-gl: fail to start (Assertion `window->Window.VisualInfo != ((void *)0)' failed.)

2005-12-28 Thread Robert Auch
I'm getting this in Debian Etch 2.6.12 (custom) freeglut3 2.4.0-4 with
conquest-gl as well.  Let me know what else I can provide.

freeglut (conquestgl):  ERROR:  Internal error  in function fgOpenWindow
X Error of failed request:  BadWindow (invalid Window parameter)
  Major opcode of failed request:  4 (X_DestroyWindow)
  Resource id in failed request:  0x0
  Serial number of failed request:  29
  Current serial number in output stream:  33

I can run other OpenGL apps without issue (slune, tuxkart, torcs),
glxinfo shows that DRI is working fine, best as I can tell.  not a very
knowledgeable *nix guy yet though.

-- 
Robert Auch
Senior Systems Administrator
Empire Today, LLC
mailto:[EMAIL PROTECTED]



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



Bug#345101: /etc/modprobe.d/alsa-base uses modprobe instead of /sbin/modprobe

2005-12-28 Thread Michael Prokop
Package: alsa-base
Version: 1.0.10-3
Severity: normal


In /etc/modprobe.d/alsa-base there are lines like:

install snd modprobe --ignore-install snd && { modprobe --quiet snd-ioctl32 ; : 
; }

Using this with /bin/zsh as /bin/sh fails (e.g. when running
udevsynthesize you see something like 'zsh: command not found:
modprobe' in syslog when running udev with log_priority=debug).

Changing all the 'modprobe' calls to '/sbin/modprobe' fixes the
problem. (I've tested this with /bin/bash as /bin/sh - works as well
of course then.)

All other files in /etc/modprobe.d/ seem to use '/sbin/modprobe' and
not 'modprobe'. If there is no specific reason why 'modprobe' is used
instead of '/sbin/modprobe' in alsa-base please consider changing this
as it fixes a very annoying (and not-easy-to-debug) problem with zsh.

regards,
-mika-


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



Bug#345100: segfaults on startup

2005-12-28 Thread Wichert Akkerman
Package: pornview
Version: 0.2pre1-5
Severity: grave

pornview does nothing but segfault for me:

[snow;/local/rac]-16> pornview
xine_thread: init threads
xine_thread: open display
zsh: segmentation fault (core dumped)  pornview

The backtrace is:

#0  0xb7a11dc4 in pthread_mutex_lock () from /lib/tls/libpthread.so.0
#1  0xb785254e in _XUnregisterFilter () from /usr/X11R6/lib/libX11.so.6
#2  0xb783ec7d in XrmQGetResource () from /usr/X11R6/lib/libX11.so.6
#3  0xb781d2b4 in XGetDefault () from /usr/X11R6/lib/libX11.so.6
#4  0xb77af662 in cairo_xlib_surface_set_drawable ()
   from /usr/lib/libcairo.so.2
#5  0xb77af901 in cairo_xlib_surface_set_drawable ()
   from /usr/lib/libcairo.so.2
#6  0xb77ad7d5 in cairo_test_xlib_disable_render () from /usr/lib/libcairo.so.2
#7  0xb7c5b8f5 in _gdk_x11_convert_to_format ()
   from /usr/lib/libgdk-x11-2.0.so.0
#8  0xb7c35494 in _gdk_drawable_ref_cairo_surface ()
   from /usr/lib/libgdk-x11-2.0.so.0
#9  0xb7c3f49f in gdk_pixmap_get_type () from /usr/lib/libgdk-x11-2.0.so.0
#10 0xb7c35494 in _gdk_drawable_ref_cairo_surface ()
   from /usr/lib/libgdk-x11-2.0.so.0
#11 0xb7c4ad50 in gdk_window_begin_paint_region ()
   from /usr/lib/libgdk-x11-2.0.so.0
#12 0xb7db7da5 in gtk_main_do_event () from /usr/lib/libgtk-x11-2.0.so.0
#13 0xb7c4bc50 in gdk_window_clear_area_e () from /usr/lib/libgdk-x11-2.0.so.0
#14 0xb7c4c2c5 in gdk_window_process_updates ()
   from /usr/lib/libgdk-x11-2.0.so.0
#15 0xb7d17a90 in gtk_clist_get_selection_info ()
   from /usr/lib/libgtk-x11-2.0.so.0
#16 0xb7b5e67b in g_cclosure_marshal_VOID__VOID ()
   from /usr/lib/libgobject-2.0.so.0
#17 0xb7b5267b in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#18 0xb7b61c6d in g_signal_stop_emission () from /usr/lib/libgobject-2.0.so.0
#19 0xb7b63047 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#20 0xb7b633fe in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#21 0xb7cf2a08 in gtk_adjustment_value_changed ()
   from /usr/lib/libgtk-x11-2.0.so.0
#22 0xb7cf2b3c in gtk_adjustment_set_value () from /usr/lib/libgtk-x11-2.0.so.0
#23 0x08061014 in dirview_scroll_center ()
#24 0x080599fa in browser_create ()
#25 0x0806a650 in main ()


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

Versions of packages pornview depends on:
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libc62.3.5-9 GNU C Library: Shared libraries an
ii  libglib2.0-0 2.8.4-2 The GLib library of C routines
ii  libgtk2.0-0  2.8.9-2 The GTK+ graphical user interface 
ii  libpango1.0-01.10.1-2Layout and rendering of internatio
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
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  libxine1 1.0.1-1.4   the xine video/media player librar
ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries m
ii  zlib1g   1:1.2.3-9   compression library - runtime

pornview recommends no packages.

-- no debconf information


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



Bug#344873: should be a way to get a sudo-only root system

2005-12-28 Thread Joey Hess
Here is a patch that adds a debconf question. I haven't yet been able to
test the patch, but it seems striaghtforward.

-- 
see shy jo
Index: user-setup-apply
===
--- user-setup-apply(revision 33314)
+++ user-setup-apply(working copy)
@@ -118,6 +118,23 @@
$log $chroot $ROOT adduser "$USER" $group >/dev/null 
2>&1 || true
done
fi
+
+   db_get passwd/root-login
+   if [ "$RET" = false ] && [ -n "$USER" ]; then
+   # Ensure sudo is installed, and set up the user to be able
+   # to use it.
+   if [ ! -e $ROOT/etc/sudoers ]; then
+   # try to work in d-i and out; it's better to
+   # use apt-install in d-i
+   apt-install sudo 2>/dev/null || $log $chroot apt-get -q 
-y install sudo || true
+   fi
+   if [ -e $ROOT/etc/sudoers ]; then
+   echo "$USER ALL=(ALL) ALL" >> $ROOT/etc/sudoers
+   else
+   # sudo failed to install, system won't be usable
+   exit 1
+   fi
+   fi
 fi
 
 exit 0
Index: debian/user-setup-udeb.templates
===
--- debian/user-setup-udeb.templates(revision 33306)
+++ debian/user-setup-udeb.templates(working copy)
@@ -16,6 +16,13 @@
 Type: string
 Description: For internal use only
 
+Template: passwd/root-login
+Type: boolean
+Default: true
+_Description: Allow login as root?
+ If you choose not to allow root to log in, then a user account will be
+ created and given the power to become root using the 'sudo' command.
+
 Template: passwd/root-password
 Type: password
 _Description: Root password:
Index: debian/changelog
===
--- debian/changelog(revision 33314)
+++ debian/changelog(working copy)
@@ -14,8 +14,13 @@
   [ Joey Hess ]
   * Exit 10 on backup out of the program, to work properly with main-menu.
   * Use -m flag of chpasswd rather than doing the md5 generation by hand.
+  * Add passwd/root-login question (asked at medium priority), currently
+defaulting to true.
+  * If root-login is false, skip root password prompts, lock the root account,
+always make a user account, install sudo, and configure /etc/sudoers to
+allow the user to become root. Closes: #344873
 
- -- Joey Hess <[EMAIL PROTECTED]>  Tue, 27 Dec 2005 00:59:50 -0500
+ -- Joey Hess <[EMAIL PROTECTED]>  Wed, 28 Dec 2005 17:40:03 -0500
 
 user-setup (0.03) unstable; urgency=low
 
Index: user-setup-ask
===
--- user-setup-ask  (revision 33312)
+++ user-setup-ask  (working copy)
@@ -21,10 +21,16 @@
0)
# Ask how the password files should be set up.
db_input low passwd/shadow || true
+   # Ask if root should be allowed to login.
+   db_input medium passwd/root-login || true
;;
1)
-   # Prompt for a root password if there is none.
-   if ! root_password; then
+   db_get passwd/root-login
+   if [ "$RET" = false ]; then
+   # root password will be locked
+   db_set passwd/root-password ""
+   db_set passwd/root-password-crypted "!"
+   elif ! root_password; then
# First check whether the root password was preseeded 
crypted
db_get passwd/root-password-crypted || true
if ! test "$RET" ; then
@@ -41,8 +47,11 @@
fi
;;
2)
-   # Verify and set a root password.
-   if ! root_password; then
+   db_get passwd/root-login
+   if [ "$RET" = false ]; then
+   # root password will be locked
+   db_set passwd/root-password-again ""
+   elif ! root_password; then
# First check whether the root password was preseeded 
crypted
db_get passwd/root-password-crypted || true
if ! test "$RET" ; then
@@ -74,7 +83,12 @@
3)
# Ask if a non-root user should be made, if there is not
# already one.
-   if ! is_system_user; then
+   db_get passwd/root-login
+   if [ "$RET" = false ]; then
+   # always make non-root user; this user will be able
+   # to sudo to root
+   db_set passwd/make-user true
+   elif ! is_system_user; then
db_input medium passwd/make-user || true
fi
;;


signature.asc
Description: Digital signature


Bug#344674: CVE-2005-4357: phpbb2: XSS with onmouseover

2005-12-28 Thread Jeroen van Wolffelaar
On Tue, Dec 27, 2005 at 11:19:36PM +0100, Thijs Kinkhorst wrote:
> Hello Moritz,
> 
> On Sat, December 24, 2005 16:02, Moritz Muehlenhoff wrote:
> > The mentioned path disclosure is obviously not a problem, but does
> > the described XSS issue have real-world security implications?
> 
> Sorry for not getting back to you earlier, this is due to the holidays.
> Hope you had a nice time.
> 
> I have not yet tested the code, however, if it works, it's a real-world
> xss problem. But, from a first look it seems to require 'Allow HTML' to be
> turned on. This is turned off by default on Debian and we warn in every
> possible flashy way about not turning this on unless your environment is
> completly trusted.
> 
> I'll try to confirm this soon, but if it's the case that this can only be
> exploited with 'Allow HTML' on, I'm inclined not to fix it for sarge. We
> will fix it for sid in that case of course.

I agree with Thijs' assassment here. A very similar issue came up before
sarge was released, which I decided at that time (2.0.13(+1)-5,
corresponding to upstream's 2.0.14 security updates) to solve by adding
the above-mentioned flashy (though non-shockwave) warning -- phpBB
doesn't have adequate support for filtering HTML into something
XSS-safe, and never has, and it does have a reasonable adequate
alternative ("bbcode"), so the feature is labeled as 'for internal,
trusted-users-only user', and defaults to off.

The actual text of the warning is:
| Warning: enabling this will always expose your users to cross-site
| scripting, use only in fully trusted environments

Security team, if you wish, you can add CVE-2005-4357 to the list of
non-vulns, or wontfix, security issues, whatever is most appropriate.

Thanks,
--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#344995: [Pkg-octave-devel] Bug#344995: octave-forge: FTBFS (ia64, mips, .../unstable): fixed.h: No such file or directory

2005-12-28 Thread Joaquim Ortega
This seems to be a regression with the new version of make. In a
current sid with the make package from testing (make_3.80-11_i386.deb)
octave-forge builts without trouble.
Maybe it is related to some of the backward incompatibilities described in
the NEWS.Debian.gz of the new version of make, but this is just a guess.

Quim



Bug#345098: krusader: search doesn't recognize the ~ directory

2005-12-28 Thread Jiří Paleček

X-Debbugs-CC: Jiri Palecek <[EMAIL PROTECTED]>
Package: krusader
Version: 1.60.0-3
Severity: minor

The search of anything in directory "~" or "~/something"
yields nothing. However, searching in "/home/jirka/" works
OK.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13
Locale: LANG=cs_CZ.ISO-8859-2, LC_CTYPE=cs_CZ.ISO-8859-2  
(charmap=ISO-8859-2)


Versions of packages krusader depends on:
ii  kdelibs4c2   4:3.4.2-4   core libraries for all KDE  
applica
ii  libart-2.0-2 2.3.17-1Library of functions for 2D  
graphi
ii  libaudio21.7-3   The Network Audio System  
(NAS). (s
ii  libc62.3.5-8 GNU C Library: Shared  
libraries an
ii  libfam0  2.7.0-8 client library to control the  
FAM
ii  libfontconfig1   2.3.2-1 generic font configuration  
library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine,  
shared lib

ii  libgcc1  1:4.0.2-5   GCC support library
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libidn11 0.5.18-1GNU libidn library,  
implementation
ii  libjpeg626b-10   The Independent JPEG Group's  
JPEG
ii  libpcre3 6.4-1.1 Perl 5 Compatible Regular  
Expressi

ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqt3-mt3:3.3.5-3   Qt GUI Library (Threaded  
runtime v
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session  
Management
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library  
v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol  
client li

ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous  
exte
ii  libxft2  2.1.7-1 FreeType-based font drawing  
librar
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input  
extension li
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head  
display
ii  libxrandr2   6.8.2.dfsg.1-11 X Window System Resize,  
Rotate and
ii  libxrender1  1:0.9.0-2   X Rendering Extension client  
libra

ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  xlibs6.8.2.dfsg.1-11 X Window System client  
libraries m

ii  zlib1g   1:1.2.3-8   compression library - runtime

krusader recommends no packages.

-- no debconf information
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/


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



Bug#289168: Waiting for Xvidcap

2005-12-28 Thread Asheesh Laroia
I really would like to use this program, and it's even packaged.  Why has 
it lingered on http://ftp-master.debian.org/new.html for a year now?


As a Debian user, I'd like to say it would be great if it were uploaded. 
I would like to use xvidcap to make video-based Debian documentation to 
help my friends enjoy Free Software.


-- Asheesh.

--
write-protect tab, n.:
A small sticker created to cover the unsightly notch carelessly left
by disk manufacturers.  The use of the tab creates an error message
once in a while, but its aesthetic value far outweighs the momentary
inconvenience.
-- Robb Russon


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



Bug#345097: krusader: Bad handling of directories in the search dialog box

2005-12-28 Thread Jiří Paleček

X-Debbugs-CC: Jiri Palecek <[EMAIL PROTECTED]>
Package: krusader
Version: 1.60.0-3
Severity: minor

The "search in..." box in the search dialog box incorrectly
completes directories containing spaces. For example, if I
have a directory "/mnt/c/Document and Settings/", it completes

  "/mnt/c/Documents and Settings"/

WITH the quotes. The search then yields nothing. When the correct
name is entered, i.e. the quotes are removed, everything is OK.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13
Locale: LANG=cs_CZ.ISO-8859-2, LC_CTYPE=cs_CZ.ISO-8859-2  
(charmap=ISO-8859-2)


Versions of packages krusader depends on:
ii  kdelibs4c2   4:3.4.2-4   core libraries for all KDE  
applica
ii  libart-2.0-2 2.3.17-1Library of functions for 2D  
graphi
ii  libaudio21.7-3   The Network Audio System  
(NAS). (s
ii  libc62.3.5-8 GNU C Library: Shared  
libraries an
ii  libfam0  2.7.0-8 client library to control the  
FAM
ii  libfontconfig1   2.3.2-1 generic font configuration  
library
ii  libfreetype6 2.1.7-2.4   FreeType 2 font engine,  
shared lib

ii  libgcc1  1:4.0.2-5   GCC support library
ii  libice6  6.8.2.dfsg.1-11 Inter-Client Exchange library
ii  libidn11 0.5.18-1GNU libidn library,  
implementation
ii  libjpeg626b-10   The Independent JPEG Group's  
JPEG
ii  libpcre3 6.4-1.1 Perl 5 Compatible Regular  
Expressi

ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqt3-mt3:3.3.5-3   Qt GUI Library (Threaded  
runtime v
ii  libsm6   6.8.2.dfsg.1-11 X Window System Session  
Management
ii  libstdc++6   4.0.2-5 The GNU Standard C++ Library  
v3
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol  
client li

ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-11 X Window System miscellaneous  
exte
ii  libxft2  2.1.7-1 FreeType-based font drawing  
librar
ii  libxi6   6.8.2.dfsg.1-11 X Window System Input  
extension li
ii  libxinerama1 6.8.2.dfsg.1-11 X Window System multi-head  
display
ii  libxrandr2   6.8.2.dfsg.1-11 X Window System Resize,  
Rotate and
ii  libxrender1  1:0.9.0-2   X Rendering Extension client  
libra

ii  libxt6   6.8.2.dfsg.1-11 X Toolkit Intrinsics
ii  xlibs6.8.2.dfsg.1-11 X Window System client  
libraries m

ii  zlib1g   1:1.2.3-8   compression library - runtime

krusader recommends no packages.

-- no debconf information

--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/


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



Bug#337820: acknowledged by developer (Bug#337820: fixed in tse3 0.3.1-3)

2005-12-28 Thread Steve Langasek
On Wed, Dec 28, 2005 at 07:50:20PM +0100, Bastian Blank wrote:
> >* Apply Steve Langasek's suggestion to fix the build failures on 64-bit
> >  machines by explicitly adding a uint64_t variant of
> >  XmlFileWriter::element. (Closes: #337820)

> This will not fix this bug. s390 have size_t == signed int.

Hrm, that doesn't make any sense.  The previous set of implementations were

void element(const std::string &name, const std::string &value);
void element(const std::string &name, const char*value);
void element(const std::string &name, intvalue);
void element(const std::string &name, unsigned int   value);
void element(const std::string &name, bool   value);

If size_t == signed int, why did the third of these not match automatically?
Where's the ambiguity?

> Is there any reason to not provide only versions for bool and size_t?

Given that there are other integer types being passed to this function which
aren't size_t, wouldn't we have the same disambiguation problem between bool
and size_t for them?  AFAICT, if we want special handling for bool, the only
way to deal with this is by overloading *all* the integer types, rather than
only one of them; but then I still don't know why s390 is failing. :/

-- 
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#326340: Kforth 1.3.1 new upstream version doesn't like libreadline5

2005-12-28 Thread Stephan Hermann
Hi,

1.2.6 has serious problems with gcc/g++-4 and the new upstream version doesn't 
like libreadline5.

/usr/bin/gcc -c -m32  vmc.c
vmc.c: In function ‘C_system’:
vmc.c:482: warning: incompatible implicit declaration of built-in function 
‘strcpy’
vmc.c:483: warning: incompatible implicit declaration of built-in function 
‘strncpy’
vmc.c: In function ‘C_chdir’:
vmc.c:503: warning: incompatible implicit declaration of built-in function 
‘strncpy’
/usr/bin/g++ -m32 -o kforth  kforth.o ForthVM.o ForthCompiler.o vm.o vmc.o 
-lreadline -lncurses
/usr/bin/ld: skipping 
incompatible /usr/lib/gcc/x86_64-linux-gnu/4.0.3/../../../libreadline.so when 
searching for -lreadline
/usr/bin/ld: skipping 
incompatible /usr/lib/gcc/x86_64-linux-gnu/4.0.3/../../../libreadline.a when 
searching for -lreadline
/usr/bin/ld: skipping incompatible /usr/bin/../lib/libreadline.so when 
searching for -lreadline
/usr/bin/ld: skipping incompatible /usr/bin/../lib/libreadline.a when 
searching for -lreadline
/usr/bin/ld: skipping incompatible /usr/lib/libreadline.so when searching for 
-lreadline
/usr/bin/ld: skipping incompatible /usr/lib/libreadline.a when searching for 
-lreadline
/usr/bin/ld: cannot find -lreadline

Regards,

\sh



Bug#345095: kino cannot register plugin libkinoplus.so

2005-12-28 Thread Daniel Wild
Package: kinoplus
Version: 0.3.5-1.1
Severity: grave
Justification: renders package unusable


kino fails to load libkinoplus.so with the following error message:

>>> Rejecting plugin /usr/lib/kino-gtk2/libkinoplus.so :
>>> /usr/lib/kino-gtk2/libkinoplus.so: undefined symbol:
>>> gnome_file_entry_set_directory_entry

kinoplus needs to be linked with -lgnomeui-2

Not knowing much about how all this is built, I added 'LIBS=-lgnomeui-2'
to the ./configure line in debian/rules and it seems to work ok.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages kinoplus depends on:
ii  kino  0.80-1 Non-linear editor for Digital Vide
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-5  GCC support library
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libstdc++64.0.2-5The GNU Standard C++ Library v3

kinoplus recommends no packages.

-- no debconf information


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



Bug#333035: Intention to NMU

2005-12-28 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

Attached the patch for the version I intend to upload. Please respond if
you don't want this NMU to happen, if you are working yourself on a
patch or 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
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDsxxc5UTeB5t8Mo0RAmK4AJ9jCz+DMbCapUoyUA+XPVEbkdU+IwCdF2Xd
ChtD7bQRykaBdTWq8HGaofU=
=BCe3
-END PGP SIGNATURE-
diff -u gtk-engines-0.12/debian/control gtk-engines-0.12/debian/control
--- gtk-engines-0.12/debian/control
+++ gtk-engines-0.12/debian/control
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Ed Boraas <[EMAIL PROTECTED]> 
 Standards-Version: 3.5.2
-Build-Depends: debhelper (>> 2.0.0), gdk-imlib1-dev (>= 1.8.0), libgtk1.2-dev 
(>= 1.2.9)
+Build-Depends: debhelper (>> 2.0.0), gdk-imlib11-dev, libgtk1.2-dev (>= 
1.2.9), autotools-dev
 
 Package: gtk-engines-pixmap
 Architecture: any
diff -u gtk-engines-0.12/debian/changelog gtk-engines-0.12/debian/changelog
--- gtk-engines-0.12/debian/changelog
+++ gtk-engines-0.12/debian/changelog
@@ -1,3 +1,11 @@
+gtk-engines (0.12-8.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Update gdk-imlib build-dep (Closes: #333035).
+  * Update config.{guess,sub} in build process (Closes: #300277, #342420).
+
+ -- Luk Claes <[EMAIL PROTECTED]>  Thu, 29 Dec 2005 00:03:15 +0100
+
 gtk-engines (0.12-8) unstable; urgency=low
 
   * Rebuild against gdk-imlib1-dev (and, thus, libpng2)
diff -u gtk-engines-0.12/debian/rules gtk-engines-0.12/debian/rules
--- gtk-engines-0.12/debian/rules
+++ gtk-engines-0.12/debian/rules
@@ -8,6 +8,7 @@
 build: build-stamp
 build-stamp:
dh_testdir
+   cp /usr/share/misc/config.{guess,sub} .
./configure --prefix=/usr
$(MAKE)
touch build-stamp


Bug#339177: Intention to NMU

2005-12-28 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi

Attached the patch for the version I intend to upload. Please respond if
you don't want this NMU to happen, if you are working yourself on a
patch or 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
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDsxaG5UTeB5t8Mo0RAnAzAJ9NTUDwOf/8b7H5K1LcrGy/Pk5sWQCfUw7q
1UIPlgRvUTlJnJBLXAq2R6w=
=KiIg
-END PGP SIGNATURE-
reverted:
--- gnuift-0.1.14/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/removed-files-archive/debian/patches/06_gcc-3.4.diff
+++ gnuift-0.1.14.orig/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/removed-files-archive/debian/patches/06_gcc-3.4.diff
@@ -1,14 +0,0 @@
-diff -urN tmp/libGIFTAcDistanceMatrix/include/CPersistentVector.h 
gift-0.1.13/libGIFTAcDistanceMatrix/include/CPersistentVector.h
 tmp/libGIFTAcDistanceMatrix/include/CPersistentVector.h2004-08-05 
17:14:22.0 +0200
-+++ gift-0.1.13/libGIFTAcDistanceMatrix/include/CPersistentVector.h
2004-08-17 09:49:01.454234657 +0200
-@@ -116,8 +116,8 @@
- 
- template
- bool CPersistentVector::write(ostream& outStream)const{
--  for(typename CPersistentVector::const_iterator i=begin();
--  i!=end();
-+  for(typename CPersistentVector::const_iterator i=this->begin();
-+  i!=this->end();
-   i++){
- binary_writer(outStream,
- *i);
reverted:
--- gnuift-0.1.14/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/orig-files-index
+++ gnuift-0.1.14.orig/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/orig-files-index
@@ -1,4 +0,0 @@
-./debian/patches/.arch-ids/06_gcc-3.4.diff.id E_Robert_Jordens_<[EMAIL 
PROTECTED]>_Tue_Aug_17_13:25:46_2004_13352.0
-./debian/changelog x_Robert_Jordens_<[EMAIL 
PROTECTED]>_Fri_Apr_30_01:49:44_2004_2492.0
-./debian/patches/07_gcc-4.0.diff x_Robert_Jordens_<[EMAIL 
PROTECTED]>_Mon_Jan__3_20:18:41_2005_10524.0
-./debian/patches/06_gcc-3.4.diff x_Robert_Jordens_<[EMAIL 
PROTECTED]>_Tue_Aug_17_13:25:46_2004_13352.0
reverted:
--- gnuift-0.1.14/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/mod-files-index
+++ gnuift-0.1.14.orig/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/mod-files-index
@@ -1,3 +0,0 @@
-./{arch}/gnuift/gnuift--debian/gnuift--debian--1.0/[EMAIL 
PROTECTED]/patch-log/patch-18 
A_./{arch}/gnuift/gnuift--debian/gnuift--debian--1.0/[EMAIL 
PROTECTED]/patch-log/patch-18
-./debian/changelog x_Robert_Jordens_<[EMAIL 
PROTECTED]>_Fri_Apr_30_01:49:44_2004_2492.0
-./debian/patches/07_gcc-4.0.diff x_Robert_Jordens_<[EMAIL 
PROTECTED]>_Mon_Jan__3_20:18:41_2005_10524.0
reverted:
--- gnuift-0.1.14/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/patches/debian/changelog.patch
+++ gnuift-0.1.14.orig/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/patches/debian/changelog.patch
@@ -1,13 +0,0 @@
 orig/debian/changelog
-+++ mod/debian/changelog
-@@ -1,8 +1,9 @@
- gnuift (0.1.14-1) unstable; urgency=low
- 
-   * new upstream release
-+  * 06_gcc-3.4.diff: applied upstream; 06_gcc-4.0.diff: fixed
- 
-- -- Robert Jordens <[EMAIL PROTECTED]>  Sat,  7 May 2005 01:01:34 +0200
-+ -- Robert Jordens <[EMAIL PROTECTED]>  Sat,  7 May 2005 12:17:00 +0200
- 
- gnuift (0.1.13-2) unstable; urgency=low
- 
reverted:
--- gnuift-0.1.14/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/patches/debian/patches/07_gcc-4.0.diff.meta-mod
+++ gnuift-0.1.14.orig/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/patches/debian/patches/07_gcc-4.0.diff.meta-mod
@@ -1 +0,0 @@
---permissions 664
reverted:
--- gnuift-0.1.14/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/patches/debian/patches/07_gcc-4.0.diff.patch
+++ gnuift-0.1.14.orig/,,[EMAIL 
PROTECTED]/gnuift--debian--1.0--patch-18.patches/patches/debian/patches/07_gcc-4.0.diff.patch
@@ -1,72 +0,0 @@
 orig/debian/patches/07_gcc-4.0.diff
-+++ mod/debian/patches/07_gcc-4.0.diff
-@@ -1,57 +1,12 @@
--When building 'gnuift' on amd64 with gcc-4.0,
--I get the following error:
--
-- g++ -DHAVE_CONFIG_H -I. -I. -I../.. -DHAS_BOOL -DLINK_DYNAMICALLY -I../.. -g 
-Wall -O2 -DEF_PROTECT_BELOW=1 -DEF_PROTECT_FREE -DEF_PROTECT_ALIGNMENT=8 
-DEF_FILL=42 -I /usr/include/mysql -DHAVE_LIBPTHREAD -D__GIFT_NEW_IS_MALLOC 
-D__GIFT_USES_THREADS__ -pthread -MT CAttributeList.lo -MD -MP -MF 
.deps/CAttributeList.Tpo -c CAttributeList.cc  -fPIC -DPIC -o 
.libs/CAttributeList.o
--../../libMRML/include/CAttributeList.h:34: warning: 'class CAttributeList' 
has virtual functions but non-virtual destructor
--CAttributeList.cc: In constructor 'CAttributeList::CAttributeList(const char* 
const*)':
--CAttributeList.cc:67: warning: comparison between signed and unsigned integer 
expressions
--CAttributeList.cc:68: warning: comparison between signed and unsigned integer 
expressions
--CAttribut

Bug#344048: installation-guide: Please make &debian; , and some other entities translatable

2005-12-28 Thread Miroslav Kure
On Tue, Dec 20, 2005 at 02:05:56AM +0900, Changwoo Ryu wrote:
> 
> But manual/build/entities/common.ent file defines &debian; entity as
> "Debian GNU/Linux" language independently, which makes the Korean
> translated manual very inconsistent.  
> 
> We need a way to translate these entities.

One really simple solution would be:

(This is probably the same as
 http://lists.debian.org/debian-boot/2004/12/msg00973.html but with
 real code attached :-))

cd manual
mkdir build/entities/l10n
for lang in ?? ??_??; do touch build/entities/l10n/${lang}.ent; done
rm build/entities/l10n/po.ent #not a language :-)
cd po
for lang in ?? ??_??; do touch ../build/entities/l10n/${lang}.ent; done

Add the following line to the build/templates/install.xml.template:
  
%dynamicdata;
+ 
%langdata;
  %commondata;


Remarks:

 - each language would need its file in entities/l10n/
   (missing file will cause warning, but the build will go on)
   
 - when using different encoding from UTF-8, translators will need to
   specify it in their l10n/xx.ent file like they do in regular .xml
   files e.g. 
   
 - maybe we could prefill l10n/en.ent (or even all l10n/.ent files?)
   with some reasonable examples from common.ent

-- 
Miroslav Kure


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



Bug#331690: state of this bug -- cat: /var/lib/xfree86/xorg.conf.md5sum: No such file or directory

2005-12-28 Thread Justin Pryzby
Please can someone comment on the state of this bug?

-- 
Clear skies,
Justin


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



Bug#345094: uae: UAE should configure with --with-sdl-sound

2005-12-28 Thread erik_linux
Package: uae
Version: 0.8.22-1
Severity: normal

Using UAE with KDE/aRts failes, since UAE crashes using artsdsp and aRts blocks 
/dev/dsp. The solution would be to compile
UAE with sdl-sound-support as given by the --with-sdl-sound option, which 
includes support for several sound servers.

Regards
Erik

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

Versions of packages uae depends on:
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libglib1.2   1.2.10-10   The GLib library of C routines
ii  libgtk1.21.2.10-18   The GIMP Toolkit set of widgets fo
ii  xlibs6.8.2.dfsg.1-11 X Window System client libraries m

uae recommends no packages.

-- no debconf information



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



Bug#345093: Recommends on imagemagick no longer needed

2005-12-28 Thread EspeonEefi
Package: gnome-applets
Version: 2.12.2-3
Severity: normal

According to changelog.Debian.gz, the recommends imagemagick dependency
was added for package version 1.2.4-3 because back then the screenshot
applet needed /usr/bin/import from imagemagick. However, I believe the
screenshot applet no longer depends on imagemagick, so this dependency
may be out of date now.

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

Versions of packages gnome-applets depends on:
ii  debconf [debconf-2.0]1.4.66  Debian configuration management sy
ii  gnome-applets-data   2.12.2-3Various applets for GNOME 2 panel 
ii  gnome-icon-theme 2.12.1-1GNOME Desktop icon theme
ii  gnome-panel  2.12.2-1launcher and docking facility for 
ii  gstreamer0.8-alsa [gstre 0.8.11-3ALSA plugin for GStreamer
ii  libapm1  3.2.2-3 Library for interacting with APM d
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libbonobo2-0 2.10.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.10.1-1The Bonobo UI library
ii  libc62.3.5-9 GNU C Library: Shared libraries an
ii  libdbus-1-2  0.60-2  simple interprocess messaging syst
ii  libdbus-glib-1-2 0.60-2  simple interprocess messaging syst
ii  libgconf2-4  2.12.1-5GNOME configuration database syste
ii  libglade2-0  1:2.5.1-2   library to load .glade files at ru
ii  libglib2.0-0 2.8.4-2 The GLib library of C routines
ii  libgnome-desktop-2   2.12.1-1Utility library for loading .deskt
ii  libgnome2-0  2.12.0.1-2  The GNOME 2 library - runtime file
ii  libgnomeui-0 2.12.0-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.12.2-1The GNOME virtual file-system libr
ii  libgstreamer-plugins0.8- 0.8.11-3Various GStreamer libraries and li
ii  libgstreamer0.8-00.8.11-2Core GStreamer libraries, plugins,
ii  libgtk2.0-0  2.8.9-2 The GTK+ graphical user interface 
ii  libgtop2-5   2.12.0-2Libraries for gtop system monitori
ii  libgucharmap41:1.4.4-1   Unicode browser widget library (sh
ii  libhal1  0.5.5.1-3   Hardware Abstraction Layer - share
ii  libpanel-applet2-0   2.12.2-1library for GNOME 2 panel applets
ii  libpango1.0-01.10.1-2Layout and rendering of internatio
ii  libwnck162.10.3-1Window Navigator Construction Kit 
ii  libx11-6 6.8.2.dfsg.1-11 X Window System protocol client li
ii  libxklavier102.0-0.2 X Keyboard Extension high-level AP
ii  libxml2  2.6.22-2GNOME XML library

Versions of packages gnome-applets recommends:
ii  gnome-media   2.12.0-2   The GNOME Media Utilities
ii  gnome-netstatus-applet2.12.0-3   Network status applet for GNOME 2
ii  gnome-system-monitor  2.12.1-2   Process viewer and system resource
pn  imagemagick(no description available)

-- debconf information:
  gnome-applets/cpufreq_SUID_bit: false


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



Bug#345060: aws(GNU/kFreeBSD): FTBFS: kfreebsd-i386 not in the architecture list

2005-12-28 Thread Martin Michlmayr
* Aurelien Jarno <[EMAIL PROTECTED]> [2005-12-28 19:36]:
> Package: aws

There's no such package.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#326453: 2.3 version ?

2005-12-28 Thread Jorgen Schaefer
Maximiliano Curia <[EMAIL PROTECTED]> writes:

> Hello,
>
> The 2.3 version is not in Debian, yet. 
> The problem with fish does show with the debian libtrash 2.0 ?

Yes, the problem exists with the following packages:

ii  fish 1.18.1-1 a friendly interactive shell
ii  libtrash 2.0-2A trash can library to use with 
LD_PRELOAD

Greetings,
-- Jorgen

-- 
Debian GNU/Linux Developer
[EMAIL PROTECTED]
http://www.forcix.cx/


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



Bug#345074: ITP: apt-indicator -- a KDE Icon that will indicate available updates.

2005-12-28 Thread Martin Michlmayr
reassign 345074 wnpp
severity 345074 wishlist
thanks

* Dave Seff <[EMAIL PROTECTED]> [2005-12-28 15:06]:
> Package: apt-indicator
> 
> This is my initial ITP mail for apt-indicator. Apt-indicator is a KDE
> taskbar icon that will indicate to the user if package updates are
> available.

ITPs are filed against the "wnpp" pseudo package and are of severity
"wishlist".  Please see http://www.debian.org/devel/wnpp/
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#345051: [Pkg-mailman-hackers] Bug#345051: Please have postfix-to-mailman.py handle virtual domains

2005-12-28 Thread Sjoerd Simons
On Wed, Dec 28, 2005 at 10:33:40PM +0100, Lionel Elie Mamane wrote:
> On Wed, Dec 28, 2005 at 07:13:02PM +0100, Sjoerd Simons wrote:
> 
> >   We're running one mailman installation for mailing lists of
> >   several different domains. And we don't want mail sent to
> >   @ to be accepted when  is set up for
> >   .
> 
> >   Attached patch makes it possible to configure postfix-to-mailman.py in a 
> > way
> >   that it only accepts mails when they are send to the right domain.
> 
> I run a similar setup in Exim. You have to take care of _one_ thing:
> The "mailman" list must be accepted on _all_ virtual domains that have
> lists. Mailman sends email out with sender set to
> [EMAIL PROTECTED] You probably want to modify your patch to
> do that.

Good point. I've adapted the patch to accept mails send to
mm_cfg.MAILMAN_SITE_LIST on all virtual domains. New patch attached.
  
> >   I've called the configure parameter DEB_PUREVIRTUAL, to reflect
> >   the fact that this results in a pure virtual domain setting. And
> >   it obviously defaults to off.
> 
> I see no reason for this not to be the only behaviour.

Well, it's a change in behaviour, so imho one should be very carefull when
introducing it in the mailman package. 

Apart from that it causes a small performance hit, for each mail the mailing
list configdb has to be parsed to check the domain. When one is not using
virtual domains, this is just wasted time. 

  Sjoerd
-- 
Quark!  Quark!  Beware the quantum duck!
--- ./debian/contrib/postfix-to-mailman.py  2005-12-28 18:52:28.0 
+0100
+++ /tmp/postfix-to-mailman.py  2005-12-28 23:27:18.0 +0100
@@ -85,6 +85,24 @@
 
 from Mailman import mm_cfg
 
+def check_virtual(mlist, domain):
+  try: 
+if not mm_cfg.DEB_PUREVIRTUAL:
+  return True
+  except AttributeError:
+return True
+  # Check if it's send to the mailman site lists, which should exist on on
+  # sites
+  try: 
+if mm_cfg.MAILMAN_SITE_LIST == mlist:
+  return True
+  except AttributeError:
+pass
+  # Check if the given list actually exists on this domain
+  from Mailman import MailList
+  m = MailList.MailList(mlist, lock=False)
+  return m.host_name == domain 
+
 def main():
 os.nice(5) # Handle mailing lists at non-interactive priority.
# delete this if you wish
@@ -134,7 +152,7 @@
 
 # Let Mailman decide if a list exists.
 from Mailman.Utils import list_exists
-if list_exists(mlist):
+if list_exists(mlist) and check_virtual(mlist, domain):
 mm_pgm = os.path.join(paths.prefix, 'mail', 'mailman')
 os.execv(mm_pgm, (mm_pgm, func, mlist))
 # NOT REACHED


Bug#343525: Technically not against policy, but a problem for security support in stable

2005-12-28 Thread Jorgen Schaefer
Don Armstrong <[EMAIL PROTECTED]> writes:

> While this is technically not against policy, native packages will
> cause more work for the security team if security fixes need to be
> released. Please repackage this as a non-native package.
>
>  04:02:30  I guess I'd file that under "package smells too
>  buggy to be releasable"; so while it's not normally an RC
>  offense, in the absence of a maintainer's opinion to the
>  contrary, we might well call it "in the opinion of the release
>  team, the package is not fit for release"

(I seem to have had email problems, at least I have been losing
mails for some time. The bug notification seems to have been among
them)

The maintainer's opinion: I'm both the Debian maintainer and
upstream for emms. The package includes the debian/ directory in
the official distribution. Hence, I didn't think it would be
necessary to give it a Debian-specific version number. If that
causes problems, I have no problem with appending -1 to the
version number for Debian :-)

I will change this in my next upload, but since emms 2 is about to
be released, I'm not sure that I want to upload a new version of
emms 1 just to attach that version information.

Greetings,
-- Jorgen

-- 
Debian GNU/Linux Developer
[EMAIL PROTECTED]
http://www.forcix.cx/


pgp7qhzUKI7uI.pgp
Description: PGP signature


  1   2   3   4   >