Bug#385147: When php4-mysql is enabled, php prints Illegal Instruction and terminates

2006-08-30 Thread Steve Langasek
tags 385147 moreinfo unreproducible
thanks

On Tue, Aug 29, 2006 at 01:53:26PM +0100, Jamie Thompson wrote:

 When php4-mysql is enabled, php ceases to work and instead prints
 Illegal Instruction and terminates. If I disable the extension in
 php.ini, php works fine, abet without mysql functionality.

 I've tried reinstalling, to no avail. Mysql seems to be running fine
 going from it's cli client.

That doesn't give me enough information to reproduce the problem.  I've
tried installing the broken version of libmysqlclient15off as suggested by
Sean's comments, but running php4 doesn't give me any such errors.

Anyway, I suspect the problem is actually bug #383759, which has for some
reason been downgraded and tagged as 'wontfix'.  Can you tell me what
processor you have in the system you're running this on?

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


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



Bug#384882: apache 2.2 does not work with current php4/php5 modules

2006-08-30 Thread Tollef Fog Heen
* Laurent Bonnaud 

| I'm going to raise the severity of this bug because breaking another
| package deserves a grave severity.

I'd rather argue it's a wishlist priority and again PHP for that.
They should build packages for experimental.

| To solve this problem, why not rename the experimental apache packages
| to apache2.2-* ?  New and updated PHP packages could then be produced
| and depend on apache2.2.  It would also allow to have both apache 2.0
| and 2.2 in the archive for a smooth transition and the admin could
| choose which version(s) to install (as can be currently done with apache
| 1.3 and 2.0).

Because there's no need to coinstall apache 2.0 and 2.2, we're not
going to take on the extra maintenance burden of maintaining three
different versions of apache.  Two is quite enough.

-- 
Tollef Fog Heen,''`.
UNIX is user friendly, it's just picky about who its friends are  : :' :
  `. `' 
`-  


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



Bug#385260: SIGSEGV right after starting yacpi

2006-08-30 Thread Németh Márton

Package: yacpi
Version: 2.0.1-1
Severity: normal
Tags: patch


If there is no battery info, yacpi crashes right after startup with NULL
pointer reference. See the attached patch


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.17.11
Locale: LANG=hu_HU, LC_CTYPE=hu_HU (charmap=ISO-8859-2)

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


-- no debconf information
--- yacpi-1.2.1/yacpi.c.orig2005-03-30 21:35:39.0 +0200
+++ yacpi-1.2.1/yacpi.c 2006-08-30 08:03:29.0 +0200
@@ -227,7 +227,7 @@
 if (COLS = 87) {
 for (i = 0; i  globals-battery_count; i++) {
 binfo = batteries[i];
-if (binfo-present) {
+if (binfo  binfo-present) {
 mvprintw (line, 0, Battery %s on %2d%%, binfo-name,
   binfo-percentage);
 line = line + 2;
@@ -247,14 +247,16 @@
 attroff(COLOR_PAIR(3));
 }
 line=line+2;
-if (binfo-charge_state == CHARGE)
-mvprintw (line, 0, Battery Status: charging   );
-else if (binfo-charge_state == DISCHARGE)
-mvprintw (line, 0, Battery Status: discharging);
-else if (binfo-charge_state == CHARGED)
-mvprintw (line, 0, Battery Status: charged);
-else if (binfo-charge_state == NOINFO)
-mvprintw (line, 0, Battery Status: not supported);
+   if (binfo) {
+if (binfo-charge_state == CHARGE)
+mvprintw (line, 0, Battery Status: charging   );
+else if (binfo-charge_state == DISCHARGE)
+mvprintw (line, 0, Battery Status: discharging);
+else if (binfo-charge_state == CHARGED)
+mvprintw (line, 0, Battery Status: charged);
+else if (binfo-charge_state == NOINFO)
+mvprintw (line, 0, Battery Status: not supported);
+   }
 line = line + 2;
 if (globals-rtime = 0  ap-power != AC) {
 mvprintw (line, 0, Remaining time: %02d:%02d h,
@@ -262,7 +264,7 @@
 line = line + 2;
 }
 
-if (ap-power == AC  binfo-charge_time = 0) {
+if (ap-power == AC  binfo  binfo-charge_time = 0) {
 mvprintw (line, 0, Remaining charge time: %02d:%02d h,
   binfo-charge_time / 60, binfo-charge_time % 60);
 line = line + 2;
@@ -280,7 +282,7 @@
 else {
 for (i = 0; i  globals-battery_count; i++) {
 binfo = batteries[i];
-if (binfo-present) {
+if (binfo  binfo-present) {
 mvprintw (line, 0, %s Capacity [, binfo-name);
 color_change (binfo-percentage, 0);
 for (i = 0; i = (binfo-percentage / 2); i++)
@@ -306,14 +308,16 @@
 attroff(COLOR_PAIR(3));
 }
 line = line + 2;
-if (binfo-charge_state == CHARGE)
-mvprintw (line, 0, Battery Status: charging   );
-else if (binfo-charge_state == DISCHARGE)
-mvprintw (line, 0, Battery Status: discharging);
-else if (binfo-charge_state == CHARGED)
-mvprintw (line, 0, Battery Status: charged);
-else if (binfo-charge_state == NOINFO)
-mvprintw (line, 0, Battery Status: not supported);
+   if (binfo) {
+if (binfo-charge_state == CHARGE)
+mvprintw (line, 0, Battery Status: charging   );
+else if (binfo-charge_state == DISCHARGE)
+mvprintw (line, 0, Battery Status: discharging);
+else if (binfo-charge_state == CHARGED)
+mvprintw (line, 0, Battery Status: charged);
+else if (binfo-charge_state == NOINFO)
+mvprintw (line, 0, Battery Status: not supported);
+   }
 
 line = line + 2;
 if (globals-rtime = 0  ap-power != AC) {
@@ -321,7 +325,7 @@
   globals-rtime / 60, globals-rtime % 60);
 line = line + 2;
 }
-if (ap-power == AC  binfo-charge_time = 0) {
+if (ap-power == AC  binfo  binfo-charge_time = 0) {
 mvprintw (line, 0, Remaining charge time: %02d:%02d h,
   binfo-charge_time / 60, binfo-charge_time % 60);
 line = line + 2;


Bug#385144: [Pkg-zope-developers] Bug#385144: zope-zms: New upstream version available for some time

2006-08-30 Thread Andreas Tille

On Tue, 29 Aug 2006, Uwe Steinmann wrote:


I built a new debian package from zms 2.9.2, which was quite simple,


This sounds like a reasonable contribution.  Any URL?  Did you
make use of zope-debhelper or just recompiling the new tarball
with the stuff inside the debian directory?
BTW, I would be more than happy if somebody would take over zope-zms
because I do not use it any more.


but I'm simply too unfamiliar with zope and its intances to make it
work on zope3.
Would be great if you could create a new package for zope3.


I think this question was just answered.  The first step would be to
ask upstream to port ZMS to Zope 3.  BTW, what new features do you expect
from ZMS if you install it into Zope 3?


I wouldn't mind to help where I can.


Great and thanks

  Andreas.

--
http://fam-tille.de


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



Bug#385261: Samba does _not_ accept all samba variables for log file

2006-08-30 Thread N VZ
Package: samba-doc
Version: 3.0.22-1
Severity: important

The html document Using Samba contains false information indicating
in chapter 6, table 6-8 that log file accepts all samba variables and
it certainly does not. Also in chapter 12, it mentions logging for each
service using log file = /var/log/samba/%S.log which doesn't do
anything but create that file literally an log to it. The documentation
describes false logging features and makes it misleading and effects
its usability for users seeking such logging methods. I will look into
working on a correction and supplying a patch to remove this false
information and request that it be updated.



Bug#385144: [Pkg-zope-developers] Bug#385144: zope-zms: New upstream version available for some time

2006-08-30 Thread Fabio Tranchitella
Il giorno mer, 30/08/2006 alle 08.51 +0200, Uwe Steinmann ha scritto:
  BTW, I would be more than happy if somebody would take over zope-zms
  because I do not use it any more.
 I thought so, but I cannot honestly offer to take it over, because
 my knowledge of zope is rather weak. Let me try to get a recent
 version of zms packaged. If I do not run into major problems I'll
 rethink it.

Hi Uwe,

  I can offer all the help you need with zope packaging both via email
and via IRC. I really care about zope packages in Debian, but I do not
use zms so I can't adopt it. If you use it and you have enough time to
package new upstream releases and to care of bug reports, I would be
glad if you could help us to improve the packaging.

Thanks,

-- 
Fabio Tranchitella http://www.kobold.it
Free Software Developer and Consultant http://www.tranchitella.it
_
1024D/7F961564, fpr 5465 6E69 E559 6466 BF3D 9F01 2BF8 EE2B 7F96 1564


signature.asc
Description: Questa è una parte del messaggio	firmata digitalmente


Bug#385252: initramfs-tools: support etherboot passing short ip= string

2006-08-30 Thread maximilian attems
On Tue, Aug 29, 2006 at 08:58:56PM -0700, Vagrant Cascadian wrote:
 Package: initramfs-tools
 Version: 0.77
 Severity: wishlist
 Tags: patch
 
 when etherboot is configured to pass the ip= option(so you only get one
 call to dhcp), it unfortunately doesn't pass the whole string, but only
 the first 4 or 5 segments.  this causes the DEVICE value to get set to
 the whole ip= string.
 
 attached is a patch that should detect this case and fallback to the
 default DEVICE (usually eth0).
 
 sure is hard to implement this stuff without cut or awk :)
 
 live well,
   vagrant
 
 p.s. also available in bzr (revno 210):
 http://llama.freegeek.org/~vagrant/bzr-archives/initramfs-tools/vagrant-initramfs-tools

ack will merge for next revision, waiting for latest to get to testing
unless a show-stopper turns up.

-- 
maks


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



Bug#385262: %S doesnt parse to share name in log file

2006-08-30 Thread N VZ
Package: samba
Version: 3.0.22-1
Severity: wishlist

I am requesting attention to the logging features described by
Oreilly's Using Samba. Seperate log files for each service has become
something of a desirable function in samba by many users. It would be a
useful method of logging samba. Desired behavior would be parsing of
more (all?) samba variables in the log file string in the samba config.
I've filed a bug against samba-doc for including Using Samba with
false descriptions of such features in the mean time.


Bug#375491: yet another lvm_removal_on_demand patch suggestion

2006-08-30 Thread David Härdeman

David Härdeman wrote:

I've attached a patch which details what this could look like...


And here's an updated patch. This one is tested and works with one 
exception: if you do an automated partman-auto-lvm install two times in 
a row, the parted server seems to become confused and the manual 
partitioning screen is messed up thereafter.


This still needs fixing but I'm unsure of what goes wrong and why (note 
that the idea of a disappearing disk, which is what a VG/LV removal 
looks like to parted, has not been tried yet in partman-* as far as I 
know).


I've CC:ed Colin Watson who perhaps knows a bit more than me about 
parted_server?


Latest patch attached...(the section under the Make sure that parted 
has no stale LVM info is what needs to be checked)...


Regards,
David
Index: partman-auto/debian/partman-auto.templates
===
--- partman-auto/debian/partman-auto.templates  (revision 40312)
+++ partman-auto/debian/partman-auto.templates  (working copy)
@@ -27,6 +27,21 @@
  use the guided partitioning tool, you will still have a chance later to
  review and customise the results.
 
+Template: partman-auto/purge_lvm_from_device
+Type: boolean
+Default: false
+_Description: Remove all Logical Volume Configuration?
+ Before creating any partitions, we need to remove all existing
+ Logical Volumes and Volume Groups from the disk.
+ .
+ WARNING This will erase all data on LVM Partitions
+
+Template: partman-auto/pv_on_device
+Type: error
+_Description: Existing physical volume on the selected device
+ The device you selected already contains one or more physical volumes. It
+ is not possible to automatically partition this device using LVM.
+
 Template: partman-auto/disk
 Type: string
 # Only used for preseeding.
Index: partman-auto/auto-shared.sh
===
--- partman-auto/auto-shared.sh (revision 40234)
+++ partman-auto/auto-shared.sh (working copy)
@@ -1,9 +1,92 @@
 ## this file contains a bunch of shared code between partman-auto
 ## and partman-auto-lvm.
 
+# Wipes any traces of LVM from a disk
+# Normally you wouldn't want to use this function, 
+# but wipe_disk() which will also call this function.
+lvm_wipe_disk() {
+   local dev realdev vg pvs pv lv tmpdev
+   dev=$1
+
+   if [ ! -e /lib/partman/lvm_tools.sh ]; then
+   return 0
+   fi
+
+   . /lib/partman/lvm_tools.sh
+
+   # Check if the device already contains any physical volumes
+   realdev=$(mapdevfs $(cat $dev/device))
+   if ! pv_on_device $realdev; then
+   return 0
+   fi
+
+   # Ask for permission to erase LVM volumes 
+   db_input critical partman-auto/purge_lvm_from_device
+   db_go || return 1
+   db_get partman-auto/purge_lvm_from_device
+   if [ $RET != true ]; then
+   db_input critical partman-auto/pv_on_device || true
+   db_go || true
+   return 1
+   fi
+
+   # Check all VG's
+   for vg in $(vg_list); do
+   pvs=$(vg_list_pvs $vg)
+   
+   # Only deal with VG's on the selected disk
+   if ! $(echo $pvs | grep -q $realdev); then
+   continue
+   fi
+
+   # Make sure the VG don't span any other disks
+   if $(echo -n $pvs | grep -q -v $realdev); then
+   log-output -t partman-auto-lvs vgs
+   db_input critical partman-auto/pv_on_device || true
+   db_go || true
+   return 1
+   fi
+
+   # Remove LV's from the VG
+   for lv in $(vg_list_lvs $vg); do
+   lv_delete $vg $lv
+   done
+
+   # Remove the VG and its PV's 
+   vg_delete $vg
+   for pv in $pvs; do
+   pv_delete $pv
+   done
+   done
+
+   # Make sure that parted has no stale LVM info
+   for tmpdev in $DEVICES/*; do
+   realdev=$(cat $tmpdev/device)
+
+   if ! $(echo $realdev | grep -q /dev/mapper/); then
+   continue
+   fi
+
+   if [ -b $realdev ]; then
+   continue
+   fi
+
+   cd $tmpdev
+   open_dialog CLOSE $realdev
+   read_line response
+   close_dialog
+
+   rm -rf $tmpdev
+   done
+
+   return 0
+}
+
 wipe_disk() {
cd $dev
 
+   lvm_wipe_disk $dev || return 1
+
open_dialog LABEL_TYPES
types=$(read_list)
close_dialog
Index: partman-auto-lvm/debian/partman-auto-lvm.templates
===
--- partman-auto-lvm/debian/partman-auto-lvm.templates  (revision 40234)
+++ partman-auto-lvm/debian/partman-auto-lvm.templates  (working copy)
@@ 

Bug#385144: [Pkg-zope-developers] Bug#385144: zope-zms: New upstream version available for some time

2006-08-30 Thread Uwe Steinmann
On Wed, Aug 30, 2006 at 08:30:12AM +0200, Andreas Tille wrote:
 On Tue, 29 Aug 2006, Uwe Steinmann wrote:
 
 I built a new debian package from zms 2.9.2, which was quite simple,
 
 This sounds like a reasonable contribution.  Any URL?  Did you
 make use of zope-debhelper or just recompiling the new tarball
 with the stuff inside the debian directory?
I just used the existing debian directory. zope-debhelper maybe
the next step.

 BTW, I would be more than happy if somebody would take over zope-zms
 because I do not use it any more.
I thought so, but I cannot honestly offer to take it over, because
my knowledge of zope is rather weak. Let me try to get a recent
version of zms packaged. If I do not run into major problems I'll
rethink it.

 but I'm simply too unfamiliar with zope and its intances to make it
 work on zope3.
 Would be great if you could create a new package for zope3.
 
 I think this question was just answered.  The first step would be to
 ask upstream to port ZMS to Zope 3.  BTW, what new features do you expect
 from ZMS if you install it into Zope 3?
Nothing particular. I just thought that doing it for zope3 in the first
place may be better than creating packages for *old* zope2. I wasn't
aware of how different zope2 and zope3 are. I'll stick with zope2
since its far from being abandoned.
I'll try to create a package for zope2, if you don't mind.

  Uwe

-- 
  MMK GmbH, Fleyer Str. 196, 58097 Hagen
  [EMAIL PROTECTED]
  Tel: +2331 840446Fax: +2331 843920


signature.asc
Description: Digital signature


Bug#385263: kpilot: kpilot doesn't handle [ in pdb-doc names

2006-08-30 Thread Mark Eichin
Package: kpilot
Version: 4:3.5.2-0ubuntu6
Severity: normal

(apologies if this should go somewhere ubuntu-specific, but m-x
 debian-bug sends it here... the version in unstable is only a little
 bit ahead of this one, though, but I haven't tested for the bug there.)

Invalid entry (missing ']') at 
/home/eichin/.kde/share/config/kpilot_docconduitrc:14
Invalid entry (missing ']') at 
/home/eichin/.kde/share/config/kpilot_docconduitrc:15

those lines are:

/home/eichin/Edge/docs/Swords Against Death [Book 2 
of.txt=25fa6427e2feac62956ae9c0c3eeb80c
/home/eichin/Edge/docs/Swords and Deviltry [Book 1 of 
.txt=4f872c06a3ab766656b04586c105c96c

The bug seems to be that kpilot_docconduitrc is a .ini-style file,
with everything in a [General] stanza -- and a parser that doesn't use
enough context to tell the difference; a workaround would be to
somehow quote (maybe urlencode?) the pathnames to the left of the = above.

(The docfiles are conventional downloads from fictionwise.com, from at
least 5 years back - and raw pilot-xfer doesn't have any trouble with
them, of course.)

(Aside from the warning, I think this is interfering with syncing, I
always get the dialog about duplicate files now...)


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

Versions of packages kpilot depends on:
ii  debconf [debconf-2.0 1.4.72ubuntu9   Debian configuration management sy
ii  kdelibs4c2a  4:3.5.2-0ubuntu18.1 core libraries for all KDE applica
ii  libc62.3.6-0ubuntu20 GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.3-1ubuntu5GCC support library
ii  libkcal2b4:3.5.2-0ubuntu6KDE calendaring library
ii  libmal1  0.40-3  A library of the functions in mals
ii  libpisock8   0.11.8-17   Library for communicating with a P
ii  libqt3-mt3:3.3.6-1ubuntu6Qt GUI Library (Threaded runtime v
ii  libstdc++6   4.0.3-1ubuntu5  The GNU Standard C++ Library v3

kpilot recommends no packages.

-- debconf information:
  shared/pilot/port: None


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



Bug#370186: hal: CDROM light stays blinking, can't mount cd-rom

2006-08-30 Thread Jim Richards
Package: hal
Version: 0.5.7.1-1
Followup-For: Bug #370186


I can no longer automount cd-roms. I'm getting constant errors such as 

Aug 30 16:00:57 localhost kernel: hdc: packet command error: 
status=0x51 { DriveReady SeekComplete Error }
Aug 30 16:00:57 localhost kernel: hdc: packet command error: error=0x34 
{ AbortedCommand LastFailedSense=0x03 }
Aug 30 16:00:57 localhost kernel: ide: failed opcode was: unknown
Aug 30 16:00:57 localhost kernel: ATAPI device hdc:
Aug 30 16:00:57 localhost kernel:   Error: Medium error -- (Sense 
key=0x03)
Aug 30 16:00:57 localhost kernel:   (reserved error code) -- (asc=0x57, 
ascq=0x00)
Aug 30 16:00:57 localhost kernel:   The failed Read Subchannel packet 
command was:
Aug 30 16:00:57 localhost kernel:   42 02 40 01 00 00 00 00 10 00 00 
00 00 00 00 00 

in /var/log/kern.log file. I get three similar messages like this upon booting

Aug 30 16:00:42 localhost kernel: hdc: packet command error: 
status=0x51 { DriveReady SeekComplete Error }
Aug 30 16:00:42 localhost kernel: hdc: packet command error: error=0x34 
{ AbortedCommand LastFailedSense=0x03 }
Aug 30 16:00:42 localhost kernel: ide: failed opcode was: unknown
Aug 30 16:00:42 localhost kernel: ATAPI device hdc:
Aug 30 16:00:42 localhost kernel:   Error: Medium error -- (Sense 
key=0x03)
Aug 30 16:00:42 localhost kernel:   (reserved error code) -- (asc=0x57, 
ascq=0x00)
Aug 30 16:00:42 localhost kernel:   The failed Read Cd/Dvd Capacity 
packet command was:
Aug 30 16:00:42 localhost kernel:   25 00 00 00 00 00 00 00 00 00 00 
00 00 00 00 00 

and also in /var/log/messages

I'm at a loss about what to do. I tried editing 20-storage-methods.fdi
to include a clause that stoped the drive being check, but to no avail.

I've tried killing hald-addon-storage, and the problem still occurs.

When I stop/start /etc/init.d/dbus from the console I get three
similar messages the above (with the 25 00 00 ... line.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (700, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-686
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)

Versions of packages hal depends on:
ii  adduser   3.97   Add and remove users and groups
ii  dbus  0.62-4 simple interprocess messaging syst
di  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdbus-1-2   0.62-4 simple interprocess messaging syst
ii  libdbus-glib-1-2  0.62-4 simple interprocess messaging syst
ii  libexpat1 1.95.8-3.2 XML parsing C library - runtime li
ii  libglib2.0-0  2.10.3-3   The GLib library of C routines
ii  libhal1   0.5.7.1-1  Hardware Abstraction Layer - share
di  libusb-0.1-4  2:0.1.12-2 userspace USB programming library
ii  lsb-base  3.1-14 Linux Standard Base 3.1 init scrip
ii  pciutils  1:2.2.4~pre4-1 Linux PCI Utilities
ii  udev  0.093-1/dev/ and hotplug management daemo
ii  usbutils  0.72-5 USB console utilities

hal recommends no packages.

-- no debconf information


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



Bug#385144: [Pkg-zope-developers] Bug#385144: zope-zms: New upstream version available for some time

2006-08-30 Thread Andreas Tille

On Wed, 30 Aug 2006, Uwe Steinmann wrote:


This sounds like a reasonable contribution.  Any URL?  Did you
make use of zope-debhelper or just recompiling the new tarball
with the stuff inside the debian directory?

I just used the existing debian directory. zope-debhelper maybe
the next step.


I would not really upload a zope-zms package without switching to
zope-debhelper.  The old packaging method will lead into trouble
with different Zope 2.x versions and should definitely be avoided.


I thought so, but I cannot honestly offer to take it over, because
my knowledge of zope is rather weak. Let me try to get a recent
version of zms packaged. If I do not run into major problems I'll
rethink it.


OK.  Just tell me if there is something to look at or in case of
trouble.  You should probably send your information to
Debian Zope team [EMAIL PROTECTED]
where I subscribed and also people with much more Zope experience
lurking around.


I'll try to create a package for zope2, if you don't mind.


I would be more than happy if you would proceed.

Kind regards

 Andreas.

--
http://fam-tille.de


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



Bug#385226: initramfs-tools: no need to set SERVER_IP in scripts/nfs

2006-08-30 Thread maximilian attems
hello vagrant,

On Tue, Aug 29, 2006 at 03:32:50PM -0700, Vagrant Cascadian wrote:
 Package: initramfs-tools
 Version: 0.77
 Severity: minor
 
 i believe ipconfig defines ROOTSERVER when it is passed via the ip=
 parameter, and thus it's not necessary to re-implement this code with
 SERVER_IP in initramfs-tools/scripts/nfs

thanks for your check!
need to see why it doesn't do it for NEW_DEVICE?
 
 attached is a patch which removes this extra code.

i'll double check and will merge - reduces complexity.
 
 also available from:
 
 http://llama.freegeek.org/~vagrant/bzr-archives/initramfs-tools/vagrant-initramfs-tools
 
 live well,
   vagrant

very appreciated.
i assume that the current retry thing is working for you?

regards

-- 
maks


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



Bug#367778: NMU proposed

2006-08-30 Thread Dominic Hargreaves
Hi Sam,

Are you able to upload this new version?

If not I propose to upload 0.78 as a NMU to fix this bug. If you would
like to upload the new upstream (which contains no material changes
other than this bug fix) I will of course respect that but I believe
that this is sufficiently useful, and safe, to warrant the NMU
otherwise.

Let me know.

Cheers,

Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)


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



Bug#385264: upgrade-reports: keybord broken after installing some packages

2006-08-30 Thread Jean-Michel
Package: upgrade-reports
Severity: normal


after installing some packages, keyboard does not works well;
this is grave; first because it is not first time this occurs on my
systems; and secondly; because this makes the whole system unusable;

might be related to gnome;

yesterday my keyboard was working fine with a french standard keymap;
this mean that shift:maj (both left and right) and caps-lock:verr-maj
was giving access to capital letters digits and symbols such as
for instance; interrogation mark; dot; slash

might be due some packages installed:

today; neither caps-lock nor shift works; but alt gr does!
moreover ctrl key does not work (and makes i have deleted some lines
using ctrld within vim)

moreover keyboard configuration is relatively complex, due to the so
many keyboards mappings and number key; and linux keyboard configuration
features (x, gnome, etc, etc ;;;);
i do not know how to reconfigure my keyboard!

:-(


  512  sudo apt-get -s install ssh usbutils umbrello redet lshw  gpdf
ggov
  513  sudo apt-get -s install ssh usbutils umbrello redet lshw  gpdf
  514  sudo apt-get  install ssh usbutils umbrello redet lshw  gpdf
  530  sudo apt-get -s install .*firefox.*
  531  sudo apt-get -s install firefox
  532  sudo apt-get -s install mozilla-firefox
  533  sudo apt-get -s update
  534  sudo apt-get -s upgrade
  535  sudo apt-get -s install gcc-2.95   g++-2.95 expect file-roller
  536  sudo apt-get  install gcc-2.95   g++-2.95 expect file-roller
  537  sudo apt-get -s upgrade
  538  sudo apt-get -s install psmisc defoma aptitude cron
  539  sudo apt-get  install psmisc defoma aptitude cron
  540  sudo apt-get -s upgrade
  541  sudo apt-get -s install ttf-alee ttf-arphic-bsmi00lp
ttf-arphic-gbsn00lp ttf-arphic-gkai00mp ttf-bitstream-vera ttf-farsiweb
perl-doc perl-tk lsb-core lsb-release xsltproc
  542  sudo apt-get  install ttf-alee ttf-arphic-bsmi00lp
ttf-arphic-gbsn00lp ttf-arphic-gkai00mp ttf-bitstream-vera ttf-farsiweb
perl-doc perl-tk lsb-core lsb-release xsltproc
  543  sudo apt-get -s upgrade
  544  sudo apt-get -s install nhfsstone lsb-desktop lsb-graphics
lsb-cxx xfig kdewallpapers icewm
  545  sudo apt-get  install nhfsstone lsb-desktop lsb-graphics lsb-cxx
xfig kdewallpapers icewm
  546  sudo apt-get -s upgrade
  547  sudo apt-get -s install pugs.*
  548  sudo apt-get -s install pugs-modules pugs-doc
  549  sudo apt-get -s install python2.5.*
  550  sudo apt-get -s install python2.5-examples  idle-python2.5
  551  sudo apt-get -s upgrade
  552  dpkg -l bake arts bicyclerepair busybox cdparanoia
  553  sudo apt-get -s install  bake arts bicyclerepair busybox
cdparanoia
  554  sudo apt-get  install  bake arts bicyclerepair busybox cdparanoia
  555  sudo apt-get -s upgrade
  556  sudo apt-get -s install python-central binutils
dictionaries-common file python-central gconf2
  557  sudo apt-get  install python-central binutils dictionaries-common
file python-central gconf2
  558  sudo apt-get -s install update-notifier
  559  sudo apt-get -s install clamav
  560  sudo apt-get -s upgrade
smarteiffel graphviz
  563  sudo apt-get  install gaim gcalctool gimp-python gnome-about
smarteiffel graphviz
  564  sudo apt-get -s upgrade
  565  sudo apt-get -s install .*fr.*
  566  sudo apt-get -s install .*thund.*fr.*
  567  sudo apt-get -s install .*fire.*fr.*
  568  sudo apt-get -s install mozilla-firefox-locale-fr
  569  sudo apt-get -s install mozilla-firefox-locale-fr-fr
  570  sudo apt-get -s upgrade
  572  sudo apt-get -s install  cscope conglomerate anjuta mime-support
flex vncserver
  573  sudo apt-get  install  cscope conglomerate anjuta mime-support
flex vncserver
  574  sudo apt-get -s upgrade
  575  dpkg -l vino wv tcc system-tools-backends spe ragel
python-docutils pmount planner nautilus xemacs21-mulesupport
  576  sudo apt-get -s install  vino wv tcc system-tools-backends spe
ragel python-docutils pmount planner nautilus xemacs21-mulesupport
  577  sudo apt-get  install  vino wv tcc system-tools-backends spe
ragel python-docutils pmount planner nautilus xemacs21-mulesupport
  578  sudo apt-get  update
  579  sudo apt-get -s upgrade
  581  sudo apt-get -s install xemacs21-basesupport
xemacs21-mulesupport-el
  582  sudo apt-get  install xemacs21-basesupport
xemacs21-mulesupport-el
  583  sudo apt-get -s upgrade
  584  dpkg -l nttcp gnupg2 xpp xfishtank synaptic python-uno pmacct
ntpdate mule-ucs lshw-common kompare kiki tcl8.4 eog
  585  sudo apt-get -s install  nttcp gnupg2 xpp xfishtank synaptic
python-uno pmacct ntpdate mule-ucs lshw-common kompare kiki tcl8.4 eog
  586  sudo apt-get -s install cobol
  589  sudo apt-get -s upgrade
  590  sudo apt-get  install  nttcp gnupg2 xpp xfishtank synaptic
python-uno pmacct ntpdate mule-ucs lshw-common kompare kiki tcl8.4 eog
  591  sudo apt-get -s upgrade
  592  dpkg -l ntp-doc mksh mono-jay malaga-bin ocaml-findlib sane-utils
xscreensaver-gl zenity exim libgd-graph-perl libpvm3
  598  sudo apt-get -s install ntp-doc mksh mono-jay 

Bug#385071: mozilla-thunderbird: Tiny attachment panel after last upgrade

2006-08-30 Thread Sylvain Beucler

Geoff Crompton a écrit :

Alexander Sack - Debian Bugmail wrote:


On Tue, Aug 29, 2006 at 08:24:05AM +0200, Sylvain Beucler wrote:



Yes :)

Erreur : [Exception... Component returned failure code: 0x80004005
(NS_ERROR_FAILURE) [nsIDOMXULElement.appendChild]  nsresult:
0x80004005 (NS_ERROR_FAILURE)  location: JS frame ::
chrome://messenger/content/msgHdrViewOverlay.js ::
displayAttachmentsForExpandedView :: line 1161  data: no]
Fichier Source : chrome://messenger/content/msgHdrViewOverlay.js
Ligne : 1161

which apparently concerns
/usr/share/mozilla-thunderbird/chrome/messenger.jar




OK, I have uploaded a proposed fix to my preview security archive (see
http://www.asoftsite.org/apt-archives.html for the apt lines).

The updated version is: 1.0.2-2.sarge1.0.8b.2

... and should be available in an hour from now.

Please verify that this fixes your issues ... and please test it
as extensively as possible ... so another quick-fix won't be needed
for this packages.

- Alexander



I can confirm that 1.0.2-2.sarge1.0.8b.2 fixed the size of the
attachment panel.


Good here as well (tested on my computer and a client's).

What did you change? :)

--
Sylvain



Bug#385182: FTBFS with GCC 4.2: ... cannot appear in a constant-expression

2006-08-30 Thread Mikael Zayenz Lagerkvist

On 8/29/06, Martin Michlmayr [EMAIL PROTECTED] wrote:

...
17:25 WombleToo Oh no, ViewDom has a using statement for n
17:26 WombleToo Ah, and it's an int there
17:27 WombleToo So I think the problem is simply that this relies on
the gcc variable-length array extension, which is no longer supported in
C++


The changes listed for GCC 4.2 does not include removing the support
for variable length arrays (http://gcc.gnu.org/gcc-4.2/changes.html),
nor is it included in the list of deprecated extensions for 4.1
(http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc/Deprecated-Features.html#Deprecated-Features).
Furthermore, the current development docs list it as a supported
feature 
(http://gcc.gnu.org/onlinedocs/gcc/Variable-Length.html#Variable-Length).

If this is truly a removed feature, then a bug-report should be filed
also for the documentation of GCC.

--
Mikael Zayenz Lagerkvist, http://www.ict.kth.se/~zayenz/


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



Bug#385265: wrong homepage in debian/copyright, new version available

2006-08-30 Thread Gürkan Sengün

Package: renattach
Version: 1.2.2-1
Severity: wishlist

Could you please update to version 1.2.3,
and update the copyright file?
See: http://www.pc-tools.net/unix/renattach/

Thanks,
Gürkan



Bug#375477: kdeprint: nameservice problem

2006-08-30 Thread Jan Behrend
Package: kdeprint
Version: 4:3.3.2-1sarge3
Followup-For: Bug #375477

Hi,

this problem is nameservice related, I think.
If I specify the IP of the cups server in the kprinter system settings,
the problem vanishes.

Hope this helps
Cheers

Jan Behrend
Max-Planck-Institut fuer Radioastronomie
Abteilung fuer Infrarot-Interferometrie  Tel:   (+49) 228 525 319
Auf dem Huegel 69Fax:   (+49) 228 525 411
D-53121 Bonn (Germany)  [EMAIL PROTECTED]
http://www.mpifr-bonn.mpg.de

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.12-1-686-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages kdeprint depends on:
ii  enscript   1.6.4-7   Converts ASCII text to Postscript,
ii  kdelibs4   4:3.3.2-6.4   KDE core libraries
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libc6  2.3.2.ds1-22sarge3GNU C Library: Shared libraries an
ii  libfam0c1022.7.0-6sarge1 client library to control the FAM 
ii  libgcc11:3.4.3-13GCC support library
ii  libice64.3.0.dfsg.1-14sarge1 Inter-Client Exchange library
ii  libidn11   0.5.13-1.0GNU libidn library, implementation
ii  libpng12-0 1.2.8rel-1PNG library - runtime
ii  libqt3c102-mt  3:3.3.4-3 Qt GUI Library (Threaded runtime v
ii  libsm6 4.3.0.dfsg.1-14sarge1 X Window System Session Management
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-14sarge1 X Window System protocol client li
ii  libxext6   4.3.0.dfsg.1-14sarge1 X Window System miscellaneous exte
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  poster 20020830-2Create large posters out of PostSc
ii  psutils1.17-17   A collection of PostScript documen
ii  xlibs  4.3.0.dfsg.1-14sarge1 X Keyboard Extension (XKB) configu
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- no debconf information


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



Bug#380921: Python transition (#2): you are building a private python module !

2006-08-30 Thread Pierre HABOUZIT
  okay, he'res the right diff for the NMU to work ...

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org
diff -u pytone-2.3.0/debian/rules pytone-2.3.0/debian/rules
--- pytone-2.3.0/debian/rules
+++ pytone-2.3.0/debian/rules
@@ -28,7 +28,7 @@
dh_testdir

# Compile our pcm module 
-   python2.3 setup.py build_ext -i
+   python setup.py build_ext -i
 
touch build-stamp
 
@@ -39,7 +39,7 @@
rm -f build-stamp 

#clean up everything
-   python2.3 setup.py clean
+   python setup.py clean   
find -name '*.pyc' -exec rm {} \;
dh_clean src/pcm.so src/bufferedao.so
 
@@ -69,7 +69,7 @@
dh_strip
dh_compress
dh_fixperms
-   dh_python
+   dh_pysupport
dh_installdeb
dh_shlibdeps
dh_gencontrol
reverted:
--- pytone-2.3.0/debian/patches/01_pytone_chpath.dpatch
+++ pytone-2.3.0.orig/debian/patches/01_pytone_chpath.dpatch
@@ -1,31 +0,0 @@
-#!/bin/sh -e
-## 01_pytone_chpath.dpatch by Alexander Wirt [EMAIL PROTECTED]
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Changes the patch of the python.py callerscript
-
-if [ $# -ne 1 ]; then
-echo 2 `basename $0`: script expects -patch|-unpatch as argument
-exit 1
-fi
-
-[ -f debian/patches/00patch-opts ]  . debian/patches/00patch-opts
-patch_opts=${patch_opts:--f --no-backup-if-mismatch}
-
-case $1 in
-   -patch) patch $patch_opts -p0  $0;;
-   -unpatch) patch $patch_opts -p0 -R  $0;;
-*)
-echo 2 `basename $0`: script expects -patch|-unpatch as 
argument
-exit 1;;
-esac
-
-exit 0
-
[EMAIL PROTECTED]@
 pytone 2004-01-11 13:24:51.0 +0100
-+++ /tmp/pytone2004-01-11 13:25:51.0 +0100
-@@ -1,2 +1,2 @@
- #!/bin/sh
--python src/pytone.py $@
-+python2.3 /usr/share/pytone/pytone.py $@
reverted:
--- pytone-2.3.0/debian/patches/02_pytone_ctl.chpath.dpatch
+++ pytone-2.3.0.orig/debian/patches/02_pytone_ctl.chpath.dpatch
@@ -1,31 +0,0 @@
-#!/bin/sh -e
-## 02_pytonectl_chpath.dpatch by Alexander Wirt [EMAIL PROTECTED]
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: Changes the patch of the python.py callerscript
-
-if [ $# -ne 1 ]; then
-echo 2 `basename $0`: script expects -patch|-unpatch as argument
-exit 1
-fi
-
-[ -f debian/patches/00patch-opts ]  . debian/patches/00patch-opts
-patch_opts=${patch_opts:--f --no-backup-if-mismatch}
-
-case $1 in
-   -patch) patch $patch_opts -p0  $0;;
-   -unpatch) patch $patch_opts -p0 -R  $0;;
-*)
-echo 2 `basename $0`: script expects -patch|-unpatch as 
argument
-exit 1;;
-esac
-
-exit 0
-
[EMAIL PROTECTED]@
 /tmp/pytonectl 2004-01-11 13:14:24.0 +0100
-+++ pytonectl  2004-01-11 13:15:32.0 +0100
-@@ -1,2 +1,2 @@
- #!/bin/sh
--python src/pytonectl.py $@
-+python2.3 /usr/share/pytone/pytonectl.py $@
reverted:
--- pytone-2.3.0/debian/patches/00list
+++ pytone-2.3.0.orig/debian/patches/00list
@@ -1,2 +0,0 @@
-01_pytone_chpath.dpatch
-02_pytone_ctl.chpath.dpatch
diff -u pytone-2.3.0/debian/control pytone-2.3.0/debian/control
--- pytone-2.3.0/debian/control
+++ pytone-2.3.0/debian/control
@@ -2,8 +2,8 @@
 Section: sound
 Priority: optional
 Maintainer: Alexander Wirt [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), python2.3-dev, dpatch, python2.3, python, 
libao-dev
-Standards-Version: 3.6.2
+Build-Depends: debhelper (= 4.0.0), python-dev, dpatch, libao-dev, 
python-support (= 0.4)
+Standards-Version: 3.7.2
 
 Package: pytone
 Architecture: any
diff -u pytone-2.3.0/debian/dirs pytone-2.3.0/debian/dirs
--- pytone-2.3.0/debian/dirs
+++ pytone-2.3.0/debian/dirs
@@ -2 +2 @@
-usr/share/pytone/plugins
+usr/lib/pytone
diff -u pytone-2.3.0/debian/pytone.install pytone-2.3.0/debian/pytone.install
--- pytone-2.3.0/debian/pytone.install
+++ pytone-2.3.0/debian/pytone.install
@@ -1,14 +1,15 @@
-locale/de/LC_MESSAGES/*.mo usr/share/locale/de/LC_MESSAGES/
-locale/it/LC_MESSAGES/*.mo usr/share/locale/it/LC_MESSAGES/
-locale/pl/LC_MESSAGES/*.mo usr/share/locale/pl/LC_MESSAGES/
-locale/fr/LC_MESSAGES/*.mo usr/share/locale/fr/LC_MESSAGES/
-pytone usr/bin
-pytonectl usr/bin
-src/pcm.so usr/lib/site-python/
-src/bufferedao.so /usr/lib/site-python/
-src/*.py usr/share/pytone/
-src/services/* usr/share/pytone/services
-conf/pytonerc etc/
-conf/* usr/share/doc/pytone/examples
-src/plugins/minimal.py usr/share/doc/pytone/examples/plugins
-src/plugins/* /usr/share/pytone/plugins
+locale/de/LC_MESSAGES/*.mo   usr/share/locale/de/LC_MESSAGES/
+locale/it/LC_MESSAGES/*.mo   usr/share/locale/it/LC_MESSAGES/
+locale/pl/LC_MESSAGES/*.mo   usr/share/locale/pl/LC_MESSAGES/
+locale/fr/LC_MESSAGES/*.mo   usr/share/locale/fr/LC_MESSAGES/
+
+src/pcm.so   

Bug#384461: python-wxglade: a way to specify imports for CustomWidgets

2006-08-30 Thread Georges Khaznadar
Hello Karsten, Alberto,

I forward Karsten's wish to Alberto who is the upstream author of Wxglade.
Karsten, there is a mailing list about the development of wxglade, which
may interest you.

Best regards,   Georges.

Karsten Hilbert a écrit :
 Package: python-wxglade
 Version: 0.4.1-1
 Severity: wishlist
 
 When using a CustomWidget it would be really nice to have a way to
 specify import lines. One would then also need an indicator for whether
 to put that import line at the top (module level) or inside the __init__
 method of the class *using* the CustomWidget. The latter is needed to be
 able to avoid circular dependancies by late-import.
 
 This would help tremendously in enabling to use overwrite existing
 source more often which in turn makes drop-in GUI design more
 convenient.
 
 Thanks,
 Karsten
 
 -- System Information:
 Debian Release: testing/unstable
   APT prefers testing
   APT policy: (990, 'testing'), (500, 'stable')
 Architecture: i386 (i686)
 Shell:  /bin/sh linked to /bin/bash
 Kernel: Linux 2.6.16-2-k7
 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
 
 Versions of packages python-wxglade depends on:
 ii  python   2.3.5-11An interactive high-level 
 object-o
 ii  python-central   0.5.5   register and build utility for 
 Pyt
 ii  python-wxgtk2.6  2.6.3.2.1.1 wxWidgets Cross-platform C++ GUI 
 t
 
 python-wxglade recommends no packages.
 
 -- no debconf information
 
 

-- 
Georges KHAZNADAR et Jocelyne FOURNIER
22 rue des mouettes, 59240 Dunkerque France.
Téléphone +33 (0)3 28 29 17 70



signature.asc
Description: Digital signature


Bug#385257: No matching plugin was found

2006-08-30 Thread Eric Lavarde - Debian
severity 385257 wishlist
retitle 385257 make-jpkg could detect EE Java and display helpful error text
thanks

Hi Giuseppe,

you've downloaded the EE (Enterprise/Server version), make-jpkg does only
work with Java SE (Desktop), so you need to download the Java SE JDK.

Alternatively, you can now use the sun-java5-* packages in
unstable/non-free; or of course use one of the free alternatives, kaffe,
gcj/gci ... (if it works for your application).

Nevertheless, make-jpkg could perhaps recognize the error and output a
more helpful message (perhaps by creating a minimal plugin, that would
just spit an error?!).

Cheers, Eric

 package: java-package
 version: 0.28
 priority: important

 I just installed an etch machine on a core duo, dowloaded
 java_ee_sdk-5-linux.bin from SUN site and run java-package. This is what
 happens now:

 [EMAIL PROTECTED]:~/Desktop$ make-jpkg java_ee_sdk-5-linux.bin
 Creating temporary directory: /tmp/make-jpkg.lBkNf16863
 Loading plugins: blackdown-j2re.sh blackdown-j2sdk.sh common.sh
 ibm-j2re.sh ibm-j2sdk.sh j2re.sh j2sdk-doc.sh j2sdk.sh j2se.sh sun-j2re.sh
 sun-j2sdk-doc.sh sun-j2sdk.sh

 Detected Debian build architecture: i386
 Detected Debian GNU type: i486-linux-gnu

 No matching plugin was found.
 Removing temporary directory: done


-- 
Eric de France, d'Allemagne et de Navarre



Bug#385264: Acknowledgement (upgrade-reports: keybord broken after installing some packages)

2006-08-30 Thread jeanmichel . 123


moreover verr-num key does not works;
and key pressed does not repeat key,
when according to «gnome, propriétés du clavier»,
tab «clavier» has check box enables for «répétition lorsqu'une touche est
maintenue enfoncée»
«agencements» tab is set to «clavier generic 105-key (intl) pc» and «france»
«option de l'agencement» tab has capslock set to «défault», and nothing to
shift:lock

and vmware host system seams to have been automatically shutdowned!



Bug#385266: xsane: duplicates print size on copy

2006-08-30 Thread Ingo Strüwing
Package: xsane
Version: 0.99+0.991-1
Severity: important


When trying to copy an A4 page, it is printed with duplicate size so
that just a half of the page is output. When setting the zoom factor to
0.5, the output size is about correct (same as the original), but
the page is shifted so that still just a half of the page is output. The
scan looks fine in the preview window. When scanning (save) and
printing with gimp the output is fine without any size/zoom adjustments
whatsoever.

So I guess the problem is on the print side. I am using a HP Laserjet 4L
with CUPS. Changing the resolution for grayscale didn't help (I
encountered this problem while scanning in grayscale).

Former versions of xsane worked very well in this combination.

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


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



Bug#365969: Fixed in NMU of acpitool 0.4.5-0.1

2006-08-30 Thread Piotr Engelking

tags 365969 - fixed patch pending
thanks

It's still broken:

$ acpitool -c
 CPU type   : AMD Sempron(tm) Processor 2500+
 CPU speed  : 1406.875 MHz
 Cache size : 256 KB
 Bogomips   : es   : 40 bi
 Processor ID   : 0
 Bus mastering control  : yes
 Power management   : no
 Throttling control : no
 Limit interface: no
 Active C-state : C1
 C-states (incl. C0): 2
$ dpkg-query -W acpitool
acpitool0.4.5-0.1
$

Instead of parsing /proc/cpuinfo properly, acpitool.cpp::Show_CPU_Info()
still assumes specific number and order of the fields listed.


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



Bug#385268: installation problem

2006-08-30 Thread walter franzini

Package: mini-httpd
Version: 1.19-1

It is not possible to install mini-httpd if apache2-utils is already installaed:

Unpacking mini-httpd (from .../mini-httpd_1.19-1_i386.deb) ...
dpkg: error processing
/var/cache/apt/archives/mini-httpd_1.19-1_i386.deb (--unpack):
trying to overwrite `/usr/share/man/man1/htpasswd.1.gz', which is
also in package apache2-utils
Errors were encountered while processing:
/var/cache/apt/archives/mini-httpd_1.19-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


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



Bug#385264: Acknowledgement (upgrade-reports: keybord broken after installing some packages)

2006-08-30 Thread jeanmichel . 123
after exiting from gnome, beiing in kdm killing x by ctrl-alt-backspace, logging
in kdm to gnome, i had some other issues.

but,

after shutdown -r gnome works fine :-)
with good key handling (including repeat ket caps-lock and verr-num leds).

capital letters works fine again :-)
ALT-TAB works fine again :-)

digits are accessible with shift key: (~1234567890°+)
and everything seams to be fine. :-)
including CTRL key, and question mark ().

:-) :-) :-) :-) :-) :-) :-) :-)



Bug#366919: Move it, then

2006-08-30 Thread Matthias Urlichs
It isn't just Ubuntu that suffers from this problem;
Debian itself doesn't guarantee that /var/run survives
a reboot either.

The interesting part about this is that one cannot change the work
directory in the rc file either, because the temporary file for sourcing
the configuration is stored in ... surprise ... the work directory.

. $WORKDIR/rcfile.$$

So there's no way to change the work directory without modifying the
package (or one of its read-only files). I'd consider that to be a bug.

Fix: use $(tempfile) for the above file name.


NB: Using /tmp/tiger.$$ as a temporary working directory is a security
problem.


diff -ub tiger-3.2.1-31.new/config.in tiger-3.2.1-31/config.in
--- tiger-3.2.1-31.new/config.in2006-08-30 09:28:33.0 +0200
+++ tiger-3.2.1-31/config.in2006-08-30 10:06:32.0 +0200
@@ -133,8 +133,14 @@
   # TODO: WORKDIR should be removed on exit if it is located in a temporary
   # directory
   if [ ! -d $WORKDIR ] ; then
+  case $WORKDIR in
+  /var/run/* )
+  mkdir -p $WORKDIR
+  ;;
+  *)
   echo Configured working directory $WORKDIR does not exist 2
   exit 1
+  esac
   fi
 
 
@@ -228,10 +222,11 @@
   #
 
   [ -n $RCFILE -a -f $RCFILE ]  {
+   tmpf=$(tempfile)
 $GREP -v '^#' $RCFILE |
-$SED -e 's/^\(.*\)=/export \1; \1=/'  $WORKDIR/rcfile.$$
-. $WORKDIR/rcfile.$$
-$RM -f $WORKDIR/rcfile.$$
+$SED -e 's/^\(.*\)=/export \1; \1=/'  $tmpf
+. $tmpf
+$RM -f $tmpf
   }
 
   HOSTNAME=`$GETHOSTNAME`

-- 
Matthias Urlichs   |   {M:U} IT Design @ m-u-it.de   |  [EMAIL PROTECTED]


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



Bug#385267: deb-gview: please add menu icons

2006-08-30 Thread Lior Kaplan
Package: deb-gview
Version: 0.0.3
Severity: minor
Tags: patch

Hi,

1. The .desktop file has Icon=dpkg-view.png while you provide a deb-gview.png 
file. 

2. I'm attaching an xpm file which should go to 
/usr/share/pixmaps/deb-gview.xpm. Please fix the menu file to be:
?package(deb-gview):needs=X11 section=Apps/Programming\
  title=Debian package viewer command=/usr/bin/deb-gview \
icon=/usr/share/pixmaps/deb-gview.xpm

Thanks

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

Versions of packages deb-gview depends on:
ii  libarchive11.2.53-2  Single library to read/write tar, 
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.1-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.14.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.14.0-4  The Bonobo UI library
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libcairo2  1.2.4-1   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.3.2-7   generic font configuration library
ii  libgconf2-42.14.0-4  GNOME configuration database syste
ii  libglib2.0-0   2.10.3-3  The GLib library of C routines
ii  libgnome-keyring0  0.4.9-1   GNOME keyring services library
ii  libgnome2-02.14.1-3  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-1  GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.20-1  The GTK+ graphical user interface 
ii  libice61:1.0.0-3 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.0-2libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.12.3-2  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsm6 1:1.0.0-4 X11 Session Management library
ii  libx11-6   2:1.0.0-8 X11 client-side library
ii  libxcursor11.1.7-3   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension librar
ii  libxfixes3 1:3.0.1.2-4   X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.1-3 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension library
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.0.2-4   X Rendering Extension client libra

deb-gview recommends no packages.

-- no debconf information


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



Bug#329252: apt-proxy: Release.gpg is being downloaded, but only if missing. it should allways be

2006-08-30 Thread alex bodnaru
Package: apt-proxy
Version: 1.9.35
Followup-For: Bug #329252

i have upgraded a locally served repository, adding non-free branch.
mini-dinstall has properly updated the release file and Release.gpg,
but apt-proxy has refreshed only it's Release file. after deleting the
Release.gpg from the apt-proxy, it has refreshed properly.

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

Versions of packages apt-proxy depends on:
ii  adduser   3.96   Add and remove users and groups
ii  bzip2 1.0.3-3high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.3  Debian configuration management sy
ii  logrotate 3.7.1-3Log rotation utility
ii  python2.3.5-11   An interactive high-level object-o
ii  python-apt0.6.19 Python interface to libapt-pkg
ii  python-central0.5.5  register and build utility for Pyt
ii  python-twisted-web0.6.0-1An HTTP protocol implementation to

apt-proxy recommends no packages.

-- debconf information excluded


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



Bug#381820: backup-manager: More info: problem in postinst

2006-08-30 Thread Thomas Parmelan
Package: backup-manager
Version: 0.7.4-1
Followup-For: Bug #381820

Hi Alexis ;)

I think I came across a similar problem when installing backup-manager
for the first time yesterday. The real problem is that the postinst
script updates BM_TARBALL_DIRECTORIES, which is commented out in the
default Debian configuration, so in fine only the default directories
specified in BM_TARBALL_TARGETS (/etc and /boot) are considered for
backup.

Either the postinst script should be updated to work on the
BM_TARBALL_TARGETS array, or the default configuration should use the
deprecated BM_TARBALL_DIRECTORIES variable instead of the
BM_TARBALL_TARGETS array.

Best regards,
Tom

-- 
Thomas Parmelan  -+-  [EMAIL PROTECTED]


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



Bug#384953: 'man debram': needless neologisms subramifications, misramifications, metaramification, etc.

2006-08-30 Thread A. Costa
Thanks for the convivial reply, it's a nice change of pace, so much
BTS stuff is strictly business.

On Mon, 28 Aug 2006 14:39:13 +
Thaddeus H. Black [EMAIL PROTECTED] wrote:

 Precisely.  Well, regrettably I have never learned classical Latin,
 nor read Cicero, Vergil, etc., which is a real lack in my education;
 so I appreciate the correction...

Those classics I can read are all translated, so I'd be a lame
excuse for a classics scholar -- maybe someday -- any rudiments of
etymology shown result from a modest collection of dictionaries.

 ...For better or for worse, I think that we are stuck with the
 honorable package name debram now.  Can we work within this
 constraint, in your view?

Sure, but (not to pass the buck) naming the baby, that ought to be up
to you.  I know such decisions can be difficult:

http://mulinux.dotsrc.org/archive/4530.html

 The word neologism came new to me in your e-mail, incidentally.  I
 have just looked it up.  It is ironic that it is a Greek word,
 because I had wanted Latin not Greek for Debram's purpose.
 Nonetheless, it was never my intent to neologize needlessly.  The
 very large number of French-, Italian-, Spanish- and
 Portuguese-speaking Debian users recommended a Latin root if
 practicable.
 
 Is there not a Latin verb ramere, meaning to branch?  For some
 reason I had thought that there were such a verb.  I had admittedly
 not even been aware of the noun ramus; I had been thinking
 ramere, for which, I had thought, subramere made sense.

While I have no comprehensive Latin dictionary, my old Cassell's hasn't
any 'ramere'.  But the entry for 'ramus' is good:

ramus -i, masculine.  
I. a bough, branch, twig.  
A. literal: in quibus non truncus, non rami, non folia,
- Cicero
B. by metonomy:
a,  the fruit growing on a bough; 
rami atque venatus alebat,
- Vergil
b,  a branch of a stag's antlers, Caesar.
II. Transferred:
1, branch of a mountain range, Pliny.
2, rami, the arms of the Greek letter Y, regarded
   by the Pythagoreans as sybolical of the two
   paths of life;  Samii rami, Personal.
 
(Cassell abbreviations expanded.)

No 'ram-' verbs, just nouns.

Still, if verbs need findin', I'll crack open H. Burger's Wordtree, a
singularly unusual dictionary-like book, tirelessly derived from a
theory that verbs are the atom of language and grammar, and most verbs
have just two parents.  Page 325 defines 'ramify' as 'divide  extend',
then goes on to define 'ramify  diverge = branch', 'ramify  point =
thorn'; then what appears to be a computer generated comment that
'ramify' can be confused with the more accurate verbs 'actbranch' and
'arborize'.  Oh ho ho what a book...

 Is the English verb to ramify only a back-formation from the English
 noun ramification?  

The OED's etymologies map it out in this order:

1st) Latin 'ramus'.
2nd) Medieval Latin 'ramificare'.
3rd) French 'ramifier'.
4th) English verb 'ramify' in 1541.
5th) English noun 'ramification' in 1677.

 ...I first got the word from Tolkien's Lord of the Rings,
 incidentally---another irony, since Tolkien usually avoided Latin
 words when he could.  Tolkien describes the ancestral smials or
 burrows of Brandy Hall as large and ramifying, which seemed to
 describe the Debram catalog about as well as it did Brandy Hall.

I believe the basis of so many English latinisms was that they were
coined at a time when Latin was a useful way to be hyper-formal about
unspeakable or socially difficult topics; so there's a lot of subtle
humor in these old coinages -- they often weren't meant to be serious
synonyms that denoted new meaning, but rather gentler alternatives
to extant English words which connoted _too_much_ meaning.  Latin was
like a time-released candy-coating for bitter pills.  Like the
proverb tell the truth, then run; tell the truth in an obscure way,
so that slow thinking oppressors will be far away if they ever do
understand, which can be more efficient than running, as they logged
the miles, saving you exercise.

(I notice from watching Bollywood movies that Indians enjoy using
English phrases and expressions in a similar, but less secretive way --
almost like how Americans use French and Pig-Latin.)

  If it would help, I'd be willing to make a man page patch file
  with some tentative rewordings.
 
 Please begin, but then check back here.  Like any other Debian
 maintainer not yet acquainted with a new contributor, I would ask you
 to begin in moderately small steps.  I recommend that you put three
 hours or less toward your proposal before posting back here for
 further discussion.  (One tries to avoid artist's pride, but to some
 degree it is unavoidable.  Only human, I may 

Bug#385072: pcscd: excessive amount of logging

2006-08-30 Thread Simon Josefsson
Ludovic Rousseau [EMAIL PROTECTED] writes:

 Le Monday 28 August 2006 à 23:03:05, Simon Josefsson a écrit:
 Hi.  The pcscd process seem to log one message every second on my
 machine:
 
 Aug 28 21:46:57 localhost pcscd: commands.c:698:CmdGetSlotStatus Card absent 
 or mute
 Aug 28 21:47:28 localhost last message repeated 75 times
 Aug 28 21:48:29 localhost last message repeated 151 times
 Aug 28 21:49:30 localhost last message repeated 151 times
 Aug 28 21:50:31 localhost last message repeated 151 times
 Aug 28 21:51:32 localhost last message repeated 151 times
 Aug 28 21:52:33 localhost last message repeated 151 times
 Aug 28 21:53:34 localhost last message repeated 151 times
 Aug 28 21:54:35 localhost last message repeated 151 times
 ...
 
 As this doesn't indicate a real error condition -- my smart card
 reader works fine -- would it possible to simply not log this message
 by default?

 The problem is that you modified the configuration to _activate_ the use
 of your bogus Oz776 reader. The reader firmware is bogus and the log
 messages are the results of the firmware bugs.

 See also Debian bugs #381834 and #381689.

Ah, I see, thanks.

What is the problem with the Oz776 reader?  You said in 381689 that:

  In the present case the reader will not work with some command
  lengths.  If none of the problematic commands are used you will not
  see any problem.

Do you have an example of a problematic command?

Right now, for me, to only problem I have is with the logging, but I
haven't used the reader except for simple commands such as signing.

You also said:

  I may have a patch to correct the bug somewhere so a new firmware
  may not be needed. I will close the bug when a new driver correcting
  the bug is available.

This approach would be quite nice.  Recent Dell laptops come with this
card reader, so improving the support of it may affect a lot of
potential users.

/Simon



Bug#385264: Acknowledgement (upgrade-reports: keybord broken after installing some packages)

2006-08-30 Thread jeanmichel . 123
 ls -l /etc | grep 2006-08-29
drwxr-xr-x  2 root root   8192 2006-08-29 18:46 alternatives
drwxr-xr-x  2 root root   4096 2006-08-29 18:19 bash_completion.d
drwxr-xr-x  2 root root   4096 2006-08-29 18:19 cron.d
drwxr-xr-x  2 root root   4096 2006-08-29 18:19 cron.daily
drwxr-xr-x  2 root root   4096 2006-08-29 15:45 default
-rw-r--r--  1 root root   2393 2006-08-29 18:19 inetd.conf
drwxr-xr-x  2 root root   4096 2006-08-29 18:19 init.d
-rw-r--r--  1 root root  91860 2006-08-29 18:20 ld.so.cache
drwxr-xr-x  2 root root   4096 2006-08-29 18:46 mysql
drwxr-xr-x  2 root root   4096 2006-08-29 15:45 pmacct
drwxr-xr-x  4 root root   4096 2006-08-29 18:19 sane.d
-rw-r--r--  1 root root227 2006-08-29 18:19 shells
drwxr-xr-x 27 root root   4096 2006-08-29 18:46 X11

might be related to the x11 modified date
however no keyboard file seams to be affected;;;


 ls -alR X11| grep  2006-08-29
drwxr-xr-x  27 root root  4096 2006-08-29 18:46 .
drwxr-xr-x 156 root root  8192 2006-08-29 18:46 ..
drwxr-xr-x   2 root root  4096 2006-08-29 18:45 app-defaults
drwxr-xr-x   2 root root  4096 2006-08-29 18:46 fvwm
drwxr-xr-x   2 root root  4096 2006-08-29 18:46 icewm
-rw-r--r--   1 root root 14884 2006-08-29 18:46 rxvt.menu
drwxr-xr-x   2 root root  4096 2006-08-29 18:46 twm
drwxr-xr-x  2 root root   4096 2006-08-29 18:45 .
drwxr-xr-x 27 root root   4096 2006-08-29 18:46 ..
lrwxrwxrwx  1 root root 15 2006-08-29 18:19 XScreenSaver - XScreenSaver-gl
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x  2 root root  4096 2006-08-29 18:46 .
drwxr-xr-x 27 root root  4096 2006-08-29 18:46 ..
-rw-r--r--  1 root root 36140 2006-08-29 18:46 menudefs.hook
drwxr-xr-x  2 root root  4096 2006-08-29 18:46 .
drwxr-xr-x 27 root root  4096 2006-08-29 18:46 ..
-rw-r--r--  1 root root 34271 2006-08-29 18:46 programs
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x  2 root root  4096 2006-08-29 18:46 .
drwxr-xr-x 27 root root  4096 2006-08-29 18:46 ..
-rw-r--r--  1 root root 24077 2006-08-29 18:46 menudefs.hook
-rw-r--r--  1 root root 26905 2006-08-29 18:46 system.twmrc
drwxr-xr-x 27 root root  4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root  4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..
drwxr-xr-x 27 root root 4096 2006-08-29 18:46 ..



Bug#385226: initramfs-tools: no need to set SERVER_IP in scripts/nfs

2006-08-30 Thread vagrant+bugs
On Wed, Aug 30, 2006 at 08:36:58AM +0200, maximilian attems wrote:
 On Tue, Aug 29, 2006 at 03:32:50PM -0700, Vagrant Cascadian wrote:
  i believe ipconfig defines ROOTSERVER when it is passed via the ip=
  parameter, and thus it's not necessary to re-implement this code with
  SERVER_IP in initramfs-tools/scripts/nfs
 
 thanks for your check!
 need to see why it doesn't do it for NEW_DEVICE?

well, the NEW_DEVICE code i wrote was merely a way so that when it hits:

. /tmp/net-${DEVICE}.conf

it's actually sourcing the right file... though maybe we could just do
something like:

. /tmp/net-*.conf

some risk of getting some other device that way, even though *usually*
there will only be one...

alternately, maybe we could get ipconfig to write to a different
filename that doesn't include the device in it?

  attached is a patch which removes this extra code.
 
 i'll double check and will merge - reduces complexity.

not only complexity, but using shell parameter expansion instead of cut
is definitely prone to error, too. so we should avoid it when possible
:)

  also available from:
  
  http://llama.freegeek.org/~vagrant/bzr-archives/initramfs-tools/vagrant-initramfs-tools
  
  live well,
vagrant
 
 very appreciated.
 i assume that the current retry thing is working for you?

yes, it works quite well, although i still think it needs a call to
sleep to slow down the retry attempts(especially when not using dhcp
to configure).

overall, the nfsroot support is looking pretty good now.

live well,
  vagrant


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



Bug#385270: Problems installing and purging hal

2006-08-30 Thread Tim Phipps
Package: hal
Version: 0.5.7.1-1
Severity: normal

I though I'd screwed something up so I purged hal and reinstalled this
version and I still get some warnings. For installing I always get this:

Selecting previously deselected package hal.
(Reading database ... 202065 files and directories currently installed.)
Unpacking hal (from .../hal_0.5.7.1-1_i386.deb) ...
Setting up hal (0.5.7.1-1) ...
adduser: Warning: that home directory does not belong to the user you
are currently creating.
* Reloading system message bus config [ ok ]
* Starting Hardware abstraction layer hald[ ok ]

It all seems to be working so I don't know what that warning is for,
maybe the name haldaemon is too long, it is for ps -ef | grep hal.

Another warning happens when you purge hal and it may be related:

(Reading database ... 202147 files and directories currently installed.)
Removing hal ...
* Stopping Hardware abstraction layer hald[ ok ]
* Reloading system message bus config [ ok ]
Purging configuration files for hal ...
* Reloading system message bus config [ ok ]
/usr/sbin/delgroup: The group `haldaemon' does not exist.
Reading package lists... Done

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

Versions of packages hal depends on:
ii  adduser   3.97   Add and remove users and groups
ii  dbus  0.62-4 simple interprocess messaging syst
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libdbus-1-2   0.62-4 simple interprocess messaging syst
ii  libdbus-glib-1-2  0.62-4 simple interprocess messaging syst
ii  libexpat1 1.95.8-3.2 XML parsing C library - runtime li
ii  libglib2.0-0  2.10.3-3   The GLib library of C routines
ii  libhal1   0.5.7.1-1  Hardware Abstraction Layer - share
ii  libusb-0.1-4  2:0.1.12-2 userspace USB programming library
ii  lsb-base  3.1-14 Linux Standard Base 3.1 init scrip
ii  pciutils  1:2.2.4~pre4-1 Linux PCI Utilities
ii  udev  0.093-1/dev/ and hotplug management daemo
ii  usbutils  0.72-5 USB console utilities

hal recommends no packages.

-- no debconf information


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



Bug#385272: mcelog: Please include timestamps in the logfile

2006-08-30 Thread Michael Renner
Package: mcelog
Version: 0.7-1
Severity: wishlist

It would be nice if mcelog could log timestamps in its logfile. A quick
hack for doing that would be:

foo=`/usr/sbin/mcelog --ignorenodev --filter`; if [[ $foo ]]; then echo
-e `date`\n$foo  /var/log/mcelog; fi

best regards,
 Michael

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

Versions of packages mcelog depends on:
ii  debconf [debconf-2.0] 1.4.59 Debian configuration management sy
ii  libc6 2.3.5-13   GNU C Library: Shared libraries an
ii  makedev   2.3.1-82   creates device files in /dev

mcelog recommends no packages.

-- debconf information:
  mcelog/unusable:


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



Bug#385269: backup-manager: Outputs useless error message on first purge

2006-08-30 Thread Thomas Parmelan
Package: backup-manager
Version: 0.7.4-1
Severity: minor
Tags: patch

Hi,

On the first cron.daily run after installing backup-manager I received
the following error :

/etc/cron.daily/backup-manager:
/usr/share/backup-manager/files.sh: line 318: /tmp/bm-list.I29365: No such file 
or directory

I think the problem lies in the clean_directory() function in
/usr/share/backup-manager/files.sh: the temporary file ($list) is never
created if no file is found. Touching it should fix the problem, as in
the following patch (untested) :

--- files.sh2006-08-04 14:04:19.0 +0200
+++ /tmp/files.sh   2006-08-30 10:38:21.0 +0200
@@ -327,6 +327,7 @@
 
 # First list all the files to process
 list=$(mktemp /tmp/bm-list.XX)
+touch $list
 for file in $directory/*
 do
 if [ ! -e $file ]; then


-- 
Thomas Parmelan  -+-  [EMAIL PROTECTED]


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



Bug#385271: Debian Installer unreliable

2006-08-30 Thread Michael Noisternig

Package: installation-reports

Boot method: network
Image version: 10 Aug 2006, debian.org
Date: 10 Aug 2006

Machine: i386
Processor:
Memory:
Partitions:

Output of lspci and lspci -n:

Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [ ]
Create file systems:[O]
Mount partitions:   [O]
Install base system:[E]
Install boot loader:[O]
Reboot: [ ]

Comments/Problems:

The debian net-installer is highly unreliable in that it does neither 
re-try to install packets it couldn't get from the net at first attempt 
(e.g. after lost TCP connections) nor does it prompt the user what to do 
in such case - it just ignores the packet. You end up with a system that 
is half the packets missing - whithout ever having been notified about 
this. I experienced that when my ISP had some problem and there was huge 
packet loss on my connection. After reboot I ended up at the command 
line login prompt, wondering whether the dist came without any desktop 
environment. When the ISP's problem was fixed I tried apt-get install 
gnome, apt-get downloaded all new packages, and then hang at 99%. 
Forver. Without CPU load. Reproducable. Did apt-get 
clean/autoclean/update. Changed net source. No change.


Next day: re-format and re-install everything. This time everything 
seemd to work fine, after reboot I got gnome by default. Now I 
immediately wanted to install some other packages. BUT! Same problem 
with apt-get on bigger packages! Small ones work fine, e.g. madplay. But 
when I try apt-get install xmms, it downloads first the new packages 
and then just hangs at 99%, forever, without CPU load. Same problem with 
lyx, which I tried next, and all other bigger packages. Now I don't know 
if this is a problem with apt-get or again with the Debian Installer 
having left out some packages???


Hope to get some feedback. Thanks in advance.


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



Bug#385273: kernel-headers-2.4.27-m68k: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: kernel-headers-2.4.27-m68k
Severity: serious

The kernel-headers-2.4.27-m68k package build-depends on
kernel-source-2.4.27, which is RC-buggy and in any case not targetted for
inclusion in the etch release.  This package will be removed from etch, and
this bug is filed to keep it from re-entering the distro incorrectly.

Please clone this bug to ftp.debian.org to request removal from unstable as
well.

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


signature.asc
Description: Digital signature


Bug#384922: nfs-kernel-server: root_squash is broken

2006-08-30 Thread Steinar H. Gunderson
retitle 384922 please support NFS squashing multiple groups
reassign 384922 linux-2.6.16
thanks

On Wed, Aug 30, 2006 at 10:31:57AM +1000, Paul Szabo wrote:
 Are you saying that mountd might be happy to squash gid=staff, but the
 kernel would not understand such a request?

Yes. Or rather, there is no way to tell the kernel that, so nfs-utils
doesn't try to. (All the other code is there, though -- even the man page is
written.)

 OK, how about: make a wishlist for NFS to squash gid=staff as default with
 root_squash, and reassign to the kernel to support that? Please do any of
 the above as you see fit.

Done. (You may want to actually talk to the NFS kernel server people about
that, though; I doubt such a bug in Debian's BTS will be read by them.)

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


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



Bug#385267: and the xpm file I forgot

2006-08-30 Thread Lior Kaplan

-- 

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0



Bug#385276: latex2html: 100% CPU and 100% RAM when compiling an itemize with no item in it

2006-08-30 Thread Sébastien NOBILI
Package: latex2html
Version: 2002-2-1-20050114-5
Severity: normal



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

Versions of packages latex2html depends on:
ii  gs-esp [gs]  8.15.2.dfsg.1-2 The Ghostscript PostScript interpr
ii  gs-gpl [gs]  8.50-1.1The GPL Ghostscript PostScript int
ii  netpbm   2:10.0-10.1 Graphics conversion tools
ii  perl 5.8.8-6.1   Larry Wall's Practical Extraction 
ii  perl-doc 5.8.8-6.1   Perl documentation
ii  tetex-bin3.0-18  The teTeX binary files
ii  tetex-extra  3.0-20  Additional library files of teTeX

latex2html recommends no packages.

-- no debconf information

Sample file that produces the bug :

\documentclass[a4paper,10pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}

\title{Projets}

\begin{document}

\maketitle

\begin{abstract}
This example should crash latex2html
\end{abstract}

\tableofcontents

\section{This list is broken}
\begin{itemize}
\end{itemize}

\end{document}


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



Bug#385277: kernel-image-2.4.27-i386: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: kernel-image-2.4.27-i386
Severity: serious

The kernel-image-2.4.27-i386 package build-depends on kernel-source-2.4.27,
which is RC-buggy and in any case not targetted for inclusion in the etch
release.  This package will be removed from etch, and this bug is filed to
keep it from re-entering testing incorrectly.

Please clone this bug to ftp.debian.org to request removal from unstable as
well.

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


signature.asc
Description: Digital signature


Bug#192253: Suggestion from upstream FAQ

2006-08-30 Thread Santiago Vila
On Thu, 6 Jul 2006, Christian Hudon wrote:

 I went to have a look at the Info-zip FAQ page, and the method used
 in Chris Chiappa's patch is mentionned for handling zip files less
 than 2GB that create uncompressed data files between 2GB and
 4GB. From http://www.info-zip.org/FAQ.html#limits:
 
  In the short term, it is possible to improve Zip and UnZip's
  capabilities slightly on certain Linux systems (and probably other
  Unix-like systems) by recompiling with the *-DLARGEFILE_SOURCE
  -D_FILE_OFFSET_BITS=64* options.  This will allow the utilities to
  handle uncompressed data files greater than 2 GB in size, as long
  as the total size of the archive containing them is less than 2
  GB.

 Since this method seems to have an official blessing from upstream, could you
 please apply it to the Debian package so I can unzip these zip files that
 Windows people send me and seem to have no trouble creating.

Ok, this has convinced me. I'm going to add compiler flags for LFS as
they are blessed by upstream. For the other changes suggested (like
those in the patch by Paul), please test unzip 6.0.


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



Bug#385279: lm-sensors: please drop obsolete 2.4 kernel packages

2006-08-30 Thread Steve Langasek
Package: lm-sensors
Version: 1:2.10.0-7
Severity: serious

The lm-sensors package is still building kernel-patch-2.4-lm-sensors and
lm-sensors-source packages which are only relevant to 2.4 kernels, which
won't be shipped with etch.  Please drop them from your source package so
that the removal of 2.4.27 kernel packages from etch can proceed.

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


signature.asc
Description: Digital signature


Bug#365672: RFP: xetex - An extension of TeX with Unicode and OpenType support

2006-08-30 Thread Julian Gilbey
On Wed, Aug 30, 2006 at 01:21:46AM -0400, Benj. Mako Hill wrote:
 quote who=Norbert Preining date=Fri, Aug 25, 2006 at 10:20:12AM +0200
  One idea would be to put the package as Kohda-san prepared it into svn
  and we try to care all together for this...
 
 This sounds like the best idea to me as well.
 
 Regarsd,
 Mako

I've added mako to the svn.debian.org debian-tex group on alioth.

   Julian


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



Bug#325591: linda: Linda still fails in Check MenuCheck with Exception KeyError

2006-08-30 Thread Eric Lavarde
Package: linda
Version: 0.3.24
Followup-For: Bug #325591


Hi,

the error is supposed to be fixed in 0.3.17, but it seems there has been
a regression. With the below menu file, I get the error:

Check MenuCheck failed. Exception KeyError thrown ('command').

The menu file:

?package(netlock):needs=x11 section=Apps/Net \
icon=/usr/share/pixmaps/netlock.xpm title=Netlock
?package(netlock):needs=x11 section=Apps/Net/Netlock \
icon=/usr/share/pixmaps/netlock.xpm title=Extranet Access Client \
command=sensible-browser http://127.0.0.1:9161/;
?package(netlock):needs=x11 section=Apps/Net/Netlock \
title=About Netlock... \
command=sensible-browser http://127.0.0.1:9161/about.html;
?package(netlock):needs=x11 section=Apps/Net/Netlock \
title=Preferences \
command=sensible-browser http://127.0.0.1:9161/prefs.html;

It is to be noted that linda also complains the non-existing
sensible-browser command. I've seen similar reports (for other generic
commands like killall), and I think that there should be a clarification
of which commands are allowed in a menu and which not.
The best would be any command in a base package or in a package on
which the package depends is acceptable, but that's perhaps difficult to
implement.
(this said I don't know if both problems are related)

Cheers, Eric

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

Versions of packages linda depends on:
ii  binutils  2.17-2 The GNU assembler, linker and bina
ii  dash  0.5.3-3The Debian Almquist Shell
ii  dpkg-dev  1.13.21package building tools for Debian
ii  file  4.17-3 Determines file type using magic
ii  man-db2.4.3-3The on-line manual pager
ii  python2.3.5-11   An interactive high-level object-o
ii  python-support0.4.1  automated rebuilding support for p

Versions of packages linda recommends:
ii  debian-policy 3.7.2.1Debian Policy Manual and related d

-- no debconf information


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



Bug#385274: kernel-image-2.4.27-m68k: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: kernel-image-2.4.27-m68k
Severity: serious

The kernel-image-2.4.27-m68k package indirectly build-depends on
kernel-source-2.4.27, which is RC-buggy and in any case not targetted for
inclusion in the etch release.  This package will be removed from etch, and
this bug is filed to keep it from re-entering the distro incorrectly.

Please clone this bug to ftp.debian.org to request removal from unstable as
well.

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


signature.asc
Description: Digital signature


Bug#385278: i2c: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: i2c
Severity: serious

The i2c package build-depends on kernel-source-2.4.27, which is RC-buggy and
in any case not targetted for inclusion in the etch release.  This package
will be removed from etch, and this bug is filed to keep it from re-entering
testing incorrectly.

Please clone this bug to ftp.debian.org to request removal from unstable as
well.

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


signature.asc
Description: Digital signature


Bug#385275: tar: -: file name contains nul character

2006-08-30 Thread Vincent Lönngren
Package: java-package
Version: 0.28
Severity: minor

There's a warning about a nul character in a file name. I don't know if 
there are any problems because of this or if it's just the warning, so I 
set severity to minor.

[EMAIL PROTECTED]:~$ fakeroot make-jpkg jre-1_5_0_06-linux-i586.bin
[..]
Create debian package:
dh_testdir
dh_testroot
dh_installchangelogs
dh_installdocs
dh_compress
dh_fixperms
dh_installdeb
dh_shlibdeps
dh_gencontrol
dh_md5sums
dh_builddeb
dpkg-deb: bygger paketet sun-j2re1.5 i 
/tmp/make-jpkg.RTDKYf6007/sun-j2re1.5_1.5.0+update06_i386.deb.
tar: -: file name read contains nul character

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

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

java-package recommends no packages.

-- no debconf information


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



Bug#382334: bootsplash: progress bar patch still missing from initscripts

2006-08-30 Thread Pablo Chinea
El Miércoles, 30 de Agosto de 2006 06:10, David Broome escribió:
 ...but how would I use this?...
 ...How do I patch sysv-rc?...

  Well, I suppose that when the maintainer checks the code (and if he believes 
it suitable), he will pack it into a deb file that will patch the sysv-rc 
file automatically.

  Anyway, if you want to check it, you can patch the file with the command:

# patch -b /etc/init.d/rc rc-bootsplash.patch

The original file will be backuped in /etc/init.d/rc.orig, you can back to the 
original file replacing it with this file or using the command:

# patch -R /etc/init.d/rc rc-bootsplash.patch

  Please, if you check it, tell us if it works fine to you or not.

  Greetings,

-- 

Pablo Chinea
[EMAIL PROTECTED]
http://www.khertz.net/


pgpiF0vmDB6M0.pgp
Description: PGP signature


Bug#385281: initramfs-tools: Could remove the mkdir's and mknod's from init script.

2006-08-30 Thread Tim Phipps
Package: initramfs-tools
Version: 0.76
Severity: minor

The top part of init has this:

mkdir /sys
mkdir /proc
mkdir /tmp
mkdir -p /var/lock

These can all be put in the initramfs image can't they? Also (not a
bug), I can't figure out how /root gets created, it's not in the image
and there's no mknod /root in any script.

-- Package-specific info:
-- /proc/cmdline
boot=local root=LABEL=root

-- /proc/filesystems
cramfs
ext3
udf
iso9660
vfat
ntfs

-- lsmod
Module  Size  Used by
ntfs  196748  0 
vfat   11936  0 
fat47676  1 vfat
isofs  32832  0 
nls_utf81920  0 
udf73376  0 
savage 30176  1 
drm63508  2 savage
nfsd  201828  13 
exportfs5600  1 nfsd
ipv6  228064  46 
p4_clockmod 4684  0 
speedstep_lib   4260  1 p4_clockmod
freq_table  4196  1 p4_clockmod
button  6320  0 
ac  4612  0 
battery 9252  0 
dm_mod 49140  0 
cpufreq_userspace   3732  1 
vt1211 19672  0 
hwmon_vid   2336  1 vt1211
i2c_isa 4512  1 vt1211
mousedev   10752  1 
eth139418884  0 
snd_seq_dummy   3492  0 
snd_seq_oss29060  0 
snd_seq_midi8000  0 
snd_seq_midi_event  6944  2 snd_seq_oss,snd_seq_midi
snd_seq46284  6 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
via_agp 9312  1 
evdev   8736  3 
agpgart29776  2 drm,via_agp
snd_via82xx25912  0 
gameport   14440  1 snd_via82xx
snd_ac97_codec 83232  1 snd_via82xx
snd_ac97_bus2048  1 snd_ac97_codec
snd_pcm_oss44384  0 
snd_mixer_oss  16160  1 snd_pcm_oss
snd_pcm78248  3 snd_via82xx,snd_ac97_codec,snd_pcm_oss
snd_timer  21924  2 snd_seq,snd_pcm
snd_page_alloc  9800  2 snd_via82xx,snd_pcm
snd_mpu401_uart 7200  1 snd_via82xx
snd_rawmidi23392  2 snd_seq_midi,snd_mpu401_uart
snd_seq_device  8236  5 
snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq,snd_rawmidi
snd48704  11 
snd_seq_oss,snd_seq,snd_via82xx,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device
cx88_blackbird 17916  0 
cx8800 29420  1 cx88_blackbird
compat_ioctl32  1184  1 cx8800
v4l1_compat12068  1 cx8800
v4l2_common 7360  2 cx88_blackbird,cx8800
cx88_dvb   11492  1 
cx8802 11268  2 cx88_blackbird,cx88_dvb
cx88xx 59844  4 cx88_blackbird,cx8800,cx88_dvb,cx8802
ir_common   9156  1 cx88xx
btcx_risc   4520  3 cx8800,cx8802,cx88xx
tveeprom   13520  1 cx88xx
videodev9312  3 cx88_blackbird,cx8800,cx88xx
cx88_vp3054_i2c 3872  1 cx88_dvb
i2c_algo_bit8136  2 cx88xx,cx88_vp3054_i2c
mt352   5668  1 cx88_dvb
or51132 8900  1 cx88_dvb
video_buf_dvb   6276  1 cx88_dvb
dvb_core   72672  1 video_buf_dvb
video_buf  20548  6 
cx88_blackbird,cx8800,cx88_dvb,cx8802,cx88xx,video_buf_dvb
nxt200x11652  1 cx88_dvb
firmware_class 10144  3 cx88_blackbird,or51132,nxt200x
cx24123 7748  1 cx88_dvb
lgdt330x7036  1 cx88_dvb
cx22702 5700  1 cx88_dvb
dvb_pll11140  4 cx88_dvb,or51132,nxt200x,cx22702
shpchp 39776  0 
pci_hotplug25940  1 shpchp
i2c_viapro  7892  0 
i2c_core   20240  13 
vt1211,i2c_isa,cx88_dvb,cx88xx,tveeprom,i2c_algo_bit,mt352,or51132,nxt200x,cx24123,lgdt330x,cx22702,i2c_viapro
ide_cd 35808  0 
cdrom  32304  1 ide_cd
psmouse34600  0 
via_ircc   23380  0 
ohci1394   30416  0 
rtc12660  0 
serio_raw   6756  0 
ieee1394   87256  2 eth1394,ohci1394
irda  163356  1 via_ircc
pcspkr  3300  0 
crc_ccitt   1952  1 irda
soundcore   9600  1 snd
thermal13000  0 
processor  22336  1 thermal
fan 4452  0 
via_rhine  22536  0 
mii 5056  1 via_rhine
ide_disk   14752  6 
via82cxxx   7972  0 [permanent]
ide_core  113168  3 ide_cd,ide_disk,via82cxxx
usbhid 32704  0 
uhci_hcd   27920  0 
ehci_hcd   28360  0 
usbcore   114240  4 usbhid,uhci_hcd,ehci_hcd
nfs   195820  0 
lockd  54824  3 nfsd,nfs
nfs_acl 3264  2 

Bug#385282: pcmanfm: Please can we have a GNU ls-style listing mode?

2006-08-30 Thread Ian Smith
Package: pcmanfm
Version: 0.2.4-1
Severity: wishlist

This is a fantastic package which IMO does everything you could want
from a
basic file manager.  I am considering using this instead of rox, but for
one feature; rox does a GNU ls-style file listing.  To elaborate, what I
mean is:

* Mingle files and directories
* Ignore case for sorting
* Mingle dotfiles with non-dotfiles (where shown)

I realize this is really an upstream feature request, but I don't speak
any Chinese (nor can I display most of the characters on the upstream
web page).

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

Versions of packages pcmanfm depends on:
ii  gamin0.1.7-4 File and directory monitoring syst
ii  gnome-icon-theme 2.14.2-2GNOME Desktop icon theme
ii  libatk1.0-0  1.12.1-1The ATK accessibility toolkit
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libcairo21.2.4-1 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libgamin0 [libfam0]  0.1.7-4 Client library for the gamin file 
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libgtk2.0-0  2.8.18-1The GTK+ graphical user interface 
ii  libpango1.0-01.12.3-1+b1 Layout and rendering of internatio
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  shared-mime-info 0.17-2  FreeDesktop.org shared MIME databa

pcmanfm recommends no packages.

-- no debconf information


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



Bug#385068: add some pam features

2006-08-30 Thread Roger Leigh
General Stone [EMAIL PROTECTED] writes:

 Roger Leigh wrote:
 I'm fairly sure that the PAM_TTY must be a terminal device.  There
 might be security issues in using a fake TTY: that's a relative
 path, and so a cups TTY could be created in the CWD and
 potentially abused (for example, a hard or soft link to a real TTY).
 If there isn't a TTY, PAM_TTY should probably be left unset.

 Yes, I was self confused about the function of these variable, but the
 pam-modules (look at the sources) want be check if it was a TTY device
 or not. The SSH server  set the PAM_TTY variable to ssh and xdm set
 the variable to :0 or :1, etc. The pam_access module themself
 support these fake variables (see libpam-doc).

 So I think there shouldn't be a problem if cupsd set the variable to
 cups or cupsys or whatever.

OK, thanks for clarifying that.  Looking at openssh, that was
surrounded by

#ifdef PAM_TTY_KLUDGE
...
#endif

so it looks like it's essentially a workaround for buggy PAM modules.


If it's considered acceptable for openssh, it should be fine for CUPS.


Thanks,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


pgp2QkneMXoS6.pgp
Description: PGP signature


Bug#385068: add some pam features

2006-08-30 Thread Roger Leigh
General Stone [EMAIL PROTECTED] writes:

 Roger Leigh wrote:
 I'm fairly sure that the PAM_TTY must be a terminal device.  There
 might be security issues in using a fake TTY: that's a relative
 path, and so a cups TTY could be created in the CWD and
 potentially abused (for example, a hard or soft link to a real TTY).
 If there isn't a TTY, PAM_TTY should probably be left unset.

 Yes, I was self confused about the function of these variable, but the
 pam-modules (look at the sources) want be check if it was a TTY device
 or not. The SSH server  set the PAM_TTY variable to ssh and xdm set
 the variable to :0 or :1, etc. The pam_access module themself
 support these fake variables (see libpam-doc).

 So I think there shouldn't be a problem if cupsd set the variable to
 cups or cupsys or whatever.

OK, thanks for clarifying that.  Looking at openssh, that was
surrounded by

#ifdef PAM_TTY_KLUDGE
...
#endif

so it looks like it's essentially a workaround for buggy PAM modules.


If it's considered acceptable for openssh, it should be fine for CUPS.


Thanks,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


pgpoTTIbsysr1.pgp
Description: PGP signature


Bug#385266: xsane: duplicates print size on copy

2006-08-30 Thread Julien BLACHE
Ingo Strüwing [EMAIL PROTECTED] wrote:

Hi,

 Former versions of xsane worked very well in this combination.

Can you please install an older version of XSane and see what happens ?

This could be a problem on the printing side, and not in XSane, so
let's rule that out first.

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - [EMAIL PROTECTED] 
 
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 



Bug#384324: libtasn1-3-bin - important, conflicts against important package

2006-08-30 Thread Steve Langasek
On Wed, Aug 23, 2006 at 10:40:18PM +0100, James Westby wrote:
   We ant to request removal ASAP, however, there are 4 packages with
   binary dependencies, and so require a binNMU. Two of these require a
   sourceful upload however as they are not binNMU safe.

  Which ones aren't binNMU-safe?

 uim-applet-gnome (#383040) and ggz-kde-games (no report as I have found
 it just now) I think, as they both use ${source-Version} to depend on
 their data.

 The binNMU safe ones are evolution-exchange and ggz-kde-client. I am
 unsure of how to proceed, as Andreas Metzler has been handling it up to
 now. Shall I email -release with a binNMU request for these two?

So conveniently, all of these packages have now had maintainer uploads in
the past few days, leaving only a handful of reverse-dependencies on
libgnutls11 on individual architectures (principally on m68k and arm, which
are the archs having trouble keeping up).

I would say it's time to file a bug against ftp.d.o to request libgnutls11's
removal.

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


signature.asc
Description: Digital signature


Bug#383625: deal: segfault at execution

2006-08-30 Thread Christoph Berg
Re: Vassilis Pandis 2006-08-18 [EMAIL PROTECTED]
 Each time i launch deal i get a segmentation fault but sometimes it generate 
 one or two hands
 before crashing.(im using Dapper/amd64)

Here's the singled out diff for the fix - I intend to upload it to
sarge:

diff -u deal-3.0.8/debian/changelog deal-3.0.8/debian/changelog
--- deal-3.0.8/debian/changelog
+++ deal-3.0.8/debian/changelog
@@ -1,3 +1,10 @@
+deal (3.0.8-2sarge1) stable; urgency=low
+
+  * Fix segfault on amd64, (int)random() sometimes returned negative numbers
+(Closes: #383625).
+
+ -- Christoph Berg [EMAIL PROTECTED]  Wed, 30 Aug 2006 01:37:28 +0200
+
 deal (3.0.8-2) unstable; urgency=low
 
   * Two input/ files were still using relative source paths.
only in patch2:
unchanged:
--- deal-3.0.8.orig/deal.c
+++ deal-3.0.8/deal.c
@@ -190,7 +190,7 @@
 #if USE_RAND48
   return dealt+(int) (drand48() *(double)(52-dealt));
 #else
-  return dealt+(int) (fast_mod(random() , (52-dealt)));
+  return dealt+(int) (fast_mod((unsigned) random() , (52-dealt)));
 #endif
 }
 

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#385272: mcelog: Please include timestamps in the logfile

2006-08-30 Thread Julien BLACHE
Michael Renner [EMAIL PROTECTED] wrote:

Hi,

 It would be nice if mcelog could log timestamps in its logfile. A quick
 hack for doing that would be:

 foo=`/usr/sbin/mcelog --ignorenodev --filter`; if [[ $foo ]]; then echo
 -e `date`\n$foo  /var/log/mcelog; fi

It'd be nice, but I'd like to have that in the code. I'll cook up a
patch and submit it upstream.

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - [EMAIL PROTECTED] 
 
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 


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



Bug#385285: scsi-idle: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: scsi-idle
Severity: serious

The scsi-idle package build-depends on kernel-headers-2.4, which is not
going to be shipping with sarge.  In addition, kernel-patch-scsi-idle
appears to be specific to 2.4 kernels.  This package will be removed from
testing, and this bug is filed to keep it from accidentally re-entering.

Please clone this bug against ftp.debian.org to request removal of the
package from unstable as well.

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


signature.asc
Description: Digital signature


Bug#385286: linux-kernel-di-i386: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: linux-kernel-di-i386
Severity: serious

The linux-kernel-di-i386 package builds udebs for the 2.4.27 kernel,
which will not be shipping with etch.  It's time to drop the kernel and its
reverse-dependencies from testing.

Please clone this bug to ftp.debian.org to request removal of this package
from unstable as well.

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


signature.asc
Description: Digital signature


Bug#385283: linux-kernel-di-m68k: obsolete kernel, dummy bug

2006-08-30 Thread Steve Langasek
Package: linux-kernel-di-m68k
Severity: serious

The linux-kernel-di-m68k package builds udebs for the 2.4.27 and 2.2.25
kernels, neither of which will be shipping with etch.  It's time to drop
these kernels from testing.

Please clone this bug to ftp.debian.org to request removal of this package
from unstable as well.

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


signature.asc
Description: Digital signature


Bug#385280: scipgraphica: A new upstream version 2.1.0 is available.

2006-08-30 Thread Frederic-Emmanuel PICCA
Package: scipgraphica
Version: A new upstream version 2.1.0 is available.
Severity: wishlist


Everithings in the title.

Have a nice day.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-686-smp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)


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



Bug#385284: Serial controller Timedia stop work on new kernel

2006-08-30 Thread [EMAIL PROTECTED]

Package: linux-image-2.6.17-2
Version: 2.6.17-2
Severity: normal

I have a serial controller Timedia, that works fine under 2.4.27-3-686 but not 
on kernel 2.6.16-2-686 and 2.6.17-2-686.

thanks in advance,

João Serrachinha

Linux version 2.4.27-3-686 ([EMAIL PROTECTED]) (gcc version 3.3.5 (Debian 
1:3.3.5-13)) #1 Tue May 30 00:56:40 UTC 2006
BIOS-provided physical RAM map:
 BIOS-e820:  - 0009fc00 (usable)
 BIOS-e820: 0009fc00 - 000a (reserved)
 BIOS-e820: 000f - 0010 (reserved)
 BIOS-e820: 0010 - 0fff (usable)
 BIOS-e820: 0fff - 0fff3000 (ACPI NVS)
 BIOS-e820: 0fff3000 - 1000 (ACPI data)
 BIOS-e820: fec0 - 0001 (reserved)
0MB HIGHMEM available.
255MB LOWMEM available.
found SMP MP-table at 000f5250
hm, page 000f5000 reserved twice.
hm, page 000f6000 reserved twice.
hm, page 000f1000 reserved twice.
hm, page 000f2000 reserved twice.
On node 0 totalpages: 65520
zone(0): 4096 pages.
zone(1): 61424 pages.
zone(2): 0 pages.
ACPI: RSDP (v000 IntelR) @ 0x000f6d10
ACPI: RSDT (v001 IntelR AWRDACPI 0x42302e31 AWRD 0x) @ 0x0fff3000
ACPI: FADT (v001 IntelR AWRDACPI 0x42302e31 AWRD 0x) @ 0x0fff3040
ACPI: MADT (v001 IntelR AWRDACPI 0x42302e31 AWRD 0x) @ 0x0fff6c40
ACPI: DSDT (v001 INTELR AWRDACPI 0x1000 MSFT 0x010d) @ 0x
ACPI: Local APIC address 0xfee0
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 Pentium 4(tm) XEON(tm) APIC version 20
ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Processor #1 Pentium 4(tm) XEON(tm) APIC version 20
Using ACPI for processor (LAPIC) configuration information
Intel MultiProcessor Specification v1.4
Virtual Wire compatibility mode.
OEM ID: OEM0 Product ID: PROD APIC at: 0xFEE0
I/O APIC #2 Version 17 at 0xFEC0.
Enabling APIC mode: Flat.   Using 1 I/O APICs
Processors: 2
Kernel command line: root=/dev/hda1 ro 
Initializing CPU#0
Detected 2794.865 MHz processor.
Console: colour VGA+ 80x25
Calibrating delay loop... 5583.66 BogoMIPS
Memory: 252336k/262080k available (1198k kernel code, 9356k reserved, 451k 
data, 116k init, 0k highmem)
Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
Inode cache hash table entries: 16384 (order: 5, 131072 bytes)
Mount cache hash table entries: 512 (order: 0, 4096 bytes)
Buffer cache hash table entries: 16384 (order: 4, 65536 bytes)
Page-cache hash table entries: 65536 (order: 6, 262144 bytes)
CPU: Trace cache: 12K uops, L1 D cache: 8K
CPU: L2 cache: 512K
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: After generic, caps: bfebfbff   
CPU: Common caps: bfebfbff   
CPU: Intel(R) Pentium(R) 4 CPU 2.80GHz stepping 09
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
enabled ExtINT on CPU#0
ESR value before enabling vector: 
ESR value after enabling vector: 
ENABLING IO-APIC IRQs
Setting 2 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 2 ... ok.
init IO_APIC IRQs
 IO-APIC (apicid-pin) 2-0, 2-5, 2-9, 2-10, 2-11, 2-20, 2-21 not connected.
..TIMER: vector=0x31 pin1=2 pin2=0
number of MP IRQ sources: 22.
number of IO-APIC #2 registers: 24.
testing the IO APIC...

IO APIC #2..
 register #00: 0200
...: physical APIC id: 02
...: Delivery Type: 0
...: LTS  : 0
 register #01: 00178020
... : max redirection entries: 0017
... : PRQ implemented: 1
... : IO APIC version: 0020
 register #02: 
... : arbitration: 00
 register #03: 0001
... : Boot DT: 1
 IRQ redirection table:
 NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:   
 00 000 00  100   0   00000
 01 001 01  000   0   01139
 02 001 01  000   0   01131
 03 001 01  000   0   01141
 04 001 01  000   0   01149
 05 000 00  100   0   00000
 06 001 01  000   0   01151
 07 001 01  000   0   01159
 08 001 01  000   0   01161
 09 000 00  100   0   00000
 0a 000 00  100   0   00000
 0b 000 00  100   0   00000
 0c 001 01  000   0   01169
 0d 001 01  000   0   01171
 0e 001 01  000   0   01179
 0f 001 01  000   0   01181
 10 001 01  110   1   01189
 11 001 01  110   1   01191
 12 001 01  110   1   01199
 13 001 01  110   1   011A1
 14 000 00  1

Bug#385287: RFP: picard -- The Next-Generation MusicBrainz Tagger

2006-08-30 Thread Juhapekka Tolvanen

Package: wnpp
Severity: wishlist

* Package name: picard
  Version : 0.7.0
* URL : http://musicbrainz.org/doc/PicardTagger
* License : RCSL 1.0 / RPSL 1.0 / GPL 2.0
  Description : The Next-Generation MusicBrainz Tagger


I really like all those media-players that can READ information from
MusicBrainz but I definitely need some program for WRITING and EDITING
tags in MusicBrainz. Picard is the official program for that task. So,
please, oh, please make a Debian-package of it.


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-proposed-updates'), (500, 
'proposed-updates'), (101, 'unstable'), (99, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=fi_FI.utf8, LC_CTYPE=fi_FI.utf8 (charmap=UTF-8)


-- 
Juhapekka naula Tolvanen * * http colon slash slash iki dot fi slash juhtolv
--
Anulle kukaan ei sanonu suoraan ettei ole olemassa vanhaa pirihuoraa. Steen1


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



Bug#385288: libapache2-svn sometimes create db logs owned by root

2006-08-30 Thread Vitalie Lazu
Package: libapache2-svn
Version: 1.1.4-2
Severity: important

We host a lot of repositories at www.assembla.com, sometimes we have
problems because in db/ directory of svn repository appears log files owned by 
root,
apache run as www-data user and it can not serve that repository
anymore.

We had manualy to chown files and run svnadmin recover to that
repository. It happens at least twice per week with 30 active svn repositories.

-- System Information:

Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages libapache2-svn depends on:
ii  apache2   2.0.54-5sarge1 next generation, scalable, extenda
ii  apache2-mpm-prefork [ 2.0.54-5sarge1 traditional model for Apache2
ii  db4.2-util4.2.52-18  Berkeley v4.2 Database Utilities
ii  libc6 2.3.2.ds1-22sarge3 GNU C Library: Shared libraries an
ii  libsvn0   1.1.4-2shared libraries used by Subversio

-- no debconf information


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



Bug#385292: Please include -P option as in Ubuntu

2006-08-30 Thread Andras Korn
Package: klogd
Version: 1.4.1-18
Severity: wishlist

Hi,

Ubuntu's klogd has a -P option that does this:

   -P path
  Use path instead of /proc/kmsg as the source of the kernel
  message.  Specify - to read from standard input.  This
  allows klogd to run entirely without root privileges.

The idea then is to use a dd process to shovel messages from /proc/kmsg into
a fifo for klogd to read.

The security benefits, while admittedly somewhat far-fetched, should be
obvious (an attacker can theoretically exercise some control over the
messages the kernel logs, so a bug in klogd could conceivably be exploited
in this manner).

Additionally, this seems to work around a problem where klogd used to
garble kernel messages when they were arriving at a high rate (this isn't
easy to describe and probably impossible to reproduce on purpose: it's as if
some lines were logged incompletely, or fragments of other lines inserted).

Since Ubuntu obviously has a patch for -P, it shouldn't be hard to include
it in Debian's klogd too.

Andras

-- 
 Andras Korn korn at chardonnay.math.bme.hu
 http://chardonnay.math.bme.hu/~korn/ QOTD:
Energizer Bunny arrested. Charged with battery.


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



Bug#385289: mini-dinstall: i have fixed almost all reported bugs and a few more. bugfix on mentors

2006-08-30 Thread alex bodnaru
Package: mini-dinstall
Version: 0.6.21-0.2
Severity: normal

willing to use mini-dinstall on my lan, i have patched it a little to 
implement most of the reported mis-features, and added a few features 
of myself, both on the script part and on it's packaging facility.
as it contains more than a trivial patch, i have re-packaged the software 
and uploaded it to mentors. please see
http://mentors.debian.net/debian/pool/main/m/mini-dinstall.
my work and todo intentions are documented in both ChangeLog and 
debian/changelog.
there was no intention to take the maintainership over, and my name is 
on top of the changelog only to allow me to sign the package.


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

Versions of packages mini-dinstall depends on:
ii  apt-utils 0.6.45 APT utility programs
ii  gnupg 1.4.5-1GNU privacy guard - a free PGP rep
ii  python2.3.5-11   An interactive high-level object-o
ii  python-apt0.6.19 Python interface to libapt-pkg
ii  python-support0.4.1  automated rebuilding support for p

mini-dinstall recommends no packages.

-- no debconf information


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



Bug#385115: Sorry, no more RC bugs for non-free data in main (was: Bug#385115: chromium-data: Unclear license for some files)

2006-08-30 Thread Roberto Gordo Saez

OK, you win, I will not continue with this. Do whatever you want with the bug.
I'm sending this message to debian-legal, in case other people care.

On 8/30/06, Steve Langasek [EMAIL PROTECTED] wrote:

For all you've said up to this point, the sound files being used could be in
the public domain; in which case the only controlling copyright is that
governing the packaging and support files.


OK, so I take files from the web and put them on packages. They could
be in public domain, so there is no problem unless someone find that
they are not, uh?

I think it is silly. Copyright does not work this way. Something
should be treated as copyrighted unless clearly stated it is under
public domain.


That they are unknown to *you* is not grounds for an RC bug claiming that
upstream is distributing files illegally.


And they are unknown to upstream. AFAIK, upstream does never claim
that those files are under artistic license nor under public domain.
It is not me. Why it is this so difficult to understand?


If you're going to claim that the license on these sounds is not what
upstream and the packaging claim it is, the burden of proof lies with you.


Again, upstream does not claim he is copyright holder, and license for
them is not specified. He only claims that he took the files from
other sources. Even if the files are free, credit should be provided,
and the origin clarified. As a positive example, look at this package
(monsterz-data), it is a example of someone who has taken the time to
correctly provided credits and copyright information for the included
wav files:

/usr/share/doc/monsterz-data/copyright

To put all copyrights and references in detail for code and data can
be boring, but omitting them makes no favor to free software. Please,
note that including source code for data files is a different issue.
This is about copyright problems on Debian main archive.

I'm getting tired of all of this. There are still an important number
of packages that carry unlicensed data with them, but I WON'T CONTINUE
reporting bugs. Believe it or not, I have lots of more exciting things
to do than searching for copyright problems and reporting them on my
free time. And instead of people helping me to solve the problems and
make Debian a better product, I got negative responses saying the
problem is myself.

Defending my position each time takes a lot of time (English is not my
native language and my level of English is rather poor). Things I'm
reporting are obviously not allowed by current Debian guidelines, so
justifying and fighting for them each time is a waste of my time.

If most people here thinks that we should not care about this, I would
prefer that guidelines to be updated in consequence, so people who
really care about this kind of copyright issues would know before
choosing to use Debian. So Debian will remain 100% free unless we got
sort of time for the next release, or something taken from the web is
public domain unless someone demonstrate that it is not...

So do not expect myself to give any more of my time to this. And you
can downgrade the priority again or even close the bug if you want, I
do not mind anymore.


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



Bug#385290: kghostview: problem with Unicode char when jumping directly to page

2006-08-30 Thread Eike Sauer
Package: kghostview
Version: 4:3.5.4-2
Severity: normal

When I open the file
http://user.cs.tu-berlin.de/~eikes/debian/dm4-2-links.ps ,
which contains some little red arrows in front of some
paragraphs, I don't always get to see the arrows.
When I jump directly to the last page, there's no arrow
in front of What goes into the directory?
When I go down from page 1 to 5 with the page down key,
I do see this arrow.

The same applies to gv. I reported it as #302383 in March 2005.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (150, 'testing'), (100, 'stable'), (50, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-2-k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages kghostview depends on:
ii  gs-esp [gs]  8.15.2.dfsg.1-2 The Ghostscript PostScript interpr
ii  kdelibs4c2a  4:3.5.4-3   core libraries and binaries for al
ii  libaudio21.8-2   The Network Audio System (NAS). (s
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libfreetype6 2.2.1-2 FreeType 2 font engine, shared lib
ii  libgcc1  1:4.1.1-11  GCC support library
ii  libice6  1:1.0.0-3   X11 Inter-Client Exchange library
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-5.2PNG library - runtime
ii  libqt3-mt3:3.3.6-2   Qt GUI Library (Threaded runtime v
ii  libsm6   1:1.0.0-4   X11 Session Management library
ii  libstdc++6   4.1.1-11The GNU Standard C++ Library v3
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxft2  2.1.8.2-8   FreeType-based font drawing librar
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  libxt6   1:1.0.0-5   X11 toolkit intrinsics library
ii  zlib1g   1:1.2.3-13  compression library - runtime

kghostview recommends no packages.

-- no debconf information


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



Bug#384745: .desktop issues

2006-08-30 Thread Martin Waitz
hoi :)

On Sat, Aug 26, 2006 at 01:28:40PM +0100, Vassilis Pandis wrote:
 1. The .desktop file doesn't appear in the menus because it gets installed in
 /usr/share/applnk/Utilities/qalculate_kde.desktop (it should be going in 
 /usr/share/applications )
 
 2. It doesn't validate. I'm attaching a patch. I'm not certain why exactly it 
 doesn't validate
 though, so take a look at it.

Thanks for the report.
I'll test if these modifications work for Gnome, too.

-- 
Martin Waitz


signature.asc
Description: Digital signature


Bug#385291: munin-node: df plugin should not include squashfs

2006-08-30 Thread Radek Antoniuk
Package: munin-node
Version: 1.2.4-1
Severity: normal

in the df plugin should be
df -T -P -l -x none -x unknown -x udf -x iso9660 -x romfs -x ramfs -x squashfs
because it generates false positives as squashfs is mainly used for mounting ro 
images.

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

Versions of packages munin-node depends on:
ii  adduser  3.85Add and remove users and groups
ii  libnet-server-perl   0.90-1  An extensible, general perl server
ii  lsb-base 3.1-4   Linux Standard Base 3.1 init scrip
ii  perl 5.8.8-6 Larry Wall's Practical Extraction 
ii  procps   1:3.2.6-2.1 /proc file system utilities

Versions of packages munin-node recommends:
ii  libnet-snmp-perl  5.2.0-1Script SNMP connections

-- no debconf information


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



Bug#384777: missing backslash '\' in pppoeconf script

2006-08-30 Thread Gregory Colpart
tags 384777 + fixed pending
thanks bts

On Sat, Aug 26, 2006 at 10:51:59PM +0800, WANG Yunfeng wrote:
 
 A missing '\' in line 267 of /usr/sbin/pppoeconf shown below makes the 
 pre-up
 line not inserted in /etc/network/interfaces.
 
 -sed -i -e s,[^#]*(iface dsl-provider.*\),\1\n$REPLACE_PREUP_IFACE, $INTFILE
 +sed -i -e s,[^#]*\(iface dsl-provider.*\),\1\n$REPLACE_PREUP_IFACE, 
 $INTFILE

Thanks for your report.
I am preparing a new version with your correction.


Regards,
-- 
Gregory Colpart [EMAIL PROTECTED]  GnuPG:1024D/C1027A0E
Evolix - Informatique et Logiciels Libres http://www.evolix.fr/


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



Bug#380847: unusable because of python transition

2006-08-30 Thread Piotr Ozarowski
severity 380847 serious
retitle 380847 unusable because of python transition
thanks

Unusable because of new default python version (and thus new modules location):

 $ imgSeek
 Traceback (most recent call last):
   File /usr/bin/imgSeek, line 26, in ?
 from imgSeekLib import imgSeekApp
 ImportError: No module named imgSeekLib


Attached diff will also shout up new lintian errors (see below).
All dependencies generated with previous patch were correct, but apparently
lintian wants them listed in specific order now...

E: imgseek: python-script-but-no-python-dep ./usr/bin/imgSeek
E: imgseek: python-script-but-no-python-dep ./usr/bin/imgSeekCmd

-- 
-=[ Piotr Ozarowski ]=-
-=[ http://www.ozarowski.pl ]=-


imgseek_0.8.6-0.1.diff.gz
Description: application/gunzip


pgpb91x4waAD9.pgp
Description: PGP signature


Bug#380910: diff for 0.98+0.99rc6-1.1 NMU

2006-08-30 Thread Pierre HABOUZIT
Hi,

Attached is the diff for my pymol 0.98+0.99rc6-1.1 NMU.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org
diff -u pymol-0.98+0.99rc6/debian/patches/00list 
pymol-0.98+0.99rc6/debian/patches/00list
--- pymol-0.98+0.99rc6/debian/patches/00list
+++ pymol-0.98+0.99rc6/debian/patches/00list
@@ -6,0 +7 @@
+11_fix__cmd_import.dpatch
diff -u pymol-0.98+0.99rc6/debian/control pymol-0.98+0.99rc6/debian/control
--- pymol-0.98+0.99rc6/debian/control
+++ pymol-0.98+0.99rc6/debian/control
@@ -2,8 +2,8 @@
 Section: science
 Priority: optional
 Maintainer: Michael Banck [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.0.0), dpatch, python, python-dev, 
python-numeric, glutg3-dev, libpng12-0-dev, tk8.4-dev, libfreetype6-dev
-Standards-Version: 3.5.6.1
+Build-Depends: debhelper (= 4.0.0), dpatch, python-dev, python-numeric, 
glutg3-dev, libpng12-0-dev, tk8.4-dev, libfreetype6-dev, python-support (= 0.4)
+Standards-Version: 3.7.2
 
 Package: pymol
 Architecture: any
diff -u pymol-0.98+0.99rc6/debian/changelog pymol-0.98+0.99rc6/debian/changelog
--- pymol-0.98+0.99rc6/debian/changelog
+++ pymol-0.98+0.99rc6/debian/changelog
@@ -1,3 +1,17 @@
+pymol (0.98+0.99rc6-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Update packate to the last python policy (Closes: 380910):
++ use dh_pysupport.
++ add 11_fix__cmd_import.dpatch to fix an import that does not behaves
+  well.
++ adapt the wrapper to the new path's.
+  * Bump Standards-Version to 3.7.2.
+  * Bump DH_COMPAT to 4.
+  * Fix more files that have wrong executable bits set.
+
+ -- Pierre Habouzit [EMAIL PROTECTED]  Wed, 30 Aug 2006 11:09:00 +0200
+
 pymol (0.98+0.99rc6-1) unstable; urgency=low
 
   * New upstream release candidate.
diff -u pymol-0.98+0.99rc6/debian/rules pymol-0.98+0.99rc6/debian/rules
--- pymol-0.98+0.99rc6/debian/rules
+++ pymol-0.98+0.99rc6/debian/rules
@@ -1,12 +1,12 @@
 #!/usr/bin/make -f
 # -*- Makefile -*-
 
-export DH_COMPAT=3
+export DH_COMPAT=4
 
 DEB_BUILD_ARCH=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
 
 export PYMOL_PATH=$(CURDIR)
-PYTHON_VERSION := `python -V 21 | sed -e s/^Python\ // -e s/\.[0-9]$$//`
+PYTHON_VERSION := $(shell pyversions -dv)
 
 include /usr/share/dpatch/dpatch.make
 
@@ -75,12 +75,13 @@
dh_installmenu
dh_installmime
dh_installexamples
-   chmod -x $(BUILD_DIR)/usr/share/doc/pymol/examples/1tii.pdb
+   chmod -x $(BUILD_DIR)/usr/share/doc/pymol/examples/*.pdb
+   chmod -x $(BUILD_DIR)/usr/share/pymol/cmyk.png
dh_installdocs -A DEVELOPERS README
dh_installchangelogs CHANGES
 #  dh_undocumented pymol.1
dh_link
-   dh_python
+   dh_pysupport
dh_strip 
dh_compress -Xpdb
dh_fixperms 
diff -u pymol-0.98+0.99rc6/debian/pymol.launch.in 
pymol-0.98+0.99rc6/debian/pymol.launch.in
--- pymol-0.98+0.99rc6/debian/pymol.launch.in
+++ pymol-0.98+0.99rc6/debian/pymol.launch.in
@@ -5,4 +5,4 @@
-export PYMOL_PATH=/usr/lib/[EMAIL PROTECTED]@/site-packages/pymol/
+export PYMOL_PATH=/var/lib/python-support/[EMAIL PROTECTED]@/pymol/
 export CHEMPY_DATA=/usr/share/chempy
 
[EMAIL PROTECTED]@ /usr/lib/[EMAIL PROTECTED]@/site-packages/pymol/__init__.py 
$*
[EMAIL PROTECTED]@ ${PYMOL_PATH}/__init__.py $*
only in patch2:
unchanged:
--- pymol-0.98+0.99rc6.orig/debian/patches/11_fix__cmd_import.dpatch
+++ pymol-0.98+0.99rc6/debian/patches/11_fix__cmd_import.dpatch
@@ -0,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 11_fix__cmd_import.dpatch by Pierre Habouzit [EMAIL PROTECTED]
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
[EMAIL PROTECTED]@
+diff -urNad pymol-0.98+0.99rc6~/modules/pymol/__init__.py 
pymol-0.98+0.99rc6/modules/pymol/__init__.py
+--- pymol-0.98+0.99rc6~/modules/pymol/__init__.py  2006-08-30 
11:44:52.0 +0200
 pymol-0.98+0.99rc6/modules/pymol/__init__.py   2006-08-30 
11:48:51.0 +0200
+@@ -350,7 +350,7 @@
+ _cmd.runpymol(block_input_hook) # only returns if we are running 
pretend GLUT
+ #  from pymol.embed import wxpymol # never returns
+ 
+-import _cmd
++from pymol import _cmd
+ import cmd
+ 
+ def thread_launch(pa):


signature.asc
Description: Digital signature


Bug#314847: maildrop does not deliver because of dotlock problem

2006-08-30 Thread Josip Rodin

[resending mail already sent privately so that BTS is appraised]

On Mon, Aug 28, 2006 at 06:55:55PM +0200, Josip Rodin wrote:
   [...] But more to the point, what user are you trying to run
   maildrop -d with, and what is your expected behaviour? What do you
   expect from the -d option?
  
  -d ${USER} in .forward has been used because of a suggestion to do so in
  MAILDROP_README of the postfix distribution... I guess this is not
  correct (with recent maildrops).
 
 Yes. It appears that it was *never* correct because we never shipped
 maildrop setuid, so it was always simply being run as user.

  The last thing I do not understand is that the maildrop that had been
  compiled and installed manually is not suid at all, and the -d ${USER}
  works ok. I guess this is because the ${USER} is replaced by same id as
  the one owning the maildrop process (this is the same user). The doc of
  maildrop seems to tell that this case of using -d is ok.
  
  But with the debian version (2.0.2), this doesn't work, so this seems
  related to courier-authlib... With my own compiled version, I do not get
  the ERR: authdaemon: s_connect() failed: No such file or directory
  /usr/bin/maildrop: Temporary authentication failure. error at all when
  using -d ${USER} in .forward.
 
 Yes, definitely something goes wrong with the authlib interference.
 It decides to force authlib use as soon as you use -d, regardless of whether
 you are user or root (setuid or otherwise).
 
 I'll try to debug it, and notify upstream.

-- 
 2. That which causes joy or happiness.


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



Bug#384351: mutt: fails to correctly send a .doc file to OpenOffice

2006-08-30 Thread Alain Bench
 On Sunday, August 27, 2006 at 16:54:12 +0100, Julian Gilbey wrote:

 Unfortunately, mutt_bgrun doesn't work either: oowriter exits
 immediately and so the temporary file gets deleted before the new
 oowriter process which is called has time to read it.

mutt_bgrun does the backgrounding; The viewer must not. Otherwise
the early deletion problem continues. Perhaps is there an option to
disable backgrounding in oowriter?

Alternatively drop mutt_bgrun, and wait some seconds. Example:
oowriter %s \; sleep 42. That's less clean, but may just work.

I think clean solutions are just 2: Either read file first then go
background, or use mutt_bgrun with a blocking viewer.


Bye!Alain.
-- 
Give your computer's unused idle processor cycles to a scientific goal:
The [EMAIL PROTECTED] project at URL:http://folding.stanford.edu/.


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



Bug#385247: pan: please include patch to reduce memory usage

2006-08-30 Thread Søren Boll Overgaard
Hi,

Thanks for your report,

On Tue, Aug 29, 2006 at 09:11:47PM -0500, Ryan Underwood wrote:
 
 Please include this following patch which makes groups with large number
 of messages actually usable with current pan.  According to the pan
 mailing list, it is currently being tested for inclusion in a future
 version.
 
 http://bugzilla.gnome.org/show_bug.cgi?id=353334

As the patch will be included in 0.111 (due out in 4 days) I think I will wait
for the official release, instead of doing an emergency upload.

-- 
Søren O.

Oh, bother said the Borg, we've assimilated Pooh.



Bug#352363: Need more information on KDevelop bug #352363

2006-08-30 Thread Eike Sauer
Hello!

(I didn't get a note about your message, so I didn't see it until now.)

 You state that the tabs (presumably those on the side such as
 Bookmarks, etc..) are not remembered when you restart KDevelop, but
 from what I see they are correctly saved/restored in each project's
 settings (in the plugins section).

I meant tabs like New File, File Selector, ... 
These are not contained in the project settings AFAICS.

 Could you please check that the bug is still present in KDevelop 3.3.4
 and if so please elaborate on your usecase and the expected behaviour?

I tried kedevelop/unstable and it has got the same behaviour as before.

How to reproduce:
* configure KDevelop to use Tabbed pages mode
* open a project, open some source files
* arrange the source window so that it fills at least half the width of the 
screen
* close some of the tabs (New File, ...), say all but Classes
* exit kdevelop
* restart kdevelop
You'll get (at least I do get) all tabs on the left which I deselected
and a source window of 200 by 250 pixels.

The use case is being able to start programming when you start 
kdevelop instead of having to configure it each time you do.

Ciao,
Eike


pgpYenuvPc4aH.pgp
Description: PGP signature


Bug#377915: Can't change sample rate

2006-08-30 Thread Daniel James

Hi Günter,


I think this is at least worth a wishlist
bug against jackd, because jackd should tell us that it can't do
the samplerate we asked for.


I agree, at the moment it's confusing for people who have this type of 
sound chipset, and it seems these are very common now. Jack already 
prints a message when it cannot provide the 32-bit interface the user 
requests, falling back to 24, then 16 bit. So it makes sense to provide 
a similar sort of error message for sample rate.


 Just checked on my installation and jackd

accepts a -r 200 without a complaint.


That does seem a little crazy :-)


Also, I wonder why the oss driver seemed to work.


According to Takashi, because the OSS backend resamples by default. This 
is the most appropriate behaviour for consumer-type sound applications. 
For example, if your browser plays a Flash animation with a 22kHz 
soundtrack directly to a 48kHz interface, the sound is raised in pitch 
accordingly.


Thanks for your help closing this bug :-)

Cheers!

Daniel


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



Bug#381979: Hint to solve the bug

2006-08-30 Thread Attilio Fiandrotti
This thread [1] started on directfb-dev by Davide Viti contains some 
hints about how to set the correct keymap on dfb.


Attilio

[1] http://mail.directfb.org/pipermail/directfb-dev/2006-August/002216.html


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



Bug#385293: batik: build-depends on libgnujaxp-java, which is RC-buggy

2006-08-30 Thread Steve Langasek
Package: batik
Version: 1.6-2
Severity: serious

The batik package currently build-depends on libgnujaxp-java, which
according to bug #381014 is due for removal from the archive.  In addition,
libgnujaxp-java is RC-buggy, and will shortly be removed from etch.  Please
update your package to build-depend on the recent gnu classpath instead of
on libgnujaxp-java.

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


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



Bug#314847: maildrop does not deliver because of dotlock problem

2006-08-30 Thread Josip Rodin
On Mon, Aug 28, 2006 at 05:04:40PM +0200, Damien Wyart wrote:
   /usr/bin/maildrop: error while loading shared libraries:
   libcourierauth.so.0: cannot open shared object file: No such file or 
 directory
 
 So the problem of dependency on courier-authlib is still the same.
 Installing maildrop should have it work by default, not complain on
 a missing lib !

BTW, it turned out that you are completely correct in this regard.
The dependency on libcourierauth.so.0 is fully necessary (unlike the
plugins) and the courier-authlib package lacks the shlibs file needed
to generate one automatically.

For now maildrop has a fixed dependency, and later when bugs filed against
courier-authlib are fixed (#378249 and/or #378241), it will get it
automatically.

-- 
 2. That which causes joy or happiness.


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



Bug#385294: konsole: vi/vim causes titlebar text repetition

2006-08-30 Thread João Batista
Package: konsole
Version: 4:3.5.4-2
Severity: minor

The vi/vim editor causes the text in konsole's title bar to be repeated. 
The anomalous behavior is reproduced in konsole but not in other console 
terminal applications such as xterm or rxvt.

For example, invoking vi (e.g. without any file) in a xterm changes the 
xterm's titlebar text to [No Name] - VIM, whereas in konsole the text 
in the titlebar shows [No Name] - VIM - Shell - Konsole.

After a few invocations, the text in xterm's titlebar remains xterm, 
whereas in konsole has grown to e.g. 
Shell - Konsole - Shell - Konsole - Shell - Konsole Shell - Konsole.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (200, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.11-kanotix-2
Locale: LANG=C, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages related to this bug:
ii  rxvt 2.6.4-10VT102 terminal emulator for the X 
ii  vim  7.0-035+1   Vi IMproved - enhanced vi editor
ii  xterm210-3   X terminal emulator

Versions of packages konsole depends on:
ii  kdelibs4c2a  4:3.5.4-3   core libraries and binaries for al
ii  libc62.3.6.ds1-3 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-11  GCC support library
ii  libstdc++6   4.1.1-11The GNU Standard C++ Library v3
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  libxtst6 1:1.0.1-5   X11 Testing -- Resource extension 

konsole recommends no packages.

-- no debconf information


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



Bug#314847: maildrop does not deliver because of dotlock problem

2006-08-30 Thread Damien Wyart
* Josip Rodin [EMAIL PROTECTED] [2006-08-30 11:51]: For now maildrop
 has a fixed dependency, and later when bugs filed against
 courier-authlib are fixed (#378249 and/or #378241), it will get it
 automatically.

Ok, thanks for the information. But I still do not understand why
depending on courier-authlib is necessary at all. I think this is
necessary when courier is used as part of a courier server, but
I thought the maildrop package of debian was intended to be used
standalone.

So why not a maildrop package, with maildrop compiled
using --disable-authlib and not requiring any courier lib and
a courier-maildrop package, with the appropriate dependancies on courier
libs ? What do you think ?

In my case, when I was using maildrop compiled by hand, it did not have
any dependancy on courier-authlib, and it worked fine. I did not have to
use --disable-authlib because the lib was not on my system, so I guess
it is present on the build machine of Debian, and gets enabled by
default during the build of the official package.

-- 
Damien Wyart


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



Bug#314847: maildrop does not deliver because of dotlock problem

2006-08-30 Thread Josip Rodin
On Wed, Aug 30, 2006 at 12:08:11PM +0200, Damien Wyart wrote:
 Ok, thanks for the information. But I still do not understand why
 depending on courier-authlib is necessary at all. I think this is
 necessary when courier is used as part of a courier server, but
 I thought the maildrop package of debian was intended to be used
 standalone.

Yes, it is used standalone, and courier-authlib does not hurt that.
It merely facilitates people connecting to Courier or LDAP or MySQL or
something when they want to keep users in those places. This is useful,
and the inclusion of courier-authlib dependency is indeed intentional.

If you don't run maildrop as root, the -d option is practically useless,
as it has always been. If you don't need it, don't use it, and all is well.

I will keep the bug report open until I get a final say from the upstream
as far as the semantics of the -d option are concerned. Sam indicated to me
already that he doesn't think this is particularly hurtful.
Once the normal-user-using--d problem is resolved one way or another,
I'll close the bug report.

-- 
 2. That which causes joy or happiness.


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



Bug#384922: nfs-kernel-server: root_squash is broken

2006-08-30 Thread Paul Szabo
retitle 384922 NFS insecure without support for squashing multiple groups
tags 384922 security
severity 384922 critical
thanks

Dear Steinar,

 ... You may want to actually talk to the NFS kernel server people ...

Huh? I thought that is what have I been doing until now! (Oops, my mistake,
package nfs-kernel-server does not come close...)

Funny: you meekly accept that NFS is hopelessly insecure and no security
conscious person will ever use it. Do you not find that offensive? (Not my
comment: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=299007;msg=276 .)

Funny: all it would take is a tiny policy change, to be permitted to drop
/usr/local things from root's PATH, or to remove group staff writability
from those things. Everyone seems to know those should be done...

Thanks for your help,

Paul Szabo   [EMAIL PROTECTED]   http://www.maths.usyd.edu.au/u/psz/
School of Mathematics and Statistics   University of SydneyAustralia


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



Bug#384426: Temporary solution from the DSA #1155-2

2006-08-30 Thread Philipp Vogt
A temporary solution of the problem is mentioned in the DSA #1155-2
(WARNING! Using stable-proposed-updates can break things. Use at your own
risk!):

It turned out that the sendmail binary depends on libsasl2 (= 2.1.19.dfsg1)
which is neither available in the stable nor in the the security archive.
This version is scheduled for the inclusion in the next update of the
stable release, though.

You'll have to download the referenced file for your architecture from
below and install it with dpkg -i.

As an alternative, temporarily adding the following line to
/etc/apt/sources.list will mitigate the problem as well:

  deb http://ftp.debian.de/debian stable-proposed-updates main

Debian GNU/Linux 3.1 alias sarge


  Source archives:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/cyrus-sasl2_2.1.19.dfsg
1-0sarge2.diff.gz
  Size/MD5 checksum:31919 f7042b666907ca4294018bc764edce96
 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/cyrus-sasl2_2.1.19.dfsg
1-0sarge2.dsc
  Size/MD5 checksum: 1131 aca52362519bd66cda473678eaf2130f
 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/cyrus-sasl2_2.1.19.dfsg
1.orig.tar.gz
  Size/MD5 checksum:  1576960 f2fa0ce4d8b3dc37ca71fb5b5d57cd8b

  Alpha architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_alpha.deb
  Size/MD5 checksum:   277878 30d488b82d54f006662f52609da94f0a

  HP Precision architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_hppa.deb
  Size/MD5 checksum:   273306 46dec2833097a7006953004c712208f6

  ARM architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_arm.deb
  Size/MD5 checksum:   260076 17cbbf95b9ba82428fce3721d8904fab

  Intel IA-32 architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_i386.deb
  Size/MD5 checksum:   258784 2f307e6af80a02a3e559020a31f00c94

  Motorola 680x0 architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_m68k.deb
  Size/MD5 checksum:   253302 27e9e53ad9f430d5d731236f0fb7c5ca

  Big endian MIPS architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_mips.deb
  Size/MD5 checksum:   260866 8109e94b29d2f6a5cb1bedd0ce729ae9

  Little endian MIPS architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_mipsel.deb
  Size/MD5 checksum:   261078 2e6cd2f4f8e8fa7cb6863e6378cf77e9

  PowerPC architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_powerpc.deb
  Size/MD5 checksum:   268388 d3f233ab1a90934e6578b5ccebd5543b

  Sun Sparc architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_sparc.deb
  Size/MD5 checksum:   257648 06552692dcf73bd6db29ca5e12ea90bf

  IBM S/390 architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_s390.deb
  Size/MD5 checksum:   265332 586764113955d451c9ae16e404c7ea37

  Intel IA-64 architecture:

 
http://ftp.debian.org/debian/pool/main/c/cyrus-sasl2/libsasl2_2.1.19.dfsg1-0
sarge2_ia64.deb
  Size/MD5 checksum:   297874 1b2e9357178ead1e33616513c8402080



smime.p7s
Description: S/MIME cryptographic signature


Bug#192463: just for guys Maryellen

2006-08-30 Thread Lidia Ruffin
There are 100's of websites to buy medication for Erectile Difficulties, but 
not for 1.56 cents a pill. We have some of the lowest pricing on the internet.
If you are already paying hundreds of dollars, then you should visit:

http://j97u7a6qow7otj1mlmju6jjj.hockli.st



Sincerely,

Lidia Ruffin
Customer Service Team





long arch



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



Bug#377689: Cannot mount usb key (and I read the archives)

2006-08-30 Thread Jean-Christophe Dubacq
On Tue, Aug 29, 2006 at 02:27:37PM +0200, Jean-Christophe Dubacq wrote:
 Hello,
 
 I am suffering from exactly the same symptoms as described in bug
 #377689: when inserting a usb key, I get the A security policy in place
 prevents this sender from sending this message to this recipient, see
 message bus configuration file (rejected message had interface
 org.freedesktop.Hal.Device.Volume member Mount error name (unset)
 destination org.freedesktop.Hal) .

I must give a few precisions here:
- I am using hal 0.5.7.1-1 (which includes the fix mentioned in 377689)
- I do not doubt that this works for people : I have tested, and it
  works when my user is added to group plugdev via /etc/group, not when
  my user is granted plugdev group through /etc/security/group.conf

-- 
JCD


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



Bug#385296: tries to shutdown invalid file descriptor on amd64

2006-08-30 Thread Christoph Berg
Package: libwvstreams4.2-extras
Version: 4.2.2-2.1
Severity: grave

Hi,

retchmal is broken on amd64:

[0] [EMAIL PROTECTED]:~ 1j $retchmail -F
A* Retrieve mail from [EMAIL PROTECTED]:995 into cb.
A* Aborted.  Error was: Can't get SSL context!

stracing it yields:

[...]
4979  open(/etc/host.conf, O_RDONLY)  = 3
4979  fstat(3, {st_mode=S_IFREG|0644, st_size=9, ...}) = 0
4979  mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) 
= 0x2a9556f000
4979  read(3,  unfinished ...
4978  shutdown(4294967295, 0 /* receive */) = -1 EBADF (Bad file descriptor)
4978  write(1, A, 1)  = 1
4978  write(1, * , 2) = 2
4978  write(1, Retrieve mail from [EMAIL PROTECTED]..., 51) = 51
[...]

This looks like a type problem (4294967295 = 2^32 - 1) in wvstreams. I
had a look at the source but couldn't spot any obvious errors.

Recently having upgraded from sarge/i386 to etch/amd64, not being able
to read -private at the moment could be said to be an advantage, I'd
prefer to be able to read my other mail though :)


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

Versions of packages libwvstreams4.2-extras depends on:
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libdb4.2 4.2.52-23.1 Berkeley v4.2 Database Libraries [
ii  libpam0g 0.79-3.1Pluggable Authentication Modules l
ii  libslp1  1.2.1-5 OpenSLP libraries
ii  libssl0.9.8  0.9.8b-2SSL shared libraries
ii  libwvstreams4.2-base 4.2.2-2.1   C++ network libraries for rapid ap
ii  libxplc0.3.130.3.13-1Light weight component system
ii  zlib1g   1:1.2.3-13  compression library - runtime

libwvstreams4.2-extras recommends no packages.

-- no debconf information

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#385147: When php4-mysql is enabled, php prints Illegal Instruction and terminates

2006-08-30 Thread Steve Langasek
reassign 385147 libmysqlclient15off
forcemerge 383759 385147
thanks

On Wed, Aug 30, 2006 at 09:18:08AM +0100, Jamie Robert Thompson wrote:

  Anyway, I suspect the problem is actually bug #383759, which has for some
  reason been downgraded and tagged as 'wontfix'.  Can you tell me what
  processor you have in the system you're running this on?

 Oooh. You're good at this problem-solving lark. Yup, it's a Cyrix P166+.

 mrlinux:~# cat /proc/cpuinfo
 processor   : 0
 vendor_id   : unknown
 cpu family  : 4
 model   : 0
 model name  : 486
 stepping: unknown
 fdiv_bug: no
 hlt_bug : no
 f00f_bug: no
 coma_bug: no
 fpu : yes
 fpu_exception   : no
 cpuid level : -1
 wp  : yes
 flags   :
 bogomips: 132.60

Ok, reassigning  merging.

 Oh, one more thing, the problem seems to be ( according to the other bug
 reports ) that the CPU's lack of the CPUID instruction seems to be the
 problem.

 Well, I happen to know for a fact that the processor actually does have a
 CPUID instruction, it's just disabled by default. It can be enabled quite
 easily, which might be an avenue of enquiry for this problem.

Hrm, how do you go about enabling it then?  Is this something that should be
referred to the kernel team?

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



Bug#385297: avahi-daemon: daemon does not start: assertion failed in avahi_s_entry_group_reset

2006-08-30 Thread Jean-Christophe Dubacq
Package: avahi-daemon
Version: 0.6.13-1
Severity: grave
Justification: renders package unusable

The daemon does not start after switching from 0.6.12-1 to 0.6.13-1.
Reinstalling 0.6.12-1 for the avahi suite works fine as a workaround.
NB: please downgrade the severity if this is specific to my setup.

Detailed messages:
Paramétrage de avahi-daemon (0.6.13-1) ...
Installation de la nouvelle version du fichier de configuration
/etc/dbus-1/syst em.d/avahi-dbus.conf ...
Reloading system message bus config.
Restarting Avahi mDNS/DNS-SD Daemon: avahi-daemonTimeout reached while
wating fo r return value
Could not receive return value from daemon process.
 failed!

[EMAIL PROTECTED]:/tempo/chantilly/bin# /etc/init.d/avahi-daemon stop
Stopping Avahi mDNS/DNS-SD Daemon: avahi-daemonProcess 20977 died: No
such process; removing PID file. (/var/run/avahi-daemon//pid)
 failed!
[EMAIL PROTECTED]:/tempo/chantilly/bin# /etc/init.d/avahi-daemon start
Starting Avahi mDNS/DNS-SD Daemon: avahi-daemonTimeout reached while
wating for return value
Could not receive return value from daemon process.
 failed!
[EMAIL PROTECTED]:/tempo/chantilly/bin# /etc/init.d/avahi-daemon stop
Stopping Avahi mDNS/DNS-SD Daemon: avahi-daemonProcess 21159 died: No
such process; removing PID file. (/var/run/avahi-daemon//pid)
 failed!
[EMAIL PROTECTED]:/tempo/chantilly/bin# avahi-daemon
Found user 'avahi' (UID 119) and group 'avahi' (GID 119).
Successfully dropped root privileges.
avahi-daemon 0.6.13 starting up.
Successfully called chroot().
Successfully dropped remaining capabilities.
Loading service file /services/internet.service.
Loading service file /services/intranet-1.service.
Loading service file /services/intranet.service.
Loading service file /services/sftp.service.
Loading service file /services/ssh.service.
New relevant interface eth0.IPv4 for mDNS.
Joining mDNS multicast group on interface eth0.IPv4 with address
10.10.0.156.
Network interface enumeration completed.
Registering new address record for 10.10.0.156 on eth0.
avahi-daemon: registering [ebene.local]: entry.c:1146:
avahi_s_entry_group_reset: Assertion `g' failed.
Abandon

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

Versions of packages avahi-daemon depends on:
ii  adduser  3.97Add and remove users and groups
ii  dbus 0.62-4  simple interprocess messaging syst
ii  libavahi-common3 0.6.13-1Avahi common library
ii  libavahi-core4   0.6.13-1Avahi's embeddable mDNS/DNS-SD lib
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libcap1  1:1.10-14   support for getting/setting POSIX.
ii  libdaemon0   0.10-1  lightweight C library for daemons
ii  libdbus-1-2  0.62-4  simple interprocess messaging syst
ii  libexpat11.95.8-3.2  XML parsing C library - runtime li

Versions of packages avahi-daemon recommends:
ii  libnss-mdns   0.8-4  NSS module for Multicast DNS name 

-- debconf-show failed



Bug#385257: No matching plugin was found

2006-08-30 Thread Giuseppe Sacco
Hi Eric,

[...]
 Hi Giuseppe,

 you've downloaded the EE (Enterprise/Server version), make-jpkg does only
 work with Java SE (Desktop), so you need to download the Java SE JDK.
[...]

Thanks for the info, I will try the new non-free packages or I will
download the SE version since my application doesn't work (yet?) with any
current free JVM.

Bye,
Giuseppe



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



Bug#385295: siege segfaults

2006-08-30 Thread Peter Palm
Package: siege
Version: 2.65-2
Severity: grave
Justification: renders package unusable


When running siege, it just segfaults.

strace -f siege:

execve(/usr/bin/siege, [siege], [/* 43 vars */]) = 0
uname({sys=Linux, node=pcpeterp, ...}) = 0
brk(0)  = 0x805c000
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
mmap2(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xa7ffe000
access(/etc/ld.so.preload, R_OK)  = -1 ENOENT (No such file or directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=104294, ...}) = 0
mmap2(NULL, 104294, PROT_READ, MAP_PRIVATE, 3, 0) = 0xa7fe4000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/tls/i686/cmov/libpthread.so.0, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240x\210..., 512) = 
512
fstat64(3, {st_mode=S_IFREG|0755, st_size=91306, ...}) = 0
mmap2(0x42883000, 70104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) 
= 0x42883000
mmap2(0x42891000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0xe) = 0x42891000
mmap2(0x42893000, 4568, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x42893000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/tls/i686/cmov/libdl.so.2, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\334..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=11176, ...}) = 0
mmap2(0x4287d000, 12404, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) 
= 0x4287d000
mmap2(0x4287f000, 8192, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1) = 0x4287f000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/i686/cmov/libssl.so.0.9.8, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\r\6..., 512) = 512
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xa7fe3000
fstat64(3, {st_mode=S_IFREG|0644, st_size=254988, ...}) = 0
mmap2(0x43056000, 256420, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) 
= 0x43056000
mmap2(0x43091000, 16384, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x3a) = 0x43091000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/i686/cmov/libcrypto.so.0.9.8, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\0}D4\0..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=1273696, ...}) = 0
mmap2(0x4479d000, 1284484, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 
0) = 0x4479d000
mmap2(0x448bf000, 86016, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x122) = 0x448bf000
mmap2(0x448d4000, 10628, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x448d4000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/lib/tls/i686/cmov/libc.so.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240\357..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0755, st_size=1244600, ...}) = 0
mmap2(0x4274a000, 1247388, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 
0) = 0x4274a000
mmap2(0x42871000, 28672, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x127) = 0x42871000
mmap2(0x42878000, 10396, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x42878000
close(3)= 0
access(/etc/ld.so.nohwcap, F_OK)  = -1 ENOENT (No such file or directory)
open(/usr/lib/libz.so.1, O_RDONLY)= 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\366..., 512) = 512
fstat64(3, {st_mode=S_IFREG|0644, st_size=79832, ...}) = 0
mmap2(0x428be000, 81456, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) 
= 0x428be000
mmap2(0x428d1000, 4096, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x12) = 0x428d1000
close(3)= 0
mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 
0xa7fe2000
mprotect(0x42871000, 20480, PROT_READ)  = 0
set_thread_area({entry_number:-1 - 6, base_addr:0xa7fe2b00, limit:1048575, 
seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, 
useable:1}) = 0
munmap(0xa7fe4000, 104294)  = 0
set_tid_address(0xa7fe2b48) = 13070
rt_sigaction(SIGRTMIN, {0x428874c0, [], SA_SIGINFO}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x42887420, [], SA_RESTART|SA_SIGINFO}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM_INFINITY}) = 0
uname({sys=Linux, node=pcpeterp, ...}) = 0
brk(0)  = 0x805c000

Bug#376625: maildrop: Add mail::delivery-agent tag

2006-08-30 Thread Josip Rodin
On Tue, Jul 04, 2006 at 12:24:27AM +0100, Reuben Thomas wrote:
 Package: maildrop
 Severity: minor
 
 Presumably maildrop, being an MDA, should have the
 mail::delivery-agent tag.

I've tried to catch up with this whole debtags thingy, but I can't seem to
figure out whether adding tags to packages is still current. It looks like
they are added to a central repository instead. Am I correct?

-- 
 2. That which causes joy or happiness.


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



Bug#385250: checkgmail: New release

2006-08-30 Thread Sandro Tosi

Hi Guilherme,


New version.
https://sourceforge.net/project/showfiles.php?group_id=137480package_id=188600


Thanks for your report, but those are development versions (as you can
see, they are under checkgmail-unstable branch).

I'll wait for a new stable release, I suppose will be 1.10, to upgrade
the package.

Regards,
Sandro

--
Sandro Tosi (aka Morpheus, matrixhasu)
My (little) site: http://matrixhasu.altervista.org/


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



Bug#385299: umbrello: crash in a non kde environment

2006-08-30 Thread Pietro Abate
Package: umbrello
Version: 4:3.5.4-1
Severity: important

Hi,
I'm using umbrello in a gnome environment. With the last update,
it crashes trying to open my project.

this is the crash trace:

kbuildsycoca running...
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 18
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 17
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 18
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 3389
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 3389
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 6219
umbrello: ERROR: UMLObject::resolveRef(): cannot find type with id 6219
umbrello: ERROR: UMLListView::moveObject(Datatypes): Cannot move onto self
KCrash: Application 'umbrello' crashing...
Could not find 'drkonqi' executable.
KCrash cannot reach kdeinit, launching directly.

If necessary I can send my xmi file (created with the previous version of 
umbrello itself).

:)
pietro

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-686
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ANSI_X3.4-1968) (ignored: LC_ALL 
set to C)

Versions of packages umbrello depends on:
ii  kdelibs4c2a4:3.5.4-3 core libraries and binaries for al
ii  libc6  2.3.6.ds1-4   GNU C Library: Shared libraries
ii  libgcc11:4.1.1-11GCC support library
ii  libqt3-mt  3:3.3.6-4 Qt GUI Library (Threaded runtime v
ii  libstdc++6 4.1.1-11  The GNU Standard C++ Library v3
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  libxslt1.1 1.1.17-4  XSLT processing library - runtime 

umbrello recommends no packages.

-- no debconf information


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



  1   2   3   4   5   >