Bug#340443: x11-common: Error in /etc/X11/Xsession - ksh users can't log in from KDM

2005-11-23 Thread January Weiner
Package: x11-common
Version: 6.8.2.dfsg.1-7
Severity: grave
Tags: patch
Justification: renders package unusable


PROBLEM:
  random login problems without any error messages: some users can't log,
  whichever window manager is chosen.   The behaviour is essentially the
  same as in the case of bug #327191 (but for different reasons)

DIAGNOSIS:
  the problem was caused by the line
  alias ls=ls --color
  in the $HOME/.profile file of some of the users

DESCRIPTION:
The script /etc/X11/Xsession uses ls instead of /bin/ls in the
run_parts subroutine on the following line:

  for F in $(ls $1); do

KDM calls /etc/X11/Xsession _after_ reading /etc/profile, $HOME/.profile
or whatever other relevant login scripts are available.  

We found out that the following combination is lethal (i.e. you cannot
log in through the graphical manager):

1) ksh as the login shell (couple of thousands users in our environment)
2) .profile redefines ls using an alias:
alias ls=ls --color
(common for many users, after all this is what .profile is for!)

Presently, we do not know whether why this behaviour is seen only in ksh
and not in bash.  Note that, unlike the related bug #327191, this behaviour
is not due to an error in the users .profile file, as the line quoted above
is correct and works on other (non-Debian) systems.

SOLUTION:
substitute ls with /bin/ls in the aforementioned line 

FURTHER COMMENTS:
Although this is really a quickfix, because we do not fully understand what
happens here, we think that using ls without a path specification which
obviously may or not may be manipulated is a generally bad idea and should
not be used.

Tracking of this bug cost us a lot of time: we experienced random behaviour
(some users can log in, some can't, no traces of error in the log files,
everything seems to be OK except that the X session dies).  Its gravity was
serious in our environment, as all university users have ksh as the default
shell, and many users are used to the ls --color alias (which is default
e.g. in SuSE).  

Furthermore, using ls instead of /bin/ls is a potential security hole even
though Xsession runs as user.

We provide a fix. 

Please, do something about it.

January Weiner
David Vernazobres

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

Versions of packages x11-common depends on:
ii  debconf [debconf-2.0] 1.4.58 Debian configuration management sy
ii  debianutils   2.15   Miscellaneous utilities specific t
ii  lsb-base  3.0-9  Linux Standard Base 3.0 init scrip

x11-common recommends no packages.

-- debconf information excluded


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



Bug#340349: RFA: openldap2.2 -- OpenLDAP server (slapd)

2005-11-23 Thread Torsten Landschoff
On Wed, Nov 23, 2005 at 02:13:15PM +0100, Matthijs Mohlmann wrote:
 
 I'm willing to maintain this package, and sure this is a complex package
 and I really want to do that in team maintainence.
 
 Is there svn repository and or mailinglist for this package ?
 
Yes, see

  http://svn.debian.org/svn/pkg-openldap/

Greetings

Torsten


signature.asc
Description: Digital signature


Bug#340444: aptitude: midclean required -- somewhere between autoclean and clean

2005-11-23 Thread Matej Cepl
Package: aptitude
Version: 0.4.0-3
Severity: wishlist
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

For keeping /var/cache/apt/archives sweetly small, I would like
to have a command to keep all package files for packages which
are installed and remove everything else. autoclean does too
little for me (leaving package files which are not installed) and
obviously clean does too much (I am quite often on dial-up so
I would love to have my package files for additional security).
Just to explain better what I mean I hacked together simple (and
dirty) script in Python to illustrate it. See attached.

Thanks,

Matej

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3.1 0.6.42.3   Advanced front-end for dpkg
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-4  GCC support library
ii  libncursesw5  5.5-1  Shared libraries for terminal hand
ii  libsigc++-2.0-0c2 2.0.16-1   type-safe Signal Framework for C++
ii  libstdc++64.0.2-4The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
ii  aptitude-doc-cs [aptitude-doc 0.4.0-3Czech manual for aptitude, a termi

- -- no debconf information

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

iD8DBQFDhHor4J/vJdlkhKwRAp29AJ4/r/d6KWNOvRHjsbObRHvViPxi2QCfePFQ
lNAUpFAtiM4+osJkt8qYVkQ=
=ae8I
-END PGP SIGNATURE-
#!/usr/bin/python
Program to clean /var/cache/apt/archives folder from files for packages
which are not installed. It doesn't take any arguments.
USE AT YOUR OWN RISK, THIS MAY HURT YOU!!!
# $Id: midclean.py,v 1.2 2005-11-23 06:00:36 matej Exp $
import os,re,sys

currentlyInstalledRaw = os.popen(aptitude search -F '%p %V' '~i',
r).readlines()
currentlyInstalled = [line.split() for line in currentlyInstalledRaw]
# currentlyInstalled is list of lists looking like this:
# [...,['zoem', '05-154-1']]
currNames = tuple([x[0] for x in currentlyInstalled])
currVersions = tuple([x[1] for x in currentlyInstalled])
currDir = os.getcwd()
os.chdir(/var/cache/apt/archives/)
packagesStoredNamesRaw = os.popen(ls *.deb).readlines()
packagesStoredNames = [[line.strip().split(_,2)[:2],line.strip()] \
for line in packagesStoredNamesRaw]
# packagesStoredNames is again list of lists looking like this:
# [...,[['zoem', '05-154-1'], 'zoem_05-154-1_i386.deb']]
for item in packagesStoredNames:
if not(item[0][0] in currNames) and not(item[0][1] in currVersions):
print Removing %s. % item[1]
os.remove(item[1])

Bug#340447: moinmoin-common: should conflict with moin

2005-11-23 Thread Laurent Fousse
Package: moinmoin-common
Severity: important

While installing the moinmoin-common package, I got the following
conflict :

Unpacking moinmoin-common (from .../moinmoin-common_1.3.5-1_all.deb) ...
dpkg: error processing /var/cache/apt/archives/moinmoin-common_1.3.5-1_all.deb 
(--unpack):
 trying to overwrite `/usr/share/moin/config/farmconfig.py', which is also in 
package moin
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/moinmoin-common_1.3.5-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Cheers,

Laurent.

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

-- 
Quidquid latine dictum sit, altum sonatur. 


signature.asc
Description: Digital signature


Bug#340448: apt: Missing definition of uint32_t

2005-11-23 Thread Cedric Duval
Package: apt
Version: 0.6.42.3
Severity: serious
Justification: no longer builds from source


Backporting apt from a sarge system, the build fails with:

  Compiling contrib/md5.cc to ../build/obj/apt-pkg/md5.opic
  In file included from contrib/md5.cc:42:
  ../build/include/apt-pkg/md5.h:61: error: parse error before `[' token

because uint32_t is not defined.

#include'ing either stdint.h or inttypes.h fixes it.


-- System Information:
Debian Release: 3.1
Architecture: powerpc (ppc)
Kernel: Linux 2.6.13
Locale: LANG=fr_FR.utf-8, LC_CTYPE=fr_FR.utf-8 (charmap=UTF-8)

Versions of packages apt depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3

-- no debconf information


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



Bug#340446: moagg: Dependency problem - libsdl-gfx1.2 unavailable

2005-11-23 Thread Brian S Enyart
Package: moagg
Version: 0.18-3
Severity: important


moagg depends on libsdl-gfx1.2, which is no longer available in sid. 
It will work if I get the version from testing (2.0.9-6)

It appears that libsdl-gfx1.2-4 is intended to replace it.


-- 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-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages moagg depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.2-4  GCC support library
ii  libparagui1.0c2   1.0.4-10   a real crossplatform widget set ba
ii  libsdl-gfx1.2 2.0.9-6drawing and graphical effects exte
ii  libsdl-image1.2   1.2.4-1image loading library for Simple D
ii  libsdl-mixer1.2   1.2.6-1.1  mixer library for Simple DirectMed
ii  libsdl1.2debian   1.2.9-0.0  Simple DirectMedia Layer
ii  libstdc++64.0.2-4The GNU Standard C++ Library v3
ii  moagg-data0.18-1 data files for the moagg game
ii  zlib1g1:1.2.3-8  compression library - runtime

moagg recommends no packages.

-- no debconf information


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



Bug#340345: quodlibet: Importing a playlist blocks the user interface

2005-11-23 Thread Daniel Jacobowitz
On Wed, Nov 23, 2005 at 01:07:27AM -0600, Joe Wreschnig wrote:
 On Tue, 2005-11-22 at 15:56 -0500, Daniel Jacobowitz wrote:
  When I started quodlibet for the first time, the first thing I did was
  figure out how to import a .m3u file to load my prior xmms playlist.
  That has 20GB worth of music on it, over a LAN network filesystem.
  While quodlibet imports, the X display isn't redrawing.
  
  Fortunately it's not reading the whole files, but it is initially reading
  the ID3 tags for every file, so I expect this to take an hour or two.  A
  progress bar would be nice, but I'd settle for a status message.
 
 Oh man, sorry about that. I'll address this in the next version, after I
 refactor the throbber window. That will make playlist imports both
 stoppable and pausable, and give it a progress bar.

Sounds great, thanks!

-- 
Daniel Jacobowitz
CodeSourcery, LLC


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



Bug#340357: phpmyadmin: Debconf configuration request Ignored

2005-11-23 Thread Piotr Roszatycki
Dnia Wednesday 23 of November 2005 15:14, James Clendenan napisał:
 Is there any chance the changes will make it in on a refresh of sarge?

 It's a rather annoying bug when security updates get applied.

Ah, of course you can use dpkg-divert as a temporary workaround. I.e.:

# dpkg-divert --local --rename 
--divert /etc/phpmyadmin/apache.conf.d.phpmyadmin.diversion 
--add /etc/apache/conf.d/phpmyadmin

-- 
 .''`.Piotr Roszatycki, Netia SA
: :' :mailto:[EMAIL PROTECTED]
`. `' mailto:[EMAIL PROTECTED]
  `-



Bug#340449: scponlyc needs to be installed setuid root to work

2005-11-23 Thread john duda
Package: scponly
Version: 4.0-1

attempts to log in with scponlyc as the shell will fail with a
couldn't chroot to /home/user message logged in auth.log unless the
scponlyc binary is manually chmod'd to setuid root.

either the binary should be installed setuid root to begin with, or
the /usr/share/doc/scponly/setup_chroot/setup_chroot.sh script should
test for the setuid bit and print a warning if it is not correct.

I'm using:
Linux karl 2.6.8-2-686 #1 Thu May 19 17:53:30 JST 2005 i686 GNU/Linux
and libc6 2.3.2.ds1-22  

thanks,
john



-- 

this is where my public key can be found:
gpg --keyserver pgp.mit.edu --recv-keys 03817826
Key fingerprint = 6C11 8D70 2ADE EFA9 498D  72CB 77EA 391A 0381 7826




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



Bug#340451: eclipse-sdk: eclipse can't find EclipseStarter on startup, terminates

2005-11-23 Thread Benjamin Carlyle
Package: eclipse-sdk
Version: 3.1.1-5
Severity: grave
Justification: renders package unusable

I've tried installing eclipse from unstable using gcj, kaffe, and
sablevm. gcj and kaffe seem to give me the same results. sablevm did not
appear to be found. Eclipse very quickly terminates after starting up
the jvm, and points me to a log file containing:

!SESSION Thu Nov 24 00:32:06 GMT+10:00 2005
!ENTRY org.eclipse.core.launcher 4 0
2005-11-24 00:32:08.48
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.ClassNotFoundException:
org.eclipse.core.runtime.adaptor.EclipseStarter not found in
org.eclipse.core.launcher.Main$StartupClassLoader{urls=[], parent=null}
   at java.net.URLClassLoader.findClass (URLClassLoader.java:856)
   at java.lang.ClassLoader.loadClass (ClassLoader.java:349)
   at java.lang.ClassLoader.loadClass (ClassLoader.java:301)
   at org.eclipse.core.launcher.Main.invokeFramework (Main.java:331)
   at org.eclipse.core.launcher.Main.basicRun (Main.java:278)
   at org.eclipse.core.launcher.Main.run (Main.java:973)
   at org.eclipse.core.launcher.Main.main (Main.java:948)
   at java.lang.reflect.Method.invoke0 (Method.java)
   at java.lang.reflect.Method.invoke (Method.java:255)
   at kaffe.jar.ExecJarName.main (ExecJarName.java:64)
   at kaffe.jar.ExecJar.main (ExecJar.java:57)

This is presumably something that is specific to my system, or has been
introduced fairly recently. This is a new install of eclipse on my
system, done just after a dist-upgrade today.

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

Versions of packages eclipse-sdk depends on:
ii  eclipse-jdt   3.1.1-5Java Development Tools plug-ins fo
ii  eclipse-pde   3.1.1-5Plug-in Development Environment to

eclipse-sdk recommends no packages.

-- no debconf information


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



Bug#340450: needs update for Ooo2

2005-11-23 Thread Rene Engelhard
Package: ooqstart-gnome
Severity: grave

The openoffice.org packages in sid conflict against the current
oooqstart-gnome in sid because it needs to be updated because OOo2 does
not accept the arguments used by oooqstart-gnome anymore.

Please update; suitable patches can for example be found in the SuSE
source package; they ship OOo2 with oooqstart-gnome, so... I did not
extract them because I want let you judge which ones to apply.

If you don't react in let's say a week I'll consider doing a NMU.

Regards,

Rene

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


signature.asc
Description: Digital signature


Bug#340452: completion support for mplayer *.mka and *.flac|*.mka for -audiofile

2005-11-23 Thread Robert Millan
Package: bash
Severity: wishlist
Tags: patch

Completion support for mplayer *.mka and *.flac|*.mka for -audiofile.

(*.mka is matroska audio file)

Patch attached.

-- 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-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ANSI_X3.4-1968) (ignored: LC_ALL 
set to C)
--- /etc/bash_completion~   2005-10-13 19:58:53.0 +0200
+++ /etc/bash_completion2005-11-23 15:53:03.0 +0100
@@ -5422,7 +5422,7 @@
return 0
;;
-audiofile)
-   _filedir '@(mp3|MP3|mpg|MPG|ogg|OGG|wav|WAV|mid|MID)'
+   _filedir 
'@(mp3|MP3|mpg|MPG|ogg|OGG|wav|WAV|mid|MID|fla?(c)|FLA?(C)|mka|MKA)'
return 0
;;
-font)
@@ -5714,7 +5714,7 @@
-xvidencopts -of --verbose' -- $cur) )
;;
*)
-   _filedir 
'@(mp?(e)g|MP?(E)G|wm[av]|WM[AV]|avi|AVI|asf|ASF|vob|VOB|bin|BIN|dat|DAT|vcd|VCD|ps|PS|pes|PES|fli|FLI|viv|VIV|rm?(j)|RM?(J)|ra?(m)|RA?(M)|yuv|YUV|mov|MOV|qt|QT|mp[34]|MP[34]|og[gm]|OG[GM]|wav|WAV|dump|DUMP|mkv|MKV|m4a|M4A|aac|AAC|m2v|M2V|dv|DV|rmvb|RMVB|mid|MID|ts|TS|fla?(c)|FLA?(C))'
+   _filedir 
'@(mp?(e)g|MP?(E)G|wm[av]|WM[AV]|avi|AVI|asf|ASF|vob|VOB|bin|BIN|dat|DAT|vcd|VCD|ps|PS|pes|PES|fli|FLI|viv|VIV|rm?(j)|RM?(J)|ra?(m)|RA?(M)|yuv|YUV|mov|MOV|qt|QT|mp[34]|MP[34]|og[gm]|OG[GM]|wav|WAV|dump|DUMP|mk[va]|MK[VA]|m4a|M4A|aac|AAC|m2v|M2V|dv|DV|rmvb|RMVB|mid|MID|ts|TS|fla?(c)|FLA?(C))'
;;
esac
 


Bug#339933: signing-party: [caff] problem with a mailserver (but Gnus and Mozilla work)

2005-11-23 Thread Peter Palfrader
On Wed, 23 Nov 2005, Luca Capello wrote:

 Discard my previous questions, I found what you were referring to:

Hmm.  Didn't see the previous mail, maybe it was lost in the migration
you mention below?

 =
 --- /usr/bin/caff.ORG   2005-11-20 18:37:06.0 +0100
 +++ /usr/bin/caff   2005-11-23 15:35:07.0 +0100
 @@ -727,7 +727,8 @@
 $message = $stdout;
  
 $message_entity = MIME::Entity-build(
 -   Type= [...] );
 +   Type= [...] ).
 +   Encoding= 7bit);
  
 $message_entity-attach(
 Type= application/pgp-encrypted,
 $message_entity = MIME::Entity-build(
 = 
 
 And I'm sorry for the delay, yesterday there was a mail server
 migration, so I waited for the new results: both the mail servers (the
 old and the new) are broken, because defining the encoding solves the
 problem (in both cases).
 
 So, as you guessed in your first reply, caff has nothing to do here.

So, since this fixes it and I can't think of a reason not to always
explicitly set it to 7bit I'll add it to caff as well.

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


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



Bug#285143: libvte4: PageUp behaviour within less broken (Part 3)

2005-11-23 Thread Loic Minier
tags 285143 - patch
thanks

Hi,

On ven, déc 10, 2004, Tim Dijkstra (tdykstra) wrote:
 This problem has been fixed twice allready (see #218399, #190651 and
 #203049.)
 It appears that the one-line patch was dropped in 1:0.11.11-1. Could
 you please put it back in?

 This stuff was rewritten in recent vte upstream versions.

 Do you confirm the bug is gone?

   Bye,

-- 
Loïc Minier [EMAIL PROTECTED]
What do we want? BRAINS!When do we want it? BRAINS!



Bug#340209: btdownloadgui: Should get default font from system instead of setting its own

2005-11-23 Thread Alexander Toresson
On 11/22/05, Micah Anderson [EMAIL PROTECTED] wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1



 Alexander Toresson wrote:
  Package: bittornado
  Version: 0.3.13-1
  Severity: minor
 
  IMHO the bittornado gtk2 gui should use the default gtk2 font instead of
  making the user select the font size manually. The current way also
  has the problem that it's impossible to make bittornado use a custom
  font. This can very easily create inconsistency in the appearance of
  applications.

 I'd be happy to make it use the default gtk2 font, but I have no idea
 how. I have never been forced to select the font size manually, it just
 seemed to have the right font size when I used it.

 Any ideas?


Sorry, but I have absolutely no experience programming in python or
with wxwidgets (whose python binding I see that you use). This may
very likely be a bug in wxwidgets or wxgtk, or even maybe in wxpython.

Btw, I've noticed a small graphics glitch when running bittornado with
bigger fonts:
http://eulex.0nyx.com/bittornado-jumbled.png



Bug#340209: btdownloadgui: Should get default font from system instead of setting its own

2005-11-23 Thread Alexander Toresson
On 11/23/05, Alexander Toresson [EMAIL PROTECTED] wrote:
 On 11/22/05, Micah Anderson [EMAIL PROTECTED] wrote:
  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1
 
 
 
  Alexander Toresson wrote:
   Package: bittornado
   Version: 0.3.13-1
   Severity: minor
  
   IMHO the bittornado gtk2 gui should use the default gtk2 font instead of
   making the user select the font size manually. The current way also
   has the problem that it's impossible to make bittornado use a custom
   font. This can very easily create inconsistency in the appearance of
   applications.
 
  I'd be happy to make it use the default gtk2 font, but I have no idea
  how. I have never been forced to select the font size manually, it just
  seemed to have the right font size when I used it.
 
  Any ideas?
 

 Sorry, but I have absolutely no experience programming in python or
 with wxwidgets (whose python binding I see that you use). This may
 very likely be a bug in wxwidgets or wxgtk, or even maybe in wxpython.


I just tested a few applications written with wxpython and a few
others written with wxgtk directly. All of the programs I tested
(wxvlc, xchm, drpython, kiki) used the odd/special font I had selected
(to easily see if a program used that font). The problem seems for
some reason to be specific to bittornado.
Although I noticed a strange thing with drpython: The font in the left
pane of the preferences dialog always seemed to use the standard gtk2
font that was selected when it was started. This suggests that it
querys and sets the font itself, because it's for some reason not
correctly set when the program is started.



Bug#339955: not really serious

2005-11-23 Thread Thomas Hood
severity 339955 normal
stop

This bug is ranked serious because sysvinit is supposedly violating policy.
I think that §9.3.1 should be seen as a description of how the system works,
not as a prescription.  The quoted paragraph can be interpreted as a warning
to initscript authors that if they assign to their scripts names with '.sh'
suffixes then these scripts may be sourced instead of executed; so they
should code accordingly.

Certainly initscript authors should not _assume_ that their .sh scripts
are sourced (and then, e.g., try to alter the behavior of scripts sourced
later by playing with the environment).
-- 
Thomas Hood



Bug#340376: libcommandline-ruby1.8: incomplete doc-base files break installation

2005-11-23 Thread Aaron M. Ucko
Esteban Manchado Velázquez [EMAIL PROTECTED] writes:

 Oops, sorry, I shouldn't have uploaded the package in its current state.

It's all right, everyone makes their share of broken uploads.

 Fixed in SVN. I will upload soon.

Thanks!

 Incidentally, it would probably also be wise to give the doc-base files
 versioned names (say, by appending -1.8) so that you won't run into
 trouble if you add support for other Ruby versions down the road.

 OK. In fact, I'm not sure what's the best place to put the documentation.
 I think I'm going to move the documentation to the dummy package and perhaps
 create symbolic links in the rest. Anything against that?

The problem with that is that the dummy package won't necessarily be
installed -- unless you set up circular dependencies, but we're trying
to cut down on those.  Given that the documentation is still pretty
small in an absolute sense, it should be okay to leave it as it is and
just rename the doc-base files as I suggested.  Alternatively, you
could split it out into a new -common or -doc package, but the
ftpmasters might consider that to be overkill.

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
Finger [EMAIL PROTECTED] (NOT a valid e-mail address) for more info.



Bug#340315: llgal: command line parsing happens too early so config file can't be overridden

2005-11-23 Thread Dave Holland
On Tue, Nov 22, 2005 at 01:09:27PM -0500, Brice Goglin wrote:
 Thank you. I've applied it to my tree and release 0.11.4 as soon as
 possible.

That's fast! Thanks very much.

Cheers,
Dave


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



Bug#340404: ITP: libemail-valid-loose-perl -- Email::Valid which allows dot before at mark

2005-11-23 Thread Krzysztof Krzyżaniak

Colin Watson wrote:

On Wed, Nov 23, 2005 at 11:06:32AM +0100, Krzysztof Krzyzaniak (eloy) wrote:


* Package name: libemail-valid-loose-perl
 Version : 0.04
 Upstream Author : Tatsuhiko Miyagawa [EMAIL PROTECTED]
* URL : http://search.cpan.org/~miyagawa/Email-Valid-Loose-0.04/
* License : Perl: Artistic/GPL
 Description : Email::Valid which allows dot before at mark

Email::Valid::Loose is a subclass of Email::Valid, which allows dot (.)
before at-mark (@). It is invalid in RFC822,



  $ perl -MEmail::Valid -le 'print Email::Valid-rfc822(q([EMAIL PROTECTED]))'
  1

I think the description needs to be improved; perhaps it means dot (.)
immediately before at-mark (@), which *is* invalid in RFC822.


You're right.

[EMAIL PROTECTED]:~$ perl -MEmail::Valid::Loose -le 'print 
Email::Valid::Loose-rfc822(q([EMAIL PROTECTED]))'

1
[EMAIL PROTECTED]:~$ perl -MEmail::Valid -le 'print 
Email::Valid-rfc822(q([EMAIL PROTECTED]))'



I've changed description.

  eloy
--
+ Allegro.pl / Aukro.cz / Au-Au.ru / Teszvesz.hu
+ Krzysztof 'eloy' Krzyżaniak
+ [EMAIL PROTECTED]



Bug#340406: libvte-dev: please do not export unnecessary libraries in vte.pc

2005-11-23 Thread Loic Minier
forwarded 340406 http://bugzilla.gnome.org/show_bug.cgi?id=322240
thanks

On Wed, Nov 23, 2005, Steve Langasek wrote:
 Please consider (and forward upstream) the attached patch

 Thanks, I did so.

 Also, please note that since September 2003, FreeType has supported
 pkg-config.  It might be worthwhile to clean up the configure script to use
 pkg-config for handling freetype, unless upstream thinks it's important to
 continue supporting FreeType2  2.1.5.

 Sure, I've told them in the next one:
 http://bugzilla.gnome.org/show_bug.cgi?id=322241.

   Thanks,
-- 
Loïc Minier [EMAIL PROTECTED]
What do we want? BRAINS!When do we want it? BRAINS!



Bug#340447: moinmoin-common: should conflict with moin

2005-11-23 Thread Laurent Fousse
* Jonas Smedegaard [Wed, Nov 23, 2005 at 03:52:23PM +0100]:
 The package moin was never part of an official release of the Debian
 distribution.
 
 I do not want to clutter the packaging hints to deal with packages that
 has only ever existed in unstable or testing - or in non-Debian
 distributions like Ubuntu.
 
 Thanks for the suggestion, but I consider this as a non-bug.

I see. An upgrade path is always appreciated even between
testing/unstable updates, but since it's easily fixed with the minimum
technical knowledge expected of users running unstable I guess it's
fine as that.

Laurent.


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



Bug#340453: crack-md5: Crack wrapper script breaks on almost all common usage.

2005-11-23 Thread Conrad Hughes
Package: crack-md5
Version: 5.0a-8
Severity: important

/usr/sbin/Crack is broken in several ways:

  - It does the right thing with shadow passwords *only* if you run
*exactly* Crack /etc/passwd, so for example the command line
recommended on Crack's manpage, Crack -nice 10 /etc/passwd does
nothing.

  - It cds into /usr/share/Crack before running the real Crack, so if
you've generated your own merged passwd/shadow file fixedpasswd
(say) because Crack -nice 10 /etc/passwd doesn't work, then Crack
fixedpasswd won't work because Crack will cd away from the
directory in which fixedpasswd exists and then (I think) load
/etc/passwd as some kind of default so Crack-Reporter comments
(disorientingly, since you've fixed them in fixedpasswd) that it's
ignoring all your shadowed passwords.

At least a big note to the effect that ful pathnames are required for
the password files would be useful - in the SYNOPSIS of the manpage for
example.  Better would be to extend /usr/sbin/Crack so that it does the
right thing under more circumstances, including the cases documented in
the manpage, and so that it notices when it's been given a relative
pathname to the password file and either complains or fixes it up (for
example by temporarily copying it to /var/run/Crack)...

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

Versions of packages crack-md5 depends on:
ii  crack-common  5.0a-8 Password guessing program
ii  libc6 2.3.5-8GNU C Library: Shared libraries an

crack-md5 recommends no packages.

-- no debconf information


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



Bug#340454: hexcurse: should handle big files (2GB)

2005-11-23 Thread Samuel Thibault
Package: hexcurse
Version: 1.55-2
Severity: wishlist

Hi,

Currently, hexcurses can't open files bigger than 2GB:
Could not open file: File too large

It should get compiled with large file support and being able to address
more than 2GB.

Regards,
Samuel

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

Versions of packages hexcurse depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libncurses5   5.4-9  Shared libraries for terminal hand

hexcurse recommends no packages.

-- no debconf information

-- 
Samuel Thibault [EMAIL PROTECTED]
 Je suis maintenant possesseur d'un ordinateur portable Compaq Armada
 1592DT avec port infra-rouge. Auriez-vous connaissance de programmes
 suceptibles d'utiliser ce port afin de servir de télécommande ?
 -+- JN in NPC : ben quoi, c'est pas à ça que ça sert ?



Bug#340455: hexcurse: Should get block device size

2005-11-23 Thread Samuel Thibault
Package: hexcurse
Version: 1.55-2
Severity: wishlist

Hi,

When running hexcurse on a block device (/dev/hda1 for instance), it
only brings the first 16 bytes, while it might get the block device size
with ioctl(fd, BLKGETSIZE, sectors)

Regards,
Samuel

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

Versions of packages hexcurse depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libncurses5   5.4-9  Shared libraries for terminal hand

hexcurse recommends no packages.

-- no debconf information

-- 
Samuel Thibault [EMAIL PROTECTED]
Be warned that typing \fBkillall \fIname\fP may not have the desired
effect on non-Linux systems, especially when done by a privileged user.
(From the killall manual page)


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



Bug#340456: mozilla-psm: Please package certutil and other nss/cmd utils

2005-11-23 Thread Niklas Jakobsson
Package: mozilla-psm
Version: 2:1.7.12-1
Severity: wishlist

Please package the utilities in security/nss/cmd . For example the
certutil is needed to change the password for the certificate store used
in evolution.

 /Nico

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

Versions of packages mozilla-psm depends on:
ii  libnss3   2:1.7.12-1 Network Security Service Libraries
ii  mozilla-browser   2:1.7.12-1 The Mozilla Internet application s

mozilla-psm recommends no packages.

-- no debconf information


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



Bug#340457: slgtk - FTBFS: fails to pass any test

2005-11-23 Thread Bastian Blank
Package: slgtk
Version: 0.5.15.r4-3
Severity: important

There was an error while trying to autobuild your package:

 Automatic build of slgtk_0.5.15.r4-3 on debian01 by sbuild/s390 79
[...]
 make[1]: Entering directory `/build/buildd/slgtk-0.5.15.r4/tests'
 tessruntest.out 21
 diff test.ref test.out 
 2d1
  
 6c5
  Number of Passes  : 14
 ---
  Number of Passes  : 0
 9c8
  === imdisplay.sl Test Summary ===
 ---
  === imdisplay Test Summary ===
 12,13c11
  Number of Passes  : 8
  
 ---
  Number of Passes  : 0
 16c14
  === gtkplot.sl Test Summary ===
 ---
  === plot Test Summary ===
 19c17
  Number of Passes  : 3
 ---
  Number of Passes  : 0
 22,23c20
  
  === rgbselect.sl Test Summary ===
 ---
  === rgb Test Summary ===
 26c23
  Number of Passes  : 8
 ---
  Number of Passes  : 0
 32,33c29
  Number of Passes  : 4
  
 ---
  Number of Passes  : 0
 35d30
  Ignored Field: array2, mismatched length
 37c32
  === vwhere.sl Test Summary ===
 ---
  === vw Test Summary ===
 40c35
  Number of Passes  : 4
 ---
  Number of Passes  : 0
 make[1]: *** [test] Error 1
 make[1]: Leaving directory `/build/buildd/slgtk-0.5.15.r4/tests'
 /usr/bin/xvfb-run: line 158: kill: (12356) - No such process
 make: *** [build/slang-gtk] Error 1
 **
 Build finished at 20051123-1021
 FAILED [dpkg-buildpackage died]

Bastian


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



Bug#340459: postgresql-7.4: unable to install

2005-11-23 Thread Jonathan Ballet
Package: postgresql-7.4
Version: 1:7.4.9-2
Severity: grave
Justification: renders package unusable

I could not install postgresql-7.4 :

===
jon-debian:/home/jon# LANGUAGE=en aptitude install postgresql-7.4
Reading package lists... Done
Building dependency tree... Done
Reading extended state information
Initializing package states... Done
Building tag database... Done
The following NEW packages will be installed:
  postgresql-7.4
0 packages upgraded, 1 newly installed, 0 to remove and 1 not upgraded.
Need to get 3193kB of archives. After unpacking 8049kB will be used.
Writing extended state information... Done
Get:1 http://ftp.fr.debian.org unstable/main postgresql-7.4 1:7.4.9-2
[3193kB]
Fetched 3193kB in 4s (699kB/s)
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Selecting previously deselected package postgresql-7.4.
(Reading database ... 189203 files and directories currently installed.)
Unpacking postgresql-7.4 (from .../postgresql-7.4_1%3a7.4.9-2_i386.deb)
...
Setting up postgresql-7.4 (7.4.9-2) ...
Error: clusters must not be owned by root
dpkg: error processing postgresql-7.4 (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 postgresql-7.4
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up postgresql-7.4 (7.4.9-2) ...
Error: clusters must not be owned by root
dpkg: error processing postgresql-7.4 (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 postgresql-7.4
jon-debian:/home/jon#
===

Others postgresql packages are ok to install (-common and -client-7.4)


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

Versions of packages postgresql-7.4 depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libcomerr21.38-2 common error description library
ii  libkrb53  1.3.6-5MIT Kerberos runtime libraries
ii  libpam0g  0.79-3 Pluggable Authentication Modules l
ii  libpq31:7.4.9-2  PostgreSQL C client library
ii  libreadline5  5.0-11 GNU readline and history libraries
ii  libssl0.9.8   0.9.8a-4   SSL shared libraries
ii  postgresql-client-7.4 1:7.4.9-2  front-end programs for PostgreSQL
ii  postgresql-common 34 manager for PostgreSQL database cl
ii  zlib1g1:1.2.3-8  compression library - runtime

postgresql-7.4 recommends no packages.

-- no debconf information


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



Bug#340458: lablgtkmathview - FTBFS: ocamlfind: Package `gdome2' not found

2005-11-23 Thread Bastian Blank
Package: lablgtkmathview
Version: 0.7.2-3
Severity: serious

There was an error while trying to autobuild your package:

 Automatic build of lablgtkmathview_0.7.2-3 on debian01 by sbuild/s390 79
[...]
 ** Using build dependencies supplied by package:
 Build-Depends: debhelper ( 4.0.0), ocaml-nox (= 3.09.0), ocaml-findlib (= 
 1.1), liblablgtk2-ocaml-dev (= 2.6.0), libgdome2-ocaml-dev (= 0.2.3-3), 
 libgtkmathview-dev (= 0.7.5), pkg-config
[...]
 checking for ocamlc... yes
 checking for ocamlfind... yes
 checking for gdome2... ocamlfind: Package `gdome2' not found
 configure: error: gdome2 not installed (according to findlib)
 make: *** [configure-stamp] Error 1
 **
 Build finished at 20051123-1126
 FAILED [dpkg-buildpackage died]

Bastian


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



Bug#340390: Installation report: no disks detected

2005-11-23 Thread Lennart Sorensen
On Tue, Nov 22, 2005 at 10:59:52PM -0800, Ross Boylan wrote:
 Package: installation-reports
 
 Boot method: CD
 Image version: etch beta1 
 http://cdimage.debian.org/pub/cdimage-testing/etch_d-i/i386/beta1/debian-testing-i386-netinst.iso
 Date: 2005-11-22 22:00 Pacific
 
 Machine: OmniPro Intel System
 Processor: P4 630 3GHz
 Memory: 2G
 Partitions: one DOS parition from Win98 installer Fdisk
 
 Output of lspci and lspci -n: ? sorry
 
 Base System Installation Checklist:
 [O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it
 
 Initial boot worked:[O]
 Configure network HW:   [O?]
 Config network: [ ] cable not connected; skipped
 Detect CD:  [O]
 Load installer modules: [?]
 Detect hard drives: [E]
 Partition hard drives:  [ ]
 Create file systems:[ ]
 Mount partitions:   [ ]
 Install base system:[ ]
 Install boot loader:[ ]
 Reboot: [ ]
 
 Comments/Problems:
 The installer did not detect any hard drives.  I suspect this has
 something to do with the motherboard, which I think is relatively new:
 Intel D945PSNLK.  One 250GB WD SATA hard drive.  The block diagram
 shows that the Intel  945P chipset controls the drive via the Intel
 82801G hub.
 
 Still, I thought this was pretty generic; I'm a bit surprised there
 was a problem.  The vendor did say the hardware should work with
 Linux.

What mode is the bios set to for sata?

In my experience the intels must be set to native/enhanced not
combined/emulated for them to work properly with linux.  They should
appear as /dev/sda not /dev/hda.  Might have to be in ahci mode to work
at its best if it supports that new standard.

 The system also has a floppy and and DVD/CD drive; I booted off the
 latter.
 
 fdisk /dev/hda when I shelled out reported it couldn't find the device.
 
 It's a new machine.
 
 I was a little surprised to see a reference to devfs in some of the
 material that flew by.  Other messages suggested a 2.6 kernel; I
 thought it used udev, not devfs.

devfs is gone as of 2.6.13, but the debian installer still used it with
2.6.12.  New installers will have 2.6.14 at some point with no devfs in
use.

 I gave this a shot because my initial Win98 installation got hung up.
 The Win98 installer did detect and partition the hard drive, though
 the reported size (40G) was much smaller than the actual size (250G).
 I manually create one 6G partition at the start.  The Win98 install
 hung up before I got to format the partition.

Not sure win98 supports drives that big.  Quite sure it doesn't
actually.

Len Sorensen


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



Bug#340460: request to build xmess-sdl [with patch]

2005-11-23 Thread Antony Lesuisse
Package: xmame
Version: 0.101-1
Severity: wishlist
Tags: patch

This patch adds the xmess-sdl binary package.

Bruno Barrera C. [EMAIL PROTECTED] [051113]:
 On Sun, 2005-11-13 at 19:59 +0100, Antony Lesuisse wrote:
  I'm wondering why only one xmess packages is built form the xmame
  source whereas differents binaries xmame-sdl -x -gl etc.. are beeing
  built.
 
  If it's possible to build those binaries i would open a wishlist bug
  asking for those.
 
  Thank you.

 Yes, it's possible. (I haven't made those packages because I have been
 busy working in to have the current one in a good shape first. I
 imagine you know about the bad state of Xmame before me as
 Maintainer).

 Feel free to open a wishlist bug.

-- 
Antony Lesuisse
diff -urN debian/control debian-patch/control
--- debian/control  2005-11-23 15:26:43.0 +0100
+++ debian-patch/control2005-11-23 15:10:41.0 +0100
@@ -150,3 +150,21 @@
  .
  This package provides binaries for the X version of xmess.
  It is compiled with XVideo, DGA and OpenGL support.
+
+Package: xmess-sdl
+Section: non-free/games
+Priority: optional
+Architecture: any
+Depends: xmess-common (= ${Source-Version}), ${misc:Depends}, ${shlibs:Depends}
+Provides: xmess
+Description: SDL binaries for the Multi Emulator Super System
+ XMESS is an emulator for various consoles and computing systems, sharing
+ a lot of codebase with the MAME project.
+ .
+ Some of the well known consoles and computers emulated are the Atari 2600,
+ Lynx, NES, SNES, GameBoy, Sega Master System, Sega Megadrive, Game Gear,
+ Colecovision, Vectrex, Apple II, Atari 400/800, Commodore 64/128, 
+ IBM PC XT and AT (MDA and CGA), ZX80, ZX Spectrum, TI99/4, TRS-80, 
+ and the MSX.
+ .
+ This package provides binaries for the SDL version of xmess.
diff -urN debian/rules debian-patch/rules
--- debian/rules2005-11-23 15:26:43.0 +0100
+++ debian-patch/rules  2005-11-20 20:15:25.0 +0100
@@ -22,7 +22,7 @@
 
 # Add xmess packages if mess is selected
 ifeq ($(DEB_BUILD_MESS),yes)
-DEB_BINARY_PACKAGES += -pxmess-x
+DEB_BINARY_PACKAGES += -pxmess-x -pxmess-sdl
 DEB_BINARY_INDEP_PACKAGES += -pxmess-common
 endif
 
@@ -87,6 +87,7 @@
 
 ifeq ($(DEB_BUILD_MESS),yes)
$(MAKE) $(DEB_XMESS_OPTS) $(DEB_COMMON_OPTS) $(DEB_X11_OPTS)
+   $(MAKE) $(DEB_XMESS_OPTS) $(DEB_COMMON_OPTS) $(DEB_SDL_OPTS)
 endif
 
touch build
diff -urN debian/xmess-sdl.dirs debian-patch/xmess-sdl.dirs
--- debian/xmess-sdl.dirs   1970-01-01 01:00:00.0 +0100
+++ debian-patch/xmess-sdl.dirs 2005-11-23 15:10:41.0 +0100
@@ -0,0 +1,3 @@
+usr/games
+usr/share/doc
+usr/share/man/man6
diff -urN debian/xmess-sdl.install debian-patch/xmess-sdl.install
--- debian/xmess-sdl.install1970-01-01 01:00:00.0 +0100
+++ debian-patch/xmess-sdl.install  2005-11-23 15:10:41.0 +0100
@@ -0,0 +1,2 @@
+xmess.SDL usr/games
+
diff -urN debian/xmess-sdl.links debian-patch/xmess-sdl.links
--- debian/xmess-sdl.links  1970-01-01 01:00:00.0 +0100
+++ debian-patch/xmess-sdl.links2005-11-23 15:10:41.0 +0100
@@ -0,0 +1,2 @@
+usr/share/man/man6/xmess.6.gz usr/share/man/man6/xmess.SDL.6.gz
+usr/share/doc/xmess-common usr/share/doc/xmess-sdl
diff -urN debian/xmess-sdl.postinst debian-patch/xmess-sdl.postinst
--- debian/xmess-sdl.postinst   1970-01-01 01:00:00.0 +0100
+++ debian-patch/xmess-sdl.postinst 2005-11-23 15:10:41.0 +0100
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -e
+
+update-alternatives --install /usr/games/xmess \
+   xmess /usr/games/xmess.SDL 8
+
+#DEBHELPER#
diff -urN debian/xmess-sdl.prerm debian-patch/xmess-sdl.prerm
--- debian/xmess-sdl.prerm  1970-01-01 01:00:00.0 +0100
+++ debian-patch/xmess-sdl.prerm2005-11-23 15:10:41.0 +0100
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+set -e
+
+update-alternatives --remove xmess /usr/games/xmess.SDL
+
+#DEBHELPER#


Bug#306095: me too

2005-11-23 Thread Toni Mueller

Hello,

I'd also like to see a bandwidth limit in apt-proxy, for very similar
reasons. Having an extra Squid with bandwidth limit isn't an option
right now, and also looks a bit oversized.


Best,
--Toni++



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



Bug#286563: makeing gnumeric upgrades sweeeter

2005-11-23 Thread Martin Samuelsson
tags 286563 - wontfix
thanks,

Ok, so the last attached file wasn't actually in patch format... Here
comes the same thing again, as a diff instead of a complete preinst
file if that format is prefered.

I'm also removing the wontfix tag, since the non activity to the report
suggests that my last post never gained maintainer attention.

Feel free to readd the tag if wanted, but please describe to this report
why Debian can't try to protect it's users against misfeatures in
upstream when it is as simple to do as a one line preinst script.

If you think that my solution is incomplete, please tell me why. Adding
the same script to all gnumeric binary packages would be a fairly easy
thing to do if needed.
--
/Martin
diff -Nur gnumeric-1.6.1/debian/gnumeric.preinst 
gnumeric-1.6.1-failifrunning/debian/gnumeric.preinst
--- gnumeric-1.6.1/debian/gnumeric.preinst  1970-01-01 01:00:00.0 
+0100
+++ gnumeric-1.6.1-failifrunning/debian/gnumeric.preinst2005-11-23 
16:34:35.301955422 +0100
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+set -e
+
+/bin/ps -C gnumeric  /dev/null  ( echo All instances of gnumeric should be 
stopped before upgrading it.; exit 1 )


Bug#337381: (forw) [EMAIL PROTECTED]: Re: Bug#337381: gabber2: Gabber won't start because of missing glade file.]

2005-11-23 Thread Goedson Teixeira Paixao
- Forwarded message from Bas Kloet [EMAIL PROTECTED] -

Date: Mon, 7 Nov 2005 14:56:31 +0100
To: Goedson Teixeira Paixao [EMAIL PROTECTED]
User-Agent: Mutt/1.5.11
From: Bas Kloet [EMAIL PROTECTED]
Subject: Re: Bug#337381: gabber2: Gabber won't start because of missing glade 
file.

On Sat, Nov 05, 2005 at 11:30:57AM -0200, Goedson Teixeira Paixao wrote:
 * Bas Kloet ([EMAIL PROTECTED]) wrote:
  Package: gabber2
  Version: 1.9.4+cvs20040709-16
  Severity: grave
  Justification: renders package unusable
  
  I just installed gabber2, but when i try to run it I get the following 
  error:
  
  (gabber2:10937): libglade-WARNING **: could not find glade file 
  'Login_dlg.glade'
  terminate called after throwing an instance of 'Gnome::Glade::XmlError'
  
  Because of this error, gabber won;t start and is therefor simply unusable.
 
 This problem has been reported before[1]. But when I asked the bug
 reporter to check if the file was not really present in the system, he
 was not able to reproduce it anymore.
 
 Could you please check that the package is correctly installed? I've
 just checked in my machine and this file is present:
 
 ,[ shell session ]
 | [11:06:[EMAIL PROTECTED]:~ dpkg -L gabber2|grep Login_dlg.glade
 | /usr/share/Gabber/Login_dlg.glade
 `
 
 Please do this check and tell me if the file is not present or, it
 being present, gabber still fails to start.
 
Ok, this is really strange.  I have the exact same result as the first
bugreporter.  I don't know _what_ has changed, but gabber works now and
the glade file is indeed present.

For now I think the best course of action would be to set this bug to
'minor - more info needed' and hope that the next person who encounters
this bug has the chance do do some checks before it magically disappears on
his system as well...

Greetings,
Bas Kloet



- End forwarded message -

-- 
 .''`. Goedson Teixeira Paixao [EMAIL PROTECTED]
: :' : Jabber ID: [EMAIL PROTECTED] - http://www.jabber.org/
`. `'  Key fingerprint: 20FC AD60 E8C8 D2EB 064A  8F5B EED8 D4CC 1DEB 8EAE
  `-   Signed/encypted mail preferred


signature.asc
Description: Digital signature


Bug#338674: acknowledged by developer (Re: slgsl - Qualifies mailing list as person)

2005-11-23 Thread Bastian Blank
reopen 338674
thanks

   Maintainer: s390 Build Daemon [EMAIL PROTECTED]
   Changed-By: Debian JED Group [EMAIL PROTECTED]
 My bad.  Thanks for the remainder.  I have forgot to add the -e option to
 debuild, but will be careful in doing it in the future.

No, the changelog entry, which is the source of this, needs to contain
the person.

Bastian

-- 
The face of war has never changed.  Surely it is more logical to heal
than to kill.
-- Surak of Vulcan, The Savage Curtain, stardate 5906.5


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



Bug#339979: Minor cosmetic problems with lastest initscripts

2005-11-23 Thread Thomas Hood
Domenico Pasella wrote:
 Scripts can be sourced with positional parameters, so I don't see what
 is wrong with the code at line 336 of checkroot.sh, which you quote.
 Can you explain?
 
 I was sleeping. :)


No you weren't.  I just discovered that providing positional parameters
to sourced scripts is not supported in dash.  Do you have /bin/sh linked
to dash?

=
$ cat /tmp/s
echo arg0 $0 arg1 $1

$ cat /tmp/t
#!/bin/bash
. /tmp/s foo

$ /tmp/t
arg0 /tmp/t arg1 foo

$ vi /tmp/t  # and s/bash/dash
$ cat /tmp/t
#!/bin/dash
. /tmp/s foo

$ /tmp/t
arg0 /tmp/t arg1
==


 Wed Nov 23 16:19:13 2005: Done checking root file system.
 Wed Nov 23 16:19:13 2005: Usage: /etc/rcS.d/S10checkroot.sh start|stop
 Wed Nov 23 16:19:13 2005: Cleaning up ifupdown...done.


Doh, I forgot to fix the Usage line in mountvirtfs.  Please apply
this patch to your mountvirtfs:

-   echo Usage: $0 start|stop 2
+   echo Usage: mountvirtfs start|stop 2

Assuming that you are using dash and that this is the reason you are
seeing the message, the next question is whether dash or checkroot.sh is
at fault.  That is, _should_ dash support sourcing with arguments?

Sourcing is performed using the dot command which, like the colon command,
is a Special Built-in Utility[0].  The Open Group Base Specification
Issue 6 does not say[1] that the dot can be given more than one argument.
Hence, I conclude that the bug is in checkroot.sh: a bashism.

[0]http://www.opengroup.org/onlinepubs/009695399/idx/sbi.html
[1]http://www.opengroup.org/onlinepubs/009695399/utilities/dot.html

I will fix this by removing the 'start' argument of the dot command you
quoted and I will make mountvirtfs default to start if $1 is empty.
Here is a diff for you to try.

$ svn diff
Index: checkroot.sh
===
--- checkroot.sh(revision 213)
+++ checkroot.sh(working copy)
@@ -335,7 +335,7 @@
[ $roottype != none ] 
mount -f -o $rootopts -t $roottype $fstabroot /
[ -n $devfs ]  mount -f $devfs
-   . /etc/init.d/mountvirtfs start
+   . /etc/init.d/mountvirtfs
fi

#
Index: mountvirtfs
===
--- mountvirtfs (revision 214)
+++ mountvirtfs (working copy)
@@ -237,7 +237,7 @@
 }

 case $1 in
-  start)
+  start|)
do_start
;;
   restart|reload|force-reload)
@@ -248,7 +248,7 @@
# No-op
;;
   *)
-   echo Usage: mountvirtfs start|stop 2
+   echo Usage: mountvirtfs [start|stop] 2
exit 3
;;
 esac

-- 
Thomas


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



Bug#340405: mutt: It does not seem at all easy to forward an email with all its attachments

2005-11-23 Thread Julian Gilbey
On Wed, Nov 23, 2005 at 12:43:26PM +0100, Adeodato Sim?? wrote:
 * Julian Gilbey [Wed, 23 Nov 2005 10:10:29 +]:
 
  Package: mutt
  Version: 1.5.9-2
  Severity: wishlist
 
  It would be really nice if there were an option/command
  forward-with-attachments to forward an email including all
  attachments.  I've tried playing with mime_forward et al, and had no
  success there.  The only way I've been able to do it is using ESC-e
  and then manually editing all of the headers.  What I'd like is this
  command to do the same as the normal forward command, except that all
  non-text attachments are included in the forwarded email.
 
  Maybe I've just missed something though that should be obvious.
 
   Well, $mime_forward is the way to accomplish this, yes. When setting
   it to ask-yes, when forwarding messages Mutt will ask:
 
 Forward as attachment? ([yes]/no):
 
   If the answer is yes, or mime_forward is yes, the forwarded
   message will be sent as an attachment, preserving all the structure
   (and of course existing attachments).
 
   Are you having some problem with this option?
 
   Cheers,

Thanks for your speedy reply!

I wanted the normal non-mime_forward handling for the main message,
where the text is included in the body of the message (so that I can
intersperse comments if I so wish), but also the received attachments
are attached to the forwarded message.

Is this not possible?

   Julian


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



Bug#340448: apt: Missing definition of uint32_t

2005-11-23 Thread Michael Vogt
On Wed, Nov 23, 2005 at 03:30:00PM +0100, Cedric Duval wrote:
 Package: apt
 Version: 0.6.42.3
 Severity: serious
 Justification: no longer builds from source
 
 
 Backporting apt from a sarge system, the build fails with:
 
   Compiling contrib/md5.cc to ../build/obj/apt-pkg/md5.opic
   In file included from contrib/md5.cc:42:
   ../build/include/apt-pkg/md5.h:61: error: parse error before `[' token
 
 because uint32_t is not defined.
 
 #include'ing either stdint.h or inttypes.h fixes it.

Thanks, fixed in my repository, will be part of the next upload.

Cheers,
 Michael
 
 
 -- System Information:
 Debian Release: 3.1
 Architecture: powerpc (ppc)
 Kernel: Linux 2.6.13
 Locale: LANG=fr_FR.utf-8, LC_CTYPE=fr_FR.utf-8 (charmap=UTF-8)
 
 Versions of packages apt depends on:
 ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries 
 an
 ii  libgcc1 1:3.4.3-13   GCC support library
 ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3
 
 -- no debconf information
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 

-- 
Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo


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



Bug#340449: scponlyc needs to be installed setuid root to work

2005-11-23 Thread Thomas Wana
scponly asks the user upon installation if he/she wants to set
the binary suid root (via debconf). You probably set debconf's
threshold too high or missed the question.

Tom

john duda wrote:
 Package: scponly
 Version: 4.0-1
 
 attempts to log in with scponlyc as the shell will fail with a
 couldn't chroot to /home/user message logged in auth.log unless the
 scponlyc binary is manually chmod'd to setuid root.
 
 either the binary should be installed setuid root to begin with, or
 the /usr/share/doc/scponly/setup_chroot/setup_chroot.sh script should
 test for the setuid bit and print a warning if it is not correct.
 
 I'm using:
 Linux karl 2.6.8-2-686 #1 Thu May 19 17:53:30 JST 2005 i686 GNU/Linux
 and libc6 2.3.2.ds1-22  
 
 thanks,
 john
 
 
 



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



Bug#338889: Overzealously prefers signed packages to identical unsigned ones

2005-11-23 Thread Michael Vogt
On Sun, Nov 13, 2005 at 04:37:15PM +0100, Andras Korn wrote:
 Package: apt
 Version: 0.6.42.3
 Severity: normal

Thanks for your bugreport.
 
 I have a local package repository that is pieced together from many
 different sources. I don't have a signed Release file (is there an easy way
 to generate one automatically?); I only generate my own Packages file.

It's a matter of runing apt-ftparchive and gpg, see apt-secure(8) for
a discussion.
 
 The patch to this local repository is listed first in my sources.list.
 
 Nevertheless, when apt-get needs to fetch packages, it ignores my local
 repository and downloads the exact same packages from the net instead,
 presumably because those repositories are signed. (But do correct me if I'm
 wrong.)
[..]

Yes, it's a feature of apt to prefer signed sources. But if you run it
with --allow-unauthenticated, it should behave exactly as the 0.5.x
versions. Can you please try/confirm this?
 
Cheers,
 Michael

-- 
Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo


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



Bug#340461: libcommandline-ruby1.8: Postinst fails when calling install-docs

2005-11-23 Thread Aaron Schrab
Package: libcommandline-ruby1.8
Version: 0.7.10-1
Severity: grave
Justification: renders package unusable

Attempting to install this package results in the following error:

Setting up libcommandline-ruby1.8 (0.7.10-1) ...
error in control file: `Files' value not specified at /usr/sbin/install-docs 
line 638, IN line 9.
dpkg: error processing libcommandline-ruby1.8 (--configure):
 subprocess post-installation script returned error exit status 255


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

Versions of packages libcommandline-ruby1.8 depends on:
ii  ruby1.8   1.8.3-3Interpreter of object-oriented scr

libcommandline-ruby1.8 recommends no packages.

-- no debconf information


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



Bug#340462: gtk-gnutella: version in stable is too old for the network - upload to volatile

2005-11-23 Thread Floris Bruynooghe
Package: gtk-gnutella
Version: 0.95-3
Severity: wishlist

Hi

gnutella does not allow versions older then a certain age (6 months?) to
be on the network so that they don't hurt the network too much.  This is
about to happen for the version in sarge.

Is it possible to upload a new version to the volatile archive so that
it can still be used on sarge?

Thanks
Floris

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

Versions of packages gtk-gnutella depends on:
ii  libatk1.0-01.8.0-4   The ATK accessibility toolkit
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libglib2.0-0   2.6.4-1   The GLib library of C routines
ii  libgtk2.0-02.6.4-3   The GTK+ graphical user interface 
ii  libpango1.0-0  1.8.1-1   Layout and rendering of internatio
ii  libxml22.6.16-7  GNOME XML library
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#321635: Reopening report

2005-11-23 Thread Enrico Zini
Hello,

I believe some substantial messages have been added after the report has
been closed.  After consulting with people on #debian-devel OFTC, I'm
reopening this bug.


Ciao,

Enrico

--
GPG key: 1024D/797EBFAB 2000-12-05 Enrico Zini [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#339533: pkgCache::VerIterator::end() crashes on a default VerIterator

2005-11-23 Thread Michael Vogt
On Wed, Nov 16, 2005 at 03:08:48PM -0800, Daniel Burrows wrote:
 Package: libapt-pkg-dev
 Version: 0.6.42.3exp1
 Severity: normal
 Tags: patch
 
   The following code should not crash, but it does:
 
   pkgCache::VerIterator ver;
 
   if(ver.end())
 ...;

Thanks for the bugreport and the patch. It's in my repository now and
it will be part of the next upload. 

Cheers,
 Michael

-- 
Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo


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



Bug#337381: Lowering severity due to unreproducibility

2005-11-23 Thread Goedson Teixeira Paixao
severity 337381 minor
tags 337381 moreinfo unreproducible
thanks bts

I'm lowering this bug's severity and letting it open so that if people
envetualy find it, they know it's been found before and try to provide
more detailed info.

-- 
 .''`. Goedson Teixeira Paixao [EMAIL PROTECTED]
: :' : Jabber ID: [EMAIL PROTECTED] - http://www.jabber.org/
`. `'  Key fingerprint: 20FC AD60 E8C8 D2EB 064A  8F5B EED8 D4CC 1DEB 8EAE
  `-   Signed/encypted mail preferred


signature.asc
Description: Digital signature


Bug#339933: signing-party: [caff] problem with a mailserver (but Gnus and Mozilla work)

2005-11-23 Thread Luca Capello
Hello Peter!

On Wed 23 Nov 2005 15:43 +0100, Peter Palfrader wrote:
 On Wed, 23 Nov 2005, Luca Capello wrote:

 Discard my previous questions, I found what you were referring to:

 Hmm.  Didn't see the previous mail, maybe it was lost in the
 migration you mention below?

No, actually my previous mail was never sent, because of an
authentication problem with the university mail server.  Usually I use
my own mail server when I'm outside the university, but for some
unknown reason (too much tests ;-) ) when I sent my previous mail
Postfix tried to send it via the university mail server, resulting in:

Nov 20 18:45:21 gismo postfix/smtp[10869]: EA66DC020:
to=[EMAIL PROTECTED], relay=mbx.unige.ch[129.194.9.229],
delay=1, status=bounced (host mbx.unige.ch[129.194.9.229] said:
530 5.7.0 No AUTH command has been given. (in reply to MAIL FROM
command))

Attached, just FYI.

 So, since this fixes it and I can't think of a reason not to always
 explicitly set it to 7bit I'll add it to caff as well.

Thank you, I'm waiting for the new signing-party version, so I will
keep the university address in my PGP key ;-)

 Thanks,

You're welcome :-D

Thx, bye,
Gismo / Luca



Luca-never-sent-mail.msg.gz
Description: Luca's never sent mail


pgpjSExxFeO9d.pgp
Description: PGP signature


Bug#340447: moinmoin-common: should conflict with moin

2005-11-23 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wed, 23 Nov 2005 16:01:29 +0100
Laurent Fousse [EMAIL PROTECTED] wrote:

 * Jonas Smedegaard [Wed, Nov 23, 2005 at 03:52:23PM +0100]:
  The package moin was never part of an official release of the
  Debian distribution.
  
  I do not want to clutter the packaging hints to deal with packages
  that has only ever existed in unstable or testing - or in non-Debian
  distributions like Ubuntu.
  
  Thanks for the suggestion, but I consider this as a non-bug.
 
 I see. An upgrade path is always appreciated even between
 testing/unstable updates, but since it's easily fixed with the minimum
 technical knowledge expected of users running unstable I guess it's
 fine as that.

I am not sure if I understand you correctly: Do you agree with me or no?

If you disagree then I will reopen this bug but tag it as wontfix, so
others know of our different views on this.


Kind regards,

 - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

 - Enden er nær: http://www.shibumi.org/eoti.htm
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDhJGFn7DbMsAkQLgRAlh7AJ4lxKNy8uJMz4eRR+M9u+YLwy6wqQCeL2Fd
NatycGYsbAxYyhcrn1eTyTE=
=PEyi
-END PGP SIGNATURE-



Bug#340447: moinmoin-common: should conflict with moin

2005-11-23 Thread Laurent Fousse
Hello,

* Jonas Smedegaard [Wed, Nov 23, 2005 at 04:57:57PM +0100]:
  I see. An upgrade path is always appreciated even between
  testing/unstable updates, but since it's easily fixed with the minimum
  technical knowledge expected of users running unstable I guess it's
  fine as that.
 
 I am not sure if I understand you correctly: Do you agree with me or no?
 
 If you disagree then I will reopen this bug but tag it as wontfix, so
 others know of our different views on this.

I agree with you, and if I'm the only one to report this problem then
it's probably useless to keep the bug around.

Laurent.


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



Bug#340458: lablgtkmathview - FTBFS: ocamlfind: Package `gdome2' not found

2005-11-23 Thread Stefano Zacchiroli
On Wed, Nov 23, 2005 at 04:16:58PM +0100, Bastian Blank wrote:
  Automatic build of lablgtkmathview_0.7.2-3 on debian01 by sbuild/s390 79
 [...]
  ** Using build dependencies supplied by package:
  Build-Depends: debhelper ( 4.0.0), ocaml-nox (= 3.09.0), ocaml-findlib 
  (= 1.1), liblablgtk2-ocaml-dev (= 2.6.0), libgdome2-ocaml-dev (= 
  0.2.3-3), libgtkmathview-dev (= 0.7.5), pkg-config
 [...]
  checking for ocamlc... yes
  checking for ocamlfind... yes
  checking for gdome2... ocamlfind: Package `gdome2' not found

The problem is in version 0.2.3-3 of libgdome2-ocaml-dev which ships a
fubar content in /usr/lib/ocaml/3.09.0/gdome2/ (almost nothing). Version
0.2.3-4 (already rebuilt for s390) is ok.

If it is ok for you I propose to just rebuild lablgtkmathview against
that version on s390 and avoid reuploading lablgtkmathview with a more
tight build depends on libgdome2-ocaml-dev.

After all 0.2.3-3 will disappear due to the c++ allocator change.

-- 
Stefano Zacchiroli -*- Computer Science PhD student @ Uny Bologna, Italy
[EMAIL PROTECTED],debian.org,bononia.it} -%- http://www.bononia.it/zack/
If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. -!-


signature.asc
Description: Digital signature


Bug#340459: postgresql-7.4: unable to install

2005-11-23 Thread Jonathan Ballet
Anand Kumria a écrit :
 On Wed, Nov 23, 2005 at 04:32:26PM +0100, Jonathan Ballet wrote:
 
Package: postgresql-7.4
Version: 1:7.4.9-2
Severity: grave
Justification: renders package unusable

I could not install postgresql-7.4 :

===
jon-debian:/home/jon# LANGUAGE=en aptitude install postgresql-7.4
Setting up postgresql-7.4 (7.4.9-2) ...
Error: clusters must not be owned by root
 
   ^
 
 Could you explain how that happened? 
 
 Thanks,
 Anand
 

Unfortunely, I don't know ...
What are these clusters is it talking about ?

Jonathan



Bug#340459: postgresql-7.4: unable to install

2005-11-23 Thread Anand Kumria
On Wed, Nov 23, 2005 at 04:32:26PM +0100, Jonathan Ballet wrote:
 Package: postgresql-7.4
 Version: 1:7.4.9-2
 Severity: grave
 Justification: renders package unusable
 
 I could not install postgresql-7.4 :
 
 ===
 jon-debian:/home/jon# LANGUAGE=en aptitude install postgresql-7.4
 Setting up postgresql-7.4 (7.4.9-2) ...
 Error: clusters must not be owned by root
  ^

Could you explain how that happened? 

Thanks,
Anand

-- 
 `When any government, or any church for that matter, undertakes to say to
  its subjects, This you may not read, this you must not see, this you are
  forbidden to know, the end result is tyranny and oppression no matter how
  holy the motives' -- Robert A Heinlein, If this goes on --


signature.asc
Description: Digital signature


Bug#340463: Gnumeric hangs on 2^31

2005-11-23 Thread Martin Samuelsson
Package: gnumeric
Version: 1.5.90-1

I do realize that there is a newer gnumeric in unstable, but I'm filing
this report to not forget about the bug. I tried backporting the newer
version, but it had four build dependencies not yet in testing - which
made the task a bit too big.

If entering 2147483647 (2^31-1) into a cell and formating it as a
fraction, everything works as expected. However if entering 2147483648
or any higher number the gui hangs forever.

I'll try to monitor this bug myself and see if 1.6.1-1 has it when it
enters testing, or I manage to backport it.

Unless someone running unstable stumbles across this and can confirm or
deny the presence of the bug in 1.6.1.
--
/Martin


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



Bug#340464: /usr/share/perl/5.8.4/Text/Wrap.pod: Unexpand spelled as unexapand in Text::Wrap docs

2005-11-23 Thread Anthony DeRobertis

Package: perl-doc
Version: 5.8.4-8
Severity: minor
File: /usr/share/perl/5.8.4/Text/Wrap.pod

into tabs.  If you do not want tabs in your results, set 
C$Text::Wrap::unexapand to a false value.  Likewise if you do not
   ^

Notice the extra a in unexApand. Checking the actual perl code, this
seems to be a documentation error.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (99, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.14-1-686-smp
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages perl-doc depends on:
ii  perl  5.8.4-8Larry Wall's Practical Extraction 

-- no debconf information


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



Bug#336077: Will be fixed in next upload

2005-11-23 Thread Goedson Teixeira Paixao
tags 336077 pending patch
thanks

This bug will be fixed in the next upload. If you can't wait for it,
the patch in the attachment will fix it for you.


-- 
 .''`. Goedson Teixeira Paixao [EMAIL PROTECTED]
: :' : Jabber ID: [EMAIL PROTECTED] - http://www.jabber.org/
`. `'  Key fingerprint: 20FC AD60 E8C8 D2EB 064A  8F5B EED8 D4CC 1DEB 8EAE
  `-   Signed/encypted mail preferred
--- orig/src/PrefsInterface.cc
+++ mod/src/PrefsInterface.cc
@@ -64,12 +64,14 @@
 {
  // Connect buttons to handlers
  Gtk::Button* b = 0;
+ Glib::RefPtrGtk::AccelGroup accelGroup = _thisWindow-get_accel_group();
  if (is_settings)
  {
- _thisWindow-set_title(_(Gabber Connection Settings));
+  _thisWindow-set_title(_(Gabber Connection Settings));
   get_widget(Close_btn, b);
   b-signal_clicked().connect(SigC::slot(*this, 
LoginDlg::on_Close_clicked));
   b-show();
+  b-add_accelerator(Glib::ustring(clicked), accelGroup, GDK_Return, 
Gdk::ModifierType(0), Gtk::AccelFlags(0));
   get_widget(LogOut_btn, b);
   b-signal_clicked().connect(SigC::slot(*this, 
LoginDlg::on_LogOut_clicked));
   b-show();
@@ -90,6 +92,7 @@
   b-hide();
   get_widget(LogIn_btn, _btnLogIn);
   _btnLogIn-signal_clicked().connect(SigC::slot(*this, 
LoginDlg::on_LogIn_clicked));
+  _btnLogIn-add_accelerator(Glib::ustring(clicked), accelGroup, 
GDK_Return, Gdk::ModifierType(0), Gtk::AccelFlags(0));
   _btnLogIn-show();
   get_widget(Cancel_btn, b);
   b-signal_clicked().connect(SigC::slot(*this, 
LoginDlg::on_Cancel_clicked));




signature.asc
Description: Digital signature


Bug#338121: this is correct

2005-11-23 Thread cobaco (aka Bart Cornelis)
kde-config --path xfdgonc-menu told me:
/home/foo/.config/menus/:/etc/kde-profile/foo/etc/xdg/menus/:/etc/xdg/menus/

search path looks ok, this is supposed to be different from the normal one 
as it's derived from the freedesktop basedirectory specification (i.e. it 
uses XDG_CONFIG_DIRS and associated defaults instead of KDEDIRS and 
associated defaults)

To break down the search path above:

/home/foo/.config/menus/ - personal settings as specified by freedesktop 
menu specification (which builds on the freedesktop basedirectory spec), 
definately correct

/etc/xdg/menus/ - standard systemwide settings as specified by freedesktop 
menu specification (here's the stuff where the stuff from the menu-xdg 
package ends up), definately correct

/etc/kde-profile/foo/etc/xdg/menus/ - added by kiosktool I'm guessing, does 
kiosktool actually place the menu files in here? if there's a fault in the 
search path it would be here, but it looks correct at first glance

- this would seem to be a bug in kiosktool not kde-config
-- 
Cheers, cobaco (aka Bart Cornelis)
  
1. Encrypted mail preferred (GPG KeyID: 0x86624ABB)
2. Plain-text mail recommended since I move html and double
format mails to a low priority folder (they're mainly spam)


pgpCuab6C4JPr.pgp
Description: PGP signature


Bug#340465: cannot link correctly with ssl version of static gsoap lib

2005-11-23 Thread John van der Kamp
Package: gsoap
Version: 2.7.6c-1
Severity: normal

While trying to link with -lgsoapssl++, there are still unresolved symbols:

undefined reference to `soap_dom_current_nstr'
undefined reference to `soap_ssl_client_context'

This is because the dom.c/dom.cpp file is compiled in the source,
but not included in the .a file.

A patch for the Makefile* files is attached, which solves the problem.

John

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-k7
Locale: LANG=en_GB, LC_CTYPE=en_GB

Versions of packages gsoap depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-2  GCC support library
ii  libstdc++64.0.2-2The GNU Standard C++ Library v3

-- no debconf information
diff -Nurb gsoap-2.7-orig/soapcpp2/Makefile.am gsoap-2.7/soapcpp2/Makefile.am
--- gsoap-2.7-orig/soapcpp2/Makefile.am 2005-09-16 14:44:53.0 +0200
+++ gsoap-2.7/soapcpp2/Makefile.am  2005-10-27 14:45:33.779178592 +0200
@@ -37,9 +37,9 @@
 libgsoapck_a_CFLAGS=$(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) -D$(platform) 
-DWITH_COOKIES
 libgsoapck___a_SOURCES=stdsoap2_ck_cpp.cpp
 libgsoapck___a_CXXFLAGS=$(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) 
-D$(platform) -DWITH_COOKIES
-libgsoapssl_a_SOURCES=stdsoap2_ssl.c
+libgsoapssl_a_SOURCES=stdsoap2_ssl.c dom.c
 libgsoapssl_a_CFLAGS=$(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) -D$(platform) 
-DWITH_OPENSSL -DWITH_DOM
-libgsoapssl___a_SOURCES=stdsoap2_ssl_cpp.cpp
+libgsoapssl___a_SOURCES=stdsoap2_ssl_cpp.cpp dom.cpp
 libgsoapssl___a_CXXFLAGS=$(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) 
-D$(platform) -DWITH_OPENSSL -DWITH_DOM
 
 BUILT_SOURCES=stdsoap2_cpp.cpp $(lib_LIBRARIES)
diff -Nurb gsoap-2.7-orig/soapcpp2/Makefile.in gsoap-2.7/soapcpp2/Makefile.in
--- gsoap-2.7-orig/soapcpp2/Makefile.in 2005-09-16 14:45:52.0 +0200
+++ gsoap-2.7/soapcpp2/Makefile.in  2005-10-27 14:46:47.896910984 +0200
@@ -111,9 +111,9 @@
 libgsoapck_a_CFLAGS = $(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) -D$(platform) 
-DWITH_COOKIES
 libgsoapck___a_SOURCES = stdsoap2_ck_cpp.cpp
 libgsoapck___a_CXXFLAGS = $(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) 
-D$(platform) -DWITH_COOKIES
-libgsoapssl_a_SOURCES = stdsoap2_ssl.c
+libgsoapssl_a_SOURCES = stdsoap2_ssl.c dom.c
 libgsoapssl_a_CFLAGS = $(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) 
-D$(platform) -DWITH_OPENSSL -DWITH_DOM
-libgsoapssl___a_SOURCES = stdsoap2_ssl_cpp.cpp
+libgsoapssl___a_SOURCES = stdsoap2_ssl_cpp.cpp dom.cpp
 libgsoapssl___a_CXXFLAGS = $(SOAPCPP2_DEBUG) $(SOAPCPP2_NONAMESPACES) 
-D$(platform) -DWITH_OPENSSL -DWITH_DOM
 
 BUILT_SOURCES = stdsoap2_cpp.cpp $(lib_LIBRARIES)
@@ -143,11 +143,13 @@
 libgsoapck_a_OBJECTS = $(am_libgsoapck_a_OBJECTS)
 libgsoapssl___a_AR = $(AR) cru
 libgsoapssl___a_LIBADD =
-am_libgsoapssl___a_OBJECTS = libgsoapssl___a-stdsoap2_ssl_cpp.$(OBJEXT)
+am_libgsoapssl___a_OBJECTS = libgsoapssl___a-stdsoap2_ssl_cpp.$(OBJEXT) \
+   libgsoapssl___a-dom.$(OBJEXT)
 libgsoapssl___a_OBJECTS = $(am_libgsoapssl___a_OBJECTS)
 libgsoapssl_a_AR = $(AR) cru
 libgsoapssl_a_LIBADD =
-am_libgsoapssl_a_OBJECTS = libgsoapssl_a-stdsoap2_ssl.$(OBJEXT)
+am_libgsoapssl_a_OBJECTS = libgsoapssl_a-stdsoap2_ssl.$(OBJEXT) \
+   libgsoapssl_a-dom.$(OBJEXT)
 libgsoapssl_a_OBJECTS = $(am_libgsoapssl_a_OBJECTS)
 
 DEFS = @DEFS@
@@ -161,7 +163,9 @@
 @AMDEP_TRUE@   ./$(DEPDIR)/libgsoap_a-stdsoap2.Po \
 @AMDEP_TRUE@   ./$(DEPDIR)/libgsoapck___a-stdsoap2_ck_cpp.Po \
 @AMDEP_TRUE@   ./$(DEPDIR)/libgsoapck_a-stdsoap2_ck.Po \
[EMAIL PROTECTED]@  ./$(DEPDIR)/libgsoapssl___a-dom.Po \
 @AMDEP_TRUE@   ./$(DEPDIR)/libgsoapssl___a-stdsoap2_ssl_cpp.Po \
[EMAIL PROTECTED]@  ./$(DEPDIR)/libgsoapssl_a-dom.Po \
 @AMDEP_TRUE@   ./$(DEPDIR)/libgsoapssl_a-stdsoap2_ssl.Po
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -251,11 +255,13 @@
$(libgsoapck_a_AR) libgsoapck.a $(libgsoapck_a_OBJECTS) 
$(libgsoapck_a_LIBADD)
$(RANLIB) libgsoapck.a
 libgsoapssl___a-stdsoap2_ssl_cpp.$(OBJEXT): stdsoap2_ssl_cpp.cpp
+libgsoapssl___a-dom.$(OBJEXT): dom.cpp
 libgsoapssl++.a: $(libgsoapssl___a_OBJECTS) $(libgsoapssl___a_DEPENDENCIES) 
-rm -f libgsoapssl++.a
$(libgsoapssl___a_AR) libgsoapssl++.a $(libgsoapssl___a_OBJECTS) 
$(libgsoapssl___a_LIBADD)
$(RANLIB) libgsoapssl++.a
 libgsoapssl_a-stdsoap2_ssl.$(OBJEXT): stdsoap2_ssl.c
+libgsoapssl_a-dom.$(OBJEXT): dom.c
 libgsoapssl.a: $(libgsoapssl_a_OBJECTS) $(libgsoapssl_a_DEPENDENCIES) 
-rm -f libgsoapssl.a
$(libgsoapssl_a_AR) libgsoapssl.a $(libgsoapssl_a_OBJECTS) 
$(libgsoapssl_a_LIBADD)
@@ -271,7 +277,9 @@
 @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
 @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
 @AMDEP_TRUE@@am__include@ @[EMAIL 

Bug#340324: lmms hangs on startup

2005-11-23 Thread Tobias Doerffel
hi,

it seems that it hangs when opening MIDI-device. so the first question is, 
whether you have a MIDI-soundcard or not. If so, you're possibly running 
another app accessing MIDI-card via ALSA-sequencer-interface. Try to close 
everything. The next release will also support accessing MIDI-device via 
ALSA-sequencer, so then it should work. As a workaround, you could try to 
insert the following line into ~/.lmmsrc.xml

 mixer framesperaudiobuffer=512 mididev=ALSA Raw-MIDI (Advanced Linux 
Sound Architecture) audiodev=ALSA (Advanced Linux Sound Architecture) /

I don't know whether this works, but maybe it does...

toby


pgpIy7McUAJds.pgp
Description: PGP signature


Bug#285163: ITA: music123 -- A command-line shell for sound-file players

2005-11-23 Thread Matej Vela
retitle 285163 RFA: music123 -- A command-line shell for sound-file players
noowner 285163
thanks

On Mon, Oct 31, 2005 at 19:06:26 +0100, Matej Vela wrote:
 On Sun, Feb 20, 2005 at 07:12:59 +0100, Ana Isabel Delgado Dominguez wrote:
 retitle 285163 ITA: music123 -- A command-line shell for sound-file players
 owner 285163 !

 Do you still intend to adopt music123?

I haven't heard back from you, so I'm assuming you're no longer
interested.  If you are, feel free to retitle the bug again.

Thanks,

Matej


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



Bug#340466: irssi-text: screen is filled with garbage glib error, and then the program hangs

2005-11-23 Thread Marco Presi (Zufus)
Package: irssi-text
Version: 0.8.9-3.1
Severity: important

Hi,

since a few days, I experience this problem both with irssi-text and
irssi-snapshot.

After few minutes the screen is filled with:

(process:13632): GLib-CRITICAL **: g_io_error_get_from_g_error:
assertion `err != NULL' failed

(process:13632): GLib-CRITICAL **: g_io_error_get_from_g_error:
assertion `err != NULL' failed


and then the program hangs.

It appends with several terminal programs (gnome-terminal, Eterm,)

Regards

Marco

-- 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.12-1-686
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to it_IT.UTF-8)

Versions of packages irssi-text depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an
ii  libglib2.0-0  2.8.4-2The GLib library of C routines
ii  libncurses5   5.5-1  Shared libraries for terminal hand
ii  libperl5.85.8.7-8Shared Perl library
ii  libssl0.9.7   0.9.7g-5   SSL shared libraries
ii  perl  5.8.7-8Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.7] 5.8.7-8The Pathologically Eclectic Rubbis

irssi-text recommends no packages.

-- no debconf information


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



Bug#340467: hplip-base depends on libsnmp5 which isn't in testing

2005-11-23 Thread Ido Abramovich
Package: hplip-base
Version: 0.9.3-3
Severity: important

*** Please type your report below this line ***
The package hplip-base (0.9.3-3) depends on libsnmp5,
but libsnmp5 isn't in the testing repository.
the lib package is only available on
security.debian.org sarge/updates.

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






__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


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



Bug#319888: Why doesn't gdm read /etc/profile?

2005-11-23 Thread Steven Rostedt
Package: gdm
Version: 2.6.0.8-1
Followup-For: Bug #319888


Hi, I noticed that this bug will not be fixed.  I would just like to
know what the rational is that GDM will not read /etc/profile to get
environment variables?  Also, what is the proper way to change PATH
then (not to mention MAIL) for all users?

Thanks,

-- Steve


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

Versions of packages gdm depends on:
ii  adduser  3.78Add and remove users and groups
ii  debconf  1.4.59  Debian configuration management sy
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  gksu 1.3.6-1 graphical frontend to su
ii  gnome-session2.10.0-8The GNOME 2 Session Manager
ii  gnome-terminal [x-te 2.10.0-3The GNOME 2 terminal emulator appl
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libatk1.0-0  1.10.3-1The ATK accessibility toolkit
ii  libattr1 2.4.25-1Extended attribute shared library
ii  libbonobo2-0 2.10.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.10.1-1The Bonobo UI library
ii  libc62.3.5-8 GNU C Library: Shared libraries an
ii  libgconf2-4  2.10.1-6GNOME 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-1 The GLib library of C routines
ii  libgnome2-0  2.10.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-02.10.2-2A powerful object-oriented display
ii  libgnomeui-0 2.10.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   2.10.1-5The GNOME virtual file-system libr
ii  libgtk2.0-0  2.6.10-2The GTK+ graphical user interface 
ii  libice6  6.8.2.dfsg.1-10 Inter-Client Exchange library
ii  liborbit21:2.12.4-1  libraries for ORBit2 - a CORBA ORB
ii  libpam-modules   0.79-3  Pluggable Authentication Modules f
ii  libpam-runtime   0.79-3  Runtime support for the PAM librar
ii  libpam0g 0.79-3  Pluggable Authentication Modules l
ii  libpango1.0-01.8.2-3 Layout and rendering of internatio
ii  libpopt0 1.7-5   lib for parsing cmdline parameters
ii  librsvg2-2   2.9.5-6 SAX-based renderer library for SVG
ii  libselinux1  1.26-1  SELinux shared libraries
ii  libsm6   6.8.2.dfsg.1-10 X Window System Session Management
ii  libwrap0 7.6.dbs-8   Wietse Venema's TCP wrappers libra
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte
ii  libxi6   6.8.2.dfsg.1-10 X Window System Input extension li
ii  libxml2  2.6.22-2GNOME XML library
ii  metacity [x-window-m 1:2.10.3-2  A lightweight GTK2 based Window Ma
ii  sawfish [x-window-ma 1:1.3+cvs20050709-6 a window manager for X11
ii  twm [x-window-manage 6.8.2.dfsg.1-10 Tab window manager
ii  xbase-clients6.8.2.dfsg.1-10 miscellaneous X clients
ii  xlibs6.8.2.dfsg.1-10 X Window System client libraries m
ii  xterm [x-terminal-em 6.8.2.dfsg.1-10 X terminal emulator
ii  zlib1g   1:1.2.3-8   compression library - runtime

Versions of packages gdm recommends:
ii  dialog1.0-20051107-1 Displays user-friendly dialog boxe
ii  whiptail  0.51.6-31  Displays user-friendly dialog boxe
ii  zenity2.10.1-1   Display graphical dialog boxes fro

-- debconf information:
  gdm/daemon_name: /usr/bin/gdm
* shared/default-x-display-manager: gdm


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



Bug#339229: library package needs to be renamed (libstdc++ allocator change)

2005-11-23 Thread Matthias Klose
 tag 339229 wontfix
 tag 339257 wontfix

any reason for these? please add a short rationale to the bug reports,
why this is wontfix.


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



Bug#340468: openoffice.org-base: creating tables fails with libhsqldb2: file not found

2005-11-23 Thread marcus
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: openoffice.org-base
Version: 2.0.0-2
Severity: important

I cannot create tables in a new, empty database file.

Create a new Base document named Employees using HSQLDB (with only default
options). Then press Tables to go to the tables view. This gives a
pop-up error message, translated freely from Swedish: 

  Cannot connect to the data source Employees

  libhsqldb2: file not found

If I press OK to get rid of the popup, and try Tables again, I get a
different message:

  Cannot connect to the data source Employees

  com.sun.star.sdbcx.comp.hsqldb.StorageFileAccess

Any further attempts give this second error message.

There is a fix:
  http://ubuntuforums.org/archive/index.php/t-77087.html

In other words, create a link in /usr/lib/openoffice/program from
libhsqldb2 to libhsqldb2.so. This seems to work for me.

The problem is reproducible on this system, but I have another i386
system with the same version of OpenOffice where I cannot reproduce
it. That system has the Sun JRE instead of Kaffe.

- --- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.12-custom
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)

Versions of packages openoffice.org-base depends on:
ii  java-gcj-c 1.0.30-4  Java runtime environment using GIJ
ii  libc6  2.3.5-6   GNU C Library: Shared libraries an
ii  libgcc11:4.0.2-2 GCC support library
ii  libglib2.0 2.8.3-1   The GLib library of C routines
ii  libhsqldb- 1.8.0.2-1 Java SQL database engine
ii  libmdbtool 0.5.99.0.6pre1.0.20050409-1.2 mdbtools libraries
ii  libstdc++6 4.0.2-4   The GNU Standard C++ Library v3
ii  libstlport 4.6.2-3   STLport C++ class library
ii  openoffice 2.0.0-2   OpenOffice.org office suite archit
ii  openoffice 2.0.0-2   OpenOffice.org office suite Java s

- --- no debconf information
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iD8DBQFDhJ8PXjXn6TzcAQkRAoSeAJwIlv2uhGstIXUx6/pJgPd3sAWTLgCfVb9Y
pvpTPhcYq9nsTmHM+gTrIYU=
=yeNC
-END PGP SIGNATURE-


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



Bug#283231: I have a patch to allow sudo-ldap

2005-11-23 Thread Paul LeoNerd Evans
Package: sudo
Version: 1.6.8p9-3
Followup-For: Bug #283231

I'm not too familiar with creating a source package that can create
multiple binary packages, but I have a local modification of the sudo
source package which creates a sudo-ldap binary package. This is built
using LDAP support.

If you want I can provide this package, which I have tested on three of
my ix86-based machines. It only does very minor changes - replacing some
occurances of sudo with sudo-ldap, and changing the ./configure line
in the build options. Perhaps someone with more experience could
integrate this into the main source package..?

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

Versions of packages sudo depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libpam-modules0.79-3 Pluggable Authentication Modules f
ii  libpam0g  0.79-3 Pluggable Authentication Modules l

sudo recommends no packages.


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



Bug#320260: problems libtoolizing qgo

2005-11-23 Thread Cyril Chaboisseau
Package: qgo
Version: 1.0.3-1
Followup-For: Bug #320260

I finally got my machine back and tried for the second time to
libtoolize qgo with the help of this page
http://people.debian.org/~keybuk/libtool-updating.html

unfortunately, it doesn't work as expected !

once the steps are done in order, then the package cannot be built
anymore

here is what I've done :

--%-%-%-%-%-%-%-%-%-%---
$ libtoolize --copy --force
Remember to add `AC_PROG_LIBTOOL' to `configure.in'.
Putting files in AC_CONFIG_AUX_DIR, `admin'.
$ vi configure.in
(adding AC_PROG_LIBTOOL accordingly)
$ aclocal-1.6 
$ autoconf 
configure.in:40: warning: AC_LIBTOOL_SETUP was called before AC_LIBTOOL_DLOPEN
aclocal.m4:4981: AC_LIBTOOL_DLOPEN is expanded from...
configure.in:40: AC_LIBTOOL_DLOPEN is required by...
aclocal.m4:2812: KDE_PROG_LIBTOOL is expanded from...
configure.in:40: the top level
$ debuild -us -uc
dpkg-buildpackage: source package is qgo
dpkg-buildpackage: source version is 1.0.3-2
dpkg-buildpackage: source changed by Cyril Chaboisseau [EMAIL PROTECTED]
dpkg-buildpackage: host architecture amd64
 fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp
/usr/bin/make distclean
make[1]: entrant dans le répertoire « /home/cyril/src/Debian/q1 »
make[1]: *** Pas de règle pour fabriquer la cible « distclean ». Arrêt.
make[1]: quittant le répertoire « /home/cyril/src/Debian/q1 »
make: [clean] Erreur 2 (ignorée)
cat `ls -r debian/patches/*.diff` /dev/null | patch -RENtp1 -r debian/rejected 
--no-backup-if-mismatch
patching file templates/qgo.desktop
Unreversed patch detected!  Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file debian/rejected
patching file src/wavfile.c
Unreversed patch detected!  Skipping patch.
2 out of 2 hunks ignored -- saving rejects to file debian/rejected
patching file src/setting.cpp
Unreversed patch detected!  Skipping patch.
1 out of 1 hunk ignored -- saving rejects to file debian/rejected
make: [clean] Erreur 1 (ignorée)
rm -f debian/files debian/rejected debian/substvars
rm -f config.log config.cache admin/config.guess admin/config.sub subdirs
rm -fr debian/qgo
dh_clean 
 dpkg-source -b q1
dpkg-source: warning: source directory `./q1' is not 
sourcepackage-upstreamversion `qgo-1.0.3'
dpkg-source: warning: .orig directory name q1.orig is not 
package-upstreamversion (wanted qgo-1.0.3.orig)
dpkg-source: building qgo using existing qgo_1.0.3.orig.tar.gz
dpkg-source: building qgo in qgo_1.0.3-2.diff.gz
dpkg-source: cannot represent change to admin/ltmain.sh:
dpkg-source:  new version is plain file
dpkg-source:  old version is something else
dpkg-source: warning: ignoring deletion of file admin/config.guess
dpkg-source: warning: ignoring deletion of file admin/config.sub
dpkg-source: warning: ignoring deletion of file configure.in~
dpkg-source: building qgo in qgo_1.0.3-2.dsc
dpkg-source: unrepresentable changes to source
debuild: fatal error at line 765:
dpkg-buildpackage failed!
--%-%-%-%-%-%-%-%-%-%---


has anyone any idea how to correct this ?
(have I done something wrong ?)


thanks a lot for your help


PS : I didn't have much luck either trying to do it manually but maybe I
should take a closer look



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

Versions of packages qgo depends on:
ii  libaudio21.7-3   The Network Audio System (NAS). (s
ii  libc62.3.5-7 GNU C Library: Shared libraries an
ii  libfontconfig1   2.3.2-1.1   generic font configuration library
ii  libfreetype6 2.1.10-1FreeType 2 font engine, shared lib
ii  libgcc1  1:4.0.2-4   GCC support library
ii  libice6  6.8.2.dfsg.1-10 Inter-Client Exchange library
ii  libjpeg626b-10   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-5  PNG library - runtime
ii  libqt3-mt3:3.3.5-1   Qt GUI Library (Threaded runtime v
ii  libsm6   6.8.2.dfsg.1-10 X Window System Session Management
ii  libstdc++6   4.0.2-4 The GNU Standard C++ Library v3
ii  libx11-6 6.8.2.dfsg.1-10 X Window System protocol client li
ii  libxcursor1  1.1.3-1 X cursor management library
ii  libxext6 6.8.2.dfsg.1-10 X Window System miscellaneous exte
ii  libxft2  2.1.7-1 FreeType-based font drawing librar
ii  libxi6   6.8.2.dfsg.1-10 X Window System Input extension li
ii  libxinerama1 6.8.2.dfsg.1-10 X Window System multi-head display
ii  libxrandr2   6.8.2.dfsg.1-10 X Window System Resize, Rotate and
ii  libxrender1

Bug#339229: library package needs to be renamed (libstdc++ allocator change)

2005-11-23 Thread Matej Vela
Matthias Klose [EMAIL PROTECTED] writes:

 tag 339229 wontfix
 tag 339257 wontfix

 any reason for these? please add a short rationale to the bug reports,
 why this is wontfix.

Note the subject, Scheduled for removal.  Specifically, see #263871
and #263873.

Thanks,

Matej


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



Bug#340451: eclipse-sdk: eclipse can't find EclipseStarter on startup, terminates

2005-11-23 Thread Michael Koch
Hallo Benjamin,


Kaffe and sablevm in their current states in Debian unstable dont work
with eclipse. Current kaffe CVS does. A new release and upload of kaffe
is near. Sablevm development staled a bit. I don't know its current
state.

For gcj: Make sure you have the gcj-4.0 and java-gcj-compat packages
installed. Binutils needs to be at least 2.16.1cvs20051117-1.

Trying to track down this bug: please install all eclipse-*-gcj packages
and report back if this changes anything. Please delete ~/.eclipse and
~/workspace before each try to start up eclipse.


Thanks for testing

Michael



Bug#340469: emacs21-common: xterm-mouse-mode broken in emacs21-nox, fine in emacs21

2005-11-23 Thread Steve Purcell
Package: emacs21-common
Version: 21.4a-3
Severity: normal

xterm-mouse-mode (xt-mouse.el) uses special control characters sent by
xterms in order to provide mouse support.  It should therefore
presumably work fine under emacs21-nox in a terminal.

However, it only works under emacs21.  With emacs21-nox, a mouse click
initially moves the mouse cursor, but upon releasing the mouse button
the terminal bell is triggered and the mouse cursor reverts to its
previous position.

To reproduce, simply M-x xterm-mode, then C-x 2 to split the
window.  It should now be possible to switch focus from one window to
the other with a mouse click.

I am sorry that I have no idea how to resolve this bug.

Regards,

-Steve


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

Versions of packages emacs21-common depends on:
ii  dpkg 1.13.11.0.1 package maintenance system for Deb
ii  emacsen-common   1.4.16  Common facilities for all emacsen

emacs21-common recommends no packages.

-- no debconf information


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



Bug#340374: mozilla-thunderbird: counter for unread is wrong (shows much more than unread messages exist in this folder)

2005-11-23 Thread Stefan Hirschmann
Alexander Sack - Debian Bugmail wrote:

 If you find a bug that is still unconfirmed, but describes your
 behaviour best, let me know

Before I sent this report I looked to the list, but I didn't find any
exakt matches. But Bugzilla Bug 307873 is realy similar.

There is only one big difference: This bug says:
Reproducible: Couldn't Reproduce

But on my computer it alwas happens when I open Thunderbird and have
new mails in the seperated pop accounts (no global folder).

BTW: This bug started when I updated from Sarge to Etch.

By now I believe that I found a workaround:
- Creata a new folder, call it like you want, e.g. tempFolder
- Move everything from Inbox to the new folder
- Close Thunderbird
- Go to the directory of your mail account (look at Account setting
where it is)
- delete every file / directory containing Inbox (2 files, 1 directory
- start TB (now a new Inbox is automatically created)
- move everything from tempFolder back to the Inbox.
- delete the tempFolder (right mouse - delete folder)
- repeat this for every non working account.


@Alex: I think when the other unread counter bugs fixed, than this bug
will also be fixed, so I think there is no need to tell this to the
bugzialla.mozilla.org



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



Bug#340348: hurd: LAN interface dies on connection problem

2005-11-23 Thread Alfred M. Szmidt
Please report bugs that are related to the Hurd or GNU Mach, to the
Hurd projects bug tracker.  http://sv.gnu.org/hurd

If possible, always try to show a backtrace using gdb.  See the gdb
manual for info on how to do just that.

Thank you.


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



Bug#266824: Subbird 0.3alpha1

2005-11-23 Thread Guido Guenther
Hi Alexander,
On Wed, Nov 23, 2005 at 02:08:51PM +0100, Alexander Sack wrote:
 On Wed, Nov 23, 2005 at 01:50:12PM +0100, Guido Guenther wrote:
  Hi Alexander,
  any chance you package this up anytime soon? Would be great to have this
  in the archive.
  Cheers,
   -- Guido
 
 Is there a first official alpha release available? Please understand, 
 I don't like the idea to send some random cvs snapshot in the
 archive.
At least the website says so:

Our current release Sunbird 0.3 alpha1 is available for download.

Cheers,
 -- Guido


signature.asc
Description: Digital signature


Bug#321635: Reopening report

2005-11-23 Thread Michael Stone

tags 321635 wontfix
quit

On Wed, Nov 23, 2005 at 04:56:09PM +0100, you wrote:

I believe some substantial messages have been added after the report has
been closed.  After consulting with people on #debian-devel OFTC, I'm
reopening this bug.


Fine, I'll mark it wontfix so I won't acidentally read it again.

Mike Stone



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



Bug#340470: postgresql-common: Braindead message tells me to install non-existing packages

2005-11-23 Thread Markus Schaber
Package: postgresql-common
Version: 34
Severity: normal

I just upgraded postgresql-common to version 34, and got presented an
absolutely braindead message that told me to install
postgresql-plpgsql.so and postgresql-client-plpgsql.so packages...

I attach a copy-Paste of the screen that was presented to me.

Thank you for amusing me :-)

Markus

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

Versions of packages postgresql-common depends on:
ii  adduser   3.77   Add and remove users and groups
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  lsb-base  3.0-11 Linux Standard Base 3.0 init scrip

Versions of packages postgresql-common recommends:
ii  openssl   0.9.8a-3   Secure Socket Layer (SSL) binary a

-- debconf information:
* postgresql-common/obsolete-major:
Debian Configuration

  
\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524
 
Configuring postgresql-common 
\u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510
  \u2502
  \u2502
  \u2502 Obsolete major version 8.0
  \u2502
  \u2592
  \u2502 The PostgreSQL version 8.0 is obsolete, but you still have the server  
  \u2592
  \u2502 and/or client package installed. Please install the latest packages
  \u2592
  \u2502 (postgresql-plpgsql.so and postgresql-client-plpgsql.so) and upgrade   
  \u2592
  \u2502 your existing  clusters with pg_upgradecluster (see manpage).  
  \u2592
  \u2502
  \u2592
  \u2502 Please be aware that the installation of postgresql-plpgsql.so will
  \u2592
  \u2502 automatically create a default cluster plpgsql.so/main. If you want to 
  \u2592
  \u2502 upgrade the 8.0/main cluster, you need to remove the already existing  
  \u2592
  \u2502 plpgsql.so cluster (pg_dropcluster --stop-server plpgsql.so main, see  
  \u2592
  \u2502 manpage for details).  
  \u2592
  \u2502
  \u2592
  \u2502 The old server and client packages are not supported any more. After   
  \u2592
  \u2502
  \u2502  Ok
  \u2502
  \u2502
  
\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518





Bug#340471: dillo: Open URL (Ctrl-L) No Longer Works

2005-11-23 Thread Charles Stevenson
Package: dillo
Version: 0.8.5-2
Severity: important


In previous versions of Dillo, one could open a URL by keying Ctrl-L or
clicking the file menu and selecting Open URL.  In either case a small
dialog was displayed wherein one could type the URL.  This box no longer
appears on the screen from either path.

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

Versions of packages dillo depends on:
ii  libc6 2.3.5-6GNU C Library: Shared libraries an
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libgtk1.2 1.2.10-18  The GIMP Toolkit set of widgets fo
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libx11-6  6.8.2.dfsg.1-7 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-7 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-7 X Window System Input extension li
ii  wget  1.10.2-1   retrieves files from the web
ii  xlibs 6.8.2.dfsg.1-7 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

dillo recommends no packages.

-- no debconf information


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



Bug#340472: bugs.debian.org: Give bug report http url in Acknowledgement email

2005-11-23 Thread Markus Schaber
Package: bugs.debian.org
Severity: wishlist

I think it might be useful to include the http://bugs.debian.org/4777
bug number URL in the Acknowledgement email that is sent to bug
submitters.

Thanks,
Markus


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



Bug#340374: mozilla-thunderbird: counter for unread is wrong (shows much more than unread messages exist in this folder)

2005-11-23 Thread Alexander Sack - Debian Bugmail
On Wed, Nov 23, 2005 at 06:13:22PM +0100, Stefan Hirschmann wrote:
 Alexander Sack - Debian Bugmail wrote:
 
  If you find a bug that is still unconfirmed, but describes your
  behaviour best, let me know
 
 Before I sent this report I looked to the list, but I didn't find any
 exakt matches. But Bugzilla Bug 307873 is realy similar.
 
 There is only one big difference: This bug says:
 Reproducible: Couldn't Reproduce
 
 But on my computer it alwas happens when I open Thunderbird and have
 new mails in the seperated pop accounts (no global folder).

so if you start with a fresh account (at best after moving
your current .mozilla-thunderbird directory to a safe place) 
you can reproduce this in a minimal fashion? If so, please don't
hesitate to attach such a profile directory to this bug.

 
 By now I believe that I found a workaround:
 - Creata a new folder, call it like you want, e.g. tempFolder
 - Move everything from Inbox to the new folder
 - Close Thunderbird
 - Go to the directory of your mail account (look at Account setting
 where it is)
 - delete every file / directory containing Inbox (2 files, 1 directory
 - start TB (now a new Inbox is automatically created)
 - move everything from tempFolder back to the Inbox.
 - delete the tempFolder (right mouse - delete folder)
 - repeat this for every non working account.
 

Can still get those folders to a state where they show the same bug again?

 - Alexander

 p.s. please take care that the bug is listed as To: or CC: when 
  replying to this mail (e.g. /reply-all/). 
-- 
 GPG messages preferred.   |  .''`.  ** Debian GNU/Linux **
 Alexander Sack| : :' :  The  universal
 [EMAIL PROTECTED]   | `. `'  Operating System
 http://www.asoftsite.org  |   `-http://www.debian.org/


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



Bug#340397: supported-version

2005-11-23 Thread Emmanuel Charpentier
The problem is indeed in /usr/share/opstgresql-common/supported-version. 
The fix supplied by Richard renards works (Thank you, Richard !).

Il leave this bug open to remind the developpers...

Sincerely,

Emmanuel Charpentier
--
Emmanuel Charpentier[EMAIL PROTECTED]


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



Bug#340428: octave2.9 - lists mailing list as uploader in changelog

2005-11-23 Thread Rafael Laboissiere
I am moving this discussion to debian-devel, since I am not sure we are
really violating the Policy.  Feel free to move it further to
debian-policy, if you think it is appropriate.

* Bastian Blank [EMAIL PROTECTED] [2005-11-23 13:18]:

 Package: octave2.9
 Version: 2.9.4-6
 Severity: serious
 
  octave2.9_2.9.4-6_s390.changes:
  Format: 1.7
  Date: Tue, 22 Nov 2005 14:48:51 +0100
  Source: octave2.9
  Binary: octave2.9-headers octave2.9-info octave2.9-htmldoc octave2.9 
  octave2.9-emacsen octave2.9-doc
  Architecture: s390
  Version: 2.9.4-6
  Distribution: unstable
  Urgency: low
  Maintainer: s390 Build Daemon [EMAIL PROTECTED]
  Changed-By: Debian Octave Group [EMAIL PROTECTED]
 [...]
 
 octave2.9 lists a mailing list as uploader in the changelog. The policy
 specifies:
 
 | 4.4 Debian changelog: debian/changelog
 [...]
 | The maintainer name and email address used in the changelog should be
 | the details of the person uploading this version. They are not
 | necessarily those of the usual package maintainer. The information here
 | will be copied to the Changed-By field in the .changes file (see
 | Changed-By, Section 5.6.4), and then later used to send an
 | acknowledgement when the upload has been installed.

In the debian/changelog for octave2.9 (and all other packages maintained
collectively by the Debian Octave Group, the DOG), we do add details
about who made the changes, like this:

 octave2.9 (2.9.3-1) experimental; urgency=low

+++ Changes by Colin Ingram
 
   * New upstream release
   [...]
   
+++ Changes by Rafael Laboissiere
 
   * The patches applied by dpatch are now done selectively according to
 the version of Octave.  For that, the debian/patches/00list file is
 now generated when running ./debian/rules maintainer-scripts from
 the files debian/in/$(PACKAGE)-00list.
 [...]

 -- Debian Octave Group [EMAIL PROTECTED]  Fri, 4 Nov 2005 10:30:54 +0100

I think this should be enough.

As regards the copy of this information into the Changed-By field of the
changes file, we are already requiring that the developers of the DOG 
use the -e option of debuild (cf the DOG Guidelines, at
http://pkg-octave.alioth.debian.org/DOG-Guidelines.html#building-and-uploading-packages).


 and
 
 | 5.6.4 Changed-By
 |=20
 | The name and email address of the person who changed the said package.
 | Usually the name of the maintainer. All the rules for the Maintainer
 | field apply here, too.
 
 A mailing list is no person which can do uploads.

This is why there is the Changed-By filed in the changes file.

At any rate, it seems that using mailing lists in changelog entries is
common practice, like:

http://packages.debian.org/changelogs/pool/main/k/kdebase/kdebase_3.4.2-4/changelog

I am not claiming that since others have mailing lists in changelog
entries we have also the right to do it.  I only want to know how we
should address the issue.

-- 
Rafael


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



Bug#340473: htmldoc.1.gz: more charsets allowed

2005-11-23 Thread Dan Jacobson
Package: htmldoc
Version: 1.8.24-2
Severity: minor
File: /usr/share/man/man1/htmldoc.1.gz

The man page's
   --charset {8859-1...8859-15}
Specifies the ISO character set to use for the output.

makes it look like all that are allowed are
--charset 8859-1 ... --charset 8859-15
Whereas file:///usr/share/doc/htmldoc/htmldoc.html#9_2_12 shows that
these should probably be invoked as
--charset iso8859-1 ...
Moreover they are not just limited to those ISO ones! So reword the
man page.

P.S., one wants support for e.g., Chinese big5.


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



Bug#340474: pilot-addresses.1.gz: NAME section too verbose

2005-11-23 Thread Dan Jacobson
Package: pilot-link
Version: 0.11.8-12
Severity: minor
File: /usr/share/man/man1/pilot-addresses.1.gz

$ apropos pilot-addresses
pilot-addresses (1)  - read and write address book databases to and
from a Palm handheld, such as those made from Palm, Handspring,
Handera, TRGPro, Sony or other Palm handheld.

Comparing this with the average apropos response, one sees that the
stuff after the first comma doesn't belong in the NAME section.

Indeed, try
$ apropos pilot
and try to make them all not wrap on standard terminals.
Some really stick out.


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



Bug#340475: imgvinfo.1.gz: remove version number from NAME section

2005-11-23 Thread Dan Jacobson
Package: imgvtopgm
Version: 2.0-5
Severity: minor
File: /usr/share/man/man1/imgvinfo.1.gz

$ apropos imgvinfo
imgvinfo (1) - extract and display interesting things from a
Pilot Image Viewer pdb header, version 2.0.

This is the first time I've seen version numbers show up in an apropos
result, so move it out of NAME.

Also shorten it so it fits on one line...


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



Bug#340476: pdb.4.gz: mangled apropos

2005-11-23 Thread Dan Jacobson
Package: txt2pdbdoc
Version: 1.4.4-4
Severity: minor
File: /usr/share/man/man4/pdb.4.gz

This man page causes a mangled apropos:
$ apropos -es 4 pdb
pdb (4)  - (unknown subject)
$ apropos pdb|grep '(4)'
pdb (4)  - (unknown subject)
PDB (Pilot Database) file format (4) [pdb] - (unknown subject)


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



Bug#340477: asterisk-oh323: Please package version 0.7.3

2005-11-23 Thread Alessandro Polverini
Package: asterisk-oh323
Severity: wishlist

Asterisk 1.2 need the 0.7 branch of asterisk-oh323 to work properly.
Current release is 0.7.3

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (90, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k7
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)


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




Bug#340478: libasound2: breaks PMacToonie.conf

2005-11-23 Thread Felix C. Stegerman
Package: libasound2
Version: 1.0.10-1
Severity: important
Tags: patch


Hi,

When trying to play sound with xmms I got the following error:
  Message: device: default
  ALSA lib conf.c:1596:(snd_config_load1) :51:1:Unexpected }
  ALSA lib conf.c:2837:(snd_config_hook_load) 
/usr/share/alsa/cards/PMacToonie.conf may be old or corrupted: consider to 
remove or fix it
  ALSA lib conf.c:2700:(snd_config_hooks_call) function 
snd_config_hook_load_for_all_cards returned error: Invalid argument
  ALSA lib pcm.c:1969:(snd_pcm_open_conf) Invalid type for PCM default 
definition (id: default, value: cards.pcm.default)
  ** WARNING **: alsa_setup(): Failed to open pcm device (default): Invalid 
argument

Looking at PMacToonie.conf, it seems the line containing
  playback.pcm {
has dissappeared. Adding it seems to fix everything.

I've included a diff file.


Felix


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (900, 'unstable'), (890, 'testing'), (860, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-flx0-ppc
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages libasound2 depends on:
ii  libc6 2.3.5-8GNU C Library: Shared libraries an

libasound2 recommends no packages.

-- no debconf information
-- 
Felix C. Stegerman [EMAIL PROTECTED]

Any sufficiently advanced bug is indistinguishable from a feature.
 -- R. Kulawiec
--- PMacToonie.conf.original2005-11-23 19:04:34.0 +0100
+++ PMacToonie.conf 2005-11-23 19:04:34.0 +0100
@@ -28,6 +28,7 @@
type string
}
type asym
+   playback.pcm {
type plug
slave.pcm {
type softvol


Bug#339219: libstdc++ allocator change

2005-11-23 Thread Matthias Klose
tags 339219 + patch
thanks

http://people.ubuntu.com/patches/c2a-libsigc++-2.0.diff


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



Bug#325448: ITP

2005-11-23 Thread Ryan Schultz
retitle 325448 ITP: mupen64 -- Nintendo64 emulator
owner 325448 !
thanks bts

I've got Mupen64 working now (after much tinkering) and I should be able to 
package it along with a fairly stable set of plugins.

-- 
Ryan Schultz
vi users are mammals, and they flip out and kill people *all the time.*


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



Bug#340411: SPARC- Failed installation.

2005-11-23 Thread Frans Pop
On Wednesday 23 November 2005 11:51, Chris Andrew wrote:
 CD failed to detect, even though the install booted from SPROM.  Used
 modprobe ep to overcome this.  Was then prompted for modules to load,
 and picked the ones that looked right, that worked fine.  My network
 card was not detected, so I was prompted to pick one.  After a third
 guess (it wasn't in dmesg), I went for the LANCE, and this worked.

This is probably due to a bug in discover that was noticed recently which 
broke automatic loading of drivers for sbus devices.
Are both your CD and network card sbus?

 Partitioning was fine, then I picked a mirror.  My screen then went
 'Installer blue' and not activity was seen.  No progress indicator,
 etc.  Several ps -ef gave the same results, no 'top' available in

Sounds like you can still switch consoles, so the system is not hung. What 
processes are running (at the bottom of the output from ps)?
What are the last lines on VT3 (or /var/log/messages) and VT4 (or 
/var/log/syslog)?

Could you try adding a line 'set -x' in the file
   /var/lib/dpkg/info/base-installer.postinst
and send us the log resulting from that?

Cheers,
FJP


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



Bug#340467: hplip-base depends on libsnmp5 which isn't in testing

2005-11-23 Thread Henrique de Moraes Holschuh
severity 340467 important
retitle 340467 [britney] removes dependencies from testing making packages 
uninstalable
reassign 340467 ftp.debian.org
thanks

Summary for ftp.debian.org:

   hplip-base is still in testing.  However, one of its dependencies
   (Depends:) was removed from testing, making hplip-base uninstalable.
   hplip-base should have been removed as well, OR the package it Depends:
   should not have been removed in the first place.

   Packages involved: hplib-base, libsnmp5

On Wed, 23 Nov 2005, Ido Abramovich wrote:
 The package hplip-base (0.9.3-3) depends on libsnmp5,
 but libsnmp5 isn't in the testing repository.

WTF why hplip 0.9.3 not removed from testing, then, if one of its
dependencies was?

This is a very serious problem in the testing archive.

 the lib package is only available on
 security.debian.org sarge/updates.

That might be a data point.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


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



Bug#339158: libstdc++ allocator change

2005-11-23 Thread Matthias Klose
tags 339159 + patch
thanks

http://people.ubuntu.com/patches/c2a-cppunit.diff


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



Bug#340384: net-tools: arp Bus Error

2005-11-23 Thread Bernd Eckenfels
do you know if this was introduced in -16 (or earlier?) i.e. what was the
last version which worked? 

 #0  0x70104220 in inet_aton () from /lib/libc.so.6
 #1  0x00014028 in ?? ()
 #2  0x00014028 in ?? ()

if you have some time at hand you could try to debug this with a debug
build, however it might also be obvious from source where the unaligned
access happens, will check that at the weekend. Thanks for your report.

Bernd
-- 
  (OO) -- [EMAIL PROTECTED] --
 ( .. )[EMAIL PROTECTED],linux.de,debian.org}  http://www.eckes.org/
  o--o   1024D/E383CD7E  [EMAIL PROTECTED]  v:+497211603874  f:+49721151516129
(OO)  When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl!


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



Bug#338269: knights: change of dependency?

2005-11-23 Thread Tommaso Moroni
On Wed, Nov 23, 2005 at 02:46:57AM +, Rob Walker wrote:
 Now that #336114 is closed, do you think we should file a bug against
 the proper kde packages, and then link this bug to that one?

I think the right way should be to simply reassign the bug to the appropriate 
package, but sincerely I don't know which one should be! :)
Moreover the bug actually should be closed when a build of knights with 
working libs is uploaded, so I think it should be considered as a knights
bug. (I think I'm the first maintainer who tries to keep a RC-bug instead
of reassigning it to another package or closing it :)

By the way a recompiled/renamed version of libarts has been uploaded so it
should be a matter of days before everything will work again.

If you have any suggestions or different proposals, I'm all ears!


Regards,
-- 
Tommaso Moroni
[EMAIL PROTECTED]


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



Bug#340474: pilot-addresses.1.gz: NAME section too verbose

2005-11-23 Thread Ludovic Rousseau
tags 340474 fixed-in-experimental 
thanks,

$ apropos pilot-addresses
pilot-addresses (1)  - Read and write address book databases to and from a Palm 
handheld.


Le Thursday 24 November 2005 à 00:21:27, Dan Jacobson a écrit:
 Package: pilot-link
 Version: 0.11.8-12
 Severity: minor
 File: /usr/share/man/man1/pilot-addresses.1.gz
 
 $ apropos pilot-addresses
 pilot-addresses (1)  - read and write address book databases to and
 from a Palm handheld, such as those made from Palm, Handspring,
 Handera, TRGPro, Sony or other Palm handheld.
 
 Comparing this with the average apropos response, one sees that the
 stuff after the first comma doesn't belong in the NAME section.
 
 Indeed, try
 $ apropos pilot
 and try to make them all not wrap on standard terminals.
 Some really stick out.

-- 
 Dr. Ludovic Rousseau[EMAIL PROTECTED]
 -- Normaliser Unix c'est comme pasteuriser le camembert, L.R. --



Bug#340479: noffle: problems with largefile limit

2005-11-23 Thread Zoran Dzelajlija
Package: noffle
Version: 1.1.5-8
Severity: important

Hi, I have quite a large archive of articles, and something
breaks on 2GB - 1 file limit, not sure whether it's gdbm
or noffle's fault.

[19:20] ~ = sudo ls -l /var/spool/noffle/data/*gdbm
-rw-r--r--  1 news news 2147483647 Nov 23 19:09 articles.gdbm
-rw-r--r--  1 news news3825741 Nov 23 19:09 groupinfo.gdbm

syslog:

/var/log/news/OLD/news.err.3.gz:Nov 20 21:10:31 burek noffle[21936]: gdbm: 
write error
/var/log/news/OLD/news.err.3.gz:Nov 20 21:39:14 burek noffle[23512]: gdbm: 
write error
/var/log/news/OLD/news.err.3.gz:Nov 20 22:09:03 burek noffle[25088]: gdbm: 
write error
/var/log/news/OLD/news.err.3.gz:Nov 20 22:39:07 burek noffle[26691]: gdbm: 
write error
/var/log/news/OLD/news.err.3.gz:Nov 20 23:09:04 burek noffle[28272]: gdbm: 
write error
/var/log/news/OLD/news.err.3.gz:Nov 20 23:39:03 burek noffle[29856]: gdbm: 
write error
/var/log/news/OLD/news.err.3.gz:Nov 21 00:09:03 burek noffle[31437]: gdbm: 
write error

Regards,
Zoran

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (650, 'testing'), (600, 'stable'), (50, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.13.4
Locale: LANG=C, LC_CTYPE=hr_HR (charmap=ISO-8859-2)

Versions of packages noffle depends on:
ii  exim4 4.54-1 metapackage to ease exim MTA (v4) 
ii  exim4-daemon-light [mail-tran 4.54-1 lightweight exim MTA (v4) daemon
ii  libc6 2.3.5-7GNU C Library: Shared libraries an
ii  libgdbm3  1.8.3-2GNU dbm database routines (runtime
ii  netbase   4.23   Basic TCP/IP networking system
ii  ucf   2.003  Update Configuration File: preserv

Versions of packages noffle recommends:
ii  debconf [debconf-2.0] 1.4.58 Debian configuration management sy
ii  sysklogd [system-log-daemon]  1.4.1-17   System Logging Daemon

-- debconf information:
* noffle/server: news.iskon.hr
* noffle/fetchmode: cron
* noffle/username:
* noffle/port: 119
  noffle/default-expire: 14
* noffle/maxfetch: 1000


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



Bug#340480: notification-daemon: problems with description

2005-11-23 Thread Peter Samuelson

Package: notification-daemon
Version: 0.2.2-1
Severity: minor

The short description (first line of the Description field) and the
long description (rest of the Description field) need to be
independent.  I suggest:

  Description: daemon to display pop-up notification windows
   notification-daemon displays passive pop-up notifications, as per
   the Desktop Notifications Spec
   (http://www.galago-project.org/specs/notification/).

Looking at that web page, I also notice they have published several
revisions of the spec.  If you're going to mention the spec you may as
well say which revisions your package complies with.


signature.asc
Description: Digital signature


Bug#340481: freemind - unable to install

2005-11-23 Thread Andrew Toth




Package: freemind
Version: 0.7.1-6
(Debian GNU/Linux SID, locale is Hungarian)

This package is contrib/text
and cannot be installed:

# uname -a
Linux edvac4 2.6.13 #4 SMP Sat Sep 3 09:58:37 CEST 2005 i686 GNU/Linux
# ls -l /lib/libc.so.6
lrwxrwxrwx 1 root root 13 2005-11-14 19:23 /lib/libc.so.6 - libc-2.3.5.so
#
# apt-get install freemind
Csomaglistk olvassa... Ksz
Fggsgi fa ptse... Ksz
Nhny csomagot nem lehetett telepteni. Ez taln azt jelenti, hogy
egy lehetetlen llapotot krtl vagy ha az unstable disztribcit
hasznlod, akkor nhny ignyelt csomag mg nem kszlt el vagy ki
lett mozdtva az Incoming-bl.

Mivel csak egyetlen mveletet krtl, ez nagy valsznsggel arra utal
hogy a csomag egyszeren nem telepthet s egy hibajelentst kellene
kitlteni a csomaghoz.
A kvetkez informci taln segt megoldani a helyzetet:

A kvetkez csomagoknak teljestetlen fggsgei vannak:
 freemind: Fgg ettl: j2re1.4 de az nem telepthet vagy
 java2-runtime de az nem telepthet
E: Trtt csomagok



freemind depends on j2re1.4 and java2-runtime, but they are unavailable.

Yours sincerely,
Tth Andrs




--

Tisztelettel: / Yours sincerely,
 Andrew Toth
 BMF-NIK, BMF-Humn
 [EMAIL PROTECTED]
 MSN: [EMAIL PROTECTED]
 ICQ: 311-837-92







Bug#340482: kde: Depends: kde-amusements but it is not going to be installed

2005-11-23 Thread iv

Package: kde-amusements
Severity: normal

after running `apt-get install kde` i get a message about broken
packages

i tried to install required packeges and found that kde requires a
package libboost-python1.33.0 which belongs to unstable release

some additional info:

#apt-get instal kde
Reading package lists...
Building dependency tree...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 kde: Depends: kde-amusements but it is not going to be installed
  Depends: kdeaddons but it is not installable
E: Broken packages


#apt-get install kde-amusements
Reading package lists...
Building dependency tree...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 kde-amusements: Depends: kdeedu but it is not going to be installed
E: Broken packages


#apt-get install kdeedu
Reading package lists...
Building dependency tree...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.


Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 kdeedu: Depends: kig (= 4:3.4.2-2.1) but it is not going to be
installed
E: Broken packages


#apt-get install kig
Reading package lists...
Building dependency tree...
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 kig: Depends: libboost-python1.33.0 (= 1.33.0-1) but it is not
installable
E: Broken packages


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



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



Bug#339342: module-assistant: can't use SELECT item in dialog

2005-11-23 Thread Sebastian Bremicker
Followup-For: Bug #339342
Package: module-assistant
Version: 0.10

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

 It seemed there is some message like  unable to locale package ... But
 it is too fast, i can't get the whole message.  

With my terminal here I can scroll upwards, I have the same problem
with select, it misses some packages, which are appear to be deleted
in sid:

W: Kann Paket ftpfs-src nicht finden
W: Kann Paket xdslusb-source nicht finden
W: Kann Paket plex86-kernel-src nicht finden
W: Kann Paket e100-source nicht finden
W: Kann Paket loop-aes-ciphers-source nicht finden
W: Kann Paket cryptoloop-source nicht finden
W: Kann Paket xlibmesa-drm-src nicht finden
W: Kann Paket ftape-source nicht finden
W: Kann Paket cryptoapi-core-source nicht finden

Some of these packages are in sarge or woody, but most of them I do not
find via packages.debian.org.

As I'm new to m-a (former make-kpkg modules_image user), I don't have
any clues how to fix this myself, sorry.

Ciao

Sebastian

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

Versions of packages module-assistant depends on:
ii  libtext-wrapi18n-perl 0.06-4 internationalized
substitute of Te ii  perl  5.8.7-8Larry
Wall's Practical Extraction

Versions of packages module-assistant recommends:
ii  liblocale-gettext-perl1.05-1 Using libc functions for
internati

-- no debconf information


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



Bug#340250: clisp: Package contains invalid link for base/lispinit.mem

2005-11-23 Thread Robin Verduijn
Ehm... why doesn't clisp declare a dependency on common-lisp-controller anymore?

On Wed, Nov 23, 2005 at 05:33:22AM +0100, Peter Van Eynde wrote:
 On Wednesday 23 November 2005 02:07, Robin wrote:
  What package is /usr/sbin/register-common-lisp-implementation supposed to
  be in? It's not in clisp or clisp-dev.
 
 common-lisp-controller get version = 4.26 or the failure to configure an 
 implementation will not be reported back to dpkg.
 
 Groetjes, Peter
 
 -- 
 signature -at- pvaneynd.mailworks.org 
 http://www.livejournal.com/users/pvaneynd/
 God, root, what is difference? Pitr | God is more forgiving. Dave 
 Aronson| 
 


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



Bug#340483: postgresql-common: Wrongly declares PG 8.1 is obsolete

2005-11-23 Thread Oliver Elphick
Package: postgresql-common
Version: 34
Severity: normal

When configuring postgresql-common I get this message:

The PostgreSQL version 8.1 is obsolete, but you still have the server
and/or client package installed...

Since 8.1 is the very latest, this is wrong :-)

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

Versions of packages postgresql-common depends on:
ii  adduser   3.79   Add and remove users and groups
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  lsb-base  3.0-11 Linux Standard Base 3.0 init scrip

Versions of packages postgresql-common recommends:
ii  openssl   0.9.8a-4   Secure Socket Layer (SSL) binary a

-- debconf information:
  postgresql-common/obsolete-major:


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



Bug#340484: mantis: [INTL:sv] Swedish debconf templates translation

2005-11-23 Thread Daniel Nylander
Package: mantis
Version: 0.19.2-4
Severity: wishlist
Tags: patch l10n


Here is the swedish translation of the debconf template for mantis.

-- 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.13.2
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=ISO-8859-1)
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: mantis 0.19.2-4\n
Report-Msgid-Bugs-To: \n
POT-Creation-Date: 2005-01-25 23:50+0100\n
PO-Revision-Date: 2005-11-23 19:47+0100\n
Last-Translator: Daniel Nylander [EMAIL PROTECTED]\n
Language-Team: Swedish [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=iso-8859-1\n
Content-Transfer-Encoding: 8bit\n
X-Poedit-Language: Swedish\n
X-Poedit-Country: SWEDEN\n
X-Poedit-SourceCharset: iso-8859-1\n

#. Type: boolean
#. Description
#: ../mantis.templates:4
msgid Automatically create Mantis configuration files?
msgstr Automatiskt skapa Mantis konfigurationsfiler?

#. Type: boolean
#. Description
#: ../mantis.templates:9
msgid Automatically run database update script?
msgstr Köra databasskriptet för uppdatering automatiskt?

#. Type: boolean
#. Description
#: ../mantis.templates:9
msgid If you are upgrading Mantis from an older upstream version, the database 
structure needs to be updated. This package can perform this task 
automatically.
msgstr Om du uppgraderar Mantis från en äldre uppströmsversion behöver 
databasstrukturen uppdateras. Detta paket kan genomföra denna uppgift 
automatiskt.

#. Type: boolean
#. Description
#: ../mantis.templates:9
msgid The database will be backed up to prevent data loss.
msgstr Databasen kommer att säkerhetskopieras för att förhindra att data 
förloras.

#. Type: string
#. Description
#: ../mantis.templates:19
msgid Database server for Mantis' database
msgstr Databasserver för Mantis databas

#. Type: string
#. Description
#: ../mantis.templates:24
msgid On what port does the database server listen?
msgstr På vilken port lyssnar databasserver?

#. Type: string
#. Description
#: ../mantis.templates:29
msgid Mantis database name
msgstr Mantis databasnamn

#. Type: string
#. Description
#: ../mantis.templates:34
msgid Base url for Mantis
msgstr Bas URL för Mantis

#. Type: string
#. Description
#: ../mantis.templates:34
msgid Enter the complete url to access Mantis.
msgstr Ange den kompletta URLen till Mantis.

#. Type: string
#. Description
#: ../mantis.templates:40
msgid Mantis administrator email address
msgstr E-postaddress till Mantis-administratören

#. Type: string
#. Description
#: ../mantis.templates:45
msgid Webmaster email address
msgstr E-postaddress till webmaster

#. Type: string
#. Description
#: ../mantis.templates:50
msgid \From:\ address for bug reports emails
msgstr \Från:\ address för e-postade buggrapporter

#. Type: string
#. Description
#: ../mantis.templates:50
msgid All reported bugs are sent to developers and managers will use this 
address in the \From:\ header
msgstr Alla rapporterade buggar skickas till utvecklarna och underhållarna 
kommer att använda denna adress i \Från:\-huvudet

#. Type: string
#. Description
#: ../mantis.templates:57
msgid Email address for bounce-handling
msgstr E-postaddress för hantering av studsand e-post

#. Type: string
#. Description
#: ../mantis.templates:57
msgid Bounced mail is directed to this address. Typically, this is set to the 
administrator's email address.
msgstr E-post som studsar skickas till denna adress. Vanligtvis är denna satt 
till administratörens e-postaddress.

#. Type: password
#. Description
#: ../mantis.templates:63
msgid Mantis administrator password
msgstr Lösenord för Mantis-administratören

#. Type: password
#. Description
#: ../mantis.templates:63
msgid The Mantis default installation includes an administrator account 
\administrator\ with password \root\. Please enter a different password for 
this account here. If you choose not to enter a password, then the 
\administrator\ account will be disabled.
msgstr Standardinstallation av Mantis inkluderar ett administratörskonto 
\administrator\ med lösenord \root\. Vänligen ange ett nytt lösenord för 
detta konto här. Om du väljer att inte ange ett lösenord kommer 
\administrator\-kontot att stängas av.

#. Type: password
#. Description
#: ../mantis.templates:63
msgid The password will not be stored in the Debconf database permanently.
msgstr Lösenordet kommer inte att lagras permanent i 

<    1   2   3   4   >