Bug#507956: findimagedupes: Use of glob means folders with whitespace in their names are dropped

2008-12-05 Thread Brendon Higgins
Package: findimagedupes
Version: 2.11-2
Severity: normal


Hi there,

Line 365 of findimagedupes perl script makes a call to glob that fails when the
path contains whitespace. "find -type d -print0 | findimagedupes -0 -" will
ignore files in those directories because of this.

The immediate solution might appear to be to use bsd_glob, but that only solves
the problem of folders with whitespace. Folders with other characters that are
meaningful to glob/bsd_glob will probably still have issues.

Temporary workaround (for my situation, at least) is to use find to generate
the full file list.

I'd help more but my knowledge of perl is mediocre at best. FWIW, I don't think
glob is necessary if an alternative folder content listing function can be
used.

Peace,
Brendon


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

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

Versions of packages findimagedupes depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libfile-mimeinfo-perl 0.15-1 Perl module to determine file type
ii  libgraphics-magick-perl   1.1.11-3.2 format-independent image processin
ii  libinline-perl0.44-5 Write Perl subroutines in other pr
ii  perl  5.10.0-18  Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.10.0]5.10.0-18  minimal Perl system

findimagedupes recommends no packages.

findimagedupes suggests no packages.

-- no debconf information



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



Bug#507954: magicrescue should recommend libjpeg-progs (and others)

2008-12-05 Thread Neale Banks

Package: magicrescue
Version: 1.1.5-1

When attempting to recover JPEGs, files were found but magicrescue
complained like this:

Found jpeg-exif at 0x50A00
sh: jpegtran: command not found
No output file


jpegtran is part of package libjpeg-progs - after installing libjpeg-progs
JPEG images were successfully recovered.

Should magicrescue depend on or recommend libjpeg-progs?

Also, found avi files generate a similar complaint re mencoder but
mencoder doesn't appear to be in any Lenny/sid package.

Thanks,
Neale.




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



Bug#507953: KBasic: Open source IDE based on Basic language

2008-12-05 Thread Илья Черных
Package: wnpp
Severity: wishlist


Please add KBasic recently released under GPLv3 into the repository.

The source code is located at this direct link:

http://www.kbasic.com/kbasic_linux_sourcecode.zip

The download page is here:

http://www.kbasic.com/doku.php?id=source_codes

Also I would ask to remove the annoying license notifier from the program start.



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



Bug#507952: picp: inappropriate exit status on some failure types

2008-12-05 Thread Drake Wilson
Package: picp
Version: 0.6.7-3
Severity: normal
Tags: patch

When picp encounters some types of errors, such as finding CTS deasserted
(implying that there is no programmer hooked up to the other end of the serial
line), it reports the error to standard error correctly, but then exits with
a zero status, indicating success.  This does not seem correct.  A patch is
attached that attempts to correct this problem, though it is a fairly quick
patch and should be reviewed more thoroughly by the maintainer before applying.
This patch also causes picp to exit with a nonzero status when receiving an
interrupt signal, and changes a strange exit(1) line in main() to more closely
conform to the error propagation style of the rest of main.c.  Apply with
[patch -p1] in the picp-0.6.7 directory.

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

Kernel: Linux 2.6.27.1 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages picp depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries

picp recommends no packages.

picp suggests no packages.

-- no debconf information
diff -ur picp-0.6.7.old/main.c picp-0.6.7.new/main.c
--- picp-0.6.7.old/main.c	2008-12-05 22:40:18.0 -0600
+++ picp-0.6.7.new/main.c	2008-12-05 22:40:03.0 -0600
@@ -223,7 +223,7 @@
 {
 	fprintf(stderr, "exiting...\n");
 	ResetPICSTART();
-	exit(0);
+	exit(1);
 }
 
 //-
@@ -3420,10 +3420,10 @@
 fprintf(stderr, " programmer\n\n");
 fflush(stderr);
 CloseDevice(serialDevice);
-exit(1);
+fail = true;
 			}
 
-			if (DoInitPIC(picDevice))	// try to load up the parameters for this device
+			if (!fail && DoInitPIC(picDevice))	// try to load up the parameters for this device
 			{
 while (argc && !fail)	// do as long as we can read some more
 {
@@ -3467,6 +3467,7 @@
 	}
 
 	fprintf(stderr, " programmer does not support ISP programming\n");
+	fail = true;
 }
 else
 	ISPflag = true;
@@ -3499,32 +3500,49 @@
 
 			default:
 fprintf(stderr, "bad argument: '%s'\n", *(argv - 1));	// back up, show the trouble spot
+fail = true;
 break;
 		}
 	}
 }
 			}
-			else		// DoInitPIC failed
+			else if (!fail)		// DoInitPIC failed
+			{
 fprintf(stderr, "failed to initialize %s\n", picDevice->name);
+fail = true;
+			}
 		}
 		else
+		{
 			fprintf(stderr, "failed to obtain programmer firmware version number\n");
+			fail = true;
+		}
 	}
 	else
+	{
 		fprintf(stderr, "failed to connect to programmer\n");
+		fail = true;
+	}
 }
 else
+{
 	fprintf(stderr, "failed to set up the serial port\n");
+	fail = true;
+}
 
 CloseDevice(serialDevice);
 			}
 			else
+			{
 fprintf(stderr, "failed to open device '%s'\n", deviceName);
+fail = true;
+			}
 		}
 		else
 		{
 			fprintf(stderr, "unrecognized PIC device type: '%s'\n", picName);		// don't know that one;
 			ShowDevices();		// give a helpful list of supported devices
+			fail = true;
 		}
 	}
 	else
Only in picp-0.6.7.new: main.c.~1~


Bug#507917: debhelper + data-only packages = annoying lintian warning

2008-12-05 Thread Raphael Geissert
Hi,

Eugene V. Lyubimkin wrote:
[...]
> Lintian recently started to produce 'debhelper-but-no-misc-depends'
> warnings. While it reveal true issues, it also produces false positives
> in case of data-only packages, which have no 'Depends' field at all.

Could you please give an example?

Thanks,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net





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



Bug#507951: picp: binary executable shows up in source tree

2008-12-05 Thread Drake Wilson
Package: picp
Version: 0.6.7-3
Severity: minor

When I retrieve the source for picp 0.6.7-3 using [apt-get source picp],
I see a "picp" file inside the resulting directory which has its executable
bit turned on.  file claims that it's an "ELF 32-bit LSB executable, Intel
80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux
2.2.5, stripped".  This doesn't seem correct for a source directory.

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

Kernel: Linux 2.6.27.1 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages picp depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries

picp recommends no packages.

picp suggests no packages.

-- no debconf information



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



Bug#507950: doesn't honor $HOME while accessing .alex4/

2008-12-05 Thread Ivan Shmakov
Package: alex4
Severity: normal
Version: 1.1-2

The `alex4' command currently doesn't honor the value of the
HOME environment variable while reading its configuration, and
uses the value from the user's passwd(5) entry instead, contrary
to what the rest of the system does, e. g.:

[EMAIL PROTECTED] $ HOME=/var/tmp/test 
[EMAIL PROTECTED] $ export HOME 
[EMAIL PROTECTED] $ ls -d ~/ 
/var/tmp/test/
[EMAIL PROTECTED] $ alex4
Error creating dir /nonexistent/.alex4 : No such file or directory

(Indeed, the home directory for the `nobody' user is filed as
`/nonexistent' in passwd(5).)

This prevents one from choosing a different directory for the
game files to be saved under.

PS.  A quick scan through the Debian Policy Manual didn't reveal a
requirement for the programs to use $HOME and not the passwd(5)
entry, but I bet it really should be there.



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



Bug#507949: ifupdown-extra: check-duplicate-ip breaks on multi-address ifaces

2008-12-05 Thread Guillem Jover
Package: ifupdown-extra
Version: 0.13
Severity: normal
Tags: patch

Hi,

On interfaces with multiple addresses, check-duplicate-ip breaks as it
calls arping with all addresses at once. Attached a patch fixing this.

regards,
guillem
>From c9ae9dec7869a6dbf48fac8e5238279690022b87 Mon Sep 17 00:00:00 2001
From: Guillem Jover <[EMAIL PROTECTED]>
Date: Sat, 6 Dec 2008 05:34:29 +0200
Subject: [PATCH] Support multi-address interfaces

---
 if-up-scripts/check-duplicate-ip |   10 ++
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/if-up-scripts/check-duplicate-ip b/if-up-scripts/check-duplicate-ip
index d66de04..56a044d 100755
--- a/if-up-scripts/check-duplicate-ip
+++ b/if-up-scripts/check-duplicate-ip
@@ -81,10 +81,12 @@ do_arping() {
 		fi
 	fi
 
-	[ "$VERBOSITY" -eq 1 ] && $OUTPUT "DEBUG: Sending arp pings through $IFACE to detect other systems using $IF_ADDRESS"
-	if ! $ARPING -q -c $ARP_COUNT -w $ARP_TIMEOUT -D -I $IFACE $IF_ADDRESS ; then
-		$OUTPUT "ERROR: Duplicate address $IF_ADDRESS assigned in the network where $IFACE is connected to"
-	fi
+	for ADDR in $IF_ADDRESS; do
+		[ "$VERBOSITY" -eq 1 ] && $OUTPUT "DEBUG: Sending arp pings through $IFACE to detect other systems using $ADDR"
+		if ! $ARPING -q -c $ARP_COUNT -w $ARP_TIMEOUT -D -I $IFACE $ADDR ; then
+			$OUTPUT "ERROR: Duplicate address $ADDR assigned in the network where $IFACE is connected to"
+		fi
+	done
 }
 
 # Check our IFACE name, if it does not start with eth, bail out
-- 
1.6.0.1



Bug#507947: moodle: html2text.php is not DFSG-free

2008-12-05 Thread Raphael Geissert
Package: moodle
Version: 1.6.3-2
Severity: serious

Hello,

While taking a look at what moodle is shipping under /usr/share/moodle/lib/ I 
noticed that the file html2text.php doesn't say much about its licence other 
than a reference to upstream's website.

And from there (just quoting the most obvious ones)[1]:
> You should not attempt to prevent others from copying the scripts from your
> site. However, if you want to include the scripts in any script archives
> for downloading (such as ScriptSearch or JavaScript Kit), online or
> downloadable web templates (such as the SharePoint templates), or in
> bundled or distributed scripts/software (such as Opera or Dashboard
> widgets, or the Formativ Academic Timetable), you should contact me first
> and obtain my express written permission.

> You should check my scripts archive and 'What's new?' pages periodically to
> see if the script has been updated. More commonly updated scripts will also
> include version numbers in the .js header file(s). Updates are usually to
> provide extra functionality, or to increase browser compatibility, as well
> as the occasional bug fix. If you would like to be automatically kept up to
> date with script updates, subscribe to my RSS feed. All important script
> updates will be mentioned on there.

> — Commercial/profit-making public websites

> — Corporate internal websites

IOW: at first glance, it violates points 1, 5, and 6 of the DFSG.

When searching for other copies in the archive of the same file I found 
roundcube-core shipping a file called html2text.php[2] which includes 
html2text.inc which is released under the v2 of the GPL. Haven't checked, but 
it might be a candidate to replace moodle's.

[1]http://www.howtocreate.co.uk/jslibs/termsOfUse.html
[2]/usr/share/roundcube/program/lib/html2text.inc

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net


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


Bug#507948: xfce4: Edit option for Autostarted Applications

2008-12-05 Thread Daniel Dickinson
Package: xfce4
Version: 4.4.2.1
Severity: wishlist


It'd be nice if there was an edit button for the Autostarted Applications 
instead of only Add and Remove

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

Kernel: Linux 2.6.26-1-686 (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/dash

Versions of packages xfce4 depends on:
ii  gtk2-engines-xfce 2.4.2-2A GTK+-2.0 theme engine for Xfce
ii  thunar0.9.0-10   File Manager for Xfce
ii  xfce4-icon-theme  4.4.2-1Xfce Standard icon theme
ii  xfce4-mcs-plugins 4.4.2-4Special modules for the xfce4-mcs-
ii  xfce4-panel   4.4.2-6The Xfce4 desktop environment pane
ii  xfce4-session 4.4.2-6Xfce4 Session Manager
ii  xfce4-utils   4.4.2-8Various tools for Xfce
ii  xfdesktop44.4.2-7Provides desktop background and ro
ii  xfwm4 4.4.2-5window manager of the Xfce project

Versions of packages xfce4 recommends:
ii  desktop-base  5.0.1  common files for the Debian Deskto
ii  orage 4.5.14.0-1 Calendar for Xfce Desktop Environm
ii  xfce4-mixer   4.4.2-3Xfce4 Mixer frontend
ii  xfce4-terminal0.2.8-5Xfce terminal emulator
ii  xfprint4  4.4.2-5Printer GUI for Xfce4
ii  xorg  1:7.3+18   X.Org X Window System

xfce4 suggests no packages.

-- no debconf information



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



Bug#507944: xwhois: segfaults on start in get_servers()

2008-12-05 Thread Steve Cotton
xwhois.h:
#define BUFSIZE 1024

struct serverent {
  char *name;
  char *comment;
} servers[256];


get_servers():
  /*
   * Set all struct members to NULL.
   */

  for (i=0 ; i < BUFSIZE ; i++)
{
  servers[i].name = servers[i].comment = NULL;
}

After setting BUFSIZE to 256, the app started OK.

But pressing "Scan" locked the app up.  I fired up Wireshark, 90
seconds later it's still sending out SYN packets to servers that
don't respond.  After a couple of minutes, it displayed the
results.  They're mostly along the lines of "server did not
respond", "query format not supported", "this server only has the
.FOO and .BAR TLDs".

Popcon is 63 installs, 14 votes, and it has a dependency on GTK-1.2.
Personally, I think this isn't one to fix.


Checking connectivity on my PC, the normal text-only "whois" package
has a barely noticable delay to look up whois debian.org .

Steve



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



Bug#507946: xscreensaver: Does not stay operation on the second of a dual screen display

2008-12-05 Thread Daniel Dickinson
Package: xscreensaver
Version: 5.07-1
Severity: normal


xscreensaver, when told to 'blank now' blanks the first and second display, but 
the second display (which has lower resolution and bit depth and no 
acceleration) immediately becomes unblanked and sits unblanked.

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

Kernel: Linux 2.6.26-1-686 (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/dash

Versions of packages xscreensaver depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6.1 The Cairo 2D vector graphics libra
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpam0g   1.0.1-4   Pluggable Authentication Modules l
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  libxmu62:1.0.4-1 X11 miscellaneous utility library
ii  libxpm41:3.5.7-1 X11 pixmap library
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  libxxf86misc1  1:1.0.1-3 X11 XFree86 miscellaneous extensio
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  xscreensaver-data  5.07-1data files to be shared among scre

Versions of packages xscreensaver recommends:
ii  libjpeg-progs  6b-14 Programs for manipulating JPEG fil
ii  perl [perl5]   5.10.0-18 Larry Wall's Practical Extraction 
ii  wamerican [wordlist]   6-2.3 American English dictionary words 
ii  wbritish [wordlist]6-2.3 British English dictionary words f
ii  wcanadian-huge [wordli 6-2.3 Canadian English dictionary words 
ii  wcatalan [wordlist]0.6-5 Catalan dictionary words for /usr/
ii  xli1.17.0+20061110-2 command line tool for viewing imag

Versions of packages xscreensaver suggests:
ii  dillo [www-browser] 0.8.6-3  Small and fast web browser
ii  elinks [www-browser]0.11.4-3 advanced text-mode WWW browser
ii  fortune-mod [fortune]   1:1.99.1-3.1 provides fortune cookies on demand
ii  iceweasel [www-browser] 3.0.4-1  lightweight web browser based on M
pn  qcam | streamer(no description available)
ii  w3m [www-browser]   0.5.2-2+b1   WWW browsable pager with excellent
pn  xdaliclock (no description available)
pn  xfishtank  (no description available)
ii  xscreensaver-gl 5.07-1   GL(Mesa) screen hacks for xscreens

-- no debconf information



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



Bug#507908: Packages still depending on GTK+ 1.2

2008-12-05 Thread Raphael Geissert
Barry deFreese wrote:
[...]
>>>stegdetect
>>>
> RM: filed.

Why isn't just the xsetg package dropped? stegdetect is a CLI app; only xsteg
uses GTK+

Cheers,
/me who has stegdetect installed and keeps it around to time by time try to find
something that just isn't there





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



Bug#507878: keyjnote: video support ?

2008-12-05 Thread Junichi Uekawa
Hi,

I've tried several times to debug this, and it seems like configuration file is 
loaded okay now.

I have the following:

PageProps = {
2: {
'video': '20080922-latex.ogv'
},
18: {
'video': '20080922-latex.ogv'
},
}


and it successfully starts mplayer (sometimes).  It seems not to play
back when I have spent too much time on other pages (when I go through
each page, arriving at page 18 doesn't start playback but jumping to
page 17 and going to page 18 seems to help), and it seems not to play
back the second time I enter the page.

My system seemed to hang hard when playback stopped, not quite sure if
this is reproducible.  keyjnote is killing mplayer with signal, but I
think it should first try killing with sending 'q\n' to stdin of
mplayer, then resort to sigkill so that mplayer dies peacefully.



At Fri, 5 Dec 2008 11:02:04 -0500,
Yaroslav Halchenko wrote:
> 
> sorry -- can't reproduce.
> 
> I've never used video feature before -- but now I've tried with
> impressive (rebranded keyjnote) which functionally is the same as the
> latest keyjnote 0.10.2-1, and if path to file is properly specified (ie
> it is available by that name from the directory where I invoke keyjnote)
> -- everything works nice. Thus I would advise you to check if info
> script is read (make sure that name is  matching .pdf file either
> specify it in  -I) and either video is playable by that filename with
> mplayer
> 
> also your url given in another email
> http://tokyodebian.alioth.debian.org/pdf/debianmeetingresume2008011-presentation.pdf
> is broken, so couldn't verify on that specific file
 
Of course; it was a typo of:
http://tokyodebian.alioth.debian.org/pdf/debianmeetingresume200811-presentation.pdf


regards,
junichi
-- 
[EMAIL PROTECTED],debian.org}



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



Bug#507908: Packages still depending on GTK+ 1.2

2008-12-05 Thread Barry deFreese

Raphael Geissert wrote:

Barry deFreese wrote:
[...]
  

   stegdetect



RM: filed.



Why isn't just the xsetg package dropped? stegdetect is a CLI app; only xsteg
uses GTK+

Cheers,
/me who has stegdetect installed and keeps it around to time by time try to find
something that just isn't there
  

Feel free to adopt it then. :)

Barry deFreese



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



Bug#506644: [Pkg-utopia-maintainers] Bug#506644: gnome-power-manager: Brightness applet does not change brightness

2008-12-05 Thread Charles Plessy
Le Fri, Dec 05, 2008 at 04:20:07PM +0100, Josselin Mouette a écrit :
> Indeed, the kernel support seems broken. I can change the values
> in /sys/class/backlight/acpi_video0/brightness but they have no impact
> on the brightness.
> 
> Charles, setting "xrandr --output LVDS --set BACKLIGHT_CONTROL native"
> should make at least xbacklight work, but for HAL which relies on the
> ACPI interface, this is up to the kernel.

Thanks a lot everybody for your help.

Interestingly, on my machine both methods work.

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan



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



Bug#495083: Requesting removal of libphp-phplot NOW

2008-12-05 Thread Raphael Geissert
reassign 495083 ftp.debian.org
retitle 495083 RM: libphp-phplot -- RoQA; unusable and empty for a while, no 
rdeps
severity 495083 normal
thanks

Hi,

I believe more than enough time has passed and nothing has happened. I'm now
thereby requesting the removal of the package.

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net


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


Bug#507945: tuxonice: on resume kills /dev/random working.

2008-12-05 Thread publicunimail
Package: tuxonice-userui
Version: 0.7.2+clean-4
Severity: normal
File: tuxonice

upon suspending to disk and then resuming (multiple times) /dev/random 
no longer collects randomness. i.e. cat /dev/random shows nothing

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tuxonice-userui depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libusplash0   0.5.19-3   userspace bootsplash library

Versions of packages tuxonice-userui recommends:
ii  hibernate 1.99-1 smartly puts your computer to slee

tuxonice-userui suggests no packages.

-- no debconf information



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



Bug#507944: xwhois: segfaults on start in get_servers()

2008-12-05 Thread Carl Fürstenberg
Package: xwhois
Version: 0.4.2-8.2
Severity: grave
Justification: renders package unusable

the package containing file will generate segfault directly on start.
gdb doesn't give anty usefull data.


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=sv_SE.UTF-8, LC_CTYPE=sv_SE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xwhois depends on:
ii  libc62.7-15  GNU C Library: Shared libraries
ii  libglib1.2ldbl   1.2.10-19   The GLib library of C routines
ii  libgtk1.21.2.10-18.1 The GIMP Toolkit set of widgets fo
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxi6   2:1.1.3-1   X11 Input extension library

xwhois recommends no packages.

xwhois suggests no packages.

-- no debconf information



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



Bug#507943: /usr/lib/python2.5/lib-dynload/bz2.so: BZ2File should expose compression level as an attribute

2008-12-05 Thread Josh Triplett
Package: python2.5
Version: 2.5.2-14
Severity: wishlist
File: /usr/lib/python2.5/lib-dynload/bz2.so

When opening an existing .bz2 file with BZ2File, I'd like to have access
to the compression level, so that I don't have to manually parse the
file's header.

- Josh Triplett

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.27-1-amd64 (SMP w/2 CPU cores)
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 python2.5 depends on:
ii  libbz2-1.01.0.5-1high-quality block-sorting file co
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libdb4.5  4.5.20-13  Berkeley v4.5 Database Libraries [
ii  libncursesw5  5.7+20081129-1 shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libsqlite3-0  3.5.9-6SQLite 3 shared library
ii  libssl0.9.8   0.9.8g-14  SSL shared libraries
ii  mime-support  3.44-1 MIME files 'mime.types' & 'mailcap
ii  python2.5-minimal 2.5.2-14   A minimal subset of the Python lan

python2.5 recommends no packages.

Versions of packages python2.5 suggests:
pn  python-profiler(no description available)
pn  python2.5-doc  (no description available)

-- no debconf information



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



Bug#507942: ecryptfs-utils: Missing upstream change information

2008-12-05 Thread Osamu Aoki
Package: ecryptfs-utils
Version: 67-1
Severity: minor

I was wondering why mouning operation causing message such as no "rw" option
etc...

Since there is no upstream changelog included (not even URL pointer) it
is quite difficult to find what does it mean by 

| ecryptfs-utils (67-1) unstable; urgency=low
| 
|   * Merging upstream version 67.
| 
|  -- Daniel Baumann <[EMAIL PROTECTED]>  Wed,  3 Dec 2008 09:54:00 +0100

This package seem to use tar ball from Ubuntu. It has no changelog in it not
mention of git repository URL.  Thus I have easy way to find what is the change
here.  

Upstream records its changes in thier git log.

http://git.kernel.org/?p=linux/kernel/git/mhalcrow/ecryptfs-utils.git;a=commit;h=c7cb7795689857d2ef6ef678e57cf1abf6ac7e72
| Release version 67
| 
| This version adds support for a new bootstrapping mechanism to create
| encrypted home directories.

This certainly sounds major change.   Its history tells me:

http://git.kernel.org/?p=linux/kernel/git/mhalcrow/ecryptfs-utils.git;a=commit;h=d6a8ce44288233955cbf920e022a5eb9e3f3b0da
| encrypted home dir bootstrapping
| 
| This non-trivial patch adds some bootstrapping code necessary for adding
| a new user to a system, and setting up their home directory for
| encryption.
| 
| The ecryptfs code expects the following call to take place, after the
| user and their home directory have been created, but before the
| /etc/skel has been copied to the homedir and the password established:
|  # ecryptfs-setup-private -b -u $USER
| 
| To accomplish this, the following changes are necessary:
|   - src/include/ecryptfs.h: add the ecryptfs_wrap_passphrase_file()
| function
|   - src/libecryptfs/key_management.c: implement the function
| ecryptfs_wrap_passphrase_file(); this function will take a cleartext
| mount passphrase file and wrap it appropriately
|   - src/pam_ecryptfs/pam_ecryptfs.c: call ecryptfs_wrap_passphrase_file()
| when an unwrapped passphrase file owned by the user exists, and the
| wrapped-passphrase file does not exist, if the user is changing
| their password (ie, the first passwd call that establishes the users
| password)
|   - src/utils/ecryptfs-setup-private: add support for bootstrapping an
| encrypted home directory, when called from adduser;
| * abstract ciper and keybytes to variables
| * add a -b|--bootstrap option
| * if bootstrapping, make sure we're running as root
| * redirect error messages to stderr
| * create a random_passphrase() callable function, since we will be
|   calling this from multiple places now
| * if we're bootstrapping, we need .ecryptfs to live in
|   /var/lib/ecryptfs, and linked back to ~/.ecryptfs
| * remove the --all-home functionality;  it's superceded by this
|   bootstrapping mechanims
| * when counting files in existing directories, ignore sym links
| * if bootstrapping, write mount passphrase to shm temp file
| * use safer mktemp/mv mechanism for writing config files
| * if bootstrapping, chown created files back to the user, since
|   we're running as root

If it is too much to download git changelog with git-log, please include git
location URL somewhere.

Git URL 
git://git.kernel.org/pub/scm/linux/kernel/git/mhalcrow/ecryptfs-utils.git

http://www.kernel.org/pub/scm/linux/kernel/git/mhalcrow/ecryptfs-utils.git

Or browsable one:

http://git.kernel.org/?p=linux/kernel/git/mhalcrow/ecryptfs-utils.git;a=summary

Current copyright has only reference to
Download: https://launchpad.net/ecryptfs/trunk
Current control has:
Homepage: https://launchpad.net/ecryptfs  

When you fixed my bug report, you did not put homepage as I rote but chose
launchpad.net where you get tar ball.  This made it quite tediout to
find upstream changes.  I think you should include VCS header at least.
If possible, please add URLs to the copyright too.

Osamu

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (800, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
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 ecryptfs-utils depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libecryptfs0  67-1   ecryptfs cryptographic filesystem 
ii  libgcrypt11   1.4.1-2LGPL Crypto library - runtime libr
ii  libgpg-error0 1.4-2  library for common error values an
ii  libgpgme111.1.6-2GPGME - GnuPG Made Easy
ii  libkeyutils1  1.2-9  Linux Key Management Utilities (li
ii  libpam0g  1.0.1-4+b1 Pluggable Authentication Modules l

Versions of packages ecryptfs-utils recommends:
ii  keyutils  1.2-9  Linux Key Management Utilities

Versions of packages ecryptfs-utils sugge

Bug#504347: backport the fix to etch?

2008-12-05 Thread Gokdeniz Karadag

Hi,

The second hunk of the patch[1] seems trivial enough to add to etch version of 
dovecot, is this possible ?


[1]: http://hg.dovecot.org/dovecot-sieve-1.0/rev/8b6df1256798



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



Bug#507886: xserver-xorg: X blocks suspend to RAM

2008-12-05 Thread Michel Dänzer
On Fri, 2008-12-05 at 15:56 +0100, Jörg Sommer wrote:
> Package: xserver-xorg
> Version: 1:7.4~4
> Severity: normal
> 
> Hi,
> 
> since using kernel version 2.6.28-rc1 my iBook doesn't enter the sleep
> mode, if X is active. If X is running, but not active, i.e. I'm on a
> virtual consol (e.g. tty2) the system goes asleep. With the kernel 2.6.27
> I've no problems.

Sounds like a kernel regression then?


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



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



Bug#507217: Dpkg::Source::Archive should not call tempdir() with DIR => getcwd if cwd is not writtable

2008-12-05 Thread Raphael Geissert
2008/12/5 Raphael Hertzog <[EMAIL PROTECTED]>:
[...]
>
> FYI, I committed a fix for this in the lenny branch:
> http://git.debian.org/?p=dpkg/dpkg.git;a=commitdiff;h=23cb6dedb168ce02bd7c5491462296c37215fdf4

Great, thank you!.

>
> Cheers,

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net

Bob Dole  - "The internet is a great way to get on the net."



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



Bug#507940: Missing sr_RS and [EMAIL PROTECTED] Xlib locales

2008-12-05 Thread Goran Rakic
Package: libx11-data
Version: 2:1.0.3-7

sr_RS locale is missing from locale.dir/locale.alias/compose.dir files.

It should have the same defs as sr_CS. Also please note that we have
changed [EMAIL PROTECTED] to [EMAIL PROTECTED] some time ago, so "@latin" 
modifier should
be added to Xlib locale definition.

I don't know what is policy on this one, but support for obsolete sp,
sr_CS and sr_YU may even be omitted from new releases. For some time now
sr_RS locale is supported in glibc locale package and used as default
for Serbian language (together with [EMAIL PROTECTED] and legacy [EMAIL 
PROTECTED]).

This bug affects many applications that fallback to C locale due to
missing Xlib locale.

I am using Ubuntu, but after reporting this to their bug tracker I was
advised to report this to Debian first. Original bug report is available
at: https://bugs.launchpad.net/ubuntu/+source/libx11/+bug/299841





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



Bug#507941: ITP: r-cran-rcpp -- GNU R / C++ interface package

2008-12-05 Thread Dirk Eddelbuettel

Package: wnpp
Owner: Dirk Eddelbuettel <[EMAIL PROTECTED]>
Severity: wishlist

* Package name: r-cran-rcpp
  Version : 0.6.2
  Upstream Author : Dominick Samperi and Dirk Eddelbuettel
* URL or Web page : http://dirk.eddelbuettel.com/code/rcpp.html
* License : LGPL 2.1
  Description : GNU R / C++ interface package

Rcpp used to be included in the r-cran-quantlib package that has been in
Debian since 2003.  I recently broke Rcpp out into its own package which we
now need.

Dirk 

-- 
Three out of two people have difficulties with fractions.



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



Bug#504747: gnu-fdisk: It is normal to wipe out MBR :-) You asked for it.

2008-12-05 Thread Osamu Aoki
Package: gnu-fdisk
Version: any
Followup-For: Bug #504747

At least this bug should be important (or wishlist) severity bug if we
consider only the bug reported here.  But I am happy to keep this as RC.
Here is the situation:

Although some of the way gnu-fdisk works (bug#504099) is not something I
like, this Bug #504747 behavior of gnu-fdisk is normal and expected.
"GNU parted" also wipes out MBR when editting GPT.  Basically, running
GPT managing software will reset and clean MBR record to the GPT used by
EFI.

Of course, it is nice to support hybrid partition scheme where GPT and
MBR is mixed like my situation here with MacBook.
 http://wiki.debian.org/MacBook/DebianInstallTutorial

But both parted and gnu-fdisk suppot only pure GPT system at this
moment.  This bug report is nothing but wishlist for feature enhancement
to support hybrid scheme.

The same issue exists in the better program: "GNU parted" unfortunately.
 http://bugs.debian.org/441033
(Hmmm... I should change bug to wishlist for this one... oh well.)

I see problem is not just 504099 nor 504747, but dead upstream and no
added value of having this package in release as discussed in 504747.
We have well maintained normal fdisk program for pure MBR system.  There
is parted for pure GPT and pure MBR system.

Since I wish this to be kept RC with reasons stated here and 504747, I
keep this bug severity as is.  If maintainer does not act, this means he
is not paying attention for this package.  I think we will be better to
release lenny without this package.

Osamu

PS:  Just because "dd" can wipe disk without warning if requested, we do
not consider package including it RC buggy. 

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (800, 'unstable'), (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
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 gnu-fdisk depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libncurses55.7+20081129-1shared libraries for terminal hand
ii  libparted1.8-1 1.8.8.git.2008.03.24-11.1 The GNU Parted disk partitioning s
ii  libuuid1   1.41.3-1  universally unique id library

gnu-fdisk recommends no packages.

gnu-fdisk suggests no packages.



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



Bug#507748: svn: "svn up" should realize it does not have a controlling terminal

2008-12-05 Thread Peter Samuelson

[Tyler MacDonald]
>   I guess my complaint is that the addition of a new feature has
> made something that has worked fine for years and years and years
> just stop.  I get bitchy about that sometimes :-)

Sure, I understand the frustration.  But --non-interactive was already
a good idea - what if you're using https and the server suddenly starts
requiring a client certificate or something?  You'd have run into the
same problem without any client change.

I will forward the request upstream, I just can't predict whether it'll
get traction.  Probably not in 1.5.x, but possibly in 1.6, and if
upstream goes with it, I'll probably backport to 1.5.

> This one in particular still _really_ irks me;
> 
>   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=450758

Interesting - I didn't notice that ps did that.  I do use that same
feature in dpkg, when I want to see full fields (i.e., really long
version strings): 'dpkg -l foobar | cat'

-- 
Peter Samuelson | org-tld!p12n!peter | http://p12n.org/


signature.asc
Description: Digital signature


Bug#495919: swapper: page allocation failure. order:0, mode:0x20

2008-12-05 Thread Kurt Roeckx
Hi,

I've reported a very simular error message before: #477377
That was order 1 allocation failures.

Now I'm getting order 0 instead:
swapper: page allocation failure. order:0, mode:0x20
Pid: 0, comm: swapper Not tainted 2.6.26-1-vserver-amd64 #1

Call Trace:
   [] __alloc_pages_internal+0x3a6/0x3bf
 [] kmem_getpages+0x96/0x15f
 [] fallback_alloc+0x16b/0x1e1
 [] kmem_cache_alloc_node+0x104/0x18d
 [] __alloc_skb+0x64/0x12d
 [] __netdev_alloc_skb+0x29/0x43
 [] :tg3:tg3_alloc_rx_skb+0xdd/0x18b
 [] :tg3:tg3_poll+0x3a4/0x8f1
 [] net_rx_action+0xab/0x1da
 [] __do_softirq+0x5c/0xd1
 [] ack_apic_level+0x53/0xd8
 [] call_softirq+0x1c/0x28
 [] do_softirq+0x3c/0x81
 [] irq_exit+0x3f/0x83
 [] do_IRQ+0xb9/0xd9
 [] default_idle+0x0/0x49
 [] ret_from_intr+0x0/0x19
   [] native_safe_halt+0x2/0x3
 [] native_safe_halt+0x2/0x3
 [] default_idle+0x2a/0x49
 [] cpu_idle+0x89/0xb3

Mem-info:
Node 0 DMA per-cpu:
CPU0: hi:0, btch:   1 usd:   0
Node 0 DMA32 per-cpu:
CPU0: hi:  186, btch:  31 usd: 125
Active:72963 inactive:190947 dirty:15064 writeback:440 unstable:0
 free:2533 slab:243122 mapped:3212 pagetables:1148 bounce:0
Node 0 DMA free:8024kB min:28kB low:32kB high:40kB active:36kB inactive:652kB 
present:10468kB pages_scanned:41 all_unreclaimable? no
lowmem_reserve[]: 0 2004 2004 2004
Node 0 DMA32 free:2108kB min:5712kB low:7140kB high:8568kB active:291816kB 
inactive:763136kB present:2052256kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 150*4kB 50*8kB 17*16kB 11*32kB 6*64kB 5*128kB 3*256kB 1*512kB 
0*1024kB 0*2048kB 1*4096kB = 8024kB
Node 0 DMA32: 0*4kB 0*8kB 0*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 
1*2048kB 0*4096kB = 2080kB
224385 total pagecache pages
Swap cache: add 63066, delete 61312, find 2413936/2419519
Free swap  = 3878340kB
Total swap = 3903608kB
524272 pages of RAM
8441 reserved pages
192573 pages shared
1754 pages swap cached
swapper: page allocation failure. order:0, mode:0x20
Pid: 0, comm: swapper Not tainted 2.6.26-1-vserver-amd64 #1

Call Trace:
   [] __alloc_pages_internal+0x3a6/0x3bf
 [] kmem_getpages+0x96/0x15f
 [] fallback_alloc+0x16b/0x1e1
 [] kmem_cache_alloc_node+0x104/0x18d
 [] __alloc_skb+0x64/0x12d
 [] __netdev_alloc_skb+0x29/0x43
 [] :tg3:tg3_alloc_rx_skb+0xdd/0x18b
 [] :tg3:tg3_poll+0x3a4/0x8f1
 [] net_rx_action+0xab/0x1da
 [] __do_softirq+0x5c/0xd1
 [] ack_apic_level+0x53/0xd8
 [] call_softirq+0x1c/0x28
 [] do_softirq+0x3c/0x81
 [] irq_exit+0x3f/0x83
 [] do_IRQ+0xb9/0xd9
 [] default_idle+0x0/0x49
 [] ret_from_intr+0x0/0x19
   [] native_safe_halt+0x2/0x3
 [] native_safe_halt+0x2/0x3
 [] default_idle+0x2a/0x49
 [] cpu_idle+0x89/0xb3

Mem-info:
Node 0 DMA per-cpu:
CPU0: hi:0, btch:   1 usd:   0
Node 0 DMA32 per-cpu:
CPU0: hi:  186, btch:  31 usd: 125
Active:72963 inactive:190947 dirty:15064 writeback:440 unstable:0
 free:2533 slab:243122 mapped:3212 pagetables:1148 bounce:0
Node 0 DMA free:8024kB min:28kB low:32kB high:40kB active:36kB inactive:652kB 
present:10468kB pages_scanned:41 all_unreclaimable? no
lowmem_reserve[]: 0 2004 2004 2004
Node 0 DMA32 free:2108kB min:5712kB low:7140kB high:8568kB active:291816kB 
inactive:763136kB present:2052256kB pages_scanned:0 all_unreclaimable? no
lowmem_reserve[]: 0 0 0 0
Node 0 DMA: 150*4kB 50*8kB 17*16kB 11*32kB 6*64kB 5*128kB 3*256kB 1*512kB 
0*1024kB 0*2048kB 1*4096kB = 8024kB
Node 0 DMA32: 0*4kB 0*8kB 0*16kB 1*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 
1*2048kB 0*4096kB = 2080kB
224385 total pagecache pages
Swap cache: add 63066, delete 61312, find 2413936/2419519
Free swap  = 3878340kB
Total swap = 3903608kB
524272 pages of RAM
8441 reserved pages
192573 pages shared
1754 pages swap cached
swapper: page allocation failure. order:0, mode:0x20
Pid: 0, comm: swapper Not tainted 2.6.26-1-vserver-amd64 #1

Call Trace:
   [] __alloc_pages_internal+0x3a6/0x3bf
 [] kmem_getpages+0x96/0x15f
 [] fallback_alloc+0x16b/0x1e1
 [] kmem_cache_alloc_node+0x104/0x18d
 [] __alloc_skb+0x64/0x12d
 [] __netdev_alloc_skb+0x29/0x43
 [] :tg3:tg3_alloc_rx_skb+0xdd/0x18b
 [] :tg3:tg3_poll+0x3a4/0x8f1
 [] net_rx_action+0xab/0x1da
 [] __do_softirq+0x5c/0xd1
 [] ack_apic_level+0x53/0xd8
 [] call_softirq+0x1c/0x28
 [] do_softirq+0x3c/0x81
 [] irq_exit+0x3f/0x83
 [] do_IRQ+0xb9/0xd9
 [] default_idle+0x0/0x49
 [] ret_from_intr+0x0/0x19
   [] native_safe_halt+0x2/0x3
 [] native_safe_halt+0x2/0x3
 [] default_idle+0x2a/0x49
 [] cpu_idle+0x89/0xb3

Mem-info:
Node 0 DMA per-cpu:
CPU0: hi:0, btch:   1 usd:   0
Node 0 DMA32 per-cpu:
CPU0: hi:  186, btch:  31 usd: 125
Active:72963 inactive:190947 dirty:15064 writeback:440 unstable:0
 free:2533 slab:243122 mapped:3212 pagetables:1148 bounce:0
Node 0 DMA free:8024kB min:28kB low:32kB high:40kB active:36kB inactive:652kB 
present:10468kB pages_scanned:41 all_unreclaimable? no
lowmem_reserve[]: 0 2004 2004 2004
Node 0 DMA32 free:2108kB min:5712kB low:7140kB high:8568kB active:291816kB 
inactive:763136kB present:2052256kB pages_scanned:0 all_unreclaimable? no
lowme

Bug#506748: crash rtorrent by scgi-interface (function: 'fi.get_filename_last')

2008-12-05 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dmitry E. Oboukhov wrote:
> Package: rtorrent
> Severity: grave
> Version: 0.7.9-2+b2
> Architecture: i386
> 
> version of libtorrent10 - 0.11.9-1.1 (lenny)
> 
> If command 'fi.get_filename_last' received from SCGI interface, then
> rtorrent crashes. Version rtorrent/librtorrent from experimental
> works fine.
> 
Hello,

Sorry, I'm short of time (I'm in finals) right now. Experimental version
is stable enough right now like to use it on unstable but no to use it
on lenny so I guess this will make yet another stable release without
rtorrent. I'm not in position to upload new binaries to take into
consideration for lenny next release.

I think (differently to what upstream thinks) that 0.12.4/0.8.4 is more
stable that 0.12.2/0.8.2 (which doesn't build in bsd environments and
don't have several fixes that *.*.4 does have).

Please if any of you have something against me uploading experimental
release to unstable let me know, if not I'm gonna send it to Dmitry
(hoping he's ok with this) to upload it to unstable and leave lenny
without rtorrent/libtorrent (there's not yet a new-release stable enough
for lenny anyway, I think)

Regards.
- --
Jose Luis Rivas. San Cristóbal, Venezuela. GPG 0xCACAB118
http://ghostbar.ath.cx/about - http://debian.org.ve
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkk5zgQACgkQOKCtW8rKsRhKYgCfcftexN86wgomVex3lhT5/TYX
j+gAn0TWWn4NP382tpBm2rjO9Kdd97J2
=XltO
-END PGP SIGNATURE-



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



Bug#490171: Bug#470416: rtorrent: random crash (grave)

2008-12-05 Thread Jose Luis Rivas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Jari Aalto wrote:
> 
> Confirmed.
> 
> There seesm to be more a serious problem. Not just the rtorrent crash, but
> the whole workstation dies: kernel becomes unresponsive to the point
> where nothing happens.

Can you please try with experimental release? I'm not in position to
make this test (starting by my lack of bandwith and lack of hardware,
I'm not always online in my machine).

I'm about to push experimental to unstable and this one would make
another good reason to do this. (Besides of #506748)

Regards.
- --
Jose Luis Rivas. San Cristóbal, Venezuela. GPG 0xCACAB118
http://ghostbar.ath.cx/about - http://debian.org.ve
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkk5zSsACgkQOKCtW8rKsRh3dgCcDIxoLqKd17O8qCr2uA7P5aOZ
TvkAoK2UoqwKXza14HYaK4Vd4sn3lElr
=EMGd
-END PGP SIGNATURE-



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



Bug#507507: new patch

2008-12-05 Thread Carles Pina i Estany

Hello,

I'm sending a new patch with more options:
-forward (starts the timer forward after execute the program)
-backward TIME (starts the timer backward after execute the program)

Cheers,

-- 
Carles Pina i EstanyGPG id: 0x17756391
http://pinux.info
--- /usr/bin/stopwatch	2008-07-02 13:13:46.0 +0200
+++ stopwatch	2008-12-06 01:40:38.815444276 +0100
@@ -392,6 +392,14 @@
 
 "
 
+.help.text insert end "Command line arguments" h1
+.help.text insert end "
+
+-forward: executes stopwatcher with the timer on
+-backward TIME: executes stopwatch with the timer on, backward, with initial TIME as time (same format than stopwatch GUI)
+
+"
+
 .help.text insert end "Caveats" h1
 .help.text insert end {
 
@@ -471,4 +479,15 @@
 bind all  {.lapzero  invoke} ; bind all  {lapzr}
 bind all  {.totalzeroinvoke} ; bind all  {totalzr}
 
+set option_location [lsearch $argv "-forward"]
+if { $option_location >= 0 } {
+start
+}
+
+set option_location [lsearch $argv "-backward"]
+if { $option_location >= 0 } {
+set time(total) [lindex $argv [expr {$option_location+1}]]
+set time(forward) 0
+start
+}
 


Bug#507939: ITP: rednotebook -- graphical daily journal with calendar, templates and keyword searching

2008-12-05 Thread Jonathan Wiltshire
Package: wnpp
Severity: wishlist
Owner: Jonathan Wiltshire <[EMAIL PROTECTED]>


* Package name: rednotebook
  Version : 0.3.0
  Upstream Author : Jendrik Seipp <[EMAIL PROTECTED]>
* URL : http://rednotebook.sf.net/
* License : GPLv2
  Programming Lang: Python
  Description : graphical daily journal with calendar, templates and 
keyword searching

RedNotebook is a graphical diary and journal to keep track of notes and 
thoughts throughout the day. It includes a calendar navigation, customisable 
templates for each day, and a keywork search and cloud.


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



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



Bug#507936: libghc6-missingh-dev: Uninstallable.

2008-12-05 Thread John Goerzen
On Sat, Dec 06, 2008 at 12:56:55AM +0100, Kurt Roeckx wrote:
> Package: libghc6-missingh-dev
> Version: 1.0.3.0
> Severity: serious
> 
> Hi,
> 
> Your package is not installable (on amd64) because it has a Depends on:
> libghc6-hslogger-dev (>= 1.0.6.1), libghc6-hslogger-dev (<< 1.0.6.1+)
> 
> And the current version is 1.0.6.2.

Drat.  Looks like the buildd got to stuff in the wrong order.

I'll fix.

-- John



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



Bug#507938: ITP: whohas -- query multiple distributions' package archives

2008-12-05 Thread Jonathan Wiltshire
Package: wnpp
Severity: wishlist
Owner: Jonathan Wiltshire <[EMAIL PROTECTED]>


* Package name: whohas
  Version : 0.21
  Upstream Author : Philipp Wesche <[EMAIL PROTECTED]>
* URL : http://www.philippwesche.org/200811/whohas/intro.html
* License : GPL
  Programming Lang: Perl
  Description : query multiple distributions' package archives

whohas is a command line tool that allows you to query several package 
collections at once. It supports Arch Linux (and AUR), Debian, Fedora, Gentoo, 
openSUSE, Slackware (and linuxpackages.net), Source Mage Linux, Ubuntu, FreeBSD,
NetBSD, OpenBSD, Fink, and MacPorts repositories. whohas was designed to help 
package maintainers find ebuilds, pkgbuilds, and similar package definitions 
from other distributions to learn from. However, it can also be used by normal 
users who want to know which distribution provides certain packages, and which 
version of a given package is in use in each distribution or in each release of 
a distribution.

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



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



Bug#507883: asterisk: Very frequent segfaults on startup

2008-12-05 Thread Lars Bensmann
On Sat, Dec 06, 2008 at 01:13:32AM +0200, Tzafrir Cohen wrote:
> Thanks for your report. Any chance you can also include a full backtrace
> ('bt full')?

Sure.

#0  destroy_pval (item=0x7f54) at pbx_ael.c:4541
i = 
nxt = 
#1  0x7f54b45f1c1f in destroy_pval_item (item=0x7f54c804cd80) at 
pbx_ael.c:4517
__PRETTY_FUNCTION__ = "destroy_pval_item"
#2  0x7f54b45f1df1 in destroy_pval (item=0x7f54) at pbx_ael.c:4543
i = (pval *) 0x7f54
nxt = (pval *) 0x0
#3  0x7f54b45f1c1f in destroy_pval_item (item=0x7f54c804ce20) at 
pbx_ael.c:4517
__PRETTY_FUNCTION__ = "destroy_pval_item"
#4  0x7f54b45f1df1 in destroy_pval (item=0x7f54) at pbx_ael.c:4543
i = (pval *) 0x7f54
nxt = (pval *) 0x7f54c804d130
#5  0x7f54b45f1c1f in destroy_pval_item (item=0x7f54c8050670) at 
pbx_ael.c:4517
__PRETTY_FUNCTION__ = "destroy_pval_item"
#6  0x7f54b45f1df1 in destroy_pval (item=0x7f54) at pbx_ael.c:4543
i = (pval *) 0x7f54
nxt = (pval *) 0x7f54c8052510
#7  0x7f54b45f79d9 in ?? () from /usr/lib/asterisk/modules/pbx_ael.so
No locals.
#8  0x0045cc72 in load_resource (resource_name=0x7f54c8007620 
"pbx_ael.so", global_symbols_only=) at loader.c:688
mod = (struct ast_module *) 0x7f54c80423f0
res = 
tmp = "\033[33;40mExtension 
Directory\033[0;37;40m\000ions\033[0;37;40m\00040m\000base\033[0;37;40m\00037;[EMAIL
 
PROTECTED]@3GØÿ\177\000\000\2002\000ÈT\177\000\000\000\000\000\000\000\000\000\000
 
\000\000ÈT\177\000\5\000ÈT\177\000\000\200{\000ÈT\177\000\000\000{\000ÈT\177\000\000\000\000\000\000\000\000\000\000\2002\000ÈT\177\000\000
 \000\000ÈT\177\000\000\2002\000ÈT\177\000\000"...
__PRETTY_FUNCTION__ = "load_resource"
#9  0x0045d1e9 in load_modules (preload_only=) at 
loader.c:882
__list_next = (struct load_order_entry *) 0x7f54c8007640
__list_prev = (struct load_order_entry *) 0x0
__new_prev = (struct load_order_entry *) 0x7f54c8007600
cfg = (struct ast_config *) 0x7f54c8003280
mod = 
order = (struct load_order_entry *) 0x7f54c8007600
v = (struct ast_variable *) 0x0
load_count = 
load_order = {first = 0x7f54c8007600, last = 0x7f54c8007b80}
res = 
dirent = 
dir = 
__PRETTY_FUNCTION__ = "load_modules"
#10 0x0042875d in main (argc=, argv=) at asterisk.c:3064
c = 
filename = "/root/.asterisk_history", '\0' 
hostname = "chewie", '\0' 
tmp = 
"§ïM\000\000\000\000\000`\000\000\000\000\000\000\000)\000\000\000\000\000\000\000Êq&ÐT\177\000\000\001\000\000\000\000\000\000\000\000\000\000\000À\v%\001\000\000\000\000)\000\000\000\004\000\000\000ÀwÃÏT\177\000\000à¹UÏT\177\000"
xarg = 0x0
x = 
f = 
sigs = {__val = {134238211, 0 }}
num = 0
isroot = 1
buf = 
runuser = 0x7fffd8473340 "asterisk"
rungroup = 0x0
__PRETTY_FUNCTION__ = "main"
__FUNCTION__ = "main"


-- 
Work fascinates me. I could sit and watch it for hours.



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



Bug#507932: ITP: sdlmess -- SDL port of MESS emulator (based on MAME)

2008-12-05 Thread Ludo
Ron Johnson, Jr. :
> > * Redistributions may not be sold, nor may they be used in a commercial 
> > product
> > or activity.
> Isn't this anti-OSS?

I was thinking this package could be in "non-free".
Does commercial restrictions exclude that ?

Regards,
ludomatic



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



Bug#498863: More info on firewire issues

2008-12-05 Thread Frans Pop
On Friday 05 December 2008, Harry Mofo wrote:
> Interesting.  I tried the Dec 5 daily build today and the machine
> freezes as soon as the installer boot menu appears (or at least the
> keyboard becomes inoperable - ctrl-alt-del doesn't even work).  The
> drive still works okay with an Etch installer so, on this machine at
> least, things seem to be going backwards.

What is the MD5SUM of that image (of the .iso file)?



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



Bug#507937: logwatch: displays needless SPF messages from policy-spf

2008-12-05 Thread Russell Coker
Package: logwatch
Version: 7.3.6.cvs20080702-1
Severity: normal

Dec  4 10:56:02 etbe postfix/policy-spf[2987]: : SPF Pass (Mechanism 
'ip4:209.249.248.0/24' matched): Envelope-from: [EMAIL PROTECTED] 
Dec  4 03:34:10 etbe postfix/policy-spf[32551]: : SPF Pass (Mechanism 
'ip4:209.249.248.0/24' matched): Envelope-from: [EMAIL PROTECTED]

My logwatch output is getting many entries such as the above.  They
should all be filtered - maybe counting the number of SPF checks that
succeeded would be a good thing, but displaying each message is
obviously not desirable.

The code in the postfix module for handling SPF is complex and requires
more knowledge of Perl than I have to fix it easily.  Sorry I can't
provide a patch.



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



Bug#507936: libghc6-missingh-dev: Uninstallable.

2008-12-05 Thread Kurt Roeckx
Package: libghc6-missingh-dev
Version: 1.0.3.0
Severity: serious

Hi,

Your package is not installable (on amd64) because it has a Depends on:
libghc6-hslogger-dev (>= 1.0.6.1), libghc6-hslogger-dev (<< 1.0.6.1+)

And the current version is 1.0.6.2.


Kurt




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



Bug#504747: fdisk gpt bug

2008-12-05 Thread Michael Renner
Robert Lemmen wrote:
> hi michael,
> 
> could you explain how to create such a partition? i have created a small
> loopback with a GPT partition, but i don't see that behaviour...

Not using a loopback device but a plain file:


# create a sparse file, ~200GB in this case

dd if=/dev/zero of=fakedisk bs=1 count=0 seek=21990232

# write gpt label

parted fakedisk mklabel gpt

# create a partition

fdisk fakedisk # commands: n/return/return/asdf/return/+10G/w

# verify that gpt label exists (look for 01 00 ee fe ff ff in line 1c0)

dd if=fakedisk bs=512 count=1 | hexdump -C -v

# write MBR

dd if=/dev/urandom of=fakedisk bs=440 count=1 conv=notrunc

# verify MBRs existence (random data before partition marker)

dd if=fakedisk bs=512 count=1 | hexdump -C -v

# create another partition

fdisk fakedisk # commands: n/return/return/fdsa/return/+10G/w

# notice absence of random data

dd if=fakedisk bs=512 count=1 | hexdump -C -v


For the record:

mirror02:~# dpkg -l gnu-fdisk coreutils parted libparted1.8-10
linux-image-2.6.26-1-amd64
Desired=Unknown/Install/Remove/Purge/Hold
|
Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err:
uppercase=bad)
||/ Name Version  Description
+++---
ii  coreutils6.10-6   The GNU core utilities
ii  gnu-fdisk1.0-3+b1 Linux fdisk
replacement based on libparted
ii  libparted1.8-10  1.8.8.git.2008.03.24-11  The GNU Parted
disk partitioning shared library
ii  parted   1.8.8.git.2008.03.24-11  The GNU Parted
disk partition resizing program
mirror02:~#


Hope that's clear enough,
Michael



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



Bug#507935: w3m: gunzip failing on certain downloads

2008-12-05 Thread Joe
Package: w3m
Version: 0.5.1-5.1
Severity: normal


When downloading an nzb from www.newzleech.com w3m fails to gunzip the file.  
The file contains "gunzip: stdin: not in gzip format".

*note links downloads and gunzips the nzb file correctly.

joe

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

Versions of packages w3m depends on:
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries
ii  libgc1c2   1:6.8-1   conservative garbage collector for
ii  libgpmg1   1.19.6-25 General Purpose Mouse - shared lib
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libssl0.9.80.9.8c-4etch3 SSL shared libraries
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages w3m recommends:
ii  ca-certificates   20070303   Common CA Certificates PEM files

-- no debconf information



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



Bug#507932: ITP: sdlmess -- SDL port of MESS emulator (based on MAME)

2008-12-05 Thread Ron Johnson

On 12/05/08 16:38, Ludovic Lechapt wrote:
[snip]

License ( exactly the same as MAME http://mamedev.org/license.html ):
==

[snip]

* Redistributions may not be sold, nor may they be used in a commercial product
or activity.


Isn't this anti-OSS?

--
Ron Johnson, Jr.
Jefferson LA  USA

How does being physically handicapped make me Differently-Abled?
What different abilities do I have?



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



Bug#507934: RM: hunglish -- RoQA; orphaned, inactive upstream, low popcon

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream is inactive.
* Low popcon. (~ 11 installs).

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA








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



Bug#507883: asterisk: Very frequent segfaults on startup

2008-12-05 Thread Tzafrir Cohen
On Fri, Dec 05, 2008 at 02:48:18PM +0100, Lars Bensmann wrote:

> Asterisk crashes very frequently on startup. Using safe_asterisk will
> start it eventually. Once it's running it's stable. The last start took 90
> attempts. The one before that 71.

Thanks for your report. Any chance you can also include a full backtrace
('bt full')?

-- 
   Tzafrir Cohen
icq#16849755  jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir



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



Bug#507933: RM: tkchooser -- RoQA; out of date, orphaned, inactive upstream, low popcon, buggy

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (Last upload 2005).
* Package is orphaned.
* Upstream is inactive.
* Low popcon. (< 50 installs).
* Package is buggy. (Removal was requested for Etch).

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA








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



Bug#507919: Etch-and-a-half stuck at installing standard task

2008-12-05 Thread Frans Pop
tags 507919 + unreproducible
thanks

On Friday 05 December 2008, Peter McGill wrote:
> Comments/Problems:
> After selecting install standard system (no other tasks), the install
> gets stuck on Select and install software 8% Please wait...
>
> Nothing further happens, and I do not see a prompt for this, but it
> seems like it's waiting for me to answer? On the third attempt, I tried
> a different mirror but got the same results.

Unfortunately we cannot avoid the error nor catch it. The only thing you 
can try is to manually kill the process from a debug shell.

The error itself does indicate a problem with the mirror(s), and not with 
the installer itself. Your best option is to try a totally different 
mirror.

I've just successfully completed installs using 40r5 etchnhalf netinst 
images for both amd64 and i386 using the ftp.nl.debian.org mirror in the 
Netherlands.

Exactly which mirrors did you use?

> Not sure if it's possibly related to these previous security and
> volatile download errors?

No. If you look at /target/etc/apt/sources.list you should see the lines 
for those sources commented out, so they are not actually used.

The fact that those fail too could indicate more general networking 
problems. Both services worked fine for me.

Cheers,
FJP



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



Bug#507835: I would like gnome-panel flavor with --disabled-eds

2008-12-05 Thread Loïc Minier
On Fri, Dec 05, 2008, Josselin Mouette wrote:
> The correct approach would probably to do the following:
>   * ship a gnome-panel built with --disable-eds
>   * build a second variant and keep only libclock-applet.so
>   * ship this libclock-applet.so in a gnome-panel-evolution package,
> with a diversion.

 I think it would be more useful to make this support a gconf setting;
 people probably don't mind the lib deps, and the eds dep is already a
 recommends.

 I guess if you just remove eds, it will do the right thing.

-- 
Loïc Minier



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



Bug#507748: svn: "svn up" should realize it does not have a controlling terminal

2008-12-05 Thread Tyler MacDonald
Hi,

I guess my complaint is that the addition of a new feature has made
something that has worked fine for years and years and years just stop. I
get bitchy about that sometimes :-) This one in particular still _really_
irks me;

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=450758

Anyway, up to you if you want to forward it upstream or not. I'll
update all of my scripts to use --non-interactive ... I'm curious how many
people this will bite when the new version of subversion ends up in debian
stable...

Thanks,
Tyler


Peter Samuelson <[EMAIL PROTECTED]> wrote:
> 
> [Tyler MacDonald]
> > When subversion is being run without a controlling terminal (eg; "svn up <
> > /dev/null", or when being executed from a cronjob), subversion should
> > realize that it has no controlling terminal and revert to the previous
> > default behaviour, "postpone".
> 
> The official view: any time you want to run svn from a script, you
> should be using --non-interactive.  Sure, it seems you can sometimes
> skip it, but the set of circumstances that will use interactive
> behavior may change over time, so it is best not to assume you know
> which commands need this and which do not.
> 
> You seem to be asking for Subversion to call isatty(0) and if it
> returns false, assume --non-interactive.  I am not sure if that's a
> good idea.  Upstream may resist this on the grounds that it isn't
> necessarily portable to Windows (though it should work on any Unix).
> -- 
> Peter Samuelson | org-tld!p12n!peter | http://p12n.org/





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



Bug#507716: [Pkg-xfce-devel] Bug#507716: Bug#507716: Bug#507716: xfwm4: broken "focus follows mouse" behavior on raise

2008-12-05 Thread Yves-Alexis Perez
forwarded 507716 http://bugzilla.xfce.org/show_bug.cgi?id=4679
thanks
On ven, 2008-12-05 at 12:29 -0600, Jason Kraftcheck wrote:
> Yves-Alexis Perez wrote:

> > Ow, please, don't be like that. *You* have a problem, so *you* should
> > provide all informations about your problem so we can do something about
> > that.
> 
> The patch I sent with my original PR fixes the problem.

It fixes the problem for you, maybe. Nobody knows what it'll do on other
installs. Except for example the upstream developper.
> 
> > And, basically, giving one single piece of information won't help
> > anybody. And I asked about “focus” stuff (tada, that's because you have
> > a _focus_ problem) so you could have guessed in the first place.
> > 
> 
> Perhaps I could have guessed.  But if you wanted to know focus-related
> settings, you could have just asked for that rather than asking which
> settings I tried changing and then complaining that I didn't guess what you
> intended to ask.

No. I asked you to check (to *verify*) how were the other settings. EOT

> > In your case, you would like something a bit that “Don't automatically
> > focus windows when they are raised”, I think.
> > 
> 
> Such an option shouldn't be necessary.  "focus-follows-pointer" means that
> whatever window contains the mouse pointer has focus.  Moving the focus to
> some other window because of an CWStackMode event is wrong.

Except that some window are legitimate to have focus in that case. Some
don't, and that's why there is the “focus stealing prevention” too.

> 
> > I'm not a wm expert, but I don't think there is such a thing as “raised
> > on top” event for a window. I assume that what you send (with
> > emacsclient or nedit-nc) is a “focus” event, so in this case it would be
> > ok to focus it.
> > 
> 
> A CWStackMode configureWindow request asks the WM to change the position of
> the client window in the stacking order (ordered list of which window is in
> front of which if they should overlap).  It is conceptually distinct from,
> for example, a call to XSetInputFocus.  There often is no distinction
> between the two when a Window manager is operating in "click-to-focus" mode,
> as clicking on a window both raises it above all others and gives it the
> keyboard focus.
> 
> Other window managers that I've used behave the way I am saying that xfwm4
> should, including: blackbox and derivatives, the WM was under CDE on
> Solaris, and x.org with no window manager running.
> 
> > Please open a bug on Xfce bugzilla (http://bugs.xfce.org) on xfwm4
> > component (4.4.2 version) asking about that and providing all
> > informations necessary. (and forward the bug number to this bug report)
> > 
> 
> http://bugzilla.xfce.org/show_bug.cgi?id=4679

That's what you should have done in the first place. Well, with
informations.

Friendly,
-- 
Yves-Alexis


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


Bug#507932: ITP: sdlmess -- SDL port of MESS emulator (based on MAME)

2008-12-05 Thread Ludovic Lechapt
Package: wnpp
Severity: wishlist
Owner: Ludovic Lechapt <[EMAIL PROTECTED]>


* Package name: sdlmess
  Version : 0128
  Upstream Author : O. Galibert <[EMAIL PROTECTED]> and R. Belmont
* URL : http://rbelmont.mameworld.info/?page_id=163
* License : custom (see details in description)
  Programming Lang: C
  Description : SDL port of MESS emulator (based on MAME)

MESS is an acronym that stands for Multi Emulator Super System. MESS will more
or less faithfully reproduce computer and console systems on a PC. MESS can
currently emulate over 250 systems from the last 5 decades.
.
MESS emulates the hardware of the systems and sometimes utilizes ROM images to
load programs and games. Therefore, these systems are NOT simulations, but the
actual emulations of the hardware.


License ( exactly the same as MAME http://mamedev.org/license.html ):
==
Redistribution and use of this code or any derivative works are permitted
provided that the following conditions are met:
* Redistributions may not be sold, nor may they be used in a commercial product
or activity.
* Redistributions that are modified from the original source must include the
complete source code, including the source code for all components used by a
binary built from the modified sources. However, as a special exception, the
source code distributed need not include anything that is normally distributed
(in either source or binary form) with the major components (compiler, kernel,
and so on) of the operating system on which the executable runs, unless that
component itself accompanies the executable.
* Redistributions must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other
materials provided with the distribution.
  
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
==


Regards,
ludomatic


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



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



Bug#507930: RM: cftp -- RoQA; out of date, orphaned, inactive upstream, alternatives exist

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (No uploads since 2003).
* Package is orphaned.
* Upstream appears inactive. (Last release 2002).
* Plenty of other ftp clients out there.

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA





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



Bug#507931: RM: gato -- RoQA; orphaned, inactive upstream, low popcon, GTK+ 1.2

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream is inactive. (No new release since 2000).
* Package is built with GTK+ 1.2 which is scheduled for removal.
* Low popcon. (~ 50 installs).
Package has no reverse depends or reverse build-depends except for itself.

Thank you,

Barry deFreese
Debian QA







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



Bug#507929: RM: transproxy -- RoQA; out of date, orphaned, inactive upstream, low popcon

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (Newer upstream exists but it's from 2005).
* Package is orphaned.
* Upstream appears inactive.
* Low popcon (<40 installs).
* Has some bugs but nothing massive.

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA




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



Bug#507926: RFP: webkam -- kde4 tool to view and save images from a webcam

2008-12-05 Thread Salvo Tomaselli
Package: wnpp
Severity: wishlist


* Package name: webkam
  Version : 0.2
  Upstream Author : bartosz.wadolowski <[EMAIL PROTECTED]>
* URL : http://code.google.com/p/webkam-kde4/
* License : GPL
  Programming Lang: C++
  Description : kde4 tool to view and save images from a webcam

Since camorama and cheese are for gtk, this program fixes this lack

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)



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



Bug#507928: mpd: no audio output with 0.14

2008-12-05 Thread Julien Langer
Package: mpd
Version: 0.14~beta2-1
Severity: important

I don't get any audio output with 0.14 anymore. Neither the audio device
auto-detection, nor setting the output device manually helps. The log
also doesn't have any useful information.

Everything works fine with 0.13.2-3 though.

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

Kernel: Linux 2.6.27.5 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_GB.ISO-8859-15, [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages mpd depends on:
ii  adduser   3.110  add and remove users and groups
ii  libao20.8.8-4Cross Platform Audio Output Librar
ii  libasound21.0.16-2   ALSA library
ii  libaudiofile0 0.2.6-7Open-source version of SGI's audio
ii  libavahi-client3  0.6.23-2   Avahi client library
ii  libavahi-common3  0.6.23-2   Avahi common library
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libcurl3  7.18.2-7   Multi-protocol file transfer libra
ii  libfaad0  2.6.1-3.1  freeware Advanced Audio Decoder - 
ii  libflac8  1.2.1-1.2  Free Lossless Audio Codec - runtim
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libid3tag00.15.1b-10 ID3 tag reading library from the M
ii  libjack0  0.115.6-1  JACK Audio Connection Kit (librari
ii  libmad0   0.15.1b-3  MPEG audio decoder library
ii  libmikmod23.1.11-a-6 A portable sound library
ii  libmpcdec31.2.2-1Musepack (MPC) format library
ii  libogg0   1.1.3-4Ogg Bitstream Library
ii  libpulse0 0.9.10-3   PulseAudio client libraries
ii  libsamplerate00.1.4-1audio rate conversion library
ii  libshout3 2.2.2-5MP3/Ogg Vorbis broadcast streaming
ii  libvorbis0a   1.2.0.dfsg-3.1 The Vorbis General Audio Compressi
ii  libvorbisenc2 1.2.0.dfsg-3.1 The Vorbis General Audio Compressi
ii  libvorbisfile31.2.0.dfsg-3.1 The Vorbis General Audio Compressi
ii  libwavpack1   4.50.1-1   an audio codec (lossy and lossless

mpd recommends no packages.

Versions of packages mpd suggests:
ii  gmpc [mpd-client] 0.16.95-1  Gnome Music Player Client (graphic
pn  icecast2   (no description available)
ii  lastmp [mpd-client]   0.37-3 MPD client for lastfmsubmitd
ii  mpc [mpd-client]  0.12.1-1   A command-line tool to interface M
pn  pulseaudio (no description available)

-- no debconf information



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



Bug#507927: Fix suspend-resume in Thinkpad R50e (intel 855gm card)

2008-12-05 Thread Diego Escalante Urrelo
Package: acpi-support
Version: 0.109-9
Severity: serious

Thinkpad R50e won't resume correctly (corrupted X) unless its
acpi-support file contains this:

# R50e 1834 - see LP: #40621, #211285
1834*)
ACPI_SLEEP=true;
SAVE_VIDEO_PCI_STATE=true;
SAVE_VBE_STATE=true;
POST_VIDEO=true;
;;
1842*|2670*)
ACPI_SLEEP=true;
SAVE_VIDEO_PCI_STATE=true;
SAVE_VBE_STATE=false;
POST_VIDEO=false;
;;

instead of this:

# R50e
1834*|1842*|2670*)
ACPI_SLEEP=true;
SAVE_VIDEO_PCI_STATE=true;
SAVE_VBE_STATE=false;
POST_VIDEO=false;
;;

I confirmed this two days ago after a test Lenny install on my own R50e.

Please apply this change so R50e users of Lenny have working
out-of-the-box suspend/resume.

greetings

PD: I hope you don't mind that I set serious, but I considered that
despite not being a negative thing it's an enhancement worth doing. Feel
free to disagree obviously.




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



Bug#507925: RFP: webkam -- kde4 tool to view and save images from a webcam

2008-12-05 Thread Salvo Tomaselli
Package: wnpp
Severity: wishlist


* Package name: webkam
  Version : 0.2
  Upstream Author : bartosz.wadolowski 
* URL : http://code.google.com/p/webkam-kde4/
* License : GPL
  Programming Lang: C++
  Description : kde4 tool to view and save images from a webcam

Since camorama and cheese are gtk applications this one supplies to the need of 
a kde app to do it.

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)



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



Bug#498863: More info on firewire issues

2008-12-05 Thread Harry Mofo
On Sunday 30 November 2008, Jérémy Bobbio wrote:
> I have been able to perform an installation with an image built today
> using an external FireWire CD-ROM drive without any problems.

Interesting.  I tried the Dec 5 daily build today and the machine freezes as 
soon as the installer boot menu appears (or at least the keyboard becomes 
inoperable - ctrl-alt-del doesn't even work).  The drive still works okay 
with an Etch installer so, on this machine at least, things seem to be going 
backwards.



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



Bug#507924: RM: stone -- RoQA; out of date, orphaned, low popcon

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (No upload since 2006). (New upstream exists).
* Package is orphaned.
* Low popcon (<100 installs).
* Has some bugs but nothing massive.

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA








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



Bug#507922: ITP: maven-plugin-tools -- Maven Plugin Tools Base POM

2008-12-05 Thread Torsten Werner
Package: wnpp
Severity: wishlist
Owner: Torsten Werner <[EMAIL PROTECTED]>

* Package name: maven-plugin-tools
  Version : 2.4.3
  Upstream Author : [EMAIL PROTECTED]
* URL : http://maven.apache.org
* License : Apache-2.0
  Programming Lang: Java
  Description : Maven Plugin Tools Base POM
 Maven is a software project management and comprehension tool. Based on the
 concept of a project object model (POM), Maven can manage a project's build,
 reporting and documentation from a central piece of information.
 .
 Maven's primary goal is to allow a developer to comprehend the complete
 state of a development effort in the shortest period of time. In order to
 attain this goal there are several areas of concern that Maven attempts
 to deal with:
 .
* Making the build process easy
* Providing a uniform build system
* Providing quality project information
* Providing guidelines for best practices development
* Allowing transparent migration to new features
 .
 This package ships some basic POM tools.



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



Bug#507923: RM: tempura -- RoQA; out of date, orphaned, dead upstream, low popcon

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (No upload since 2004).
* Package is orphaned.
* Dead upstream. (I am unable to find upstream source).
* Low popcon. (~20 installs).

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA








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



Bug#507921: RM: cgiwrap -- RoQA; out of date, orphaned, buggy

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is out of date. (New upstreams exist).
* Package is orphaned.
* Package is buggy including a CVE.

Package has no reverse depends or reverse build-depends except for itself.

Thank you,

Barry deFreese
Debian QA







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



Bug#506715: nautilus: some infinity loop with certain file in directery

2008-12-05 Thread merlin
Hi,
there is the desired output:

[EMAIL PROTECTED]:~$ dpkg -S /usr/lib/nautilus/extensions-1.0
nautilus-cd-burner, totem-gstreamer, gnome-mount, gnome-control-center, phatch, 
evince, file-roller, gnome-system-tools: /usr/lib/nautilus/extensions-1.0

Moreover IMHO might be useful this report. This is captured from situation  
when the issue  is occurring. 
The Nautilus a at-spi-registry take this persistent Cpu load. 

> top - 22:14:53 up  3:47,  2 users,  load average: 1.19, 0.88, 0.64
> Tasks: 133 total,   3 running, 130 sleeping,   0 stopped,   0 zombie
> Cpu(s): 89.3%us, 10.3%sy,  0.0%ni,  0.0%id,  0.0%wa,  0.3%hi,  0.0%si,  0.0%st
> Mem:   1028348k total,   914964k used,   113384k free,15168k buffers
> Swap:  2329384k total,   119216k used,  2210168k free,   223488k cached
> 
>   PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND  
>   
>  
>  9149 martin20   0  462m 127m  17m R 64.2 12.7   0:46.83 nautilus 
>   
>  
>  4089 martin20   0  126m 5572 4104 S 24.6  0.5   1:58.34 at-spi-registry  
>   
>  
>  3815 root  20   0  450m 123m  10m S  5.3 12.3   8:39.87 Xorg 
>   
>  
>  4114 martin20   0  161m 2896 1956 S  2.0  0.3   0:20.76 gnome-screensav  
>   
>  
>  8752 martin20   0  254m  25m  13m R  1.3  2.6   0:05.44 gnome-terminal   
>   
>  
>  4118 martin20   0  339m  41m  17m S  0.7  4.2   0:24.62 gnome-panel  
>   
>  
>  4125 martin20   0  184m  20m  11m S  0.7  2.1   0:06.38 gnome-typing-mo  
>   
>  
>  9145 martin20   0 18960 1296  944 R  0.7  0.1   0:00.52 top  
>   
>  
>  4115 martin20   0  166m  19m  11m S  0.3  1.9   1:10.18 metacity 
>   
>  
> 1 root  20   0 10312  624  584 S  0.0  0.1   0:00.72 init 
>   
>  
> 2 root  15  -5 000 S  0.0  0.0   0:00.00 kthreadd 
>   
>  
> 3 root  RT  -5 000 S  0.0  0.0   0:00.00 migration/0  
>   
>  
> 4 root  15  -5 000 S  0.0  0.0   0:00.62 ksoftirqd/0  
>   
>  
> 5 root  RT  -5 000 S  0.0  0.0   0:00.00 watchdog/0   
>   
>  
> 6 root  15  -5 000 S  0.0  0.0   0:00.42 events/0 
>   
>  
> 7 root  15  -5 000 S  0.0  0.0   0:00.00 khelper  
>   
>  
>41 root  15  -5 000 S  0.0  0.0   0:00.16 kblockd/0
>   
>  
>43 root  15  -5 000 S  0.0  0.0   0:00.00 kacpid   
>   
>  
>44 root  15  -5 000 S  0.0  0.0   0:00.00 kacpi_notify 
>   
>  
>   143 root  15  -5 000 S  0.0  0.0   0:00.00 ksuspend_usbd
>   
>  
>   149 root  15  -5 000 S  0.0  0.0   0:00.00 khubd
>   
>  
>   152 root  15  -5 000 S  0.0  0.0   0:00.00 kseriod  
>   
>  
>   195 root  20   0 000 S  0.0  0.0   0:00.14 pdflush  
>   
>  
>   197 root  15  -5 000 S  0.0  0.0   0:02.64 kswapd0  
> 

with regards M. Kovarik.

 píše v Pá 05. 12. 2008 v 14:40 +0100:
> Hi,
> 
> Le lundi 24 novembre 2008 à 01:31 +0100, M.Ko

Bug#507920: RM: classpath-tools -- RoQA; out of date, orphaned, dead upstream, buggy

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream is inactive.
* Package is seriously out of date. First and only upload in 2002.
* Package is buggy.

Package has no reverse depends or reverse build-depends.

Thank you,

Barry deFreese
Debian QA







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



Bug#507919: Etch-and-a-half stuck at installing standard task

2008-12-05 Thread Peter McGill
Package: installation-reports

Boot method: CD w/ expert
Image version: 
http://cdimage.debian.org/debian-cd/4.0_r5/amd64/iso-cd/debian-40r5-etchnhalf-amd64-netinst.iso
Date: Dec 4, 2008 ~3:00 pm; Dec 5, 2008 11:50 am; Dec 5, 2008 3:55 pm (GMT-5)

Machine: HP ProLiant ML150 G5
Processor: Quad Intel Xeon E5410 2.33 GHz
Memory: 2 GB Real, 2 GB Swap
Partitions:
Filesystem   1k-blocks  Used Available Use% Mounted on
tmpfs  103147656   1031420   0% /dev
/dev/mapper/raid1-root
360935 97239245060  28% /target
/dev/md0124323 12455105449  11% /target/boot
/dev/mapper/raid1-srv
118997  5663107190   5% /target/srv
/dev/mapper/raid1-tmp
118997  5663107190   5% /target/tmp
/dev/mapper/raid1-usr
   2882592176020   2560140   6% /target/usr
/dev/mapper/raid1-var
   1475568120952   1279660   9% /target/var
/dev/mapper/raid1-root
360935 97239245060  28% /dev/.static/dev
tmpfs  103147656   1031420   0% /target/dev

Output of lspci -knn (or lspci -nn):
00:00.0 Host bridge [0600]: Intel Corporation 5100 Chipset Memory Controller 
Hub [8086:65c0] (rev 80)
00:02.0 PCI bridge [0604]: Intel Corporation 5100 Chipset PCI Express x4 Port 2 
[8086:65e2] (rev 80)
Kernel driver in use: pcieport-driver
00:03.0 PCI bridge [0604]: Intel Corporation 5100 Chipset PCI Express x4 Port 3 
[8086:65e3] (rev 80)
Kernel driver in use: pcieport-driver
00:04.0 PCI bridge [0604]: Intel Corporation 5100 Chipset PCI Express x8 Port 
4-5 [8086:65f8] (rev 80)
Kernel driver in use: pcieport-driver
00:05.0 PCI bridge [0604]: Intel Corporation 5100 Chipset PCI Express x4 Port 5 
[8086:65e5] (rev 80)
Kernel driver in use: pcieport-driver
00:06.0 PCI bridge [0604]: Intel Corporation 5100 Chipset PCI Express x4 Port 6 
[8086:65e6] (rev 80)
Kernel driver in use: pcieport-driver
00:07.0 PCI bridge [0604]: Intel Corporation 5100 Chipset PCI Express x4 Port 7 
[8086:65e7] (rev 80)
Kernel driver in use: pcieport-driver
00:10.0 Host bridge [0600]: Intel Corporation 5100 Chipset FSB Registers 
[8086:65f0] (rev 80)
00:10.1 Host bridge [0600]: Intel Corporation 5100 Chipset FSB Registers 
[8086:65f0] (rev 80)
00:10.2 Host bridge [0600]: Intel Corporation 5100 Chipset FSB Registers 
[8086:65f0] (rev 80)
00:11.0 Host bridge [0600]: Intel Corporation 5100 Chipset Reserved Registers 
[8086:65f1] (rev 80)
00:13.0 Host bridge [0600]: Intel Corporation 5100 Chipset Reserved Registers 
[8086:65f3] (rev 80)
00:15.0 Host bridge [0600]: Intel Corporation 5100 Chipset DDR Channel 0 
Registers [8086:65f5] (rev 80)
00:16.0 Host bridge [0600]: Intel Corporation 5100 Chipset DDR Channel 1 
Registers [8086:65f6] (rev 80)
00:1a.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 [8086:2937] (rev 02)
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1a.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #5 [8086:2938] (rev 02)
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1a.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #6 [8086:2939] (rev 02)
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1a.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #2 [8086:293c] (rev 02)
Kernel driver in use: ehci_hcd
Kernel modules: ehci-hcd
00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 1 [8086:2940] (rev 02)
Kernel driver in use: pcieport-driver
00:1c.4 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 5 [8086:2948] (rev 02)
Kernel driver in use: pcieport-driver
00:1c.5 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 6 [8086:294a] (rev 02)
Kernel driver in use: pcieport-driver
00:1d.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #1 [8086:2934] (rev 02)
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1d.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #2 [8086:2935] (rev 02)
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1d.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #3 [8086:2936] (rev 02)
Kernel driver in use: uhci_hcd
Kernel modules: uhci-hcd
00:1d.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #1 [8086:293a] (rev 02)
Kernel driver in use: ehci_hcd
Kernel modules: ehci-hcd
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 
92)
00:1f.0 ISA bridge [0601]: Intel Corporation 82801IR (ICH9R) LP

Bug#507662: newvserver wait forever lenny when generating lenny guest

2008-12-05 Thread Ola Lundqvist
Thanks a lot for the report! Fix uploaded.

Best regards,

// Ola

On Wed, Dec 03, 2008 at 02:08:27PM +0100, Ivan Sergio Borgonovo wrote:
> Package: vserver-debiantools
> Version: 0.6.2
> Severity: serious
> 
> amd64
> 
> when generating a lenny vserver guest on a lenny host with newvserver I
> get:
> 
> Generating locales (this might take a while)...
>   en_US.UTF-8... done
> Generation complete.
> /vserver-config.sh: line 7: dselect: command not found
> 
> the line is
> dselect update
> 
> and newvserver wait there forever.
> 
> generating etch (guest) vservers on lenny (host) works fine.
> 
> thanks
> 
> 
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED]  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



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



Bug#495667: VEs started during the boot can't use network sometimes

2008-12-05 Thread Ola Lundqvist
Thanks. Good to know!

// Ola

On Fri, Dec 05, 2008 at 06:54:08PM +0100, Frank Bauer wrote:
> Hi Ola,
> 
> After some testing I can confirm that setting
> /proc/sys/net/ipv4/conf/eth0/proxy_arp to 1 in /etc/sysctl.conf works for me.
> 
> Frank
> 
> On Tue, Nov 18, 2008 at 9:40 PM, Ola Lundqvist <[EMAIL PROTECTED]> wrote:
> > Hi Frank
> >
> > I have got a workaround for the problem you have. We even have a patch.
> > Could you test if the workaround below works for you?
> >
> > On Tue, Nov 18, 2008 at 07:36:42PM +0300, Kir Kolyshkin wrote:
> >> >I have created openvz bug http://bugzilla.openvz.org/show_bug.cgi?id=1037
> >> >now.
> >>
> >> Ola, thanks!
> >>
> >> Looks like we already have a (long standing) bug for this:
> >> http://bugzilla.openvz.org/show_bug.cgi?id=556
> >>
> >> I am working to have a proper solution. Possible workarounds are:
> >>
> >> 1. Not to use DHCP for eth0.
> >> 2. Set echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp
> >> (or the same via /etc/sysctl.conf)
> >
> > Best regards,
> >
> > // Ola
> >
> >>
> >>
> >>
> >
> > --
> >  - Ola Lundqvist ---
> > /  [EMAIL PROTECTED] Annebergsslingan 37  \
> > |  [EMAIL PROTECTED]  654 65 KARLSTAD  |
> > |  http://inguza.com/  +46 (0)70-332 1551   |
> > \  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
> >  ---
> >
> 
> 
> 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED]  654 65 KARLSTAD  |
|  http://inguza.com/  +46 (0)70-332 1551   |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---



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



Bug#333831: Etch Installer (pre-release) triggers bug #333831 on specific hardware

2008-12-05 Thread Simon Waters
Moritz Muehlenhoff wrote:
> 
> Does this error still occur with more recent kernel versions?
> 
> If you're running Etch, could you try to reproduce this bug
> with the 2.6.24 based kernel added in 4.0r4?
> http://packages.qa.debian.org/l/linux-2.6.24.html

linux-kernel-2.6.24-etchnhalf.1-686 (aka 2.6.24-6~etchnhalf.7)

Boots without the interrupt warnings regarding hda.

ACPI is clearly enabled, and reports various messages boot.

Attempting to play an audio CD worked for a few seconds, then the
machine restarted (showing BIOS screen).

Last message in kernel log was:

ACPI: EC: non-query interrupt received, switching to interrupt mode

This occurred after using "CTRL-ALT-F1" to switch to console mode, and
could be seen on console a second or two before the restart. I retried a
cold reboot and just left it playing an audio CD in the GNOME desktop,
and it jumped to the BIOS splash screen again after a few seconds.

So whilst this kernel upgrade avoids the delays/hangs whilst booting it
 doesn't resolve all the ACPI issues mentioned in this bug report.

The kernel mailing list makes reference to relevant improvements in
2.6.28. I'll build a 2.6.28 kernel and try that.

 Thanks,

  Simon



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



Bug#272771: Totem's TV-Out Preferences Unavailable

2008-12-05 Thread Sven Arvidsson
The TV-Out prefs have recently been removed upstream, with this message:

Kill NVTV support, nv supports tv-out through XRandR for the G80
(GeForce 8000) and up, and nouveau for pretty much everything it
supports

Unless someone disagrees, I think this bug should be closed.

-- 
Cheers,
Sven Arvidsson
http://www.whiz.se
PGP Key ID 760BDD22


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


Bug#507918: ITP: drraw -- A simple web based presentation front-end for RRDtool

2008-12-05 Thread Mohammad Ebrahim Mohammadi Panah
Package: wnpp
Severity: wishlist
Owner: Mohammad Ebrahim Mohammadi Panah <[EMAIL PROTECTED]>


* Package name: drraw
  Version : 2.1.3
  Upstream Author : Christophe Kalt <[EMAIL PROTECTED]>
* URL : http://web.taranis.org/drraw/
* License : BSD
  Programming Lang: Perl
  Description : A simple web based presentation front-end for RRDtool

drraw is a simple web based presentation front-end for RRDtool that allows you
to interactively build graphs of your own design. A graph definition can be
turned into a template which may be applied to many Round Robin Database files.
drraw specializes in providing an easy mean of displaying data stored with
RRDtool and does not care about how the data is collected, making it a great
complement to other RRDtool front-ends.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (800, 'unstable'), (700, 'experimental'), (600, 'testing')
Architecture: amd64 (x86_64)



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



Bug#253951: [console-tools] Bug is already here

2008-12-05 Thread Bastien ROUCARIES
Package: console-tools
priority:important
Version: 1:0.2.3dbs-65.1

Bug is already here. Do not know if it is a x problem, a kernel problem or a 
console tools problem.

Raise priority because it can not use my console after switching from X. I use 
french codechar and strange char are displayed instead of accent. Even mc is 
not usuable.

Here my pci config if you 

00:00.0 Host bridge: Intel Corporation Mobile PM965/GM965/GL960 Memory 
Controller Hub (rev 03)
00:01.0 PCI bridge: Intel Corporation Mobile PM965/GM965/GL960 PCI Express 
Root Port (rev 03)
00:1a.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #4 (rev 03)
00:1a.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #5 (rev 03)
00:1a.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI 
Controller #2 (rev 03)
00:1b.0 Audio device: Intel Corporation 82801H (ICH8 Family) HD Audio 
Controller (rev 03)
00:1c.0 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 1 
(rev 03)
00:1c.1 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 2 
(rev 03)
00:1c.2 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 3 
(rev 03)
00:1c.3 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 4 
(rev 03)
00:1c.4 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 5 
(rev 03)
00:1c.5 PCI bridge: Intel Corporation 82801H (ICH8 Family) PCI Express Port 6 
(rev 03)
00:1d.0 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #1 (rev 03)
00:1d.1 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #2 (rev 03)
00:1d.2 USB Controller: Intel Corporation 82801H (ICH8 Family) USB UHCI 
Controller #3 (rev 03)
00:1d.7 USB Controller: Intel Corporation 82801H (ICH8 Family) USB2 EHCI 
Controller #1 (rev 03)
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev f3)
00:1f.0 ISA bridge: Intel Corporation 82801HEM (ICH8M) LPC Interface 
Controller (rev 03)
00:1f.1 IDE interface: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) IDE 
Controller (rev 03)
00:1f.2 SATA controller: Intel Corporation 82801HBM/HEM (ICH8M/ICH8M-E) SATA 
AHCI Controller (rev 03)
01:00.0 VGA compatible controller: nVidia Corporation GeForce 8400M G (rev a1)
02:00.0 Ethernet controller: Attansic Technology Corp. L1 Gigabit Ethernet 
Adapter (rev b0)
03:00.0 Network controller: Intel Corporation PRO/Wireless 4965 AG or AGN 
[Kedron] Network Connection (rev 61)
09:01.0 FireWire (IEEE 1394): Ricoh Co Ltd R5C832 IEEE 1394 Controller (rev 
05)
09:01.1 SD Host controller: Ricoh Co Ltd R5C822 SD/SDIO/MMC/MS/MSPro Host 
Adapter (rev 22)
09:01.2 System peripheral: Ricoh Co Ltd R5C592 Memory Stick Bus Host Adapter 
(rev 12)
09:01.3 System peripheral: Ricoh Co Ltd xD-Picture Card Controller (rev 12)


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.26-1-amd64

Debian Release: lenny/sid
  990 testing security.debian.org 
  990 testing debian.ens-cachan.fr 
   99 unstabledebian.ens-cachan.fr 
  500 lenny   kde4.debian.net 

--- Package information. ---
Depends   (Version) | Installed
===-+-
libc6(>= 2.7-1) | 2.7-16
libconsole  (= 1:0.2.3dbs-65.1) | 1:0.2.3dbs-65.1
debconf | 1.5.24
 OR debconf-2.0 | 
lsb-base(>= 3.0-10) | 3.2-20



-- 

"ROUCARIES Bastien"
   [EMAIL PROTECTED]
---
DO NOT WRITE TO [EMAIL PROTECTED] OR BE BLACKLISTED



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



Bug#507917: debhelper + data-only packages = annoying lintian warning

2008-12-05 Thread Eugene V. Lyubimkin
Package: lintian
Version: 2.1.0
Severity: normal

Hello.

Lintian recently started to produce 'debhelper-but-no-misc-depends'
warnings. While it reveal true issues, it also produces false positives
in case of data-only packages, which have no 'Depends' field at all.
And I can't fix this warnings, because putting
'Depends: ${misc:Depends}' will in 99% of my cases result in empty
'Depends:' line which is Policy violation. I guess this is archive-wide
issue, so I am waiting for advice from you (I can just override false
positives in all my packages, but I am not very happy with this solution.)

Regards,
Eugene.

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

Kernel: Linux 2.6.26-1-amd64 (SMP w/2 CPU cores)
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 lintian depends on:
ii  binutils2.18.1~cvs20080103-7 The GNU assembler, linker and bina
ii  diffstat1.46-1   produces graph of changes introduc
ii  dpkg-dev1.14.22  Debian package development tools
ii  file4.26-1   Determines file type using "magic"
ii  gettext 0.17-6   GNU Internationalization utilities
ii  intltool-debian 0.35.0+20060710.1Help i18n of RFC822 compliant conf
ii  libipc-run-perl 0.80-2   Perl module for running processes
ii  libparse-debianchan 1.1.1-2  parse Debian changelogs and output
ii  libtimedate-perl1.1600-9 Time and date functions for Perl
ii  liburi-perl 1.35.dfsg.1-1Manipulates and accesses URI strin
ii  man-db  2.5.2-3  on-line manual pager
ii  perl [libdigest-sha 5.10.0-16Larry Wall's Practical Extraction 

lintian recommends no packages.

Versions of packages lintian suggests:
pn  binutils-multiarch (no description available)
ii  libtext-template-perl 1.44-1.2   Text::Template perl module
ii  man-db2.5.2-3on-line manual pager

-- no debconf information



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



Bug#507912: haskell-devscripts: Overly-tight deps in dh_haskell_depends

2008-12-05 Thread Joachim Breitner
Hi John,

thanks for bringing this up

Am Freitag, den 05.12.2008, 13:57 -0600 schrieb John Goerzen:
> I am starting on the process of getting all my packages to use
> dh_haskell_depends.  Unfortunately, I noticed some oddities:
> 
> I just built hslogger.  Its cabal file has Version: 1.0.6.  The
> debian/changelog version is 1.0.6.2.  I am upstream for hslogger, so
> it is a debian-native package.
> 
> Then I went to build MissingH.  It too is using dh_haskell_depends.
> Amongst the dependencies for libghc6-missingh-dev, I see:
> 
>   libghc6-hslogger-dev (>= 1.0.6.2), libghc6-hslogger-dev (<< 1.0.6.2+)
> 
> which is functionally the same as:
> 
>   libghc6-hslogger-dev (= 1.0.6.2)
> 
> I am not sure what you meant to use; perhaps:
> 
>   libghc6-hslogger-dev (>= 1.0.6.2), libghc6-hslogger-dev (<< 1.0.6.+)
> 
> In other words, the upper bound should be based on the cabal version,
> not the Debian version.
> 
> CCing to debian-haskell for feedback there.

For one thing, I’m not sure if it is safe to let packages depend on
anything else but the exact build in question, including the Debian
revision – this is what haskell-utils does, and I assume that Igloo had
a good reason for this (cross-module inlining, or something else – can’t
say).

If it’s safe to only depend on the cabal version, I see two solutions:

A) You modify your naming scheme so that the Debian version is split
with a dash, as suggested by the policy. Note that policy does not
explicitly state that having a Debian version in the version string
means that you have to provide a .diff.gz and an orig.tar.gz – a .tar.gz
seems to be still policy-compliant[1].

B) dh_haskell_depends is enhanced to try to match the cabal version
inside the package version, and creating appropriate dependencies
(probably with a fallback to the current way).

I’d prefer A because B seems to be a bit error prone and adds
complexity, but of course with A, you’ll probably have to defend this
packaging scheme (but isn’t that already the case with using a
debian-native version)?

Greetings,
Joachim

[1] 
http://www.debian.org/doc/debian-policy/ap-pkg-sourcepkg.html#s-pkg-sourcearchives

-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#503147: ITP: vzdump - Backup of a running container (OpenVZ)

2008-12-05 Thread Cristian Greco
On Wed, Oct 22, 2008 at 10:38:53PM +0100, Miguel Figueiredo wrote:

> Debian already provides the OpenVZ infrastructure but it's missing the
> vzdump utility.
> vzdump it's a utility to backup a running container.
> 
> More information about vzdump (and source code location):
> http://wiki.openvz.org/Vzdump

retitle 503147 ITP: vzdump -- Backup of a running container (OpenVZ)
thanks

I'm working on this package.

Cristian

-- 
 . ''`.  Cristian Greco - [EMAIL PROTECTED]
 : :'  : http://alioth.debian.org/~cristian-guest
 `. `'`  GPG Public Key ID: 1024D/0C095825
   `-


signature.asc
Description: Digital signature


Bug#507845: Dedibox server with VIA C7 cpu freeze with the last libc6

2008-12-05 Thread Maelvon HAWK

Aurelien Jarno a écrit :

Maelvon HAWK a écrit :

Aurelien Jarno a écrit :

tag 507845 + unreproducible
tag 507845 + moreinfo
thanks

Maelvon HAWK a écrit :

Package: libc6
Version: 2.3.6.ds1-3

This is a very old version. Try using at least the latest version from
stable, that is 2.3.6.ds1-13etch7.

If I put the stable one, it freeze, with no clues…


Severity: important

I've a Dedibox server, with a VIA C7 cpu, running a debian ETCH, and it 
seems I've done a dist-upgrade without
rebooting that's put the mess in the server. After that it freeze when 
it want, for no special apparent reason. I said it

seems because I remember to have done that, and found some links about that.

The actual solution I found is to downgrade my libc6, specifing some 
preferences in /etc/apt/preferences and the
server is working well now, but I never update the libc6 or the bug 
comes back.


But I've tested to install mod_python today and the libc6 downgrade 
seems to impact it. I've done a remove of the

package "php5-recode" to make the mod_python running.

In the other hand, I've found a similar bug report in Gentoo [1], if it 
can help to resolve this.

As clearly explained in the gentoo bug report, this is not a glibc
problem, but rather a kernel problem. The glibc may trigger a kernel
bug, but the bug has to be fixed in the kernel.

First of all, please try to use a standard Debian kernel instead of the
kernel 2.6.24.2dedibox-r8-1-c7 one, which is known to be problematic. If
you are still be able to reproduce the bug with a Debian kernel, I'll
reassign the bug to the kernel package.


Aurelien

Which kernel should I install. An "apt-cache search linux-image-2.6" 
give me :


linux-image-2.6-openvz-686 - Linux 2.6 image on PPro/Celeron/PII/PIII/P4
linux-image-2.6-vserver-686-bigmem - Linux 2.6 image on 
PPro/Celeron/PII/PIII/P4

linux-image-2.6.26-bpo.1-486 - Linux 2.6.26 image on x86
linux-image-2.6.26-bpo.1-686 - Linux 2.6.26 image on 
PPro/Celeron/PII/PIII/P4
linux-image-2.6.26-bpo.1-686-bigmem - Linux 2.6.26 image on 
PPro/Celeron/PII/PIII/P4

linux-image-2.6.26-bpo.1-amd64 - Linux 2.6.26 image on AMD64
linux-image-2.6.26-bpo.1-openvz-686 - Linux 2.6.26 image on 
PPro/Celeron/PII/PIII/P4, OpenVZ support
linux-image-2.6.26-bpo.1-vserver-686 - Linux 2.6.26 image on 
PPro/Celeron/PII/PIII/P4, Linux-VServer support
linux-image-2.6.26-bpo.1-vserver-686-bigmem - Linux 2.6.26 image on 
PPro/Celeron/PII/PIII/P4, Linux-VServer support

linux-image-2.6.26-bpo.1-xen-686 - Linux 2.6.26 image on i686
linux-image-2.6.23.13dedibox-r8 - Linux kernel binary image for version 
2.6.23.13dedibox-r8


You should use the stable one, either:
- linux-image-2.6.18-6-686
- linux-image-2.6.24-etchnhalf.1-686

I had a dedibox with a VIA C7 CPU running the first one and glibc
2.3.6.ds1-13etchX for more than a year without any problem.



Ok, first freeze!
With the linux-image-2.6.18-6-686, what's the next step?
Nothing at all in the /var/log/messages.

I'll test now the "2.6.24.2-by-myckeul"[1] kernel.

It's a production server so I should found a solution for this bug or I 
return to the last solution, the downgrade of libc6.


Thanks,

Maelvon




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



Bug#504398: ITP: l7-protocols -- protocol definitions for the Linux layer 7 packet classifier

2008-12-05 Thread Piotr Lewandowski

The package has been uploaded to mentors:
http://mentors.debian.net/debian/pool/main/l/l7-protocols

--
Piotr Lewandowski



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



Bug#507916: xorg: Xorg segfault on swsusp resume

2008-12-05 Thread Andy Isaacson
Package: xorg
Version: 1:7.3+18
Severity: important

I trigger swsusp on my Thinkpad X40 using a script which does

sudo sh -c 'echo 3 > /sys/power/image_size;
echo shutdown > /sys/power/disk;
echo disk > /sys/power/state' 

This generally works (I've probably suspended 500 times in the last
three years, running various -mm and mainline kernels, and most of the
time it works), but this morning the X server crashed while resuming in
a most interesting manner:

> (II) Open ACPI successful (/var/run/acpid.socket)
> (II) intel(0): xf86BindGARTMemory: bind key 0 at 0x007df000 (pgoffset 2015)
> (II) intel(0): xf86BindGARTMemory: bind key 1 at 0x007e (pgoffset 2016)
> (II) intel(0): xf86BindGARTMemory: bind key 2 at 0x007e4000 (pgoffset 2020)
> (II) intel(0): xf86BindGARTMemory: bind key 3 at 0x007e5000 (pgoffset 2021)
> (II) intel(0): xf86BindGARTMemory: bind key 4 at 0x007e9000 (pgoffset 2025)
> (II) intel(0): xf86BindGARTMemory: bind key 5 at 0x007f (pgoffset 2032)
> 
> Backtrace:
> 0: /usr/bin/X11/X(xf86SigHandler+0x81) [0x80c8631]
> 1: [0xe400]
> 2: /usr/bin/X11/X(xf86_reload_cursors+0x70) [0x80f9f80]
> 3: /usr/lib/xorg/modules/drivers//i810_drv.so [0xb7ba5f62]
> 4: /usr/bin/X11/X(xf86CrtcSetMode+0x279) [0x80f9169]
> 5: /usr/bin/X11/X(xf86SetDesiredModes+0x139) [0x80f9519]
> 6: /usr/lib/xorg/modules/drivers//i810_drv.so [0xb7ba98c9]
> 7: /usr/lib/xorg/modules//libxaa.so [0xb7a643f2]
> 8: /usr/bin/X11/X [0x80d08fc]
> 9: /usr/bin/X11/X [0x80ddcd8]
> 10: /usr/bin/X11/X(xf86Wakeup+0x3bd) [0x80c9d4d]
> 11: /usr/bin/X11/X(WakeupHandler+0x59) [0x80929e9]
> 12: /usr/bin/X11/X(WaitForSomething+0x1ae) [0x81b88ee]
> 13: /usr/bin/X11/X(Dispatch+0x82) [0x808ec22]
> 14: /usr/bin/X11/X(main+0x495) [0x8076e85]
> 15: /lib/i686/cmov/libc.so.6(__libc_start_main+0xe0) [0xb7d74450]
> 16: /usr/bin/X11/X(FontFileCompleteXLFD+0x1ed) [0x80761c1]
> 
> Fatal server error:
> Caught signal 11.  Server aborting
> 
> (II) intel(0): xf86UnbindGARTMemory: unbind key 0
> (II) intel(0): xf86UnbindGARTMemory: unbind key 1
> (II) intel(0): xf86UnbindGARTMemory: unbind key 2
> (II) intel(0): xf86UnbindGARTMemory: unbind key 3
> (II) intel(0): xf86UnbindGARTMemory: unbind key 4
> (II) intel(0): xf86UnbindGARTMemory: unbind key 5

It looks to me like the SIGIO from the mouse filedescriptor came in
while the driver was reinitializing and caught a function pointer with
its pants down.

I've never seen this before, though I have had some untriaged X
crashes-on-resume in the past.

Complete system information (including xorg.conf, .config, and complete
Xorg.0.log.old) is at
http://web.hexapodia.org/~adi/bobble/bobble_2.6.27_20081205113626/
http://web.hexapodia.org/~adi/bobble/bobble_2.6.27_20081205113626.tar.gz
SHA1 (bobble_2.6.27_20081205113626.tar.gz) = 
2123c9633053f1423b04ebff2d8cc71f72774ae0

-andy

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

Kernel: Linux 2.6.27
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 xorg depends on:
ii  libgl1-mesa-glx [libgl1]  7.0.3-6A free implementation of the OpenG
ii  libglu1-mesa  7.0.3-6The OpenGL utility library (GLU)
ii  x11-apps  7.3+4  X applications
ii  x11-session-utils 7.3+1  X session utilities
ii  x11-utils 7.3+2  X11 utilities
ii  x11-xfs-utils 7.3+1  X font server utilities
ii  x11-xkb-utils 7.4+1  X11 XKB utilities
ii  x11-xserver-utils 7.3+5  X server utilities
ii  xauth 1:1.0.3-2  X authentication utility
ii  xfonts-100dpi 1:1.0.0-4  100 dpi fonts for X
ii  xfonts-75dpi  1:1.0.0-4  75 dpi fonts for X
ii  xfonts-base   1:1.0.0-5  standard fonts for X
ii  xfonts-scalable   1:1.0.0-6  scalable fonts for X
ii  xfonts-utils  1:7.4+1X Window System font utility progr
ii  xinit 1.0.9-2X server initialisation tool
ii  xkb-data  1.3-2  X Keyboard Extension (XKB) configu
ii  xserver-xorg  1:7.2-5the X.Org X server
ii  xterm [x-terminal-emulator]   237-1  X terminal emulator

Versions of packages xorg recommends:
ii  xorg-docs 1:1.4-3Miscellaneous documentation for th

xorg suggests no packages.

-- no debconf information




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



Bug#507915: Povray unusable with non-ascii filenames

2008-12-05 Thread Noel Torres
Package: povray
Version: 1:3.6.1-12
Severity: grave

PoV-Ray can not use filenames allowed by the standard Debian encoding, UTF-8. 
As an example I tried to include a file, which creates a mountain, called 
'montaña.pov', in a more general 'montañas.pov' which uses it. While the file 
itself works, (povray accepts it as an input file) it is not possible to have 
it included:

  0:00:00 Parsing
File: montañas.pov  Line: 3
Possible Parse Error: Non-ASCII character has been replaced by space character.
File: montañas.pov  Line: 3
Possible Parse Error: Non-ASCII character has been replaced by space character.
File: montañas.pov  Line: 3
Possible Parse Error: Could not find file 'monta  a.pov'
File: montañas.pov  Line: 3
File Context (5 lines):
#include "colors.inc"
#include "camaras.inc.pov"
#include "montaña.pov"
Parse Error: Cannot open include file monta  a.pov.
File: montañas.pov  Line: 3
Parse Warning: Check that the file is in a directory specifed with a +L switch
 or 'Library_Path=' .INI item. Standard include files are in the include
 directory or folder. Please read your documentation carefully.

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages povray depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1 GCC support library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  libtiff4   3.8.2-11  Tag Image File Format (TIFF) libra
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages povray recommends:
ii  povray-includes   1:3.6.1-12 Persistance of vision raytracer (3

Versions of packages povray suggests:
pn  kpovmodeler(no description available)
ii  povray-doc1:3.6.1-12 Persistence of vision raytracer (3
ii  povray-examples   1:3.6.1-12 Persistence of vision raytracer (3

-- no debconf information



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



Bug#507914: Update to drupal6 in README.Debian (not drupal5)

2008-12-05 Thread Philippe Coval
Package: drupal6
Version: 6.6-1
Severity: wishlist

Tag: patch
As said in title, please update localhost link to drupal6 
in file README.Debian

See patch at bottom :
http://rzr.online.fr/docs/contribs/patches/drupal6_6.6-1.1.debdiff

Thanx

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

Kernel: Linux 2.6.26-k7-amiloa-rt (PREEMPT)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages drupal6 depends on:
ii  apache2   2.2.9-10   Apache HTTP Server metapackage
ii  apache2-mpm-prefork [httpd]   2.2.9-10   Apache HTTP Server - traditional n
ii  curl  7.18.2-5   Get a file from an HTTP, HTTPS or 
ii  dbconfig-common   1.8.39 common framework for packaging dat
ii  libjs-jquery  1.2.6-1JavaScript library for dynamic web
ii  mysql-client  5.0.51a-18 MySQL database client (metapackage
ii  mysql-client-5.0 [virtual-mys 5.0.51a-18 MySQL database client binaries
ii  php5  5.2.6-5server-side, HTML-embedded scripti
ii  php5-gd   5.2.6-5GD module for php5
ii  php5-mysql5.2.6-5MySQL module for php5
ii  postfix [mail-transport-agent 2.5.5-1.1  High-performance mail transport ag
ii  wwwconfig-common  0.1.2  Debian web auto configuration

Versions of packages drupal6 recommends:
ii  mysql-server  5.0.51a-18 MySQL database server (metapackage
ii  mysql-server-5.0 [mysql-serve 5.0.51a-18 MySQL database server binaries

drupal6 suggests no packages.

-- debconf information:
  drupal6/purge: false
  drupal6/dbconfig-upgrade: true
  drupal6/install-error: abort
  drupal6/dbconfig-remove:
  drupal6/internal/skip-preseed: false
  drupal6/upgrade-error: abort
  drupal6/db/app-user: drupal6
  drupal6/mysql/admin-user: root
  drupal6/remote/newhost:
  drupal6/remote/port:
  drupal6/missing-db-package-error: abort
  drupal6/upgrade-backup: true
  drupal6/dbconfig-reinstall: false
  drupal6/pgsql/authmethod-admin: ident
  drupal6/pgsql/manualconf:
  drupal6/mysql/method: unix socket
  drupal6/pgsql/authmethod-user:
  drupal6/pgsql/method: unix socket
  drupal6/internal/reconfiguring: false
* drupal6/database-type: mysql
  drupal6/remove-error: abort
  drupal6/pgsql/admin-user: postgres
  drupal6/db/dbname: drupal6
  drupal6/pgsql/changeconf: false
  drupal6/remote/host:
  drupal6/db/basepath:
  drupal6/passwords-do-not-match:
  drupal6/pgsql/no-empty-passwords:
* drupal6/dbconfig-install: true
diff -u drupal6-6.6/debian/README.Debian drupal6-6.6/debian/README.Debian
--- drupal6-6.6/debian/README.Debian
+++ drupal6-6.6/debian/README.Debian
@@ -45,7 +45,7 @@
 
 This can be done running the install.php script on portal web site, e.g.
 
-  http://localhost/drupal5/install.php
+  http://localhost/drupal6/install.php
 
 
 4. Deleting the Drupal database
diff -u drupal6-6.6/debian/changelog drupal6-6.6/debian/changelog
--- drupal6-6.6/debian/changelog
+++ drupal6-6.6/debian/changelog
@@ -1,3 +1,10 @@
+drupal6 (6.6-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix documentation
+
+ -- Philippe Coval <[EMAIL PROTECTED]>  Fri, 05 Dec 2008 17:14:21 +0100
+
 drupal6 (6.6-1) unstable; urgency=high
 
   [ Luigi Gangitano ]  



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



Bug#398310: mdadm: let user choose when to start which array

2008-12-05 Thread lee
Followup-For: Bug #398310
Package: mdadm
Version: 2.6.7.1-1


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

The OP of this bug is right, the user needs to be told exactly which
arrays have been discovered, and he *must* be given a choice to either
start them now or not.

The only choice he is presented with is the question which arrays to
start when booting the system. That doesn't have to do anything with
starting them in the process of installing the mdadm package.


In my case, I have two disks used for a RAID-1:


   Device Boot  Start End  Blocks   Id  System
/dev/sda1   1911973248336   fd  Linux raid autodetect
/dev/sda29120   29788   166023742+  fd  Linux raid autodetect
/dev/sda3   29789   3648353777587+  fd  Linux raid autodetect

   Device Boot  Start End  Blocks   Id  System
/dev/sdb1   1911973248336   fd  Linux raid autodetect
/dev/sdb29120   29788   166023742+  fd  Linux raid autodetect
/dev/sdb3   29789   3648353777587+  fd  Linux raid autodetect


When the disks were new a few years ago, I tried to make a RAID-1 from
those disks and then to partition the array (on Debian i386). That
didn't work, so I had to partition the disks and then to create the
array from the partitons (see mdadm.conf below). The UUIDs are:


cat:/etc/exim4# mdadm --examine --scan /dev/sda
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=c5460893:6fe1b92f:8d76d626:2a523555
cat:/etc/exim4# mdadm --examine --scan /dev/sdb
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=c5460893:6fe1b92f:8d76d626:2a523555

cat:/etc/exim4# mdadm --examine --scan /dev/sda1
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=ca34e190:39db09f0:390edcc4:35d74b5f
cat:/etc/exim4# mdadm --examine --scan /dev/sdb1
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=ca34e190:39db09f0:390edcc4:35d74b5f
cat:/etc/exim4# mdadm --examine --scan /dev/sda2
ARRAY /dev/md1 level=raid1 num-devices=2 
UUID=9f9a753b:eb70a81c:5ff8d522:9ec3586b
cat:/etc/exim4# mdadm --examine --scan /dev/sdb2
ARRAY /dev/md1 level=raid1 num-devices=2 
UUID=9f9a753b:eb70a81c:5ff8d522:9ec3586b
cat:/etc/exim4# mdadm --examine --scan /dev/sda3
ARRAY /dev/md2 level=raid1 num-devices=2 
UUID=ae296907:7c3dc6ef:763a7645:40ee5e12
cat:/etc/exim4# mdadm --examine --scan /dev/sdb3
ARRAY /dev/md2 level=raid1 num-devices=2 
UUID=ae296907:7c3dc6ef:763a7645:40ee5e12


Please note that /dev/sda and /dev/sdb still have UUIDs from my first
attempt to create a RAID-1. How do I remove these?


This has been working fine on i386, the arrays were created
automatically as they should during installing the mdadm package when
I started using the disks on a new Debian system.

A few days ago I switched to amd64 (i. e. x86_64). When I installed
the mdadm package, I was asked which md devices should be started when
booting the system, then the devices were autodetected and immediately
started.

But they were detected with the ARRAY entries I later commented out
(see below). That left me with /dev/md0 as a RAID-1 across both disks
(the whole disks!) and apparently broken /dev/md1 and /dev/md2. A
resync for the array had also been automatically started. fdisk -l
showed devices like /dev/md0p1 or /dev/md0p2, but these devices didn't
exist. They were also not listed in /proc/partitions --- this is where
the manpage of fdisk says that fdisk gets its information:


-l  List the partition tables for the specified
devices and then exit.
If no devices are given, those mentioned in
/proc/partitions (if that exists) are used.


Fortunately, I didn't lose my data. After the resync was finished ---
and I wonder what would have happened if I had stopped it or if there
had been a power failure during the resync --- I stopped all md
devices, reassembled the arrays manually and put new entries for them
into mdadm.conf. But I didn't know if it would work, I could as well
have lost all the data.

For one thing, I don't know why mdadm works differently on i386 than
it does on x86_64. For another, the risk of losing data could be
greatly reduced, and the trouble avoided, it the mdadm package would
show the user during installation exactly which arrays have been
detected and give him a choice to either start them now or not.

It is an *extremely bad* idea to just autodetect RAID arrays and to
automatically start and eventually resync them without the user having
a chance to verify that everything is correct during the installation
of the mdadm package, *before* any array is started.


The point in using a RAID is for me to make it less likely to lose
data, not to make it more likely to lose it. Most of the RAID modes
are for just that, making it less likely to lose data.

The OP reported this problem about two years ago. It's still there
...


-- Package-specific info:
--- mount output
/dev/hdb1 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw t

Bug#507913: Patch: Fix bashism in debian/postinst; update debian/watch

2008-12-05 Thread Daniel Hahler
Package: nginx
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu jaunty ubuntu-patch
Version: 0.7.14-1
Severity: important
Tags: patch

The attached patch fixes debian/postinst: Variable name must not contain
"-" in dash/sh

It also updates/fixes debian/watch.

-- 
http://daniel.hahler.de/



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



Bug#507912: haskell-devscripts: Overly-tight deps in dh_haskell_depends

2008-12-05 Thread John Goerzen
Package: haskell-devscripts
Version: 0.6.14
Severity: normal

I am starting on the process of getting all my packages to use
dh_haskell_depends.  Unfortunately, I noticed some oddities:

I just built hslogger.  Its cabal file has Version: 1.0.6.  The
debian/changelog version is 1.0.6.2.  I am upstream for hslogger, so
it is a debian-native package.

Then I went to build MissingH.  It too is using dh_haskell_depends.
Amongst the dependencies for libghc6-missingh-dev, I see:

  libghc6-hslogger-dev (>= 1.0.6.2), libghc6-hslogger-dev (<< 1.0.6.2+)

which is functionally the same as:

  libghc6-hslogger-dev (= 1.0.6.2)

I am not sure what you meant to use; perhaps:

  libghc6-hslogger-dev (>= 1.0.6.2), libghc6-hslogger-dev (<< 1.0.6.+)

In other words, the upper bound should be based on the cabal version,
not the Debian version.

CCing to debian-haskell for feedback there.

-- John

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (99, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages haskell-devscripts depends on:
ii  dctrl-tools   2.13.0 Command-line tools to process Debi
ii  debhelper 7.0.17 helper programs for debian/rules
ii  ghc6  6.8.2-7GHC - the Glasgow Haskell Compilat
ii  xutils-dev1:7.4+3X Window System utility programs f

haskell-devscripts recommends no packages.

haskell-devscripts suggests no packages.

-- no debconf information



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



Bug#499716: libcdparanoia0: segmentation fault in cdda_read_timed

2008-12-05 Thread Julian Squires
It's worth noting that this is fixed in the upstream Subversion trunk;
looks like it was r15356, since this only seems to bite people on PPC.

-- 
Julian Squires



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



Bug#432310: umtsmon - fix kde menu entry

2008-12-05 Thread Chris Hildebrandt
Hi,
at the current state umtsmon is a nice tool, but still requires root to
actually connect. Therefore I propose the attached patch, which changes
the KDE menu entry to make use of Debian's su-to-root.
Greetings,
Chris Hildebrandt

diff -u umtsmon-0.9/debian/menu umtsmon-0.9/debian/menu
--- umtsmon-0.9/debian/menu
+++ umtsmon-0.9/debian/menu
@@ -5 +5 @@
-	command="umtsmon"
+	command="su-to-root -X -c /usr/bin/umtsmon"
diff -u umtsmon-0.9/debian/control umtsmon-0.9/debian/control
--- umtsmon-0.9/debian/control
+++ umtsmon-0.9/debian/control
@@ -2,13 +2,13 @@
 Section: utils
 Priority: optional
 Maintainer: Patrick Winnertz <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 6), libqt3-mt-dev, libusb-dev, qt3-dev-tools
+Build-Depends: debhelper (>= 6), libqt3-mt-dev, libusb-dev, quilt, qt3-dev-tools
 Standards-Version: 3.8.0
 Homepage: http://umtsmon.sf.net
 
 Package: umtsmon
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, menu
 Description: control and monitor wireless mobile network cards
  umtsmon controls and monitors wireless mobile network cards that use ETLAs
  such as GPRS, EDGE, WCDMA, UMTS and HSDPA. It handles PIN codes, operator
only in patch2:
unchanged:
--- umtsmon-0.9.orig/debian/patches/01_su-to-root.patch
+++ umtsmon-0.9/debian/patches/01_su-to-root.patch
@@ -0,0 +1,23 @@
+start umtsmon as root by relying on su-to-root, which is part of the Debian
+specific "menu" package. In its current form, umtsmon cannot control ppp
+as non-root.
+
+--- a/umtsmon.desktop
 b/umtsmon.desktop
+@@ -4,7 +4,7 @@ Comment[en_US]=control your 3G mobile de
+ Comment[de]=Verwalte dein UMTS/GPRS-PCMCIA-Modem
+ Comment[nl]=Bestuur je mobiele netwerk apparaat
+ Encoding=UTF-8
+-Exec=umtsmon
++Exec=su-to-root -X -c /usr/bin/umtsmon
+ GenericName=umtsmon - control your 3G mobile devices
+ GenericName[en_US]=umtsmon - control your 3G mobile devices
+ Icon=umtsmon-128x128.png
+@@ -15,7 +15,6 @@ Name[de]=umtsmon
+ Path=
+ StartupNotify=true
+ Terminal=false
+-TerminalOptions=
+ Type=Application
+ X-KDE-SubstituteUID=false
+ X-KDE-StartupNotify=true
only in patch2:
unchanged:
--- umtsmon-0.9.orig/debian/patches/series
+++ umtsmon-0.9/debian/patches/series
@@ -0,0 +1 @@
+01_su-to-root.patch



signature.asc
Description: PGP signature


signature.asc
Description: OpenPGP digital signature


Bug#507910: ITP: maven-reporting-impl -- Maven Reporting API Implementation

2008-12-05 Thread Torsten Werner
Package: wnpp
Severity: wishlist
Owner: Torsten Werner <[EMAIL PROTECTED]>

* Package name: maven-reporting-impl
  Version : 2.0.4.1
  Upstream Author : Vincent Siveton
* URL : http://maven.apache.org
* License : Apache-2.0
  Programming Lang: Java
  Description : Maven Reporting API Implementation
 Maven is a software project management and comprehension tool. Based on the
 concept of a project object model (POM), Maven can manage a project's build,
 reporting and documentation from a central piece of information.
 .
 Maven's primary goal is to allow a developer to comprehend the complete
 state of a development effort in the shortest period of time. In order to
 attain this goal there are several areas of concern that Maven attempts
 to deal with:
 .
* Making the build process easy
* Providing a uniform build system
* Providing quality project information
* Providing guidelines for best practices development
* Allowing transparent migration to new features
 .
 This package implements the Maven Reporting API.



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



Bug#507911: RM: achims-guestbook -- RoQA; orphaned, dead upstream, php4 based, low popcon

2008-12-05 Thread Marco Rodrigues
Package: ftp.debian.org
Severity: normal

Hi!

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream is dead. (No new release since 2006). Upstream website is closed.
* It's based on PHP4 (Already removed from archive).
* Better choices on the web - http://www.phpclasses.org
* Few users - a popcon of 18 users only.
* Security risk - A PHP software not maintained.

Package has no reverse depends or reverse build-depends except for itself.


Thank you!

-- 
Marco Rodrigues

http://Marco.Tondela.org



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



Bug#504042: perl-doc recommendation

2008-12-05 Thread Eugene V. Lyubimkin
Hello.

Brendan O'Dea wrote:
[snip]
> So you may be able to downgrade the recommendation to a suggests,
> although a better suggestion might be for apt/dpkg to support a
> "Soft-Recommends" which would be installed by default only when the
> package was directly selected, rather than pulled in as a dependency.
If package was directly selected, it will be installed as a regular package. I 
see no aims
of 'Soft-Recommends' type of dependency.
It seems that 'Suggests' is what you need.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
Ukrainian C++ developer, Debian APT contributor



signature.asc
Description: OpenPGP digital signature


Bug#506611: fvwm-crystal: Wrong russian translation

2008-12-05 Thread Vincent Bernat
OoO En cette fin de matinée  radieuse du dimanche 30 novembre 2008, vers
11:46, Alexander Galanin <[EMAIL PROTECTED]> disait :

> I think that better translation for "destroy" is "уничтожить". You can find 
> my 
> versions 
> of 
> /usr/share/fvwm-crystal/fvwm/locale/ru_RU.UTF-8/LC_MESSAGES/fvwm-crystal.po 
> and 
> /usr/share/fvwm-crystal/fvwm/locale/ru_RU.KOI8-R/LC_MESSAGES/fvwm-crystal.po 
> in attachments. I have corrected many typos and semantic problems.

I have pushed your changes  upstream. I will probably apply your changes
on the next release.
-- 
BOFH excuse #243:
The computer fletely, mouse and all.


pgphTX1CL763i.pgp
Description: PGP signature


Bug#507909: python-turbogears: Unable to import peak.rules

2008-12-05 Thread Kristian Kvilekval
Package: python-turbogears
Version: 1.0.4.4-2
Severity: important


After upgrading turbogears, can't load anything
as it fails on missing dependency peak.rules.

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.26-1-openvz-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages python-turbogears depends on:
ii  python2.4.4-2An interactive high-level object-o
ii  python-celementtree   1.0.5-10   Light-weight toolkit for XML proce
ii  python-cheetah2.0.1-2text-based template engine and Pyt
ii  python-cherrypy   2.3.0-1Python web development framework
ii  python-configobj  4.5.2-2a simple but powerful config file 
ii  python-decoratortools 1.7-3  version-agnostic decorators suppor
ii  python-dispatch   0.5a.svn20080510-2 Rule-based Dispatching and Generic
ii  python-formencode 1.0.1-1validation and form generation Pyt
ii  python-kid0.9.6-1simple Pythonic template language 
ii  python-nose   0.10.3-1   test discovery and running for Pyt
ii  python-paste  1.7.1-1Tools for using a Web Server Gatew
ii  python-pastedeploy1.3.2-1Load, configure, and compose WSGI 
ii  python-pastescript1.6.3-1serving web applications, creating
ii  python-pkg-resources  0.6c8-4Package Discovery and Resource Acc
ii  python-simplejson 1.9.2-1Simple, fast, extensible JSON enco
ii  python-sqlalchemy 0.5.0~rc4-1SQL toolkit and Object Relational 
ii  python-sqlobject  0.10.2-2   Python module for SQLObject
ii  python-support0.8.7  automated rebuilding support for P
ii  python-turbojson  1.2-1  TurboGears template plugin that su
ii  python-turbokid   1.0.4-3TurboGears template plugin that su

Versions of packages python-turbogears recommends:
pn  python-elixir  (no description available)
ii  python-pysqlite2  2.5.0-2Python interface to SQLite 3

-- no debconf information



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



Bug#507908: RM: stegdetect -- RoQA; orphaned, inactive upstream, GTK+ 1.2

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream is inactive. (No new release since 2004).
* Package is built with GTK+ 1.2 which is scheduled for removal.

Package has no reverse depends or reverse build-depends except for itself.

Thank you,

Barry deFreese
Debian QA






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



Bug#507884: setting package to camlp5, tagging 507884

2008-12-05 Thread Stephane Glondu
# Automatically generated email from bts, devscripts version 2.10.35
# via tagpending 
#
# camlp5 (5.10-1) experimental; urgency=low
#
#  * New upstream release, compatible with OCaml 3.11.0 (Closes: #507884)
#

package camlp5
tags 507884 + pending




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



Bug#507904: dokuwiki dependencies

2008-12-05 Thread Mohammed Adnène Trojette
Hi Vladimir,

On Fri, Dec 05, 2008, Vladimir Stupin wrote:
> I think, may be dependencies of dokuwiki from php5 and php4 must be replaced 
> to php4-cgi and php5-cgi? Or i mistaken?
> 
> At all events, i don't need apache, i use lighttpd!

% apt-cache show dokuwiki|grep Depends
Depends: debconf (>= 0.5) | debconf-2.0, ucf, php5 | php4, php-geshi

% apt-cache show php5|grep Depends   
Depends: libapache2-mod-php5 (>= 5.2.6.dfsg.1-0.1) | libapache2-mod-php5filter 
(>= 5.2.6.dfsg.1-0.1) | php5-cgi (>= 5.2.6.dfsg.1-0.1), php5-common (>= 
5.2.6.dfsg.1-0.1)

% apt-cache show libapache2-mod-php5|grep Depends
Depends: libbz2-1.0, libc6 (>= 2.7-1), libcomerr2 (>= 1.01), libdb4.6, libkrb53 
(>= 1.6.dfsg.2), libpcre3 (>= 7.7), libssl0.9.8 (>= 0.9.8f-5), libxml2 (>= 
2.6.28), zlib1g (>= 1:1.1.4), mime-support, apache2-mpm-prefork (>> 2.0.52) | 
apache2-mpm-itk, apache2.2-common, php5-common (= 5.2.6.dfsg.1-0.1+b1), 
libmagic1, ucf, tzdata

Then dokuwiki => php5 => libapache2-mod-php5 => apache2.

php5-cgi is not enough when you don't have any webserver. But I guess
if php5-cgi is already installed on your box, you won't need apache nor
have to install it. Can you confirm?

-- 
Mohammed Adnène Trojette



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



Bug#507907: ITP: telepathy-farsight -- Glue library between telepathy and farsight2

2008-12-05 Thread Sjoerd Simons
Package: wnpp
Severity: wishlist
Owner: Sjoerd Simons <[EMAIL PROTECTED]>

* Package name: telepathy-farsight
  Version : 0.0.3
  Upstream Author : Olivier Crete <[EMAIL PROTECTED]>
* URL : http://telepathy.freedesktop.org
* License : LGPL
  Programming Lang: C
  Description : Glue library between telepathy and farsight2

A helper library to glue together Telepathy's media signalling and the media
streaming capabilities of Farsight2
.
Telepathy is a D-Bus framework for unifying real time communication,
including instant messaging, voice calls and video calls. It abstracts
differences between protocols to provide a unified interface for applications.
.
Farsight2 is a framework for media streaming in audio/video conferences.

This package will be maintained by the pkg-telepathy alioth group

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (101, 'experimental')
Architecture: amd64 (x86_64)



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



Bug#507906: Please remove optional depends on pypanel

2008-12-05 Thread Barry deFreese

Package: istanbul
Version: 0.2.2-4.1
Severity: normal

Hi,

I have recently requested the removal of pypanel from the archive.  
Please remove the optional depends for pypanel from istanbul on your 
next upload if possible.


Thank you,

Barry deFreese
Debian QA



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



Bug#507905: RM: pypanel -- RoQA; orphaned, dead upstream, buggy

2008-12-05 Thread Barry deFreese

Package: ftp.debian.org
Severity: normal


Hello,

Please see the following reasons for the removal request:

* Package is orphaned.
* Upstream is dead.
* Package is buggy.

Thank you,

Barry deFreese
Debian QA





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



Bug#507884: camlp5: New upstream version supporting ocaml 3.11

2008-12-05 Thread Romain Beauxis
Le Friday 05 December 2008 19:32:25 Stéphane Glondu, vous avez écrit :
> Romain Beauxis a écrit :
> > A new upstream version (5.10) of camlp5 is available.
>
> ...and has been packaged for a while in our git repos...

Which probably lies into a local branch or anywhere else:
http://git.debian.org/?p=pkg-ocaml-maint/packages/camlp5.git;a=blob;f=debian/changelog

> > This release adds support for ocaml 3.11, which will be
> > the default in sid, and is already available in experimental.
> >
> > It would be nice to prepare a package for this version.
>
> I am preparing a bunch of packages for an upload to experimental (with
> the last release of OCaml)... very soon, I will request for a massive
> sponsorship :-)

I'm here.

Romain





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



Bug#507904: dokuwiki dependencies

2008-12-05 Thread Vladimir Stupin
Package: dokuwiki
Severity: normal

I installed on my system lighttpd and php5-cgi.

The i wish install dokuwiki package. Dokuwiki requires php4 or php5.

I think dokuwiki may work without whole php5 package, but aptitude seggest me 
install too many packages, including apache!

mirror:/# aptitude install dokuwiki
Reading package lists... Done
Building dependency tree... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done
Building tag database... Done
The following NEW packages will be automatically installed:
  apache2-mpm-prefork apache2-utils apache2.2-common imagemagick 
libapache2-mod-php4 libapr1 libaprutil1 libfreetype6 libice6 libjasper-1.701-1
  libjpeg62 liblcms1 libmagick9 libpng12-0 libpq4 libsm6 libsqlite3-0 libtiff4 
libx11-6 libx11-data libxau6 libxdmcp6 libxext6 libxt6 libzzip-0-12
  php4 php4-cli php4-common x11-common
The following NEW packages will be installed:
  apache2-mpm-prefork apache2-utils apache2.2-common dokuwiki imagemagick 
libapache2-mod-php4 libapr1 libaprutil1 libfreetype6 libice6
  libjasper-1.701-1 libjpeg62 liblcms1 libmagick9 libpng12-0 libpq4 libsm6 
libsqlite3-0 libtiff4 libx11-6 libx11-data libxau6 libxdmcp6 libxext6
  libxt6 libzzip-0-12 php4 php4-cli php4-common x11-common
0 packages upgraded, 30 newly installed, 0 to remove and 0 not upgraded.
Need to get 11.7MB of archives. After unpacking 38.2MB will be used.
Do you want to continue? [Y/n/?]

But when i install whole php5 before dokuwiki, then dokuwiki does not requires 
install apache:

mirror:/# aptitude install php5
Reading package lists... Done
Building dependency tree... Done
Reading extended state information
Initializing package states... Done
Writing extended state information... Done
Reading task descriptions... Done
Building tag database... Done
The following NEW packages will be installed:
  php5
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/1048B of archives. After unpacking 20.5kB will be used.
Writing extended state information... Done
Selecting previously deselected package php5.
(Reading database ... 11672 files and directories currently installed.)
Unpacking php5 (from .../php5_5.2.0-8+etch13_all.deb) ...
Setting up php5 (5.2.0-8+etch13) ...

mirror:/# aptitude install --simulate dokuwiki
Reading package lists... Done
Building dependency tree... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done
Building tag database... Done
The following NEW packages will be installed:
  dokuwiki
The following packages are RECOMMENDED but will NOT be installed:
  graphicsmagick-imagemagick-compat imagemagick php4-cli php4-gd php5-cli 
php5-gd
0 packages upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/1110kB of archives. After unpacking 9462kB will be used.
Would download/install/remove packages.

I think, may be dependencies of dokuwiki from php5 and php4 must be replaced to 
php4-cgi and php5-cgi? Or i mistaken?

At all events, i don't need apache, i use lighttpd!

-- 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.26-bpo.1-openvz-686
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)



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



Bug#507884: camlp5: New upstream version supporting ocaml 3.11

2008-12-05 Thread Stéphane Glondu
Romain Beauxis a écrit :
> A new upstream version (5.10) of camlp5 is available.

...and has been packaged for a while in our git repos...

> This release adds support for ocaml 3.11, which will be 
> the default in sid, and is already available in experimental.
> 
> It would be nice to prepare a package for this version.

I am preparing a bunch of packages for an upload to experimental (with
the last release of OCaml)... very soon, I will request for a massive
sponsorship :-)

For now, I have in mind ocsigen and all its dependencies to have a
native ocsigen (this implies updates in many libraries).

-- 
Stéphane



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



Bug#507716: [Pkg-xfce-devel] Bug#507716: Bug#507716: xfwm4: broken "focus follows mouse" behavior on raise

2008-12-05 Thread Jason Kraftcheck
Yves-Alexis Perez wrote:
> On jeu, 2008-12-04 at 14:32 -0600, Jason Kraftcheck wrote:
>> Yves-Alexis Perez wrote:
>>> On jeu, 2008-12-04 at 11:07 -0600, Jason Kraftcheck wrote:
 I tried enabling "Active focus stealing prevention".
>>> Please give the complete settings. How do you want us to help you
>>> debugging an issue if you give one information by mail?
>>>
>> There are only two check boxes on that tab you mentioned.  You didn't ask
>> what any settings were, only whether or not I had tried any settings on that
>> tab to address the problem, and later by "how?" I assumed you were inquiring
>> as to which settings I tried changing.  I tried changing precisely one
>> setting, "Active focus stealing prevention".  The problem was not resolved,
>> regardless of that setting.
>>
>> If you had wanted to know the what the settings were for other options on
>> that tab or elsewhere, you should have asked in the first place.
> 
> Ow, please, don't be like that. *You* have a problem, so *you* should
> provide all informations about your problem so we can do something about
> that.

The patch I sent with my original PR fixes the problem.

> And, basically, giving one single piece of information won't help
> anybody. And I asked about “focus” stuff (tada, that's because you have
> a _focus_ problem) so you could have guessed in the first place.
> 

Perhaps I could have guessed.  But if you wanted to know focus-related
settings, you could have just asked for that rather than asking which
settings I tried changing and then complaining that I didn't guess what you
intended to ask.


> 
> In your case, you would like something a bit that “Don't automatically
> focus windows when they are raised”, I think.
> 

Such an option shouldn't be necessary.  "focus-follows-pointer" means that
whatever window contains the mouse pointer has focus.  Moving the focus to
some other window because of an CWStackMode event is wrong.

> I'm not a wm expert, but I don't think there is such a thing as “raised
> on top” event for a window. I assume that what you send (with
> emacsclient or nedit-nc) is a “focus” event, so in this case it would be
> ok to focus it.
> 

A CWStackMode configureWindow request asks the WM to change the position of
the client window in the stacking order (ordered list of which window is in
front of which if they should overlap).  It is conceptually distinct from,
for example, a call to XSetInputFocus.  There often is no distinction
between the two when a Window manager is operating in "click-to-focus" mode,
as clicking on a window both raises it above all others and gives it the
keyboard focus.

Other window managers that I've used behave the way I am saying that xfwm4
should, including: blackbox and derivatives, the WM was under CDE on
Solaris, and x.org with no window manager running.

> Please open a bug on Xfce bugzilla (http://bugs.xfce.org) on xfwm4
> component (4.4.2 version) asking about that and providing all
> informations necessary. (and forward the bug number to this bug report)
> 

http://bugzilla.xfce.org/show_bug.cgi?id=4679





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



  1   2   3   >