Bug#383415: rdiff-backup crashes with No module named rdiff_backup.Main error

2006-08-17 Thread Michael Ott
Package: rdiff-backup
Version: 1.1.5-2
Severity: normal

Got the following error messages:
Traceback (most recent call last):
  File /usr/bin/rdiff-backup, line 20, in ?
import rdiff_backup.Main
ImportError: No module named rdiff_backup.Main

The path of the packages is for phython 2.3. Can anyone update this path


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

Versions of packages rdiff-backup depends on:
ii  libc6 2.3.6-19   GNU C Library: Shared libraries
ii  librsync1 0.9.7-1Library which implements the rsync
ii  python2.4.3-11   An interactive high-level object-o

rdiff-backup recommends no packages.

-- no debconf information



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



Bug#383418: lvm2: pvmove fails and then next action on vg hangs in uninterruptable sleep mode

2006-08-17 Thread Alan Chandler
Package: lvm2
Version: 2.02.06-2
Severity: critical
Justification: breaks the whole system


I have twice now attempted a pvmove in order to clear one of my disks.  The 
same failure has occured twice.

once pvmove has failed, any subsequent attempt at access to logical volumes 
involved in the move  in the
volume group effected hangs the process and htop shows it to be in 
interruptable sleep mode.  As a result it
cannot be killed. This includes a shutdown hanging the machine, which 
ultimately means a hard reset.

Upon reboot, the effected lv(s) fail to mount, but the boot process goes ahead 
anyway, leaving the system writing 
new data into the parent directory mount point, ultimately making recovery of 
all data a very tricky process.

Effectively the only approach is to boot into single user mode and then do a 
pvmove --abort

Here is the output from the pvmove with the first act that causes the problem.  
In my case the three lv's that have
extents to move are the ones that fail to mount on re-boot.  Note also the 
lvdisplay following this failure has hung,
as has a pvmove --abort from another terminal.

[EMAIL PROTECTED] ~# pvmove -v -i 20 --background /dev/hdb1
Wiping cache of LVM-capable devices
Finding volume group vg
Archiving volume group vg metadata (seqno 52).
Creating logical volume pvmove0
Moving 768 extents of logical volume vg/postgres
Moving 63 extents of logical volume vg/fileshare
Moving 476 extents of logical volume vg/alan
Moving 0 extents of logical volume vg/www
Moving 0 extents of logical volume vg/webapps
Moving 0 extents of logical volume vg/git
Moving 0 extents of logical volume vg/photos
Moving 0 extents of logical volume vg/music
Found volume group vg
Found volume group vg
Found volume group vg
Updating volume group metadata
Creating volume group backup /etc/lvm/backup/vg (seqno 53).
Found volume group vg
Found volume group vg
Suspending vg-postgres (254:4)
Found volume group vg
Found volume group vg
Suspending vg-fileshare (254:5)
Found volume group vg
Found volume group vg
Suspending vg-alan (254:6)
Found volume group vg
Creating vg-pvmove0
Loading vg-pvmove0 table
  device-mapper: reload ioctl failed: Invalid argument
  ABORTING: Temporary mirror activation failed.  Run pvmove --abort.
Found volume group vg
Loading vg-pvmove0 table
  device-mapper: reload ioctl failed: Invalid argument
Loading vg-postgres table
  device-mapper: reload ioctl failed: Invalid argument
Found volume group vg
Loading vg-pvmove0 table
  device-mapper: reload ioctl failed: Invalid argument
Loading vg-fileshare table
  device-mapper: reload ioctl failed: Invalid argument
Found volume group vg
Loading vg-pvmove0 table
  device-mapper: reload ioctl failed: Invalid argument
Loading vg-alan table
  device-mapper: reload ioctl failed: Invalid argument
[EMAIL PROTECTED] ~# lvdisplay vg







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

Versions of packages lvm2 depends on:
ii  debconf [debconf-2.0]1.5.3   Debian configuration management sy
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libdevmapper1.02 2:1.02.07-1 The Linux Kernel Device Mapper use
ii  libncurses5  5.5-2   Shared libraries for terminal hand
ii  libreadline5 5.1-7   GNU readline and history libraries
ii  libselinux1  1.30-1  SELinux shared libraries
ii  libsepol11.12-1  Security Enhanced Linux policy lib
ii  lvm-common   1.5.20  The Logical Volume Manager for Lin

lvm2 recommends no packages.

-- debconf information:
  lvm2/snapshots:


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



Bug#383417: cdb_seek returns incorrect data length

2006-08-17 Thread Daiki Ueno
Package: tinycdb
Version: 0.74-1
Tags: patch

If dlenp arg of cdb_seek point to the integer variable whose value is 0,
cdb_seek does not set dlenp correctly.  This behavior is not documented
and I think it is unintended.  Due to this, the dbskkd-cdb package
compiled with gcc-4.0 does not work well.

To reproduce

$ echo +3,5:one-Hello\n | cdbmake test.cdb test.cdb.tmp
$ gcc -o testcdb testcdb.c -lcdb
$ ./testcdb ./test.cdb one
dlen = 0 # - it should be 5
$ cat testcdb.c
#include stdio.h
#include string.h
#include assert.h
#include sys/types.h
#include sys/stat.h
#include fcntl.h
#include cdb.h

int main (int argc, char **argv)
{
  int fd, ret;
  const char *key;
  unsigned klen, dlen = 0; // if dlen = 1, it works as expected

  assert (argc == 3);
  fd = open (argv[1], O_RDONLY);
  if (fd == -1)
{
  perror (open);
  return 1;
}

  key = argv[2];
  klen = strlen (key);
  ret = cdb_seek (fd, key, klen, dlen);
  if (ret == -1)
return 1;
  else if (ret == 0)
printf (not found);
  else
printf (dlen = %d\n, dlen);

  return 0;
}

Here is a patch to fix it

--- cdb_seek.c~ 2006-08-17 15:02:16.0 +0900
+++ cdb_seek.c  2006-08-17 15:02:43.0 +0900
@@ -75,7 +75,7 @@
/* read the key from file and compare with wanted */
unsigned l = klen, c;
const char *k = (const char*)key;
-   if (*dlenp)
+   if (dlenp)
  *dlenp = cdb_unpack(rbuf + 4); /* save value length */
for(;;) {
  if (!l) /* the whole key read and matches, return */

Regards,
-- 
Daiki Ueno


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



Bug#383416: horde3: 3.0.11 fixes XSS issues

2006-08-17 Thread Geoff Crompton
Package: horde3
Severity: normal

Horde 3.0.11 fixes some XSS issues, according to
http://lists.horde.org/archives/announce/2006/000287.html

This is being tracked at secfocus:
http://www.securityfocus.com/bid/19544

No CVE yet.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.16-2-xen-686
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)


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



Bug#383317: ripperx hangs at cdparanoia/modprobe

2006-08-17 Thread tony mancill
Hello Michelle,

Can you test with cdparanoia alone?  ripperx doesn't doesn't invoke modprobe
(obviously it does invoke cdparanoia), and sounds more like a problem with
how cdparanoia is interacting with the kernel on your system.  It might be
helpful to see the contents of dmesg after this occurs.

Thanks,
tony mancill

Michelle Konzack wrote:
 Package: ripperx
 Version: 2.6.4-2
 Severity: normal
 
 Error description:
 
 Today I have installed ripperx and after configuring, I have tried to
 scan a CD but it hangs at cdparanoia/modprobe.  After waiting some time
 (~15 minutes) the ripperx window was not more updated (I can erase
 contents with other windows) and I had 6 open Error boxes without any
 contents...
 
 ^C does not work, even if ripperx was started from an xterm to see
 possible error messages.  only a 'kill -9 PID' had helped and then I
 have had to kill the pids of cdparanoia and modeprobe.
 
 After arround 1/2 hour the riperx window comes back and show me an Error
 Code 14 (can not open CD-Drive) which is not possibel, because all other
 tools (cdda, cdtools, xmms, vlc, xine, ...) can access the drive which
 is definitivly /dev/scd0 (DVD/CD).
 
 If you need more informations, please let me know.
 
 Greetings
 Michelle Konzack
 
 
 
 -- System Information
 Debian Release: 3.1
 Kernel Version: Linux michelle1.private 2.4.27-2-386 #1 Wed Aug 17 09:33:35 
 UTC 2005 i686 GNU/Linux
 
 
 Versions of the packages ripperx depends on:
 ii  cdparanoia 3a9.8-11   An audio extraction tool for sampling CDs.
 ii  libc6  2.3.2.ds1-22   GNU C Library: Shared libraries and Timezone




signature.asc
Description: OpenPGP digital signature


Bug#383362: New libc breaks GnuPG

2006-08-17 Thread Martin Schulze
Aurelien Jarno wrote:
 Martin Schulze wrote:
 Package: libc6
 Version: 2.3.6-16 (and newer)
 
 When I install a libc6 that is compiled with GCC 4.1 instead of 4.0
 gnupg (1.4.5-1) doesn't want to work anymore.
 'gnupg --clearsign  file' gets a segmentation fault.  Compiling
 2.3.6-16 with GCC 4.0 again makes the problem go away.
 
 2.3.6-19 still causes the segfault.  Not sure if I can compile it
 with GCC 4.0, though (first trial failed).
 
 I'm not sure if other people notice the same problem or if
 it's just me...
 
 Could you please tell us the architecture you are using, your kernel, 
 and also do an 'ldd /usr/bin/gpg'?

finlandia!joey(tty6):~ uname -a
Linux finlandia 2.4.31 #4 Tue Sep 20 08:51:25 CEST 2005 i586 GNU/Linux
finlandia!joey(tty6):~ ldd /usr/bin/gpg
libresolv.so.2 = /lib/libresolv.so.2 (0x4000f000)
libz.so.1 = /usr/lib/libz.so.1 (0x40021000)
libbz2.so.1.0 = /lib/libbz2.so.1.0 (0x40035000)
libreadline.so.5 = /lib/libreadline.so.5 (0x40045000)
libdl.so.2 = /lib/libdl.so.2 (0x40075000)
libusb-0.1.so.4 = /usr/lib/libusb-0.1.so.4 (0x4007a000)
libc.so.6 = /lib/libc.so.6 (0x40082000)
libncurses.so.5 = /usr/lib/libncurses.so.5 (0x401a4000)
/lib/ld-linux.so.2 (0x8000)
finlandia!joey(tty6):~ dpkg --print-architecture
i386
finlandia!joey(tty6):~

 It works correctly here, but I am not sure we are using the same setup.

That's what I feared...

Regards,

Joey

-- 
Every use of Linux is a proper use of Linux.  -- Jon 'maddog' Hall

Please always Cc to me when replying to me on the lists.


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



Bug#383362: New libc breaks GnuPG

2006-08-17 Thread Martin Schulze
Aurelien Jarno wrote:
 Ok, fix found, checked in our SVN, it will be in the next upload
 (probably soon). Thanks to Denis Barbier for the hint.

Cool!  I'm eager to try it out with one of the next upgrades.

Regards,

Joey

-- 
Every use of Linux is a proper use of Linux.  -- Jon 'maddog' Hall

Please always Cc to me when replying to me on the lists.


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



Bug#383419: Doesn't work

2006-08-17 Thread grfgguvf

Package: moc-ffmpeg-plugin
Version: 2.4.0-2
Severity: normal

After installing it, moc still cannot play AAC+


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



Bug#382681: [Pkg-ltsp-devel] Bug#382681: ltsp-server: inetd or netbase dependency?

2006-08-17 Thread Petter Reinholdtsen
[Otavio Salvador]
 Do that. I think is the right way to solve it.

At least until netbase no longer depend on inetd.  Luckily the openbsd
variant is the prefered one for netbase, so we get a version on the
client who refuses to start if there is no services configured for it,
and thus save us a few kilobytes of memory. :)

Friendly,
-- 
Petter Reinholdtsen


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



Bug#372151: dlocate: please rename atomically

2006-08-17 Thread era eriksson
On Thu, 8 Jun 2006 10:45:14 -0400, Justin Pryzby
[EMAIL PROTECTED] wrote:
  +unlink($dbfile.old) if ( -e $dbfile.old ) ;
  +link($dbfile, $dbfile.old) if ( -e $dbfile ) ;

Erm, shouldn't you take care to leave .old if no new $dbfile exists?

+if (-e $dbfile) {
+  unlink($dbfile.old) if (-e $dbfile.old);
+  link($dbfile, $dbfile.old);
+}

Something like that?

/* era */

-- 
If this were a real .signature, it would suck less.  Well, maybe not.



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



Bug#382673: dpkg-dev: dpkg-buildpackage should support building against foo_0.42.orig.tar.bz2

2006-08-17 Thread Andreas Metzler
On 2006-08-17 Guillem Jover [EMAIL PROTECTED] wrote:
 On Sat, 2006-08-12 at 17:57:23 +0200, Andreas Metzler wrote:
 Package: dpkg-dev
 Version: 1.13.22
 Severity: wishlist

 dpkg-source in sid supports unpacking packages using bz2 compression,
 i.e.
 foo_0.5.9-1.diff.gz  foo_0.5.9-1.dsc foo_0.5.9.orig.tar.bz2

 It would nice if dpkg-buildpackage also supported producing these
 packages. I would appreciate this a lot, as it would allow me to ship
 gnutls' sourcecoding without re-packing it. - Upstream nowadays only
 offers tar.bz2, but no tar.gz.

 Sorry but this is not going to be possible until a version of dpkg
 which supports this is in stable.

Hello,
Do we require to be able to extraxt unstable's source packages with
stable's dpkg? Why? There are no upgrade issues (As would be for bz2
parts in *binary* packages.).

 Also current dak on ftp-master rejects
 such uploads, until the proper time arrives.

I do understand that there is more required than just changing the
code (dpkg-dev is standard, bzip2 is optional) but I cannot fathom why
this is connected to releasing.

cu andreas
-- 
The 'Galactic Cleaning' policy undertaken by Emperor Zhark is a personal
vision of the emperor's, and its inclusion in this work does not constitute
tacit approval by the author or the publisher for any such projects,
howsoever undertaken.(c) Jasper Ffforde


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



Bug#383420: exim4-config 4.63 should conflict with exim4 4.63

2006-08-17 Thread Yannick Roehlly
Package: exim4-config
Version: 4.63-2
Severity: normal


When ugrading my Debian Sid, I did not notice that I was upgrading
exim4-config but not exim4 packages (the PowerPC packages were not
yet autobuilt).

The post.inst script fails with:

Param�trage de exim4-config (4.63-2) ...
2006-08-17 08:40:01 Exim configuration error in line 519 of 
/var/lib/exim4/config.autogenerated.tmp:
  option forbid_smtp_code unknown
Invalid new configfile /var/lib/exim4/config.autogenerated.tmp
not installing /var/lib/exim4/config.autogenerated.tmp to 
/var/lib/exim4/config.autogenerated

Maybe exim4-config version 4.63 should conflict with previous versions
of exim4 packages to prevent failing partial upgrades.

Sincerely,

Yannick

-- Package-specific info:
Exim version 4.62 #1 built 01-Aug-2006 11:42:07
Copyright (c) University of Cambridge 2006
Berkeley DB: Sleepycat Software: Berkeley DB 4.3.29: (September  6, 2005)
Support for: crypteq iconv() IPv6 GnuTLS move_frozen_messages
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dsearch nis 
nis0 passwd
Authenticators: cram_md5 plaintext
Routers: accept dnslookup ipliteral manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/lib/exim4/config.autogenerated

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

Versions of packages exim4-config depends on:
ii  adduser   3.97   Add and remove users and groups
ii  debconf [debconf-2.0] 1.5.3  Debian configuration management sy

exim4-config recommends no packages.

-- debconf information excluded



Bug#361797: ITP: clewn -- A program to implement full gdb support in the vim editor.

2006-08-17 Thread Y Giridhar Appaji Nag
retitle 361797 RFP: clewn -- A program to implement full gdb support in the vim 
editor.
noowner 361797
thanks

On 06/04/10 16:50 +0530, Y Giridhar Appaji Nag said ...
 
 * Package name: clewn
 * URL : http://clewn.sourceforge.net/
 * License : GPL
   Description : A program to implement full gdb support in the vim editor.

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


signature.asc
Description: Digital signature


Bug#383418: Does libdevmapper1.00 and libdevmapper1.01 have anything to do with it.

2006-08-17 Thread Alan Chandler
Saw a post on linux-lvm mailing list that this sort of problem could be caused 
by device version mismatch between kernel and userspace versions of 
libdevmapper.

As well as libdevmapper1.02 installed, I also had (now removed) 
libdevmapper1.00 and libdevmapper1.01 (not currently removed - just to check 
on what it was doing - will remove shortly) installed.

Although the only library left in the system is libdevmapper.so.1.02, 
libmapperdev1.01 is still doing something during rcS.d bootup other than 
modprobing dm-mod
-- 
Alan Chandler
http://www.chandlerfamily.org.uk


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



Bug#266491: Patch against unstable

2006-08-17 Thread Nigel Williams
Here's another fix for the bug, this time against the unstable
version.

Only in netpbm-free-10.0.fixed/: lib
diff -U3 -r netpbm-free-10.0/pnm/giftopnm.c 
netpbm-free-10.0.fixed/pnm/giftopnm.c
--- netpbm-free-10.0/pnm/giftopnm.c 2003-08-15 14:30:17.0 +
+++ netpbm-free-10.0.fixed/pnm/giftopnm.c   2006-08-17 06:04:41.0 
+
@@ -554,10 +554,12 @@
 static void
 readImageData(FILE * const ifP, 
   xel ** const xels, 
+  bit ** const alphabits, 
   intconst len, 
   intconst height, 
   gifColorMap  cmap, 
-  bool   const interlace) {
+  bool   const interlace,
+ intconst transparent_index) {
 
 unsigned char lzwMinCodeSize;  
 int v;
@@ -587,6 +589,12 @@
 while ((v = lzwReadByte(ifP,FALSE,lzwMinCodeSize)) = 0 ) {
 PPM_ASSIGN(xels[ypos][xpos], 
cmap[CM_RED][v], cmap[CM_GRN][v], cmap[CM_BLU][v]);
+   if (transparent_index != -1 
+   v == transparent_index) {
+   alphabits[ypos][xpos] = PBM_BLACK;
+   } else {
+   alphabits[ypos][xpos] = PBM_WHITE;
+   }
 
 ++xpos;
 if (xpos == len) {
@@ -685,9 +693,8 @@
 
 
 static void
-outputAlpha(FILE *alpha_file, pixel ** const xels, 
-const int cols, const int rows, const int transparent_index,
-unsigned char cmap[3][MAXCOLORMAPSIZE]) {
+outputAlpha(FILE *alpha_file, pixel ** const alphabits, 
+const int cols, const int rows) {
 /*
Output to file 'alpha_file' (unless it is NULL) the alpha mask for the
image 'xels', given that the color whose index in the color map 'cmap' is
@@ -698,35 +705,13 @@
 -*/
 
 if (alpha_file) {
-bit *alpha_row;  /* malloc'ed */
-xel transparent_color;
-
-if (transparent_index != -1) 
-PPM_ASSIGN(transparent_color, 
-   cmap[CM_RED][transparent_index],
-   cmap[CM_GRN][transparent_index],
-   cmap[CM_BLU][transparent_index]
-);
-
-alpha_row = pbm_allocrow(cols);
-
 pbm_writepbminit(alpha_file, cols, rows, FALSE);
-
 {
 int row;
 for (row = 0; row  rows; row++) {
-int col;
-for (col = 0; col  cols; col++) {
-if (transparent_index != -1  
-PNM_EQUAL(xels[row][col], transparent_color))
-alpha_row[col] = PBM_BLACK;
-else 
-alpha_row[col] = PBM_WHITE;
-}
-pbm_writepbmrow(alpha_file, alpha_row, cols, FALSE);
+pbm_writepbmrow(alpha_file, alphabits[row], cols, FALSE);
 }
 }
-pbm_freerow(alpha_row);
 }
 }
 
@@ -860,6 +845,7 @@
 unsigned char buf[16];
 bool useGlobalColormap;
 xel **xels;  /* The image raster, in libpnm format */
+bit **alphabits;  /* The image raster, in libpnm format */
 int cols, rows;  /* Dimensions of the image */
 gifColorMap localColorMap;
 int localColorMapSize;
@@ -878,29 +864,31 @@
 if (!xels)
 pm_error(couldn't alloc space for image );
 
+alphabits = pbm_allocarray(cols, rows);
+if (!alphabits)
+pm_error(couldn't alloc space for alpha map );
+
 if (! useGlobalColormap) {
 int hasGray, hasColor;
 
 readColorMap(ifP, localColorMapSize, localColorMap, 
  hasGray, hasColor);
 transparencyMessage(gif89.transparent, localColorMap);
-readImageData(ifP, xels, cols, rows, localColorMap, 
-  BitSet(buf[8], INTERLACE));
+readImageData(ifP, xels, alphabits, cols, rows, localColorMap, 
+  BitSet(buf[8], INTERLACE), gif89.transparent);
 if (!skipIt) {
 writePnm(imageout_file, xels, cols, rows,
  hasGray, hasColor);
-outputAlpha(alphafile, xels, cols, rows, 
-gif89.transparent, localColorMap);
+outputAlpha(alphafile, alphabits, cols, rows);
 }
 } else {
 transparencyMessage(gif89.transparent, gifScreen.ColorMap);
-readImageData(ifP, xels, cols, rows, gifScreen.ColorMap, 
-  BitSet(buf[8], INTERLACE));
+readImageData(ifP, xels, alphabits, cols, rows, gifScreen.ColorMap, 
+  BitSet(buf[8], INTERLACE), gif89.transparent);
 if (!skipIt) {
 writePnm(imageout_file, xels, cols, rows,
  gifScreen.hasGray, gifScreen.hasColor);
-outputAlpha(alphafile, xels, cols, rows, 
-gif89.transparent, gifScreen.ColorMap);
+outputAlpha(alphafile, 

Bug#293556: data loss - RC

2006-08-17 Thread Werner Koch
On Mon, 14 Aug 2006 14:37, martin f krafft said:

 -rw---  1 madduck madduck 16490496 2006-08-13 14:36 pubring.gpg
 -rw---  1 madduck madduck  3546722 2006-08-14 08:23 pubring.gpg.tmp
 -rw---  1 madduck madduck 17968679 2006-08-12 18:53 pubring.gpg~

FYI:  When updating a keyring, gpg works like this:

 sed -e edit_stuff  pubring.gpg  pubring.gpg.tmp \
  mv pubring.gpg pubring.gpg~ \
  mv pubring.gpg.tmp pubring.gpg

Pretty standard me things.  The whole thing is locked using a lock
file named pubring.gpg.lock.

 gpg: /home/madduck/.gnupg/pubring.gpg: copy to
 `/home/madduck/.gnupg/pubring.gpg.tmp' failed: file read error gpg:

Read errors might happen if another process writes/truncates
pubring.gpg while we are editing it.  However, the lock should prevent
it.  Unless someone uses the --lock-never option.  An strace should
indeed give better insight.


Salam-Shalom,

   Werner



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



Bug#382694: libnjb: FTBFS with sudo as gain-root command

2006-08-17 Thread John Bovey
Hi Luk,

I'll put in your patch and deal with the other wishlist bug at the same time 
but I am still a new maintainer and I'm learning my way round. Also my sponsor 
will have to do the upload and this is likely to take more than 5 days. How 
does the DELAYED queue work - will your patch be installed automatically at the 
end of the 10 days? If so, can I remove it from the queue myself or do you have 
to do it.

Regards,

John Bovey

On Sat, 12 Aug 2006 19:56:37 +0200
Luk Claes [EMAIL PROTECTED] wrote:

 Package: libnjb
 Version: 2.2.5-4
 Severity: serious
 Tags: patch
 
 Hi,
 
 Your package fails to build from source when sudo is used as gain-root
 command (instead of fakeroot), see for instance the build log on alpha
 [1].
 
 Attached is the diff for my libnjb 2.2.5-4.1 NMU which I'll upload to
 DELAYED-10.
 
 Cheers
 
 Luk
 
 [1]
 http://buildd.debian.org/fetch.php?pkg=libnjbver=2.2.5-4arch=alphastamp=1151820696file=logas=raw
 


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



Bug#383269: Acknowledgement (Browsers - locking up, Firefox, Epiphany and Mozilla)

2006-08-17 Thread Chris Barnard

Ok

In the last 5 hours it appears that the site has been fixed or the news 
item that offended has dropped off the list.


Chris Barnard

Debian Bug Tracking System wrote:


Thank you for the problem report you have sent regarding Debian.
This is an automatically generated reply, to let you know your message has
been received.  It is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
Eric Dorland [EMAIL PROTECTED]

If you wish to submit further information on your problem, please send
it to [EMAIL PROTECTED] (and *not* to
[EMAIL PROTECTED]).

If you have filed this report in error and wish to close it, please
send mail to [EMAIL PROTECTED] with an explanation
why the bug report should be closed.

Please do not reply to the address at the top of this message,
unless you wish to report a problem with the Bug-tracking system.

Debian bug tracking system administrator
(administrator, Debian Bugs database)

 





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



Bug#126731: sqwebmail: Please provide translated templates for the HTML interface

2006-08-17 Thread Stefan Hornburg

Daniel Baumann wrote:

Hi,

what is the status of this bug? There are several translations available
at http://www.courier-mta.org/sqwebmail/links.html


Feel free to package translations like sqwebmail-de. If you are not
a Debian maintainer, sponsorship is possible.

Bye
Racke

--
LinuXia Systems = http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP = http://www.icdevgroup.org/
Interchange Development Team



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



Bug#368972: NMU mesa 6.4.2-1.1

2006-08-17 Thread Michel Dänzer
On Thu, 2006-08-17 at 00:33 +0200, Bastian Kleineidam wrote:
 
 +  * Install GLX include files in libgl1-mesa-directfb-dev (Closes: #368972)

NACK. Have you read any of the log of #368972? As Marcelo pointed out, a
better solution would be for libgl1-mesa-directfb-dev to stop providing
libgl-dev.


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




Bug#380001: Fails when there's no locale ('NoneType' object has no attribute 'byte_compile')

2006-08-17 Thread Ondra Kudlik
I have same error with more then one python packages but I think
my locales are ok. I'm running this on live non chrooted system.

 LC_ALL=C dpkg -i /var/cache/apt/archives/reportbug_3.25_all.deb
(Reading database ...
dpkg: serious warning: files list file for package `reportbug' missing, 
assuming package has no files currently installed.
164968 files and directories currently installed.)
Preparing to replace reportbug 3.25 (using .../reportbug_3.25_all.deb) ...
Unpacking replacement reportbug ...
Setting up reportbug (3.25) ...
Traceback (most recent call last):
  File /usr/bin/pycentral, line 1325, in ?
main()
  File /usr/bin/pycentral, line 1319, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 865, in run
self.options.exclude, byte_compile_default=True)
  File /usr/bin/pycentral, line 657, in install
self.default_runtime.byte_compile(self.private_files,
AttributeError: 'NoneType' object has no attribute 'byte_compile'
dpkg: error processing reportbug (--install):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 reportbug

Same is with my current locales:

$ locale
LANG=cs_CZ.UTF-8
LANGUAGE=cs_CZ.UTF-8
LC_CTYPE=cs_CZ.UTF-8
LC_NUMERIC=cs_CZ.UTF-8
LC_TIME=cs_CZ.UTF-8
LC_COLLATE=cs_CZ.UTF-8
LC_MONETARY=cs_CZ.UTF-8
LC_MESSAGES=cs_CZ.UTF-8
LC_PAPER=cs_CZ.UTF-8
LC_NAME=cs_CZ.UTF-8
LC_ADDRESS=cs_CZ.UTF-8
LC_TELEPHONE=cs_CZ.UTF-8
LC_MEASUREMENT=cs_CZ.UTF-8
LC_IDENTIFICATION=cs_CZ.UTF-8
LC_ALL=cs_CZ.UTF-8



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



Bug#231596: something new Roger

2006-08-17 Thread Ernesto
The three brand name drugs available to improve sex lives are now available in 
generic form at a significantly
lower price.

Pick up the one that is best for you at:

http://j87s6rpwpio6tjjco11uo111.taishoje.st







automatic advertisement



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



Bug#358001: partman: please create ext3 file systems with online resize support

2006-08-17 Thread Petter Reinholdtsen

tags 358001 - patch
thanks

An alternative to providing ext2prepare is to remove tune2fs.  If
/sbin/tune2fs isn't available, partman-ext3 will use the code path
calling mkfs.ext3, and thus generate file systems with the
resize_inode option enabled.

I'm testing this approach now in debian-ed, because my initial testing
with ext2prepare gave me fsck problems with the small /boot/ partition
used in the workstation profile.

The progress bar when using mkfs.ext3 is not very accurate nor very
fine grained, but I prefer correct over nice if I have to make that
choice, and hope someone can get patches into mkfs.ext3 to support a
better progress bar.

I am removing the 'patch' tag because I believe the patch I provided
is unsafe until ext2prepare is improved to not mess up small file
systems.

Friendly,
-- 
Petter Reinholdtsen


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



Bug#383149: [Pkg-octave-devel] Bug#383149: tried purging then reinstalling octave2.9 package

2006-08-17 Thread John W. Eaton
On 17-Aug-2006, John Dalton wrote:

| I sent an email yesterday pointing out that I had octave2.1
| installed before octave2.9.  It seems to have gone missing.
| 
| In case it is a problem with packaging, here is the
| sequence I followed in installing octave:
| 
| 24/10/2005
| # apt-get install octave octave-forge octave-plplot octave2.1-doc
| octave2.1-info
| # apt-get install octave2.1-headers
| 
| 15/8/2006
| Upgrade to octave 2.9:
| # apt-get install octave2.9 octave2.9-info octave2.9-doc
| octave2.9-htmldoc octave2.9-headers
| 
| Try it out, then remove octave 2.1:
| # apt-get remove --purge octave octave2.1 octave2.1-info
| octave2.1-htmldoc octave2.1-headers
| 
| Report bug #383149.
| 
| 17/8/2006
| Wonder if the problem is an interaction between octave 2.1 and 2.9
| packages.  Do a clean reinstall of octave2.9 (ie. with no octave2.1)
| 
| # apt-get remove --purge octave2.9 octave2.9-info octave2.9-doc
| octave2.9-htmldoc octave2.9-headers
| # apt-get install octave2.9 octave2.9-info octave2.9-doc
| octave2.9-htmldoc octave2.9-headers
| 
| After this fresh reinstall, symptoms are still present as before:
| $ mkoctfile -v uitest.cc
| g++ -c -fPIC -I/usr/include/octave-2.9.7
| -I/usr/include/octave-2.9.7/octave -m32 uitest.cc -o uitest.o
| /usr/bin/g++ -shared -Wl,-Bsymbolic -o uitest.oct uitest.o
| -L/usr/lib/octave-2.9.7 -loctinterp -loctave -lcruft -m32 -llapack-3
| -lblas-3 -lfftw3 -lreadline -lncurses -ldl -lhdf5 -lz -lm
| -L/usr/lib/gcc/x86_64-linux-gnu/4.1.2
| -L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64
| -L/usr/lib/../lib64 -lhdf5 -lz -lgfortranbegin -lgfortran -lm -lgcc_s
| /usr/bin/ld: skipping incompatible /usr/lib/octave-2.9.7/liboctinterp.so
| when searching for -loctinterp
| /usr/bin/ld: cannot find -loctinterp
| collect2: ld returned 1 exit status
| $

I'm unable to duplicate this problem.  I have an up-to-date testing
system and I installed Octave 2.9.7 with

  apt-get update
  apt-get -t unstable octave2.9{,-{headers,info,doc}}

and then ran

  update-alternatives --config mkoctfile
  update-alternatives --config octave
  update-alternatives --config octave-bug
  update-alternatives --config octave-config
  update-alternatives --config octave-depends

BTW, why do I have to run all these commands?  I think it would be
more friendly if running update-alternatives --config octave would
take care of the rest automatically so they would all stay in sync.

In any case, here is what I see:

$ dpkg -l octave2.9
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  octave2.9  2.9.7-2GNU Octave language for numerical computatio
$ pwd
/home/jwe/src/octave/examples
$ ls -l hello.cc
-rw-r--r-- 1 jwe users 3103 Apr 30  2003 hello.cc
$ mkoctfile -v hello.cc
/usr/bin/g++ -c -fPIC -I/usr/include/octave-2.9.7 
-I/usr/include/octave-2.9.7/octave -O2 hello.cc -o hello.o
/usr/bin/g++ -shared -Wl,-Bsymbolic -o hello.oct hello.o 
-L/usr/lib/octave-2.9.7 -loctinterp -loctave -lcruft -s -llapack-3 -lblas-3 
-lfftw3 -lreadline -lncurses -ldl -lhdf5 -lz -lm 
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64 
-L/usr/lib/../lib64 -lhdf5 -lz -lgfortranbegin -lgfortran -lm -lgcc_s
$ octave
GNU Octave, version 2.9.7 (x86_64-pc-linux-gnu).
Copyright (C) 2006 John W. Eaton.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTIBILITY or
FITNESS FOR A PARTICULAR PURPOSE.  For details, type `warranty'.

Additional information about Octave is available at http://www.octave.org.

Please contribute if you find this software useful.
For more information, visit http://www.octave.org/help-wanted.html

Report bugs to [EMAIL PROTECTED] (but first, please read
http://www.octave.org/bugs.html to learn how to write a helpful report).

octave:1 hello
Hello, world!
octave:2 type hello
hello is a dynamically-linked function
octave:3 which hello
hello is the dynamically-linked function from the file
/export/home/jwe/src/octave/examples/hello.oct

jwe


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



Bug#323624: [EMAIL PROTECTED]: Bug#323624: fig2sty: festure request: pdflatex + better layout]

2006-08-17 Thread Rafael Laboissiere
* Marcel Rohner [EMAIL PROTECTED] [2006-08-17 07:15]:

 Thank you for this consultation.
 However, I really do not feel like I can further support fig2sty.
 There have been several patches in the past years that I have
 not applied to the version on the fig2sty Web-Page.
 Would you think I should remove the Web-page rather than leave
 the old version there?

You might also make the development of fig2sty public.  In the Debian
package, seven patches are already applied and it would be better to have
them applied upstream.  This would be possible if the development is
public.  Also, by opening the development of fig2sty to the community,
the chances of finding a new maintainer will increase.

Let me know what you think and I could set up a project for fig2sty at
http://alioth.debian.org/ (the Debian equivalent of SourceForge).

At any rate, please keep the current web page, because the debian package
references it.

All the best,

-- 
Rafael


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



Bug#383421: gallery2: Gallery 2.1.2 Security Fix Released

2006-08-17 Thread Jan Wagner
Package: gallery2
Severity: serious
Tags: security
Justification: unknow (RC)



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

for more information see http://gallery.menalto.com/2.1.2_release


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



Bug#383422: Make rawdog use python-feedparser

2006-08-17 Thread Andy Grover
Package: rawdog
Version: 2.9.dfsg.1-2
Severity: wishlist

Can this use python-feedparser? bug 345349 suggested this would be a 
good thing but it seemed like a good idea to open an enh bug explicitly 
for this.


-- 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_US, LC_CTYPE=en_US (charmap=ISO-8859-1)


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



Bug#383423: signing-party: please apply patch that makes -m and -M option more convenient

2006-08-17 Thread Gerfried Fuchs
Package: signing-party
Version: 0.4.7-1
Severity: wishlist

Hi!

 Currently the -m and -M options are biting each other quite a bit. If
you have set no-mail in your config file you can't make caff send mails
at all with the commandline option, which is quite unconvenient.

 I have produced a patch for caff that would turn -m into a quad-option
like with mutt config where you can define its behavior: yes for always
send, no for never send, and ask-yes/ask-no for asking with according
default value.

 I hope this is considered helpful, I have tried to not break backward
compatibility too much - unfortunately it wasn't completely possible: If
you put multiple short options mixed and m isn't the last it takes the
rest as value which it checks against the quad option. This is the only
drawback from this patch, I didn't like the idea for using yet another
switch for that.

 So long,
Alfie
-- 
Wo wir schon bei Schnäppchenbestrafungen sind: ich finde § 307 StGB hat ein
recht ordentliches Preis-Leistungs-Verhältnis. Soviel Bums für sowenig Strafe
gibt sonst nirgendwo.
-- Holger Lembke in de.soc.recht.misc
Index: caff
===
--- caff(Revision 297)
+++ caff(Arbeitskopie)
@@ -40,7 +40,7 @@
 
 =over
 
-=item Bcaff [-eEmMRS] [-u Iyourkeyid] Ikeyid [Ikeyid ..]
+=item Bcaff [-eERS] [-m Iyes|ask-yes|ask-no|no] [-u Iyourkeyid] Ikeyid 
[Ikeyid ..]
 
 =back
 
@@ -66,14 +66,10 @@
 Do not export old signatures. Default is to ask the user for each old
 signature.
 
-=item B-m, B--mail
+=item B-m, B--mail Iyes|ask-yes|ask-no|no
 
-Send mail after signing. Default is to ask the user for each uid.
+Wether to send mail after signing. Default is to ask with a default value of 
yes.
 
-=item B-M, B--no-mail
-
-Do not send mail after signing. Default is to ask the user for each uid.
-
 =item B-R, B--no-download
 
 Do not retrieve the key to be signed from a keyserver.
@@ -211,15 +207,12 @@
 
 =head2 Mail settings
 
-=item Bmail [boolean]
+=item Bmail [yes|ask-yes|ask-no|no]
 
-Do not prompt for sending mail, just do it. Default: B0.
+Wether to send mails. This is a quad-option, with which you can set the
+bahavior: yes always sends, no never sends; ask-yes and ask-no asks with
+according defaults for the question. Default: Bask-yes.
 
-=item Bno-mail [boolean]
-
-Do not prompt for sending mail. The messages are still written to
-$CONFIG{caffhome}/keys/. Default: B0.
-
 =item Bmail-template [string]
 
 Email template which is used as the body text for the email sent out
@@ -656,7 +649,7 @@
 sub usage($$) {
my ($fd, $exitcode) = @_;
version($fd);
-   print $fd Usage: $PROGRAM_NAME [-eEmMRS] [-u yourkeyid] keyid 
[keyid ...]\n;
+   print $fd Usage: $PROGRAM_NAME [-eERS] [-m yes|ask-yes|ask-no|no] 
[-u yourkeyid] keyid [keyid ...]\n;
print $fd Consult the manual page for more information.\n;
exit $exitcode;
 };
@@ -878,8 +871,8 @@
'--export-old'=  \$params-{'export-old'},
'-E'  =  \$params-{'no-export-old'},
'--no-export-old' =  \$params-{'no-export-old'},
-   '-m'  =  \$params-{'mail'},
-   '--mail'  =  \$params-{'mail'},
+   '-m:s'=  \$params-{'mail'},
+   '--mail:s'=  \$params-{'mail'},
'-M'  =  \$params-{'no-mail'},
'--no-mail'   =  \$params-{'no-mail'},
'-R'  =  \$params-{'no-download'},
@@ -897,15 +890,21 @@
version(\*STDOUT);
exit(0);
 };
+
 usage(\*STDERR, 1) unless scalar @ARGV = 1;
 
 $CONFIG{'local-user'}  = $params-{'local-user'}  if defined 
$params-{'local-user'};
 $CONFIG{'no-download'} = $params-{'no-download'} if defined 
$params-{'no-download'};
-$CONFIG{'no-mail'} = $params-{'no-mail'} if defined 
$params-{'no-mail'};
-$CONFIG{'mail'}= $params-{'mail'}if defined $params-{'mail'};
+$CONFIG{'no-mail'} = $params-{'no-mail'} if defined 
$params-{'no-mail'} || (defined $params-{'mail'}  $params-{'mail'} eq 
'no');
+$CONFIG{'mail'}= defined $params-{'mail'} ? $params-{'mail'} : 
'ask-yes';
 $CONFIG{'no-sign'} = $params-{'no-sign'} if defined 
$params-{'no-sign'};
 push @{$CONFIG{'key-files'}}, @{$params-{'key-files'}} if defined 
$params-{'key-files'};
 
+if ($CONFIG{'mail'} !~ /^(?:(?:ask-)?(?:yes|no))?$/) {
+   print STDERR Invalid value for -m:  . $CONFIG{'mail'} . . Allowed 
values: yes|ask-yes|ask-no|no\n;
+   usage(\*STDERR, 1);
+};
+
 for my $keyid (@ARGV) {
$keyid =~ s/^0x//i;
if ($keyid =~ /^[A-F0-9]{32}$/i) {
@@ -1302,7 +1301,7 @@
if (!$uid-{'is_uat'}  ($uid-{'text'} =~ /@/)) {
my $address = $uid-{'text'};
$address =~ s/.*(.*).*/$1/;
-   if (ask(Mail signature for $uid-{'text'} to 
'$address'?, 1, $CONFIG{'mail'})) {
+   

Bug#383429: libadasockets-dev: Ada spec and ali files in wrong directory

2006-08-17 Thread Ludovic Brenta
Package: adasockets
Version: 1.8.4.7-3
Severity: serious
Justification: violation of Debian policy for Ada

The development package, libadasockets-dev, must place the Ada spec
files in the directory /usr/share/ada/adainclude/adasockets, not in 
/usr/lib/adasockets, because they are platform-independent.

Furthermore, the -dev package must provide a GNAT project file named
/usr/share/ada/adainclude/adasockets.gpr.

The Ada library information (.ali) files must be in
/usr/lib/adalib/adasockets, not /usr/lib/adasockets.

dh_fixperms knows about .ali files and makes them read-only for all
users, so there is no longer a need to chmod them explicitly from
debian/rules.

The example files should not be compressed; if you want them compressed,
consider providing a .tar.gz file containing them, instead of several
compressed files.  This is because gnat cannot compile these example
files if they are compressed.

-- 
Ludovic Brenta.


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



Bug#383428: siproxd: FTBFS: bashisms

2006-08-17 Thread Julien Danjou
Package: siproxd
Version: 1:0.5.13-1
Severity: important

Hello,

There was a problem while autobuilding your package:

 Automatic build of siproxd_1:0.5.13-1 on avidan by sbuild/i386 0.49
 Build started at 20060817-0022
 **
...
 dh_installdirs -psiproxd 
   install -d debian/siproxd/var/run/siproxd
 yodl2man debian/man/siproxd.yo
 [: 134: ==: unexpected operator
 Yodl2man 2.01.03
 Yodl is processing a(n) article
 siproxd.yo:30: No macro: kphone(...)
 siproxd.yo:30: No macro: linphone(...)
 mv debian/man/siproxd.man debian/man/siproxd.8
 mv: cannot stat `debian/man/siproxd.man': No such file or directory
 make: *** [install/siproxd] Error 1
 **
 Build finished at 20060817-0023
 FAILED [dpkg-buildpackage died]
 --

Your package fails to build with at dash linked to /bin/sh

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#383430: adasockets: must bump soname due to ABI change in compiler

2006-08-17 Thread Ludovic Brenta
Package: adasockets
Version: 1.8.4.7-3
Severity: serious
Justification: ABI change requires a soname bump, per Debian policy

The new compiler, gnat (= 4.1), has a new ABI, so the soname must
change.  The library package name must change accordingly.  Since
the -dev package is also versioned, it must change too.

Please consider
libadasockets.so.1 as the new soname, 
libadasockets.so.1.8 as the new shared library file name,
libadasockets1 as the new library package name, and
libadasockets-dev as the dev package name (with Conflicts and Replaces
against libadasockets0-dev).

-- 
Ludovic Brenta.


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



Bug#383425: lighttpd: foo

2006-08-17 Thread Ken Bowley
Package: lighttpd
Version: 1.4.11-7
Severity: grave
Justification: renders package unusable

Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Johann Friedrich [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: lighttpd: Fails to install if another webserver is running
Message-ID: [EMAIL PROTECTED]
X-Mailer: reportbug 3.25
Date: Thu, 17 Aug 2006 01:19:07 -0700

Package: lighttpd
Version: 1.4.11-7
Severity: grave
Justification: renders package unusable

I wish to install lighttpd to use as a web server for a Ruby on Rails
application, but it will not be running on port 80 (already used by
Apache).  The postinst script fails on a new installation when Apache
(or another daemon) is already bound to port 80.

It is highly common to run lighttpd as a normal user on an unprivledged
port port and have Apache act as a proxy in the Ruby on Rails community.

Setting up lighttpd (1.4.11-7) ...
Starting web server: lighttpd2006-08-17 01:08:10: (network.c.300) can't
bind to port: localhost 80 Address already in use
 failed!
invoke-rc.d: initscript lighttpd, action start failed.
dpkg: error processing lighttpd (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 lighttpd
E: Sub-process /usr/bin/dpkg returned an error code (1)

-- 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/dash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages lighttpd depends on:
ii  libbz2-1.0  1.0.3-3  high-quality block-sorting file co
ii  libc6   2.3.6-19 GNU C Library: Shared libraries
ii  libldap22.1.30-13+b1 OpenLDAP libraries
ii  libpcre36.4-2Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8b-2 SSL shared libraries
ii  lsb-base3.1-14   Linux Standard Base 3.1 init scrip
ii  mime-support3.37-1   MIME files 'mime.types'  'mailcap
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages lighttpd recommends:
pn  php4-cgi | php5-cgi   none (no description available)

-- no debconf information

-- 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/dash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages lighttpd depends on:
ii  libbz2-1.0  1.0.3-3  high-quality block-sorting file co
ii  libc6   2.3.6-19 GNU C Library: Shared libraries
ii  libldap22.1.30-13+b1 OpenLDAP libraries
ii  libpcre36.4-2Perl 5 Compatible Regular Expressi
ii  libssl0.9.8 0.9.8b-2 SSL shared libraries
ii  lsb-base3.1-14   Linux Standard Base 3.1 init scrip
ii  mime-support3.37-1   MIME files 'mime.types'  'mailcap
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages lighttpd recommends:
pn  php4-cgi | php5-cgi   none (no description available)

-- no debconf information


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



Bug#366305: No by-id evdev device for mouse component of Logitech Elite Keyboard

2006-08-17 Thread Marco d'Itri
On Jun 12, Marco d'Itri [EMAIL PROTECTED] wrote:

  Inquiry has been made with upstream as to whether or not this is correct:
 It's not:
I am closing this bug, since it's bogus.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#383427: pipsecd: FTBFS: bashisms

2006-08-17 Thread Julien Danjou
Package: pipsecd
Version: 1:19990511-27
Severity: important

Hello,

There was a problem while autobuilding your package:

 Automatic build of pipsecd_1:19990511-27 on avidan by sbuild/i386 0.49
 Build started at 20060816-2038
 **
...
  /usr/bin/fakeroot debian/rules clean
 rm -f debian/install-tree-stamp
 rm -rf debian/tmp* debian/files* debian/substvars
 rm -f debian/build-stamp debian/depends-stamp
 /bin/sh: -E: not found
 -E make clean
 /bin/sh: -E: not found
 make: *** [clean-build] Error 127
 **
 Build finished at 20060816-2038
 FAILED [dpkg-buildpackage died]

-E option of echo is bash specific. Please use printf.

Cheers,
-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#383431: an ignore-whitespace option for quilt import

2006-08-17 Thread Paul Wise
Package: quilt
Version: 0.45-3
Severity: wishlist

I work with packages with windows line-endings, when Debian
users/developers send patches, often they have the incorrect line
endings and produce a quilt patch that won't apply once imported. An
option to ignore whitespace on import (like patch -l) would be useful.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#383299: linux-image-2.6.17-2-686: 2.6.17-2 XFS error

2006-08-17 Thread Fredrik Olofsson
On Wed, Aug 16, 2006 at 11:05:15AM -0600, dann frazier wrote:
 Frederik,
   I see nothing in 2.6.17-6 that looks like it could reasonably cause
 this - but there was an XFS corruption bug that was fixed in
 2.6.17-5. Did you ever mount this fs with an earlier 2.6.17 kernel?
 
 I would suggest forcing a run of xfs_repair on your fs, and retrying
 2.6.17-6. Please let us know how that works for you.

Hello again,
I have been following Unstable, so I suppose I have used earlier 2.6.17
kernels as well. When I ran xfs_repair on this and one other filesystem,
some errors were found, so as you implied, the problem propably was a
filesystem that hade been previously corrupted. I will keep running
2.6.17-6 and report back again if I run in to more problems.

Feel free to close this bug as user error or something.

Now I only have to find out the Debian way of getting a root shell
before / is remounted read-write so I can check that filesystem as
well...

Thanks for your help
/Fredrik


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



Bug#383426: omnievents: FTBFS: build-depends on python 2.4

2006-08-17 Thread Julien Danjou
Package: omnievents
Version: 2.6.2.pre2-1.2
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of omnievents_2.6.2.pre2-1.2 on avidan by sbuild/i386 0.49
 Build started at 20060816-1856
 **
 Checking available source versions...
 Fetching source files...
 Reading package lists...
 Building dependency tree...
 Need to get 306kB of source archives.
 Get:1 http://ftp.fr.debian.org sid/main omnievents 2.6.2.pre2-1.2 (dsc) [770B]
 Get:2 http://ftp.fr.debian.org sid/main omnievents 2.6.2.pre2-1.2 (tar) 
 [303kB]
 Get:3 http://ftp.fr.debian.org sid/main omnievents 2.6.2.pre2-1.2 (diff) 
 [2196B]
 Fetched 306kB in 12s (23.7kB/s)
 Download complete and in download only mode
 ** Using build dependencies supplied by package:
 Build-Depends: debhelper (= 4.0.0), cdbs, libomniorb4-dev, pkg-config, 
 omniidl4, libcos4-dev, omniorb4-idl, doxygen, graphviz, xsltproc, docbook-xsl
 Checking for already installed source dependencies...
 debhelper: already installed (5.0.37.3 = 4.0.0 is satisfied)
 cdbs: already installed (0.4.46)
 libomniorb4-dev: missing
 pkg-config: already installed (0.20-1)
 omniidl4: missing
 libcos4-dev: missing
 omniorb4-idl: missing
 doxygen: missing
 graphviz: missing
 xsltproc: missing
 docbook-xsl: missing
 Checking for source dependency conflicts...
 Reading package lists...
 Building dependency tree...
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 The following information may help to resolve the situation:
 
 The following packages have unmet dependencies:
   omniidl4: Depends: python ( 2.4) but 2.4.3-11 is to be installed
 E: Broken packages
 apt-get failed.
 Package installation failed
 Trying to reinstall removed packages:
 Trying to uninstall newly installed packages:
 Source-dependencies not satisfied; skipping omnievents
 **
 Finished at 20060816-1857
 Build needed 00:06:20, 33092k disk space

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Bug#383424: adasockets: static library compiled with -fPIC

2006-08-17 Thread Ludovic Brenta
Package: adasockets
Version: 1.8.4.7-3
Severity: serious
Tags: upstream

Upstream's configury and make scripts create the shared library,
libadasockets.la, with the dreaded rpath option.  This is a violation of
Debian Policy.

Debian should patch the makefile or configury to not add the rpath.

-- 
Ludovic Brenta.


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



Bug#383407: dpsyco-cfengine: please convert to using cfengine2

2006-08-17 Thread Ola Lundqvist
Hi

On Wed, Aug 16, 2006 at 10:17:34PM -0400, Alec Berryman wrote:
 Package: dpsyco-cfengine
 Severity: wishlist
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 cfengine has been superseded by cfengine2 and is dead upstream.  #367057
 requests cfengine be removed from the archive.  Would you please
 convert dpsyco-cfengine to use cfengine2?

What is the difference between them?

Regards,

// Ola

 Thanks,
 
 Alec
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.3 (GNU/Linux)
 
 iD8DBQFE49G+Aud/2YgchcQRAqq7AKDkMD/umbmaoyUr1Qk7UkP6NKmQ2QCfRavW
 NXZ5TUYN2hhATXRIKzjoC2Y=
 =ABEJ
 -END PGP SIGNATURE-
 
 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#369091: udev: dvb devices names wrong (regression)

2006-08-17 Thread Marco d'Itri
On Jun 11, Marco d'Itri [EMAIL PROTECTED] wrote:

 Are there any news about this bug?
Lacking an answer from you, I will close it.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#383149: [Pkg-octave-devel] Bug#383149: tried purging then reinstalling octave2.9 package

2006-08-17 Thread Thomas Weber
Am Donnerstag, den 17.08.2006, 09:59 +1000 schrieb John Dalton:
 After this fresh reinstall, symptoms are still present as before:
 $ mkoctfile -v uitest.cc
 g++ -c -fPIC -I/usr/include/octave-2.9.7
 -I/usr/include/octave-2.9.7/octave -m32 uitest.cc -o uitest.o
 /usr/bin/g++ -shared -Wl,-Bsymbolic -o uitest.oct uitest.o
 -L/usr/lib/octave-2.9.7 -loctinterp -loctave -lcruft -m32 -llapack-3
 -lblas-3 -lfftw3 -lreadline -lncurses -ldl -lhdf5 -lz -lm
 -L/usr/lib/gcc/x86_64-linux-gnu/4.1.2
 -L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64
 -L/usr/lib/../lib64 -lhdf5 -lz -lgfortranbegin -lgfortran -lm -lgcc_s
 /usr/bin/ld: skipping incompatible /usr/lib/octave-2.9.7/liboctinterp.so
 when searching for -loctinterp
 /usr/bin/ld: cannot find -loctinterp
 collect2: ld returned 1 exit status

There's something weird going on here. mkoctfile from the Debian package
calls g++ with its full path. Additionally, we don't pass the -m32
flag to the compiler. For comparision, the output in my chroot:

# mkoctfile -v uitest.cc 
/usr/bin/g++ -c -fPIC -I/usr/include/octave-2.9.7
-I/usr/include/octave-2.9.7/octave -O2 uitest.cc -o uitest.o
/usr/bin/g++ -shared -Wl,-Bsymbolic -o uitest.oct uitest.o
-L/usr/lib/octave-2.9.7 -loctinterp -loctave -lcruft -s -llapack-3
-lblas-3 -lfftw3 -lreadline -lncurses -ldl -lhdf5 -lz -lm
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64
-L/usr/lib/../lib64 -lhdf5 -lz -lgfortranbegin -lgfortran -lm -lgcc_s

Is it possible that you have a local installation of Octave coming in
the way (i.e., that mkoctfile is not /usr/bin/mkoctfile)? Or that you
have a mixed 32/64 bit environment?

Thomas



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



Bug#383434: adasockets: consider removing /usr/bin/adasockets-config

2006-08-17 Thread Ludovic Brenta
Package: adasockets
Severity: wishlist
Version: 1.8.4.7-3

Please consider removing /usr/bin/adasockets-config from the -dev
package.  Reasons:

* when Debian moves to multilib, executables will be completely
  forbidden from -dev packages.
* if you provide a GNAT project file in
  /usr/share/ada/adainclude/adasockets.gpr, the script will become
  unnecessary.
* gnat-4.1 looks in /usr/share/ada/adainclude for project files
  by default, so users no longer need to specify the full path to
  project files.
* Configuration scripts like this one tend not to work very well
  when using several libraries.

-- 
Ludovic Brenta.


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



Bug#383433: xsmbrowser: xsmbrowse not visible in gnome-menu

2006-08-17 Thread gerhard oettl
Package: xsmbrowser
Version: 3.4.0-14
Severity: normal

I cannot detect xsmbrowser in the desktop-menu (gnome) not does the
nautilus network make any use of it to detect smb networks. 

It is possible to start it from a terminal command line so it
is not useless at all, but normal users will not find it.


gerhard

-- 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-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xsmbrowser depends on:
ii  debconf [debconf-2.0] 1.5.3  Debian configuration management sy
ii  expect5.43.0-7   A program that can automate intera
ii  expectk   5.43.0-7   A program that can automate intera
ii  smbclient 3.0.22-1   a LanManager-like simple client fo

Versions of packages xsmbrowser recommends:
ii  smbfs 3.0.22-1   mount and umount commands for the 

-- debconf information:
  xsmbrowser/etc_dir:


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



Bug#383409: ODT files has wrong MIME type

2006-08-17 Thread Michael Piefel
retitle 383409 ODT files not recognized (reported as ZIP instead)
severity 383409 minor
thanks

Am Donnerstag, den 17.08.2006, 01:01 -0300 schrieb Marco:
 archive.odt: application/x-zip
 The correct type is: application/vnd.oasis.opendocument.text

This report is not useful without a patch or better magic that is able
to detect this kind of file. This kind of problem will pop up more often
in the future.

Note that file’s output is not incorrect at all, as the file truly is a
ZIP file. However, I agree that it would be great if ODT could be
detected directly.

Bye,
   Mike



Bug#383432: xine-ui: xine crashes during mouseover while playing VCD

2006-08-17 Thread ldd
Package: xine-ui
Version: 0.99.4-2
Followup-For: Bug #376328

I get the same symptoms as those reported by Tim Caulder.  Command line:

xine vcd://

If I just start xine and select the VCD button, the bug also occurs.

It also occurs when using gxine and I mouse over the video area.  That
is, it is only when I mouse over the area of the GUI where the video
plays that the problem occurs in gxine.  If I just mouse over other
areas, the problem does NOT occur.

After the stuff generated by debian-bug, I'm including the output from
stdout and stderr that I get from running:

xine --verbose vcd://  /tmp/xine.stdout 2/tmp/xine.stderr

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

Versions of packages xine-ui depends on:
ii  libc6   2.3.6-19 GNU C Library: Shared libraries
ii  libcomerr2  1.39-1   common error description library
ii  libcurl3-gnutls 7.15.5-1 Multi-protocol file transfer libra
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgcrypt11 1.2.2-3  LGPL Crypto library - runtime libr
ii  libgnutls13 1.4.2-1  the GNU TLS library - runtime libr
ii  libgpg-error0   1.2-1library for common error values an
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libkrb531.4.3-9  MIT Kerberos runtime libraries
ii  libncurses5 5.5-2Shared libraries for terminal hand
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libreadline55.1-7GNU readline and history libraries
ii  libslang2   2.0.6-2  The S-Lang programming library - r
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libx11-62:1.0.0-8X11 client-side library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxine11.1.2-2  the xine video/media player librar
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxtst61:1.0.1-5X11 Testing -- Resource extension 
ii  libxv1  1:1.0.1-5X11 Video extension library
ii  libxxf86vm1 1:1.0.0-4X11 XFree86 video mode extension l
ii  zlib1g  1:1.2.3-13   compression library - runtime

Versions of packages xine-ui recommends:
ii  libaa11.4p5-30   ascii art library

-- no debconf information

-- stdout:
This is xine (X11 gui) - a free video player v0.99.4.
(c) 2000-2004 The xine Team.
Built with xine library 1.1.1 (1.1.1)
Found xine library version: 1.1.2 (1.1.2).
   Plateform informations:
   --
system name : Linux
node name   : bodhi
release : 2.6.16-2-686
version : #1 Sat Jul 15 21:59:21 UTC 2006
machine : i686
   CPU Informations:
   
processor   : 0
vendor_id   : GenuineIntel
cpu family  : 6
model   : 13
model name  : Intel(R) Pentium(R) M processor 1.60GHz
stepping: 6
cpu MHz : 600.000
cache size  : 2048 KB
fdiv_bug: no
hlt_bug : no
f00f_bug: no
coma_bug: no
fpu : yes
fpu_exception   : yes
cpuid level : 2
wp  : yes
flags   : fpu vme de pse tsc msr mce cx8 sep mtrr pge mca cmov 
pat clflush dts acpi mmx fxsr sse sse2 ss tm pbe est tm2
bogomips: 1197.98
   ---
   Display Name:  :0.0,
   XServer Vendor:The X.Org Foundation,
   Protocol Version:  11, Revision: 0,
   Available Screen(s):   1,
   Default screen number: 0,
   Using screen:  0,
   Depth: 24,
   XShmQueryVersion:  1.1,
-[ xiTK version 0.10.7 [XFT] ]-[ WM type: (GnomeCompliant) (EWMH) Sawfish 
{Sawfish} ]-
Display is not using Xinerama.
XF86VidMode Extension (2.2) detected, trying to use it.
XF86VidMode Extension: 7 modelines found.
load_plugins: skipping unreadable plugin directory /home/ldd/.xine/plugins.
load_plugins: plugin /usr/lib/xine/plugins/1.1.2/xineplug_flac.so found
load_plugins: plugin /usr/lib/xine/plugins/1.1.2/xineplug_flac.so found
load_plugins: plugin 

Bug#383436: bplay: Can't play back WAV file

2006-08-17 Thread Kai Hendry
Package: bplay
Version: 0.991-9
Severity: normal

wget http://blog.dreamhost.com/wp-content/uploads/2006/08/dreamhost-angry2.wav

sam$ bplay dreamhost-angry2.wav 
bplay: input is not a PCM WAV file
sam$ file dreamhost-angry2.wav
dreamhost-angry2.wav: RIFF (little-endian) data, WAVE audio, IMA ADPCM,
mono 8000 Hz

-- 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_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages bplay depends on:
ii  libc6 2.3.6-19   GNU C Library: Shared libraries

bplay recommends no packages.

-- no debconf information


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



Bug#382977: [Pbuilder-maint] Bug#382977: fails to umount with internal pdebuild

2006-08-17 Thread martin f krafft
also sprach Junichi Uekawa [EMAIL PROTECTED] [2006.08.17.0041 +0100]:
 Could you commit with appropriate entries in:
 ChangeLog
 debian/changelog

lapse:~/debian/pkg svn ls svn+ssh://svn.debian.org/svn/pbuilder
svn: No repository found in 'svn+ssh://svn.debian.org/svn/pbuilder'
lapse:~/debian/pkg svn ls svn+ssh://svn.debian.org/svn/pkg-pbuilder
svn: No repository found in 'svn+ssh://svn.debian.org/svn/pkg-pbuilder'

The documentation contains no pointer and I cannot afford to work on
this any more.

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system


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


Bug#383437: thunderbird-locale-de: incomplete copyright file

2006-08-17 Thread Sven Joachim

Package: thunderbird-locale-de
Version: 1:1.5.0.5-1
Severity: serious

Quoting from section 12.5 of the Policy Manual:

 Every package must be accompanied by a verbatim copy of its copyright
 and distribution license in the file
 `/usr/share/doc/package/copyright'.

Your copyright file states

,
| The contents of this file are subject to the Mozilla Public License Version
| 1.1 (the License); you may not use this file except in compliance with
| the License. You may obtain a copy of the License at
| http://www.mozilla.org/MPL/
| [...]
|
| See the file /usr/share/doc/mozilla/MPL-1.1.txt.gz for the full text of
| the MPL.
| [...]
`

On my system, there is no such file or directory as
/usr/share/doc/mozilla/MPL-1.1.txt.gz, so the copyright information is
not complete.


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

Versions of packages thunderbird-locale-de depends on:
ii  thunderbird   1.5.0.5-1  standalone mail client based on mo

thunderbird-locale-de recommends no packages.

-- no debconf information




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



Bug#354007: [Pkg-nagios-devel] Bug#354007: Error: Cannot open config file '/etc/nagios-plugins/config/imap.cfg' for reading: Invalid argument

2006-08-17 Thread Olaf van der Spek

Marc Haber wrote:

On Mon, Mar 06, 2006 at 06:43:41AM -0500, sean finney wrote:
Can you please check whether the issue can still be reproduced with
nagios 2.5?


[EMAIL PROTECTED]:/etc/nagios-plugins/config# rm imap.cfg
[EMAIL PROTECTED]:/etc/nagios-plugins/config# invoke-rc.d nagios2 start
Starting nagios2 monitoring daemon: nagios2.
[EMAIL PROTECTED]:/etc/nagios-plugins/config# invoke-rc.d nagios2 stop
Stopping nagios2 monitoring daemon: nagios2.
[EMAIL PROTECTED]:/etc/nagios-plugins/config# touch imap.cfg
[EMAIL PROTECTED]:/etc/nagios-plugins/config# invoke-rc.d nagios2 start
Starting nagios2 monitoring daemon: nagios2
Nagios 2.5
Copyright (c) 1999-2006 Ethan Galstad (http://www.nagios.org)
Last Modified: 07-13-2006
License: GPL

Reading configuration data...

Error: Cannot open config file '/etc/nagios-plugins/config/imap.cfg' for 
reading: Invalid argument


*** One or more problems was encountered while processing the config 
files...


 Check your configuration file(s) to ensure that they contain valid
 directives and data defintions.  If you are upgrading from a previous
 version of Nagios, you should be aware that some variables/definitions
 may have been removed or modified in this version.  Make sure to read
 the HTML documentation regarding the config files, as well as the
 'Whats New' section to find out what has changed.

* errors in config!
 failed!
invoke-rc.d: initscript nagios2, action start failed.
[EMAIL PROTECTED]:/etc/nagios-plugins/config#


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



Bug#383149: [Pkg-octave-devel] Bug#383149: tried purging then reinstalling octave2.9 package

2006-08-17 Thread John Dalton

 There's something weird going on here. mkoctfile from the Debian package
 calls g++ with its full path. Additionally, we don't pass the -m32
 flag to the compiler. For comparision, the output in my chroot:
 

The wierd thing is that g++ gets called with its full path
in the second invocation, but not in the first.  It's as
if something is wrong with the rule that generates .o
files from .cc files.

My system shouldn't be mixed, as far as I'm aware
To check, I did an: ls /var/cache/apt/archives/*386*
it returned no results, indicating that apt seems
to have stayed within the amd64 debian archive.

Check which mkoctfile I am picking up:

$ which mkoctfile
/usr/bin/mkoctfile
$

Here is a listing of /usr/bin/mkoctfile from my system.


--START CUT HERE---
#! /bin/sh
#
# mkoctfile -- create a .oct file suitable for dynamic linking by
# Octave.

# Exit immediately on any error.

set -e

OCTAVE_VERSION=2.9.7

# Default values for these variables are filled in when Octave is
# compiled.

: ${SED=/bin/sed}

: ${CPPFLAGS=}
: ${INCFLAGS=-I/usr/include/octave-2.9.7
-I/usr/include/octave-2.9.7/octave}
: ${F2C=}
: ${F2CFLAGS=}
: ${F77=/usr/bin/gfortran}
: ${FFLAGS=-O2}
: ${FPICFLAG=-fPIC}
: ${CC=/usr/bin/gcc}
: ${CFLAGS=-O2}
: ${CPICFLAG=-fPIC}
: ${CXX=/usr/bin/g++}
: ${CXXFLAGS=-O2}
: ${CXXPICFLAG=-fPIC}
: ${XTRA_CFLAGS=}
: ${XTRA_CXXFLAGS=}

: ${DEPEND_FLAGS=-M}
: ${DEPEND_EXTRA_SED_PATTERN=}

: ${DL_LD=/usr/bin/g++}
: ${DL_LDFLAGS=-shared -Wl,-Bsymbolic}

: ${RLD_FLAG=-Wl,-rpath -Wl,/usr/lib/octave-2.9.7}
: ${RDYNAMIC_FLAG=-rdynamic}
: ${LIBOCTAVE=-loctave}
: ${LIBOCTINTERP=-loctinterp}
: ${LIBREADLINE=-lreadline}
: ${LIBCRUFT=-lcruft}
: ${BLAS_LIBS=-llapack-3 -lblas-3}
: ${FFTW_LIBS=-lfftw3}
: ${LIBS=-lreadline  -lncurses -ldl -lhdf5 -lz -lm }
: ${FLIBS=-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64
-L/usr/lib/../lib64 -lhdf5 -lz -lgfortranbegin -lgfortran -lm -lgcc_s}
: ${LD_CXX=/usr/bin/g++}
: ${LDFLAGS=-s}
: ${LD_STATIC_FLAG=}
: ${LFLAGS=-L/usr/lib/octave-2.9.7}

: ${ALL_FFLAGS=$FFLAGS}

: ${ALL_CFLAGS=$INCFLAGS $XTRA_CFLAGS $CFLAGS}

: ${ALL_CXXFLAGS=$INCFLAGS $XTRA_CXXFLAGS $CXXFLAGS}

: ${ALL_LDFLAGS=$LD_STATIC_FLAG $CPICFLAG $LDFLAGS}

: ${OCTAVE_LIBS=$LIBOCTINTERP $LIBOCTAVE $SPECIAL_MATH_LIB $LIBCRUFT}

# Local variables.

usage_msg=usage: mkoctfile [options] file ...

version_msg=mkoctfile, version $OCTAVE_VERSION

cfiles=
ccfiles=
f77files=
objfiles=
octfiles=
octfile=
outputfile=
incflags=
defs=
ldflags=
dbg=:
pass_on_options=
strip=false
no_oct_file_strip_on_this_platform=false
link=true
link_stand_alone=false
output_ext=.oct
depend=false
compile=true

if [ $# -eq 0 ]; then
  echo $usage_msg 12
  exit 1
fi

if [ $# -eq 1 ]; then
  case $1 in
-v | --version)
  echo $version_msg 12
  exit 0
;;
  esac
fi

while [ $# -gt 0 ]; do
  file=
  case $1 in
*.c)
  file=$1
  cfiles=$cfiles $file
;;
*.cc | *.C | *.cpp)
  file=$1
  ccfiles=$ccfiles $file
;;
*.f | *.F)
  file=$1
  f77files=$f77files $file
;;
*.o)
  file=$1
  objfiles=$objfiles $file
;;
-d | --debug | -v | --verbose)
  dbg=echo
;;
-h | -\? | --help)
  echo $usage_msg 12
  cat  EOF

Options:

  -h, -?, --help  Print this message.

  -IDIR   Add -IDIR to compile commands.

  -idirafter DIR  Add -idirafter DIR to compile commands.

  -DDEF   Add -DDEF to compile commands.

  -lLIB   Add library LIB to link command.

  -LDIR   Add -LDIR to link command.

  -M, --dependGenerate dependency files (.d) for C and C++
  source files.

  -RDIR   Add -RDIR to link command.

  -W  Pass flags though the compiler like
-Wl,-rpath=...

  -c, --compile   Compile, but do not link.

  -o FILE, --output FILE  Output file name.  Default extension is .oct
  (or .mex if --mex is specified) unless linking
  a stand-alone executable.

  -g  Enable debugging options for compilers.

  -p VAR, --print VAR Print configuration variable VAR.  Recognized
  variables are:

ALL_CFLAGSFFTW_LIBS
ALL_CXXFLAGS  FLIBS
ALL_FFLAGSFPICFLAG
ALL_LDFLAGS   INCFLAGS
BLAS_LIBS LDFLAGS
CCLD_CXX
CFLAGSLD_STATIC_FLAG
CPICFLAG  LFLAGS
CPPFLAGS  LIBCRUFT
CXX   LIBOCTAVE
CXXFLAGS  

Bug#376426: Login works if I disable ldap for group

2006-08-17 Thread Rik Theys

Hi,

I'm experiencing the same problem (locally login as root, get the motd 
and then the login prompt again).


I can still login as root using SSH.

My nsswitch.conf has:

passwd: files ldap [UNAVAIL=return]
group:  files ldap [UNAVAIL=return]
shadow: files ldap [UNAVAIL=return]

If I change the group line in nsswitch.conf to:

group:  files

I can login OK at the console.

If I change it to the original line, it prevents login.

Group information from LDAP seems to work ok: getent group returns the 
full group information. Also, SSH doesn't seem to have this problem. So 
I'm not sure this is an nss-ldap or a login bug.


Greetings,

--
Rik

Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm



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



Bug#383435: HilightFore Style option no longer works

2006-08-17 Thread Brendan O'Dea
Package: fvwm
Version: 1:2.5.17-1

My configuration contains the following options:

  Style * HilightFore white, HilightBack slategrey
  Style * Color black/slategrey

Prior to upgrading to 1:2.5.17-1 this title bars had white text for the
currently focused window, black text for all others.

Reverting to 1:2.5.16-2 restores this behaviour.

A small subset of my .fvwm2rc is attached to demonstrate the problem.

--bod
DefaultFont lucidasans-10

CursorStyle MENU 2
BorderStyle -- HiddenHandles NoInset

TitleStyle LeftJustified
TitleStyle Solid slategrey -- Flat

Style * HilightFore white, HilightBack slategrey
Style * Color black/slategrey
Style * BorderWidth 3
Style * HandleWidth 3


Bug#383438: dselect: Wrong keys mentioned in help screen for access method

2006-08-17 Thread Sven Joachim

Package: dselect
Version: 1.13.22
Severity: minor
Tags: patch

The help screen for the access methods ([A]ccess - ? - k) mentions
wrong keys for moving up and down.  The following patch fixes this:

--- helpmsgs.cc~2006-01-18 09:30:03.0 +0100
+++ helpmsgs.cc 2006-08-16 17:22:01.0 +0200
@@ -166,7 +166,7 @@
const struct helpmessage hlp_methkeys = {
  N_(Keystrokes for method selection), N_(\
Motion keys: Next/Previous, Top/End, Up/Down, Backwards/Forwards:\n\
-  n, Down-arrow p, Up-arrow move highlight\n\
+  Down-arrow, j Up-arrow, k move highlight\n\
  N, Page-down, Space   P, Page-up, Backspace   scroll list by 1 page\n\
  ^n^p  scroll list by 1 line\n\
  t, Home   e, End  jump to top/end of list\n\


By the way, since hlp_listkeys and hlp_methkeys have (after the patch)
9 identical lines for the motion keys, wouldn't it be an idea to merge
them somehow?  That might be easier to maintain.

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

Versions of packages dselect depends on:
ii  dpkg1.13.22  package maintenance system for Deb
ii  libc6   2.3.6-19 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-10   GCC support library
ii  libncurses5 5.5-2Shared libraries for terminal hand
ii  libstdc++6  4.1.1-10 The GNU Standard C++ Library v3

dselect recommends no packages.

-- no debconf information




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



Bug#382474: capi4hylafax: c2faxrecv problem with anonymous incoming calls

2006-08-17 Thread Arne Metzger

Arne Metzger schrieb am 16.08.2006 10:46:

ok, test with version 01.03.00.99.svn.297 was done using web.de as sender.

same result.

primergy:/home/arnem# tail -f /var/spool/hylafax/log/capi4hylafax
Aug 16 10:26:59.82: [12623]: c2faxrecv - INFO: Incoming speech call on 
controller 1 to 9093555.

Aug 16 10:27:09.53: [12623]: c2faxrecv - INFO: Connection established.
Aug 16 10:27:09.53: [12623]: c2faxrecv - INFO:  StationID = +49
Aug 16 10:27:09.53: [12623]: c2faxrecv - INFO:  BaudRate  = 14400
Aug 16 10:27:09.53: [12623]: c2faxrecv - INFO:  Flags = HighRes, 
MMR_compr
Aug 16 10:27:09.53: [12623]: c2faxrecv - INFO: Write fax in path 
/var/spool/hylafax to file recvq/fax00015.tif.
Aug 16 10:27:21.53: [12623]: c2faxrecv - INFO: Page 1 was received. - 
Last Page!
Aug 16 10:27:24.61: [12623]: c2faxrecv - INFO: Fax received and calling 
'/var/spool/hylafax/bin/faxrcvd recvq/fax00015.tif faxCAPI 
00059  +49'.
Aug 16 10:27:24.64: [12623]: c2faxrecv - INFO: Connection is droped with 
reason 0x3400 (No additional information).

Aug 16 10:27:24.64: [12623]: c2faxrecv - INFO: SESSION END

see xferfaxlog attached to my last email for the suspicious CIDNumber 
that web.de is sending. i think this i what c2faxrecv can't handle.




hi lionel!

did you already had some time to think about the problem?
di you have a clue what would cause this behavior when receiving fax 
with special CIDNumber?



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



Bug#383152: scribus unusable

2006-08-17 Thread Christophe Combelles

Hello,

Scribus is almost completely unusable, because everything in libs is disabled.

- the preferences window cannot be opened
- pdf export is broken
- postscript is broken.
and the MOST important defect:
- the about... window cannot be opened ! (I won't live without that :)

This is probably easy to fix, but this is a major severity.

thanks for your work,
regards,
Christophe


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



Bug#383439: Broken Conflicts/Replaces with wrong version

2006-08-17 Thread Loïc Minier
Package: beagle
Version: 0.2.7-1
Severity: important

Hi,

 It seems the old and new version of beagle were mixed when adding the
 Conflicts/Replaces for the Python transition.

 The current python-beagle package in unstable, 0.2.7-3, has:
 Replaces: python2.4-beagle ( 0.2.6-2)
 Conflicts: python2.4-beagle ( 0.2.6-2)

 Either you meant = or you meant  0.2.7-1, the later probably being
 safer for derivatives.

 This is perhaps a serious bug because the old package Provides
 python-beagle and Conflicts with python-beagle (unversionned).  I hope
 that package managers will handle this nicely.  I'm not 100% sure a
 dummy package isn't needed in this case.

 FYI, I'm still with python2.4-beagle 0.2.6-2.

   Bye,
-- 
Loïc Minier [EMAIL PROTECTED]



Bug#383442: knetwalk crash on ending a game

2006-08-17 Thread Isaac M. Marcos

Package: kgames
Version: 4:3.5.2-1+b2
This is my first report. Please forgive any errors. If you need more info please feel free to ask:
knetwalk crash when the game have been completed and is recording score.
Linux 2.6.15-1-686-smp #2 SMP Mon Mar 6 15:34:50 UTC 2006 i686 GNU/Linux
knetwalk version:
	as reported by package manager	4:3.5.2-1+b2
	as reported on help of program	1.0

When started from kde:
(no debugging symbols found)
Using host libthread_db library /lib/tls/libthread_db.so.1.
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1233544608 (LWP 20508)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[KCrash handler]
#5  0xb7edb00b in KExtHighscore::PlayerInfos::submitScore ()
   from /usr/lib/libkdegames.so.1
#6  0xb7eea1bc in KExtHighscore::ManagerPrivate::submitScore ()
   from /usr/lib/libkdegames.so.1
#7  0xb7eea455 in KExtHighscore::submitScore () from /usr/lib/libkdegames.so.1
#8  0x08052851 in ?? ()
#9  0xbfd6884c in ?? ()
#10 0x080e5ea0 in ?? ()
#11 0xbfd68874 in ?? ()
#12 0x in ?? ()

When started from shell 
$ knetwalk 
QGArray::at: Absolute index 4 out of range
KCrash: Application 'knetwalk' crashing...
[1]+  Exit 253knetwalk




Bug#375851: festival-it is now ok. gnome-speech still needs fixing

2006-08-17 Thread Enrico Zini
Hello,

with today's upload I fixed the problem on the side of festival-it.
Fixed as in, it's now possible to query festival-it for the preferred
character encoding.

I sent gnome-speech upstream a patch to query the preferred encoding and
recode information accordingly.  Upstream has accepted the patch:

  
http://cvs.gnome.org/viewcvs/gnome-speech/drivers/festival/festivalsynthesisdriver.c?rev=1.27view=log
  (see the changelog for version 1.25)

Now we need it to make its way into a new upstream release and then the
Debian package, until #375874 is fixed:

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


Ciao,

Enrico

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


signature.asc
Description: Digital signature


Bug#374685: 2 cents from Ubuntu

2006-08-17 Thread Martin Pitt
Hi!

I finally got too annoyed by the broken cdrecord package in Edgy
(which more or less the same than the one in sid), so FYI I did a
small patch (attached) to make it work as non-root again. While I
agree that this is by no way a 'good' patch, it at least makes burning
work again. And, after all, previous upstream versions (without the
EPERM check) worked just fine after all...

Thanks,

Martin

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

In a world without walls and fences, who needs Windows and Gates?
diff -u cdrtools-2.01+01a03/debian/changelog 
cdrtools-2.01+01a03/debian/changelog
--- cdrtools-2.01+01a03/debian/changelog
+++ cdrtools-2.01+01a03/debian/changelog
@@ -1,3 +1,15 @@
+cdrtools (4:2.01+01a03-5ubuntu2) edgy; urgency=low
+
+  * Add debian/patches/41_revert_sg_io_eperm_failure.dpatch:
+- Between 2.01+01a01 and 2.01+01a03, upstream changed the behaviour of
+  SG_IO ioctl()s failing with EPERM; earlier releases ignored it, while
+  the current one aborts the program. While in principle, EPERM checking
+  is a good thing, it breaks burning for non-root users, so revert this
+  test for now.
+- See also http://bugs.debian.org/374685.
+
+ -- Martin Pitt [EMAIL PROTECTED]  Thu, 17 Aug 2006 12:02:11 +0200
+
 cdrtools (4:2.01+01a03-5ubuntu1) edgy; urgency=low
 
   [ Ongoing Merge Process ]
diff -u cdrtools-2.01+01a03/debian/patches/00list 
cdrtools-2.01+01a03/debian/patches/00list
--- cdrtools-2.01+01a03/debian/patches/00list
+++ cdrtools-2.01+01a03/debian/patches/00list
@@ -32,0 +33 @@
+41_revert_sg_io_eperm_failure
only in patch2:
unchanged:
--- cdrtools-2.01+01a03.orig/debian/patches/41_revert_sg_io_eperm_failure.dpatch
+++ cdrtools-2.01+01a03/debian/patches/41_revert_sg_io_eperm_failure.dpatch
@@ -0,0 +1,19 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 41_revert_sg_io_eperm_failure.dpatch by  [EMAIL PROTECTED]
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: No description.
+
[EMAIL PROTECTED]@
+diff -urNad cdrtools-2.01+01a03~/libscg/scsi-linux-sg.c 
cdrtools-2.01+01a03/libscg/scsi-linux-sg.c
+--- cdrtools-2.01+01a03~/libscg/scsi-linux-sg.c2005-05-16 
23:48:37.0 +0200
 cdrtools-2.01+01a03/libscg/scsi-linux-sg.c 2006-08-17 12:01:37.0 
+0200
+@@ -1291,7 +1291,7 @@
+   scglocal(scgp)-isold = 1;
+   return (sg_rwsend(scgp));
+   }
+-  if (sp-ux_errno == ENXIO || sp-ux_errno == EPERM ||
++  if (sp-ux_errno == ENXIO || /* sp-ux_errno == EPERM || */
+   sp-ux_errno == EINVAL || sp-ux_errno == EACCES) {
+   return (-1);
+   }


signature.asc
Description: Digital signature


Bug#383251: g++-4.1: FTBFS for RQuantLib on i386/testing

2006-08-17 Thread Martin Michlmayr
* John Schmidt [EMAIL PROTECTED] [2006-08-16 18:32]:
 I have a big c++ application that creates quite a few shared libraries and it 
 takes on the order of 10 minutes for the creation of one of my libraries (not 
 all of them) with g++-4.1, whereas with g++-4.0, the same library only takes 
 at most 30 seconds.  This is with a debug build and no optimization.

Do you have a small testcase?
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#375874: Patch accepted upstream

2006-08-17 Thread Enrico Zini
Hello,

quick note to say that the patch has been accepted upstream:

  
http://cvs.gnome.org/viewcvs/gnome-speech/drivers/festival/festivalsynthesisdriver.c?rev=1.27view=log
  (see changelog entry for version 1.25)


Ciao,

Enrico

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


signature.asc
Description: Digital signature


Bug#383441: does not respect xinerama heads

2006-08-17 Thread martin f krafft
Package: jabref
Version: 2.1-1
Severity: normal

This may well be a problem with the AWT libraries, in which case
please reassign.

If I start jabref on a Xinerama multihead setup, the splash screen
is displayed in the logical middle, so half of it is on one and half
on the other screen.

Then, when the main application window appears, it will always
appear on the head where it was last closed. Apparently, jabref
saves the dimensions when it shuts down. Those dimensions are,
however, not Xinerama aware. If I have two 1024 screens, then it is
true that windows on the right screen are positioned with x value
above 1024, but what should really be saved (if at all) is the
position relative to the current head, and not the head itself.

I suggest that Jabref at least gets an option to disable all forms
of dimension storage, and that this option is turned on by default
on Debian. Dimension of windows is the job of the window manager,
not of the application.

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

Versions of packages jabref depends on:
ii  sun-j2re1.5 [j2re1.5] 1.5.0+update07 Java(TM) 2 RE, Standard Edition, S
ii  sun-java5-jre 1.5.0-07-1 Sun Java(TM) Runtime Environment (

jabref recommends no packages.

-- no debconf information

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system


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


Bug#383344: thunderbird: crashes on startup

2006-08-17 Thread Alexander Sack - Debian Bugmail
tags 383344 + unreproducible
tags 383344 + moreinfo
thanks

Please be responsive if you file a GRAVE bug ... if noone else reports
this problem, I will downgrade this.


On Wed, Aug 16, 2006 at 08:15:35PM +0200, Alexander Sack - Debian Bugmail wrote:
 Please try to verify that this problem exists if you start a fresh
 account/profile.
 
  - Alexander
 
  p.s. please take care that the bug is listed as To: or CC: when 
   replying to this mail (e.g. /reply-all/). 

 - Alexander

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


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



Bug#363760: #363760 - thunderbird: pasting formatted text in newly composed email multiple times hangs thunderbird

2006-08-17 Thread Alexander Sack - Debian Bugmail
tags 363760 + moreinfo
thanks

reporter mail is undeliverable ... lets wait a few days.

 - Alexander

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


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



Bug#383440: adacgi: Ada spec and library information files in wrong directory

2006-08-17 Thread Ludovic Brenta
Package: adacgi
Version: 1.6-8
Severity: serious
Justification: violation of Debian policy for Ada

Since AdaCGI is a library, it must consist of two binary packages:
libadacgi-dev and libadacgi1.

The source package, adacgi, must build-depend on gnat (= 4.1)
(currently not versioned).

libadacgi-dev must provide the Ada specs (cgi.ads and ustrings.ads) in
the directory /usr/share/ada/adainclude/adacgi.  Optionally, it may
also provide the corresponding bodies (*.adb) (this is mandatory if
these are bodies of generic units).

libadacgi-dev must provide the Ada library information files (*.ali) in
/usr/lib/ada/adalib/adacgi.  These files must be read-only for all
users; dh_fixperms knows about that and does the right thing (do not
--exclude .ali files when calling it).

libadacgi-dev must also provide a GNAT project file,
/usr/share/ada/adainclude/adacgi.gpr.

libadacgi-dev must provide the static library, /usr/lib/libadacgi.a,
and the symlink /usr/lib/libadacgi.so.  The static library must contain
object files compiled with -g.

libadacgi-dev must Depend on gnat-4.1.

The examples can be in libadacgi-dev, but they must not be compressed;
currently the file search.adb is compressed.  Please pass -X.adb -X.ads
-Xmakefile to dh_compress.  This allows gnat to compile the examples
directly.

libadacgi1 must provide the shared library, /usr/lib/libadacgi.so.1.6,
with appropriate symlink (libadacgi.so.1).  The shared library must
contain object files compiled with -fPIC and WITHOUT -g.

libadacgi1 must Depend on libgnat-4.1; this is normally done
automatically by dh_shlibdeps.

Since the files contained in the binary package adacgi do not conflict
with the standard paths in the proposed -dev and library packages, it is
not necessary that packages conflict with each other.  However,
libadacgi-dev should Replace adacgi.

Finally: please revisit the lintian overrides, as they may not be
necessary anymore.  Both linda and lintian know about Ada libraries now.

Since this is a very simple package, consider looking at the
debian/rules that I use for libtemplates-parser.  It builds the Ada
files in two directories, obj-static and obj-shared, and makes the
libraries from there.

-- 
Ludovic Brenta.


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



Bug#383405: openoffice.org-gtk: The package cause strange behavior on oooqs-kde package

2006-08-17 Thread Rene Engelhard
Hi,

Am Donnerstag, 17. August 2006 04:00 schrieb Odair Trujillo:
 If openoffice.org-gtk is installed, it makes oooqs-kde have a strange 
 behavior, jumping focus from any application to ooo's applications, and 
 the icons of kde pannel they blinks. So I closed oooqs-kde and the 
 problem dessapeard, but if I remove openoffice.org-gtk I can use 
 oooqs-kde without problems, even if I remove the package in hot the 
 problem dessapear.

Hmm. This might be due oooqs-kde using oo* which use ooqstart when available
(which it is if -gtk installed). ooqstart already does some quick start things
which might confuse oooqs-kde. I guess we need an additional conflict...

Regards,

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



Bug#383443: scribus-ng: Vertical gradient is not vertical

2006-08-17 Thread Christophe Combelles
Package: scribus-ng
Version: 1.3.3.3.dfsg-1
Severity: normal


and horizontal gradient is not horizontal.
There is a slope in the gradient, and this is immediately visible.
(create a text frame and apply a color gradient, then make the gradient
narrow)

This is only mentionned in http://bugs.scribus.net/view.php?id=287
but the bugreport is for something else (50% shade), and has been closed as 
nofix.
The bug does not appear in the final output, but this breaks the
wysiwygality of scribus...

The bugreport says that the 50% shade problem is is a libart issue, but which 
libart issue?
Is there any bug report somewhere?
Is it due to http://www.gnome.org/~mathieu/libart/problems.html ?

Is the gradient slope problem also a libart issue?

(This is also valid for the stable 1.2 branch)

regards,
Christophe

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

Versions of packages scribus-ng depends on:
ii  gs-esp   8.15.2.dfsg.1-1 The Ghostscript PostScript interpr
ii  gs-gpl   8.50-1.1The GPL Ghostscript PostScript int
ii  libart-2.0-2 2.3.17-1Library of functions for 2D graphi
ii  libaudio21.8-1   The Network Audio System (NAS). (s
ii  libc62.3.6-19GNU C Library: Shared libraries
ii  libcupsys2   1.2.2-1 Common UNIX Printing System(tm) - 
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-10  GCC support library
ii  libgcrypt11  1.2.2-3 LGPL Crypto library - runtime libr
ii  libgnutls13  1.4.1-1 the GNU TLS library - runtime libr
ii  libgpg-error01.2-1   library for common error values an
ii  libice6  1:1.0.0-3   X11 Inter-Client Exchange library
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  liblcms1 1.15-1  Color management library
ii  libpng12-0   1.2.8rel-5.2PNG library - runtime
ii  libqt3-mt3:3.3.6-3   Qt GUI Library (Threaded runtime v
ii  libsm6   1:1.0.0-4   X11 Session Management library
ii  libstdc++6   4.1.1-10The GNU Standard C++ Library v3
ii  libtasn1-3   0.3.5-2 Manage ASN.1 structures (runtime)
ii  libtiff4 3.8.2-6 Tag Image File Format (TIFF) libra
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   X11 Xinerama extension library
ii  libxml2  2.6.26.dfsg-3   GNOME XML 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  python-tk2.4.3-3 Tkinter - Writing Tk applications 
ii  python2.42.4.3-8 An interactive high-level object-o
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages scribus-ng recommends:
ii  gsfonts-x11   0.20   Make Ghostscript fonts available t
ii  xfonts-scalable   1:1.0.0-4  scalable fonts for X

-- no debconf information


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



Bug#383442: knetwalk crash on ending a game

2006-08-17 Thread Martin Michlmayr
reassign 383442 kdegames
thanks

* Isaac M. Marcos [EMAIL PROTECTED] [2006-08-16 18:33]:
 Package: kgames
 Version: 4:3.5.2-1+b2
 This is my first report. Please forgive any errors.

The package name is kdegames and please put a space between the
header (Package:, Version:) and the text.  Thanks for the report.

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


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



Bug#124113: getting to know you

2006-08-17 Thread Antonio
Hire,
i am here sitti!ng in the internet caffe. Found your ema!il and
decided to write.a I might be coming to your pla!ce in 14 days, a
so I decided to email you. May be we can meet? I am 25 y.o.
girl. I have a picture if you want. No need to r!eply here as 
this is not m!y email. Wraite me at [EMAIL PROTECTED]




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



Bug#378610: netcdf: FTBFS: bashisms (probably)

2006-08-17 Thread Rostislav Kandilarov
 HI!

I had the same problem with Ubuntu and netcdf-3.6.0+3.6.1-beta3 . I was trying 
to rebuild the package with g95. No ideia what is happening but changing 
debian/rules nearby line 336 this way:

-
  gzip -9v debian/tmp-dev/usr/share/doc/$(package)g-dev/[^e]* \
  debian/tmp-dev/usr/share/doc/$(package)g-dev/examples/*
$(RM) -r debian/tmp-dev/usr/share/man/man3f

gzip -9v debian/tmp-dev/usr/share/man/*/*

install -m 644 debian/copyright \
  debian/tmp-dev/usr/share/doc/$(package)g-dev/.
-
to
-
  gzip -9v debian/tmp-dev/usr/share/doc/$(package)g-dev/[^e]* \
  debian/tmp-dev/usr/share/doc/$(package)g-dev/examples/*
$(RM) -r debian/tmp-dev/usr/share/man/man3f

gzip -9qf debian/tmp-dev/usr/share/man/man3/*

install -m 644 debian/copyright \
  debian/tmp-dev/usr/share/doc/$(package)g-dev/.

-


fixed the problem.

Hope this will save someone time...

Reards!


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



Bug#181025: my dream come true

2006-08-17 Thread Wade
Do not ignore mea please,
I found ybour email somewhere and now decided to write you.
I amb coming to your place in few weeks and thought we 
can meet each other. Let me know if you do not minad.
I am a nice pbretty girl. Don't reply to this email. 
Email me direclty at [EMAIL PROTECTED]




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



Bug#276060: Workaround for upgrade to =0.6.44

2006-08-17 Thread Patrick Strasser

Hello!

Hit the problem with an alienated package, that had nearly all it's 
files marked as configfile.


When you can't use apt/dpkg with the discussed error, find the offending 
status section:


# cd /var/lib/dpkg
# diff -u status-old status

Watch for space-intended lines after the Conffiles: line.
Look for an string, that matches many of the lines (probably the package 
name).


# grep -v ^ /.*matchstring status status.mod
where matchstring is the string unique for this package.

# cp status-old status-old.bak
# cp status.mod status
# apt-get remove --purge offending-package
# cp status-old.bak status

The last line is for making shure, that no packages where harmed that 
grep maybe hit.


Now upgrade apt
# apt-get update
# apt-get install apt

The system should be in an usable and clean state. You can now try to 
install your offending package again.


Patrick


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



Bug#383444: logwatch: --logdir seems to be ignored

2006-08-17 Thread John Covici
Package: logwatch
Version: 7.3-1
Severity: normal

I have some log files in a different directory than /var/log
 and a previous version of logwatch responded to --logdir
 option and used those files.  the only thing in that directory
 is appache logs.  Now when I run it from the cron job, it uses /var/log even 
though --logdir is specified.


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

Versions of packages logwatch depends on:
ii  perl  5.8.8-4Larry Wall's Practical Extraction 
ii  sendmail-bin [mail-transport- 8.13.7-2   powerful, efficient, and scalable 

logwatch recommends no packages.

-- no debconf information


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



Bug#383446: postgresql-8.1-postgis: include mktemplate_gis

2006-08-17 Thread Paolo Cavallini
Package: postgresql-8.1-postgis
Version: 1.1.3-1
Severity: minor

An utility, called mktemplate_gis, was included in previous unofficial releases 
of postgis. It can be 
useful, especially for new users, because it makes a template with GIS 
functions in the database, and 
saves the user to do it by himself.
I would advise to put it back in, if possible.
Thanks a lot.

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

Versions of packages postgresql-8.1-postgis depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libgeos-c12.2.1-1Geometry engine for Geographic Inf
ii  postgis   1.1.3-1geographic objects support for Pos
ii  postgresql-8.18.1.4-5object-relational SQL database, ve
ii  proj  4.4.9d-2   Cartographic projection filter and

postgresql-8.1-postgis recommends no packages.

-- no debconf information


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



Bug#383447: ACPI problem, hdb timed out

2006-08-17 Thread Patrick Matthäi

Package: linux-image-2.6.17-2-k7
Version: 2.6.17-6

Hello,
After the last update yesterday of the kernel ( from 2.6.17-1 up to 
2.6.17-2 ) I've get some problems.
After many boots, I'm getting at the point, where the kernel 
initialiazes the HID driver, that my hdb timed out and lost his 
interrupt, then he tried to readdress him an interrupt, but that's not 
working.



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



Bug#383448: Catalan translation review

2006-08-17 Thread Robert Millan
Package: dpkg
Version: 1.13.21
Severity: minor
Tags: patch l10n

Hi,

Please consider the attached fixes/improvements for the Catalan translation.

Thanks!

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

Versions of packages dpkg depends on:
ii  coreutils 5.96-5 The GNU core utilities
ii  libc6 2.3.6-15   GNU C Library: Shared libraries

dpkg recommends no packages.

-- no debconf information
diff -ur dpkg-1.13.22.old/dselect/po/ca.po dpkg-1.13.22/dselect/po/ca.po
--- dpkg-1.13.22.old/dselect/po/ca.po	2006-05-03 11:13:03.0 +0200
+++ dpkg-1.13.22/dselect/po/ca.po	2006-08-17 13:02:59.0 +0200
@@ -251,7 +251,7 @@
 
 #: dselect/bindings.cc:152
 msgid Repeat last search.
-msgstr Repeteix l'última recerca
+msgstr Repeteix la darrera recerca
 
 #: dselect/bindings.cc:153
 msgid Swap sort order priority/section
@@ -358,7 +358,7 @@
 visualització\n
Udeixa-ho en l'estat suggerit  /   cerca (Enter 
 cancelarà)\n
-   Ddeixa-ho tot en l'estat requerit  \\   repeteix l'última 
+   Ddeixa-ho tot en l'estat requerit  \\   repeteix la darrera 
 cerca\n
 
 #: dselect/helpmsgs.cc:33
@@ -398,7 +398,7 @@
 Benvingut al llistat principal de paquets del dselect.\n
 \n
 S'us presentarà un llistat de paquets que estan instal·lats o disponibles\n
-per a ser instal·lats. Podeu navegar pel llistat usant les tecles de\n
+per a ser instal·lats. Podeu navegar pel llistat emprant les tecles de\n
 cursor, marcar els paquets a instal·lar (utilitzant «+») o desinstal·lar\n
 (utilitzant «-»).\n
 Els paquets poden marcar-se per separat o per grups: inicialment veureu\n
@@ -416,7 +416,7 @@
 Quan hagueu acabat de seleccionar paquets, prémeu enter per a confirmar\n
 els canvis, o «X» per a sortir sense desar els canvis. Llavors es 
 realitzarà\n
-una última verificació dels conflictes i dependències - aquí també podrieu\n
+una darrera verificació dels conflictes i dependències - aquí també podrieu\n
 veure una subllista.\n
 \n
 Premeu espai per a abandonar l'ajuda i entrar ara al llistat.\n
@@ -450,7 +450,7 @@
 S'us presentarà un llistat de paquets que estan instal·lats o disponibles\n
 per a ser instal·lats. Ja que no teniu els privilegis necessaris per a\n
 actualitzar els estats dels paquets, esteu en el mode només lectura. Podeu\n
-navegar pel llistat usant les tecles de cursor (vegeu la pantalla d'ajuda\n
+navegar pel llistat emprant les tecles de cursor (vegeu la pantalla d'ajuda\n
 de «Dreceres»), observar l'estat dels paquets i llegir informació sobre 
 ells.\n
 \n
@@ -685,7 +685,7 @@
 Aquesta llista vos permetrà seleccionar un d'aquests mètodes 
 d'instal·lació.\n
 \n
-Desplaceu el ressaltat lluminós al mètode que desitgeu usar i premeu 
+Desplaceu el ressaltat lluminós al mètode que desitgeu emprar i premeu 
 Intro\n
 Llavors se vos preguntarà per la informació necessària per a la 
 instal·lació.\n
@@ -751,7 +751,7 @@
   ?, Help, F1   demana ajuda\n
  ^l torna a mostrar\n
   / cerca (premeu Intro per a cancel·lar)\n
-  \\ repeteix l'última recerca\n
+  \\ repeteix la darrera recerca\n
 
 #: dselect/main.cc:55
 msgid Type dselect --help for help.
@@ -767,7 +767,7 @@
 
 #: dselect/main.cc:138
 msgid Choose the access method to use.
-msgstr Escull el mètode d'accés que usareu.
+msgstr Escull el mètode d'accés que emprareu.
 
 #: dselect/main.cc:139
 msgid u
@@ -1160,7 +1160,7 @@
 #: dselect/methparse.cc:53
 #, c-format
 msgid syntax error in method options file `%.250s' -- %s
-msgstr error de sintaxi en el fitxer d'opcions del mètode «%.250s» -- %s
+msgstr error de sintaxi al fitxer d'opcions del mètode «%.250s» -- %s
 
 #: dselect/methparse.cc:58
 #, c-format
@@ -1600,7 +1600,7 @@
 \n
 Si desplaceu l'indicatiu de ressaltat a una línia d'un paquet determinat se 
 vos mostrarà informació referent a aquest paquet.\n
-Podeu usar «o» i «O» per a canviar l'ordre dels paquets llistats permetent-
+Podeu emprar «o» i «O» per a canviar l'ordre dels paquets llistats permetent-
 vos marcar els paquets per diferents classes o grups.
 
 #: dselect/pkginfo.cc:96
@@ -1649,7 +1649,7 @@
 
 #: dselect/pkglist.cc:521
 msgid error in regular expression
-msgstr error en la expressió regular
+msgstr error en l'expressió regular
 
 #: dselect/pkgsublist.cc:105
 msgid  does not appear to be available\n
diff -ur dpkg-1.13.22.old/po/ca.po dpkg-1.13.22/po/ca.po
--- dpkg-1.13.22.old/po/ca.po	2006-06-21 06:46:12.0 +0200
+++ dpkg-1.13.22/po/ca.po	2006-08-17 13:00:36.0 +0200
@@ -256,7 +256,7 @@
 
 #: lib/dump.c:296
 msgid unable to set buffering on status file
-msgstr no es pot establir emmagatzemament intermedi en el fitxer 

Bug#383449: acpi-support: Missing dependency on libc6

2006-08-17 Thread Christian Aichinger
Package: acpi-support
Version: 0.84-1
Severity: serious
Justification: Policy 3.5
Tags: patch

acpi-support ships a dynamically linked binary (acpi_fakekey) which
needs libc6 to run, but the package is missing a proper dependency on
libc6.

This happens because dh_shlibdeps and ${shlibs:Depends} are not used
in debian/rules and debian/control.

The attached patch fixes this.

Cheers,
Christian Aichinger
diff -Nur acpi-support-0.84.orig/debian/control acpi-support-0.84/debian/control
--- acpi-support-0.84.orig/debian/control   2006-08-17 12:34:20.0 
+0200
+++ acpi-support-0.84/debian/control2006-08-17 12:33:18.0 +0200
@@ -7,7 +7,7 @@
 
 Package: acpi-support
 Architecture: i386 amd64 ia64
-Depends: xbase-clients, acpid (= 1.0.4), hdparm, lsb-base (= 1.3-9), 
${arch:Depends}, finger, powermgmt-base, laptop-detect, dmidecode (= 2.7-1)
+Depends: xbase-clients, acpid (= 1.0.4), hdparm, lsb-base (= 1.3-9), 
${arch:Depends}, finger, powermgmt-base, laptop-detect, dmidecode (= 2.7-1), 
${shlibs:Depends}
 Recommends: laptop-mode-tools
 Description: a collection of useful events for acpi
  The scripts included in acpi-support include events for lid closure
diff -Nur acpi-support-0.84.orig/debian/rules acpi-support-0.84/debian/rules
--- acpi-support-0.84.orig/debian/rules 2006-08-17 12:34:20.0 +0200
+++ acpi-support-0.84/debian/rules  2006-08-17 12:33:41.0 +0200
@@ -57,6 +57,7 @@
dh_compress
dh_fixperms
dh_installdeb
+   dh_shlibdeps
dh_gencontrol -- $(arch-depends)
dh_md5sums
dh_builddeb


signature.asc
Description: Digital signature


Bug#383450: Catalan translation review

2006-08-17 Thread Robert Millan
Package: synaptic
Severity: minor
Tags: patch l10n

Hi,

Please consider the attached fixes/improvements for the Catalan translation.

Thanks!

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-amd64-k8
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
diff -ur synaptic-0.57.11.old/po/ca.po synaptic-0.57.11/po/ca.po
--- synaptic-0.57.11.old/po/ca.po   2006-02-28 09:32:46.0 +0100
+++ synaptic-0.57.11/po/ca.po   2006-08-17 13:13:50.0 +0200
@@ -189,7 +189,7 @@
 #. TRANSLATORS: Alias for the Debian package section alien
 #: ../common/sections_trans.cc:80
 msgid Converted From RPM by Alien
-msgstr Convertit des de RPM per Alien
+msgstr Convertit des d'RPM per Alien
 
 #. TRANSLATORS: Ubuntu translations section
 #: ../common/sections_trans.cc:82
@@ -443,7 +443,7 @@
 \n
 El paquet %s no té una versió disponible, però existeix a la base de dades.\n
 Això normalment vol dir que el paquet estava mencionat en una dependència i 
-mai es va pujar, és obsolet o no és disponible amb els continguts de sources.
+mai es va apujar, és obsolet o no és disponible amb els continguts de 
sources.
 list\n
 
 #. TRANSLATORS: dependency error message, example:
@@ -820,12 +820,12 @@
 #: ../common/rpackagelister.cc:1715
 #, c-format
 msgid Line %u too long in markings file.
-msgstr La línia %u és massa llarga en el fitxer de marques.
+msgstr La línia %u és massa llarga al fitxer de marques.
 
 #: ../common/rpackagelister.cc:1729 ../common/rpackagelister.cc:1733
 #, c-format
 msgid Malformed line %u in markings file
-msgstr La línia %u és malformada en el fitxer de marques
+msgstr La línia %u és malformada al fitxer de marques
 
 #: ../common/rpackagelister.cc:1745
 msgid Setting markings...
@@ -1199,7 +1199,7 @@
 The marked changes are now being applied. This can take some time. Please 
 wait.
 msgstr 
-Ara s'estan aplicant els canvis marcats. Això pot trigar un temps. Si us 
+Ara s'estan aplicant els canvis marcats. Això pot trigar una estona. Si us 
 plau, espereu.
 
 #: ../gtk/rgdebinstallprogress.cc:662
@@ -1453,7 +1453,7 @@
 
 #: ../gtk/rgmainwindow.cc:911
 msgid Latest Version
-msgstr Última versió
+msgstr Darrera versió
 
 #: ../gtk/rgmainwindow.cc:953
 msgid Download
@@ -1655,7 +1655,7 @@
 synaptic.\n
 \n
 Alternativament, podeu obrir la pàgina de manual amb «man synaptic» des de 
-la línia d'ordres o veure la versió en html ubicada en la carpeta «synaptic/
+la línia d'ordres o veure la versió en html ubicada a la carpeta «synaptic/
 html».
 
 #: ../gtk/rgmainwindow.cc:2436
@@ -2007,7 +2007,7 @@
 
 #: ../gtk/window_main.glade.h:3 ../gtk/window_details.glade.h:3
 msgid bLatest Available Version/b
-msgstr bÚltima versió disponible/b
+msgstr bDarrera versió disponible/b
 
 #: ../gtk/window_main.glade.h:4 ../gtk/window_details.glade.h:4
 msgid bMaintainer:/b
@@ -2069,7 +2069,7 @@
 
 #: ../gtk/window_main.glade.h:17 ../gtk/window_details.glade.h:14
 msgid Dependencies of the Latest Version
-msgstr Dependències de l'última versió
+msgstr Dependències de la darrera versió
 
 #: ../gtk/window_main.glade.h:19 ../gtk/window_details.glade.h:17
 msgid Download:
@@ -2379,7 +2379,7 @@
 This software is licensed under the terms of the GNU General Public License, 
 Version 2
 msgstr 
-Aquest programari és llicenciat sota els termes de la Llicencia Pública 
+Aquest programari és llicenciat sota els termes de la Llicència Pública 
 General GNU, versió 2
 
 #: ../gtk/window_about.glade.h:29
@@ -2584,7 +2584,7 @@
 
 #: ../gtk/window_preferences.glade.h:36
 msgid FTP proxy: 
-msgstr Servidor intermediari de FTP: 
+msgstr Servidor intermediari d'FTP: 
 
 #: ../gtk/window_preferences.glade.h:37
 msgid Files
@@ -2596,15 +2596,15 @@
 
 #: ../gtk/window_preferences.glade.h:39
 msgid HTTP proxy: 
-msgstr Servidor intermediari de HTTP: 
+msgstr Servidor intermediari d'HTTP: 
 
 #: ../gtk/window_preferences.glade.h:40
 msgid IP address or host name of the ftp proxy server
-msgstr Adreça IP o nom de l'ordinador del servidor intermediari de FTP
+msgstr Adreça IP o nom de l'ordinador del servidor intermediari d'FTP
 
 #: ../gtk/window_preferences.glade.h:41
 msgid IP address or host name of the http proxy server
-msgstr Adreça IP o nom de l'ordinador del servidor intermediari de HTTP
+msgstr Adreça IP o nom de l'ordinador del servidor intermediari d'HTTP
 
 #: ../gtk/window_preferences.glade.h:42
 msgid Ignore
@@ -2686,12 +2686,12 @@
 # FIXME Caps
 #: ../gtk/window_preferences.glade.h:61
 msgid Port number of the ftp proxy server
-msgstr Número de port del servidor intermediari de FTP
+msgstr Número de port del servidor intermediari d'FTP
 
 # FIXME Caps
 #: ../gtk/window_preferences.glade.h:62
 msgid Port number of the http proxy server
-msgstr Número de port del servidor intermediari de HTTP
+msgstr Número de port del 

Bug#383421: gallery2: Gallery 2.1.2 Security Fix Released

2006-08-17 Thread Thijs Kinkhorst

 for more information see http://gallery.menalto.com/2.1.2_release

We can read there that it will only affect installations where the
storage directory is web-accessible which is strongly discouraged by
upstream. So I thought we would be safe, however it seems that the
package doesn't follow this recommendation, and breaks the FHS at the
same time.

You should not be storing the gallery data under /usr/share/gallery2/ by
default, it should be in /var/lib/gallery2. That would alleviate the
security problem and make the package FHS compliant at the same time.


Thijs


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


Bug#380344: followup patch

2006-08-17 Thread Robert Millan
tags 380344 - pending
thanks

Please could you include this small (1 hunk) ortography fix as well?

Patch attached.

-- 
Robert Millan

My spam trap is [EMAIL PROTECTED]  Note: this address is only intended for
spam harvesters.  Writing to it will get you added to my black list.
--- ca.po.old   2006-08-17 12:43:25.0 +0200
+++ ca.po   2006-08-17 12:44:04.0 +0200
@@ -154,7 +154,7 @@
 #. Description
 #: ../templates:3001
 msgid Installing packages
-msgstr S'estàn instal·lant els paquets
+msgstr S'estan instal·lant els paquets
 
 #. Type: text
 #. Description


Bug#383420: exim4-config 4.63 should conflict with exim4 4.63

2006-08-17 Thread Marc Haber
On Thu, Aug 17, 2006 at 09:01:45AM +0200, Yannick Roehlly wrote:
 When ugrading my Debian Sid, I did not notice that I was upgrading
 exim4-config but not exim4 packages (the PowerPC packages were not
 yet autobuilt).
 
 The post.inst script fails with:
 
 Param?trage de exim4-config (4.63-2) ...
 2006-08-17 08:40:01 Exim configuration error in line 519 of 
 /var/lib/exim4/config.autogenerated.tmp:
   option forbid_smtp_code unknown
 Invalid new configfile /var/lib/exim4/config.autogenerated.tmp
 not installing /var/lib/exim4/config.autogenerated.tmp to 
 /var/lib/exim4/config.autogenerated
 
 Maybe exim4-config version 4.63 should conflict with previous versions
 of exim4 packages to prevent failing partial upgrades.

You have a point. I am not sure, though, about how to handle this
since the conflict is caused by a conffile.

What do the other maintainers and BTS regulars think?

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835


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



Bug#351578: followup patch

2006-08-17 Thread Robert Millan
tags 351578 - pending
thanks

Please could you include the attached fixes/improvements as well? (unless Jordi
has any objection, that is)

Patch attached.

-- 
Robert Millan

My spam trap is [EMAIL PROTECTED]  Note: this address is only intended for
spam harvesters.  Writing to it will get you added to my black list.
--- ca.po.old   2006-08-17 12:44:34.0 +0200
+++ ca.po   2006-08-17 12:48:51.0 +0200
@@ -224,7 +224,7 @@
   -p=? La memòria cau de paquets.\n
   -s=? La memòria cau de la font.\n
   -q   Inhabilita l'indicatiu de progres.\n
-  -i   Sols mostra dependències importants d'una ordre inadequada.\n
+  -i   Només mostra dependències importants d'una ordre inadequada.\n
   -c=? Llegeix aquest fitxer de configuració\n
   -o=? Estableix una opció de conf arbitrària, p.ex. -o dir::cache=/tmp\n
 Consulteu les pàgines del manual apt-cache(8) i apt.conf(5) per a més 
informació.\n
@@ -760,7 +760,7 @@
 
 #: cmdline/apt-get.cc:667
 msgid Unmet dependencies. Try using -f.
-msgstr Dependències sense satisfer. Proveu-ho usant -f.
+msgstr Dependències sense satisfer. Proveu-ho emprant -f.
 
 #: cmdline/apt-get.cc:689
 msgid WARNING: The following packages cannot be authenticated!
@@ -780,7 +780,7 @@
 
 #: cmdline/apt-get.cc:711 cmdline/apt-get.cc:858
 msgid There are problems and -y was used without --force-yes
-msgstr Hi ha problemes i s'ha usat -y sense --force-yes
+msgstr Hi ha problemes i s'ha emprat -y sense --force-yes
 
 #: cmdline/apt-get.cc:755
 msgid Internal error, InstallPackages was called with broken packages!
@@ -823,7 +823,7 @@
 #: cmdline/apt-get.cc:829
 #, c-format
 msgid After unpacking %sB of additional disk space will be used.\n
-msgstr Després de desempaquetar s'usaran %sB d'espai en disc addicional.\n
+msgstr Després de desempaquetar s'empraran %sB d'espai en disc addicional.\n
 
 #: cmdline/apt-get.cc:832
 #, c-format
@@ -914,7 +914,7 @@
 #: cmdline/apt-get.cc:1058
 #, c-format
 msgid Package %s is not installed, so not removed\n
-msgstr El paquet %s no està instal·lat, així que no s'eliminarà\n
+msgstr El paquet %s no està instal·lat, així doncs no s'eliminarà\n
 
 #: cmdline/apt-get.cc:1069
 #, c-format
@@ -989,7 +989,7 @@
 used instead.
 msgstr 
 No es poden descarregar alguns fitxers índex, s'han ignorat o en el seu lloc 
-s'han usat els antics.
+se n'han emprat d'antics.
 
 #: cmdline/apt-get.cc:1403
 msgid Internal error, AllUpgrade broke stuff
@@ -1024,8 +1024,8 @@
 distribution that some required packages have not yet been created\n
 or been moved out of Incoming.
 msgstr 
-No s'han pogut instal·lar alguns paquets. Això pot ser degut a que vàreu\n
-requerir una situació imposible o a que esteu usant la distribució\n
+No s'han pogut instal·lar alguns paquets. Això pot ser a causa de que vàreu\n
+requerir una situació imposible o a que esteu emprant la distribució\n
 unstable i alguns paquets requerits encara no han estat creats o bé\n
 encara no els hi han afegit.
 
@@ -1035,7 +1035,7 @@
 the package is simply not installable and a bug report against\n
 that package should be filed.
 msgstr 
-Degut a que sols heu requerit una única operació, serà molt\n
+A causa de que només heu requerit una única operació, serà molt\n
 probable que el paquet no sigui instal·lable i que s'hagi d'emetre\n
 un informe d'error en contra d'aquest per a arxivar-lo.
 
@@ -1265,7 +1265,7 @@
   -h  Aquest text d'ajuda.\n
   -q  Eixida a la bitàcola - sense indicatiu de progrés\n
   -qq Sense eixida, excepte els errors\n
-  -d  Sols descarrega - NO instal·la o desempaqueta arxius\n
+  -d  Només descarrega - NO instal·la o desempaqueta arxius\n
   -s  No actua. Realitza les ordres en mode de simulació\n
   -y  Assumeix que Sí per a totes les preguntes, fa que no es pregunti\n
   -f  Intenta seguir si la comprovació d'integritat falla\n
@@ -1341,7 +1341,7 @@
 \n
 Opcions:\n
   -h   Aquest text d'ajuda.\n
-  -s   Usar l'ordenació de fitxers font\n
+  -s   Emprar l'ordenació de fitxers font\n
   -c=? Llegeix aquest fitxer de configuració\n
   -o=? Estableix una opció de configuració, p.ex: -o dir::cache=/tmp\n
 
@@ -1366,7 +1366,7 @@
 #: dselect/install:102
 msgid or errors caused by missing dependencies. This is OK, only the errors
 msgstr 
-o errors causats per dependències sense satisfer. Aquest està bé, sols els 
+o errors causats per dependències sense satisfer. Aquest està bé, només els 
 errors
 
 #: dselect/install:103
@@ -1596,7 +1596,7 @@
 #: apt-inst/deb/dpkgdb.cc:341
 #, c-format
 msgid Invalid line in the diversion file: %s
-msgstr Línia no vàlida en el fitxer de desviació: %s
+msgstr Línia no vàlida al fitxer de desviació: %s
 
 #: apt-inst/deb/dpkgdb.cc:362
 msgid Internal error adding a diversion
@@ -1618,7 +1618,7 @@
 #: apt-inst/deb/dpkgdb.cc:465
 #, c-format
 msgid Bad ConfFile section in the status file. Offset %lu
-msgstr Secció ConfFile dolenta en el fitxer d'estat. Desplaçament %lu
+msgstr Secció ConfFile dolenta al fitxer d'estat. Desplaçament %lu
 
 #: 

Bug#382429: 3.0.23b-2 still does not work for me

2006-08-17 Thread Harald Dunkel
Using the new version the error message is gone. But now I get

[2006/08/17 12:36:13, 0] lib/interface.c:load_interfaces(225)
  WARNING: no network interfaces found

And of course it doesn't work, even after a reboot. Adding

interfaces = eth0
or
interfaces = 192.168.10.80

did not help, either.

Platform is amd64



Regards

Harri


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



Bug#382950: Log for failed build of yiff_2.14.5-1 (dist=unstable2)

2006-08-17 Thread Martin Michlmayr
 Automatic build of yiff_2.14.5-1 on debian04v4.zseries.org by sbuild/s390 0.49
...
 gcc -x c -c disk.cpp  -Wall -O6 -fomit-frame-pointer -funroll-loops 
 -finline-functions -ffast-math -fPIC 
 disk.cpp: In function 'PrefixPaths':
 disk.cpp:1031: error: unrecognizable insn:
 (insn 382 381 384 35 (set (reg/f:SI 105)
 (plus:SI (reg:SI 12 %r12)
 (const:SI (plus:SI (unspec:SI [
 (symbol_ref:SI (rtn_path.4346) [flags 0x2] 
 var_decl 0x403851c0 rtn_path)
 ] 112)
 (const_int 4096 [0x1000]) -1 (nil)
 (nil))
 disk.cpp:1031: internal compiler error: in extract_insn, at recog.c:2077
 Please submit a full bug report,
 with preprocessed source if appropriate.
 See URL:http://gcc.gnu.org/bugs.html for instructions.
 make[1]: *** [disk.o] Error 1

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


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



Bug#383451: kicker crashes if taskbar applet is active

2006-08-17 Thread Marc Haber
Package: kicker
Version: 4:3.5.4-2
Severity: normal

Hi,

as soon as I enable the taskbar applet in my kicker application,
kicker crashes after a few minutes. This happens when a lot of windows
open and/or close at one time. The crashes immediately stop as soon as
I remove taskbar from the panel.

A backtrace is attached.

Greetings
Marc

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

Versions of packages kicker depends on:
ii  kdebase-data4:3.5.4-2shared data files for the KDE base
ii  kdelibs4c2a 4:3.5.4-3core libraries and binaries for al
ii  libacl1 2.2.41-1 Access control list shared library
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libattr12.4.32-1 Extended attribute shared library
ii  libaudio2   1.8-2The Network Audio System (NAS). (s
ii  libc6   2.3.6-19 GNU C Library: Shared libraries
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0] 0.1.7-4  Client library for the gamin file
ii  libgcc1 1:4.1.1-10   GCC support library
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG
ii  libkonq44:3.5.4-2core libraries for Konqueror
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt   3:3.3.6-3Qt GUI Library (Threaded runtime v
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libstdc++6  4.1.1-10 The GNU Standard C++ Library v3
ii  libx11-62:1.0.0-8X11 client-side library
ii  libxau6 1:1.0.0-3X11 authorisation library
ii  libxcomposite1  1:0.2.2.2-3  X11 Composite extension library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11: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-5X11 toolkit intrinsics library
ii  libxtst61:1.0.1-5X11 Testing -- Resource extension
ii  zlib1g  1:1.2.3-13   compression library - runtime

kicker recommends no packages.

-- no debconf information
(no debugging symbols found)
Using host libthread_db library /lib/tls/libthread_db.so.1.
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1232279328 (LWP 3181)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols 

Bug#379476: broken ca.po

2006-08-17 Thread Robert Millan
tags 379476 - patch
thanks

Hi Jordi!

It appears that the ca.po you attached has been truncated.

Btw, I reviewed the current translation and found a pair of mistakes.  Please
could you include the attached (2 hunk) patch in your next revision?

(note: my patch is already converted to UTF-8)

-- 
Robert Millan

My spam trap is [EMAIL PROTECTED]  Note: this address is only intended for
spam harvesters.  Writing to it will get you added to my black list.
diff -ur adduser-3.97.old/po/ca.po adduser-3.97/po/ca.po
--- adduser-3.97.old/po/ca.po   2006-08-17 13:21:56.0 +0200
+++ adduser-3.97/po/ca.po   2006-08-17 13:24:59.0 +0200
@@ -512,7 +512,7 @@
 msgstr 
 Per a utilitzar les funcionalitats --remove-home, --remove-all-files i --
 backup\n
-teniu que instal·lar el paquet «perl-modules». Per a fer açò, executeu\n
+cal que instal·leu el paquet «perl-modules». Per a fer açò, executeu\n
 apt-get install perl-modules\n
 
 #: ../deluser:212
@@ -733,7 +733,7 @@
 #~ msgstr Es necessita un nom a eliminar.\n
 
 #~ msgid Global configuration is in the file %s.\n
-#~ msgstr La configuració global està en el fitxer %s.\n
+#~ msgstr La configuració global està al fitxer %s.\n
 
 # L'opció --foo requereix? jm
 #~ msgid --ingroup requires an argument.\n


Bug#157305: hello!

2006-08-17 Thread Pablo
Hire,
i am here sitting in the internet caffe. Found your email a!nd
decided to write. I might be coming to your place in 14 days,a 
so I decided to email! you. May be we can meet? I am 25 y.o.
girl. I have a picturea if you want. No needa to reply here as 
this is noat my email. Write me at [EMAIL PROTECTED]




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



Bug#383452: SIGSEGV in dancer-services when users are connected to the IRC server

2006-08-17 Thread Chris Lightfoot
Package: dancer-services
Version: 1.8.0.6.3-2.1

With the following (pretty minimal) dancer-ircd
configuration:

---
# Name and description of server.
M:irc.mysociety.org.:0.0.0.0:mySociety IRC:

# Location, email and description of admins.
A:Here, there and everywhere:[EMAIL PROTECTED]:mySociety team [EMAIL 
PROTECTED]

# Classes of connections. Fields are class number, ping frequency, connect
# frequency (for servers) or number of permitted connections per IP (for
# clients), maximum number of links (?) and send queue size.

# Class for users
Y:1:90:0:100:1

# One for servers
Y:2:90:300:10:10

# Permission for clients to connect.

# Fields are ident, password, host, ? and class number.
I:NOMATCH::*::1

# Permit services to connect.
C:localhost:M!Kdqa.m:services.:2
N:localhost:$1$WC47s25A$Wk.Gx29uv7Rwz2rB1CAek0:services.:2

# Ports to listen on.
P6667
P9219
---

and the following /etc/dancer-services/services.conf

---
# Name and email of admins.
A:mySociety team [EMAIL PROTECTED]

# Name of server we pretend to be.
N:services.:Local services

# IRC server to which we connect (there needs to be a corresponding N: line in
# the server config).
S:M!Kdqa.m:localhost:6667

# Administrators of the services.
O:*:$1$f05.elnC$ZBa/fy6wKPdNy7Y4Gm6c4.:chris:s
---

dancer-services crashes with SIGSEGV soon after connecting
if there are users on the server, or immediately when a
user connects.

The crash occurs in server.c at line 918:

  if (ircncmp(Me.name, lptr-server-name, strlen(lptr-server-name))) {

because lptr-server is NULL. On closer investigation this
seems to be because when the ircd connects to services, it
supplies `*.org' as its server name; this confuses
dancer-services, and because it doesn't bother to check
whether lptr-server is non-NULL it crashes when it does
the compare above.

Presumably there's some change I could make to the
configuration which would prevent this, though it's not
obvious to me from my reading of the code and docs.
Any suggestions would be appreciated! Also,
dancer-services probably oughtn't to crash in this case.

-- 
Chris Lightfoot
mySociety


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



Bug#383415: (no subject)

2006-08-17 Thread VSJ
Subject: confirmed, grave
Followup-For: Bug #383415
Package: rdiff-backup
Version: 1.1.5-2

Problem confirmed. This is probably the result of the transition to python 2.4,
while this package hasn't been updated yet.
Since it makes the package mostly unusable, I'd like to set the severity to 
grave.

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

Versions of packages rdiff-backup depends on:
ii  libc6 2.3.6-19   GNU C Library: Shared libraries
ii  librsync1 0.9.7-1Library which implements the rsync
ii  python2.4.3-11   An interactive high-level object-o

rdiff-backup recommends no packages.

-- no debconf information


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



Bug#382766: #380256 is a gij bug

2006-08-17 Thread Nicolas Duboc
reassign 380256 gij-4.1 4.1.1-10
merge 380256 382766
thanks

  Kaloian had already registered this bug on the jython package. Since
he discovered that it is a gij bug, 380256's place is here.

  Regards,

-- 
Nicolas Duboc [EMAIL PROTECTED]


pgpUx79q9qJfa.pgp
Description: PGP signature


Bug#383445: [Evolution] Bug#383445: Please package evolution-exchange 2.6.3

2006-08-17 Thread Loïc Minier
Hi,

On Thu, Aug 17, 2006, David Weinehall wrote:
 New upstream version available (2.6.3).

 It is ready in the pkg-evolution SVN, but waits for evolution to be
 built on some more arches (ideally all arches, but all arches except
 m68k and arm in practice).

   Bye,
-- 
Loïc Minier [EMAIL PROTECTED]



Bug#383149: How to reproduce it

2006-08-17 Thread John Dalton
To reproduce the bug (feature?), add the following
to your environment as follows:

$ export CC='gcc'
$ export CXX='g++'
$ export CFLAGS='-m32'
$ export CXXFLAGS='-m32'
$ export LDFLAGS='-m32'
$ mkoctfile -v uitest.cc
g++ -c -fPIC -I/usr/include/octave-2.9.7
-I/usr/include/octave-2.9.7/octave -m32 uitest.cc -o uitest.o
/usr/bin/g++ -shared -Wl,-Bsymbolic -o uitest.oct uitest.o
-L/usr/lib/octave-2.9.7 -loctinterp -loctave -lcruft -m32 -llapack-3
-lblas-3 -lfftw3 -lreadline -lncurses -ldl -lhdf5 -lz -lm
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2
-L/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64 -L/lib/../lib64
-L/usr/lib/../lib64 -lhdf5 -lz -lgfortranbegin -lgfortran -lm -lgcc_s
/usr/bin/ld: skipping incompatible /usr/lib/octave-2.9.7/liboctinterp.so
when searching for -loctinterp
/usr/bin/ld: cannot find -loctinterp
collect2: ld returned 1 exit status
$




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



Bug#382429: Oops

2006-08-17 Thread John Dalton
Please cancel my last email to this bug.  It was
meant to go to another bug number.



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



Bug#383454: All song statistics and ratings are lost when updating from 1.4.0a to 1.4.1

2006-08-17 Thread Simon Wenner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: amarok
Version: 1.4.1-3
System: Debian GNU/Linux Testing (Etch)

All song statistics and ratings are lost since I upgraded from 1.4.0a to
1.4.1. All songs are never played before.

Regards,
Simon
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFE5FkSrSjbx+FjV1sRAor/AJ9Evu6/lf1r2LFLqFgxgMqfeYqlwACePtw1
1GUYrmsXrF67TCfBlqxR1cQ=
=SQm0
-END PGP SIGNATURE-


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



Bug#383456: Sodipodi and mime

2006-08-17 Thread Jastra
Package: sodipodi
Version: 0.34-0.1sarge1

Hi,

After standard apt-get update and apt-get upgrade of my Debian Sarge I
have seen following message:
 
File '/usr/share/applications/sodipodi.desktop' contains invalid MIME type
'image/svg+xml,image/svg' that contains invalid characters

Perhaps it will be useful for somebody.

Best Regards :-)
Barbara Glowacka



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



Bug#383149: Found the cause.

2006-08-17 Thread John Dalton
I've got a program called OpenFOAM installed.  It's
a bit of a yukky program in that it sets some environment
variables in ~/.bashrc.  Consequently the environment of my
login shell looks like:

{lots of stuff deleted}
CXXFLAGS=-m32
CXX=g++

When mkoctfile evaluates CXXFLAGS and CXX, it sees the values
from my shell environment, not the values being set within
mkoctfile (CXX=/usr/bin/g++ and CXXFLAGS=-O2)

That explains the weird appearance of g++ and -m32.

Is it correct that existing values in the shell environment should 
override the default values within mkoctfile?  Is there a reason
mkoctfile reads
: ${LD_CXX=/usr/bin/g++}
instead of
LD_CXX=/usr/bin/g++

I don't really understand what
: ${variable=value}
is doing.  Can someone please explain it to me?


I guess one solution is for me to remove the
variables from my environment, but is this
behaviour that the authors of mkoctfile intended?




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



Bug#383453: dovecot-common: describe mail_extra_groups options better please

2006-08-17 Thread Paul Slootman
Package: dovecot-common
Version: 1.0.rc2-2
Severity: wishlist

Currently the comment about mail_extra_groups says:

# Grant access to these extra groups for mail processes. Typical use would be
# to give mail group write access to /var/mail to be able to create dotlocks.

My first concern was whether these extra groups should be separated by
colons or by spaces. Trawling through the other options gave
ssl_cipher_list where the example uses a colon to separate the values.
Unfortunately an error in the log soon demonstrated that that was
wrong...

My second concern is whether on a typical Debian installation
Debian-exim should be included in this list, in addition to (or perhaps
instead of?) mail.

Also, what it does exactly is not quite clear, from the wording... how
could a process give random other groups permission to do stuff with
e.g. /var/mail.  Does it mean that dovecot processes that want to do
stuff get those groups' privileges? That's a bit different from the
text.


Thanks,
Paul Slootman


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



Bug#382429: Found the cause

2006-08-17 Thread John Dalton
I've got a program called OpenFOAM installed.  It's
a bit of a yukky program in that it sets some environment
variables in ~/.bashrc.  Consequently the environment of my
login shell looks like:

{lots of stuff deleted}
CXXFLAGS=-m32
CXX=g++

When mkoctfile evaluates CXXFLAGS and CXX, it sees the values
from my shell environment, not the values being set within
mkoctfile (CXX=/usr/bin/g++ and CXXFLAGS=-O2)

That explains the weird appearance of g++ and -m32.

Is it correct that existing values in the shell environment should 
override the default values within mkoctfile?  Is there a reason
mkoctfile reads
: ${LD_CXX=/usr/bin/g++}
instead of
LD_CXX=/usr/bin/g++

I don't really understand what
: ${variable=value}
is doing.  Can someone please explain it to me?



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



Bug#383455: firefox: prints always in letter format

2006-08-17 Thread gerhard oettl
Package: firefox
Version: 1.5.dfsg+1.5.0.4-1
Severity: normal

Firefox (since update to etch) tries always to use
letter instead of A4 paper format. This was the 
default setting in the printer dialog, but even if
i change the paper format to A4 in the property
dialog of the printer dialg it forces letter
(because the display of my printer shows pf load letter
and the printer stops because i have no possibility
to insert a letter paper to my HP Laserjet4 printer).

Printing from openoffice, mutt and a textfile from
the command line works fine.


thanks
gerhard

-- 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-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages firefox depends on:
ii  debianutils   2.17   Miscellaneous utilities specific t
ii  fontconfig2.3.2-7generic font configuration library
ii  libatk1.0-0   1.12.1-1   The ATK accessibility toolkit
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libcairo2 1.2.0-3The Cairo 2D vector graphics libra
ii  libfontconfig12.3.2-7generic font configuration library
ii  libfreetype6  2.2.1-2FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.1-5  GCC support library
ii  libglib2.0-0  2.10.3-3   The GLib library of C routines
ii  libgtk2.0-0   2.8.18-1   The GTK+ graphical user interface 
ii  libidl0   0.8.6-1library for parsing CORBA IDL file
ii  libjpeg62 6b-13  The Independent JPEG Group's JPEG 
ii  libpango1.0-0 1.12.3-1+b1Layout and rendering of internatio
ii  libpng12-01.2.8rel-5.2   PNG library - runtime
ii  libstdc++64.1.1-5The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-7  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  libxfixes31:3.0.1.2-4X11 miscellaneous 'fixes' extensio
ii  libxft2   2.1.8.2-8  FreeType-based font drawing librar
ii  libxi61:1.0.0-5  X11 Input extension library
ii  libxinerama1  1:1.0.1-4  X11 Xinerama extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxrandr22:1.1.0.2-4X11 RandR extension library
ii  libxrender1   1:0.9.0.2-4X Rendering Extension client libra
ii  libxt61:1.0.0-5  X11 toolkit intrinsics library
ii  psmisc22.2-1 Utilities that use the proc filesy
ii  zlib1g1:1.2.3-13 compression library - runtime

firefox recommends no packages.

-- no debconf information


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



Bug#361898: FW: Bug#361898: ark: remember archive format for unknown types

2006-08-17 Thread Tim Caulder

Bug 132550 has been submitted to KDE Bugzilla.

Original Message Follows
From: Olivier Trichet [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED], [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Bug#361898: ark: remember archive format for unknown types
Date: Tue, 15 Aug 2006 13:23:26 +0200
MIME-Version: 1.0
Received: from spohr.debian.org ([140.211.166.43]) by 
bay0-mc5-f15.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2444); Tue, 15 
Aug 2006 04:56:14 -0700
Received: from debbugs by spohr.debian.org with local (Exim 4.50)id 
1GCxPK-We-CF; Tue, 15 Aug 2006 04:48:30 -0700
Received: via spool by [EMAIL PROTECTED] 
id=U361898.115564103421152  (code U ref 361898); Tue, 15 Aug 2006 
11:48:29 +
Received: (at 361898-submitter) by bugs.debian.org; 15 Aug 2006 11:23:54 
+
Received: from ble59-3-82-225-192-42.fbx.proxad.net ([82.225.192.42] 
helo=bruine.nivalis.org)by spohr.debian.org with esmtp (Exim 4.50)id 
1GCx1V-0005TA-Ndfor [EMAIL PROTECTED]; Tue, 15 Aug 2006 
04:23:53 -0700
Received: by bruine.nivalis.org (Postfix, from userid 1000)id 998B123F83; 
Tue, 15 Aug 2006 13:23:27 +0200 (CEST)

X-Message-Info: LsUYwwHHNt0QV3kJP5MNy88jj4mFoqcUDgqxJYYewHk=
X-Loop: [EMAIL PROTECTED]
Resent-To: Tim Caulder [EMAIL PROTECTED]
Resent-Date: Tue, 15 Aug 2006 11:48:29 +
Resent-Message-ID: [EMAIL PROTECTED]
X-Debian-PR-Message: report 361898
X-Debian-PR-Package: ark
X-Debian-PR-Keywords:
X-Debian-PR-Source: kdeutils
User-Agent: KMail/1.9.3
References: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org

X-Spam-Level:
X-Spam-Status: No, hits=-2.0 required=4.0 tests=BAYES_00,RCVD_IN_SORBS 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Resent-From: Debian BTS [EMAIL PROTECTED]
Resent-Date: Tue, 15 Aug 2006 04:48:30 -0700
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 15 Aug 2006 11:56:14.0193 (UTC) 
FILETIME=[CEE23610:01C6C061]



Hello Tim,

you open the following whishlist bug in the Debian BTS against ark.
If you are still interested in its resolution, please open a bug in the KDE
Bugzilla, and then send back to [EMAIL PROTECTED] the KDE bug number
you open.

Thanks,
Olivier

Le mardi 11 avril 2006 07:10, vous avez écrit :

Package: ark
Version: 4:3.5.1-2
Severity: wishlist

there should be a way to remember/add an uknown type and associated
archive format instead of being prompted each time to choose one. i.e.
if I have a file of type application/lwtp I would like to define that as
a zip archive only once.






  1   2   3   4   5   >