Bug#502333: Bug #502333 ext3 external journal_dev crashes grub2

2009-02-03 Thread Felix Zielcke
Hello,

can you please try out if the attached patch solves your problem?
You can find instructions for compiling your own grub packages at the
Debian wiki: 
http://wiki.debian.org/de/GRUB2/Anleitung/DebianPaketVonOriginalQuelltext
Just place the patch in debian/patches.

-- 
Felix Zielcke
Index: fs/ext2.c
===
--- fs/ext2.c	(revisión: 1799)
+++ fs/ext2.c	(copia de trabajo)
@@ -71,8 +71,53 @@
  ? EXT2_GOOD_OLD_INODE_SIZE \
  : grub_le_to_cpu16 (data->sblock.inode_size))
 
-#define EXT3_FEATURE_COMPAT_HAS_JOURNAL	0x0004
+/* Superblock filesystem feature flags (RW compatible)
+ * A filesystem with any of these enabled can be read and written by a driver
+ * that does not understand them without causing metadata/data corruption */
+#define EXT2_FEATURE_COMPAT_DIR_PREALLOC	0x0001
+#define EXT2_FEATURE_COMPAT_IMAGIC_INODES	0x0002
+#define EXT3_FEATURE_COMPAT_HAS_JOURNAL		0x0004
+#define EXT2_FEATURE_COMPAT_EXT_ATTR		0x0008
+#define EXT2_FEATURE_COMPAT_RESIZE_INODE	0x0010
+#define EXT2_FEATURE_COMPAT_DIR_INDEX		0x0020
+/* Superblock filesystem feature flags (RO compatible)
+ * A filesystem with any of these enabled can be safely read by a driver that
+ * does not understand them, but should not be written to, usually because
+ * additional metadata is required */
+#define EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER	0x0001
+#define EXT2_FEATURE_RO_COMPAT_LARGE_FILE	0x0002
+#define EXT2_FEATURE_RO_COMPAT_BTREE_DIR	0x0004
+#define EXT4_FEATURE_RO_COMPAT_GDT_CSUM		0x0010
+#define EXT4_FEATURE_RO_COMPAT_DIR_NLINK	0x0020
+#define EXT4_FEATURE_RO_COMPAT_EXTRA_ISIZE	0x0040
+/* Superblock filesystem feature flags (back-incompatible)
+ * A filesystem with any of these enabled should not be attempted to be read
+ * by a driver that does not understand them, since they usually indicate
+ * metadata format changes that might confuse the reader. */
+#define EXT2_FEATURE_INCOMPAT_COMPRESSION	0x0001
+#define EXT2_FEATURE_INCOMPAT_FILETYPE		0x0002
+#define EXT3_FEATURE_INCOMPAT_RECOVER		0x0004 /* Needs recovery */
+#define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV	0x0008 /* Volume is journal device */
+#define EXT2_FEATURE_INCOMPAT_META_BG		0x0010
+#define EXT4_FEATURE_INCOMPAT_EXTENTS		0x0040 /* Extents used */
+#define EXT4_FEATURE_INCOMPAT_64BIT		0x0080
+#define EXT4_FEATURE_INCOMPAT_FLEX_BG		0x0200
 
+/* The set of back-incompatible features this driver DOES support. Add (OR)
+ * flags here as the related features are implemented into the driver */
+#define EXT2_DRIVER_SUPPORTED_INCOMPAT ( EXT2_FEATURE_INCOMPAT_FILETYPE \
+   | EXT4_FEATURE_INCOMPAT_EXTENTS )
+/* List of rationales for the ignored "incompatible" features:
+ * needs_recovery: Not really back-incompatible - was added as such to forbid
+ * ext2 drivers from mounting an ext3 volume with a dirty
+ * journal because they will ignore the journal, but the next
+ * ext3 driver to mount the volume will find the journal and
+ * replay it, potentially corrupting the metadata written by
+ * the ext2 drivers
+ */
+#define EXT2_DRIVER_IGNORED_INCOMPAT ( EXT3_FEATURE_INCOMPAT_RECOVER )
+
+
 #define EXT3_JOURNAL_MAGIC_NUMBER	0xc03b3998U
 
 #define EXT3_JOURNAL_DESCRIPTOR_BLOCK	1
@@ -486,10 +531,12 @@
   return 0;
 }
 
+#define EXT2_DRIVER_MOUNT_FAIL(message) { local_error = (message); goto fail; }
 static struct grub_ext2_data *
 grub_ext2_mount (grub_disk_t disk)
 {
   struct grub_ext2_data *data;
+  const char *local_error = 0;
 
   data = grub_malloc (sizeof (struct grub_ext2_data));
   if (!data)
@@ -498,13 +545,19 @@
   /* Read the superblock.  */
   grub_disk_read (disk, 1 * 2, 0, sizeof (struct grub_ext2_sblock),
   (char *) &data->sblock);
-  if (grub_errno)
-goto fail;
+  if (grub_errno != GRUB_ERR_NONE)
+EXT2_DRIVER_MOUNT_FAIL(0);
 
   /* Make sure this is an ext2 filesystem.  */
   if (grub_le_to_cpu16 (data->sblock.magic) != EXT2_MAGIC)
-goto fail;
+EXT2_DRIVER_MOUNT_FAIL("not an ext2 filesystem");
   
+  /* Check the FS doesn't have feature bits enabled that we don't support. */
+  if (grub_le_to_cpu32 (data->sblock.feature_incompat)
+& ~(EXT2_DRIVER_SUPPORTED_INCOMPAT | EXT2_DRIVER_IGNORED_INCOMPAT))
+EXT2_DRIVER_MOUNT_FAIL("filesystem has unsupported incompatible features");
+
+  
   data->disk = disk;
 
   data->diropen.data = data;
@@ -514,13 +567,15 @@
   data->inode = &data->diropen.inode;
 
   grub_ext2_read_inode (data, 2, data->inode);
-  if (grub_errno)
-goto fail;
+  if (grub_errno != GRUB_ERR_NONE)
+EXT2_DRIVER_MOUNT_FAIL(0);
   
   return data;
 
  fail:
-  grub_error (GRUB_ERR_BAD_FS, "not an ext2 filesystem");
+  /* Only call grub_error if the fail was _not_ caused by underlying errors.  */
+  if (local_error)
+grub_error (GRUB_ERR_BAD_FS, local_error);
   grub_free (data);
   return 0;
 }


Bug#504747: marked as done (gnu-fdisk: wipes out MBR when used on GPT partitions)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Wed, 04 Feb 2009 02:47:05 +
with message-id 
and subject line Bug#504747: fixed in gnu-fdisk 1.2-1
has caused the Debian Bug report #504747,
regarding gnu-fdisk: wipes out MBR when used on GPT partitions
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
504747: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=504747
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gnu-fdisk
Version: 1.0-3+b1
Severity: grave
Justification: causes non-serious data loss

gnu-fdisk wipes out the Code Area in the MBR of a given device when modifying a 
GPT partition. If this happens to be the boot device, this can cause serious 
trouble.

The behaviour can be easily verified with dd and hexdump.



Create a blockdevice with a gpt label, then write data to the code area, e.g.:

dd if=/dev/urandom of=/dev/sdc bs=440 count=1

and verify that it's there:

dd if=/dev/sdc bs=512 count=1 | hexdump -C -v

Then get fdisk to rewrite the partition table (starting and immediately 
(re)writing the partition table works); a verification with dd/hexdump should 
show an empty Code Area.

The free encyclopedia has a nice layout of the MBR, for verification: 
http://en.wikipedia.org/wiki/Master_boot_record


best regards,
Michael


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

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

Versions of packages gnu-fdisk depends on:
ii  libc62.7-15  GNU C Library: Shared libraries
ii  libncurses5  5.6+20080830-1  shared libraries for terminal hand
ii  libparted1.8-10  1.8.8.git.2008.03.24-11 The GNU Parted disk partitioning s
ii  libuuid1 1.41.2-1universally unique id library

gnu-fdisk recommends no packages.

gnu-fdisk suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: gnu-fdisk
Source-Version: 1.2-1

We believe that the bug you reported is fixed in the latest version of
gnu-fdisk, which is due to be installed in the Debian FTP archive:

gnu-fdisk_1.2-1.diff.gz
  to pool/main/g/gnu-fdisk/gnu-fdisk_1.2-1.diff.gz
gnu-fdisk_1.2-1.dsc
  to pool/main/g/gnu-fdisk/gnu-fdisk_1.2-1.dsc
gnu-fdisk_1.2-1_i386.deb
  to pool/main/g/gnu-fdisk/gnu-fdisk_1.2-1_i386.deb
gnu-fdisk_1.2.orig.tar.gz
  to pool/main/g/gnu-fdisk/gnu-fdisk_1.2.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 504...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Xavier Oswald  (supplier of updated gnu-fdisk package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 23 Dec 2008 20:42:51 +0100
Source: gnu-fdisk
Binary: gnu-fdisk
Architecture: source i386
Version: 1.2-1
Distribution: unstable
Urgency: high
Maintainer: Parted Maintainer Team 
Changed-By: Xavier Oswald 
Description: 
 gnu-fdisk  - Linux fdisk replacement based on libparted
Closes: 445304 463720 504747 512751
Changes: 
 gnu-fdisk (1.2-1) unstable; urgency=high
 .
   * New upstream release (Closes: #512751)
   * Fix inoperability for disks with unknown disklabel (Closes: #445304)
   * Fix wipes out MBR when used on GPT partitions(Closes: #504747)
   * Fix Segmentation fault (Closes: #463720)
   * Add Build-Depends on texinfo in debian/control
   * Rename debian/patches/pointer to debian/patches/pointer.patch
   * Add debian/pateches/mkinstalldirs.patch for adding the missing
 mkinstalldirs command
   * Update copyright about licences location
   * Remove leftover .pc/.version
Checksums-Sha1: 
 7c6ad4ccf78cfeef418ab8e1d5d3c98ede30b4d3 1208 gnu-fdisk_1.2-1.dsc
 67281e6bc4c12a7553982306d38775a22fded1ae 419344 gnu-fdisk_1.2.orig.tar.gz
 752676e71fba866d933c39ae3513202d5e5396ca 357865 gnu-fdisk_1.2-1.diff.gz
 802e8f96f692eee6e99ab9a8160b75e60c5f01cc 109556 gnu-fdisk_1.2-1_i386.deb
Checksums-Sha256: 
 ed4d0c81f9598529564e65ad9578aabb56445d79e1182fbee5d6f059d70546f8 1208 
gnu-fdisk_1.2-1.dsc
 1edef1730243cd40b8cd93e8a561c5056cec62f17c3f7e17b23600aae45d7ebd 419344 
gnu-fdisk_1.2.orig.tar.gz
 642f97acb794e61e7e8cfb5794e2

Bug#514042: marked as done ([scim-qtimm] only installs doc/scim-qtimm)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Wed, 04 Feb 2009 00:32:06 +
with message-id 
and subject line Bug#514042: fixed in scim-qtimm 0.9.4-4
has caused the Debian Bug report #514042,
regarding [scim-qtimm] only installs doc/scim-qtimm
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
514042: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514042
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: scim-qtimm
Version: 0.9.4-3
Severity: serious
Tags: patch

The package doesn't install it's binary part. This makes it quite
useless for anyone who wants scim support in their qt applications.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.28.1

Debian Release: 5.0
  500 unstableftp.debian.org
  500 unstabledebian.netcologne.de
1 experimentalftp.debian.org
---
 debian/rules  |1 +
 debian/scim-qtimm.install |2 ++
 2 files changed, 3 insertions(+), 0 deletions(-)
 create mode 100644 debian/scim-qtimm.install

diff --git a/debian/rules b/debian/rules
index d609432..a140727 100755
--- a/debian/rules
+++ b/debian/rules
@@ -75,6 +75,7 @@ install: build
 
# Add here commands to install the package into debian/scim-bridge.
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
+   dh_install --sourcedir=$(CURDIR)/debian/tmp --list-missing
 
 binary-indep: build install
 binary-arch: build install
diff --git a/debian/scim-qtimm.install b/debian/scim-qtimm.install
new file mode 100644
index 000..dec1faf
--- /dev/null
+++ b/debian/scim-qtimm.install
@@ -0,0 +1,2 @@
+usr/share/locale/*/LC_MESSAGES/*
+usr/lib/qt3/plugins/inputmethods/libqscim.*
-- 
1.6.0.6



--- End Message ---
--- Begin Message ---
Source: scim-qtimm
Source-Version: 0.9.4-4

We believe that the bug you reported is fixed in the latest version of
scim-qtimm, which is due to be installed in the Debian FTP archive:

scim-qtimm_0.9.4-4.diff.gz
  to pool/main/s/scim-qtimm/scim-qtimm_0.9.4-4.diff.gz
scim-qtimm_0.9.4-4.dsc
  to pool/main/s/scim-qtimm/scim-qtimm_0.9.4-4.dsc
scim-qtimm_0.9.4-4_amd64.deb
  to pool/main/s/scim-qtimm/scim-qtimm_0.9.4-4_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 514...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Zhengpeng Hou  (supplier of updated scim-qtimm 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 03 Feb 2009 23:53:39 +
Source: scim-qtimm
Binary: scim-qtimm
Architecture: source amd64
Version: 0.9.4-4
Distribution: unstable
Urgency: low
Maintainer: Zhengpeng Hou 
Changed-By: Zhengpeng Hou 
Description: 
 scim-qtimm - SCIM context plugin for qt-immodule
Closes: 514042
Changes: 
 scim-qtimm (0.9.4-4) unstable; urgency=low
 .
   * Fix debian/rules, because of my stupid fault. (Closes: #514042)
 - thanks Sven Eckelmann
Checksums-Sha1: 
 83139e9f6517b45b5e7a59f93aedcfe9a4d6a969 1119 scim-qtimm_0.9.4-4.dsc
 545f1c818884403906f704a1cfb1673d4e29b4e5 3970 scim-qtimm_0.9.4-4.diff.gz
 99af31c39399604666966260369850d309d347c6 59870 scim-qtimm_0.9.4-4_amd64.deb
Checksums-Sha256: 
 e221114cea87cd7b32082da62e29ff242516569fab46fe70c5b06c0d0a659b0f 1119 
scim-qtimm_0.9.4-4.dsc
 5376facb4ecd0314a144ca5c5e88ab1c862d6612d2d0bd2c49f949a37bce6def 3970 
scim-qtimm_0.9.4-4.diff.gz
 978782216016150b7e9075142db5f98e3ce6838fc53c41f46c5b224b59d1b75e 59870 
scim-qtimm_0.9.4-4_amd64.deb
Files: 
 03f5f8174edfbd40dad4fcc4f75b2ba5 1119 utils optional scim-qtimm_0.9.4-4.dsc
 de56823804dbb8322cc265cb0523479d 3970 utils optional scim-qtimm_0.9.4-4.diff.gz
 fd889f8c1e1d0593c7974940387b53c4 59870 utils optional 
scim-qtimm_0.9.4-4_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Signed by Ana Guerrero

iEYEARECAAYFAkmI3vcACgkQn3j4POjENGFm6QCdFMOf9ZGmpJ7d/Z3URV5UvhJL
NncAnj0Y6+CqZUJsa4h/vFdHchoXEN0o
=FUpY
-END PGP SIGNATURE-


--- End Message ---


Bug#514076: libasio-dev: missing hard dependency on libboost-date-time-dev

2009-02-03 Thread Zack Weinberg
Package: libasio-dev
Version: 1.3.1-1
Severity: grave
Justification: renders package unusable

libasio-dev does not declare any dependency on libboost-date-time-dev;
however, any non-contrived use of the library will include headers that
transitively include headers from that package.  For example: I modified
the "asynchronous daytime server" example from the documentation to use
only the headers it needs instead of the convenience header .
It was not possible to make the example compile in the absence of
libboost-date-time-dev.

Long term I think this is really a bug in boost - the date_time headers
that don't require the associated runtime library should be moved to
libboost-dev - but for lenny, at least, libasio-dev should grow a dependency
on libboost-date-time-dev.

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

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

Versions of packages libasio-dev depends on:
ii  libboost-dev  1.34.1-15  Boost C++ Libraries development fi

Versions of packages libasio-dev recommends:
ii  libssl-dev0.9.8g-15  SSL development libraries, header 

libasio-dev suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Re: mozilla-stumbleupon: current version incompatible with current version of Iceweasel

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 514026 + patch
Bug#514026: mozilla-stumbleupon: current version incompatible with current 
version of Iceweasel
There were no tags set.
Tags added: patch

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Set priority to normal, more info needed

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 513810 normal
Bug#513810: hibernate: MacBook hangs after Suspending console(s)
Severity set to `normal' from `critical'

> tags 513810 + moreinfo
Bug#513810: hibernate: MacBook hangs after Suspending console(s)
There were no tags set.
Tags added: moreinfo

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513810: Set priority to normal, more info needed

2009-02-03 Thread Luca Niccoli
severity 513810 normal
tags 513810 + moreinfo
thanks

This is hardly severity important, definitely not critical.
Can you provide link to the pages that make you suspect this is a kernel 
problem?
Have you tried installing uswsusp and running s2ram?
Here you'll find tips to get it working:
http://en.opensuse.org/S2ram
Cheers,

Luca


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


Bug#514049: [Pkg-mwavem-devel] Bug#514049: mwavem package does not install under Lenny

2009-02-03 Thread Thomas Hood
Do you have a need for this package?

-- 
Thomas



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#510432: imapproxy

2009-02-03 Thread José Luis Tallón
Niko Tyni wrote:
> On Tue, Jan 20, 2009 at 11:02:42AM +0200, Niko Tyni wrote:
>
>   
>> The attached new patch seems to work for me, but please verify. It uses ucf
>> for config file handling, which simplifies things IMO.
>> 
>
> I'm attaching an improved version that handles listen_port better.
>
> I do intend to NMU this when I've had some sleep and can find the time
> for final tests. If somebody wants to take over, be my guest.
>   
I'd rather you uploaded my new version, based on the comments I got.
Real Life Keeps Interferring, as usual :-(
> I'm a bit surprised the package is still a candidate for lenny at this point.
>   
that's an artifact of the freeze, I guess.
But we should try to release with imapproxy ... a proper version, I mean

Thanks,

J.L.




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#510432: imapproxy

2009-02-03 Thread Niko Tyni
On Tue, Jan 20, 2009 at 11:02:42AM +0200, Niko Tyni wrote:

> The attached new patch seems to work for me, but please verify. It uses ucf
> for config file handling, which simplifies things IMO.

I'm attaching an improved version that handles listen_port better.

I do intend to NMU this when I've had some sleep and can find the time
for final tests. If somebody wants to take over, be my guest.

I'm a bit surprised the package is still a candidate for lenny at this point.
-- 
Niko Tyni   nt...@debian.org
diff -u up-imapproxy-1.2.6/debian/control up-imapproxy-1.2.6/debian/control
--- up-imapproxy-1.2.6/debian/control
+++ up-imapproxy-1.2.6/debian/control
@@ -9,7 +9,7 @@
 
 Package: imapproxy
 Architecture: any
-Depends: lsb-base, ${shlibs:Depends}, ${misc:Depends}
+Depends: lsb-base, ${shlibs:Depends}, ${misc:Depends}, ucf (>= 0.28)
 Description: IMAP protocol proxy
  UP-ImapProxy proxies IMAP transactions between an IMAP client and an IMAP
  server. The general idea is that the client should never know that it is
diff -u up-imapproxy-1.2.6/debian/rules up-imapproxy-1.2.6/debian/rules
--- up-imapproxy-1.2.6/debian/rules
+++ up-imapproxy-1.2.6/debian/rules
@@ -67,6 +67,10 @@
 	mv debian/imapproxy/usr/sbin/in.imapproxyd \
 		debian/imapproxy/usr/sbin/imapproxyd
 
+	# prepare the default configuration file
+	perl debian/prepare-config-file < scripts/imapproxy.conf \
+   > debian/imapproxy/usr/share/imapproxy/imapproxy.conf.default
+
 	dh_installexamples
 	chmod 644 $(CURDIR)/debian/imapproxy/usr/share/doc/imapproxy/examples/imapproxy.conf
 
diff -u up-imapproxy-1.2.6/debian/changelog up-imapproxy-1.2.6/debian/changelog
--- up-imapproxy-1.2.6/debian/changelog
+++ up-imapproxy-1.2.6/debian/changelog
@@ -1,3 +1,11 @@
+up-imapproxy (1.2.6-4.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Don't overwrite the config file on upgrades. (Closes: #510432)
++ now depends on ucf (>= 0.28)
+
+ -- Niko Tyni   Tue, 03 Feb 2009 22:46:51 +0200
+
 up-imapproxy (1.2.6-4) unstable; urgency=medium
 
   * 'postinst' script: configuration file processing
diff -u up-imapproxy-1.2.6/debian/imapproxy.config up-imapproxy-1.2.6/debian/imapproxy.config
--- up-imapproxy-1.2.6/debian/imapproxy.config
+++ up-imapproxy-1.2.6/debian/imapproxy.config
@@ -12,9 +12,14 @@
 
 set -e
 
+CONFIG=/etc/imapproxy.conf
 
 case "$1" in
 configure|reconfigure)
+	if [ -f $CONFIG ]; then
+	SERVER="$(perl -ne '/^\s*server_hostname\s*(\S+)$/ && print $1' $CONFIG)"
+	[ -z "$SERVER" ] || db_set imapproxy/imap-server "$SERVER"
+	fi
 	db_input medium imapproxy/imap-server || true
 	db_go
 ;;
diff -u up-imapproxy-1.2.6/debian/imapproxy.dirs up-imapproxy-1.2.6/debian/imapproxy.dirs
--- up-imapproxy-1.2.6/debian/imapproxy.dirs
+++ up-imapproxy-1.2.6/debian/imapproxy.dirs
@@ -2,6 +2,7 @@
 etc/default
 usr/sbin
 var/lib/imapproxy/chroot
+usr/share/imapproxy
 usr/share/doc/imapproxy
 usr/share/doc/imapproxy/examples
 var/run
diff -u up-imapproxy-1.2.6/debian/imapproxy.postinst up-imapproxy-1.2.6/debian/imapproxy.postinst
--- up-imapproxy-1.2.6/debian/imapproxy.postinst
+++ up-imapproxy-1.2.6/debian/imapproxy.postinst
@@ -29,14 +29,7 @@
 # `abort-remove' or `abort-deconfigure'.
 
 DESTFILE=/etc/imapproxy.conf
-CFGFILE=imapproxy.conf
-
-PARAMS="server_hostname proc_username proc_groupname chroot_directory listen_port"
-server_hostname="localhost"
-proc_username="nobody"
-proc_groupname="nogroup"
-chroot_directory="/var/lib/imapproxy/chroot"
-listen_port=143
+SRCFILE=/usr/share/imapproxy/imapproxy.conf.default
 
 case "$1" in
 configure)
@@ -45,34 +38,26 @@
 	db_get imapproxy/imap-server || true
 	server_hostname="$RET"
 
+	# this should really be a debconf setting too, but it's too
+	# late to do that for lenny, so parse it here
+	if [ -r $DESTFILE ]
+	then
+	CONFIGURED_PORT=$(perl -ne '/^\s*listen_port\s*(\S+)$/ && print $1' $DESTFILE)
+	fi
+
 	if [ "$server_hostname" = "localhost" ]; then
 		# change bind port if localhost (#470431)
-		listen_port=1143;
+		listen_port=${CONFIGURED_PORT:-1143}
+	else
+		listen_port=${CONFIGURED_PORT:-143}
 	fi
 
-	test -f $DESTFILE || cp /usr/share/doc/imapproxy/examples/$CFGFILE $DESTFILE;
 	TMPFILE=`tempfile`
-	mv $DESTFILE $TMPFILE
-	export PARAMS
-	export $PARAMS
-
-/usr/bin/perl -- - $DESTFILE $TMPFILE << 'EOSCRIPT'
-use warnings;
-use strict;
-
-my $CFG;
-open(CFG, '>', shift) or die "imapproxy.postint: could not open: $!";
-
-my %params = map { $_ => undef } split(/\s/, $ENV{'PARAMS'});
-
-while (<>)
-{
-	my ($key) = m/^#?(\w+)/;
-	if ( defined $key and exists $params{$key} ) { print CFG "$key $ENV{$key}\n"; }
-	else { print CFG $_; }
-}
-
-EOSCRIPT
+	sed "s/^server_hostname .*/server_hostname ${server_hostname}/ ;
+	 s/^listen_port .*/listen_port ${listen_port}/" \
+	 < $SRCFILE > $TMPFILE
+	chmod 644 $TMPFILE
+	ucf --debconf-ok $TMPFILE $DESTFILE
 
 	# prevent incorrect time zone config (#436555)
 	if [ ! -f ${chroot_directory}/etc/localtime ]; then
@@ -80,14 +65,14 @@
 		cp /

Processed: Re: Bug#511893: [3f74bc0] Fix for Bug#511893 committed to git

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 511893 3.0014
Bug#511893: ucf stores diff (of private files) in debconf (world readable)
Bug marked as found in version 3.0014 and reopened.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#511893: [3f74bc0] Fix for Bug#511893 committed to git

2009-02-03 Thread Niko Tyni
found 511893 3.0014  
thanks

On Fri, Jan 23, 2009 at 11:15:41AM -0600, Manoj Srivastava wrote:
>  Joey Hess  on Fri, 23 Jan 2009 11:14:12 -0600.
>  The fix will be in the next upload. 
> =
> reset diff question after use so contents are not written to disk

Unfortunately this is not enough (or even needed): the sensitive
data is not stored in the value of ucf/show_diff, but in the DIFF
variable associated with it, as verified by e.g.

 grep-dctrl  -FName ucf/show_diff /var/cache/debconf/config.dat

Proposed patch attached.
-- 
Niko Tyni   nt...@debian.org
>From 407408c564a864f9f433ced69c359b7d33a58a2f Mon Sep 17 00:00:00 2001
From: Niko Tyni 
Date: Wed, 4 Feb 2009 00:06:26 +0200
Subject: [PATCH] Substitute the ucf/show_diff DIFF variable contents to protect sensitive data

> reset diff question after use so contents are not written to disk

Unfortunately this is not enough (or even needed): the sensitive
data is not stored in the value of ucf/show_diff, but in the DIFF
variable associated with it.
---
 ucf |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/ucf b/ucf
index 883897b..b2f60da 100755
--- a/ucf
+++ b/ucf
@@ -78,6 +78,7 @@ show_diff() {
 	# may contain sensitive information, so clear
 	# immediatly after use so it is never written
 	# to disk
+	db_subst $templ DIFF ""
 	db_reset $templ 
 	db_capb
 else
-- 
1.5.6.5



Bug#513205: marked as done ("debian/rules clean" not working)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 03 Feb 2009 21:47:03 +
with message-id 
and subject line Bug#513205: fixed in zsnes 1.510-2.2
has caused the Debian Bug report #513205,
regarding "debian/rules clean" not working
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
513205: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513205
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: zsnes
Version: 1.510-2.1
Severity: serious

when executing the "fakeroot debian/rules clean" command for zsnes
package, the .o files in the src directory is still not deleted. Only
the stamps are deleted.
This may be a problem with the rules script, as the "make distclean"
command is executed in the top directory and not the "src" directory,
which essentially done nothing.

As far as I've checked, the source appears to need to be cleaned
manually as the "make distclean" in src directory won't work either.


--- End Message ---
--- Begin Message ---
Source: zsnes
Source-Version: 1.510-2.2

We believe that the bug you reported is fixed in the latest version of
zsnes, which is due to be installed in the Debian FTP archive:

zsnes_1.510-2.2.diff.gz
  to pool/main/z/zsnes/zsnes_1.510-2.2.diff.gz
zsnes_1.510-2.2.dsc
  to pool/main/z/zsnes/zsnes_1.510-2.2.dsc
zsnes_1.510-2.2_i386.deb
  to pool/main/z/zsnes/zsnes_1.510-2.2_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 513...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vincent Fourmond  (supplier of updated zsnes package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 03 Feb 2009 21:52:28 +0100
Source: zsnes
Binary: zsnes
Architecture: source i386
Version: 1.510-2.2
Distribution: unstable
Urgency: medium
Maintainer: Joshua Kwan 
Changed-By: Vincent Fourmond 
Description: 
 zsnes  - Emulator of the Super Nintendo Entertainment System (TM)
Closes: 513205
Changes: 
 zsnes (1.510-2.2) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Fix the debian/rules clean problem, with a patch courtesy of
 Gunnar Wolf  (closes: #513205)
   * Urgency medium to fix RC bug in testing
Checksums-Sha1: 
 607ad2eed06e6ec797526d34933435a856d71d54 1072 zsnes_1.510-2.2.dsc
 76025ea3d02bf3e149bade417efcec09321c57fc 15423 zsnes_1.510-2.2.diff.gz
 a2313d3f4c80cc665d1e667bcdf9e81bdd56 894268 zsnes_1.510-2.2_i386.deb
Checksums-Sha256: 
 476160498ee9490c09b51b0443902f47fdf448ba2cd744d37b2d6174072534cc 1072 
zsnes_1.510-2.2.dsc
 44e67776dd8091f1abdcbd7685d536302cffd7a338d7e64da6a271b87dbd37c6 15423 
zsnes_1.510-2.2.diff.gz
 95de648d8d04386410673ff42d4efc2f7a6d2a5a93a60b242eecdf93d380ed6b 894268 
zsnes_1.510-2.2_i386.deb
Files: 
 bd83c88c76f2a9bae3638396f99bd83c 1072 otherosfs optional zsnes_1.510-2.2.dsc
 53b1fe82b55f5e7a6a659d7e1ef7cc9b 15423 otherosfs optional 
zsnes_1.510-2.2.diff.gz
 02983151804b9fb80abbc9e6e3961ed9 894268 otherosfs optional 
zsnes_1.510-2.2_i386.deb

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

iEYEARECAAYFAkmIuQsACgkQx/UhwSKygsokCwCdHPlGJD5e5Z0Sx2/9PRsQTwpY
YOgAni7sCZ6Bplo01uY9Ht9agdIlk94e
=g2Rl
-END PGP SIGNATURE-


--- End Message ---


Processed: your mail

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 514064 + pending
Bug#514064: python-openid: debian/copyright says it's LGPL but license is Apache
There were no tags set.
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513205: NMUing zsnes

2009-02-03 Thread Vincent Fourmond

  Hello,

  Since you are on the LowThresholdNMU list, I just did NMU the fix for
bug #513205 for znes. I am attaching the diff, based on the one by
Gunnar Wolf -- with a slight modification that actually makes it work ;-).

  Regards, and good luck for whatever you're doing that keeps you busy !

Vincent

-- 
Vincent Fourmond, Debian Developer
http://vince-debian.blogspot.com/

Some pirates achieved immortality by great deeds of cruelty
and derring-do. Some achieved immortality by amassing great
wealth. But the captain had long ago decided that he would,
on the whole, prefer to achieve immortality by not dying.
 -- Terry Pratchet, the Colour of Magic

Vincent, listening to Nil (The Cardigans)
diff -u zsnes-1.510/debian/rules zsnes-1.510/debian/rules
--- zsnes-1.510/debian/rules
+++ zsnes-1.510/debian/rules
@@ -24,7 +24,9 @@
dh_testroot
rm -f build-stamp
 
-   [ ! -f Makefile ] || $(MAKE) distclean
+# 'make distclean' appears to be broken
+   # [ ! -f src/Makefile ] || cd src && $(MAKE) distclean
+   rm -f $$(find src/ -type f -name *.o) src/Makefile src/cfg.h 
src/config.h src/config.log src/config.status src/input.h src/makefile.dep 
src/md.h src/parsegen src/tools/depbuild src/zsnes
 
dh_clean
 
diff -u zsnes-1.510/debian/changelog zsnes-1.510/debian/changelog
--- zsnes-1.510/debian/changelog
+++ zsnes-1.510/debian/changelog
@@ -1,3 +1,12 @@
+zsnes (1.510-2.2) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix the debian/rules clean problem, with a patch courtesy of
+Gunnar Wolf  (closes: #513205)
+  * Urgency medium to fix RC bug in testing
+
+ -- Vincent Fourmond   Tue, 03 Feb 2009 21:52:28 +0100
+
 zsnes (1.510-2.1) unstable; urgency=high
 
   * Non-maintainer upload.


Bug#514064: python-openid: debian/copyright says it's LGPL but license is Apache

2009-02-03 Thread Adeodato Simó
Package: python-openid
Version: 2.2.1-1
Severity: serious

As per http://article.gmane.org/gmane.linux.debian.devel.python/4208,
your copyright file is wrong.

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
A lie can go round the world before the truth has got its boots on.
-- Terry Pratchett




--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: marked as done (libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 03 Feb 2009 21:02:03 +
with message-id 
and subject line Bug#513971: fixed in libcatalyst-perl 5.71000-2
has caused the Debian Bug report #513971,
regarding libcatalyst-perl: tries to overwrite file owned by 
libcatalyst-manual-perl
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
513971: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513971
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libcatalyst-perl
Version: 5.71000-1
Severity: serious


Hi,

automatic installation tests of packages that share a file and at the
same time do not conflict by their package dependency relationships has
detected the following problem:


Date: 2009-02-02
Architecture: amd64
Distribution: sid
Command: apt-get --assume-yes --allow-unauthenticated install 
libcatalyst-manual-perl libcatalyst-perl

Reading package lists...
Building dependency tree...
The following extra packages will be installed:
  libalgorithm-c3-perl libcgi-simple-perl libclass-accessor-perl
  libclass-c3-perl libclass-data-inheritable-perl libclass-inspector-perl
  libdata-dump-perl libextutils-autoinstall-perl libextutils-install-perl
  libextutils-parsexs-perl libfile-copy-recursive-perl libfile-modified-perl
  libfile-remove-perl libfile-slurp-perl libhtml-parser-perl
  libhtml-tagset-perl libhtml-tree-perl libhttp-body-perl
  libhttp-request-ascgi-perl libmime-types-perl libmodule-corelist-perl
  libmodule-install-perl libmodule-scandeps-perl libpar-dist-perl
  libparent-perl libpath-class-perl libsub-uplevel-perl libtest-exception-perl
  libtest-mockobject-perl libtext-simpletable-perl libtree-simple-perl
  libtree-simple-visitorfactory-perl libuniversal-can-perl
  libuniversal-isa-perl liburi-perl libwww-perl libyaml-perl libyaml-tiny-perl
  perl perl-modules
Suggested packages:
  libtest-pod-perl libtest-pod-coverage-perl libfcgi-procmanager-perl
  libcatalyst-engine-apache-perl libsort-versions-perl libio-socket-ssl-perl
  perl-doc libterm-readline-gnu-perl libterm-readline-perl-perl
Recommended packages:
  libfcgi-perl libclass-c3-xs-perl libarchive-zip-perl libmailtools-perl
  libhtml-format-perl libcompress-zlib-perl
The following NEW packages will be installed:
  libalgorithm-c3-perl libcatalyst-manual-perl libcatalyst-perl
  libcgi-simple-perl libclass-accessor-perl libclass-c3-perl
  libclass-data-inheritable-perl libclass-inspector-perl libdata-dump-perl
  libextutils-autoinstall-perl libextutils-install-perl
  libextutils-parsexs-perl libfile-copy-recursive-perl libfile-modified-perl
  libfile-remove-perl libfile-slurp-perl libhtml-parser-perl
  libhtml-tagset-perl libhtml-tree-perl libhttp-body-perl
  libhttp-request-ascgi-perl libmime-types-perl libmodule-corelist-perl
  libmodule-install-perl libmodule-scandeps-perl libpar-dist-perl
  libparent-perl libpath-class-perl libsub-uplevel-perl libtest-exception-perl
  libtest-mockobject-perl libtext-simpletable-perl libtree-simple-perl
  libtree-simple-visitorfactory-perl libuniversal-can-perl
  libuniversal-isa-perl liburi-perl libwww-perl libyaml-perl libyaml-tiny-perl
  perl perl-modules
0 upgraded, 42 newly installed, 0 to remove and 0 not upgraded.
Need to get 10.8MB of archives.
After this operation, 41.8MB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  perl-modules perl libalgorithm-c3-perl libcatalyst-manual-perl
  libfile-slurp-perl libextutils-autoinstall-perl libdata-dump-perl
  libclass-accessor-perl liburi-perl libhtml-tagset-perl libhtml-parser-perl
  libhtml-tree-perl libwww-perl libclass-inspector-perl
  libclass-data-inheritable-perl libtree-simple-perl libtext-simpletable-perl
  libpath-class-perl libtree-simple-visitorfactory-perl libuniversal-isa-perl
  libuniversal-can-perl libtest-mockobject-perl libyaml-perl libhttp-body-perl
  libfile-modified-perl libhttp-request-ascgi-perl libmodule-scandeps-perl
  libpar-dist-perl libyaml-tiny-perl libfile-remove-perl
  libmodule-corelist-perl libextutils-install-perl libextutils-parsexs-perl
  libmodule-install-perl libmime-types-perl libfile-copy-recursive-perl
  libcgi-simple-perl libsub-uplevel-perl libtest-exception-perl
  libclass-c3-perl libparent-perl libcatalyst-perl
Authentication warning overridden.
Get:1 http://localhost sid/main perl-modules 5.10.0-19 [3189kB]
Get:2 http://localhost sid/main perl 5.10.0-19 [5248kB]
Get:3 http://localhost sid/main libalgorithm-c3-perl 0.07-1 [11.6kB]
Get:4 http://localhost sid/non-free libcatalyst-manual-perl 5.7016-1 [319kB]
Get:5 http://localhost sid/main libfile-slurp-perl 999

Processed: Corrected forward

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded  512776 
> http://lurker.clamav.net/message/20090124.012134.3dece4a2.en.html
Bug#512776: License incompatibility with libgmp ("GPLv2 only" linking to 
"LGPLv3 or later")
Noted your statement that Bug has been forwarded to 
http://lurker.clamav.net/message/20090124.012134.3dece4a2.en.html.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514048: Missing dependency on zlib1g-dev

2009-02-03 Thread dann frazier
severity 514048 normal
thanks

On Tue, Feb 03, 2009 at 01:30:28PM -0500, zlinux...@wowway.com wrote:
> Package: linux-source-2.6.26
> Version: 2.6.26-13
> Severity: serious
> 
> Package linux-source-2.6.26 has a missing dependency on package zlib1g-dev. 
> If zlib1g-dev is not installed, make fails, as shown below:
> 
> lguest.c:34:18: error: zlib.h:
> No such file or directory
> make[1]: *** [lguest] Error 1
> make[1]:
> Leaving directory
> `/usr/src/linux-source-2.6.26/Documentation/lguest'
> make: ***

Well, I don't agree that this is release critical since building the
source isn't the only reason you might install this package. But, it
probably makes sense to recommend zlib1g-dev (like we do gcc) or - if
its not needed in most builds - suggest it like we do ncurses-dev.

-- 
dann frazier




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#514048: Missing dependency on zlib1g-dev

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 514048 normal
Bug#514048: Missing dependency on zlib1g-dev
Severity set to `normal' from `serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#509633: pidgin sound problems with gstreamer pulseaudio.

2009-02-03 Thread Milan P. Stanic
On Tue, 2009-02-03 at 09:18, Andreas Henriksson wrote:
> aww... I was told this should spit out a backtrace. Could you please try
> to run this:
> 
> export G_DEBUG=fatal_warnings
> gdb pidgin
> run
> 
> bt full
> quit

Here it is:
m...@cl:~> setenv G_DEBUG fatal_warnings
m...@cl:~> gdb pidgin
GNU gdb 6.8-debian
Copyright (C) 2008 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "showi copying"
and "show warranty" for details.
This GDB was configured as "i486-linux-gnu"...
(gdb) run
Starting program: /usr/bin/pidgin 
[Thread debugging using libthread_db enabled]
[New Thread 0xb70f88c0 (LWP 7277)]
[New Thread 0xb47e5b90 (LWP 7507)]
[New Thread 0xb3eceb90 (LWP 7508)]
[New Thread 0xb34cdb90 (LWP 7509)]
[New Thread 0xb2accb90 (LWP 7510)]

GStreamer-CRITICAL **: 
Trying to dispose element play, but it is not in the NULL state.
You need to explicitly set elements to the NULL state before
dropping the final reference, to allow them to clean up.

aborting...

Program received signal SIGABRT, Aborted.
[Switching to Thread 0xb70f88c0 (LWP 7277)]
0xb75a0556 in raise () from /lib/libc.so.6
(gdb) bt full
#0  0xb75a0556 in raise () from /lib/libc.so.6
No symbol table info available.
#1  0xb75a1d78 in abort () from /lib/libc.so.6
No symbol table info available.
#2  0xb7735064 in g_logv () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#3  0xb7735096 in g_log () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#4  0xb7ed1146 in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#5  0xb7f22394 in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#6  0x0008 in ?? ()
No symbol table info available.
#7  0xb7f26d04 in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#8  0x082327a8 in ?? ()
No symbol table info available.
#9  0x086ea178 in ?? ()
No symbol table info available.
#10 0x086f0028 in ?? ()
No symbol table info available.
#11 0xbf873858 in ?? ()
No symbol table info available.
#12 0xb7733426 in g_free () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
#13 0xb7ebf6e3 in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#14 0x086f0028 in ?? ()
No symbol table info available.
#15 0x0050 in ?? ()
No symbol table info available.
#16 0xbf873898 in ?? ()
No symbol table info available.
#17 0xb76afff4 in ?? () from /lib/libc.so.6
No symbol table info available.
#18 0xb76b1160 in ?? () from /lib/libc.so.6
No symbol table info available.
#19 0x081d52d8 in ?? ()
No symbol table info available.
#20 0xb7ebf60b in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#21 0xb7f3d25c in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#22 0x086f0028 in ?? ()
No symbol table info available.
#23 0x086f0028 in ?? ()
No symbol table info available.
#24 0xbf8738b8 in ?? ()
No symbol table info available.
#25 0xb7eec71d in ?? () from /usr/lib/libgstreamer-0.10.so.0
No symbol table info available.
#26 0x086f0028 in ?? ()
No symbol table info available.
#27 0x0050 in ?? ()
No symbol table info available.
#28 0xbf8738b8 in ?? ()
No symbol table info available.
#29 0xb77333fe in g_free () from /usr/lib/libglib-2.0.so.0
No symbol table info available.
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
(gdb) 
 
> Hopefully you already have debug information available for a useful
> backtrace.

-- 
Kind regards,  Milan



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#461519: libmikmod causes app to segfault or abort when loading multiple music files with varying number of channels.

2009-02-03 Thread Nico Golde
Hi,
Ingo, what is the status of this? It would be nice to get 
this fixed for lenny.

Did you check back with upstream?

Cheers
Nico

-- 
Nico Golde - http://www.ngolde.de - n...@jabber.ccc.de - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgppFASzxjT6t.pgp
Description: PGP signature


Processed: retitle 502333 to ext3 external journal_dev crashes grub2

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 502333 ext3 external journal_dev crashes grub2
Bug#502333: grub-pc: Search uuid in LVM crashes the bootloader
Changed Bug title to `ext3 external journal_dev crashes grub2' from `grub-pc: 
Search uuid in LVM crashes the bootloader'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: setting package to mdadm mdadm-udeb, tagging 498505, tagging 496334, tagging 499643

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #mdadm (2.6.7.2-1) UNRELEASED; urgency=low
> #
> #  * New upstream release, created for Debian lenny:
> #- fixes assembly of arrays that are being reshaped (closes: #512475)
> #- this bug was also responsible for other assembly problems
> #  (closes: #498505, #499643, #496334)
> #Again, many thanks to Neil Brown for being such an awesome upstream.
> #
> package mdadm mdadm-udeb
Ignoring bugs not assigned to: mdadm mdadm-udeb

> tags 498505 + pending
Bug#498505: mdadm: mdadm segfaults on superblock detection
Tags were: fixed-upstream patch
Bug#496334: mdadm segfault on --assemble --force with raid10
Bug#499643: Segmentation fault when attempting re-assembly of a failed RAID5 
via "mdadm -v -A --run --force"
Tags added: pending

> tags 496334 + pending
Bug#496334: mdadm segfault on --assemble --force with raid10
Tags were: pending fixed-upstream patch
Bug#498505: mdadm: mdadm segfaults on superblock detection
Bug#499643: Segmentation fault when attempting re-assembly of a failed RAID5 
via "mdadm -v -A --run --force"
Tags added: pending

> tags 499643 + pending
Bug#499643: Segmentation fault when attempting re-assembly of a failed RAID5 
via "mdadm -v -A --run --force"
Tags were: pending fixed-upstream patch
Bug#496334: mdadm segfault on --assemble --force with raid10
Bug#498505: mdadm: mdadm segfaults on superblock detection
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: setting package to atmailopen, tagging 514044, tagging 513977

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> #atmailopen (1.03+dfsg+svn91-2~1.gbp941214) UNRELEASED; urgency=low
> #
> #  * [f7fd0fd] Do not act as an open imap/pop3 proxy by default. Thanks
> #Richard van den Berg (Closes: #514044)
> #  * [9412148] Do not use directory.washington.edu as default LDAP
> #server. Thanks Richard van den Berg (Closes: #513977)
> #
> package atmailopen
Ignoring bugs not assigned to: atmailopen

> tags 514044 + pending
Bug#514044: By default atmailopen act as an open imap/pop3 proxy
Tags were: security
Tags added: pending

> tags 513977 + pending
Bug#513977: atmailopen: Default LDAP server should be removed
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#512475: this patch?

2009-02-03 Thread martin f krafft
tags 512475 patch pending
thanks

Seems like you are talking about this commit, which is the only
related commit between 2.6.7.1 and 2.6.8. It's in 2.6.7.2.

commit 56f8add211a840faaed325bd16483b55da544e93
Author: Neil Brown 
Date:   Thu Jun 19 16:30:36 2008 +1000

Fix an error when assembling arrays that are in the middle of a reshape.

It is important that dup_super always returns an 'st' with the same
->ss and ->minor_version as the st that was passed.
This wasn't happening for 0.91 metadata (i.e. in the middle of a reshape).

diff --git a/super0.c b/super0.c
index 7e81482..8e4c568 100644
--- a/super0.c
+++ b/super0.c
@@ -849,12 +849,15 @@ static struct supertype *match_metadata_desc0(char *arg)
st->sb = NULL;
if (strcmp(arg, "0") == 0 ||
strcmp(arg, "0.90") == 0 ||
-   strcmp(arg, "0.91") == 0 ||
strcmp(arg, "default") == 0 ||
strcmp(arg, "") == 0 /* no metadata */
)
return st;
 
+   st->minor_version = 91; /* reshape in progress */
+   if (strcmp(arg, "0.91") == 0) /* For dup_super support */
+   return st;
+
st->minor_version = 9; /* flag for 'byte-swapped' */
if (strcmp(arg, "0.swap")==0 ||
strcmp(arg, "0.9") == 0) /* For dup_super support */

-- 
 .''`.   martin f. krafft   Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#513109: Offer to NMU

2009-02-03 Thread Gustavo Iñiguez Goya
Hi David,

On Tue, Feb 03, 2009 at 09:53:01AM -0800, David Spreen wrote:
> Hi,
> 
> Gustavo Iñiguez Goya  writes:
> 
> > Hi,
> >
> > On Tue, Feb 03, 2009 at 09:29:11AM -0800, David Spreen wrote:
> > I've got the package ready. The problem is not only that bug but a usual 
> > crash
> > in 64bit. I've got it fixed I think, I'm testing it since it only
> > reproduces when the applet is running several days.
> 
> If you think that that crash is an RC bug, you should file the bug
> against your package right now. Since, if I understood correctly,
> your cannot upload anything right now, you should attach the patch
> fixing that bug.

Since it's not very clear the real problem and it costs several days to 
reproduce, 
I prefer to fix it in the new release.

> 
> > In any case I've got a few doubts:
> >
> > 1) Have I to upload only that fix?
> > 2) Could I add the patch for the 64bit crash?
> > 3) Can I include 2 fixes for debian/control, debian/copyright and 
> > debian/watch?
> 
> No. Please only include fixes for filed RC bugs since you won't get a
> freeze exception for anything else.
> 
> > In the other hand, my gpg key is in a faulty hard disk, 
> > and I've not been able to recover it. I should request to change it and
> > upload the new one.
> 
> If you provide me the patches to fix all RC bugs, I am happy to NMU.

Upload it just with the attached patch.

Thank you very much David for upload it, and thank you Eduardo for report it.

> 
> Best wishes and thanks for your incredibly quick response,
> 
> David
> 
> 



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: this patch?

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 512475 patch pending
Bug#512475: mdadm fails to reassemble arrays stopped mid-reshape
There were no tags set.
Tags added: patch, pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: tagging 502333 ...

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 502333 - moreinfo
Bug#502333: grub-pc: Search uuid in LVM crashes the bootloader
Tags were: moreinfo
Tags removed: moreinfo

> forwarded 502333 
> http://lists.gnu.org/archive/html/grub-devel/2009-02/msg00018.html
Bug#502333: grub-pc: Search uuid in LVM crashes the bootloader
Noted your statement that Bug has been forwarded to 
http://lists.gnu.org/archive/html/grub-devel/2009-02/msg00018.html.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514054: linux-image-2.6.24-etchnhalf.1-686: raid rebuild generates 'BUG: soft lockup - CPU#0 stuck for 11s! [md0_raid1:1207]'

2009-02-03 Thread pedro gapski
Package: linux-image-2.6.24-etchnhalf.1-686
Version: 2.6.24-6~etchnhalf.7
Severity: grave
Justification: causes non-serious data loss

kernel logs were filled with the following messages:
Feb  1 01:06:01 pioneer kernel: md: data-check of RAID array md0
Feb  1 01:06:01 pioneer kernel: md: minimum _guaranteed_  speed: 1000 
KB/sec/disk.
Feb  1 01:06:01 pioneer kernel: md: using maximum available idle IO bandwidth 
(but not more than 20 KB/sec) for data-check.
Feb  1 01:06:01 pioneer kernel: md: delaying data-check of md1 until md0 has 
finished (they share one or more physical units)
Feb  1 01:06:44 pioneer kernel: BUG: soft lockup - CPU#0 stuck for 11s! 
[md0_raid1:1207]
Feb  1 01:06:44 pioneer kernel:
Feb  1 01:06:44 pioneer kernel: Pid: 1207, comm: md0_raid1 Not tainted 
(2.6.24-etchnhalf.1-686 #1)
Feb  1 01:06:44 pioneer kernel: EIP: 0060:[] EFLAGS: 0246 CPU: 0
Feb  1 01:06:44 pioneer kernel: EIP is at memcmp+0x14/0x22
Feb  1 01:06:44 pioneer kernel: EAX:  EBX: f77abbf6 ECX: d03c5bf6 EDX: 

Feb  1 01:06:44 pioneer kernel: ESI: 040a EDI: 0090 EBP: d7234100 ESP: 
df9ffec4
Feb  1 01:06:44 pioneer kernel:  DS: 007b ES: 007b FS: 00d8 GS:  SS: 0068
Feb  1 01:06:44 pioneer kernel: CR0: 8005003b CR2: b7dab024 CR3: 1f86a000 CR4: 
06d0
Feb  1 01:06:44 pioneer kernel: DR0:  DR1:  DR2:  DR3: 

Feb  1 01:06:44 pioneer kernel: DR6: 0ff0 DR7: 0400
Feb  1 01:06:44 pioneer kernel:  [] raid1d+0x2cb/0xcf1 [raid1]
Feb  1 01:06:44 pioneer kernel:  [] update_curr+0x62/0xef
Feb  1 01:06:44 pioneer kernel:  [] schedule_timeout+0x13/0x8d
Feb  1 01:06:44 pioneer kernel:  [] apic_timer_interrupt+0x28/0x30
Feb  1 01:06:44 pioneer kernel:  [] md_thread+0xb9/0xcf [md_mod]
Feb  1 01:06:44 pioneer kernel:  [] autoremove_wake_function+0x0/0x35
Feb  1 01:06:44 pioneer kernel:  [] md_thread+0x0/0xcf [md_mod]
Feb  1 01:06:44 pioneer kernel:  [] kthread+0x38/0x5e
Feb  1 01:06:44 pioneer kernel:  [] kthread+0x0/0x5e
Feb  1 01:06:44 pioneer kernel:  [] kernel_thread_helper+0x7/0x10
Feb  1 01:06:44 pioneer kernel:  ===
Feb  1 01:09:31 pioneer kernel: BUG: soft lockup - CPU#1 stuck for 11s! 
[md0_raid1:1207]
Feb  1 01:09:31 pioneer kernel:
Feb  1 01:09:31 pioneer kernel: Pid: 1207, comm: md0_raid1 Not tainted 
(2.6.24-etchnhalf.1-686 #1)
Feb  1 01:09:31 pioneer kernel: EIP: 0060:[] EFLAGS: 0202 CPU: 1
Feb  1 01:09:31 pioneer kernel: EIP is at memcmp+0x1b/0x22
Feb  1 01:09:31 pioneer kernel: EAX:  EBX: d7c8d60f ECX: ed6d860f EDX: 

Feb  1 01:09:31 pioneer kernel: ESI: 09f1 EDI: 0084 EBP: f04b3a80 ESP: 
df9ffec4
Feb  1 01:09:31 pioneer kernel:  DS: 007b ES: 007b FS: 00d8 GS:  SS: 0068
Feb  1 01:09:31 pioneer kernel: CR0: 8005003b CR2: b7fb4000 CR3: 1f809000 CR4: 
06d0
Feb  1 01:09:31 pioneer kernel: DR0:  DR1:  DR2:  DR3: 

Feb  1 01:09:31 pioneer kernel: DR6: 0ff0 DR7: 0400
Feb  1 01:09:31 pioneer kernel:  [] raid1d+0x2cb/0xcf1 [raid1]
Feb  1 01:09:31 pioneer kernel:  [] schedule_timeout+0x13/0x8d
Feb  1 01:09:31 pioneer kernel:  [] apic_timer_interrupt+0x28/0x30
Feb  1 01:09:31 pioneer kernel:  [] md_thread+0xb9/0xcf [md_mod]
Feb  1 01:09:31 pioneer kernel:  [] autoremove_wake_function+0x0/0x35
Feb  1 01:09:31 pioneer kernel:  [] md_thread+0x0/0xcf [md_mod]
Feb  1 01:09:31 pioneer kernel:  [] kthread+0x38/0x5e
Feb  1 01:09:31 pioneer kernel:  [] kthread+0x0/0x5e
Feb  1 01:09:31 pioneer kernel:  [] kernel_thread_helper+0x7/0x10
Feb  1 01:09:31 pioneer kernel:  ===
Feb  1 01:11:01 pioneer mdadm: Rebuild20 event detected on md device /dev/md0
Feb  1 01:13:32 pioneer kernel: BUG: soft lockup - CPU#1 stuck for 11s! 
[md0_raid1:1207]
Feb  1 01:13:32 pioneer kernel:
Feb  1 01:13:32 pioneer kernel: Pid: 1207, comm: md0_raid1 Not tainted 
(2.6.24-etchnhalf.1-686 #1)
Feb  1 01:13:32 pioneer kernel: EIP: 0060:[] EFLAGS: 0286 CPU: 1
Feb  1 01:13:32 pioneer kernel: EIP is at memcmp+0x17/0x22
Feb  1 01:13:32 pioneer kernel: EAX:  EBX: e2b69fd7 ECX: f178dfd6 EDX: 

Feb  1 01:13:32 pioneer kernel: ESI: 002a EDI: 006c EBP: f04b3280 ESP: 
df9ffec4
Feb  1 01:13:32 pioneer kernel:  DS: 007b ES: 007b FS: 00d8 GS:  SS: 0068
Feb  1 01:13:32 pioneer kernel: CR0: 8005003b CR2: bfff5f30 CR3: 1f80f000 CR4: 
06d0
Feb  1 01:13:32 pioneer kernel: DR0:  DR1:  DR2:  DR3: 

Feb  1 01:13:32 pioneer kernel: DR6: 0ff0 DR7: 0400
Feb  1 01:13:32 pioneer kernel:  [] raid1d+0x2cb/0xcf1 [raid1]
Feb  1 01:13:32 pioneer kernel:  [] schedule_timeout+0x13/0x8d
Feb  1 01:13:32 pioneer kernel:  [] apic_timer_interrupt+0x28/0x30
Feb  1 01:13:32 pioneer kernel:  [] xfrm_find_algo+0x37/0x63
Feb  1 01:13:32 pioneer kernel:  [] md_thread+0xb9/0xcf [md_mod]
Feb  1 01:13:32 pioneer kernel:  [] autoremove_wake_function+0x0/0x35
Feb  1 01:13:32 pioneer kernel:  [] md_thread+0x0/0xcf [md_mod]
Feb  1 01:13:32 pioneer kernel:  [] kthre

Bug#513222: [Pkg-fglrx-devel] Bug#513222: fglrx-driver: crashes Xorg

2009-02-03 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Patrick Matthäi schrieb:
> I talked about this issue with one release manager.
> As AMD states this issue is fixed with the 9.1 release, I should package
> this release today and upload it to experimental (but it will not have
> xserver-xorg 1.6 support).
> 
> The problem is, that I do not have those hardware where it segfaults, so
> I need your responses.
> 
> I will mail you again this evening.
> 

Okay it is still at uploading but should be finished in 20 minutes.

1:9-1-1 will be in experimental and for the backporters to lenny/sid you
can then also get it here:

http://packages.linux-dev.org/fglrx-driver_9-1-1.dsc

It may also fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513208
Would be nice if someone could test it.

Bye and thanks.

- --
/*
Mit freundlichem Gruß / With kind regards,
Patrick Matthäi

E-Mail: patrick.matth...@web.de

Comment:
Always if we think we are right,
we were maybe wrong.
*/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkmIlMAACgkQ2XA5inpabMdeaQCbB8WACSp219EUsakr/tZRJQQ2
WMYAn3JjvcJFK1KGjkxrv7aiaOwIcSI3
=09Cp
-END PGP SIGNATURE-



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514049: mwavem package does not install under Lenny

2009-02-03 Thread zlinuxman
Package: mwavem
Version: 2.0-3
Severity: serious

Package mwavem does not install under Lenny.  The installation script fails,
and dpkg backs out the installation (but does not purge configuration files).
 Part of the problem is that the install script still assumes the use of
modutils instead of module-init-tools, but there may be other issues as well.
Installation was attempted on an IBM ThinkPad 600.




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#512642: Regression because of #511290 patch (many words missing in dict as a result)

2009-02-03 Thread Martin-Éric Racine
http://mentors.debian.net/debian/pool/main/r/rus-ispell/rus-ispell_0.99g5-7.dsc

Please test the above package.

If it works, I will ask the Release Manager team to upload it and
unblock it for Lenny. If it doesn't work, we better find a permanent
solution REALLY quick, because there's less than a week left before
Lenny is released.

Martin-Éric



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514048: Missing dependency on zlib1g-dev

2009-02-03 Thread zlinuxman
Package: linux-source-2.6.26
Version: 2.6.26-13
Severity: serious

Package linux-source-2.6.26 has a missing dependency on package zlib1g-dev. 
If zlib1g-dev is not installed, make fails, as shown below:

lguest.c:34:18: error: zlib.h:
No such file or directory
make[1]: *** [lguest] Error 1
make[1]:
Leaving directory
`/usr/src/linux-source-2.6.26/Documentation/lguest'
make: ***




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513834: marked as done (guichan: incorrect and incomplete debian/copyright)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 03 Feb 2009 18:02:05 +
with message-id 
and subject line Bug#513834: fixed in guichan 0.8.1-4
has caused the Debian Bug report #513834,
regarding guichan: incorrect and incomplete debian/copyright
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
513834: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513834
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: guichan
Severity: serious
Justification: Incorrect Copyright Information

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi!

  Your Package's Copyright file claims the following:

==
Copyright (c) The Regents of the University of California.
All rights reserved.
==

which is definitely incorrect. Please correct this information.

Regards

  Christoph

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

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

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

iEYEARECAAYFAkmFxUQACgkQz9S5sZBYslO/CwCbB0ohYo7/EIvHKIs8HHNqPZsE
4RgAnjuoVNT+udm8O/I5GGY7wK742pHI
=AWFr
-END PGP SIGNATURE-


--- End Message ---
--- Begin Message ---
Source: guichan
Source-Version: 0.8.1-4

We believe that the bug you reported is fixed in the latest version of
guichan, which is due to be installed in the Debian FTP archive:

guichan_0.8.1-4.diff.gz
  to pool/main/g/guichan/guichan_0.8.1-4.diff.gz
guichan_0.8.1-4.dsc
  to pool/main/g/guichan/guichan_0.8.1-4.dsc
libguichan-0.8.1-1-dbg_0.8.1-4_amd64.deb
  to pool/main/g/guichan/libguichan-0.8.1-1-dbg_0.8.1-4_amd64.deb
libguichan-0.8.1-1_0.8.1-4_amd64.deb
  to pool/main/g/guichan/libguichan-0.8.1-1_0.8.1-4_amd64.deb
libguichan-allegro-0.8.1-1_0.8.1-4_amd64.deb
  to pool/main/g/guichan/libguichan-allegro-0.8.1-1_0.8.1-4_amd64.deb
libguichan-dev_0.8.1-4_amd64.deb
  to pool/main/g/guichan/libguichan-dev_0.8.1-4_amd64.deb
libguichan-opengl-0.8.1-1_0.8.1-4_amd64.deb
  to pool/main/g/guichan/libguichan-opengl-0.8.1-1_0.8.1-4_amd64.deb
libguichan-sdl-0.8.1-1_0.8.1-4_amd64.deb
  to pool/main/g/guichan/libguichan-sdl-0.8.1-1_0.8.1-4_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 513...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Patrick Matthäi  (supplier of updated guichan package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 3 Feb 2009 18:06:07 +0200
Source: guichan
Binary: libguichan-0.8.1-1 libguichan-allegro-0.8.1-1 libguichan-sdl-0.8.1-1 
libguichan-opengl-0.8.1-1 libguichan-0.8.1-1-dbg libguichan-dev
Architecture: source amd64
Version: 0.8.1-4
Distribution: unstable
Urgency: high
Maintainer: Patrick Matthäi 
Changed-By: Patrick Matthäi 
Description: 
 libguichan-0.8.1-1 - small, efficient C++ GUI library
 libguichan-0.8.1-1-dbg - small, efficient C++ GUI library (debugging symbols)
 libguichan-allegro-0.8.1-1 - small, efficient C++ GUI library (allegro 
integration)
 libguichan-dev - small, efficient C++ GUI library (development headers)
 libguichan-opengl-0.8.1-1 - small, efficient C++ GUI library (OpenGL 
integration)
 libguichan-sdl-0.8.1-1 - small, efficient C++ GUI library (SDL integration)
Closes: 513834
Changes: 
 guichan (0.8.1-4) unstable; urgency=high
 .
   * Urgency set to high, because it fixes a release critical bug.
   * debian/copyright:
 - Use the license as written in COPYING, not some other copy of it.
   Thanks to Evgeni Golov for his patch.
   Closes: #513834
 - Update the copyright years.
 - Add informations about the debian/ packaging license.
Checksums-Sha1: 
 c4a733c91dd9ffdfeee15001a071cd9b24fc5124 1217 guichan_0.8.1-4.dsc
 f9f9ddb14d67580a813215708e69621bbf572f3f 5399 guichan_0.8.1-4.diff.gz
 d2860913efd1a879cf637791381a91bea1f656fb 131520 
libguichan-0.8.1-1_0.8.1-4_amd64.deb
 f4db38a7f2bd098f8b18885166a182c33655eda5 33822 
libguichan-allegro-0.8.1-1_0.8.1-4_amd64.deb
 2e79a7e7166c7840315773da82c9f6d0cd7179b1 32298 
libguichan-sdl-0.8.1-1_0.8.1-4_amd64.deb
 160aa2eb361d1234e1458bd21f11a3ede19293d1 23

Bug#514044: By default atmailopen act as an open imap/pop3 proxy

2009-02-03 Thread Richard van den Berg
Package: atmailopen
Version: 1.03+dfsg+svn91-1
Severity: grave
Tags: security
Justification: user security hole

When atmailopen is enabled on a site by editing /etc/atmailopen/apache.conf
or /etc/atmailopen/lighttpd.conf the software allows anyone with access to
the web server to make a connection from that server to any imap or pop3
host.

This can be prevented by setting allowed_mailservers and/or mailserver in
/usr/share/atmailopen/libs/Atmail/Config.php to localhost. This should be
the default.

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (990, 'stable'), (400, 'testing'), (300, 'experimental'), (300, 
'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.24-rvdb
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15)

Versions of packages atmailopen depends on:
ii  apache22.2.9-10+lenny2   Apache HTTP Server metapackage
ii  apache2-mpm-prefor 2.2.9-10+lenny2   Apache HTTP Server - traditional n
ii  dbconfig-common1.8.29+etch1  common framework for packaging dat
ii  debconf [debconf-2 1.5.11etch2   Debian configuration management sy
ii  fckeditor  1:2.6.2-1 rich text format javascript web ed
ii  libjs-prototype1.6.0.2-4 JavaScript Framework for dynamic w
ii  mysql-client   5.0.32-7etch8 mysql database client (meta packag
ii  mysql-client-5.0 [ 5.0.32-7etch8 mysql database client binaries
ii  php-date   1.4.7-1   PHP PEAR module for date and time 
ii  php-db 1.7.13-2  PHP PEAR Database Abstraction Laye
ii  php-mail   1.1.14-1  PHP PEAR module for sending email
ii  php-mail-mime  1.5.2-0.1 PHP PEAR module for creating MIME 
ii  php-net-ldap   1:1.1.1-1 a OO interface for searching and m
ii  php-net-smtp   1.3.1-1   PHP PEAR module implementing SMTP 
ii  php-net-socket 1.0.8-2   PHP PEAR Network Socket Interface 
ii  php5   5.2.6.dfsg.1-1+lenny2 server-side, HTML-embedded scripti
ii  php5-mysql 5.2.6.dfsg.1-1+lenny2 MySQL module for php5

atmailopen recommends no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Re: copher: missing depends on libfile-rsync-perl

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package copher
Ignoring bugs not assigned to: copher

> fixed 513710 0.1.2+20081201-2
Bug#513710: copher: missing depends on libfile-rsync-perl
Bug marked as fixed in version 0.1.2+20081201-2.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514042: [scim-qtimm] only installs doc/scim-qtimm

2009-02-03 Thread Sven Eckelmann
Package: scim-qtimm
Version: 0.9.4-3
Severity: serious
Tags: patch

The package doesn't install it's binary part. This makes it quite
useless for anyone who wants scim support in their qt applications.

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.28.1

Debian Release: 5.0
  500 unstableftp.debian.org
  500 unstabledebian.netcologne.de
1 experimentalftp.debian.org
---
 debian/rules  |1 +
 debian/scim-qtimm.install |2 ++
 2 files changed, 3 insertions(+), 0 deletions(-)
 create mode 100644 debian/scim-qtimm.install

diff --git a/debian/rules b/debian/rules
index d609432..a140727 100755
--- a/debian/rules
+++ b/debian/rules
@@ -75,6 +75,7 @@ install: build
 
# Add here commands to install the package into debian/scim-bridge.
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
+   dh_install --sourcedir=$(CURDIR)/debian/tmp --list-missing
 
 binary-indep: build install
 binary-arch: build install
diff --git a/debian/scim-qtimm.install b/debian/scim-qtimm.install
new file mode 100644
index 000..dec1faf
--- /dev/null
+++ b/debian/scim-qtimm.install
@@ -0,0 +1,2 @@
+usr/share/locale/*/LC_MESSAGES/*
+usr/lib/qt3/plugins/inputmethods/libqscim.*
-- 
1.6.0.6




-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513710: marked as done (copher: missing depends on libfile-rsync-perl)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 3 Feb 2009 17:56:25 +
with message-id <20090203175625.ga6...@jwiltshire.dyndns.org>
and subject line Re: copher: missing depends on libfile-rsync-perl
has caused the Debian Bug report #513710,
regarding copher: missing depends on libfile-rsync-perl
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
513710: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=513710
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: copher
Version: 0.1.2+20081201-1
Severity: serious
Justification: missing dependency

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

when trying to use copher, uploading a release file gave an error:
Files to upload: dist/LinkChecker-5.0.1.tar.gz
Can't locate File/Rsync.pm in @INC (@INC contains: /etc/perl 
/usr/local/lib/perl/5.10.0 /usr/local/share/perl/5.10.0 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 
/usr/local/lib/site_perl .) at /usr/bin/copher line 895.

After installing libfile-rsync-perl the upload went fine, so it seems to
be missing from the dependency list.

Regards,
  Bastian

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

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

Versions of packages copher depends on:
ii  libwww-mechanize-perl 1.54-1 Automate interaction with websites

copher recommends no packages.

copher suggests no packages.

- -- no debconf information

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

iEYEARECAAYFAkmEd3MACgkQeBwlBDLsbz6TVwCfVz4epsdsGxPVQ/O7JYEbMfVm
4EwAn2Ofm5qjXVnVB7qC1Ezai8nbwRp7
=5l4w
-END PGP SIGNATURE-


--- End Message ---
--- Begin Message ---
package copher
fixed 513710 0.1.2+20081201-2
thanks

I didn't remember to add this bug to the changelog, but it is fixed and
being dinstalled now.

-- 
Jonathan Wiltshire

PGP/GPG: 0xDB800B52 / 4216 F01F DCA9 21AC F3D3  A903 CA6B EA3E DB80 0B52


signature.asc
Description: Digital signature
--- End Message ---


Bug#513109: Offer to NMU

2009-02-03 Thread David Spreen
Hi,

Gustavo Iñiguez Goya  writes:

> Hi,
>
> On Tue, Feb 03, 2009 at 09:29:11AM -0800, David Spreen wrote:
> I've got the package ready. The problem is not only that bug but a usual crash
> in 64bit. I've got it fixed I think, I'm testing it since it only
> reproduces when the applet is running several days.

If you think that that crash is an RC bug, you should file the bug
against your package right now. Since, if I understood correctly,
your cannot upload anything right now, you should attach the patch
fixing that bug.

> In any case I've got a few doubts:
>
> 1) Have I to upload only that fix?
> 2) Could I add the patch for the 64bit crash?
> 3) Can I include 2 fixes for debian/control, debian/copyright and 
> debian/watch?

No. Please only include fixes for filed RC bugs since you won't get a
freeze exception for anything else.

> In the other hand, my gpg key is in a faulty hard disk, 
> and I've not been able to recover it. I should request to change it and
> upload the new one.

If you provide me the patches to fix all RC bugs, I am happy to NMU.

Best wishes and thanks for your incredibly quick response,

David



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: severity of 513004 is important

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 513004 important
Bug#513004: iceweasel: CVE-2009-0253 status bar url obfuscation
Severity set to `important' from `grave'

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513109: Offer to NMU

2009-02-03 Thread David Spreen
Hi,

It has been more than a week since this bug has been filed including a
patch to fix the issue. Since we are struggling to release Lenny, do you 
intend to upload a fix soon? I am willing to NMU if you give me a go
ahead or won't respond within 24h.

Best Wishes,

David



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: block 508244 with 513928

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> block 508244 with 513928
Bug#513928: please provide hal-set-property --direct
Bug#508244: input-hotplug needs an automatic way to setup keyboard layout
Was not blocked by any bugs.
Bug#506212: xserver-xorg: After upgrade, X starts but there is no keyboard, 
user stuck
Blocking bugs of 508244 added: 513928

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514003: marked as done (python2.5: Type Decimal, int and float. Unsupported operand)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 03 Feb 2009 18:06:47 +0100
with message-id <498879a7.6030...@beamnet.de>
and subject line incompatibility of Decimal and float is upstream design 
decision
has caused the Debian Bug report #514003,
regarding python2.5: Type Decimal, int and float. Unsupported operand
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
514003: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514003
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: python2.5
Version: 2.5.2-15
Severity: grave
Justification: causes non-serious data loss

When I mix different type of variable, I obtain some strange results:

a = Decimal.decimal(1)
b = 2
c = 2.

>>> a * b
Decimal("2")

>>> a < b
True

>>> a * c
Traceback (most recent call last):
  File "", line 1, in 
TypeError: unsupported operand type(s) for *: 'Decimal' and 'float'
>>> a < c
False

The same result with Debian Etch.

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

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

Versions of packages python2.5 depends on:
ii  libbz2-1.01.0.5-1high-quality block-sorting file co
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libdb4.5  4.5.20-13  Berkeley v4.5 Database Libraries [
ii  libncursesw5  5.7+20081213-1 shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libsqlite3-0  3.5.9-5SQLite 3 shared library
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  mime-support  3.44-1 MIME files 'mime.types' & 'mailcap
ii  python2.5-minimal 2.5.2-15   A minimal subset of the Python lan

python2.5 recommends no packages.

Versions of packages python2.5 suggests:
pn  python-profiler(no description available)
ii  python2.5-doc 2.5.2-2Documentation for the high-level o

-- no debconf information


--- End Message ---
--- Begin Message ---
Hi Blaise,

the behaviour you observe is not a bug but a deliberate design choice:
In essence the Python developers felt that coersion between float and
Decimal cannot not be done in a way that does not introduce too much
surprising behaviour. Some detail can be found in the Decimal proposal[1].

As such, I am closing this bug report. Note that if you want to discuss
the merits of the design decision, the python.org lists are a much
better place.

Kind regards

T.

1. http://www.python.org/dev/peps/pep-0327/#id17
-- 
Thomas Viehmann, http://thomas.viehmann.net/

--- End Message ---


Processed: Bug in libcatalyst-perl fixed in revision 30438

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 513971 + pending
Bug#513971: libcatalyst-perl: tries to overwrite file owned by 
libcatalyst-manual-perl
There were no tags set.
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: Bug in libcatalyst-perl fixed in revision 30438

2009-02-03 Thread pkg-perl-maintainers
tag 513971 + pending
thanks

Some bugs are closed in revision 30438
by Gregor Herrmann (gregoa)

Commit message:

debian/rules: rename Manual.pm and Catalyst::Manual.3pm to
Manual/Runtime.pm and Catalyst::Manual::Runtime.3pm respectiveley, as it
was done in versiones before 5.71000-1; the original files are also in
libcatalyst-manual-perl; thanks to Ralf Treinen for the bug report
(closes: #513971).



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514003: python decimal floating point arithmetic.

2009-02-03 Thread Federico Brega
In bug report module and class name are inverted.
In my installation of Lenny everything works fine.



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514026: mozilla-stumbleupon: current version incompatible with current version of Iceweasel

2009-02-03 Thread Guido Loupias
Package: mozilla-stumbleupon
Version: 3.1.2-1
Severity: grave
Justification: renders package unusable

The current version does not work with Iceweasel 3.0.5. Updating 
Stumbleupon to the current upstream version would fix this problem.


Workaround:

Install Stumbleupon manually from here: 
https://addons.mozilla.org/en-US/firefox/addon/138

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

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

Versions of packages mozilla-stumbleupon depends on:
ii  iceweasel 3.0.5-1lightweight web browser based on M

mozilla-stumbleupon recommends no packages.

mozilla-stumbleupon suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: as stated in a comment by Arnaud Installe

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 393606 4.1.dfsg.1-4
Bug#393606: mail-notification-evolution: Fails to contact evolution
Bug marked as found in version 4.1.dfsg.1-4 and reopened.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl

2009-02-03 Thread gregor herrmann
On Tue, 03 Feb 2009 14:57:11 +0100, Krzysztof Krzy?aniak wrote:

> > Eloy, I guess you're taking care of this; if you are busy or
> > something just shout.
> I could take care in the end of this week. If you got some free time
> before this term feel free to take it.

No problem. I think Damyan and me have tracked down the pieces of the
puzzle and we'll fix it.

Cheers,
gregor
-- 
 .''`.   Home: http://info.comodo.priv.at/{,blog/} / GPG Key ID: 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/
   `-Kirk to Enterprise -- beam down yeoman Rand and a six-pack. 



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl

2009-02-03 Thread Krzysztof Krzyżaniak
gregor herrmann wrote:
> On Mon, 02 Feb 2009 22:16:05 +0100, Ralf Treinen wrote:
> 
>> dpkg: error processing 
>> /var/cache/apt/archives/libcatalyst-perl_5.71000-1_all.deb (--unpack):
>>  trying to overwrite `/usr/share/perl5/Catalyst/Manual.pm', which is also in 
>> package libcatalyst-manual-perl
>> dpkg-deb: subprocess paste killed by signal (Broken pipe)
>> Processing triggers for man-db ...
>> Errors were encountered while processing:
>>  /var/cache/apt/archives/libcatalyst-perl_5.71000-1_all.deb
>> E: Sub-process /usr/bin/dpkg returned an error code (1)
> 
> A quick look at the two packages shows that there are 2 duplicate
> files:
> 
> /usr/share/man/man3/Catalyst::Manual.3pm.gz
> /usr/share/perl5/Catalyst/Manual.pm
> 
> Eloy, I guess you're taking care of this; if you are busy or
> something just shout.

I could take care in the end of this week. If you got some free time
before this term feel free to take it.

  eloy



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: 513710 is pending

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> package copher
Ignoring bugs not assigned to: copher

> tag 513710 +pending
Bug#513710: copher: missing depends on libfile-rsync-perl
There were no tags set.
Tags added: pending

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#511687: marked as done (doesn't treat /etc/init.d/git-daemon as a conffile)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 03 Feb 2009 13:32:04 +
with message-id 
and subject line Bug#511687: fixed in git-core 1:1.5.6.5-3
has caused the Debian Bug report #511687,
regarding doesn't treat /etc/init.d/git-daemon as a conffile
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
511687: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=511687
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: git-daemon-run
Version: 1:1.5.6.5-2
Severity: serious

Seveirty serious because it is a policy violation: according to section 9.3 of 
debian policy.

Please add a script, and document correctly dependancy using 
http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot

Regards



-- 

"ROUCARIÈS Bastien"
roucaries.bastien+deb...@gmail.com
---
DO NOT WRITE TO roucaries.bastien+blackh...@gmail.com OR BE BLACKLISTED


--- End Message ---
--- Begin Message ---
Source: git-core
Source-Version: 1:1.5.6.5-3

We believe that the bug you reported is fixed in the latest version of
git-core, which is due to be installed in the Debian FTP archive:

git-arch_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-arch_1.5.6.5-3_all.deb
git-core_1.5.6.5-3.diff.gz
  to pool/main/g/git-core/git-core_1.5.6.5-3.diff.gz
git-core_1.5.6.5-3.dsc
  to pool/main/g/git-core/git-core_1.5.6.5-3.dsc
git-cvs_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-cvs_1.5.6.5-3_all.deb
git-daemon-run_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-daemon-run_1.5.6.5-3_all.deb
git-doc_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-doc_1.5.6.5-3_all.deb
git-email_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-email_1.5.6.5-3_all.deb
git-gui_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-gui_1.5.6.5-3_all.deb
git-svn_1.5.6.5-3_all.deb
  to pool/main/g/git-core/git-svn_1.5.6.5-3_all.deb
gitk_1.5.6.5-3_all.deb
  to pool/main/g/git-core/gitk_1.5.6.5-3_all.deb
gitweb_1.5.6.5-3_all.deb
  to pool/main/g/git-core/gitweb_1.5.6.5-3_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 511...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Gerrit Pape  (supplier of updated git-core package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 02 Feb 2009 20:56:15 +
Source: git-core
Binary: git-core git-doc git-arch git-cvs git-svn git-email git-daemon-run 
git-gui gitk gitweb
Architecture: all source
Version: 1:1.5.6.5-3
Distribution: unstable
Urgency: high
Maintainer: Gerrit Pape 
Changed-By: Gerrit Pape 
Description: 
 git-arch   - fast, scalable, distributed revision control system (arch interop
 git-core   - fast, scalable, distributed revision control system
 git-cvs- fast, scalable, distributed revision control system (cvs interope
 git-daemon-run - fast, scalable, distributed revision control system 
(git-daemon s
 git-doc- fast, scalable, distributed revision control system (documentatio
 git-email  - fast, scalable, distributed revision control system (email add-on
 git-gui- fast, scalable, distributed revision control system (GUI)
 git-svn- fast, scalable, distributed revision control system (svn interope
 gitk   - fast, scalable, distributed revision control system (revision tre
 gitweb - fast, scalable, distributed revision control system (web interfac
Closes: 511687
Changes: 
 git-core (1:1.5.6.5-3) unstable; urgency=high
 .
   * debian/rules: no longer install symlink /etc/init.d/git-daemon ->
 /usr/bin/sv (closes: #511687).
   * debian/git-daemon-run.README.Debian: document how to create the
 symlink manually to have an LSB compatible /etc/init.d/git-daemon
 interface to control the service.
Checksums-Sha1: 
 6d08be90a8706f716dec2297a78fedb1af7b6489 1295 git-core_1.5.6.5-3.dsc
 a868f42546a03650625453d0bc88ee1960ab6493 225806 git-core_1.5.6.5-3.diff.gz
 2881d2737831a4272103621383a85b010bc21c51 1076580 git-doc_1.5.6.5-3_all.deb
 7dcae53a845e409d9bf57814b2aa0906cb33ce43 230760 git-arch_1.5.6.5-3_all.deb
 adcfcae1d2db1d24181f72d908a884053dd86f41 266954 git-cvs_1.5.6.5-3_all.deb
 8ab078d51a3ed1c7722150ceebc57564973f2412 268004 git-svn_1.5.6.5-3_all.deb
 a510a

Bug#513222: [Pkg-fglrx-devel] Bug#513222: fglrx-driver: crashes Xorg

2009-02-03 Thread Patrick Matthäi

tags #513222 + help
thanks

Hello,

I talked about this issue with one release manager.
As AMD states this issue is fixed with the 9.1 release, I should package 
this release today and upload it to experimental (but it will not have 
xserver-xorg 1.6 support).


The problem is, that I do not have those hardware where it segfaults, so 
I need your responses.


I will mail you again this evening.



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Re: [Pkg-fglrx-devel] Bug#513222: fglrx-driver: crashes Xorg

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags #513222 + help
Bug#513222: fglrx-driver: crashes Xorg
Tags were: moreinfo
Tags added: help

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl

2009-02-03 Thread gregor herrmann
On Tue, 03 Feb 2009 15:13:26 +0200, Damyan Ivanov wrote:

> > I'd like to have Eloy's opinion since he's the expert and I'm not
> > completely sure either.
> I agree with that, although Eloy's idea of moving catalyst to pkg-perl
> was partly because he'd like some help (AIUI). So if we can figure out 
> a good fix without him, that shall be good :)

Right, and that's why I am trying to help in the analysis of the
situation :)
 
> > AFAICS this bug only exists for libcatalyst-perl's version in
> > unstable (5.71000-1), the version in testing (5.7014-1) doesn't
> > contain Manual.pm/Catalyst::Manual.3pm.gz: 
> > http://packages.debian.org/lenny/all/libcatalyst-perl/filelist
> Oh, this is good. At least we don't have to rush before Lenny is out 
> or figure out how stable-updates works :)

Right, I was a little nervous yesterday and was quite happy when the
idea of checking the version in lenny came to my mind today :)
 
> BTW, there is Catalyst-Runtime dist on CPAN (that is libcatalyst-perl 
> upstream source) of version 5.8000_05 with three pages of changes 
> since 5.7x. Catalyst::Model is still there though.

Ok.
 
> libcatalyst-perl 5.7014-1 has this in debian/rules:
> 
>   $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
>   mv $(TMP)/usr/share/perl5/Catalyst/Manual.pm\
>   $(TMP)/usr/share/perl5/Catalyst/Manual/Runtime.pm
>   mv $(TMP)/usr/share/man/man3/Catalyst::Manual.3pm\
>   $(TMP)/usr/share/man/man3/Catalyst::Manual::Runtime.3pm

Ah, that's a nice catch, thanks for looking!
 
> I guess adding back the plumbing used in 5.7014-1 would fix the conflict.

Agreed.

Cheers,
gregor
 
 
-- 
 .''`.   Home: http://info.comodo.priv.at/{,blog/} / GPG Key ID: 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/
   `-You're dead, Jim.  -- McCoy, "Amok Time", stardate 3372.7 



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514016: Bug#514015: cdebootstrap - packages with symlinks to dirs (libc6) can lead to writes outside the new root

2009-02-03 Thread Bastian Blank
Both cdebootstrap and debootstrap uses plain tar to extract packages the
first time.

If one package (lib6) contains the symlink /lib64 -> /lib, another
package (in this case libattr1) which includes files in /lib64, will
be extracted into the host system and overwrite files there, as tar
follows the symlinks.

Bastian



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513743: OO-calc bug

2009-02-03 Thread Rene Engelhard
Hi,

Eike Rathke wrote:
> On Monday, 2009-02-02 00:57:01 +0100, Rene Engelhard wrote:
> 
> > To be honest, I don't have a clue about this. Eike, Stephan/Kay, any idea?
> 
> No other than some yet unknown sort of memory corruption or misplaced
> instruction. libcomphelp4gcc3.so was mentioned to solve this when
> replaced. What changed between -15 and -17 and its compilation?

Escept the fix for the hidden text problem nothing in the code did change
between -15 and -16 (where it arrived). But gcc got a upgrade :-(
(As said in a later post, compiling with an older gcc works...)

And it happens for ! Calc, too...

> Rene, are you going to FOSDEM? Maybe we could dive into that if not
> solved by then.

Sorry, no, at some other other conference in Berlin.

Grüße/Regards,

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




--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514017: attr - Puts files in /lib64

2009-02-03 Thread Bastian Blank
Package: attr
Version: 1:2.4.43-1
Severity: critical

attr installs files into /lib64 depending on some strang lookup. This
was _always_ wrong on Debian systems. See acl/2.2.47-1.1 for more
informations.

Bastian

-- 
You're dead, Jim.
-- McCoy, "Amok Time", stardate 3372.7



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: sorry for the noise

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 512715 serious
Bug#512715: mc: fish can't get directory listings from solaris or HP-UX hosts
Bug#488497: mc: entering directories with spaces over fish doesnt work
Severity set to `serious' from `critical'

> severity 488497 serious
Bug#488497: mc: entering directories with spaces over fish doesnt work
Bug#512715: mc: fish can't get directory listings from solaris or HP-UX hosts
Severity set to `serious' from `serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Fixed in 4.6.2

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 488497 512715
Bug#488497: mc: entering directories with spaces over fish doesnt work
Bug#512715: mc: fish can't get directory listings from solaris or HP-UX hosts
Forcibly Merged 488497 512715.

> severity 512715 critical
Bug#512715: mc: fish can't get directory listings from solaris or HP-UX hosts
Bug#488497: mc: entering directories with spaces over fish doesnt work
Severity set to `critical' from `important'

> severity 488497 critical
Bug#488497: mc: entering directories with spaces over fish doesnt work
Bug#512715: mc: fish can't get directory listings from solaris or HP-UX hosts
Severity set to `critical' from `critical'

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl

2009-02-03 Thread Damyan Ivanov
-=| gregor herrmann, Tue, Feb 03, 2009 at 11:36:52AM +0100 |=-
> On Tue, 03 Feb 2009 12:13:35 +0200, Damyan Ivanov wrote:
> 
> > > Eloy, I guess you're taking care of this; if you are busy or
> > > something just shout.
> > What is the intented fix? 
> 
> I'd like to have Eloy's opinion since he's the expert and I'm not
> completely sure either.

I agree with that, although Eloy's idea of moving catalyst to pkg-perl
was partly because he'd like some help (AIUI). So if we can figure out 
a good fix without him, that shall be good :)

> > I think declaring conflict is not an option, I'd expect to be able 
> > to install both Catalyst and its manual at the same time :)
> 
> Ack. And a Recommends/Suggests cat -> cat-manual maybe.

That would be a nice touch.

> > As I see it, libcatalyst-manual-perl should divert the above two 
> > files from libcatalyst-perl.
> 
> Sounds like an elegant plan.
> The simpler way would be to just remove the 2 files from
> libcatalyst-perl.

True.

> > Both variants suggest installing stuff from CPAN. Should this be 
> > patched in the debian packages? For Lenny?
> 
> Catalyst consists of a myriad of modules, and AFAIK not all of them
> are packaged for Debian yet (or are rather new and only in unstable).
> My assumption is that people dealing with catalyst know or find out
> where to get stuff.

Probably.

> AFAICS this bug only exists for libcatalyst-perl's version in
> unstable (5.71000-1), the version in testing (5.7014-1) doesn't
> contain Manual.pm/Catalyst::Manual.3pm.gz: 
> http://packages.debian.org/lenny/all/libcatalyst-perl/filelist

Oh, this is good. At least we don't have to rush before Lenny is out 
or figure out how stable-updates works :)

> libcatalyst-manual-perl still is at 5.7016-1, maybe this duplication
> will be fixed in a 5.71x release and we can get away with some
> versioned conflicts and without removing/diverting files?

BTW, there is Catalyst-Runtime dist on CPAN (that is libcatalyst-perl 
upstream source) of version 5.8000_05 with three pages of changes 
since 5.7x. Catalyst::Model is still there though.

Aaah, your pointer to the Lenny version was indeed very good.

libcatalyst-perl 5.7014-1 has this in debian/rules:

  $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
  mv $(TMP)/usr/share/perl5/Catalyst/Manual.pm\
  $(TMP)/usr/share/perl5/Catalyst/Manual/Runtime.pm
  mv $(TMP)/usr/share/man/man3/Catalyst::Manual.3pm\
  $(TMP)/usr/share/man/man3/Catalyst::Manual::Runtime.3pm

In 5.7016-1 this was replaced with the standard dh7 stuff:

  dh install

I guess adding back the plumbing used in 5.7014-1 would fix the conflict.

-- 
damJabberID: d...@jabber.minus273.org


signature.asc
Description: Digital signature


Processed: cloning 514015, reassign -1 to debootstrap

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 514015 -1
Bug#514015: cdebootstrap - packages with symlinks to dirs (libc6) can lead to 
writes outside the new root
Bug 514015 cloned as bug 514016.

> reassign -1 debootstrap
Bug#514016: cdebootstrap - packages with symlinks to dirs (libc6) can lead to 
writes outside the new root
Bug reassigned from package `cdebootstrap' to `debootstrap'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#514015: cdebootstrap - packages with symlinks to dirs (libc6) can lead to writes outside the new root

2009-02-03 Thread Bastian Blank
Package: cdebootstrap
Version: 0.5.4
Severity: grave

Packages with absolute symlinks to dirs like libc6 on amd64, ppc64 and
s390x can lead to overwrites of files outside of the new root.

Bastian

-- 
Genius doesn't work on an assembly line basis.  You can't simply say,
"Today I will be brilliant."
-- Kirk, "The Ultimate Computer", stardate 4731.3



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#510851: marked as done ([kdesktop] kdesktop_lock can be unlocked by scim)

2009-02-03 Thread Debian Bug Tracking System

Your message dated Tue, 03 Feb 2009 12:02:03 +
with message-id 
and subject line Bug#510851: fixed in scim-qtimm 0.9.4-3
has caused the Debian Bug report #510851,
regarding [kdesktop] kdesktop_lock can be unlocked by scim
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
510851: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=510851
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: kdesktop
Version: 4:3.5.9.dfsg.1-6
Severity: grave
Tags: security
X-Debbugs-CC: secure-testing-t...@lists.alioth.debian.org

It is possible to unlock kdesktop_lock on systems with configured scim without 
entering a password. This makes it possible to access data of other users or 
access random locked PCs (best place to start such an attack would be in some 
asian countries).
The system was configure as described in
 http://ubuntuforums.org/showthread.php?p=2704098 but with japanese tables.
You must be sure that scim is enabled (for example by pressing ctrl+space and 
entering some test data. Then start kdesktop_lock manually by calling 
`kdesktop_lock --forcelock` and move your mouse/press some key to start the 
password dialog. Just press cancel and move your mouse or press something on 
you keyboard again. This should crash kdesktop_lock and enable access to the 
desktop.

It was tested on different systems and it could reproduced on all.

This problem is also known by upstream but marked it as invalid because 
kdesktop isn't maintained anymore (instead they thing everybody should use kde 
4 stuff). http://bugs.kde.org/show_bug.cgi?id=149512

Only workaround seems to disable scim and stop to write in a foreign language 
with complex characters... which is not acceptable.


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

Debian Release: 5.0
  500 unstableftp.de.debian.org 
  500 testing debian.netcologne.de 

--- Package information. ---
Depends(Version) | Installed
-+-=
kdelibs4c2a (>= 4:3.5.9) | 4:3.5.10.dfsg.1-1
libc6 (>= 2.7-1) | 2.7-16
libgcc1 (>= 1:4.1.1) | 1:4.3.2-1.1
libgl1-mesa-glx  | 7.2-1
 OR libgl1   | 
libglu1-mesa | 7.0.3-7
 OR libglu1  | 
libkonq4(>= 4:3.5.9) | 4:3.5.9.dfsg.1-6
libqt3-mt  (>= 3:3.3.8b) | 3:3.3.8b-5
libstdc++6(>= 4.1.1) | 4.3.2-1.1
libx11-6 | 2:1.1.5-2
libxau6  | 1:1.0.3-3
libxcursor1   (>> 1.1.2) | 1:1.1.9-1
libxext6 | 2:1.0.4-1
libxss1  | 1:1.1.3-1
libxxf86misc1| 1:1.0.1-3
kdebase-bin (= 4:3.5.9.dfsg.1-6) | 4:3.5.9.dfsg.1-6
kdeeject | 4:3.5.9.dfsg.1-6



--- End Message ---
--- Begin Message ---
Source: scim-qtimm
Source-Version: 0.9.4-3

We believe that the bug you reported is fixed in the latest version of
scim-qtimm, which is due to be installed in the Debian FTP archive:

scim-qtimm_0.9.4-3.diff.gz
  to pool/main/s/scim-qtimm/scim-qtimm_0.9.4-3.diff.gz
scim-qtimm_0.9.4-3.dsc
  to pool/main/s/scim-qtimm/scim-qtimm_0.9.4-3.dsc
scim-qtimm_0.9.4-3_amd64.deb
  to pool/main/s/scim-qtimm/scim-qtimm_0.9.4-3_amd64.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 510...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Zhengpeng Hou  (supplier of updated scim-qtimm 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 03 Feb 2009 03:11:46 +
Source: scim-qtimm
Binary: scim-qtimm
Architecture: source amd64
Version: 0.9.4-3
Distribution: unstable
Urgency: low
Maintainer: Zhengpeng Hou 
Changed-By: Zhengpeng Hou 
Description: 
 scim-qtimm - SCIM context plugin for qt-immodule
Closes: 432331 441596 450360 510851
Changes: 
 scim-qtimm (0.9.4-3) unstable; urgency=low
 .
   * Fix failed to report upstream version via debian/watch. (Closes: #450360)
   * Add 11_qt_link.dpatch, make scim-qti

Processed: tagging 513604

2009-02-03 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 2.9.26etch1
> tags 513604 + pending
Bug#513604: linux-libc-dev: drm headers conflict with libdrm-dev
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513853: [sagemath] sage segfaults

2009-02-03 Thread Drew Parsons
I've got the segfault on amd64 (Intel Core2).

I ran with sage -gdb, once the segfault hits, a bt gives:

(gdb) bt
#0  0x7f4808262050 in strlen () from /lib/libc.so.6
#1  0x00455e4b in PyString_FromString ()
#2  0x7f47effbda43 in initmulti_polynomial_libsingular ()

from 
/usr/lib/python2.5/site-packages/sage/rings/polynomial/multi_polynomial_libsingular.so
#3  0x004ab1d7 in _PyImport_LoadDynamicModule ()
#4  0x004a9734 in ?? ()
#5  0x004a99cc in ?? ()
#6  0x004aa071 in ?? ()
#7  0x004aa3df in PyImport_ImportModuleLevel ()
#8  0x0048ad79 in ?? ()
#9  0x004187b3 in PyObject_Call ()
#10 0x0048b262 in PyEval_CallObjectWithKeywords ()
#11 0x0048e822 in PyEval_EvalFrameEx ()
#12 0x00492a52 in PyEval_EvalFrameEx ()
#13 0x0049313d in PyEval_EvalCodeEx ()
#14 0x004dd612 in ?? ()
#15 0x004187b3 in PyObject_Call ()
#16 0x7f47fe4101c8 in ?? ()
   from /usr/lib/python2.5/site-packages/sage/rings/ring.so
#17 0x004187b3 in PyObject_Call ()
#18 0x00462194 in ?? ()
#19 0x0048f03c in PyEval_EvalFrameEx ()


Incidentally, sage -notebook does not give a segfault. It doesn't really
help though.  I presume you need to type shift-enter to get a result in
the notebook? It's not documented!  But that's how you do it in
Mathematica.  Anyway, even after pressing shift-enter, it doesn't give
any output result. Probably silently affected by the segfault.

Drew





-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl

2009-02-03 Thread gregor herrmann
On Tue, 03 Feb 2009 12:13:35 +0200, Damyan Ivanov wrote:

> > Eloy, I guess you're taking care of this; if you are busy or
> > something just shout.
> What is the intented fix? 

I'd like to have Eloy's opinion since he's the expert and I'm not
completely sure either.

> I think declaring conflict is not an option, 
> I'd expect to be able to install both Catalyst and its manual at the 
> same time :)

Ack. And a Recommends/Suggests cat -> cat-manual maybe.
 
> As I see it, libcatalyst-manual-perl should divert the above two files 
> from libcatalyst-perl.

Sounds like an elegant plan.
The simpler way would be to just remove the 2 files from
libcatalyst-perl.
 
> Both variants suggest installing stuff from CPAN. Should this be 
> patched in the debian packages? For Lenny?

Catalyst consists of a myriad of modules, and AFAIK not all of them
are packaged for Debian yet (or are rather new and only in unstable).
My assumption is that people dealing with catalyst know or find out
where to get stuff.

AFAICS this bug only exists for libcatalyst-perl's version in
unstable (5.71000-1), the version in testing (5.7014-1) doesn't
contain Manual.pm/Catalyst::Manual.3pm.gz: 
http://packages.debian.org/lenny/all/libcatalyst-perl/filelist

libcatalyst-manual-perl still is at 5.7016-1, maybe this duplication
will be fixed in a 5.71x release and we can get away with some
versioned conflicts and without removing/diverting files?

Cheers,
gregor 
-- 
 .''`.   Home: http://info.comodo.priv.at/{,blog/} / GPG Key ID: 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/
   `-Beam me up, Scotty! 



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513853: stack at segfault

2009-02-03 Thread Alexandre Fayolle
For what it's worth, here's what I get when running with -gdb:

(gdb) bt
#0  0xb7e5d3b3 in strlen () from /lib/i686/cmov/libc.so.6
#1  0x08096eda in PyString_FromString ()
#2  0xb406c975 in initmulti_polynomial_libsingular () 
from 
/usr/lib/python2.5/site-packages/sage/rings/polynomial/multi_polynomial_libsingular.so
#3  0x080e6b67 in _PyImport_LoadDynamicModule ()
#4  0x080e4ac0 in ?? ()
#5  0xbfcb7b87 in ?? ()
#6  0xbfcb6b13 in ?? ()
#7  0x0a948230 in ?? ()
#8  0x0808bcf9 in PyObject_GetAttrString ()
#9  0x080e52a7 in ?? ()
#10 0x0003 in ?? ()
#11 0x in ?? ()

-- 
Alexandre Fayolle  LOGILAB, Paris (France)
Formations Python, Zope, Plone, Debian:  http://www.logilab.fr/formations
Développement logiciel sur mesure:   http://www.logilab.fr/services
Informatique scientifique:   http://www.logilab.fr/science



--
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#513971: libcatalyst-perl: tries to overwrite file owned by libcatalyst-manual-perl

2009-02-03 Thread Damyan Ivanov
-=| gregor herrmann, Mon, Feb 02, 2009 at 11:14:34PM +0100 |=-
> On Mon, 02 Feb 2009 22:16:05 +0100, Ralf Treinen wrote:
> 
> > dpkg: error processing 
> > /var/cache/apt/archives/libcatalyst-perl_5.71000-1_all.deb (--unpack):
> >  trying to overwrite `/usr/share/perl5/Catalyst/Manual.pm', which is also 
> > in package libcatalyst-manual-perl
> > dpkg-deb: subprocess paste killed by signal (Broken pipe)
> > Processing triggers for man-db ...
> > Errors were encountered while processing:
> >  /var/cache/apt/archives/libcatalyst-perl_5.71000-1_all.deb
> > E: Sub-process /usr/bin/dpkg returned an error code (1)
> 
> A quick look at the two packages shows that there are 2 duplicate
> files:
> 
> /usr/share/man/man3/Catalyst::Manual.3pm.gz
> /usr/share/perl5/Catalyst/Manual.pm
> 
> Eloy, I guess you're taking care of this; if you are busy or
> something just shout.

What is the intented fix? I think declaring conflict is not an option, 
I'd expect to be able to install both Catalyst and its manual at the 
same time :)

From what I see, C::M contained in libcatalyst-perl is just a pointer 
to the rest of the docs (which are shipped in catalyst-manual). The 
manual in libcatalyst-manual-perl is not much better, it says to see 
Catalyst::Manual::Intro and Catalyst::Manual::Tutorial.

As I see it, libcatalyst-manual-perl should divert the above two files 
from libcatalyst-perl.

Both variants suggest installing stuff from CPAN. Should this be 
patched in the debian packages? For Lenny?


-- 
damJabberID: d...@jabber.minus273.org


signature.asc
Description: Digital signature


Bug#513743: OO-calc bug

2009-02-03 Thread Eike Rathke
Hi Rene,

On Monday, 2009-02-02 00:57:01 +0100, Rene Engelhard wrote:

> To be honest, I don't have a clue about this. Eike, Stephan/Kay, any idea?

No other than some yet unknown sort of memory corruption or misplaced
instruction. libcomphelp4gcc3.so was mentioned to solve this when
replaced. What changed between -15 and -17 and its compilation?

Rene, are you going to FOSDEM? Maybe we could dive into that if not
solved by then.

  Eike

-- 
 OOo/SO Calc core developer. Number formatter stricken i18n transpositionizer.
 GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD
 SunSign   0x87F8D412 : 2F58 5236 DB02 F335 8304  7D6C 65C9 F9B5 87F8 D412
 OpenOffice.org Engineering at Sun: http://blogs.sun.com/GullFOSS


pgpPfdAcpm5cN.pgp
Description: PGP signature


Bug#514003: python2.5: Type Decimal, int and float. Unsupported operand

2009-02-03 Thread Blaise Vogel
Package: python2.5
Version: 2.5.2-15
Severity: grave
Justification: causes non-serious data loss

When I mix different type of variable, I obtain some strange results:

a = Decimal.decimal(1)
b = 2
c = 2.

>>> a * b
Decimal("2")

>>> a < b
True

>>> a * c
Traceback (most recent call last):
  File "", line 1, in 
TypeError: unsupported operand type(s) for *: 'Decimal' and 'float'
>>> a < c
False

The same result with Debian Etch.

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

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

Versions of packages python2.5 depends on:
ii  libbz2-1.01.0.5-1high-quality block-sorting file co
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libdb4.5  4.5.20-13  Berkeley v4.5 Database Libraries [
ii  libncursesw5  5.7+20081213-1 shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libsqlite3-0  3.5.9-5SQLite 3 shared library
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  mime-support  3.44-1 MIME files 'mime.types' & 'mailcap
ii  python2.5-minimal 2.5.2-15   A minimal subset of the Python lan

python2.5 recommends no packages.

Versions of packages python2.5 suggests:
pn  python-profiler(no description available)
ii  python2.5-doc 2.5.2-2Documentation for the high-level o

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#509633: pidgin sound problems with gstreamer pulseaudio.

2009-02-03 Thread Andreas Henriksson
On tis, 2009-02-03 at 00:35 +0100, Milan P. Stanic wrote:
> Sorry, I was on holiday.
Sorry for being impatient. I would have given you more time if it wasn't
for the urgency of the upcoming release.


> m...@cl:~$ G_DEBUG=fatal_warnings pidgin
> 
> GStreamer-CRITICAL **: 
> Trying to dispose element play, but it is not in the NULL state.
> You need to explicitly set elements to the NULL state before
> dropping the final reference, to allow them to clean up.
> 
> aborting...
> Aborted
> m...@cl:~$ 

aww... I was told this should spit out a backtrace. Could you please try
to run this:

export G_DEBUG=fatal_warnings
gdb pidgin
run

bt full
quit

Hopefully you already have debug information available for a useful
backtrace.

Thanks!


-- 
Regards,
Andreas Henriksson



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org