Bug#378535: Ubuntu package

2007-07-17 Thread ajdlinux

I'm no longer working on it.

On 7/17/07, Saša Bodiroža [EMAIL PROTECTED] wrote:

Hello, I'm currently making a Jabbin package for the Ubuntu universe repo.
I'll submit it to Debian when I finish it if nobody else is working on it.

Saša




--
Andrew Donnellan 
ajdlinuxATgmailDOTcom (primary)ajdlinuxATexemailDOTcomDOTau (secure)
http://andrewdonnellan.comhttp://ajdlinux.wordpress.com
[EMAIL PROTECTED]hkp://subkeys.pgp.net 0x5D4C0C58
   http://linux.org.auhttp://debian.org
   Spammers only === [EMAIL PROTECTED] ===



Bug#426018: [Pkg-xfce-devel] Bug#426018: intent to NMU

2007-07-17 Thread Yves-Alexis Perez
On lun, 2007-07-16 at 16:04 -0600, dann frazier wrote:
 usertag 426018 + intend-to-nmu
 thanks
 
 hey,
   As this bug has been open with a patch for over a month without a
 rejection from the maintainer, I intend to NMU the associated package
 in a week's time (or sooner, if requested by the maintainer).
 
 If you do not wish for this NMU to occur, please send a follow-up in
 the bug report stating as such or, better yet, fix it in an MU :)

This bug is fixed in our svn since may 26, but it has not been uploaded
yet. I can't upload it myself but I guess huggie or ema can do it so we
can do a MU.

Thanks,
-- 
Yves-Alexis



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



Bug#433028: hibernate shouldn't need s2ram -f on UNSURE systems

2007-07-17 Thread Andrew Pimlott
On Sat, Jul 14, 2007 at 11:08:30AM +0200, martin f krafft wrote:
 also sprach Andrew Pimlott [EMAIL PROTECTED] [2007.07.13.2224 +0200]:
  One solution would be for hibernate to recognize the 0x20 exit status
  from s2ram -n.  There could be an option USuspendRamUnsureOk yes
  that tells hibernate to proceed in this case, and not pass -f to s2ram.
  Just an idea, maybe you know a better way.
 
 Good idea. I've implemented this; does the following patch work for
 you?

Not quite--the unsure check should be in EnsureUSuspendCapable, since
-n mode is the only place where s2ram exits with a non-zero status for
unsure systems.  Here is an alternative, that I've quickly tested, but
be warned that I don't do much shell scripting.

Andrew

--- ususpend.bak2007-07-16 21:09:42.0 -0700
+++ ususpend2007-07-16 23:03:21.0 -0700
@@ -6,6 +6,7 @@
 
 AddConfigHelp USuspendMethod disk|ram|both Enables use of the uswsusp 
suspend method of newer kernels (= 2.6.17rc1)
 AddConfigHelp USuspendRamForce boolean Passes the -f flag to s2ram to 
force suspending even if the machine is not recognised
+AddConfigHelp USuspendRamUnsureOk boolean Instructs s2ram to continue 
when it's unsure about the system type, thus not requiring -f to be passed
 AddConfigHelp USuspendRamVbeSave boolean Passes the -s flag to s2ram to 
save VBE state before suspending and restore after resume
 AddConfigHelp USuspendRamVbePost boolean Passes the -p flag to s2ram to 
VBE POST the graphics card after resume
 AddConfigHelp USuspendRamVbeMode boolean Passes the -m flag to s2ram to 
get VBE mode before suspend and set it after resume
@@ -18,6 +19,7 @@
 USUSPEND_DEVICE=/dev/snapshot
 USUSPEND_PROG=s2disk
 USUSPEND_RAM_FORCE=0
+USUSPEND_RAM_UNSUREOK=0
 USUSPEND_RAM_VBESAVE=0
 USUSPEND_RAM_VBEPOST=0
 USUSPEND_RAM_VBEMODE=0
@@ -49,6 +51,9 @@
ususpendramforce)
BoolIsOn $1 $2  USUSPEND_RAM_FORCE=1 || return 0
;;
+   ususpendramunsureok)
+   BoolIsOn $1 $2  USUSPEND_RAM_UNSUREOK=1 || return 0
+   ;;
ususpendramvbesave)
BoolIsOn $1 $2  USUSPEND_RAM_VBESAVE=1 || return 0
;;
@@ -110,10 +115,21 @@
vecho 0 $USUSPEND_PROG not installed.
return 2
 fi
-if [ $USUSPEND_PROG = s2ram ]  [ $USUSPEND_RAM_FORCE -eq 0 ] \
-! $USUSPEND_PROG -n /dev/null; then
-   vecho 0 $USUSPEND_PROG: unknown machine, see s2ram(8) and the 
USuspendRamForce option
-   return 2
+if [ $USUSPEND_PROG = s2ram ]  [ $USUSPEND_RAM_FORCE -eq 0 ]; then
+   $USUSPEND_PROG -n /dev/null
+   ret=$?
+   case $ret/$USUSPEND_RAM_UNSUREOK in
+   0/*) :;;
+   32/1) :;; # unsure, but USuspendRamUnsureOk passed
+   32/*)
+   vecho 0 $USUSPEND_PROG: unsure about your machine, see the 
USuspendRamUnsureOk option
+   return 2
+   ;;
+   *)
+   vecho 0 $USUSPEND_PROG: unknown machine, see s2ram(8) and the 
USuspendRamForce option
+   return 2
+   ;;
+   esac
 fi
 if ! test -f $USUSPEND_STATE_FILE ; then
vecho 0 Your kernel does not have power management built in.



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



Bug#335483: Sorted out the problem - sort of....

2007-07-17 Thread Andreas Feldner
Am Sonntag, 15. Juli 2007 17:45 schrieben Sie:

[...]
 Please could you verify if this problem is fixed with the latest
 Gutenprint packages (5.0.1) in testing or unstable?  Hopefully the
 Alpha buildd has been fixed in the interim.

Hi,

no, unfortunately not. After installing 5.0.1 the following error is back in 
the log files:

E [17/Jul/2007:08:13:27 +0200] [Job 163] Gutenprint: Buffer overflow: limit 
544, actual 567, count 30

Of course, nothing will print...

Yours,
Andreas.

-- 
Dr. Andreas Feldner
Plinganserstr. 49
81369 München


pgprBA07lQBoC.pgp
Description: PGP signature


Bug#431540: [Pkg-alsa-devel] Bug#431540: lib32asound2: Cannot open shared library /usr/lib/alsa-lib/libasound_module_pcm_empty.so

2007-07-17 Thread Elimar Riesebieter
On Tue, 17 Jul 2007 the mental interface of
Adrian Bastholm told:

 Hello,
 The advice in Your last post doesn't help
 (http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg366511.html)
 
 I still get 
 ALSA lib pcm_plug.c:1189:(_snd_pcm_plug_open) Unknown field hint
 ALSA lib pcm.c:2106:(snd_pcm_open_conf) Cannot open shared
 library /usr/lib/alsa-lib/libasound_module_pcm_empty.so
 
 when running 'aoss firefox' and trying to watch a flash video

Did you tried to configure your card with alsaconf?

Elimar


-- 
  Excellent day for drinking heavily. 
  Spike the office water cooler;-)


signature.asc
Description: Digital signature


Bug#140963: Updated Patch

2007-07-17 Thread Phil Miller

package ssh
reassign 140963 openssh-server 1:4.6p1-4
thanks

Attached is an updated version of the patch supplied by Vincent
Bernat. I've tested it on my own machine, with and without
sshd_not_to_be_run, and it appears to work correctly.

Phil
--- ssh.init.1:4.6p1-4	2007-07-16 23:02:56.0 -0700
+++ ssh.init.new	2007-07-16 23:32:31.0 -0700
@@ -28,13 +28,15 @@
 }
 
 check_for_no_start() {
-# forget it if we're trying to start, and /etc/ssh/sshd_not_to_be_run exists
-if [ -e /etc/ssh/sshd_not_to_be_run ]; then 
-	if [ $1 = log_end_msg ]; then
+# Bail if /etc/ssh/sshd_not_to_be_run exists and we're not being forced
+if [ -e /etc/ssh/sshd_not_to_be_run -a -z $NOCHECK ]; then 
+	if [ $1 = restart ]; then
 	log_end_msg 0
+	echo
 	fi
 	if ! run_by_init; then
 	log_action_msg OpenBSD Secure Shell server not in use (/etc/ssh/sshd_not_to_be_run)
+	log_action_msg Use \force-$1\ instead of \$1\ if you really want to use it
 	fi
 	exit 0
 fi
@@ -70,7 +72,7 @@
 
 case $1 in
   start)
-	check_for_no_start
+	check_for_no_start $1
 	check_dev_null
 	log_daemon_msg Starting OpenBSD Secure Shell server sshd
 	check_privsep_dir
@@ -89,8 +91,8 @@
 	fi
 	;;
 
-  reload|force-reload)
-	check_for_no_start
+  reload)
+	check_for_no_start $1
 	check_config
 	log_daemon_msg Reloading OpenBSD Secure Shell server's configuration sshd
 	if start-stop-daemon --stop --signal 1 --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd; then
@@ -105,7 +107,7 @@
 	check_config
 	log_daemon_msg Restarting OpenBSD Secure Shell server sshd
 	start-stop-daemon --stop --quiet --oknodo --retry 30 --pidfile /var/run/sshd.pid
-	check_for_no_start log_end_msg
+	check_for_no_start $1
 	check_dev_null log_end_msg
 	if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then
 	log_end_msg 0
@@ -125,7 +127,7 @@
 	case $RET in
 	0)
 		# old daemon stopped
-		check_for_no_start log_end_msg
+		check_for_no_start $1
 		check_dev_null log_end_msg
 		if start-stop-daemon --start --quiet --oknodo --pidfile /var/run/sshd.pid --exec /usr/sbin/sshd -- $SSHD_OPTS; then
 		log_end_msg 0
@@ -146,8 +148,13 @@
 	esac
 	;;
 
+  force-*)
+	export NOCHECK=1
+	$0 $(echo $1 | sed 's/^force-//')
+	;;
+
   *)
-	log_action_msg Usage: /etc/init.d/ssh {start|stop|reload|force-reload|restart|try-restart}
+	log_action_msg Usage: /etc/init.d/ssh {start|stop|reload|restart|try-restart}
 	exit 1
 esac
 


Bug#432043: closed by [EMAIL PROTECTED] (Steve M. Robbins) (Bug#432043: fixed in ipe 6.0pre28-4)

2007-07-17 Thread Frank Küster
Steve M. Robbins [EMAIL PROTECTED] wrote:

 I'm open to being persuaded otherwise.  Let me know how you feel.

I haven't tried ipe (yet), but I'd rather be able to try it out without
text than not at all.  But it's your take, you're the maintainer.  

Regards, Frank

-- 
Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#379651: texlive-latex-extra: More missing docs: makecmds and program-demo

2007-07-17 Thread Frank Küster
Reuben Thomas [EMAIL PROTECTED] wrote:

 On Sun, 15 Jul 2007, Frank Küster wrote:

 Reuben Thomas [EMAIL PROTECTED] wrote:

 Package: texlive-latex-extra
 Version: 2007-3
 Followup-For: Bug #379651

 Both these (LaTeX) packages lack the relevant (built) documentation,
 at least in texlive 2007 as currently shipped in Debian.

 These two need to be fixed by asking the upstream authors (if they
 exist) to put these files on CTAN.

 I've now done this. I'll update with responses as they come in.

Thank you.  This is a great help to us - we're simply not able to do all
the communication with upstream authors ourselves.

Kind regards, Frank
-- 
Frank Küster
Single Molecule Spectroscopy, Protein Folding @ Inst. f. Biochemie, Univ. Zürich
Debian Developer (teTeX/TeXLive)



Bug#432033: dpkg: error processing med-tools (--configure)

2007-07-17 Thread Andreas Tille

Hi,

as you might have noticed I reassigned the bug to cdd-common which
in fact contains the code that leads to the problem below.


Setting up med-tools (0.12) ...
Adding menu for user users of med ...
Unknown id: users
dpkg: error processing med-tools (--configure):
subprocess post-installation script returned error exit status 1
 Errors were encountered while processing:
  med-tools
  E: Sub-process /usr/bin/dpkg returned an error code (1)


To track down this problem I would need some help to fix it.
It seems that your /etc/passwd is a little bit brocken because
there seems to be invalid entries (users).  Could you please
send me this file in private Mail (there is no need to publish
it in the BTS database for confidence reasons).  Perhaps even
the output of

   grep users /etc/passwd

might be sufficient.

It also would be helpful if you would tell me whether you are
using NIS or LDAP for user authentication.

Kind regards and thanks for your bug report

Andreas.

--
http://fam-tille.de


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



Bug#433423: fetchmail: please build with gssapi

2007-07-17 Thread Peter Palfrader
Package: fetchmail
Version: 6.3.6-1
Severity: normal

The default binary package lacks support for kerberos via gssapi.
Please build --with-gssapi by default.

Peter


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



Bug#432142: Found the panic kern.log

2007-07-17 Thread Bastian Blank
On Tue, Jul 17, 2007 at 08:26:49AM +0800, Andrew Buckeridge wrote:
 Only the crons running at this time.

The dump shows
| TASK = c1c86770[3008] 'nmbd' THREAD: d7816000
| TASK = dffc0c30[4643] 'smokeping' THREAD: c1d68000

So there is at least a nmbd and smokeping running.

Bastian

-- 
Extreme feminine beauty is always disturbing.
-- Spock, The Cloud Minders, stardate 5818.4


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



Bug#433408: /usr/bin/uscan: sf redirector broken

2007-07-17 Thread Filippo Giunchedi
On Tue, Jul 17, 2007 at 09:47:57AM +1000, Brian May wrote:
 Package: devscripts
 Version: 2.9.26
 Severity: normal
 File: /usr/bin/uscan
 
 
 I used the instructions at http://dehs.alioth.debian.org/uscan.html to create
 the following debian/watch file:

I'm not sure but looks like a sourceforge (temporary?) problem, for example:

wget http://surfnet.dl.sourceforge.net/sourceforge/dar/

gives a redirection loop, so either sf changed something or this is a real
problem.

as of today I still haven't found a reliable/sane way to get a file listing out
of sourceforge mirror system, ideas welcome :)

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

Caelum, non animo mutant, qui trans mare currunt
Who crosses the sea changes the sky, not the soul.
-- Oratius


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



Bug#393079: update-grub: configurable generation of savedefault entries

2007-07-17 Thread Andreas Beckmann

Hi,

I rediffed the patch against 0.97-29 (didn't apply any longer since some 
code had been moved in update-grub) and enabled it by default in order 
not to change the default behaviour of update-grub.


Andreas
--- a/debian/update-grub2007-07-17 08:37:46.0 +0200
+++ b/debian/update-grub2007-07-17 08:41:59.0 +0200
@@ -330,6 +330,9 @@
 # should grub create a memtest86 entry
memtest86=true
 
+# should grub add savedefault to default boot options
+   savedefault=true
+
 # stores the command line arguments
command_line_arguments=$1
 
@@ -753,6 +756,8 @@
 # Extract the updatedefaultentry option
 updatedefaultentry=$(GetMenuOpt updatedefaultentry $updatedefaultentry)
 
+# Extract the savedefault option
+savedefault=$(GetMenuOpt savedefault $savedefault)
 
 # Generate the menu options we want to insert
 buffer=$(tempfile)
@@ -848,6 +853,11 @@
 echo # updatedefaultentry=$updatedefaultentry  $buffer
 echo  $buffer
 
+echo ## should update-grub add savedefault to the default options  $buffer
+echo ## can be true or false  $buffer
+echo # savedefault=$savedefault  $buffer
+echo  $buffer
+
 echo ## ## End Default Options ##  $buffer
 echo  $buffer
 
@@ -983,7 +993,7 @@
 else
   kernel=/boot/loader
 fi
-write_kernel_entry$grub_root_device $kerneltrue 

+write_kernel_entry$grub_root_device $kernel
$savedefault 
   ;;
 esac
 
@@ -1023,7 +1033,7 @@
echo Found Xen hypervisor $hypervisorVersion,  kernel: 
$kernel 2
 
write_kernel_entry $kernelVersion '' '' 
$grub_root_device \
- $kernel $currentOpt $xenkopt '' $initrd true '' 
\
+ $kernel $currentOpt $xenkopt '' $initrd 
$savedefault '' \
  Xen $hypervisor $hypervisorVersion $xenhopt
counter=$(($counter + 1))
fi
@@ -1036,7 +1046,7 @@
echo Found Xen hypervisor $hypVersion,  kernel: 
$kernel 2
 
write_kernel_entry $kernelVersion '' '' 
$grub_root_device \
- $kernel $currentOpt $xenkopt '' $initrd true '' 
\
+ $kernel $currentOpt $xenkopt '' $initrd 
$savedefault '' \
  Xen $kernel_dir/$hypervisor $hypVersion $xenhopt
counter=$(($counter + 1))
done
@@ -1089,7 +1099,7 @@
[ $counter -eq 1 ]  do_lockold=false
 
write_kernel_entry $kernelVersion   $grub_root_device $kernel 
\
-   $currentOpt $defoptions  $initrd true $do_lockold
+   $currentOpt $defoptions  $initrd $savedefault 
$do_lockold
 
# insert the alternative boot options
if test ! x$alternative = xfalse ; then
@@ -1101,7 +,7 @@
test x$lockalternative = xtrue  do_lockold=false
write_kernel_entry $kernelVersion $descr 
$lockalternative \
$grub_root_device $kernel $currentOpt 
$suffix $initrd \
-   true $do_lockold
+   $savedefault $do_lockold
 
done
fi
@@ -1114,9 +1124,11 @@
 title  Chainload into GRUB 2
 root   $grub_root_device
 kernel $grub2name
-savedefault
-
 EOF
+   if test x$savedefault = xtrue ; then
+   echo savedefault  $buffer
+   fi
+   echo  $buffer
 fi
 
 memtest86names=memtest86 memtest86+


Bug#432841: Acknowledgement (konqueror: Konqueror displays chinese looking symbols in new tab and metabar)

2007-07-17 Thread Sjoerd Hardeman
Hi,

I found that the problems were in the selection of the wrong character
set. Apparently the automatic character set selection doesn't work on
this machine. So the bug report changes to a flaw in the automatic
character set selection.

Regards,
Sjoerd Hardeman


Debian Bug Tracking System schreef:
 Thank you for the problem report you have sent regarding Debian.
 This is an automatically generated reply, to let you know your message has
 been received.  It is being forwarded to the package maintainers and other
 interested parties for their attention; they will reply in due course.
 
 Your message has been sent to the package maintainer(s):
  Debian Qt/KDE Maintainers [EMAIL PROTECTED]
 
 If you wish to submit further information on your problem, please send
 it to [EMAIL PROTECTED] (and *not* to
 [EMAIL PROTECTED]).
 
 If you have filed this report in error and wish to close it, please
 send mail to [EMAIL PROTECTED] with an explanation
 why the bug report should be closed.
 
 Please do not reply to the address at the top of this message,
 unless you wish to report a problem with the Bug-tracking system.
 
 Debian bug tracking system administrator
 (administrator, Debian Bugs database)


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



Bug#433424: python-epydoc: bad identifier error when module names with a - (dash) are imported

2007-07-17 Thread Cameron Dale
Package: python-epydoc
Version: 3.0~beta1-1
Severity: minor


A python file can import a module whose name contains a - (dash), using
the __import__ builtin function (just doing a normal import fails, as 
identifiers cannot contain dashes):

DebTorrentClient = __import__('debtorrent-client', globals(), locals(), [])

Running epydoc on a file with an import like this generates this error:

UNEXPECTED ERROR:
Bad identifier 'debtorrent-client'

Running in debug mode gets this stack trace:

  [Traceback (most recent call last):
  File /usr/bin/epydoc, line 13, in ?
cli()
  File /var/lib/python-support/python2.4/epydoc/cli.py, line 946, in cli
main(options, names)
  File /var/lib/python-support/python2.4/epydoc/cli.py, line 738, in main
exclude_parse=exclude_parse)
  File /var/lib/python-support/python2.4/epydoc/docbuilder.py, line 205, in 
build_doc_index
doc_pairs = _get_docs_from_items(items, options)
  File /var/lib/python-support/python2.4/epydoc/docbuilder.py, line 333, in 
_get_docs_from_items
doc_pairs.append(_get_docs_from_module_file(
  File /var/lib/python-support/python2.4/epydoc/docbuilder.py, line 525, in 
_get_docs_from_module_file
introspect_doc = introspect_docs(
  File /var/lib/python-support/python2.4/epydoc/docintrospecter.py, line 127, 
in introspect_docs
introspect_func(value, val_doc, module_name=module_name)
  File /var/lib/python-support/python2.4/epydoc/docintrospecter.py, line 267, 
in introspect_module
container = get_containing_module(child)
  File /var/lib/python-support/python2.4/epydoc/docintrospecter.py, line 672, 
in get_containing_module
return DottedName(value.__name__)
  File /var/lib/python-support/python2.4/epydoc/apidoc.py, line 117, in 
__init__
raise DottedName.InvalidDottedName(
epydoc.apidoc.InvalidDottedName: Bad identifier 'debtorrent-client'


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.18-4-vserver-amd64 (SMP w/1 CPU core)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-epydoc depends on:
ii  python2.4.4-6An interactive high-level object-o
ii  python-support0.6.3  automated rebuilding support for p

Versions of packages python-epydoc recommends:
ii  graphviz  2.8-2.6rich set of graph drawing tools
ii  gs-common 0.3.11 Common files for different Ghostsc
ii  python-tk 2.4.4-1Tkinter - Writing Tk applications 
ii  texlive-fonts-recommended 2007-4 TeX Live: Recommended fonts
ii  texlive-latex-base2007-4 TeX Live: Basic LaTeX packages
ii  texlive-latex-extra   2007-3 TeX Live: LaTeX supplementary pack
ii  texlive-latex-recommended 2007-4 TeX Live: LaTeX recommended packag

-- no debconf information


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



Bug#433417: openoffice hangs, takes all CPU when port 631 (CUPS) is in use

2007-07-17 Thread Rene Engelhard
Hi,

Kostas Evangelinos wrote:
 On occasion, nfs.mountd is able to bind to the CUPS port (631/tcp),
 which causes openoffice to think that CUPS is available on the system.
 It repeatedly tries to talk to it, hangs and takes all CPU.

And why is this a OOo bug? Of course OOo should not hang here, but
IMHO it's a bug in your system. 631 is IPP.
Point.
OOo has no businness talking anything else than IPP for 631, if
something else ran there (any you say nfs.mountd has that bug) *that*'s
buggy, not OOo.

If there also a bug for nfs.mountd filed?

 This is trivially reproducible by starting netcat (nc -l -p 631) and
 trying to save a document or manage printers in openoffice. Adding 
 export SAL_DISABLE_CUPS=1 to /etc/openoffice/openoffice.conf makes
 no difference.

That would mean I'd break my cups...

Gr??e/Regards,

Ren?
-- 
 .''`.  Ren? Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
   `-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73


signature.asc
Description: Digital signature


Bug#433426: valgrind: README.Debian outdated

2007-07-17 Thread Tshepang Lekhonkhobe

Package: valgrind
Version: 1:3.2.3-1
Severity: minor

Valgrind is currently compiled under kernel 2.4 and hence the NPTL
support is disabled.


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



Bug#433425: mutt: please build --with-gss

2007-07-17 Thread Peter Palfrader
Package: mutt
Version: 1.5.13-1.1.1
Severity: wishlist

Please build mutt --with-gss=/usr so that kerberos gssapi authentication
works.

Peter


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



Bug#433427: Critical privacy issue in gnome-screensaver - personal pictures may be shown

2007-07-17 Thread Artyom
Package: gnome-screensaver
Version: 2.14.3-3

The _default_ configuration of the screen saver
in Gnome invokes random screen saver. One of 
them shows some random pictures from you Home
folder. This may cause unpleasant issue when
the private and personal pictures will be 
accidentally shown on the screen of your laptop
or desktop PC. In some cases it may cause a
very bad results.

I think this is very critical bug in terms of
privacy and security.

I suggest to remove this screen saver from the
list of random screen savers on the PC.


Operating system: Debian Etch i386 Stable.

Thanks,
Artyom


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



Bug#433054: libafsauthent.so and libafsrpc.so shared libraries are not packaged

2007-07-17 Thread Anders Kaseorg
On Fri, 2007-07-13 at 18:43 -0700, Russ Allbery wrote:
 The libraries are not proper shared libraries with a stable SONAME and
 don't have a stable API, and therefore are not suitable for inclusion
 in Debian.
 
 What PAM module needs them?

Fair enough.  It's a PAM module I'm developing, but I think I found a
different way to get the functionality I need.  Feel free to close this.




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



Bug#433306: Bug#433387: Kernel can't find rootfs

2007-07-17 Thread maximilian attems
On Mon, Jul 16, 2007 at 11:17:51PM +0300, lasse wrote:
 Package: linux-image
 Version: 2.6.21-2-amd64

how about adding your info to your previously filed bug report,
instead of opening a new dup?
 
 After update from 2.6.18-4-amd64 to  2.6.21-2-amd64 kernel boots o.k. when I 
 changed manually 'root=/dev/hda1' to 'root=/dev/sda1' in grub/menu.lst.

this is due a new pata driver taking over instead of ide.


-- 
maks
 




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



Bug#433428: console-common: [INTL:th] Please update Thai debconf translation

2007-07-17 Thread Theppitak Karoonboonyanan

Package: console-common
Version: 0.7.69
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Please update Thai debconf translation, as attached.

- -- System Information:
Debian Release: lenny/sid
 APT prefers unstable
 APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=th_TH.UTF-8, LC_CTYPE=th_TH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages console-common depends on:
ii  console-data   2:1.02-2  Keymaps, fonts, charset maps, fall
ii  console-tools  1:0.2.3dbs-65 Linux console and font utilities
ii  debconf [debconf-2.0]  1.5.13Debian configuration management sy
ii  debianutils2.22.1Miscellaneous utilities specific t
ii  lsb-base   3.1-23.1  Linux Standard Base 3.1 init scrip

console-common recommends no packages.

- -- debconf information excluded

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

iD8DBQFGnHa1qgzR7tCLR/4RAjIfAKCe5qrzXYWWa/uAkW++U1yK2jdEpACZAQ1R
jsFWdWvfQeRs4wKQ/jRizd0=
=Yxck
-END PGP SIGNATURE-
# Thai translation of console-common.
# Copyright (C) 2006-2007 Software in the Public Interest, Inc.
# This file is distributed under the same license as the console-common package.
# Theppitak Karoonboonyanan [EMAIL PROTECTED], 2006-2007.
#
#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: console-common\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-07-15 09:31+0200\n
PO-Revision-Date: 2007-07-17 14:53+0700\n
Last-Translator: Theppitak Karoonboonyanan [EMAIL PROTECTED]\n
Language-Team: Thai [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Choices
#: ../templates.in:2001
msgid Select keymap from arch list
msgstr เลือกผังแป้นพิมพ์จากรายการชนิดเครื่อง

#. Type: select
#. Choices
#: ../templates.in:2001
msgid Don't touch keymap
msgstr ไม่ต้องเปลี่ยนผังแป้นพิมพ์

#. Type: select
#. Choices
#: ../templates.in:2001
msgid Keep kernel keymap
msgstr ใช้ผังแป้นพิมพ์ของเคอร์เนล

#. Type: select
#. Choices
#: ../templates.in:2001
msgid Select keymap from full list
msgstr เลือกผังแป้นพิมพ์จากรายการเต็ม

#. Type: select
#. Description
#: ../templates.in:2002
msgid Policy for handling keymaps:
msgstr นโยบายการจัดการผังแป้นพิมพ์:

#. Type: select
#. Description
#: ../templates.in:2002
msgid The keymap records the layout of symbols on the keyboard.
msgstr ผังแป้นพิมพ์จะแทนการจัดวางอักขระต่างๆ บนแป้นพิมพ์

#. Type: select
#. Description
#: ../templates.in:2002
msgid 
 - 'Select keymap from arch list': select one of the predefined keymaps\n
   specific for your architecture (recommended for non-USB keyboards);\n
 - 'Don't touch keymap': don't overwrite the keymap in /etc/console,\n
   which is maintained manually with install-keymap(8);\n
 - 'Keep kernel keymap': prevent any keymap from being loaded next time\n
   the system boots.\n
 - 'Select keymap from full list': list all the predefined keymaps.\n
   Recommended when using cross-architecture (often USB) keyboards.
msgstr 
 - 'เลือกผังแป้นพิมพ์จากรายการชนิดเครื่อง': เลือกผังแป้นพิมพ์ที่กำหนดไว้โดยเฉพาะเจาะจง\n
   กับชนิดเครื่อง (ขอแนะนำถ้าคุณใช้แป้นพิมพ์ที่ไม่ใช่ USB)\n
 - 'ไม่ต้องเปลี่ยนผังแป้นพิมพ์': ไม่ต้องเขียนทับผังแป้นพิมพ์ใน /etc/console\n
   ซึ่งคุณกำหนดเองด้วยคำสั่ง install-keymap(8)\n
 - 'ใช้ผังแป้นพิมพ์ของเคอร์เนล': ไม่ให้มีการโหลดผังแป้นพิมพ์ใดๆ อีกเมื่อบูตระบบ\n
 - 

Bug#355125: i810 X server dies with Active ring not flushed error

2007-07-17 Thread Eric
I installed the version you mentioned right away, it ran fine up until today, 
when it crashed again.

Eric


On Fri, 29 Jun 2007 19:30:29 +0200
Brice Goglin [EMAIL PROTECTED] wrote:

 Eric wrote:
  It still happens occasionally (once every 2 weeks), so I waited to get a 
  fresh crash before replying.  It only has the fatal error when running 
  firefox (and now when running ice-weasel).  Attached is the log of the 
  latested crash.

 
 Ok, thanks. I see you are running a regular Debian 2.6.18 kernel with
 xserver-xorg-core 1.3. If you didn't already try, you could possibly try
 xserver-xorg-video-intel 2:2.0.0-5 currently in experimental, but I
 don't really expect much. There are very few i810 chipsets out there, so
 it's unlikely to be fixed.
 
 https://bugs.freedesktop.org/show_bug.cgi?id=1794 seems to talk about
 the same problem, with 2.6.8 or .9 kernels. I'll post a comment there.
 
 Brice


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



Bug#295300: gdm: Same error when entering sleep (echo mem /sys/power/state)

2007-07-17 Thread Josselin Mouette
Le lundi 16 juillet 2007 à 18:13 -0400, Jamie McClelland a écrit : 
 Package: gdm
 Version: 2.18.2-1
 Followup-For: Bug #295300
 
 
 I'm getting the same error:
 
 gdm_slave_xioerror_handler: Fatal X error - Restarting :0
 
 When I put my system to sleep. It causes gdm to restart and causes the bash
 script that puts the system to sleep to freeze, hence the computer does not go
 to sleep, but presents a new gdm login.

This is most likely another issue in the X server; this has nothing to
do with GDM.

Could you please attach the /var/log/Xorg.0.log.old file that appears
right after this happens?
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.




Bug#433430: error compiling against liblinphone1-dev

2007-07-17 Thread Alex Samad
Package: liblinphone1-dev
Version: 1.7.1-2
Severity: grave
Justification: renders package unusable

Hi

Trying to compile yeaphone, which compiles against linphone. I have
installed liblinphone1-dev and when I try and compile against it I get
this error 

/usr/include/linphone/linphonecore.h:26:37: error:
mediastreamer2/mscommon.h: No such file or directory

I can't find mediastreamer2/mscommon.h on my machine - nor does it seem
to be part of this or related packages

I did find it in libmediastreamer0-dev, maybe it should be made a
dependant

Thanks


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable'), (100, 'unstable'), (50, 
'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.20-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_AU.utf8, LC_CTYPE=en_AU.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages liblinphone1-dev depends on:
ii  libasound2-dev1.0.14a-2  ALSA library development files
ii  libjack0.100.0-dev0.103.0-6  JACK Audio Connection Kit (librari
ii  liblinphone1  1.7.1-2linphone web phone's library (supp
ii  libortp5-dev  1.7.1-2Real-time Transport Protocol stack
ii  libosip2-dev  2.2.2-3.1  development files for the SIP libr
ii  libsamplerate0-dev0.1.2-5development files for audio rate c
ii  libspeex-dev  1.1.12-3   The Speex Speech Codec

liblinphone1-dev recommends no packages.

-- no debconf information


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



Bug#433429: tasksel: Remove pango-libthai from thai-desktop task

2007-07-17 Thread Theppitak Karoonboonyanan

Package: tasksel
Version: 2.68
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


pango-libthai has been deprecated and has been requested for removal
(bug #427129). So, it should be removed from thai-desktop task.

- -- System Information:
Debian Release: lenny/sid
 APT prefers unstable
 APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=th_TH.UTF-8, LC_CTYPE=th_TH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tasksel depends on:
ii  aptitude  0.4.5.4-1  terminal-based apt frontend
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
ii  liblocale-gettext-perl1.05-1 Using libc functions for internati
ii  tasksel-data  2.68   Official tasks used for installati

tasksel recommends no packages.

- -- debconf information excluded

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

iD8DBQFGnHoQqgzR7tCLR/4RAjeVAJ9El/Ta9nvY4DvsfYg748AS2TCH6ACcCpYn
TWwDn53ItwBtXQLYvX64j7A=
=oQz4
-END PGP SIGNATURE-


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



Bug#433306: Kernel can't find rootfs

2007-07-17 Thread maximilian attems
On Mon, Jul 16, 2007 at 11:37:38AM +0300, lasse wrote:
 Package: linux-image
 Version: 2.6.21-2-amd64
 
 Updated the kernel in testing but it can't boot, hangs saying:
 
 Begin: Waiting for root file system... ...
 
 Maybe initrd is not working right?

follow the steps on
http://wiki.debian.org/InitramfsDebug

without more information your bug report is useless.

regards

-- 
maks


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



Bug#433073: Please disable DirectFB's window backend buffer

2007-07-17 Thread Attilio Fiandrotti

Frans Pop wrote:

On Saturday 14 July 2007 11:15, Attilio Fiandrotti wrote:

DirectFB allows to set [1] the way the desktop window buffering
mechanism works by disabling the backend buffer.
The result, in my experiments, was saving some some hundreds KB of
memory with no noticeable drawbacks.


I'm not sure about this.
I've tested this change in VMWare and I get quite a lot of flashes when 
the display is updated in quick succession. The flashes are really 
noticeable and are not there without the patch, so it looks as if the 
window buffer does help to stabilize display updates in D-I.


I don't get that many flashes on my pc, but i guess the behaviour may be 
strictly hardware-dependant.
The flashes are due to the lack of a backend buffer and exploit the 
possible drawbacks i was talking about, as described in directfbrc man page.
Anyway, i don't feel compromising usability for some hundreds KB of 
memory saving, so if you don't think this patch should be applied, 
please just mark it as wontfix for future reference.
I hope to get considerable memory savings when DirectFB 1.0 is available 
[1].


regards

Attilio Fiandrotti

[1] http://lists.debian.org/debian-boot/2007/07/msg00355.html


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



Bug#433387: Kernel can't find rootfs

2007-07-17 Thread lasse
Frans Pop kirjoitti viestissään (lähetysaika tiistai, 17. heinäkuuta 2007 
00:08):
 On Monday 16 July 2007 22:17, lasse wrote:
  After update from 2.6.18-4-amd64 to  2.6.21-2-amd64 kernel boots o.k.
  when I changed manually 'root=/dev/hda1' to 'root=/dev/sda1' in
  grub/menu.lst.

 You should probably also update your /etc/fstab.

 What driver module does your system use for the harddisk controller?

From lsmod (I think these are the lines): 

pata_sis   20884  1
libata124960  2 ata_generic,pata_sis
scsi_mod  161208  5 sbp2,sg,sr_mod,sd_mod,libata

Machine is Asus 6KM laptop.



Bug#329680: new jabber version available

2007-07-17 Thread Sergei Golovan

Hi!

I'm not sure that it's easy to package 1.6.1 now. Debian includes
several jabberd14 based transports and components (packages
jabber-aim, jabber-muc, jabber-msn, jabber-yahoo, probably more) which
support was removed from jabberd14 (AFAIK) from about version 1.5.

Cheers!
--
Sergei Golovan


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



Bug#432722: gnome-rdp: rdesktop dependency?

2007-07-17 Thread Magnus Therning
On Mon, Jul 16, 2007 at 16:01:56 +0200, David Paleino wrote:
2007/7/14, Magnus Therning [EMAIL PROTECTED]:
On Sat, Jul 14, 2007 at 19:42:19 +0200, David Paleino wrote:
[..]
I'd also like to point out the tsclient, which works perfectly well
without rdesktop present, does list a dependency on rdesktop.

I think that it's a tsclient bug :-P

Haha, fair enough.

I continue to believe that gnome-rdp should have a different sort of
dependency on rdesktop though.  I'd suggest a 'recommends' or at least a
'suggests'.  The current alternative dependency is confusing:

  openssh-client | xtightvncviewer | rdesktop

On a philosophical level I'd argue that an alternative dependency
should only be used when all alternatives deliver the same kind of
functionality, e.g. in the case of libgnash0:
 
  gstreamer0.10-alsa | gstreamer0.10-audiosink

I haven't got the Debian Policy committed to memory though so I don't
know if there are any rules regarding this.

/M

-- 
Magnus Therning (OpenPGP: 0xAB4DFBA4)
[EMAIL PROTECTED] Jabber: [EMAIL PROTECTED]
http://therning.org/magnus

Sendmail and make are two well known programs that are pretty widely
regarded as being debugged into existence. That's why their command
languages are so poorly thought out and difficult to learn.  It's not
just you -- everyone finds them troublesome.
 -- Peter van der Linden, Expert C Programming, p. 220


pgp2s5Lr47QWB.pgp
Description: PGP signature


Bug#433433: typo in definition of AMD

2007-07-17 Thread Martin Michlmayr
Package: dict-foldoc
Version: 20070526-1
Severity: minor
Tags: patch

There's a typo in the definition of AMD:

--- Dictionary~ 2007-07-17 08:45:09.0 +
+++ Dictionary  2007-07-17 08:45:14.0 +
@@ -6568,7 +6568,7 @@
 
2. jargon According to Don Olivier
[EMAIL PROTECTED], his system manager came in to work one
-   morningn to find his IBM system down with a message on the
+   morning to find his IBM system down with a message on the
console that said AMD failure.  After he and the service rep
had puzzled over documentation for an hour or so they called
headquarters and eventually learned that it the failure was in

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


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



Bug#433431: [INTL:th] Please update Thai po-sections translation

2007-07-17 Thread Theppitak Karoonboonyanan

Package: menu
Version: 2.1.35
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Please update Thai po-sections translation, as attached.

- -- System Information:
Debian Release: lenny/sid
 APT prefers unstable
 APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=th_TH.UTF-8, LC_CTYPE=th_TH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages menu depends on:
ii  dpkg1.14.5   package maintenance system for Deb
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libgcc1 1:4.2-20070712-1 GCC support library
ii  libstdc++6  4.2-20070712-1   The GNU Standard C++ Library v3

menu recommends no packages.

- -- no debconf information

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

iD8DBQFGnIFOqgzR7tCLR/4RAtVOAJ9O59dU2gWulx+4cICNt22xDRpv8QCgiqUy
uRUzdZMhWCInkJ9zIUdU06k=
=hrHI
-END PGP SIGNATURE-
# Thai translation of Menu sections
# Copyright (C) 2006-2007 Software in the Public Interest, Inc.
# This file is distributed under the same license as the menu package.
# Theppitak Karoonboonyanan [EMAIL PROTECTED], 2006-2007.
#
msgid 
msgstr 
Project-Id-Version: menu-section 2.1.9-3\n
POT-Creation-Date: 2007-07-04 15:27+0100\n
PO-Revision-Date: 2007-07-17 17:04+0700\n
Last-Translator: Theppitak Karoonboonyanan [EMAIL PROTECTED]\n
Language-Team: Thai [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. First level entry 
#. Policy definition: Normal applications. This is a top-level
#. Examples: section, do not put entries here.
msgid Applications
msgstr โปรแกรม

#. Second level entry under Applications
#. Policy definition: Tools to aid people with disabilities or
#. for machines lacking usual input devices.
#. Examples: gok, yasr, dasher
msgid Accessibility
msgstr สิ่งอำนวยความสะดวก

#. Second level entry under Applications
#. Policy definition: Anything relating to HAM radio.
#. Examples: baken, hamsoft, twlog
msgid Amateur Radio
msgstr วิทยุสมัครเล่น

#. Second level entry under Applications
#. Policy definition: Interactive database programs, collection
#. managers, address books, bibliography tools, etc.
#. Examples: gaby, alexandria, mdbtools
msgid Data Management
msgstr การจัดการข้อมูล

#. Second level entry under Applications
#. Policy definition: Editors, other than office word processors,
#. for text-based information.
#. Examples: ksubtile, nano, hexedit
msgid Editors
msgstr เครื่องมือแก้ไข

#. Second level entry under Applications
#. Policy definition: Educational and training software.
#. Examples: gtypist, gcompris, quiz
msgid Education
msgstr การศึกษา

#. Second level entry under Applications
#. Policy definition: Software that allows you to run non-native
#. software or more than one OS at a time.
#. Examples: wine, dosemu, qemu
msgid Emulators
msgstr จำลอง

#. Second level entry under Applications
#. Policy definition: Tools for file management, archiving,
#. searching, CD/DVD burning, backup, etc.
#. Examples: file-roller, mc, baobab
msgid File Management
msgstr การจัดการแฟ้ม

#. Second level entry under Applications
#. Policy definition: 2D and 3D graphics manipulation software.
#. Examples: gimp, inkscape, imagemagick
msgid Graphics
msgstr รูปภาพ

#. Second level entry under Applications
#. Policy definition: Software that allows you to interface
#. with mobile devices (phones, PDAs, etc.).
#. Examples: kandy, gnokii, gnome-pilot
msgid Mobile Devices
msgstr อุปกรณ์พกพา

#. Second level entry under Applications
#. Policy definition: Network related software. This is a three-level
#. Examples: section, do not put entries directly here.
msgid Network
msgstr เครือข่าย

#. Third level entry under Network
#. Policy definition: Mail, USENET news, chat, instant messaging,
#. IP telephony, video conferencing software, etc.
#. Examples: xchat, gaim, mutt
msgid Communication
msgstr การสื่อสาร

#. Third level entry under Network
#. Policy definition: File transfer software such as download
#. managers, FTP clients, P2P clients, etc.
#. Examples: amule, gftp, d4x
msgid File Transfer
msgstr การถ่ายโอนแฟ้ม

#. #-#-#-#-#  - (menu-section 2.1.9-3)  #-#-#-#-#
#. Third level entry under Network
#. Policy definition: Network monitoring software.
#. Examples: gip, ettercap, iptstate
#. #-#-#-#-#  - (menu-section 2.1.9-3)  #-#-#-#-#
#. Third level entry under System
#. Policy definition: System information and monitoring tools, log viewers, etc.
#. Examples: top, hal-device-manager, gtkdiskfree
msgid Monitoring
msgstr 

Bug#433434: pilot-qof: [INTL:sv] Swedish PO translation update

2007-07-17 Thread Daniel Nylander
Package: pilot-qof
Severity: wishlist
Tags: patch l10n


Here is the updated Swedish translation for pilot-qof

Regards,
Daniel

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.17.4
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=UTF-8) (ignored: LC_ALL set to 
sv_SE)
Shell: /bin/sh linked to /bin/bash
# Swedish translation of pilot-qof.
# Copyright (C) 2006, 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the pilot-qof package.
# Daniel Nylander [EMAIL PROTECTED], 2006, 2007.
#
msgid 
msgstr 
Project-Id-Version: pilot-qof 0.1.0\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-07-11 17:21+0100\n
PO-Revision-Date: 2007-07-17 10: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=utf-8\n
Content-Transfer-Encoding: 8bit\n

#: ../src/qof-main.c:394
#, c-format
msgid %s: Error: Cannot exclude database \%s\ with option -e because option 
-d is set to include the database: \%s\. Use the '-l' command to see the full 
list of supported databases.\n
msgstr %s: Fel: Kan inte exkludera databasen \%s\ med flaggan -e för att 
flaggan -d är satt till att inkludera databasen: \%s\. Använd kommandot 
\-l\ för att se en fullständig lista över databaser som stöds.\n

#: ../src/qof-main.c:444
#, c-format
msgid 
\n
%s: You can use the supported database names with '%s -d' and in SQL queries 
(as the table name) with '%s -s|f'. Descriptions are shown only for 
readability.\n
msgstr 
\n
%s: Du kan använda de databasnamn som stöds med \%s -d\ och i SQL-frågor 
(som tabellnamnen) med \%s -s|f\. Beskrivningar visas endast för läsbarhet.\n

#: ../src/qof-main.c:448
msgid Name
msgstr Namn

#: ../src/qof-main.c:448
msgid Description
msgstr Beskrivning

#: ../src/qof-main.c:451
#, c-format
msgid 
\n
Use '%s -d database --explain' to see the list of fields within any 
supported database.
msgstr 
\n
Använd \%s -d databas --explain\ för att se fältlistan inom de databaser 
som stöds.

#: ../src/qof-main.c:453
#: ../src/qof-main.c:472
#, c-format
msgid 
\n
Thank you for using %s\n
\n
msgstr 
\n
Tack för att du använder %s\n
\n

#: ../src/qof-main.c:460
#, c-format
msgid Type: %s\tName: %s\n
msgstr Typ: %s\tNamn: %s\n

#: ../src/qof-main.c:469
#, c-format
msgid 
\n
Parameters of the %s database:\n
\n
msgstr 
\n
Parametrar för databasen %s:\n
\n

#: ../src/qof-main.c:588
#, c-format
msgid %s: There was an error reading the file '%s'.\n
msgstr %s: Det inträffade ett fel vid läsning av filen \%s\.\n

#. / \todo remove the translation marker - nothing to do
#. / then remove the %d and id output.
#: ../src/qof-main.c:633
#, c-format
msgid %s: %d %s\n
msgstr %s: %d %s\n

#: ../src/pilot-qof.c:142
#, c-format
msgid Unable to determine port to bind
msgstr Kunde inte bestämma port att binda till

#: ../src/pilot-qof.c:144
#: ../src/pilot-qof.c:163
#, c-format
msgid Please use --help for more information
msgstr Använd --help för mer information

#: ../src/pilot-qof.c:152
#, c-format
msgid Unable to create socket '%s'
msgstr Kunde inte skapa uttag \%s\

#: ../src/pilot-qof.c:161
#, c-format
msgid Unable to bind to port: %s
msgstr Kunde inte binda till port: %s

#: ../src/pilot-qof.c:170
#, c-format
msgid Listening for incoming connection on %s... 
msgstr Lyssnar efter inkommande anslutning på %s...

#: ../src/pilot-qof.c:177
#, c-format
msgid Error listening on %s
msgstr Fel vid lyssning på %s

#: ../src/pilot-qof.c:186
#, c-format
msgid Error accepting data on %s
msgstr Fel vid mottagning av data på %s

#: ../src/pilot-qof.c:193
#, c-format
msgid connected!
msgstr ansluten!

#: ../src/pilot-qof.c:199
#, c-format
msgid Error read system info on %s
msgstr Fel vid läsning av systeminformation på %s

#: ../src/pilot-qof.c:246
#, c-format
msgid WARNING: Unknown category '%s'%s.\n
msgstr VARNING: Okänd kategori \%s\%s.\n

#: ../src/pilot-qof.c:248
msgid , using 'Unfiled'
msgstr , använder \Unfiled\

#: ../src/pilot-qof.c:491
#, c-format
msgid %s: Unable to open %s database on Palm.\n
msgstr %s: Kunde inte öppna databasen %s på Palm.\n

#: ../src/pilot-qof.c:647
#, c-format
msgid %s: Error: Please specify a time period using -t.
msgstr %s: Fel: Ange en tidsperiod med -t.

#: ../src/pilot-qof.c:695
#, c-format
msgid %s: Error: Cannot exclude database \%s\ with option -e because option 
-d is set to the same database: \%s\
msgstr %s: Fel: Kan inte exkludera databas \%s\ med flaggan -e för att 
flaggan -d är satt till samma databas: \%s\

#: ../src/pilot-qof.c:722
msgid Unable to connect to the Palm
msgstr Kunde inte ansluta till Palmen

#: ../src/pilot-qof.c:727
msgid Unable to read Palm user info
msgstr Kunde inte läsa Palmens användarinformation

#: ../src/pilot-qof.c:736
msgid Unable to write user info
msgstr Kunde inte skriva användarinformation

#. Translators: each string is 

Bug#433435: [INTL:th] Add Thai translation for su-to-root

2007-07-17 Thread Theppitak Karoonboonyanan

Package: menu
Version: 2.1.35
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Please add Thai translation for menu su-to-root script, as attached.

- -- System Information:
Debian Release: lenny/sid
 APT prefers unstable
 APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=th_TH.UTF-8, LC_CTYPE=th_TH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages menu depends on:
ii  dpkg1.14.5   package maintenance system for Deb
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libgcc1 1:4.2-20070712-1 GCC support library
ii  libstdc++6  4.2-20070712-1   The GNU Standard C++ Library v3

menu recommends no packages.

- -- no debconf information

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

iD8DBQFGnIRMqgzR7tCLR/4RAt6gAJ4sPHwUbdJ7ib0Wrl6GkCjIKLiARACfYASK
QRXmsjTM9qjPXUD3YEEIXB4=
=nAka
-END PGP SIGNATURE-
# Thai translation of menu_su-to-root
# Copyright (C) 2007 Debian menu team
# This file is distributed under the same license as the menu package.
# Theppitak Karoonboonyanan [EMAIL PROTECTED], 2007.
#
msgid 
msgstr 
Project-Id-Version: menu 2.1.34\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-06-05 21:25+0200\n
PO-Revision-Date: 2007-07-17 15:54+0700\n
Last-Translator: Theppitak Karoonboonyanan [EMAIL PROTECTED]\n
Language-Team: Thai [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#: ../scripts/su-to-root:31
msgid 
usage: %s [-X] [-p user] -c command\n
  -c command: command to execute as a string (mandatory)\n
  -p user: user to switch to (default: root)\n
  -X: command is a X11 program\\n
msgstr 
วิธีใช้: %s [-X] [-p ผู้ใช้] -c คำสั่ง\n
  -c คำสั่ง: คำสั่งที่จะเรียก กำหนดในรูปสตริง (จำเป็นต้องมี)\n
  -p ผู้ใช้: ผู้ใช้เป้าหมายที่ต้องการเปลี่ยนไปเป็น (ค่าปริยาย: root)\n
  -X: คำสั่งเป็นโปรแกรม X11\\n

#: ../scripts/su-to-root:62
msgid About to execute %s.\\n
msgstr กำลังจะเรียกคำสั่ง %s\\n

#: ../scripts/su-to-root:63
msgid This command needs %s privileges to be executed.\\n
msgstr คำสั่งนี้ต้องการสิทธิ์ของ %s เพื่อจะเรียกใช้\\n

#: ../scripts/su-to-root:72
msgid Using %s...\\n
msgstr จะใช้ %s...\\n

#: ../scripts/su-to-root:73
msgid Enter %s passwd at prompt.\\n
msgstr กรุณาป้อนรหัสผ่านของ %s ที่พรอมพต์\\n

#: ../scripts/su-to-root:76
msgid Incorrect password or command failed. Try again? (y/N)
msgstr รหัสผ่านไม่ถูกต้อง หรือคำสั่งทำงานไม่สำเร็จ จะลองใหม่หรือไม่? (y/N)


Bug#419196: Bug 419196

2007-07-17 Thread Gerrit Pape
severity 419196 important
quit

On Mon, Apr 16, 2007 at 07:24:10PM +0300, Alex D??nil?? wrote:
 Did you try with larger values?
 This is what I have done
 
 [EMAIL PROTECTED]:~$ cmkdir alecs1
 Key:
 Again:
 [EMAIL PROTECTED]:~$ cattach alecs1/
 Key:
 [EMAIL PROTECTED]:~$ dd if=/dev/zero of=large bs=1M count=70
 70+0 records in
 70+0 records out
 73400320 bytes (73 MB) copied, 0,515856 seconds, 142 MB/s
 [EMAIL PROTECTED]:~$ time cp large /crypt/alecs1/
 
 real0m21.417s
 user0m0.004s
 sys 0m0.284s
 
 [EMAIL PROTECTED]:~$ dd if=/dev/zero of=large bs=1M count=200
 200+0 records in
 200+0 records out
 209715200 bytes (210 MB) copied, 2,47182 seconds, 84,8 MB/s
 [EMAIL PROTECTED]:~$ time cp large /crypt/alecs1/
 
 
 After 1 minute konqueror is no longer able to show the contents of /, and  
 soon it is not able to show any directory and freezes (other programs  
 start to freeze too.

I'm sorry, I still can't reproduce this.  Could you provide an strace
from cfsd while this problem happens?

$ dd if=/dev/zero of=large bs=1M count=200
200+0 records in
200+0 records out
209715200 bytes (210 MB) copied, 1.26974 seconds, 165 MB/s
$ time cp large /crypt/cfstest/

real1m48.639s
user0m0.012s
sys 0m1.460s
$ 

Thanks, Gerrit.


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



Bug#433436: localization-config: [INTL:th] Update Thai debconf translation

2007-07-17 Thread Theppitak Karoonboonyanan

Package: localization-config
Version: 1.02
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Please update Thai debconf translation, as attached.

- -- System Information:
Debian Release: lenny/sid
 APT prefers unstable
 APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=th_TH.UTF-8, LC_CTYPE=th_TH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages localization-config depends on:
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
ii  libapt-pkg-perl   0.1.21+b1  Perl interface to libapt-pkg
ii  libconfig-inifiles-perl   2.39-2 Read .ini-style configuration file
ii  locales   2.6-2  GNU C Library: National Language (
ii  perl-base 5.8.8-7The Pathologically Eclectic Rubbis

localization-config recommends no packages.

- -- debconf information excluded

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

iD8DBQFGnIdQqgzR7tCLR/4RAqwJAJ9gAcX5S2oGM8xbLX3/dYIZmx3JLQCfbYlV
xQ8co5mx3SuifiUrpUbvAaI=
=raMr
-END PGP SIGNATURE-
# Thai translation of localization-config.
# Copyright (C) 2006-2007 Software in the Public Interest, Inc.
# This file is distributed under the same license as the localization-config package.
# Theppitak Karoonboonyanan [EMAIL PROTECTED], 2006-2007.
#
#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: localization-config\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-09-09 10:56+0200\n
PO-Revision-Date: 2007-07-17 16:07+0700\n
Last-Translator: Theppitak Karoonboonyanan [EMAIL PROTECTED]\n
Language-Team: Thai [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: text
#. Description
#: ../templates:1001
msgid Preconfigure language-related parameters
msgstr ตั้งค่าต่างๆ ที่เกี่ยวกับภาษา ก่อนติดตั้ง

#. Type: text
#. Description
#: ../templates:2001
msgid Postconfigure language-related parameters
msgstr ตั้งค่าต่างๆ ที่เกี่ยวกับภาษา หลังติดตั้ง

#. Type: text
#. Description
#. post-base-installer progress bar item
#: ../localization-config-udeb.templates:1001
msgid Preconfiguring language-related parameters...
msgstr กำลังตั้งค่าต่างๆ ที่เกี่ยวกับภาษา ก่อนติดตั้ง...

#. Type: text
#. Description
#. finish-install progress bar item
#: ../localization-config-udeb.templates:2001
msgid Configuring language-related parameters...
msgstr กำลังตั้งค่าต่างๆ ที่เกี่ยวกับภาษา...



Bug#432017: Aptitude forgets about automatically installed status on upgrade.

2007-07-17 Thread Toby Speight
The workaround suggested by Linas Žvirblis also works for me (though I
find that there's no need to quit aptitude between steps 2 and 3) on
both of i386 and amd64 platforms.



Bug#433438: gpe-expenses: [INTL:sv] Swedish PO translation

2007-07-17 Thread Daniel Nylander
Package: gpe-expenses
Severity: wishlist
Tags: patch l10n


Here is the Swedish translation for gpe-expenses

Regards,
Daniel

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.17.4
Locale: LANG=sv_SE, LC_CTYPE=sv_SE (charmap=UTF-8) (ignored: LC_ALL set to 
sv_SE)
Shell: /bin/sh linked to /bin/bash
# Swedish translation for gpe-expenses.
# Copyright (C) 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the gpe-expenses package.
# Daniel Nylander [EMAIL PROTECTED], 2007.
#
msgid 
msgstr 
Project-Id-Version: gpe-expenses\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-07-11 17:19+0100\n
PO-Revision-Date: 2007-07-17 11:19+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=utf-8\n
Content-Transfer-Encoding: 8bit\n

#. Translators: This line is wrapped by the program -
#. please make sure you do NOT add line endings here.
#: ../src/qof-main.c:395
#, c-format
msgid %s: Error: Cannot exclude database \%s\ with option -e because option 
-d is set to include the database: \%s\. Use the '-l' command to see the full 
list of supported databases.\n
msgstr %s: Fel: Kan inte exkludera databasen \%s\ med flaggan -e därför att 
flaggan -d är inställd till att inkludera databasen: \%s\. Använd \-l\ för 
att se den fullständiga listan över databaser som stöds.\n

#. Translators: This line is wrapped by the program -
#. please make sure you do NOT add line endings here.
#: ../src/qof-main.c:450
#, c-format
msgid 
\n
%s: You can use the supported database names with '%s -d' and in SQL queries 
(as the table name) with '%s -s|f'. Descriptions are shown only for 
readability.\n
msgstr 
\n
%s: Du kan använda de stödda databasnamnen med \%s -d\ och i SQL-frågor (som 
tabellnamnet) med \%s -s|f\. Beskrivningar visas endast för läsbarhet.\n

#: ../src/qof-main.c:454
msgid Name
msgstr Namn

#: ../src/qof-main.c:454
msgid Description
msgstr Beskrivning

#. Translators: This line is wrapped by the program -
#. please make sure you do NOT add line endings here.
#: ../src/qof-main.c:459
#, c-format
msgid 
\n
Use '%s -d database --explain' to see the list of fields within any 
supported database.
msgstr 
\n
Använd \%s -d databas --explain\ för att se listan över fält inom en stödd 
databas.

#: ../src/qof-main.c:461
#: ../src/qof-main.c:480
#, c-format
msgid 
\n
Thank you for using %s\n
\n
msgstr 
\n
Tack för att du använder %s\n
\n

#: ../src/qof-main.c:468
#, c-format
msgid Type: %s\tName: %s\n
msgstr Typ: %s\tNamn: %s\n

#: ../src/qof-main.c:477
#, c-format
msgid 
\n
Parameters of the %s database:\n
\n
msgstr 
\n
Parametrar för %s-databasen:\n
\n

#: ../src/qof-main.c:596
#, c-format
msgid %s: There was an error reading the file '%s'.\n
msgstr %s: Det inträffade ett fel vid läsning av filen \%s\.\n

#: ../src/gpe-expenses.c:160
msgid Help options:
msgstr Hjälpflaggor:

#. * \brief Common QOF CLI options
#.
#. These are definitions for popt support in the CLI. Every
#. program's popt table should start with QOF_CLI_OPTIONS or a
#. replacement to insert the standard options into it. Also enables
#. autohelp. End your popt option list with POPT_TABLEEND. If you
#. want to remove any of these options, simply copy QOF_CLI_OPTIONS
#. into a macro of your own and remove the options you do not need.
#.
#. Translators: ignore the above comment - gettext is just being greedy.
#: ../src/gpe-expenses.c:162
#: ../src/qof-main.h:435
msgid List all databases supported by the current QOF framework and exit.
msgstr Lista alla databaser som stöds av det aktuella QOF-ramverket och 
avsluta.

#: ../src/gpe-expenses.c:164
#: ../src/qof-main.h:438
msgid List the fields within the specified database and exit, requires -d.
msgstr Lista fälten inom den angivna databasen och avsluta, kräver -d.

#: ../src/gpe-expenses.c:166
#: ../src/qof-main.h:441
msgid Query the QSF XML data in filename
msgstr Fråga QSF XML-data i filnamn

#: ../src/gpe-expenses.c:166
#: ../src/gpe-expenses.c:172
#: ../src/gpe-expenses.c:174
msgid filename
msgstr filnamn

#: ../src/gpe-expenses.c:168
#: ../src/qof-main.h:444
msgid Shorthand to only query objects that contain the specified date.
msgstr Förkortning för att endast fråga objekt som innehåller angivet datum.

#: ../src/gpe-expenses.c:168
#: ../src/gpe-expenses.c:170
#: ../src/gpe-expenses.c:183
msgid string
msgstr sträng

#: ../src/gpe-expenses.c:170
#: ../src/qof-main.h:453
msgid Specify a SQL query on the command line.
msgstr Ange en SQL-fråga på kommandoraden.

#: ../src/gpe-expenses.c:172
#: ../src/qof-main.h:455
msgid Specify one or more SQL queries contained in a file.
msgstr Ange en eller fler SQL-frågor i en fil.

#: ../src/gpe-expenses.c:174
#: ../src/qof-main.h:458
msgid Write the results of any query to the file
msgstr Skriv ut resultatet för 

Bug#295300: gdm: Same error when entering sleep (echo mem /sys/power/state)

2007-07-17 Thread Michel Verdier
Josselin Mouette [EMAIL PROTECTED] a écrit :

 Could you please attach the /var/log/Xorg.0.log.old file that appears
 right after this happens?

Sorry but since my first signaling (2005) I migrate to etch with a custom
2.6.18 kernel and I cannot reproduce the bug.

-- 
Michel Verdier
http://www.thalix.com


pgp0OMyK7oz1T.pgp
Description: PGP signature


Bug#421118: pydf: doesn't utilize screen width properly

2007-07-17 Thread Radovan Garabik
On Sun, May 27, 2007 at 11:10:40PM +0200, Josip Rodin wrote:
 On Fri, May 25, 2007 at 10:45:43PM +0200, Josip Rodin wrote:
   Yes, I am aware of the issue, this is due to somewhat inefficient width
   calculation (and default configuration suited to my previous small
   monitor :-)), see 'format' in /etc/pydfrc.
   I have plans to re-design the formatting routines, therefore I have not
   closed the bug yet.
  
  Regarding format in pydfrc, that data structure is a completely
  non-intuitive thing to use in a configuration file. But now that I see that,
  it's obvious how to improve it - make the default for 'bar' be something
  other than 0.1% of screen size?! :)
  
  With a standard 80 column screen, I see good results with 20.0 (percent).
 
 Erm. Maybe that's not percent. What I didn't notice was this:
 
 /usr/lib/python2.4/string.py:431: DeprecationWarning: integer argument 
 expected, got float
   return s.ljust(width, *args)
 
 What went wrong there?

If you want it to be a ratio, not an absolute size, the number has to be
less than 1 (i.e. 0.2 == 20%). If it is greater than 1, it is taken as
an absolute size, and as such expected to be an integer. So what you
specified is the bar size to be exactly 20 characters.

Anyway, I rewrote the formatting code (it took me a while, 
because I am somewhat busy at my work now), and I will upload the new package 
as soon as I manage to get to ftp-master (currently has some connection
problems, it seems). In the meantime, you can get the package
from http://kassiopeia.juls.savba.sk/~garabik/software/pydf/
Now the sizes in the configuration file are just lower size limits - if
possible, the columns will stretch dynamically to accommodate the
contents.

I agree about the intuitiveness of the configuration file, I'll try to
think about a better way.

-- 
 ---
| Radovan Garabík http://kassiopeia.juls.savba.sk/~garabik/ |
| __..--^^^--..__garabik @ kassiopeia.juls.savba.sk |
 ---
Antivirus alert: file .signature infected by signature virus.
Hi! I'm a signature virus! Copy me into your signature file to help me spread!



Bug#229357: Can we require build-arch/indep targets for lenny?

2007-07-17 Thread Goswin von Brederlow
Wouter Verhelst [EMAIL PROTECTED] writes:

 On Fri, Jun 29, 2007 at 11:11:04PM +0200, Bill Allombert wrote:
 One of the issue is that tools like sbuild and pbuilder which want to
 take advantage of the Build-Depends-Indep split needs to know whether
 dpkg-buildpackage will call debian/rules build or build-arch.

 It needs to know no such thing. It just needs to know that if it runs
 dpkg-buildpackage -b, only .debs will be generated, and if it runs
 dpkg-buildpackage -B, all debs apart from the _all.debs will be
 generated. How exactly this happens is of no concern to sbuild.

It does when Build-Depends is used as specified in policy and not
like it is (brokenly) used now:

Policy 7.6:

| Build-Depends, Build-Conflicts
|
|The Build-Depends and Build-Conflicts fields must be satisfied
|when any of the following targets is invoked: build, clean,
|binary, binary-arch, build-arch, build-indep and binary-indep. 
|
| Build-Depends-Indep, Build-Conflicts-Indep
| 
| The Build-Depends-Indep and Build-Conflicts-Indep fields must be
| satisfied when any of the following targets is invoked: build,
| build-indep, binary and binary-indep.

That means that is -b is used or if the package does NOT support
build-arch then sbuild must install Build-Depends-Indep as well.

If build-arch remains optional and policy for Build-Depends remains
unchanged then sbuild must now. Making build-arch required or changing
the meaning of Build-Depends to the broken use we have now resolves
this. I favor making build-arch required.

MfG
Goswin


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



Bug#426000: it's a problem with errno...

2007-07-17 Thread Frédéric BOITEUX
  I've investigated in this annoying bug, and found that it was a bad
interaction between sscanf() code and errno : the problem arises in
sscanf() when it's called with errno set to EINTR. I've updated the
testcase accordingly, it's joined to this e-mail.

  The problem doesn't exist in Woody, appeared in Sarge, exists in Etch
but seems fixed in Lenny/Sid, I've tested it on a Sid with libc6 2.6-2.

Fred.

/*
  Test case for a possible glibc bug.
  Frédéric Boiteux [EMAIL PROTECTED]

  Scan two times the same word with a sscanf(). Between them,
  set the errno to EINTR (instead of a real fonction, to simplify testcase) ;
  The second scan fails, the '%n' converter isn't honoured !

  Tested on i386 architecture :
  O.K.on Debian GNU/Linux 3.0 (Woody), libc6 version 2.2.5-11.8
  Problem on Debian GNU/Linux 3.1 (Sarge), libc6 version 2.3.2.ds1-22sarge6
  Problem on Debian GNU/Linux 3.0 (Etch),  libc6 version 2.3.6.ds1-13


  Sample output :

string='Hello', res=1, word='Hello', n=5
string='Hello', res=1, word='Hello', n=-1  *Problem!*

*/


#include errno.h
#include stdio.h


void scan(char *string)
{
int n, res;
char word[100];

n = -1;
res = sscanf(string, %s %n, word, n);
printf(string='%s', res=%d, word='%s', n=%d, string, res, word, n);
if ((res == 1)  (n  0))
printf(  *Problem!*\n);
else
putchar('\n');
}

int main(void)
{
scan(Hello); // success
// success, expected result :
// string='Hello', res=1, word='Hello', n=5

// a function call would set the errno to EINTR...
errno = EINTR;

// uncomment following line to get correct behaviour :
// errno = 0;

scan(Hello); // fails, 'n' isn't set...

return 0;
}


Bug#99324: Auto responce from [EMAIL PROTECTED]

2007-07-17 Thread info



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



Bug#99324: SensuallyCertified.com

2007-07-17 Thread auto-reply
please call 808.676.5877


SensuallyCertified.com


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



Bug#432133: ack

2007-07-17 Thread Mario Iseli
Hi Bill,

I totally agree to your suggestion, Games/Action sounds good,
Games/Sport was IMHO anyway almost useless. I will upload the package
with the new menu file one day, but I hope to receive some more bugs
first, otherwise it's a quite useless upload.

Thank you and regards,
Mario

-- 
  .''`. Mario Iseli [EMAIL PROTECTED]
 : :'  :proud user of Debian unstable
 `. `'`
   `-  Debian - when you have better things to do than fixing a system


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



Bug#377282: mail to [EMAIL PROTECTED] not delivered to maintainer by default

2007-07-17 Thread martin f krafft
also sprach Raphael Hertzog [EMAIL PROTECTED] [2007.07.17.0058 +0200]:
 The script needs to run with write access to the database so you're not
 going to run it by yourself on the real installation anyway. :)

I was going to simply use the mail interface, but I guess that
requires confirmation emails...

 I can give you a copy of the live database for more realistic
 tests if you want.

Please do. Just put it somewhere on alioth, e.g. ~madduck/pts

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


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


Bug#99324: Auto responce from [EMAIL PROTECTED]

2007-07-17 Thread info



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



Bug#433420: libpcap: Not the latest version!

2007-07-17 Thread Romain Francoise
reassign 433420 libpcap0.8
forcemerge 433420 432645
quit

Kumar Appaiah [EMAIL PROTECTED] writes:

 libpcap and tcpdump are not the latest version. Please get
 the latest from www.tcpdump.org.

I'm waiting for the x.9.7 releases, the x.9.6 tarballs haven't been
rolled out properly.

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


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



Bug#402539: debcommit and git

2007-07-17 Thread martin f krafft
also sprach Junichi Uekawa [EMAIL PROTECTED] [2007.07.17.0113 +0200]:
 As I commented, use of '--cached' will make debcommit work
 differently for 'git' compared to other SCMs; I thought I proposed
 a patch and made an attachment.

git works differently wrt other SCMs anyway in that it exposes the
index. That's a feature, let debcommit profit from it.

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


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


Bug#403969: tdfx crashes X with AIGLX but without (working) libglide3

2007-07-17 Thread Brice Goglin
Brice Goglin wrote:
 Well, I am glad that it works but the bug was about a crash when
 libglide3 is not installed :)
 Could you remove libglide3 and see what happens?
   

Hi Rob,

Did you have a chance to try after removing libglide3 so that we know
whether the original bug is fixed or not? If you don't care anymore,
just let me know, I'll close the bug with an invitation to reopen in
case anybody ever reproduces.

Brice


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



Bug#433439: [PATCH] make tftpd forgiving to slow clients

2007-07-17 Thread Attila Kinali
Package: tftpd
Version: 0.17-15
Severity: wishlist

If the client is too slow (eg embedded systems), tftp might not bei
able to deliver the data and receive a tftpd: write: Connection refused.
The patch below makes tftpd retry 3 times when a paket couldn't be send
with a delay of 1ms.


--- tftpd.c.old 2000-07-29 20:37:21.0 +0200
+++ tftpd.c 2007-07-17 09:56:17.0 +0200
@@ -401,6 +437,7 @@
register struct tftphdr *ap;/* ack packet */
volatile u_int16_t block = 1;
int size, n;
+   int retry_cnt, ret;
 
mysignal(SIGALRM, timer);
dp = r_init();
@@ -417,7 +454,14 @@
(void) sigsetjmp(timeoutbuf, 1);
 
 send_data:
-   if (send(peer, dp, size + 4, 0) != size + 4) {
+   retry_cnt = 0;
+   ret = 0;
+   while(retry_cnt 3  ret != size + 4){
+   ret = send(peer, dp, size + 4, 0);
+   if(ret != size + 4)
+   usleep(1000); /* sleep 1ms */
+   }
+   if (ret != size + 4) {
syslog(LOG_ERR, tftpd: write: %m\n);
goto abort;
}
@@ -473,6 +517,7 @@
struct tftphdr *ap;/* ack buffer */
volatile u_int16_t block = 0;
int n, size;
+   int retry_cnt, ret;
 
mysignal(SIGALRM, timer);
dp = w_init();
@@ -484,7 +531,14 @@
block++;
(void) sigsetjmp(timeoutbuf, 1);
 send_ack:
-   if (send(peer, ackbuf, 4, 0) != 4) {
+   retry_cnt = 0;
+   ret = 0;
+   while(retry_cnt 3  ret != size + 4){
+   ret = send(peer, dp, size + 4, 0);
+   if(ret != size + 4)
+   usleep(1000); /* sleep 1ms */
+   }
+   if (ret != size + 4) {
syslog(LOG_ERR, tftpd: write: %m\n);
goto abort;
}

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21.5
Locale: LANG=de_CH.ISO-8859-1, LC_CTYPE=de_CH.ISO-8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages tftpd depends on:
ii  libc6 2.5-9+b1   GNU C Library: Shared libraries
ii  netbase   4.29   Basic TCP/IP networking system

tftpd recommends no packages.

-- no debconf information


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



Bug#433143: ITP: bzr-rebase -- Rebase plugin for Bazaar

2007-07-17 Thread Robert Collins
On Mon, 2007-07-16 at 00:28 +0200, Stefano Zacchiroli wrote:


 I don't want to see a bzr-foo package in the archive for each .py module
 available on the internet which provides yet another sub-command for
 bzr. I asked under the (wrong) assumption that bzrtools was a Debian
 package shipping in a single Debian package several bzr addons. Under
 that assumption it seemed reasonable to avoid creating a new package,
 bug including your new addons as part of it.
 
 Since my assumption was wrong: what about creating a bzr-addons Debian
 package containing the most used bzr addons out there instead of filing
 an ITP for just one?

I'd like to do the following:

 * rename the 'bazaar' package to 'baz' - both source and binary, though
binary is the key one. This is because it is no longer the recommended
tool from the 'Bazaar VCS Project' rather it is deprecated. Its useful
for conversions to bzr though, so keeping it as 'baz' is good.

 * Create a 'bazaar' package which is a metapackage depending on bzr,
recommending key plugins, and suggesting others.

-Rob
-- 
GPG key available at: http://www.robertcollins.net/keys.txt.


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


Bug#398004: #398004 lynx-cur: Bad default for system mailer

2007-07-17 Thread Thomas Dickey

On Tue, 17 Jul 2007, Sébastien Hinderer wrote:


Hi,

Thomas Dickey :

I don't see where the problem lies: the configure script finds the same
value as the one you want to uncomment.  The compiled-in value (which
you can inspect by looking at LYNXCOMPILEOPTS:/) shows this string.


I noticed the very same problem on my system, and uncommenting the lines
SYSTEM_MAIL:/usr/mmdf/bin/submit
SYSTEM_MAIL_FLAGS:-mlruxto,cc\*
in /etc/lynx-cur/lynx.cfg
solved the problem: lynx restarted to behave in the way it always did.



None of my configs require uncommenting the value, since it's been
working as designed for a long time.


May be the pre-compiled value is overriden at some point ?


possibly.  Values that are set via the configs can be traced (see the 
-trace and -trace-mask options) at runtime.  The compiled-in values 
generally do not show up there, but (assuming that's not disabled), you 
can inspect the values following the link at the bottom of the options

menu.

For example, on one of my shell accounts, following

  View the file lynx.cfg.

to

See also
 * compile time options

shows (just searching for mail):

system_mail_flags   '-t -oi'

and

SYSTEM_MAIL /usr/sbin/sendmail
SYSTEM_MAIL_FLAGS   -t -oi

SYSTEM_MAIL /usr/sbin/sendmail


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

Bug#433028: hibernate shouldn't need s2ram -f on UNSURE systems

2007-07-17 Thread martin f krafft
Please try the following patch against the original ususpend
scriptlet (the one provided by the package):

Index: scriptlets.d/ususpend
===
--- scriptlets.d/ususpend   (revision 1133)
+++ scriptlets.d/ususpend   (working copy)
@@ -6,6 +6,7 @@
 
 AddConfigHelp USuspendMethod disk|ram|both Enables use of the uswsusp 
suspend method of newer kernels (= 2.6.17rc1)
 AddConfigHelp USuspendRamForce boolean Passes the -f flag to s2ram to 
force suspending even if the machine is not recognised
+AddConfigHelp USuspendRamUnsureOk boolean Instructs s2ram to continue 
when it's unsure about the system type, thus not requiring -f to be passed
 AddConfigHelp USuspendRamVbeSave boolean Passes the -s flag to s2ram to 
save VBE state before suspending and restore after resume
 AddConfigHelp USuspendRamVbePost boolean Passes the -p flag to s2ram to 
VBE POST the graphics card after resume
 AddConfigHelp USuspendRamVbeMode boolean Passes the -m flag to s2ram to 
get VBE mode before suspend and set it after resume
@@ -18,6 +19,7 @@
 USUSPEND_DEVICE=/dev/snapshot
 USUSPEND_PROG=s2disk
 USUSPEND_RAM_FORCE=0
+USUSPEND_RAM_UNSUREOK=0
 USUSPEND_RAM_VBESAVE=0
 USUSPEND_RAM_VBEPOST=0
 USUSPEND_RAM_VBEMODE=0
@@ -49,6 +51,9 @@
ususpendramforce)
BoolIsOn $1 $2  USUSPEND_RAM_FORCE=1 || return 0
;;
+   ususpendramunsureok)
+   BoolIsOn $1 $2  USUSPEND_RAM_UNSUREOK=1 || return 0
+   ;;
ususpendramvbesave)
BoolIsOn $1 $2  USUSPEND_RAM_VBESAVE=1 || return 0
;;
@@ -110,10 +115,21 @@
vecho 0 $USUSPEND_PROG not installed.
return 2
 fi
-if [ $USUSPEND_PROG = s2ram ]  [ $USUSPEND_RAM_FORCE -eq 0 ] \
-! $USUSPEND_PROG -n /dev/null; then
-   vecho 0 $USUSPEND_PROG: unknown machine, see s2ram(8) and the 
USuspendRamForce option
-   return 2
+if [ $USUSPEND_PROG = s2ram ]  [ $USUSPEND_RAM_FORCE -eq 0 ]; then
+   USUSPEND_PROG -n /dev/null
+   ret=$?
+   case $ret/$USUSPEND_RAM_UNSUREOK in
+   0/*) :;;
+   32/1) :;; # unsure, but USuspendRamUnsureOk passed
+   32/*)
+   vecho 0 $USUSPEND_PROG: unsure about your machine, see the 
USuspendRamUnsureOk option
+   return 2
+   ;;
+   *)
+   vecho 0 $USUSPEND_PROG: unknown machine, see s2ram(8) and the 
USuspendRamForce option
+   return 2
+   ;;
+   esac
 fi
 if ! test -f $USUSPEND_STATE_FILE ; then
vecho 0 Your kernel does not have power management built in.

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


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


Bug#99324: ***SPAM*** Re: Pics

2007-07-17 Thread Annie Durrough
Please note that 
Jenny Hulett is no longer with the agency. Please direct all future e-mails to 
Annie Durrough ([EMAIL PROTECTED]). Thank you.


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



Bug#433440: sonata: New upstream version fixes Bug with password-protected mpd-connections

2007-07-17 Thread Jan Hülsbergen
Package: sonata
Version: 1.2-1
Severity: important

When starting sonata 1.2 with a password configured it crashes:
--snip--
Traceback (most recent call last):
  File /usr/bin/sonata, line 48, in ?
app = sonata.Base()
  File /usr/lib/python2.4/site-packages/sonata.py, line 539, in __init__
self.connect(blocking=True)
  File /usr/lib/python2.4/site-packages/sonata.py, line 1256, in connect
self.connect2(blocking, force_connection)
  File /usr/lib/python2.4/site-packages/sonata.py, line 1268, in connect2
self.conn = Connection(self)
  File /usr/lib/python2.4/site-packages/sonata.py, line 161, in __init__
mpdclient3.connect(host=host, port=port, password=password)
  File /usr/lib/python2.4/site-packages/mpdclient3.py, line 338, in connect
conn.password(password)
AttributeError: 'mpd_connection' object has no attribute 'password'
--snap--

This bug is known and fixed in the latest upstream release (1.2.1), so
please upgrade to that. http://sonata.berlios.de/changelog.html

Many Thanks in Advance.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21jan (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages sonata depends on:
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libglib2.0-02.12.12-1+b1 The GLib library of C routines
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libpango1.0-0   1.16.4-3 Layout and rendering of internatio
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  python  2.4.4-6  An interactive high-level object-o
ii  python-central  0.5.14   register and build utility for Pyt
ii  python-dbus 0.82.0-1 simple interprocess messaging syst
ii  python-gtk2 2.10.6-1 Python bindings for the GTK+ widge

sonata recommends no packages.

-- no debconf information


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



Bug#432267: Is this now fixed?

2007-07-17 Thread Touko Korpela
This bug can be closed if it's fixed.


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



Bug#433442: gossip: Notification balloon's 'chat' button does nothing (sometimes)

2007-07-17 Thread Sam Morris
Package: gossip
Version: 0.26-2
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The notification balloon that appears to tell the user that a contact
has sent them a message contains a Chat button. Sometimes, when I press
that button, instead of a chat window being opened up, instead nothing
happens and I have to open the window manually, via the contact list.

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gossip depends on:
ii  gossip-common  0.26-2friendly Jabber client for GNOME -
ii  libaspell150.60.5-1  GNU Aspell spell-checker runtime l
ii  libc6  2.6-2 GNU C Library: Shared libraries
ii  libdbus-1-31.1.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libgconf2-42.18.0.1-3GNOME configuration database syste
ii  libglade2-01:2.6.1-1 library to load .glade files at ru
ii  libglib2.0-0   2.12.12-1+b1  The GLib library of C routines
ii  libgnome2-02.18.0-4  The GNOME 2 library - runtime file
ii  libgnomeui-0   2.18.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.18.1-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.10.13-1 The GTK+ graphical user interface 
ii  libloudmouth1-01.2.3-2   Lightweight C Jabber library
ii  libnotify1 [libnotify1-gtk 0.4.4-3   sends desktop notifications to a n
ii  libpanel-applet2-0 2.18.2-2  library for GNOME Panel applets
ii  libpango1.0-0  1.16.4-1  Layout and rendering of internatio
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxml22.6.29.dfsg-1 GNOME XML library
ii  libxss11:1.1.2-1 X11 Screen Saver extension library

Versions of packages gossip recommends:
ii  iso-codes 1.0a-1 ISO language, territory, currency 

- -- no debconf information

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

iD8DBQFGnIu/shl/216gEHgRAkUEAKD/0VMnF1vjkwhUBMiBYwI9o7PEFQCg81rl
7iGHdkw8sZXi4M8VJBmF8nE=
=clEn
-END PGP SIGNATURE-


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



Bug#433441: git-core: FTBFS on i386 in tests

2007-07-17 Thread Sam Morris
Package: git-core
Version: 1:1.5.2.3-1
Severity: serious
Justification: no longer builds from source

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Build proceeds normally until:

*** t9108-git-svn-glob.sh ***
*   ok 1: test refspec globbing
* FAIL 2: test left-hand-side only globbing

git config --add svn-remote.two.url 
file:///tmp/git-core-1.5.2.4/t/trash/svnrepo 
git config --add svn-remote.two.fetch 
trunk:refs/remotes/two/trunk 
git config --add svn-remote.two.branches
 'branches/*:refs/remotes/two/branches/*' 
git config --add svn-remote.two.tags 
'tags/*:refs/remotes/two/tags/*' 
cd tmp 
echo 'try try'  tags/end/src/b/readme 
poke tags/end/src/b/readme 
svn commit -m 'try to try'
cd .. 
git-svn fetch two 
test `git rev-list refs/remotes/two/tags/end | wc -l` -eq 6 
test `git rev-list refs/remotes/two/branches/start | wc -l` -eq 
3 
test `git rev-parse refs/remotes/two/branches/start~2` =
`git rev-parse refs/remotes/two/trunk` 
test `git rev-parse refs/remotes/two/tags/end~3` =   
`git rev-parse refs/remotes/two/branches/start` 
git log --pretty=oneline refs/remotes/two/tags/end |sed 
-e 's/^.\{41\}//'  output.two 
cmp expect.two output.two

* failed 1 among 2 test(s)
make[2]: *** [t9108-git-svn-glob.sh] Error 1
make[2]: Leaving directory `/tmp/git-core-1.5.2.4/t'
make[1]: *** [test] Error 2
make[1]: Leaving directory `/tmp/git-core-1.5.2.4'
make: *** [build-arch-stamp] Error 2

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages git-core depends on:
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcurl3-gnutls 7.16.2-6 Multi-protocol file transfer libra
ii  libdigest-sha1-perl 2.11-2   NIST SHA-1 message digest algorith
ii  liberror-perl   0.15-8   Perl module for error/exception ha
ii  libexpat1   1.95.8-3.4   XML parsing C library - runtime li
ii  perl-modules5.8.8-7  Core Perl modules
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages git-core recommends:
ii  curl 7.16.2-6Get a file from an HTTP, HTTPS or 
ii  git-doc  1:1.5.2.4-1 fast, scalable, distributed revisi
ii  less 406-0   Pager program similar to more
ii  openssh-client [ssh-client]  1:4.6p1-4   secure shell client, an rlogin/rsh
ii  patch2.5.9-4 Apply a diff file to an original
ii  rsync2.6.9-3 fast remote file copy program (lik

- -- no debconf information

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

iD8DBQFGnJrVshl/216gEHgRAs5tAKD9Gp9sHyPmfnYdwpmonzB/EvjTpACfcpai
PSmwg5yKxT7eiuZ2a1nHQcY=
=h0Y7
-END PGP SIGNATURE-


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



Bug#433444: Bug in org.apache.tools.ant.types.resources.comparators.Date

2007-07-17 Thread Kim Hansen
Package: ant
Version: 1.7.0-1
Severity: normal


When a file that in depended on in dependset is more than 24 days old
this bug make it the newest, this makes dependset unusable. It has been
reported and fixed upstream in:
  http://issues.apache.org/bugzilla/show_bug.cgi?id=41411

Could you please merge the fix to the unstable package?

Regards,
Kim Hansen

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (1050, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-rc7-raph1 (SMP w/2 CPU cores)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ant depends on:
pn  java-gcj-compat-dev | java-vi none (no description available)
ii  libxerces2-java   2.9.0-1Validating XML parser for Java wit
ii  sun-java5-jre [java1-runtime] 1.5.0-12-1 Sun Java(TM) Runtime Environment (

Versions of packages ant recommends:
pn  ant-gcj   none (no description available)
ii  ant-optional  1.7.0-1Java based build tool like make - 

-- no debconf information


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



Bug#422395: NMU? lilypond: FTBFS: ! I can't find file `lcircle10'

2007-07-17 Thread Agustin Martin
On Sun, Jul 15, 2007 at 10:40:17PM +0100, Neil Williams wrote:
 It's been nearly two weeks since the patch became available. I've
 tested at this end and your patch does work.
 
 Are you willing to do an NMU if Thomas does not respond?
 
 If not, let me know - I'm happy to do an NMU to close this bug.

I do not expect to have time this week for a proper NMU, so please proceed
unless Thomas asks otherwise.

-- 
Agustin


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



Bug#433445: java-package: add javaplugin symlink for iceweasel

2007-07-17 Thread Bjoern Krombholz
Package: java-package
Version: 0.31
Severity: normal


java-package doesn't install/link the plugin for iceweasel in
/usr/lib/iceweasel/plugins. I'm manually creating a link to
/etc/alternatives/firefox-javaplugin.so for now.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (90, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21.5.fox
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages java-package depends on:
ii  debhelper 5.0.53 helper programs for debian/rules
ii  fakeroot  1.7.1  Gives a fake root environment
ii  unzip 5.52-10De-archiver for .zip files

java-package recommends no packages.

-- no debconf information


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



Bug#345458: fsck 1.37

2007-07-17 Thread Rossen Naydenov

Hi guys,

I have the same error this morning.
Could not startup the system at all.
The message I see is  /usr/bin/tput invalid option -2

--
Best regards
Rossen Naydenov


Bug#433443: epiphany-browser: bug-buddy no longer recognises epiphany as a gnome.org application

2007-07-17 Thread Sam Morris
Package: epiphany-browser
Version: 2.18.3-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

When epiphany crashes, bug-buddy does not recognise it as a gnome.org
application; that is, one for which the crash report can be sent to
bugzilla.gnome.org.

Loïc suggests it is caused by us renaming the browser's executable to
epiphany-browser.

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages epiphany-browser depends on:
ii  dbus1.1.1-3  simple interprocess messaging syst
ii  epiphany-browser-data   2.18.3-1 Data files for the GNOME web brows
ii  gnome-icon-theme2.18.0-3 GNOME Desktop icon theme
ii  iso-codes   1.0a-1   ISO language, territory, currency 
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libenchant1c2a  1.3.0-3+b1   a wrapper library for various spel
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2-20070627-1 GCC support library
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libglade2-0 1:2.6.1-1library to load .glade files at ru
ii  libglib2.0-02.12.12-1+b1 The GLib library of C routines
ii  libgnome-desktop-2  2.18.3-1 Utility library for loading .deskt
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.1-2   GNOME Virtual File System (runtime
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libice6 1:1.0.3-2X11 Inter-Client Exchange library
ii  libmozjs0d  1.8.1.4-3The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime Library
ii  liborbit2   1:2.14.7-0.2 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.16.4-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstartup-notification 0.9-1library for program launch feedbac
ii  libstdc++6  4.2-20070627-1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxslt1.1  1.1.21-1 XSLT processing library - runtime 
ii  libxul0d1.8.1.4-3Gecko engine library
ii  python2.4   2.4.4-4  An interactive high-level object-o
ii  xulrunner-gnome-support 1.8.1.4-3Support for Gnome in xulrunner app
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages epiphany-browser recommends:
ii  epiphany-extensions   2.18.1-2   Extensions for Epiphany web browse
ii  yelp  2.18.1-1   Help browser for GNOME 2

- -- no debconf information

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

iD8DBQFGnJNWshl/216gEHgRAj94AKDAp4nvbBxrq1O93KUJaTN/uV7wxwCfeUkf
vUwe/VZdSAXejsj9egEdC2E=
=k4bg
-END PGP SIGNATURE-


-- 

Bug#433446: webcheck fails with beautifulsoup error

2007-07-17 Thread Bas Zoetekouw
Package: webcheck
Version: 1.10.1
Severity: normal

Hi Arthur!

I'm continuting to try and run webcheck on the debian website;  it now
fails with a crash in beautifulsoup:

webcheck:   http://www.slf.ch/
Traceback (most recent call last):
  File /usr/bin/webcheck, line 249, in ?
main()
  File /usr/bin/webcheck, line 224, in main
site.crawl(fp) # this will take a while
  File /usr/share/webcheck/crawler.py, line 216, in crawl
link.fetch()
  File /usr/share/webcheck/crawler.py, line 538, in fetch
parsermodule.parse(content, self)
  File /usr/share/webcheck/parsers/html/beautifulsoup.py, line 60, in parse
base = myurllib.normalizeurl(htmlunescape(base['href']).strip())
  File /var/lib/python-support/python2.4/BeautifulSoup.py, line 419, in 
__getitem__
return self._getAttrMap()[key]
KeyError: 'href'


This occurs after running it on http://www.nl.debian.org for a while;
continuing with webcheck -c does work though, and webcheck doesn't
crash then anymore...

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

Versions of packages webcheck depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-support0.5.6  automated rebuilding support for p

Versions of packages webcheck recommends:
ii  python-beautifulsoup  3.0.1-2error-tolerant HTML parser for Pyt

-- no debconf information


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



Bug#433447: Segmentation fault on compilation of kernel

2007-07-17 Thread Patrick Winnertz
Package: gcc-4.1
Version: 4.1.1-21
Severity: normal

Hey

I've tried today to compile the linux-source-2.6.18 with this compiler and it 
failed with this output:

fs/ocfs2/dlm/dlmrecovery.c: In function �dlm_mig_lockres_worker�:
fs/ocfs2/dlm/dlmrecovery.c:1433: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
For Debian GNU/Linux specific bug reporting instructions,
see URL:file:///usr/share/doc/gcc-4.1/README.Bugs.
The bug is not reproducible, so it is likely a hardware or OS problem.
make[4]: *** [fs/ocfs2/dlm/dlmrecovery.o] Error 1
make[3]: *** [fs/ocfs2/dlm] Error 2
make[2]: *** [fs/ocfs2] Error 2
make[1]: *** [fs] Error 2
make[1]: Leaving directory `/usr/src/linux-source-2.6.18'
make: *** [debian/stamp-build-kernel] Error 2

(Tryed it 2 times)

Since this could be a host problem (according to the output, here some host 
informations):

cat /proc/cpuinfo
processor   : 0
vendor_id   : AuthenticAMD
cpu family  : 6
model   : 10
model name  : AMD Sempron(tm) 2200+
stepping: 0
cpu MHz : 1499.625
cache size  : 256 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 1
wp  : yes
flags   : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 mmx fxsr sse syscall mp mmxext 3dnowext 3dnow ts
bogomips: 3002.48

If you need more informations please contact me


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

Versions of packages gcc-4.1 depends on:
ii  binutils2.17-3   The GNU assembler, linker and bina
ii  cpp-4.1 4.1.1-21 The GNU C preprocessor
ii  gcc-4.1-base4.1.1-21 The GNU Compiler Collection (base 
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-21   GCC support library
ii  libssp0 4.1.1-21 GCC stack smashing protection libr

Versions of packages gcc-4.1 recommends:
ii  libc6-dev   2.3.6.ds1-13 GNU C Library: Development Librari
pn  libmudflap0-dev none   (no description available)

-- no debconf information


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



Bug#433164: monit: Segfault in 3-5 seconds after start

2007-07-17 Thread Martin Pala
Hi, thanks for report ... it crashes in the http testing module. Can  
you please:


1.) get the snoop/tcpdump of the communication between monit and the  
target webserver? (so we can get the request/response which led to  
the crash)


2.) send the part of the monit configuration file which specifies the  
given service/webserver check?


Thanks,
Martin

On Jul 15, 2007, at 11:09 AM, Stefan Alfredsson wrote:


Alexey Bestchekov wrote:

#0  0x2ace3273d8d7 in _IO_vfscanf_internal () from /lib/libc.so.6
#1  0x2ace3274c395 in vsscanf () from /lib/libc.so.6
#2  0x2ace32747ca8 in sscanf () from /lib/libc.so.6
#3  0x0041f7b7 in get_response (s=0x56ec30,  
H=0x7fff78d03a40) at

protocols/http.c:473
#4  0x0041fb51 in do_redirect (H=0x7fff78d03a40) at
protocols/http.c:431

the same problem exist in newer upstream version (4.9)



Since the coredump is in libc/vfscanf, I'm guessing this may be 64  
bit +

locale related.

Could you try these steps?

1. Unset LANG LC_CTYPE LC_ALL and other locale related variables  
and try

to start.

2. print the variables to get_response()  (like  gdb monit ; run ;  
up ; up

; up ; print s; print H )

3. (a bit more work) upgrade to a newer libc and recompile with that.

I'm also CC'ing upstream if they have some ideas.

Regards,
 Stefan


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-4-amd64
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.koi8r (charmap=KOI8-R)  
(ignored:

LC_ALL set to ru_RU.koi8r)

Versions of packages monit depends on:
ii  libc6   2.3.6.ds1-13 GNU C Library: Shared
libraries
ii  libssl0.9.8 0.9.8c-4 SSL shared libraries

monit recommends no packages.

-- no debconf information











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



Bug#433444: Bug in org.apache.tools.ant.types.resources.comparators.Date

2007-07-17 Thread Michael Koch
tag 433444 confirmed
forwarded 433444 http://issues.apache.org/bugzilla/show_bug.cgi?id=41411
owner 433444 !
thanks

On Tue, Jul 17, 2007 at 12:35:41PM +0200, Kim Hansen wrote:
 Package: ant
 Version: 1.7.0-1
 Severity: normal
 
 
 When a file that in depended on in dependset is more than 24 days old
 this bug make it the newest, this makes dependset unusable. It has been
 reported and fixed upstream in:
   http://issues.apache.org/bugzilla/show_bug.cgi?id=41411
 
 Could you please merge the fix to the unstable package?

I will take care of this.


Cheers,
Michael
-- 
 .''`.  | Michael Koch [EMAIL PROTECTED]
: :' :  | Free Java Developer http://www.classpath.org
`. `'   |
  `-| 1024D/BAC5 4B28 D436 95E6 F2E0 BD11 5923 A008 2763 483B


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



Bug#433448: network-manager-gnome: nm-applet run even though it is disabled in session properties

2007-07-17 Thread Sam Morris
Package: network-manager-gnome
Version: 0.6.4-8+b1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I disabled 'Network Manager' in the 'Startup Programs' section of
gnome-session-properties, but nm-applet is still launched when I log in.

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages network-manager-gnome depends on:
ii  gnome-icon-theme2.18.0-3 GNOME Desktop icon theme
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libbonobo2-02.18.0-2 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.18.0-5 The Bonobo UI library
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.1-3  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgconf2-4 2.18.0.1-3   GNOME configuration database syste
ii  libgcrypt11 1.2.4-2  LGPL Crypto library - runtime libr
ii  libglade2-0 1:2.6.1-1library to load .glade files at ru
ii  libglib2.0-02.12.12-1+b1 The GLib library of C routines
ii  libgnome-keyring0   0.8.1-2  GNOME keyring services library
ii  libgnome2-0 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeui-02.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  1:2.18.1-2   GNOME Virtual File System (runtime
ii  libgpg-error0   1.4-2library for common error values an
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libhal1 0.5.9.1-2Hardware Abstraction Layer - share
ii  libice6 1:1.0.3-2X11 Inter-Client Exchange library
ii  libnm-util0 0.6.4-7  network management framework (shar
ii  libnotify1 [libnotify1- 0.4.4-3  sends desktop notifications to a n
ii  liborbit2   1:2.14.7-0.2 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0  2.18.3-1 library for GNOME Panel applets
ii  libpango1.0-0   1.16.4-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpopt01.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.1-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.29.dfsg-1GNOME XML library
ii  libxrandr2  2:1.2.1-1X11 RandR extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  network-manager 0.6.4-8+b1   network management framework daemo
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages network-manager-gnome recommends:
pn  libpam-keyringnone (no description available)
pn  network-manager-openvpn   none (no description available)
pn  network-manager-vpnc  none (no description available)
ii  notification-daemon   0.3.7-1a daemon that displays passive pop

- -- no debconf information

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

iD8DBQFGnKMxshl/216gEHgRAqeVAJ9S1NJeQgWZs1Q45z/4KJ7cVWRZ7gCfTKvq
YH4f26/3yTKe+Q/xyJGzbWs=
=xsUy
-END PGP SIGNATURE-


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



Bug#399892: nepenthes_0.2.0-1(hppa/experimental): FTBFS: tries to use static library compiled without -fPIC

2007-07-17 Thread Jan Wagner
Hi Luciano,

On Wednesday 20 June 2007 19:15, Luciano Bello wrote:
   I need your opinion and comments about: http://bugs.debian.org/399892
   Nepenthes has a module (modulehoneytrap.so) linked with libipq (IPQ
 library for userspace), which is part of iptables-dev. Libipq looks like it
 only comes in a static form, and hence isn't built PIC.
   Frank Lichtenheld [EMAIL PROTECTED] proposed to ask here.

 Please CC to the bug if you think is proper.

Any process with the issue?

Thanks and with kind regards, Jan.
-- 
Never write mail to [EMAIL PROTECTED], you have been warned!
-BEGIN GEEK CODE BLOCK-
Version: 3.1
GIT d-- s+: a- C+++ UL P+ L+++ E- W+++ N+++ o++ K++ w--- O M V- PS PE
Y++ PGP++ t-- 5 X R tv- b+ DI- D++ G++ e++ h-- r+++ y+++
--END GEEK CODE BLOCK--


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



Bug#433449: samba: nmbd shuts down when network interfaces go down

2007-07-17 Thread Sam Morris
Package: samba
Version: 3.0.24-6
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

My system's network connection is a wireless one, and whenever I bring
the interface down to change networks, or get the hardware's driver back
into an unconfused state (it's not the most stable piece of coding),
nmbd exits.

[2007/07/17 09:00:19, 0] nmbd/nmbd.c:reload_interfaces(229)
  reload_interfaces: No subnets to listen to. Shutting down...

It should just hang around, listening on localhost and/or 0.0.0.0 (all
interfaces) until another network interface comes back up. Currently, I
have to start it manually whenever it shuts down.

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages samba depends on:
ii  debconf  1.5.13  Debian configuration management sy
ii  libacl1  2.2.42-1Access control list shared library
ii  libattr1 1:2.4.32-1.1Extended attribute shared library
ii  libc62.6-2   GNU C Library: Shared libraries
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library
ii  libcupsy 1.2.11-3Common UNIX Printing System(tm) - 
ii  libgnutl 1.6.3-1 the GNU TLS library - runtime libr
ii  libkrb53 1.6.dfsg.1-5MIT Kerberos runtime libraries
ii  libldap2 2.1.30-13.4 OpenLDAP libraries
ii  libpam-m 0.79-4  Pluggable Authentication Modules f
ii  libpam-r 0.79-4  Runtime support for the PAM librar
ii  libpam0g 0.79-4  Pluggable Authentication Modules l
ii  libpopt0 1.10-3  lib for parsing cmdline parameters
ii  logrotat 3.7.1-3 Log rotation utility
ii  lsb-base 3.1-23.1Linux Standard Base 3.1 init scrip
ii  procps   1:3.2.7-3   /proc file system utilities
ii  samba-co 3.0.25b-1+b1Samba common files used by both th
ii  update-i 4.27-0.5inetd.conf updater
ii  zlib1g   1:1.2.3.3.dfsg-5compression library - runtime

Versions of packages samba recommends:
pn  smbldap-tools none (no description available)

- -- debconf information:
  samba/nmbd_from_inetd:
  samba/log_files_moved:
  samba/tdbsam: false
* samba/generate_smbpasswd: false
* samba/run_mode: daemons

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

iD8DBQFGnIgQshl/216gEHgRAnorAKDAQdkzTwGmGj8OlWO49z5m3i2cMgCgpagh
noh7HVEPfFgu0nlgw+1C5oM=
=0vEt
-END PGP SIGNATURE-


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



Bug#433450: dstat -a does not include load statistics

2007-07-17 Thread Sam Morris
Package: dstat
Version: 0.6.3-2
Severity: normal

The man page for dstat says that -a is equivalent to -cdngyl however
when I run dstat -a the load statistics are not displayed.

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

Versions of packages dstat depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-central0.5.12 register and build utility for Pyt

dstat recommends no packages.

-- no debconf information


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



Bug#426546: RFP: Pentaho reporiting engine

2007-07-17 Thread Arnaud Vandyck

retitle 426546 ITP: Pentaho reporting engine
owner 426546 !
thanks

On 5/29/07, Rene Engelhard [EMAIL PROTECTED] wrote:

According to Ocke Janssens blog [1] OOo 2.3 will use
the Pentaho Reporting Engine[2] (formerly known as JFreeReport) for
its new Report Generator.

Please package it.


* Package name: pentaho-reportdesigner
 Version : 1.5.5.239-0
 Upstream Author :
* URL : http://sourceforge.net/projects/pentaho
* License : Mozilla Public License 1.1 (MPL 1.1)
 Description : reporting module from pentaho suite

Reporting module from the complete business intelligence
platform Pentaho. It includes reporting, analysis (OLAP),
dashboards, data mining and data integration (ETL).
Use it as a full suite or as individual components that are
accessible via web services. Ranked #1 in open source BI.

Download area: http://sourceforge.net/project/showfiles.php?group_id=140317

I'll try to have a look at it and put some preliminary work on
pkg-java subversion but I must say that it uses a lot of other libs
and some are not yet in Debian. I think some are unfree (jimi).

Cheers,

PS: Rene, if you want, you can change the submitter to me.

--
Arnaud Vandyck


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



Bug#433451: SSH_ORIGINAL_COMMAND undocumented in sshd(8)

2007-07-17 Thread Jeroen van Wolffelaar
Package: openssh-server
Version: 1:4.3p2-9
Severity: wishlist

Comparing sshd(8) with
http://www.freebsd.org/cgi/man.cgi?query=sshdsektion=8manpath=OpenBSD
, I notice that even though the date at the bottom is equal, the openbsd
page lists an extra sentence in the AUTHORIZED_KEYS FILE FORMAT section,
but-on-last in the command=command bit.

This sentence reads The command originally supplied by the client is
available in the SSH_ORIGINAL_COMMAND environment variable., and is
actually a useful one to document this otherwise undocumented behaviour.

I didn't research the ancestry of the manpage, but something weird
seems to go on here with versions and dates not being updated :).

--Jeroen

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

Versions of packages openssh-server depends on:
ii  adduser  3.102   Add and remove users and groups
ii  debconf  1.5.11  Debian configuration management sy
ii  dpkg 1.13.25 package maintenance system for Deb
ii  libc62.3.6.ds1-13GNU C Library: Shared libraries
ii  libcomer 1.39+1.40-WIP-2006.11.14+dfsg-2 common error description library
ii  libkrb53 1.4.4-7etch2MIT Kerberos runtime libraries
ii  libpam-m 0.79-4  Pluggable Authentication Modules f
ii  libpam-r 0.79-4  Runtime support for the PAM librar
ii  libpam0g 0.79-4  Pluggable Authentication Modules l
ii  libselin 1.32-3  SELinux shared libraries
ii  libssl0. 0.9.8c-4SSL shared libraries
ii  libwrap0 7.6.dbs-13  Wietse Venema's TCP wrappers libra
ii  openssh- 1:4.3p2-9   Secure shell client, an rlogin/rsh
ii  zlib1g   1:1.2.3-13  compression library - runtime

openssh-server recommends no packages.

-- debconf information excluded

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED] (also for Jabber  MSN; ICQ: 33944357)
http://Jeroen.A-Eskwadraat.nl


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



Bug#433372: armagetronad: Wrong category in desktop definition

2007-07-17 Thread Daniel Leidert
Hi,

 The categroy definition should be:
 
 Categories=Application;Game;ActionGame
^

Application isn't valid too. This is an GNOME =2.4 only category. When
fixing the file, remove the Application category. Further there is a
semicolon missing. Otherwise this file is invalid too. So the entry
should probably be:

Categories=Game;ActionGame;

Check with desktop-file-validate for further issues.

Regards, Daniel



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



Bug#433453: nessus-core: Please drop unnecessary libglib1.2-dev build dep

2007-07-17 Thread Martin Pitt
Package: nessus-core
Version: 2.2.9-1

Hello!

nessus-core currently build-depends on libglib1.2-dev, although the
package only uses gtk/glib 2.0. It builds fine without it and should
be dropped, because 1.2 is unmaintained and obsolete.

Thanks,

Martin

-- 
Martin Pitthttp://www.piware.de
Ubuntu Developer   http://www.ubuntu.com
Debian Developer   http://www.debian.org


signature.asc
Description: Digital signature


Bug#246118: pdnsd: dies unexpectedly

2007-07-17 Thread Pierre HABOUZIT
tag 246118 + moreinfo unreproducible
thanks

On Tue, Apr 27, 2004 at 01:00:12PM +0200, Laurent Fousse wrote:
 Package: pdnsd
 Version: 1.1.10par-1
 Severity: normal
 
 From daemon.log :
 
 Apr 27 12:41:06 nowwhat pdnsd[477]: Caught signal 11.
 Apr 27 12:41:07 nowwhat pdnsd[477]: A fatal signal occured.

  This is sadly not very helpful, without any kind of backtrace or way
to reproduce this, this bug is quite useless :/

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpXBerntKNw1.pgp
Description: PGP signature


Bug#317676: pdnsd: Failed to open socket: Bad file descriptor

2007-07-17 Thread Pierre HABOUZIT
tag 317676 + unreproducible moreinfo
thanks

On Sun, Jul 10, 2005 at 04:34:29PM +0100, Jochen Voss wrote:
 Package: pdnsd
 Version: 1.2.2par-1
 Severity: minor
 
 Hello,
 
 pdnsd gives me the following error message on shutdown:
 
 Failed to open socket: Bad file descriptor. Status readback will be 
 impossible
 
 I do not know whether this indicates a real problem, but either the
 problem (if there is one) or the message (if it is bogus) should be
 fixed.
 
 The error message only occurs on my powerpc system.  On a similarly
 installed i386 system I do not get this message.

  do you still have that ? I can't reproduce it.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpbJ6u0oGT26.pgp
Description: PGP signature


Bug#433454: hibernate: Network stop working after resume

2007-07-17 Thread Martin Sin
Package: hibernate
Version: 1.96~pre-svn.r1125-1
Severity: normal

My network stop working after resume (suspend-to-ram). I have this
network card:

00:0a.0 Bridge: nVidia Corporation CK804 Ethernet Controller (rev a3)

and I use module forcedeth. I can see this on terminal after resume:

SIOCSIFADDR: No such device
eth1: ERROR while getting interface flags: No such device

I use eth1 device with forcedeth module. After resume, it try to use
eth0 device (as I can see in dmesg):

PCI: Setting latency timer of device :00:0a.0 to 64
forcedeth: using HIGHDMA
:00:0a.0: Invalid Mac address detected: c3:f9:40:e6:16:00
Please complain to your hardware vendor. Switching to a random MAC.
eth0: forcedeth.c: subsystem: 01458:e000 bound to :00:0a.0

but it does not work again (eth0 and eth1 are dead), I can only
restart pc to start network working again. I find only one text
about this on address:

http://lists.atrpms.net/pipermail/atrpms-users/2005-December/004176.html

and the problem is the same, I think. I have tryied module unloading
before suspend too, with no success. I cannot bring up network device
after resume.

Suspend-to-disk works fine.

Thanks for any solution,
Martin Sin.

-- Package-specific info:

--- configuration
== /etc/hibernate/common.conf ==
Verbosity 0
LogFile /var/log/hibernate.log
LogVerbosity 1
Distribution debian
SaveClock restore-only
UnloadBlacklistedModules yes
LoadModules auto
UpInterfaces auto eth1
SwitchToTextMode yes
== /etc/hibernate/disk.conf ==
TryMethod ususpend-disk.conf
TryMethod sysfs-disk.conf
== /etc/hibernate/hibernate.conf ==
TryMethod suspend2.conf
TryMethod disk.conf
TryMethod ram.conf
== /etc/hibernate/ram.conf ==
TryMethod ususpend-ram.conf
TryMethod sysfs-ram.conf
EnableVbetool yes
VbetoolPost yes
== /etc/hibernate/suspend2.conf ==
UseSuspend2 yes
Reboot no
EnableEscape yes
DefaultConsoleLevel 1
Compressor lzf
Encryptor none
SuspendDevice swap:/dev/sda1:0x1204dc8
FilewriterLocation /suspend_file 1000
VerifyFilewriterResume2 yes
 ProcSetting userui_program /usr/local/sbin/suspend2ui_text
FullSpeedCPU yes
Include common.conf
== /etc/hibernate/sysfs-disk.conf ==
UseSysfsPowerState disk
Include common.conf
== /etc/hibernate/sysfs-ram.conf ==
UseSysfsPowerState mem
Include common.conf
== /etc/hibernate/ususpend-both.conf ==
USuspendMethod both
Include common.conf
== /etc/hibernate/ususpend-disk.conf ==
USuspendMethod disk
Include common.conf
== /etc/hibernate/ususpend-ram.conf ==
USuspendMethod ram
USuspendRamForce yes
Include common.conf

--- /sys/power
== /sys/power/disk ==
platform
== /sys/power/image_size ==
524288000
== /sys/power/resume ==
0:0
== /sys/power/state ==
mem disk 

--- log
Starting suspend at Út čec 17 12:30:25 CEST 2007
hibernate-ram: [01] Executing CheckLastResume ... 
hibernate-ram: [01] Executing CheckRunlevel ... 
hibernate-ram: [01] Executing LockFileGet ... 
hibernate-ram: [01] Executing NewKernelFileCheck ... 
hibernate-ram: [10] Executing EnsureUSuspendCapable ... 
hibernate-ram: [11] Executing XHacksSuspendHook1 ... 
hibernate-ram: [59] Executing RemountXFSBootRO ... 
hibernate-ram: [60] Executing NetworkStop ... 
hibernate-ram: [89] Executing SaveKernelModprobe ... 
hibernate-ram: [91] Executing ModulesUnloadBlacklist ... 
Some modules failed to unload: nvidia
hibernate-ram: [95] Executing XHacksSuspendHook2 ... 
hibernate-ram: [97] Executing VbetoolSaveState ... 
hibernate-ram: [98] Executing CheckRunlevel ... 
hibernate-ram: [99] Executing DoUSuspend ... 
hibernate-ram: Running /usr/sbin/s2ram  -f ...
hibernate-ram: [97] Executing VbetoolRestoreState ... 
hibernate-ram: [90] Executing ModulesLoad ... 
hibernate-ram: [89] Executing RestoreKernelModprobe ... 
hibernate-ram: [85] Executing XHacksResumeHook2 ... 
hibernate-ram: [70] Executing ClockRestore ... 
hibernate-ram: [60] Executing NetworkStart ... 
hibernate-ram: [59] Executing RemountXFSBootRW ... 
hibernate-ram: [11] Executing XHacksResumeHook1 ... 
hibernate-ram: [01] Executing NoteLastResume ... 
Failed to bring up eth1.
hibernate-ram: [01] Executing LockFilePut ... 
Resumed at Út čec 17 12:30:40 CEST 2007

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.21-2-amd64 (SMP w/1 CPU core)
Locale: LANG=cs_CZ.UTF-8, LC_CTYPE=cs_CZ.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages hibernate depends on:
ii  console-tools  1:0.2.3dbs-65 Linux console and font utilities

Versions of packages hibernate recommends:
ii  dash   0.5.3-7   The Debian Almquist Shell
ii  hdparm 7.5-1 tune hard disk parameters for high
ii  uswsusp0.6~cvs20070618-1 tools to use userspace software su
ii  vbetool0.7-1.1   run real-mode video BIOS code to a

-- no debconf information



Bug#433452: libxul0d: aborts page loading with no feedback if connection is closed by server

2007-07-17 Thread Sam Morris
Package: libxul0d
Version: 1.8.1.4-3
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

If the server closes the connection before epiphany or firefox have had
a chance to send a request, they silently abort the page load, leaving
me with a blank page. I would expect to have an error page saying
something like 'server closed connection'.

To reproduce, run 'ssh -L 8000:localhost:8000 someserver' and then send
epiphany to http://localhost:8000/. This assumes that there is nothing
listening on port 8000 on the server you ssh to. ;)

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (530, 'testing'), (520, 'unstable'), (510, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libxul0d depends on:
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2-20070627-1 GCC support library
ii  libglib2.0-02.12.12-1+b1 The GLib library of C routines
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.6-1  spell checker and morphological an
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libmozjs0d  1.8.1.4-3The Mozilla SpiderMonkey JavaScrip
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime Library
ii  libnss3-0d  3.11.7-1 Network Security Service libraries
ii  libpango1.0-0   1.16.4-1 Layout and rendering of internatio
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libstdc++6  4.2-20070627-1   The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrender1 1:0.9.2-1X Rendering Extension client libra
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  libxul-common   1.8.1.4-3Gecko engine library - common file
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

libxul0d recommends no packages.

- -- no debconf information

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

iD8DBQFGnKcNshl/216gEHgRAj5VAKD0ikN/n+GX8mYPYWe7E4gNvG8UVQCgh/7X
qlojPDU8Ji81OIWyuZqSpoc=
=9R77
-END PGP SIGNATURE-


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



Bug#433427: Critical privacy issue in gnome-screensaver - personal pictures may be shown

2007-07-17 Thread Loïc Minier
Hi,

On Tue, Jul 17, 2007, Artyom wrote:
 The _default_ configuration of the screen saver
 in Gnome invokes random screen saver. One of 
 them shows some random pictures from you Home
 folder. This may cause unpleasant issue when
 the private and personal pictures will be 
 accidentally shown on the screen of your laptop
 or desktop PC. In some cases it may cause a
 very bad results.

 The default configuration should be the Debian Floaters theme.  Are you
 sure you're using gnome-screensaver?  Can you check which screensaver
 is selected in the preferences?  Can you test whether the Debian
 Floaters theme works for you?

   Bye,
-- 
Loïc Minier



Bug#350774: It's free and top that should be documented

2007-07-17 Thread Johan Walles

IMO it's free and top that should be documented (or fixed), since they
are the ones that provide useless free memory measurements.

When I'm asking about free memory, what I really want to know is: If
a user-space program wants more memory, how much can it get?.

That's what htop answers.

The values reported by top / free might be useful for kernel hackers
doing some kind of VM system tuning, but for most people those tools
are useless for measuring free memory.

 Regards //Johan (author of Bubblemon which has the same problem)


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



Bug#433427: Critical privacy issue in gnome-screensaver - personal pictures may be shown

2007-07-17 Thread Artyom
Hello,

Ok,
I'll check this on new user when I'll get home.
Maybe your are right and it is not the _default_
screen saver in the system and I had forget
something.

However, even if this is not the default one,
there is a screen saver that runs random screen
savers -- the configuration that and may be
chosen and thus cause a serious security trouble
when one of them accidentally will disclose some
images.

I mean, a user may choose one of the options
random screen saver, when he is not *aware* of the
situation that one of the random screen savers 
may show his private images. This images
may be shown in unexpected moment - at work/home
and cause real troubles.

I think, the screen saver that shows images from
home folder (I think ~/Pictures) must not be
in list of random screen savers.

Artyom

P.S.: I had such situation, there was nothing bad
  in the shown images, however it was still
  not pleasant.



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



Bug#433455: /usr/bin/pdftex: $TEXEDIT default doesn't cope with spaces in filenames

2007-07-17 Thread Johannes Berg
Package: texlive-base-bin
Version: 2007-12
Severity: minor
File: /usr/bin/pdftex


When interactively running tex over any document with an error it will stop
and ask what to do, possibilities include edit (by pressing 'e'.) This has
a slight bug: the default appears to be 'vi +%d %s' but no quoting of the %s
filename argument is done, thus a document with a space leads to the command
line
|  vi +3 name with spaces.tex
making vi open three new buffers. At minimum, the $TEXEDIT default should be
'vi +%d %s'.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.22-ge904e31d-dirty (PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages texlive-base-bin depends on:
ii  ed  0.2-20   The classic unix line editor
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libkpathsea42007-12  TeX Live: path search library for 
ii  libncurses5 5.6+20070602-1   Shared libraries for terminal hand
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpoppler1 0.5.4-6  PDF rendering library
ii  libx11-62:1.1.2-1X11 client-side library
ii  libxaw7 1:1.0.3-3X11 Athena Widget library
ii  libxmu6 1:1.0.3-1X11 miscellaneous utility library
ii  libxpm4 1:3.5.6-3X11 pixmap library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  mime-support3.39-1   MIME files 'mime.types'  'mailcap
ii  perl5.8.8-7  Larry Wall's Practical Extraction 
ii  texlive-common  2007-10  TeX Live: Base component
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages texlive-base-bin recommends:
ii  perl-tk  1:804.027-7 Perl module providing the Tk graph

Versions of packages tex-common depends on:
ii  debconf   1.5.13 Debian configuration management sy
ii  ucf   3.001  Update Configuration File: preserv

Versions of packages texlive-base-bin is related to:
pn  tetex-basenone (no description available)
pn  tetex-bin none (no description available)
pn  tetex-extra   none (no description available)
ii  tex-common1.9Common infrastructure for using an

-- debconf information:
  tex-common/singleuser: false
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:


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



Bug#383049: Preliminary checks

2007-07-17 Thread Neil Williams
I haven't heard from the g-wrap maintainer in some time so I'm
preparing an NMU to fix a different g-wrap bug affecting gnucash (as
well as an NMU for gnucash itself) and thought I'd take a look at this
related bug.

I've only done preliminary checks so far but if g-wrap is rebuilt to
depend on libgwrap-runtime0 instead of libgwrap-runtime0-dev, gnucash
appears to install and operate normally.

So far, it appears to be one typo causing both bugs. Removing the
suspected typo prevents g-wrap depending on libgwrap-runtime0-dev which
in turn prevents gnucash depending on guile-1.6-dev.

Merging the bugs - I will investigate this issue further.

-- 


Neil Williams
=
http://www.data-freedom.org/
http://www.nosoftwarepatents.com/
http://www.linux.codehelp.co.uk/



pgpcmrmYxVAkO.pgp
Description: PGP signature


Bug#433456: dh-make-php: phppkginfo does not open package.xml properly

2007-07-17 Thread Rafal Krypa
Package: dh-make-php
Version: 0.2.3
Severity: grave
Justification: renders package unusable

I'm sorry for reporting bug in yet unreleased package version, but the
0.2.2 version is almost unusable because of bug #432880 and I tried the
svn version as Uwe Steinmann suggested.
New dh-make-php dropped xmlstarlet dependency and now uses its own
script to retrieve package information. Usage information printed by
/usr/share/dh-make-php/phppkginfo says:

-
Usage: /usr//share/dh-make-php/phppkginfo dir command
  dir  - Directory containing package.xml file

commands:
  version  - Return version of package
  maintainers  - Return comma separated list of maintainers
-

But phppkginfo expects its first argument to full path to package.xml
file, not the directory that contains it.
Because in /usr/share/dh-make-php/dh-make-php.lib the script is also
called with directory argument, dh-make-php does not work.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages dh-make-php depends on:
ii  cdbs0.4.49   common build system for Debian pac
ii  php-pear5.2.0-10+lenny1  PEAR - PHP Extension and Applicati
ii  php4-pear   6:4.4.4-9+lenny1 PHP Extension and Application Repo

dh-make-php recommends no packages.

-- no debconf information


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



Bug#336240: Please solve this very simple bug!

2007-07-17 Thread Sam Morris
I would like to create a grep-doc package to ship upstream's info
documentation. However this is foiled by the fact that grep still tries
to register /usr/share/grep.info.

The alternative is that I would have to rename the info file, which
would be bad as it means that the behaviour of Debian's grep package
would differ from that of upstream and every other distribution.

-- 
Sam Morris
http://robots.org.uk/

PGP key id 1024D/5EA01078
3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078


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


Bug#433411: lintian: New checks for FreeDesktop's desktop files

2007-07-17 Thread Daniel Leidert
When looking over your checks I found a serious issue: Encoding is *not*
a deprecated key! Please read appendix d of the spec.

You should further add a test for the ending semicolon of the MimeType
and the Categories field (if not empty).

Then, what is desktop-icon-not-in-xpm-format used for? There is no
recommendation nor requrement for an XPM icon. It is recommended to
supply the icon name without the path and without an extension.
desktop-icon-missing is also useless, because there is no requirement,
the icon must be there. The icon could be part of a theme, that is
currently not installed. When I say theme, you also see, that
checking /usr/share/pixmaps is useless. And forcing the user to install
all themes just to check if any contains the icon, is a bad idea. Ditto
for desktop-icon-too-big. Themese can supply the icon in any size or as
scalable vector graphics. IMHO useless test too. IMHO the only test you
could do here is, if the icon name follows the recommendation: Check if
it uses a path and check if it contains an extension and throw warnings
in these cases.

Another nice check would be, if the encoding of the file is correct.
This test would need two parts: 1) Test if the given value of the
Encoding key fits the encoding of the file. 2) If no Encoding key is
given, check if the encoding of the file is UTF-8.

Some other tests (could be done in the the future if seen as useful):
Check for X11/GTK/GNOME/QT/KDE/Motif/Java dependencies and complain if
the Categories key does not contain the related category.

Regards, Daniel



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



Bug#433458: imp4: Login works with IE but not with firefox

2007-07-17 Thread Leonardo Maccari
Package: imp4
Version: 4.1.3-4
Severity: important


IMP3 login is always unsuccessful with firefox (both for win and linux), but 
works with IE.
Even if the logs in /var/log/imp4/ say that login has been successful, the 
login page is 
reloaded and it is impossible to enter the webmail. The situation is similar to 
what 
discussed here:http://marc.info/?l=impm=118065084218874w=2 (we have no SQL 
end error logs)
in IMP. we are using local TLS/IMAP configuration.

regards,
LM.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-3-686-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])

Versions of packages imp4 depends on:
ii  horde3   3.1.3-4 horde web application framework
ii  php-mail-mime1.3.1-1.1   PHP PEAR module for creating and d
ii  php4-imap6:4.4.4-8+etch4 IMAP module for php4

Versions of packages imp4 recommends:
ii  locales 2.3.6.ds1-13 GNU C Library: National Language (

-- no debconf information


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



Bug#433457: ftp.debian.org: please remove selinux-policy-default

2007-07-17 Thread Russell Coker
Package: ftp.debian.org
Severity: normal

It's obsoleted by selinux-policy-refpolicy* packages.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-xen-686
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)


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



Bug#428975: smartmontools: smartd not working with kernel 2.6.22-rc4

2007-07-17 Thread Klaus Fuerstberger
The bug can be closed with a kernel patch mentioned here:

http://lkml.org/lkml/2007/7/16/137

Bye Klaus


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



Bug#431724: misdn packaging of latest versions

2007-07-17 Thread Dermot Bradley
I have have packaged misdn-kernel and misdn-user for 1_1_5 and I've been
talking to people on the pkg-voip list about it.

All I need to know is where to put my patches so the maintainer can pick
them up...




Stirk, Lamont  Associates Ltd.
Registered Address: Thomas Andrews House, Queens Road, Belfast,  BT3 9DU
Registered in Northern Ireland, Number: NI 47983. VAT Number: 832 2778 22




Bug#433459: initramfs-tools: add error messages about ignored files in hooks directory

2007-07-17 Thread Kornilios Kourtis
Package: initramfs-tools
Version: 0.89
Severity: minor
Tags: patch

Hi, 

Something like the following patch would have saved me some debugging time.

--- scripts/functions.old   2007-05-29 01:13:06.0 +0300
+++ scripts/functions   2007-07-17 14:43:17.0 +0300
@@ -88,15 +88,18 @@
# only allow variable name chars
case ${si_x#${initdir}/} in
*[![:alnum:]_]*)
+   echo $si_x ignored: only alphanumeric or '_' allowed 
in filename
continue
;;
esac
# skip non executable scripts
if [ ! -x ${si_x} ]; then
+   echo $si_x ignored: not executable
continue
fi
# skip directories
if [ -d ${si_x} ]; then
+   echo $si_x ignored: its a directory
continue
fi
initlist=${initlist} ${si_x#${initdir}/}

Please consider applying it.

Thanks.


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



Bug#433460: Installation-report Bull novascale R422

2007-07-17 Thread Patrik Wirt
Package: installation-reports

Boot method: Debian 4.0 DVD linuxtag 2007 Edition  
Image version: Debian GNU/Linux 4.0 r0 Etch - Official Multi-architecture
i386/amd64/powerpc/source DVD #1 20070407-12:57 
Date: Jul 12 15:03:06

Machine: Bull Novascale R422 (SATA)
Processor: 2x Intel® Xeon™ 3GHz Dualcore FSB1333, 4MB L2 Cache (2x2)
Memory: 2GB FBD DDR2-667
Partitions:
r422deb:/# df -Tl
Dateisystem   Typ1K-Blöcke   Benutzt Verfügbar Ben% Eingehängt auf
/dev/sda1 ext3 6728280664320   5722180  11% /
tmpfstmpfs 1685320 0   1685320   0% /lib/init/rw
udev tmpfs   1024052 10188   1% /dev
tmpfstmpfs 1685320 0   1685320   0% /dev/shm
/dev/sda6 ext3   148972992192088 141213488   1% /home

Output of lspci -nn and lspci -vnn:

r422deb:/# lspci -nn
00:00.0 Host bridge [0600]: Intel Corporation 5000P Chipset Memory
Controller Hub [8086:25d8] (rev b1)
00:02.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x8 Port 2-3 [8086:25f7] (rev b1)
00:04.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x8 Port 4-5 [8086:25f8] (rev b1)
00:06.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x8 Port 6-7 [8086:25f9] (rev b1)
00:08.0 System peripheral [0880]: Intel Corporation 5000 Series Chipset DMA
Engine [8086:1a38] (rev b1)
00:10.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset Error
Reporting Registers [8086:25f0] (rev b1)
00:10.1 Host bridge [0600]: Intel Corporation 5000 Series Chipset Error
Reporting Registers [8086:25f0] (rev b1)
00:10.2 Host bridge [0600]: Intel Corporation 5000 Series Chipset Error
Reporting Registers [8086:25f0] (rev b1)
00:11.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset Reserved
Registers [8086:25f1] (rev b1)
00:13.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset Reserved
Registers [8086:25f3] (rev b1)
00:15.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset FBD
Registers [8086:25f5] (rev b1)
00:16.0 Host bridge [0600]: Intel Corporation 5000 Series Chipset FBD
Registers [8086:25f6] (rev b1)
00:1d.0 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #1 [8086:2688] (rev 09)
00:1d.1 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #2 [8086:2689] (rev 09)
00:1d.2 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset UHCI USB Controller #3 [8086:268a] (rev 09)
00:1d.7 USB Controller [0c03]: Intel Corporation 631xESB/632xESB/3100
Chipset EHCI USB2 Controller [8086:268c] (rev 09)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e]
(rev d9)
00:1f.0 ISA bridge [0601]: Intel Corporation 631xESB/632xESB/3100 Chipset
LPC Interface Controller [8086:2670] (rev 09)
00:1f.2 IDE interface [0101]: Intel Corporation 631xESB/632xESB/3100
Chipset SATA Storage Controller IDE [8086:2680] (rev 09)
00:1f.3 SMBus [0c05]: Intel Corporation 631xESB/632xESB/3100 Chipset SMBus
Controller [8086:269b] (rev 09)
01:00.0 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI Express
Upstream Port [8086:3500] (rev 01)
01:00.3 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI Express to
PCI-X Bridge [8086:350c] (rev 01)
02:00.0 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI Express
Downstream Port E1 [8086:3510] (rev 01)
02:02.0 PCI bridge [0604]: Intel Corporation 6311ESB/6321ESB PCI Express
Downstream Port E3 [8086:3518] (rev 01)
04:00.0 Ethernet controller [0200]: Intel Corporation 631xESB/632xESB DPT
LAN Controller Copper [8086:1096] (rev 01)
04:00.1 Ethernet controller [0200]: Intel Corporation 631xESB/632xESB DPT
LAN Controller Copper [8086:1096] (rev 01)
08:01.0 VGA compatible controller [0300]: ATI Technologies Inc ES1000
[1002:515e] (rev 02)

r422deb:/# lspci -vnn
00:00.0 Host bridge [0600]: Intel Corporation 5000P Chipset Memory
Controller Hub [8086:25d8] (rev b1)
Subsystem: Super Micro Computer Inc Unknown device [15d9:9980]
Flags: bus master, fast devsel, latency 0
Capabilities: [50] Power Management version 2
Capabilities: [58] Message Signalled Interrupts: Mask- 64bit-
Queue=0/1 Enable-
Capabilities: [6c] Express Root Port (Slot-) IRQ 0
Capabilities: [100] Advanced Error Reporting

00:02.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI
Express x8 Port 2-3 [8086:25f7] (rev b1) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=05, sec-latency=0
I/O behind bridge: 2000-2fff
Memory behind bridge: d800-d81f
Capabilities: [50] Power Management version 2
Capabilities: [58] Message Signalled Interrupts: Mask- 64bit-
Queue=0/1 Enable+
Capabilities: [6c] Express Root Port (Slot-) IRQ 0
Capabilities: [100] Advanced Error Reporting

00:04.0 PCI bridge [0604]: Intel Corporation 5000 Series Chipset PCI

Bug#293917: pdnsd: make proxy_only default

2007-07-17 Thread Pierre HABOUZIT
tag 293917 + wontfix
thanks

On Sun, Feb 06, 2005 at 09:08:56PM +0100, David Schweikert wrote:
 Package: pdnsd
 Version: 1.1.11par-1
 Severity: wishlist
 
 
 I propose to change the server section in the default config as follows:
 
 server {
 label=resolvconf;
 proxy_only=on;
 lean_query=on;
 }
 
 This makes pdnsd useable for me (I had timeouts of 5 seconds otherwise).
 See this mail exchange with the upstream author for why this is a good idea 
 (at
 least for me, but I guess it would be also good for most people).

  I disagree, pdnsd can be used as a recursive resolver, and in that
case, you want it to recurse, and not your ISP DNS, if your ISP allow
you to query things on the port 53.

  In the sample config file, proxy_only=on is advertised for ISP/PPP/...
server blocks, and it makes sense to apply it only for those blocks. I
won't put it as the full default.


-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpUYLY9lcBko.pgp
Description: PGP signature


Bug#433461: please provide a libcfitsio3-dbg package

2007-07-17 Thread Sebastian Harl
Package: cfitsio3
Severity: wishlist
Tags: patch

Hi,

Could you please provide a libcfitsio3-dbg package with the debugging symbols
of the library? Having those available makes debugging programs linked against
libcfitsio3 a lot easier.

The attached patch is against version 3.006-1.3 of the package (found in Etch)
but should apply to the version in unstable as well.

Thanks in advance!

Cheers,
Sebastian

-- 
Sebastian tokkee Harl
GnuPG-ID: 0x8501C7FC
http://tokkee.org/

diff -u cfitsio3-3.006/debian/control cfitsio3-3.006/debian/control
--- cfitsio3-3.006/debian/control
+++ cfitsio3-3.006/debian/control
@@ -22,6 +22,18 @@
  use this library in your own code. It also contains example source 
  files that demonstrate the use of cfitsio.
 
+Package: libcfitsio3-dbg
+Architecture: any
+Depends: libcfitsio3 (= ${Source-Version})
+Description: library for I/O with FITS format data files (debugging symbols)
+ FITS (Flexible Image Transport System) is a data format most used in
+ astronomy. cfitsio is a library of ANSI C routines for reading and
+ writing FITS format data files.  A set of Fortran-callable wrapper
+ routines are also included for the convenience of Fortran
+ programmers.
+ .
+ This package contains what you need to debug the library.
+
 Package: libcfitsio3
 Architecture: any
 Depends: ${shlibs:Depends}
diff -u cfitsio3-3.006/debian/rules cfitsio3-3.006/debian/rules
--- cfitsio3-3.006/debian/rules
+++ cfitsio3-3.006/debian/rules
@@ -139,9 +139,9 @@
 #  dh_clean -k
dh_installdirs -a
 #runtime
-   install -s libcfitsio.so.* $(d_lib)/usr/lib
+   install libcfitsio.so.* $(d_lib)/usr/lib
ln -s libcfitsio.so.$(version) $(d_lib)/usr/lib/libcfitsio.so.$(major)
-   strip --strip-unneeded $(d_lib)/usr/lib/*.so.*
+#  strip --strip-unneeded $(d_lib)/usr/lib/*.so.* # this is done by 
dh_strip
install -d $(d_lib)/DEBIAN
 #  cp debian/shlibs $(d_lib)/DEBIAN/shlibs
 
@@ -174,7 +174,7 @@
 #  dh_undocumented
dh_installchangelogs -a changes.txt
dh_link -a
-   dh_strip -a
+   dh_strip -a --dbg-package=libcfitsio3-dbg
dh_compress -a
dh_fixperms -a 
# You may want to make some executables suid here.


signature.asc
Description: Digital signature


Bug#428800: typo appears confirmed

2007-07-17 Thread Neil Williams
I have rebuilt g-wrap with the typo fixed, installed the packages and
removed libgwrap-runtime0-dev and gnucash runs as normal.

I propose to fix this in the NMU prepared for #359299.

-- 


Neil Williams
=
http://www.data-freedom.org/
http://www.nosoftwarepatents.com/
http://www.linux.codehelp.co.uk/



pgprqocteBG7h.pgp
Description: PGP signature


Bug#433446: #43346: webcheck fails with beautifulsoup error

2007-07-17 Thread Bas Zoetekouw
Hi!

Lateron, it fails with the same error on another page:

webcheck:   http://bugs.debian.org/426268
webcheck:   http://www.digilife.be/quickreferences/quickrefs.htm
Traceback (most recent call last):
  File /usr/bin/webcheck, line 249, in ?
main()
  File /usr/bin/webcheck, line 224, in main
site.crawl(fp) # this will take a while
  File /usr/share/webcheck/crawler.py, line 216, in crawl
link.fetch()
  File /usr/share/webcheck/crawler.py, line 538, in fetch
parsermodule.parse(content, self)
  File /usr/share/webcheck/parsers/html/beautifulsoup.py, line 60, in parse
base = myurllib.normalizeurl(htmlunescape(base['href']).strip())
  File /var/lib/python-support/python2.4/BeautifulSoup.py, line 419, in 
__getitem__
return self._getAttrMap()[key]
KeyError: 'href'


-- 
+--+
| Bas Zoetekouw  | Sweet day, so cool, so calm, so bright, |
|| The bridall of the earth and skie:  |
| [EMAIL PROTECTED]  | The dew shall weep thy fall tonight;|
+|For thou must die.   |
 +-+


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



Bug#433462: reportbug: Please add free disk space as part of the information automatically attached to bug reports

2007-07-17 Thread Francois Marier
Package: reportbug
Version: 3.38
Severity: wishlist

Lots of programs have seemingly random problems whenever they are run on a 
machine which is running out of disk space.  These problems are often hard to 
debug and troubleshoot.

So my suggestion is to include the free disk space (from most mounted drives) 
in the system information that's automatically added to bug reports.

Perhaps doing something like:

  df | grep ^/dev/[sh]d

That way, package maintainers can easily check that when they are confronted 
with a weird problem.

Francois


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



  1   2   3   4   5   6   >