Processed: Re: Bug#604224: pike7.8-dev: installation fails

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 604224 important
Bug #604224 [pike7.8-dev] pike7.8-dev: installation fails
Severity set to 'important' from 'serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
604224: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604224
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#604224: pike7.8-dev: installation fails

2010-11-28 Thread Lucas Nussbaum
severity 604224 important
thanks

On 28/11/10 at 13:05 +0100, gregor herrmann wrote:
> tag 604224 + unreproducible
> thanks
> 
> On Sun, 21 Nov 2010 10:58:10 +0100, Lucas Nussbaum wrote:
> 
> > While testing the installation of all packages in unstable, I ran
> > into the following problem:
> 
> I can reproduce your other fails-to-install bug reports in my
> cowbuilder chroot but not this one.
> 
> The package installs just fine for me.
> 
> I found an interesting line in the log:
>  
> > > Setting up pike7.8-core (7.8.352-dfsg-3) ...
> > > update-alternatives: using /usr/bin/pike7.8 to provide /usr/bin/pike 
> > > (pike) in auto mode.
> > > Alarm clock
> > > dpkg: error processing pike7.8-core (--configure):
> > > subprocess installed post-installation script returned error exit status 
> > > 142
> 
> I've never seen this "Alarm clock" - any idea where this is coming
> from?
> 
> (The rest are errors following from the first one, I guess.)

I could be an error message spewed by a command called in postinst.
pike7.8-core's postinst calls update-alternatives and $PIKEBIN, which is
pike7.8. However, a grep on their source code doesn't show any "Alarm
clock"...

One of the TODO items for instest is to use dpkg hooks to auto-change
/bin/sh to /bin/sh -x, which would make it easier to understand the
issue...

Since I could not reproduce the failure, I'm lowering the severity.
However, it's probably something to investigate at some point, or at
least to keep open so that, if it happens again, we know it's not the
first time.

- Lucas


signature.asc
Description: Digital signature


Bug#605218: apt-get dist-upgrade fails to install ia32-libs since version 20101117

2010-11-28 Thread snorky snorky
Same problem for me.

Removing ia32-libs-workaround-499043 package solved the issue. I probably
have played with the flash player workaroud under Lenny too.

Regards


Processed: tagging 604457

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 604457 + patch
Bug #604457 [linux-2.6] linux-image-2.6.26-2-xen-686: Raid10 exporting LV to 
xen results in error "can't convert block across chunks or bigger than 64k"
Bug #461644 [linux-2.6] linux-image-2.6.18-5-xen-686: Exporting an lvm-on-md LV 
to Xen as a disk results in kernel errors and corrupt filesystems
Ignoring request to alter tags of bug #604457 to the same tags previously set
Ignoring request to alter tags of bug #461644 to the same tags previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
604457: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604457
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#604457: linux-image-2.6.26-2-xen-686: Raid10 exporting LV to xen results in error "can't convert block across chunks or bigger than 64k"

2010-11-28 Thread Ben Hutchings
On Wed, 2010-11-24 at 17:01 +0100, Wouter D'Haeseleer wrote:
> Hi Ben,
> 
> I have now successfully compiled the kernel including the patch which
> this time applied without problem.
> However the original bug is still present with the patch you grabbed
> upstream.
> 
> For testing purpose I have tried also the patch which is supplied by
> redhat and I can confirm that this patch is working without a problem.
> 
> So it looks like the patch from Neil Brown does not work for this bug.

The result of my conversation with Neil Brown is that his fix covers
only md devices at the top of a stack whereas the Red Hat patch covers
only dm devices at the top of a stack.  We should really be fixing both
in the same way.

Please can you test the attached patch, which covers both dm and md.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.
commit a451e30d044e5b29f31d965a32d17bf7e97f99b0
Author: Ben Hutchings 
Date:   Sun Nov 28 23:46:46 2010 +

dm: Deal with merge_bvec_fn in component devices better

This is analogous to commit 627a2d3c29427637f4c5d31ccc7fcbd8d312cd71,
which does the same for md-devices at the top of the stack.  The
following explanation is taken from that commit.  Thanks to Neil Brown
 for the advice.

If a component device has a merge_bvec_fn then as we never call it
we must ensure we never need to.  Currently this is done by setting
max_sector to 1 PAGE, however this does not stop a bio being created
with several sub-page iovecs that would violate the merge_bvec_fn.

So instead set max_segments to 1 and set the segment boundary to the
same as a page boundary to ensure there is only ever one single-page
segment of IO requested at a time.

This can particularly be an issue when 'xen' is used as it is
known to submit multiple small buffers in a single bio.

Signed-off-by: Ben Hutchings 

commit 71ff0067805fb917142a745246f7996f3ad86d5b
Author: NeilBrown 
Date:   Mon Mar 8 16:44:38 2010 +1100

md: deal with merge_bvec_fn in component devices better.

commit 627a2d3c29427637f4c5d31ccc7fcbd8d312cd71 upstream.

If a component device has a merge_bvec_fn then as we never call it
we must ensure we never need to.  Currently this is done by setting
max_sector to 1 PAGE, however this does not stop a bio being created
with several sub-page iovecs that would violate the merge_bvec_fn.

So instead set max_segments to 1 and set the segment boundary to the
same as a page boundary to ensure there is only ever one single-page
segment of IO requested at a time.

This can particularly be an issue when 'xen' is used as it is
known to submit multiple small buffers in a single bio.

Signed-off-by: NeilBrown 
Cc: sta...@kernel.org
[bwh: Backport to Linux 2.6.26]
diff --git a/drivers/md/dm-table.c b/drivers/md/dm-table.c
index 94116ea..186445d0 100644
--- a/drivers/md/dm-table.c
+++ b/drivers/md/dm-table.c
@@ -506,17 +506,15 @@ void dm_set_device_limits(struct dm_target *ti, struct block_device *bdev)
 	rs->max_sectors =
 		min_not_zero(rs->max_sectors, q->max_sectors);
 
-	/* FIXME: Device-Mapper on top of RAID-0 breaks because DM
-	 *currently doesn't honor MD's merge_bvec_fn routine.
-	 *In this case, we'll force DM to use PAGE_SIZE or
-	 *smaller I/O, just to be safe. A better fix is in the
-	 *works, but add this for the time being so it will at
-	 *least operate correctly.
+	/*
+	 * Since we don't call merge_bvec_fn, we must never risk
+	 * violating it, so limit max_phys_segments to 1 lying within
+	 * a single page.
 	 */
-	if (q->merge_bvec_fn)
-		rs->max_sectors =
-			min_not_zero(rs->max_sectors,
- (unsigned int) (PAGE_SIZE >> 9));
+	if (q->merge_bvec_fn) {
+		rs->max_phys_segments = 1;
+		rs->seg_boundary_mask = PAGE_CACHE_SIZE - 1;
+	}
 
 	rs->max_phys_segments =
 		min_not_zero(rs->max_phys_segments,
diff --git a/drivers/md/linear.c b/drivers/md/linear.c
index ec921f5..fe8508a 100644
--- a/drivers/md/linear.c
+++ b/drivers/md/linear.c
@@ -136,12 +136,14 @@ static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
 		blk_queue_stack_limits(mddev->queue,
    rdev->bdev->bd_disk->queue);
 		/* as we don't honour merge_bvec_fn, we must never risk
-		 * violating it, so limit ->max_sector to one PAGE, as
-		 * a one page request is never in violation.
+		 * violating it, so limit max_segments to 1 lying within
+		 * a single page.
 		 */
-		if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
-		mddev->queue->max_sectors > (PAGE_SIZE>>9))
-			blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
+		if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
+			blk_queue_max_phys_segments(mddev->queue, 1);
+			blk_queue_segment_boundary(mddev->queue,
+		   PAGE_CACHE_SIZE - 1);
+		}
 
 		disk->size = rdev->size;
 		conf->array_size += rdev->size;
diff --git a/drive

Bug#604457: linux-image-2.6.26-2-xen-686: Raid10 exporting LV to xen results in error "can't convert block across chunks or bigger than 64k"

2010-11-28 Thread Ben Hutchings
On Mon, 2010-11-29 at 11:48 +1100, Neil Brown wrote:
> On Mon, 29 Nov 2010 00:08:47 + Ben Hutchings  wrote:
> 
> > > 
> > >   if (q->merge_bvec_fn && !ti->type->merge)
> > >   limits->max_segments = 1;
> > > 
> > > (the test on ->type->merge is important and applies to 2.6.26 as well).
> > 
> > Why is it not necessary to set seg_boundary_mask to PAGE_CACHE_SIZE - 1,
> > as for md devices?
> > 
> 
> Sorry.  It is necessary of course.  I guess I was being a bit hasty and
> forgetting all the details.
> 
>  if (q->merge_bvec_fn && !ti->type->merge) {
>   limits->max_segments = 1;   /* Make sure only one segment in each bio */
>   limits->seg_boundary_mask = PAGE_CACHE_SIZE-1; /* make sure that
> segment is in just one page */
>  }

Thanks again.  I'll apply this change in Debian and try to get it
upstream if we don't see any regressions.

Ben.

-- 
Ben Hutchings, Debian Developer and kernel team member



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


Bug#600374: #600374: Mokomaze: Removal asked

2010-11-28 Thread Paul Wise
On Sun, 2010-11-28 at 12:24 +0100, Didier 'OdyX' Raboud wrote:

> In the light of the discussion in this RC bug (in particular #20), I asked 
> for a 
> removal of the mokomaze package from Squeeze.
> 
> See bug #605205 for the reasoning (and if you want to argue in favor or 
> against).

I don't think those reasons apply any longer since they were mainly
about giving upstream time to fix the bug and the removal from testing
took longer than the fix.

While there isn't a Linux image or bootloader in squeeze that can run on
the OpenMoko FreeRunner, that doesn't mean that mokomaze isn't useful on
other systems running squeeze, for example it supports the ThinkPad
HDAPS device or just a plain keyboard. I've personally played it on my
laptop using just the keyboard. In addition people can run a custom
kernel/bootloader on the OpenMoko FreeRunner and squeeze will work just
fine.

We are just waiting on the pkg-fso team to make an upload removing the
icons and adding the patch I sent upstream.

-- 
bye,
pabs

http://bonedaddy.net/pabs3/


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


Processed: tagging 604457

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 2.10.35lenny7
> tags 604457 + pending
Bug #604457 [linux-2.6] linux-image-2.6.26-2-xen-686: Raid10 exporting LV to 
xen results in error "can't convert block across chunks or bigger than 64k"
Bug #461644 [linux-2.6] linux-image-2.6.18-5-xen-686: Exporting an lvm-on-md LV 
to Xen as a disk results in kernel errors and corrupt filesystems
Ignoring request to alter tags of bug #604457 to the same tags previously set
Ignoring request to alter tags of bug #461644 to the same tags previously set
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
604457: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604457
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: bug 602476 is forwarded to https://bugs.freedesktop.org/show_bug.cgi?id=31963

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 602476 https://bugs.freedesktop.org/show_bug.cgi?id=31963
Bug #602476 [src:policykit-1] policykit-1: FTBFS on kfreebsd-*: sys/signalfd.h: 
No such file or directory
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=31963'.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
602476: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602476
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: tagging 604457

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 2.10.35lenny7
> tags 604457 + pending
Bug #604457 [linux-2.6] linux-image-2.6.26-2-xen-686: Raid10 exporting LV to 
xen results in error "can't convert block across chunks or bigger than 64k"
Bug #461644 [linux-2.6] linux-image-2.6.18-5-xen-686: Exporting an lvm-on-md LV 
to Xen as a disk results in kernel errors and corrupt filesystems
Added tag(s) pending.
Added tag(s) pending.
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
604457: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604457
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: tagging 604457

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Automatically generated email from bts, devscripts version 2.10.35lenny7
> tags 604457 + pending
Bug #604457 [linux-2.6] linux-image-2.6.26-2-xen-686: Raid10 exporting LV to 
xen results in error "can't convert block across chunks or bigger than 64k"
Bug #461644 [linux-2.6] linux-image-2.6.18-5-xen-686: Exporting an lvm-on-md LV 
to Xen as a disk results in kernel errors and corrupt filesystems
Ignoring request to alter tags of bug #604457 to the same tags previously set
Ignoring request to alter tags of bug #461644 to the same tags previously set
>
End of message, stopping processing here.

Please contact me if you need assistance.
-- 
604457: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604457
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#604712: marked as done (qemu-user-static: binfmts/qemu-x86_64 breaks debootstrap)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Mon, 29 Nov 2010 01:33:05 +
with message-id 
and subject line Bug#604712: fixed in qemu 0.12.5+dfsg-3
has caused the Debian Bug report #604712,
regarding qemu-user-static: binfmts/qemu-x86_64 breaks debootstrap
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.)


-- 
604712: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604712
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: qemu-user-static
Version: 0.13.0+dfsg-2
Severity: normal

On an i386 system with x86-64 kernel, if both qemu-user-static and 
binfmt-support are installed, amd64 binaries are run through qemu even 
if the kernel could run them natively. This breaks e.g. debootstrap, 
which fail in a mysterious way (AFAIUI because qemu cannot be found 
inside the chroot), giving a user no clue what went wrong.
  


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

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

qemu-user-static depends on no packages.

Versions of packages qemu-user-static recommends:
ii  binfmt-support1.2.18 Support for extra binary formats

--
Jakub Wilk


--- End Message ---
--- Begin Message ---
Source: qemu
Source-Version: 0.12.5+dfsg-3

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

libqemu-dev_0.12.5+dfsg-3_i386.deb
  to main/q/qemu/libqemu-dev_0.12.5+dfsg-3_i386.deb
qemu-keymaps_0.12.5+dfsg-3_all.deb
  to main/q/qemu/qemu-keymaps_0.12.5+dfsg-3_all.deb
qemu-system_0.12.5+dfsg-3_i386.deb
  to main/q/qemu/qemu-system_0.12.5+dfsg-3_i386.deb
qemu-user-static_0.12.5+dfsg-3_i386.deb
  to main/q/qemu/qemu-user-static_0.12.5+dfsg-3_i386.deb
qemu-user_0.12.5+dfsg-3_i386.deb
  to main/q/qemu/qemu-user_0.12.5+dfsg-3_i386.deb
qemu-utils_0.12.5+dfsg-3_i386.deb
  to main/q/qemu/qemu-utils_0.12.5+dfsg-3_i386.deb
qemu_0.12.5+dfsg-3.diff.gz
  to main/q/qemu/qemu_0.12.5+dfsg-3.diff.gz
qemu_0.12.5+dfsg-3.dsc
  to main/q/qemu/qemu_0.12.5+dfsg-3.dsc
qemu_0.12.5+dfsg-3_i386.deb
  to main/q/qemu/qemu_0.12.5+dfsg-3_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 604...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Vagrant Cascadian  (supplier of updated qemu 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: SHA256

Format: 1.8
Date: Sun, 28 Nov 2010 15:57:11 -0800
Source: qemu
Binary: qemu qemu-keymaps qemu-system qemu-user qemu-user-static qemu-utils 
libqemu-dev
Architecture: source all i386
Version: 0.12.5+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Debian QEMU Team 
Changed-By: Vagrant Cascadian 
Description: 
 libqemu-dev - static libraries and headers for QEMU
 qemu   - fast processor emulator
 qemu-keymaps - QEMU keyboard maps
 qemu-system - QEMU full system emulation binaries
 qemu-user  - QEMU user mode emulation binaries
 qemu-user-static - QEMU user mode emulation binaries (static version)
 qemu-utils - QEMU utilities
Closes: 604712
Changes: 
 qemu (0.12.5+dfsg-3) unstable; urgency=medium
 .
   * qemu-user-static:
 - Drop binfmt support for emulating amd64 on i386, as it is broken and
   including it interferes with environments capable of running amd64
   natively.  Closes: #604712.
 - Remove binfmt support for installed targets in postinst before installing
   supported targets, to ensure no-longer-supported targets are actually
   removed.
 - Remove binfmt support for installed targets in prerm.
Checksums-Sha1: 
 cebca247757d01175cc6a17f817ecbff0eaa5165 2626 qemu_0.12.5+dfsg-3.dsc
 c0aa0205b853bdd852a8cb5829cbb1e8c4cf025d 42265 qemu_0.12.5+dfsg-3.diff.gz
 9a632559678a91b9edf1ab9b91ffa8871f943f1e 47640 
qemu-keymaps_0.12.5+dfsg-3_all.deb
 5a38623ecd2a7907b15c262896d1bf80b85ba528 107494 qemu_0.12.5+dfsg-3_i386.deb
 a74b98ecee17f66ff977926f1469455383dc39ef 12290184 
qemu-system_0.12.5+dfsg-3_i386.deb
 d2e8b6d1fe7e0813a628c7c049051e7565f91c1c 4205246 
qemu-user_0.12.5+dfsg-3_i386.deb
 25080e23a89f5f409497a61af18d4f6d662e9f

Processed: Re: Upgrade

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 590147 help
Bug #590147 [akregator] akregator crashes at start
Added tag(s) help.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
590147: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=590147
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#590147: Upgrade

2010-11-28 Thread Modestas Vainius
tags 590147 help
thanks

Hello,

On antradienis 09 Lapkritis 2010 11:23:53 Bastien ROUCARIES wrote:
> > But now there are too many
> >
> >variables. To make things worse, akregator developement isn't very active
> >upstream.
> 
> I have not the skills to debug this bug, but  they are some file that
> coul allow youy to reproduce it at
> http://bugs.kde.org/attachment.cgi?id=48011

All that stuff in bug report is useless because both this debian bug and 
upstream bug deal with consequences. When you see this crash and backtrace, 
the archive file had already been cut short and the data had already been 
lost. akregator is simply unable to read corrupt archive file on startup and 
rather than handling this condition gracefully, it crashes. However, there is 
no information how and when akregator fails to write correct archive file or 
otherwise corrupts it. 

So basically this bug is impossible to fix without a reliable way to reproduce 
it from the start to finish. During my 2 years of using akregator, I have 
never had this problem so there is not much I can do.

-- 
Modestas Vainius 


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


Bug#604773: marked as done ([kspread] Time cells shown as 00:00 when ODS file is loaded, corrupted when saving as ODS)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Mon, 29 Nov 2010 01:03:28 +
with message-id 
and subject line Bug#604773: fixed in koffice 1:2.2.1-4
has caused the Debian Bug report #604773,
regarding [kspread] Time cells shown as 00:00 when ODS file is loaded, 
corrupted when saving as ODS
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.)


-- 
604773: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604773
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: kspread
Version: 1:2.2.1-3
Severity: grave
Tags: upstream fixed-upstream

2 days ago a new OOo migrated to squeeze and I decided to remove it, 
forgetting that I used Calc daily for my timesheet - ahem. So when I 
opened my timesheet yesterday, it didn't open with Calc, but with 
KSpread, which I also had installed. I thought I wouldn't bother to 
reinstall OOo just for that, so I added November 21's time, saved and 
closed. It's about time we started seeing the wonders of ODF, right?


Today, I opened again the spreadsheet and noticed the times were really 
wrong. I asked on #koffice and was informed by Marijn Kruisselbrink this 
was a bug he had fixed for KOffice 2.3 (so no fix released yet). The 
upstream report is https://bugs.kde.org/show_bug.cgi?id=253042
The precise details of this issue are not clear, but basically, when 
certain time values are saved in an ODS file, the time saved has some 
random data. When reopening the same file which looked OK, KSpread shows 
the time as 00:00:00. If you click the cell, you see the value in the 
top bar is the actual value - apparently. This does not work so well 
with other ODS programs, like Calc (and probably the fixed KSpread), 
which rather shows some more or less random values. What happened in my 
spreadsheet from Calc was that all durations of at least 1 hour were not 
corrupted, all others were corrupted. So the 25 minutes entries 
(00:25:00) were corrupted, but not 01:10:00.


To reproduce, just create a new sheet, put 5:00 in A1, save, and watch 
the displayed value change to 0:00 when reopening the document.


According to Marijn, there is no 2.2.3 planned. I don't think the fix 
was backported to branch 2.2, but Marijn doesn't think this would be 
hard. The fix is very short: 
http://websvn.kde.org/?revision=1183113&view=revision




--- End Message ---
--- Begin Message ---
Source: koffice
Source-Version: 1:2.2.1-4

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

karbon_2.2.1-4_amd64.deb
  to main/k/koffice/karbon_2.2.1-4_amd64.deb
kchart_2.2.1-4_amd64.deb
  to main/k/koffice/kchart_2.2.1-4_amd64.deb
kexi_2.2.1-4_amd64.deb
  to main/k/koffice/kexi_2.2.1-4_amd64.deb
kformula_2.2.1-4_amd64.deb
  to main/k/koffice/kformula_2.2.1-4_amd64.deb
koffice-data_2.2.1-4_all.deb
  to main/k/koffice/koffice-data_2.2.1-4_all.deb
koffice-dbg_2.2.1-4_amd64.deb
  to main/k/koffice/koffice-dbg_2.2.1-4_amd64.deb
koffice-dev_2.2.1-4_amd64.deb
  to main/k/koffice/koffice-dev_2.2.1-4_amd64.deb
koffice-doc-html_2.2.1-4_all.deb
  to main/k/koffice/koffice-doc-html_2.2.1-4_all.deb
koffice-libs_2.2.1-4_amd64.deb
  to main/k/koffice/koffice-libs_2.2.1-4_amd64.deb
koffice_2.2.1-4.debian.tar.gz
  to main/k/koffice/koffice_2.2.1-4.debian.tar.gz
koffice_2.2.1-4.dsc
  to main/k/koffice/koffice_2.2.1-4.dsc
koffice_2.2.1-4_all.deb
  to main/k/koffice/koffice_2.2.1-4_all.deb
kplato_2.2.1-4_amd64.deb
  to main/k/koffice/kplato_2.2.1-4_amd64.deb
kpresenter_2.2.1-4_amd64.deb
  to main/k/koffice/kpresenter_2.2.1-4_amd64.deb
krita-data_2.2.1-4_all.deb
  to main/k/koffice/krita-data_2.2.1-4_all.deb
krita_2.2.1-4_amd64.deb
  to main/k/koffice/krita_2.2.1-4_amd64.deb
kspread_2.2.1-4_amd64.deb
  to main/k/koffice/kspread_2.2.1-4_amd64.deb
kthesaurus_2.2.1-4_amd64.deb
  to main/k/koffice/kthesaurus_2.2.1-4_amd64.deb
kword-data_2.2.1-4_all.deb
  to main/k/koffice/kword-data_2.2.1-4_all.deb
kword_2.2.1-4_amd64.deb
  to main/k/koffice/kword_2.2.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 604...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Debian Qt/KDE Maintainers  (supplier of updated 
koffice 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---

Bug#604457: linux-image-2.6.26-2-xen-686: Raid10 exporting LV to xen results in error "can't convert block across chunks or bigger than 64k"

2010-11-28 Thread Neil Brown
On Mon, 29 Nov 2010 00:08:47 + Ben Hutchings  wrote:

> > 
> > if (q->merge_bvec_fn && !ti->type->merge)
> > limits->max_segments = 1;
> > 
> > (the test on ->type->merge is important and applies to 2.6.26 as well).
> 
> Why is it not necessary to set seg_boundary_mask to PAGE_CACHE_SIZE - 1,
> as for md devices?
> 

Sorry.  It is necessary of course.  I guess I was being a bit hasty and
forgetting all the details.

 if (q->merge_bvec_fn && !ti->type->merge) {
  limits->max_segments = 1;   /* Make sure only one segment in each bio */
  limits->seg_boundary_mask = PAGE_CACHE_SIZE-1; /* make sure that
segment is in just one page */
 }

NeilBrown



signature.asc
Description: PGP signature


Bug#604457: linux-image-2.6.26-2-xen-686: Raid10 exporting LV to xen results in error "can't convert block across chunks or bigger than 64k"

2010-11-28 Thread Ben Hutchings
On Mon, 2010-11-29 at 09:37 +1100, Neil Brown wrote:
> On Sun, 28 Nov 2010 04:18:25 + Ben Hutchings  wrote:
> 
> > On Sun, 2010-11-28 at 08:28 +1100, Neil Brown wrote:
> > >  The fix I would recommend for 2.6.26 is to add
> > > 
> > >if (q->merge_bvec_fn)
> > >rs->max_phys_segments = 1;
> > > 
> > > to dm_set_device_limits.  Though the redhat one is probably adequate.
> > > 
> > > If you really need an upstream fix, you will need to chase upstream to 
> > > apply
> > > one :-(
> > 
> > I won't do that myself - as you can see, I don't really understand the
> > issue fully.  Is that fix also valid (modulo renaming of
> > max_phys_segments) for later versions?
> > 
> 
> Yes.
> For current mainline it would look like replacing
> 
> 
>   if (q->merge_bvec_fn && !ti->type->merge)
>   limits->max_sectors =
>   min_not_zero(limits->max_sectors,
>(unsigned int) (PAGE_SIZE >> 9));
> 
> with
> 
>   if (q->merge_bvec_fn && !ti->type->merge)
>   limits->max_segments = 1;
> 
> (the test on ->type->merge is important and applies to 2.6.26 as well).

Why is it not necessary to set seg_boundary_mask to PAGE_CACHE_SIZE - 1,
as for md devices?

Ben.

-- 
Ben Hutchings, Debian Developer and kernel team member



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


Bug#604712: qemu-user-static: binfmts/qemu-x86_64 breaks debootstrap

2010-11-28 Thread Vagrant Cascadian
On Sun, Nov 28, 2010 at 02:11:43AM -0800, Vagrant Cascadian wrote:
> On Fri, Nov 26, 2010 at 03:14:19PM -0800, Vagrant Cascadian wrote:
> > considering that the x86_64 emulation doesn't really work with 
> > qemu-user-static
> > on i386 yet, it may be best to disble that... 
> 
> the previous patch wasn't quite complete, as it left it enabled when upgrading
> from the old version. the following patch should fix this, by having the
> update-binfmt remove all the possible targets (the postinst handles supported
> ones). the following patch seems to address this, although spits out extra
> noise on targets that aren't present:

this patch also addresses those issues too:

diff --git a/debian/qemu-user-static.postinst b/debian/qemu-user-static.postinst
index 86fb450..951be8d 100644
--- a/debian/qemu-user-static.postinst
+++ b/debian/qemu-user-static.postinst
@@ -4,7 +4,14 @@ BINFMT_TARGETS= # list of architectures is autogenerated from 
debian/rules
 
 if [ configure = "$1" ] && [ -x /usr/sbin/update-binfmts ]; then
for target in $BINFMT_TARGETS ; do
-   update-binfmts --import qemu-$target
+   if [ -f /var/lib/binfmts/qemu-$target ]; then
+   # remove format, in case the current version no longer 
supports it.
+   update-binfmts --package qemu-user-static --remove 
qemu-$target /usr/bin/qemu-$target-static
+   fi
+   if [ -f /usr/share/binfmts/qemu-$target ]; then
+   # install currently supported format.
+   update-binfmts --import qemu-$target
+   fi
done
 fi
 
diff --git a/debian/qemu-user-static.prerm b/debian/qemu-user-static.prerm
index 7e4863b..d21fbfc 100644
--- a/debian/qemu-user-static.prerm
+++ b/debian/qemu-user-static.prerm
@@ -4,7 +4,9 @@ BINFMT_TARGETS= # list of architectures is autogenerated from 
debian/rules
 
 if [ "$1" = remove ] && [ -x /usr/sbin/update-binfmts ]; then
for target in $BINFMT_TARGETS ; do
-   update-binfmts --package qemu-user-static --remove qemu-$target 
/usr/bin/qemu-$target-static
+   if [ -f /var/lib/binfmts/qemu-"$target" ]; then
+   update-binfmts --package qemu-user-static --remove 
qemu-$target /usr/bin/qemu-$target-static
+   fi
done
 fi
 
diff --git a/debian/rules b/debian/rules
index cc906c9..3c9137e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -42,7 +42,10 @@ ifneq (,$(findstring $(DEB_HOST_ARCH), arm armel))
 BINFMT_TARGETS=$(filter-out arm, $(ALL_BINFMT_TARGETS))
 endif
 ifeq ($(DEB_HOST_ARCH),i386)
-BINFMT_TARGETS=$(filter-out i386, $(ALL_BINFMT_TARGETS))
+# Drop support for emulating amd64 on i386, as it is broken and including it
+# interferes with environments capable of running amd64 natively.
+# http://bugs.debian.org/604712
+BINFMT_TARGETS=$(filter-out i386 x86_64, $(ALL_BINFMT_TARGETS))
 endif
 ifeq ($(DEB_HOST_ARCH),powerpc)
 BINFMT_TARGETS=$(filter-out ppc, $(ALL_BINFMT_TARGETS))
@@ -162,7 +165,7 @@ ifeq ($(DEB_HOST_ARCH_OS),linux)
done
 
# binfmt support
-   sed -i -e 's/^BINFMT_TARGETS=.*/BINFMT_TARGETS=\"$(BINFMT_TARGETS)\"/g' 
\
+   sed -i -e 
's/^BINFMT_TARGETS=.*/BINFMT_TARGETS=\"$(ALL_BINFMT_TARGETS)\"/g' \
$(CURDIR)/debian/qemu-user-static.prerm \
$(CURDIR)/debian/qemu-user-static.postinst
 

live well,
  vagrant



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



Bug#604457: linux-image-2.6.26-2-xen-686: Raid10 exporting LV to xen results in error "can't convert block across chunks or bigger than 64k"

2010-11-28 Thread Neil Brown
On Sun, 28 Nov 2010 04:18:25 + Ben Hutchings  wrote:

> On Sun, 2010-11-28 at 08:28 +1100, Neil Brown wrote:
> >  The fix I would recommend for 2.6.26 is to add
> > 
> >if (q->merge_bvec_fn)
> >rs->max_phys_segments = 1;
> > 
> > to dm_set_device_limits.  Though the redhat one is probably adequate.
> > 
> > If you really need an upstream fix, you will need to chase upstream to apply
> > one :-(
> 
> I won't do that myself - as you can see, I don't really understand the
> issue fully.  Is that fix also valid (modulo renaming of
> max_phys_segments) for later versions?
> 

Yes.
For current mainline it would look like replacing


if (q->merge_bvec_fn && !ti->type->merge)
limits->max_sectors =
min_not_zero(limits->max_sectors,
 (unsigned int) (PAGE_SIZE >> 9));

with

if (q->merge_bvec_fn && !ti->type->merge)
limits->max_segments = 1;

(the test on ->type->merge is important and applies to 2.6.26 as well).

NeilBrown



signature.asc
Description: PGP signature


Processed: emacsen-common: diff for NMU version 1.4.19+nmu1

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 604164 + pending
Bug #604164 [emacsen-common] dpkg-reconfigure error
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
604164: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604164
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#604164: emacsen-common: diff for NMU version 1.4.19+nmu1

2010-11-28 Thread Mehdi Dogguy
tags 604164 + pending
thanks

Dear maintainer,

I've prepared an NMU for emacsen-common (versioned as 1.4.19+nmu1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
Mehdi Dogguy
diff -Nru emacsen-common-1.4.19/debian/changelog emacsen-common-1.4.19+nmu1/debian/changelog
--- emacsen-common-1.4.19/debian/changelog	2009-05-18 00:42:24.0 +0200
+++ emacsen-common-1.4.19+nmu1/debian/changelog	2010-11-28 23:08:26.0 +0100
@@ -1,3 +1,11 @@
+emacsen-common (1.4.19+nmu1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * Don't call install-info in the postinst (Closes: #604164). Setting
+urgency to high due to RC bug fix.
+
+ -- Mehdi Dogguy   Sun, 28 Nov 2010 23:04:54 +0100
+
 emacsen-common (1.4.19) unstable; urgency=low
 
   * Move the sample package install/remove scripts from
diff -Nru emacsen-common-1.4.19/debian/postinst emacsen-common-1.4.19+nmu1/debian/postinst
--- emacsen-common-1.4.19/debian/postinst	2009-02-13 07:18:08.0 +0100
+++ emacsen-common-1.4.19+nmu1/debian/postinst	2010-11-28 23:08:57.0 +0100
@@ -39,7 +39,4 @@
 
 /usr/lib/emacsen-common/emacs-package-install emacsen-common
 
-# Clean up dead emacs info entry...
-install-info --remove --quiet emacs
-
 exit 0


Bug#601694: WWW::Curl 4.15 uploaded

2010-11-28 Thread Jonathan Nieder
Salvatore Bonaccorso wrote:

> I just uploaded new version of libwww-curl-perl 4.15-1. Could you
> please try if the problem is solved for you as, when the new package
> enters the archive?

Yes, it works now.

Eugene, if you don't plan to add a temporary versioned dependency to
help the Ubuntu people :) (and other derivatives), please feel free to
close the bug.

Thanks, Bálint, James, and Salvatore.
Jonathan



-- 
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#605236: FTBFS on GNU/kFreeBSD

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 605236 important
Bug #605236 [fprobe] FTBFS on GNU/kFreeBSD
Severity set to 'important' from 'serious'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605236: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605236
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#605236: FTBFS on GNU/kFreeBSD

2010-11-28 Thread Mehdi Dogguy
severity 605236 important
thanks

On 11/28/2010 12:58 PM, Guillaume Delacour wrote:
> 
> Severity: serious
> 

I don't think that this should have an RC severity. fprobe is currently
uncompiled on kfreebsd-*.

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/



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



Bug#605218: apt-get dist-upgrade fails to install ia32-libs since version 20101117

2010-11-28 Thread Adam D. Barratt
On Sun, 2010-11-28 at 22:45 +0100, Julien Cristau wrote:
> On Sun, Nov 28, 2010 at 22:16:26 +0100, Luc Castermans wrote:
> 
> > Hello,
> > 
> > As Francesco replied, I removed ia32-libs-workaround-499043
> > and now also the problem is gone.
> > 
> Where did this ia32-libs-workaround-499043 package come from?  As far as
> I can tell, nowhere near the debian archive...

It looks to be a hack for making ia32-libs and flash play nicely
together in lenny - see
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=499043#92

Regards,

Adam




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



Bug#602546: libopensc2 package contains unversioned .so files

2010-11-28 Thread Simon McVittie
On Fri, 05 Nov 2010 at 21:13:14 +0200, Kalev Lember wrote:
> The unversioned files in libopensc2 package will eventually conflict with
> libopensc3 package when upstream releases a new version of opensc. According 
> to
> upstream's release schedule this should happen very soon: There is already a
> -rc1 out which bumped soname.

It looks as though the dlopen()able plugins themselves depend on libopensc2
and friends, so anything that dlopen()s one of those potentially wouldn't be
compatible with libopensc3 anyway (different ABI). Do processes that load
those plugins automatically have to use some of libopensc2's ABI in order
to be useful, or are libopensc2/libopensc3 just an implementation detail?

(Sorry if I'm asking questions whose answers are obvious to an opensc user -
I'm doing drive-by QA trying to get squeeze released, and I don't know
anything specific about opensc.)

> I would suggest a split with the following scheme:
> opensc-tools:
>   /usr/bin/*
> libopensc:
>   /usr/lib/*.2*
> opensc-pkcs11:
>   /usr/lib/*pkcs11*.so,

One good alternative would be to put the plugins in a directory whose name
reflects the SONAME - perhaps /usr/lib/opensc-2/opensc-pkcs11.so or something.
They could either go in their own binary package or alongside the libraries,
whichever's more appropriate from the point of view of dependencies.

(An example in one of my packages: telepathy-mission-control's plugin loader
is in a library libmission-control-plugins.so.0, on which every plugin depends.
The plugins go in /usr/lib/mission-control-plugins.0/mcp-whatever.so.)

> "If your package contains files whose names do not change with each change in
> the library shared object version, you must not put them in the shared library
> package. Otherwise, several versions of the shared library cannot be installed
> at the same time without filename clashes, making upgrades and transitions
> unnecessarily difficult."

If their names haven't changed in the release candidate you mention, now would
be the time to fix that upstream before the final release - it's best if
things like this are done correctly upstream, rather than being patched by
distributions (with the potential for, say, Debian's and Fedora's patched
versions being incompatible).

This is certainly an important bug, but I'm not sure that it's release-critical
for squeeze, as long as everything's done correctly in the version that follows
the ABI break (i.e. no unversioned files in the library package).

Regards,
Simon
Debian QA



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



Bug#605146: marked as done (hald does not start if /var/cache/hald does not exist)

2010-11-28 Thread Andreas Henriksson
> hald will regenerate the *files*, so closing

Uhm.. did "everything is a file" stop being valid or what are you saying?
Are you confusing "regular file" with "file"?

-- 
Andreas Henriksson



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



Bug#601694: marked as done (All WWW::Curl::Share::CURL_LOCK_* constants are causing "Undefined subroutine" errors)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 21:47:08 +
with message-id 
and subject line Bug#601694: fixed in libwww-curl-perl 4.15-1
has caused the Debian Bug report #601694,
regarding All WWW::Curl::Share::CURL_LOCK_* constants are causing "Undefined 
subroutine" errors
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.)


-- 
601694: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601694
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libwww-curl-perl
Version: 4.14-1
Severity: important

A simple test script demonstrates the problem.

$ cat test.pl
#!/usr/bin/perl
use WWW::Curl::Share;
printf "%s\n", CURL_LOCK_DATA_DNS;

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

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
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 libwww-curl-perl depends on:
ii  libc6 2.11.2-6   Embedded GNU C Library: Shared lib
ii  libcurl3-gnutls   7.21.2-1   Multi-protocol file transfer libra
ii  perl  5.10.1-15  Larry Wall's Practical Extraction
ii  perl-base [perlapi-5.10.1]5.10.1-15  minimal Perl system

libwww-curl-perl recommends no packages.

Versions of packages libwww-curl-perl suggests:
pn  libcurl4-gnutls-dev(no description available)

-- no debconf information


-- 
James
GPG Key: 1024D/61326D40 2003-09-02 James Vega 


--- End Message ---
--- Begin Message ---
Source: libwww-curl-perl
Source-Version: 4.15-1

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

libwww-curl-perl_4.15-1.debian.tar.gz
  to main/libw/libwww-curl-perl/libwww-curl-perl_4.15-1.debian.tar.gz
libwww-curl-perl_4.15-1.dsc
  to main/libw/libwww-curl-perl/libwww-curl-perl_4.15-1.dsc
libwww-curl-perl_4.15-1_amd64.deb
  to main/libw/libwww-curl-perl/libwww-curl-perl_4.15-1_amd64.deb
libwww-curl-perl_4.15.orig.tar.gz
  to main/libw/libwww-curl-perl/libwww-curl-perl_4.15.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 601...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Salvatore Bonaccorso  (supplier of updated libwww-curl-perl 
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: SHA256

Format: 1.8
Date: Sun, 28 Nov 2010 22:20:35 +0100
Source: libwww-curl-perl
Binary: libwww-curl-perl
Architecture: source amd64
Version: 4.15-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: Salvatore Bonaccorso 
Description: 
 libwww-curl-perl - Perl bindings to libcurl
Closes: 601694
Changes: 
 libwww-curl-perl (4.15-1) unstable; urgency=low
 .
   [ Ansgar Burchardt ]
   * Update my email address.
 .
   [ Salvatore Bonaccorso ]
   * New upstream release
 - Refactored constant handling and added thorough testing for
   it. (Closes: #601694).
Checksums-Sha1: 
 b8b766840e02cc2933efffde2497ce0c1836255d 2318 libwww-curl-perl_4.15-1.dsc
 1f169b2fd55bbb1783d5fdc86644206b51678d4c 53741 
libwww-curl-perl_4.15.orig.tar.gz
 89c4cda55b32728b32f6f1f3de0f380660364d9d 12535 
libwww-curl-perl_4.15-1.debian.tar.gz
 866a9e75513ec3906b1a9954beadb9a4a61fe44b 66740 
libwww-curl-perl_4.15-1_amd64.deb
Checksums-Sha256: 
 f6b49fbffe7f60517366e610fe97b76da23c97f171d9fc08577315def5e71519 2318 
libwww-curl-perl_4.15-1.dsc
 3ef40494537a1ce7f848f3b524f5690cf47db458c0bb662e15c4642dc13c5fa1 53741 
libwww-curl-perl_4.15.orig.tar.gz
 cf43466809be718ec069638cc804cd2c90b78f17d95c5355120516ff0915baab 12535 
libwww-curl-perl_4.15-1.debian.tar.gz
 6fa893baf6c40e327d046940f402b9f96e21580da53668e7447a055240131c46 66740 
libwww-curl-perl_4.15-1_amd64.deb
Files: 
 3654190c6b041fb1c41fef42a1ee629c 2318 perl optional libwww-curl-perl_4.15-1.dsc
 31c0b8c7e5e2d26bcc8213d702186d5f 53741 perl optional 
libwww-curl-perl_4.15.orig.tar.gz
 bf2832ecb449c8cfb6d81762df89b160 12535 perl optional 
libwww-curl-perl_4.15-1.debian.tar.gz
 38095ec13ab8ec5d5023f51fb8449a1f 66740 perl optional 
libwww-curl-perl_4.15-1_amd64.deb

-BEGIN PGP SIGNATUR

Bug#605218: apt-get dist-upgrade fails to install ia32-libs since version 20101117

2010-11-28 Thread Julien Cristau
On Sun, Nov 28, 2010 at 22:16:26 +0100, Luc Castermans wrote:

> Hello,
> 
> As Francesco replied, I removed ia32-libs-workaround-499043
> and now also the problem is gone.
> 
Where did this ia32-libs-workaround-499043 package come from?  As far as
I can tell, nowhere near the debian archive...

Cheers,
Julien


signature.asc
Description: Digital signature


Bug#601711: WWW::Curl 4.15 uploaded

2010-11-28 Thread Salvatore Bonaccorso
Hi

I just uploaded new version of libwww-curl-perl 4.15-1. Could you
please try if the problem is solved for you as, when the new package
enters the archive?

Bests
Salvatore


signature.asc
Description: Digital signature


Bug#605218: apt-get dist-upgrade fails to install ia32-libs since version 20101117

2010-11-28 Thread Luc Castermans

Hello,

As Francesco replied, I removed ia32-libs-workaround-499043
and now also the problem is gone.

Maybe you could fix a dependency ?

Thanks,


--

Luc Castermans
e-mail: luc at castermans . org
Visit my site at http://www.castermans.org
Free (as in Freedom) Office suite at http://nl.openoffice.org



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



Processed: Bug in libwww-curl-perl fixed in revision 65374

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 601694 + pending
Bug #601694 [libwww-curl-perl] All WWW::Curl::Share::CURL_LOCK_* constants are 
causing "Undefined subroutine" errors
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601694: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601694
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#601977: cyrus-sasl2-heimdal-dbg: file conflict during upgrade from lenny

2010-11-28 Thread Roberto C . Sánchez
On Sun, Oct 31, 2010 at 04:11:07PM -0400, Roberto C. Sánchez wrote:
> > 
> I'd be interested to know if anyone has a recommendation on how to
> handle this.  The two packages in question are -dbg packages that are
> created by dh_strip, excerpted from debian/rules below:
> 
> dh_strip -s -psasl2-bin -plibsasl2-2 -plibsasl2-modules 
> -plibsasl2-modules-ldap -plibsasl2-modules-otp -plibsasl2-modules-sql 
> -plibsasl2-modules-gssapi-mit -plibsasl2-dev 
> -Nlibsasl2-modules-gssapi-heimdal --dbg-package=cyrus-sasl2-dbg
> dh_strip -s -plibsasl2-modules-gssapi-heimdal -Nsasl2-bin -Nlibsasl2-2 
> -Nlibsasl2-modules -Nlibsasl2-modules-ldap -Nlibsasl2-modules-otp 
> -Nlibsasl2-modules-sql -Nlibsasl2-modules-gssapi-mit -Nlibsasl2-dev 
> --dbg-package=cyrus-sasl2-heimdal-dbg
> 
> Both packages need to be able to be installed together, so my question
> centers around whehter it is OK to put a diversion in place so that
> cyrus-sasl2-heimdal-dbg diverts the file.  What does everyone think?
> 
So, it appears that there are some other possibilities, thanks to a
posting by Luca Capello [0].  The first possibility is trivial, but is
not as "correct."  The second is more "correct" but a larger diff.
Given that this must go into Lenny, what opinion or preference does the
release team have on the matter?

Regards,

-Roberto

[0] http://bugs.debian.org/610977

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Bug#601694: Bug in libwww-curl-perl fixed in revision 65374

2010-11-28 Thread pkg-perl-maintainers
tag 601694 + pending
thanks

Some bugs are closed in revision 65374
by Salvatore Bonaccorso (carnil)

Commit message:

Refactored constant handling and added thorough testing for
it. (Closes: #601694). 



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



Bug#605315: mgltools-utpackages: should this package be removed?

2010-11-28 Thread Simon McVittie
Package: mgltools-utpackages
Version: 1.5.4.cvs.20090603-1
Severity: serious
Justification: RC-buggy, low popcon, non-free
User: debian...@lists.debian.org
Usertags: proposed-removal

mgltools-utpackages seems like a possible candidate for removal from Debian:

* RC-buggy (ships files in /build or /home or whatever) in the versions in
  both squeeze and sid
* low popcon (12 installs, no votes)
* non-free

If you want to keep this package around in Debian, please just close this bug,
and do an upload to fix the issues in it.

If you don't think it's worth keeping, please send the following commands
to cont...@bugs.debian.org, replacing nn with this bug's number:

severity nn normal
reassign nn ftp.debian.org
retitle nn RM:  -- RoM; 
thanks 

For more information, see
http://wiki.debian.org/ftpmaster_Removals
http://ftp-master.debian.org/removals.txt

Regards,
smcv


signature.asc
Description: Digital signature


Bug#603141: postgresql-8.4 and lenny upgrades (was Re: Bug#603141: dbi-link: fails to install due to incorrect dependencies in init.d LSB header)

2010-11-28 Thread Luca Capello
Hi Holger!

On Sun, 28 Nov 2010 14:55:46 +0100, Holger Levsen wrote:
> On Sonntag, 28. November 2010, Luca Capello wrote:
> > I could not find this version anymore, not in the postgresql-8.4's
> > debian/changelog nor in snapshots.d.o, where did it come from?
> 
> it's there: http://snapshot.debian.org/package/postgresql-8.4/8.4.4-1/

Yeah, now that you told me I checked that page and found it, it seems
I still need to understand how snapshot.d.o works :-)

Thx, bye,
Gismo / Luca



signature.asc
Description: Digital signature


Processed: Re: Processed: chef: remove from squeeze because of solr (#602697)? (was Re: Bug#602697: chef-solr depends on solr)

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 605277 chef
Bug #605277 [solr] chef: remove from squeeze because of solr (#602697)?
Bug reassigned from package 'solr' to 'chef'.
Bug No longer marked as found in versions 0.8.16-4.1.
> found 605277 0.8.16-4.1
Bug #605277 [chef] chef: remove from squeeze because of solr (#602697)?
Bug Marked as found in versions chef/0.8.16-4.1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605277: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605277
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#603513: [Pkg-javascript-devel] Bug#603513: yui: multiple xss issues in included swf files

2010-11-28 Thread Jaldhar H. Vyas

On Mon, 29 Nov 2010, Thomas Goirand wrote:


Take care if you do that: there's some reverse dependencies involved!
I'd rather that you just remove the swf files from the package, and
create a non-free package for them. There's many cases were you will
need yui, but not the attached swf files!!!



Good point.  There are only four components that include swf files.  It 
should be possible to seperate them out into a non-free package.  I'll 
bear that in mind if there is no way to keep it all in main.


--
Jaldhar H. Vyas 
La Salle Debain - http://www.braincells.com/debian/



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



Bug#605218: apt-get dist-upgrade fails to install ia32-libs since version 20101117

2010-11-28 Thread Francesco
Package: ia32-libs
Severity: normal

  I had the same issue using squeeze amd64 and wine; manually upgrading the
package resulted in error and a further investigation took me to uninstall 
package ia32-libs-workaround-499043 and then reinstall ia32-libs and related 
packages updated

-- System Information:
Debian Release: squeeze/sid
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Bug#591974: marked as done (libmojomojo-perl: does not build swf files from source)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 19:02:07 +
with message-id 
and subject line Bug#591974: fixed in libmojomojo-perl 1.01+dfsg-1
has caused the Debian Bug report #591974,
regarding libmojomojo-perl: does not build swf files from source
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.)


-- 
591974: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591974
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libmojomojo-perl
Version: 1.01-1
Severity: serious 

Hi,

libmojomojo-perl ships multiple swf files but it doesn't build the from source. 
In fact, it appears that the source code is not included at all.

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


--- End Message ---
--- Begin Message ---
Source: libmojomojo-perl
Source-Version: 1.01+dfsg-1

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

libmojomojo-perl_1.01+dfsg-1.debian.tar.gz
  to main/libm/libmojomojo-perl/libmojomojo-perl_1.01+dfsg-1.debian.tar.gz
libmojomojo-perl_1.01+dfsg-1.dsc
  to main/libm/libmojomojo-perl/libmojomojo-perl_1.01+dfsg-1.dsc
libmojomojo-perl_1.01+dfsg-1_all.deb
  to main/libm/libmojomojo-perl/libmojomojo-perl_1.01+dfsg-1_all.deb
libmojomojo-perl_1.01+dfsg.orig.tar.gz
  to main/libm/libmojomojo-perl/libmojomojo-perl_1.01+dfsg.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 591...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
David Bremner  (supplier of updated libmojomojo-perl 
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: Sun, 28 Nov 2010 14:03:48 -0400
Source: libmojomojo-perl
Binary: libmojomojo-perl
Architecture: source all
Version: 1.01+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group 
Changed-By: David Bremner 
Description: 
 libmojomojo-perl - wiki- and blog-inspired content management system
Closes: 591974
Changes: 
 libmojomojo-perl (1.01+dfsg-1) unstable; urgency=low
 .
   [ Jonathan Yu ]
   * Repack package to remove non-free swfupload files
 (Closes: #591974)
   * Add future swfupload package to Suggests
Checksums-Sha1: 
 488f150ce205ae51f7a9ce64e968fc49c1ab7e9d 3071 libmojomojo-perl_1.01+dfsg-1.dsc
 9cb2e99e5f82b0e30581ee73bdd73d848c01bdab 1226258 
libmojomojo-perl_1.01+dfsg.orig.tar.gz
 a8093387534fd754c58dd0ca32a7cd384e44f437 6634 
libmojomojo-perl_1.01+dfsg-1.debian.tar.gz
 152b13c502ed8f34082f8a7bd2412faca4f76fc7 1087232 
libmojomojo-perl_1.01+dfsg-1_all.deb
Checksums-Sha256: 
 4274cc954f8b7da2ee495334ac33e8d2435e8ea3506b002141eb112c4019989a 3071 
libmojomojo-perl_1.01+dfsg-1.dsc
 f1d796619bdc6a23f548c14457fb76213715315622209590bdc55c8f3e184eed 1226258 
libmojomojo-perl_1.01+dfsg.orig.tar.gz
 55fb1e21df3607b04215036e1a409adc7ebc4ca1a2898bc1969e539376c72466 6634 
libmojomojo-perl_1.01+dfsg-1.debian.tar.gz
 931d204c95062722d43dc2b614802cf509bf6d58df5c94f3a5863042b3a1b464 1087232 
libmojomojo-perl_1.01+dfsg-1_all.deb
Files: 
 1802b5a2900469711323838b4cf8d88d 3071 perl optional 
libmojomojo-perl_1.01+dfsg-1.dsc
 51f4ce0f88ed58e4348d60b237f82a4b 1226258 perl optional 
libmojomojo-perl_1.01+dfsg.orig.tar.gz
 1f54fea0561b054feb22d4f41677fafd 6634 perl optional 
libmojomojo-perl_1.01+dfsg-1.debian.tar.gz
 576f0e4ef00f1a2e7a09012bc653a1a2 1087232 perl optional 
libmojomojo-perl_1.01+dfsg-1_all.deb

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

iJwEAQECAAYFAkzyov4ACgkQTiiN/0Um85nmXgP9HhFF21s6mq1lcs2rjEVBLMvt
wUr+92GY+rb0vWsQz757hDFK0wkNS2qcUK6VIzdW8MJ6A18GnKBiidd/6G5b1u6l
YCVD3h8i9ejV0UEKF9UjfblXN2OH9Xv8hGghfiIGzmq1/+srw/ZWmcfVSGTiZWuy
De9IKDx86vXdU21z/+g=
=79tm
-END PGP SIGNATURE-


--- End Message ---


Bug#605296: olsrd 0.5.6.r7 doesn't work with kernels >= 2.6.31

2010-11-28 Thread Holger Levsen
package: olsrd
severity: serious
version: 0.5.6-r7-1
x-debbugs-cc: olsr-...@lists.olsr.org

Hi,

the mail below mentions (at least) two issues, this Debian bug shall only be 
about olsrd not working with the squeeze kernel.

On Sonntag, 28. November 2010, Henning Rogge wrote:
> > Is 0.5.6.r7 so broken that it's not usable?
>
> Yes and no...
>
> it contains a number of bugs, including one memory leak somewhere with MID
> messages and some problems in the routing setup of linux.
>
> The memory leak was always there, but it got worse enough with 0.5.6-r7 to
> be noticed (it got worse by accelerating the detection of interface
> settings of your neighbors).
>
> The problem is that the linux kernel changed the semantics of a few
> important (important for OLSRd) proc-file entries in kernel 2.6.31. This
> bug was fixed with 0.5.6-r8 I think. Without this fix OLSRd will not run
> right on this kernels. We had to build in a direct check of the kernel
> version to fix it.
>
> See http://lkml.org/lkml/2009/9/14/256


cheers,
Holger


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


Bug#605292: Acknowledgement (mono-gac: lenny to squeeze upgraded system problems with monobasic system installation)

2010-11-28 Thread Jochen


additional it is also impossible to delete the packages which has failed 
by the installation


-- snap --

aptitude purge libgdiplus

Die folgenden Pakete werden ENTFERNT:
  libgdiplus{p}
0 Pakete aktualisiert, 0 zusätzlich installiert, 1 werden entfernt und 0 
nicht aktualisiert.
Muss 0 B/1.098 kB an Archiven herunterladen. Nach dem Entpacken werden 
471 kB frei werden.

Die folgenden Pakete haben verletzte Abhängigkeiten:
  libglade2.0-cil: Hängt ab von: libmono-corlib2.0-cil (>= 1.2.2.1) but 
it is not going to be installed.
  libglib2.0-cil: Hängt ab von: libmono-corlib2.0-cil (>= 1.2.2.1) but 
it is not going to be installed.
  Hängt ab von: libmono-system2.0-cil (>= 2.4.3) but it 
is not going to be installed.
  libgtk2.0-cil: Hängt ab von: libmono-cairo2.0-cil (>= 2.4) but it is 
not going to be installed.
 Hängt ab von: libmono-corlib2.0-cil (>= 1.2.2.1) but 
it is not going to be installed.
 Hängt ab von: libmono-system2.0-cil (>= 2.4.3) but it 
is not going to be installed.

Die folgenden Aktionen werden diese Abhängigkeiten auflösen:

 Entferne die folgenden Pakete:
1) libglade2.0-cil
2) libglib2.0-cil
3) libgtk2.0-cil



Diese Lösung akzeptieren? [Y/n/q/?]
Die folgenden Pakete werden ENTFERNT:
  libgdiplus{p} libglade2.0-cil{a} libglib2.0-cil{a} libgtk2.0-cil{a}
0 Pakete aktualisiert, 0 zusätzlich installiert, 4 werden entfernt und 0 
nicht aktualisiert.
Muss 0 B an Archiven herunterladen. Nach dem Entpacken werden 3.789 kB 
frei werden.

Wollen Sie fortsetzen? [Y/n/?]
(Lese Datenbank ... 297079 Dateien und Verzeichnisse sind derzeit 
installiert.)

Entferne libglade2.0-cil ...
rm: Entfernen von 
„/usr/share/cli-common/packages.d/policy.2.8.glade-sharp.installcligac“ 
nicht möglich: Datei oder Verzeichnis nicht gefunden

dpkg: Fehler beim Bearbeiten von libglade2.0-cil (--remove):
 Unterprozess installiertes post-removal-Skript gab den Fehlerwert 1 zurück
configured to not write apport reports
  Entferne libgtk2.0-cil ...
rm: Entfernen von 
„/usr/share/cli-common/packages.d/policy.2.6.gtk-dotnet.installcligac“ 
nicht möglich: Datei oder Verzeichnis nicht gefunden

dpkg: Fehler beim Bearbeiten von libgtk2.0-cil (--remove):
 Unterprozess installiertes post-removal-Skript gab den Fehlerwert 1 zurück
configured to not write apport reports
  Entferne libglib2.0-cil ...
rm: Entfernen von 
„/usr/share/cli-common/packages.d/policy.2.6.glib-sharp.installcligac“ 
nicht möglich: Datei oder Verzeichnis nicht gefunden

dpkg: Fehler beim Bearbeiten von libglib2.0-cil (--remove):
 Unterprozess installiertes post-removal-Skript gab den Fehlerwert 1 zurück
configured to not write apport reports
  Fehler traten auf beim Bearbeiten 
von:

 libglade2.0-cil
 libgtk2.0-cil
 libglib2.0-cil
E: Sub-process /usr/bin/dpkg returned an error code (1)
Ein Paket konnte nicht installiert werden. Versuche zu lösen:






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



Bug#598135: Forwarding articles to moderators is broken

2010-11-28 Thread Steve M. Robbins
Hi Marco,

On Mon, Nov 15, 2010 at 11:11:49AM +0100, Marco d'Itri wrote:
> On Nov 14, "Steve M. Robbins"  wrote:
> 
> > Marco: are you actively working on these issues?  If not, I can prepare an 
> > NMU.
> I fear that it's too late now to get in squeeze everything I wanted,
> my plan was to make a backport and hope for the next point release.

I agree that it's late to do more than fix critical bugs for squeeze.
Fortunately, there is just this one critical bug and Julien has
provided the two small-ish changesets to fix it.

Perhaps we could target this fix for squeeze release and your larger
backport for a later time?

Regards,
-Steve


signature.asc
Description: Digital signature


Bug#602222: bacula meta-package not installable with recommended packages

2010-11-28 Thread Luca Capello
Hi there!

Cc:ing all the people involved with this bug (hi, Gregor!).

On Tue, 02 Nov 2010 18:08:13 +0100, Olivier BONHOMME wrote:
> When trying to install the bacula meta-package, the aptitude command raises 
> the following error : 
>
> The following packages have unmet dependencies:
>   bacula-common-sqlite3: Conflicts: bacula-common-mysql but 5.0.2-2 is to be 
> installed.
>   bacula-common-mysql: Conflicts: bacula-common-sqlite3 but 5.0.2-2 is to be 
> installed.
>
> It seems that the conflict is provided by the virtual package bacula-sd-tools 
> (Which is a recommended one) because
> this package tries to install bacula-common-mysql.
>
> If we install bacula without the recommended packages, the installation is 
> possible.

Strange enough, when using the --with-recommends option aptitude should
resolve them as --without-recommends (which works as expected).

> It is not impossible to install bacula with apt-get anymore. The following 
> error is raised : 
>
> The following packages have unmet dependencies:
>  bacula : Depends: bacula-server but it is not going to be installed

If you do not install recommends, it is OK, exactly as with aptitude.

On Thu, 25 Nov 2010 14:35:40 +0100, Hideki Yamane wrote:
>  Clint Byrum  wrote:
>> Would it fix the problem if bacula-sd had
>>
>> Recommends: mt-st, bacula-sd-sqlite3 (>= 5.0.2-2) | bacula-sd-tools
>
>  I wrote small patch as below, and works fine with piuparts.

I think that a better (and common with other situations,
i.e. mail-transport-agent) fix is the one suggested by Clint: one single
real package recommended.  This is a maintainer's choice, which as Clint
suggested, it was already made for the bacula-server package, i.e. the
sqlite3 backend.

John, two questions:

- have you any preference on the solution?

- do you mind if Hideki uploads its NMU?  This is a serious bug that
  affects squeeze as well...

> +bacula (5.0.2-2.1) unstable; urgency=low
^^^
This should be at least medium, given that the bug is severity serious,
but I could not find the documentation about that, sorry:

  Developer's Reference, § 5.13.2. Updates from unstable
  
http://www.debian.org/doc/manuals/developers-reference/pkgs.html#testing-unstable

>  Depends: ${shlibs:Depends}, mtx, python, lsb-base (>= 3.2-13), 
> ${misc:Depends}
> -Recommends: mt-st, bacula-sd-tools
> +Recommends: bacula-sd-sqlite3 (= ${binary:Version}) | bacula-sd-mysql (= 
> ${binary:Version}) |
> +bacula-sd-pgsql (= ${binary:Version}) | bacula-sd-tools, mt-st

What is the reason for a strict versioned Recommends?  The bacula-server
package has it in the form:

  bacula-sd-sqlite3 (>= ${source:Version}) | bacula-sd-tools

John, any comments or suggestions?

Thx, bye,
Gismo / Luca


signature.asc
Description: Digital signature


Bug#604231: chef-solr: installation fails with debconf noninteractive frontend

2010-11-28 Thread Luca Capello
retitle 604231 chef-solr: installation fails, unable to connect to node, 
nodedown
thanks

Hi there!

On Sun, 21 Nov 2010 11:14:05 +0100, Lucas Nussbaum wrote:
> While testing the installation of all packages in unstable, I ran
> into the following problem:
>
> Setting up chef-solr (0.8.16-4.1) ...
> Error: unable to connect to node 'rab...@parapluie-8': nodedown
> diagnostics:
> - nodes and their ports on parapluie-8: [{rabbitmqctl24301,59110}]
> - current node: 'rabbitmqctl24...@parapluie-8'
> - current node home dir: /var/lib/rabbitmq
> - current node cookie hash: fJiJth+YsTHJfj5ZQWvUSQ==
> Creating vhost "/chef" ...
> Error: unable to connect to node 'rab...@parapluie-8': nodedown
> diagnostics:
> - nodes and their ports on parapluie-8: [{rabbitmqctl24349,46122}]
> - current node: 'rabbitmqctl24...@parapluie-8'
> - current node home dir: /var/lib/rabbitmq
> - current node cookie hash: fJiJth+YsTHJfj5ZQWvUSQ==
> dpkg: error processing chef-solr (--configure):
>  subprocess installed post-installation script returned error exit status 2
> configured to not write apport reports
>   Errors were encountered while 
> processing:
>  chef-solr
> E: Sub-process /usr/bin/dpkg returned an error code (1)
>
> The full build log is available from:
>  http://people.debian.org/~lucas/logs/2010/11/20/chef-solr.log
>
> It is reproducible by installing your package in a clean chroot, using
> the debconf Noninteractive frontend, and priority: critical.

The problem is not the debconf frontend used, but the fact that the node
is down, given that it is reproducible on a cowbuilder chroot even with
an interactive debconf frontend:
=
(sid)r...@gismo:/# unset DEBIAN_FRONTEND
(sid)r...@gismo:/# apt-get install chef-solr
[...]
 Ĵ Configuring chef-solr 
�Ŀ
 � Please choose a password for the default user (named "chef") in the AMQP 
server queue, under the default RabbitMQ vhost  �
 � (also "/chef").  
�
 �  
�
 � RabbitMQ's rabbitmqctl program, which will be used to set this password, 
cannot read input from a file. Instead it will  �
 � be passed as a command-line argument, so the password should not include any 
shell meta-characters that could cause  �
 � errors, such as "!". 
�
 �  
�
 � Password for the AMQP user "chef":   
�
 �  
�
 � 

 �
 �  
�
 �  
�
 �  
�
 

Error: unable to connect to node rab...@gismo: nodedown
diagnostics:
- nodes and their ports on gismo: [{rabbitmqctl25863,47783}]
- current node: rabbitmqctl25...@gismo
- current node home dir: /var/lib/rabbitmq
- current node cookie hash: x1rh/KXp98TJcRmgh8eJTA==
Creating vhost "/chef" ...
Error: unable to connect to node rab...@gismo: nodedown
diagnostics:
- nodes and their ports on gismo: [{rabbitmqctl25892,45949}]
- current node: rabbitmqctl25...@gismo
- current node home dir: /var/lib/rabbitmq
- current node cookie hash: x1rh/KXp98TJcRmgh8eJTA==
dpkg: error processing chef-solr (--configure):
 subprocess installed post-installation script returned error exit status 2
configured to not write apport reports
  Setting up default-jre-headless 
(1:1.6-40) ...
Setting up ca-certificates-java (20100412) ...
creating /etc/ssl/certs/java/cacerts...
done.
Errors were encountered while processing:
 chef-solr
E: Sub-process /usr/bin/dpkg returned an error code (1)
(sid)r...@gismo:/#
=

Thx, bye,
Gismo / Luca


signature.asc
Description: Digital signature


Processed: Re: Bug#604231: chef-solr: installation fails with debconf noninteractive frontend

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 604231 chef-solr: installation fails, unable to connect to node, 
> nodedown
Bug #604231 [chef-solr] chef-solr: installation fails with debconf 
noninteractive frontend
Changed Bug title to 'chef-solr: installation fails, unable to connect to node, 
nodedown' from 'chef-solr: installation fails with debconf noninteractive 
frontend'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
604231: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604231
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#603513: [Pkg-javascript-devel] Bug#603513: yui: multiple xss issues in included swf files

2010-11-28 Thread Thomas Goirand
On 11/28/2010 02:26 PM, Jaldhar H. Vyas wrote:
> On Wed, 24 Nov 2010, Moritz Muehlenhoff wrote:
> 
>> Jaldhar, what's the status of this security bug?
>>
> 
> Sorry for the delayed response, it is the Thanksgiving holiday in the US.
> 
> I worked on the package today.  The problem is the that some of the
> affected swf files might not be buildable with tools available in
> Debian. I've put out a call for help but the package may need to be
> removed if no solution can be found.

Take care if you do that: there's some reverse dependencies involved!
I'd rather that you just remove the swf files from the package, and
create a non-free package for them. There's many cases were you will
need yui, but not the attached swf files!!!

Thomas Goirand (zigo)



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



Bug#605280: libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory

2010-11-28 Thread Micha Lenk
# Let's make the version tracking happy:
notfound 605280 1.1-6
thanks

Hi Michael,

Am 28.11.2010 18:35, schrieb Michael Biebl:
>> Am 28.11.2010 18:20, schrieb Michael Biebl:
 libnl fails to build from source on kfreebsd-amd64 and kfreebsd-i386 right
 on the beginning:
>>>
>>> That's ok, libnl is Linux-only and has never been built on kbsd.
>>
>> Then, as kfreebsd-i386 and kfreebsd-amd64 are now officially supported
>> architectures, you should correctly exclude them from the architecture
>> list in debian/control.
> 
> No, there is no point in doing that

Just curious: Why?
(No need to discuss this here, so please respond privately).

> I filed a bug against buildd.debian.org, so libnl get's blacklisted for
> non-linux plattforms.

Okay, that's just fine with me too. So, let's just keep this bug closed
now. Sorry for the noise...

Just for the records this is the related bug against buildd.debian.org:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605285

Regards,
Micha



-- 
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#605280: libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Let's make the version tracking happy:
> notfound 605280 1.1-6
Bug #605280 {Done: Michael Biebl } [libnl] libnl: FTBFS on 
kfreebsd-*: linux/types.h: No such file or directory
There is no source info for the package 'libnl' at version '1.1-6' with 
architecture ''
Unable to make a source version for version '1.1-6'
Bug No longer marked as found in versions 1.1-6.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605280: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605280
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#605280: marked as done (libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 18:40:06 +0100
with message-id <4cf293f6.10...@debian.org>
and subject line Re: Bug#605280: libnl: FTBFS on kfreebsd-*: linux/types.h: No 
such file or directory
has caused the Debian Bug report #605280,
regarding libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory
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.)


-- 
605280: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605280
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libnl
Version: 1.1-6
Severity: serious
Justification: FTBFS

libnl fails to build from source on kfreebsd-amd64 and kfreebsd-i386 right
on the beginning:

 8>< 

/usr/bin/make  -C .  
make[1]: Entering directory
/`/build/buildd-libnl_1.1-6-kfreebsd-amd64-FeumLq/libnl-1.1'
Entering lib
  DEP netfilter/nfnl.c
In file included from netfilter/nfnl.c:65:
.../include/netlink-local.h:38:25: error: linux/types.h: No such file or 
directory

 8>< 

Full build log see here:
https://buildd.debian.org/fetch.cgi?pkg=libnl&arch=kfreebsd-amd64&ver=1.1-6&stamp=1290008026&file=log&as=raw
https://buildd.debian.org/fetch.cgi?pkg=libnl&arch=kfreebsd-i386&ver=1.1-6&stamp=1289966562&file=log&as=raw

Regards,
Micha

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

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
On 28.11.2010 18:32, Micha Lenk wrote:
> reopen 605280
> thanks
> 
> Hi Michael,
> 
> Am 28.11.2010 18:20, schrieb Michael Biebl:
>>> libnl fails to build from source on kfreebsd-amd64 and kfreebsd-i386 right
>>> on the beginning:
>>
>> That's ok, libnl is Linux-only and has never been built on kbsd.
> 
> Then, as kfreebsd-i386 and kfreebsd-amd64 are now officially supported
> architectures, you should correctly exclude them from the architecture
> list in debian/control.

closing

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature
--- End Message ---


Processed: Re: Bug#605280: libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 605280
Bug #605280 {Done: Michael Biebl } [libnl] libnl: FTBFS on 
kfreebsd-*: linux/types.h: No such file or directory
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605280: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605280
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#605280: marked as done (libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 18:20:26 +0100
with message-id <4cf28f5a.2000...@debian.org>
and subject line Re: Bug#605280: libnl: FTBFS on kfreebsd-*: linux/types.h: No 
such file or directory
has caused the Debian Bug report #605280,
regarding libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory
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.)


-- 
605280: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605280
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libnl
Version: 1.1-6
Severity: serious
Justification: FTBFS

libnl fails to build from source on kfreebsd-amd64 and kfreebsd-i386 right
on the beginning:

 8>< 

/usr/bin/make  -C .  
make[1]: Entering directory
/`/build/buildd-libnl_1.1-6-kfreebsd-amd64-FeumLq/libnl-1.1'
Entering lib
  DEP netfilter/nfnl.c
In file included from netfilter/nfnl.c:65:
.../include/netlink-local.h:38:25: error: linux/types.h: No such file or 
directory

 8>< 

Full build log see here:
https://buildd.debian.org/fetch.cgi?pkg=libnl&arch=kfreebsd-amd64&ver=1.1-6&stamp=1290008026&file=log&as=raw
https://buildd.debian.org/fetch.cgi?pkg=libnl&arch=kfreebsd-i386&ver=1.1-6&stamp=1289966562&file=log&as=raw

Regards,
Micha

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

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
On 28.11.2010 17:51, Micha Lenk wrote:
> Package: libnl
> Version: 1.1-6
> Severity: serious
> Justification: FTBFS
> 
> libnl fails to build from source on kfreebsd-amd64 and kfreebsd-i386 right
> on the beginning:
> 

That's ok, libnl is Linux-only and has never been built on kbsd.


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature
--- End Message ---


Bug#566072: proposed patch

2010-11-28 Thread Serafeim Zanikolas
On Sun, Nov 28, 2010 at 09:48:30AM -0700, LaMont Jones wrote:
> On Sun, Nov 28, 2010 at 03:41:37PM +0100, Serafeim Zanikolas wrote:
> > Please consider the attached patch that displays a warning using debconf. 
> > Note
> > that I've added the warning in the postinst script (as opposed to preinst, 
> > as
> > suggested in msg #54 of this bug report) so that it suffices to Depend on
> > debconf (as opposed to pre-depend).
> 
> I've been trying to avoid _ANY_ debconf dependency in util-linux.  I'll ponder
> this an get back with you on Monday (US time).

I sympathise with that goal. How about dropping the dependency all together
(or using recommends or even suggests instead), and invoking debconf only when
it happens to be installed already (ie. by checking the existence of
/usr/share/debconf/confmodule)? For the most part, the warning is relevant to
desktop upgrades, in which case debconf is almost certain to be already
installed.

Also, an addition to the release notes might be useful.

-S



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



Processed: tagging 591209

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 591209 + fixed pending
Bug #591209 [src:witty] witty: does not build swf file from source
Added tag(s) fixed and pending.
> tags 605209 + fixed pending
Bug #605209 [release.debian.org] RM: witty/3.1.2-2
Added tag(s) fixed and pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605209: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605209
591209: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=591209
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#605280: libnl: FTBFS on kfreebsd-*: linux/types.h: No such file or directory

2010-11-28 Thread Micha Lenk
Package: libnl
Version: 1.1-6
Severity: serious
Justification: FTBFS

libnl fails to build from source on kfreebsd-amd64 and kfreebsd-i386 right
on the beginning:

 8>< 

/usr/bin/make  -C .  
make[1]: Entering directory
/`/build/buildd-libnl_1.1-6-kfreebsd-amd64-FeumLq/libnl-1.1'
Entering lib
  DEP netfilter/nfnl.c
In file included from netfilter/nfnl.c:65:
.../include/netlink-local.h:38:25: error: linux/types.h: No such file or 
directory

 8>< 

Full build log see here:
https://buildd.debian.org/fetch.cgi?pkg=libnl&arch=kfreebsd-amd64&ver=1.1-6&stamp=1290008026&file=log&as=raw
https://buildd.debian.org/fetch.cgi?pkg=libnl&arch=kfreebsd-i386&ver=1.1-6&stamp=1289966562&file=log&as=raw

Regards,
Micha

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

Kernel: kFreeBSD 8.1-1-amd64
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#566072: proposed patch

2010-11-28 Thread LaMont Jones
On Sun, Nov 28, 2010 at 03:41:37PM +0100, Serafeim Zanikolas wrote:
> Please consider the attached patch that displays a warning using debconf. Note
> that I've added the warning in the postinst script (as opposed to preinst, as
> suggested in msg #54 of this bug report) so that it suffices to Depend on
> debconf (as opposed to pre-depend).

I've been trying to avoid _ANY_ debconf dependency in util-linux.  I'll ponder
this an get back with you on Monday (US time).

> I'll consider a delayed NMU unless I hear from you real soon now.

Please wait.

lamont



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



Processed: chef: remove from squeeze because of solr (#602697)? (was Re: Bug#602697: chef-solr depends on solr)

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 602697 -1
Bug#602697: should not be included in squeeze
Bug 602697 cloned as bug 605277.

> retitle -1 chef: remove from squeeze because of solr (#602697)?
Bug #605277 [solr] should not be included in squeeze
Changed Bug title to 'chef: remove from squeeze because of solr (#602697)?' 
from 'should not be included in squeeze'
> found -1 0.8.16-4.1
Bug #605277 [solr] chef: remove from squeeze because of solr (#602697)?
There is no source info for the package 'solr' at version '0.8.16-4.1' with 
architecture ''
Unable to make a source version for version '0.8.16-4.1'
Bug Marked as found in versions 0.8.16-4.1.
> block 602697 by -1
Bug #602697 [solr] should not be included in squeeze
Was not blocked by any bugs.
Added blocking bug(s) of 602697: 605277
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
602697: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602697
605277: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605277
-1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=-1
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#602697: chef: remove from squeeze because of solr (#602697)? (was Re: Bug#602697: chef-solr depends on solr)

2010-11-28 Thread Luca Capello
clone 602697 -1
retitle -1 chef: remove from squeeze because of solr (#602697)?
found -1 0.8.16-4.1
block 602697 by -1
thanks

Hi there!

Cc:ing all the people that have interacted with this bug.

On Sun, 07 Nov 2010 14:52:24 +0100, Thomas Koch wrote:
> Adam D. Barratt:
>> On Sun, 2010-11-07 at 11:38 +0100, Thomas Koch wrote:
>> > I've written a mail ("Remove Solr from Squeeze?") on 2010/10/12 to
>> > debian-java and the package's maintainer Jan-Pascal van Best and
>> > proposed the removal of solr from Squeeze, mainly because:
>> > 
>> > - - it's already outdated a year by now (see bug #602696 )
>> > - - it doesn't even include all contribs (see bug #602695 )
>> > - - the package has accumulated too many bugs
>> > - - there doesn't seem to be enough (wo)man power to maintain the package
>> > 
>> >   right now on a standard that would make it fit for Debian _stable_
>> > 
>> > So until nothing else happens, please don't include solr in Debian
>> > squeeze.
>> 
>> The package has a reverse-dependency in testing already, so can't be
>> removed right now:
>> 
>> Checking reverse dependencies...
>> # Broken Depends:
>> chef: chef-solr
>
> to the maintainer of Chef in Debian,
>
> this is just to inform you, that there is a recommendation from me to remove 
> the solr package from Debian. However since chef-solr does depend on solr, 
> you'd affected by this removal.

Some hints about the chef package in Debian:

- Debian has (6-month-old) 0.8.16-4.1, while upstream is at 0.9.12
- popcon show 41 installation (2 recent) for the chef binary package and
  2 (0 recent) for the chef-solr binary package
- there is an RC bug for chef-solr (#604231, installation fails because
  of nodedown)

Thus, I think the best thing would be to remove chef from squeeze (new
bugs created), so then we can remove solr as well.

>> It's also in lenny (albeit in contrib) so if it were removed then a
>> migration path for those users to a replacement would be good.

Given that chef-solr was not in lenny, the above applies to solr only.
However, I should say that I do not know at all a good migration path.

Thx, bye,
Gismo / Luca


signature.asc
Description: Digital signature


Bug#601161: NMU for synce-serial (Re: Bug#601161: Some links, and some thoughts)

2010-11-28 Thread Luca Capello
tags 601161 + patch
thanks

Hi there!

On Tue, 16 Nov 2010 04:00:55 +0100, Asheesh Laroia wrote:
> I would say the most reasonable next step is to make synce-serial not
> build on GNU/kFreeBSD since ppp isn't available there. The same should
> probably be done to the ppp package.
[...]
> CC:ing Anarcat in case he has related thoughts.

On Tue, 16 Nov 2010 04:18:52 +0100, The Anarcat wrote:
> So I am not sure what opinion you are seeking for me, but I think it's
> safe to say that 'ppp' is not quite available right now in kFreeBSD.

Given that synce-serial Depends: on ppp, we should only build it on
those architectures that have the binary ppp package.

Here the patch for the NMU uploaded to DELAYED/2 (upgrade from lenny
tested):

--8<---cut here---start->8---
diff -Nru synce-serial-0.11/debian/changelog synce-serial-0.11/debian/changelog
--- synce-serial-0.11/debian/changelog  2010-10-19 07:31:42.0 +0200
+++ synce-serial-0.11/debian/changelog  2010-11-28 17:22:22.0 +0100
@@ -1,3 +1,12 @@
+synce-serial (0.11-5.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control:
++ build it only on those architectures that have the dependent
+  ppp binary package (Closes: #601161).
+
+ -- Luca Capello   Sun, 28 Nov 2010 17:22:22 +0100
+
 synce-serial (0.11-5.1) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nru synce-serial-0.11/debian/control synce-serial-0.11/debian/control
--- synce-serial-0.11/debian/control2010-05-13 11:38:14.0 +0200
+++ synce-serial-0.11/debian/control2010-11-28 16:25:01.0 +0100
@@ -9,7 +9,7 @@
 Vcs-Git: git://git.jonnylamb.com/git/packaging/synce-serial.git
 
 Package: synce-serial
-Architecture: any
+Architecture: alpha amd64 armel armhf avr32 hppa i386 ia64 m68k mips mipsel 
powerpc powerpcspe s390 sh4 sparc sparc64 
 Depends: ${shlibs:Depends}, ${misc:Depends}, ppp (>= 2.4.2+20040202)
 Description: SynCE connection manipulation scripts
  This scripts are used to manipulate (start/stop/configure) a connection
--8<---cut here---end--->8---

Thx, bye,
Gismo / Luca


signature.asc
Description: Digital signature


Processed: Bug#601161: NMU for synce-serial (Re: Bug#601161: Some links, and some thoughts)

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 601161 + patch
Bug #601161 [synce-serial] synce-serial/kfreebsd-* unsatisfiable Depends: ppp 
(>= 2.4.2+20040202)
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
601161: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=601161
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#591209: #591209: witty: fix available from mentors

2010-11-28 Thread Pau Garcia i Quiles
tags 591209 + fixed pending
tags 605209 + fixed pending

A patched 3.1.2-3 is available from mentors, waiting for my sponsor
(Vincent Bernat) to upload it. Please, do not remove witty from
squeeze.

-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)



-- 
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 603661 is grave

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 603661 grave
Bug #603661 {Done: Modestas Vainius } [kopete] icq plugin 
stopped to work - cannot login to icq
Severity set to 'grave' from 'important'

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603661: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603661
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#566072: proposed patch

2010-11-28 Thread Serafeim Zanikolas
Here's a slightly revised patch (the one before didn't actually call
dh_installdebconf)

-S
diff -Nurp orig/util-linux-2.17.2//debian/changelog 
util-linux-2.17.2//debian/changelog
--- orig/util-linux-2.17.2//debian/changelog2010-11-28 14:52:49.0 
+0100
+++ util-linux-2.17.2//debian/changelog 2010-11-28 17:16:55.0 +0100
@@ -1,3 +1,16 @@
+util-linux (2.17.2-3.4) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * debian/util-linux.{postinst,templates}: warn user about possible
+fsck failure upon boot, when fstab has entries with "noauto" and a
+non-zero pass number (Closes: #566072)
+  * build-dep on po-debconf, and depend on debconf
+  * Create debian/po/{POTFILES.in,templates.pot}
+  * debian/rules: call debconf-updatepo in the clean target, and
+dh_installdebconf in binary-indep
+
+ -- Serafeim Zanikolas   Sun, 28 Nov 2010 14:07:07 +0100
+
 util-linux (2.17.2-3.3) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nurp orig/util-linux-2.17.2//debian/control 
util-linux-2.17.2//debian/control
--- orig/util-linux-2.17.2//debian/control  2010-11-28 14:52:49.0 
+0100
+++ util-linux-2.17.2//debian/control   2010-11-28 15:17:39.0 +0100
@@ -1,5 +1,5 @@
 Source: util-linux
-Build-Depends: libncurses5-dev, libslang2-dev (>=2.0.4), gettext, zlib1g-dev, 
dpkg-dev (>=1.13.12), libselinux1-dev [!kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386], debhelper (>=5), lsb-release, pkg-config
+Build-Depends: libncurses5-dev, libslang2-dev (>=2.0.4), gettext, zlib1g-dev, 
dpkg-dev (>=1.13.12), libselinux1-dev [!kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386], debhelper (>=5), lsb-release, pkg-config, po-debconf
 Section: base
 Priority: required
 Uploaders: Scott James Remnant 
@@ -13,7 +13,7 @@ Architecture: any
 Section: utils
 Priority: required
 Essential: yes
-Depends: lsb-base (>= 3.0-6), tzdata (>=2006c-2), initscripts, dpkg (>= 
1.15.4) | install-info, ${misc:Depends}
+Depends: lsb-base (>= 3.0-6), tzdata (>=2006c-2), initscripts, dpkg (>= 
1.15.4) | install-info, debconf, ${misc:Depends}
 Pre-Depends: ${shlibs:Depends}
 Suggests: util-linux-locales, kbd | console-tools, dosfstools
 Replaces: schedutils, miscutils, setterm, fdisk, linux32, sparc-utils, 
e2fsprogs, ${util-linux:Conflicts}
diff -Nurp orig/util-linux-2.17.2//debian/po/POTFILES.in 
util-linux-2.17.2//debian/po/POTFILES.in
--- orig/util-linux-2.17.2//debian/po/POTFILES.in   1970-01-01 
01:00:00.0 +0100
+++ util-linux-2.17.2//debian/po/POTFILES.in2010-11-28 17:18:42.0 
+0100
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] util-linux.templates
diff -Nurp orig/util-linux-2.17.2//debian/po/templates.pot 
util-linux-2.17.2//debian/po/templates.pot
--- orig/util-linux-2.17.2//debian/po/templates.pot 1970-01-01 
01:00:00.0 +0100
+++ util-linux-2.17.2//debian/po/templates.pot  2010-11-28 17:19:28.0 
+0100
@@ -0,0 +1,53 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: util-li...@packages.debian.org\n"
+"POT-Creation-Date: 2010-11-28 17:19+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../util-linux.templates:1001
+msgid "Filesystem entries with noauto and non-zero pass number"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../util-linux.templates:1001
+msgid ""
+"It appears that /etc/fstab contains at least one entry that is marked as "
+"\"noauto\" with a non-zero pass number (meaning that the file system should "
+"not be automatically mounted upon boot, yet should be checked by fsck, the "
+"file system check utility)."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../util-linux.templates:1001
+msgid ""
+"From this release onwards, fsck will fail for file systems that have a non-"
+"zero pass number and are not available (eg. because they are unplugged) at "
+"the time fsck runs. This will cause the system to enter file system repair "
+"mode during boot."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../util-linux.templates:1001
+msgid ""
+"To avoid this problem, please adjust such fstab entries for removable "
+"devices, by either setting their pass number to zero, or adding the \"nofail"
+"\" option. For more details, please see mount(8)."
+msgstr ""
diff -Nurp orig/util-linux-2.17.2//debian/rules util-linux-2.17.2//debian/rules
--- orig/util-linux-2.17.2//debian/rules2010-11-28 14:52:49.0 
+0100
+++ util-linux-2.17.2//debian/rules 2010-11-28 16:53:38.0 +0100
@@ -58,6 +58,7 @@ clean-preunpatch:
 clean: clean-preunpatch
find . -name \*.o -exec rm {} \;
rm -f build-stamp

Bug#564425: marked as done (qemubuilder --create fails to start qemu - umount problem)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 15:47:07 +
with message-id 
and subject line Bug#564425: fixed in cowdancer 0.62+nmu1
has caused the Debian Bug report #564425,
regarding qemubuilder --create fails to start qemu - umount problem
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.)


-- 
564425: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=564425
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: qemubuilder
Version: 0.60
Severity: important

During create and before initially starting qemu qemubuilder tries to umount 
the 
qemu..dev device [workblockdevicepath in the source].
Mount seems to not know the mounted device and responds accordingly that it 
isn't mounted.
Manually umounting the .dev doesn't work either but umount the mount point 
works.

As qemubuilder can't umount the .dev it's still mounted when qemu is started,
resulting in the following output:


 -> Doing arch-specific /dev population
mkdir chroot-/dev: File exists
/var/cache/pbuilder/build//qemu.30200/dev/console: File exists
  forking: umount /var/cache/pbuilder/build//qemu.30200
  forking: mke2fs -q -F -j -m1 -O sparse_super 
/var/cache/pbuilder/build//qemu.30200.dev
  forking: tune2fs -c 0 -i 0 /var/cache/pbuilder/build//qemu.30200.dev
tune2fs 1.41.9 (22-Aug-2009)
Setze die maximale Mount-Anzahl auf -1
Setze das Intervall zwischen Checks auf 0 Sekunden
  forking: mount -o loop /var/cache/pbuilder/build//qemu.30200.dev 
/var/cache/pbuilder/build//qemu.30200
  forking: umount /var/cache/pbuilder/build//qemu.30200.dev
umount: /var/cache/pbuilder/build//qemu.30200.dev: not mounted
  forking qemu: qemu-system-arm -nographic -M versatilepb -m 256 -kernel 
/var/cache/pbuilder/armel/vmlinuz-2.6.26-versatile-qemu -hda 
/var/cache/pber/armel/base.qemu -hdb /var/cache/pbuilder/build//qemu.30200.dev 
-append root=/dev/sda quiet init=/pbuilder-run console=ttyAMA0 -serial stdio
Uncompressing 
Linux.
 done, booting the kernel.
[0.00] CLCD: unknown LCD panel ID 0x1000, using VGA

 -> qemu-pbuilder first-stage
/pbuilder-run: line 11: /var/cache/pbuilder/pbuilder-mnt/pbuilder-run: No such 
file or directory
[0.00] Kernel panic - not syncing: Attempted to kill init!


I replaced workblockdevicepath with pc->buildplace in the qemubuilder code
to use the mount point to umount. With this fix qemubuilder works again.

The package mount is 2.16.2-0.

Thanks,
Heiko

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

Kernel: Linux 2.6.31-1-686 (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/bash

Versions of packages qemubuilder depends on:
ii  debootstrap   1.0.20 Bootstrap a basic Debian system
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  pbuilder  0.194  personal package builder for Debia
ii  qemu  0.10.5-1   fast processor emulator

qemubuilder recommends no packages.

qemubuilder suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: cowdancer
Source-Version: 0.62+nmu1

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

cowbuilder_0.62+nmu1_amd64.deb
  to main/c/cowdancer/cowbuilder_0.62+nmu1_amd64.deb
cowdancer_0.62+nmu1.dsc
  to main/c/cowdancer/cowdancer_0.62+nmu1.dsc
cowdancer_0.62+nmu1.tar.gz
  to main/c/cowdancer/cowdancer_0.62+nmu1.tar.gz
cowdancer_0.62+nmu1_amd64.deb
  to main/c/cowdancer/cowdancer_0.62+nmu1_amd64.deb
qemubuilder_0.62+nmu1_amd64.deb
  to main/c/cowdancer/qemubuilder_0.62+nmu1_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 564...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Alexander Reichle-Schmehl  (supplier of updated cowdancer 
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: SHA256

Format: 1.8
Date: Fri, 26 Nov 2010 16:16:26 +0100
Source: cowdancer
Binary: cowdancer co

Bug#590418: marked as done (libxr: FTBFS: make[2]: *** [doxy] Segmentation fault)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 15:47:17 +
with message-id 
and subject line Bug#590418: fixed in libxr 1.0-2
has caused the Debian Bug report #590418,
regarding libxr: FTBFS: make[2]: *** [doxy] Segmentation fault
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.)


-- 
590418: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=590418
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: libxr
Version: 1.0-1
Severity: serious
Tags: squeeze sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20100725 qa-ftbfs
Justification: FTBFS on amd64

Hi,

During a rebuild of all packages in sid, your package failed to build on
amd64.

Relevant part:
> make[2]: Entering directory 
> `/build/user-libxr_1.0-1-amd64-8pPxnk/libxr-1.0/docs'
> SRCDIR=.. OUTDIR=. \
>   PROJECT="libxr" VERSION="1.0" \
> doxygen ./Doxyfile
> warning: Tag `USE_WINDOWS_ENCODING' at line 11 of file ./Doxyfile has become 
> obsolete.
> To avoid this warning please update your configuration file using "doxygen -u"
> warning: Tag `DETAILS_AT_TOP' at line 23 of file ./Doxyfile has become 
> obsolete.
> To avoid this warning please update your configuration file using "doxygen -u"
> warning: Tag `MAX_DOT_GRAPH_WIDTH' at line 217 of file ./Doxyfile has become 
> obsolete.
> To avoid this warning please update your configuration file using "doxygen -u"
> warning: Tag `MAX_DOT_GRAPH_HEIGHT' at line 218 of file ./Doxyfile has become 
> obsolete.
> To avoid this warning please update your configuration file using "doxygen -u"
> warning: source ../tests/zblok is not a readable file or directory... 
> skipping.
> make[2]: *** [doxy] Segmentation fault
> make[2]: Leaving directory 
> `/build/user-libxr_1.0-1-amd64-8pPxnk/libxr-1.0/docs'
> make[1]: *** [override_dh_installdocs] Error 2

The full build log is available from:
   http://people.debian.org/~lucas/logs/2010/07/25/libxr_1.0-1_lsid64.buildlog

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot.  Internet was not
accessible from the build systems.

-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: libxr
Source-Version: 1.0-2

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

libxr1-dbg_1.0-2_amd64.deb
  to main/libx/libxr/libxr1-dbg_1.0-2_amd64.deb
libxr1-dev_1.0-2_amd64.deb
  to main/libx/libxr/libxr1-dev_1.0-2_amd64.deb
libxr1_1.0-2_amd64.deb
  to main/libx/libxr/libxr1_1.0-2_amd64.deb
libxr_1.0-2.debian.tar.gz
  to main/libx/libxr/libxr_1.0-2.debian.tar.gz
libxr_1.0-2.dsc
  to main/libx/libxr/libxr_1.0-2.dsc



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 590...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Fabien Boucher  (supplier of updated libxr 
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: Thu, 18 Nov 2010 23:19:51 +0100
Source: libxr
Binary: libxr1 libxr1-dev libxr1-dbg
Architecture: source amd64
Version: 1.0-2
Distribution: unstable
Urgency: low
Maintainer: Fabien Boucher 
Changed-By: Fabien Boucher 
Description: 
 libxr1 - SSL-capable XML-RPC implementation - shared libraries
 libxr1-dbg - SSL-capable XML-RPC implementation - debug symbols
 libxr1-dev - SSL-capable XML-RPC implementation - development files
Closes: 590418
Changes: 
 libxr (1.0-2) unstable; urgency=low
 .
   * Fix "FTBFS: make[2]: *** [doxy] Segmentation fault"
 Patch upstream Doxyfile to do not build man pages.
 (Closes: #590418)
Checksums-Sha1: 
 a37d10bfdeab975d7991f258dee4a688348966c8 1130 libxr_1.0-2.dsc
 0bb5c1d0a94cb063f00a9cd70bc5c76147a74bb0 3247 libxr_1.0-2.debian.tar.gz
 0bca11e09696c973df15845621262e235c16d8ff 44270 libxr1_1.0-2_amd64.deb
 ef7bc3e06e1e63ff6a6caecb92ecc2ea9ab652a7 253240 libxr1-dev_1.0-2_amd64.deb
 b3e4c185ab79d36c3fb2db17c4a292d9bb3c2122 108312 libxr1-dbg_1.0-2_amd64.deb
Chec

Processed: postgresql-8.4 and lenny upgrades (was Re: Bug#603141: dbi-link: fails to install due to incorrect dependencies in init.d LSB header)

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 603141 8.4.4-1+b1
Bug #603141 {Done: Holger Levsen } [postgresql-8.4] 
upgrade from lenny fails
Bug Marked as found in versions postgresql-8.4/8.4.4-1 and reopened.
> fixed 603141 8.4.4-2
Bug #603141 [postgresql-8.4] upgrade from lenny fails
Bug Marked as fixed in versions postgresql-8.4/8.4.4-2.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
603141: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=603141
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#603141: postgresql-8.4 and lenny upgrades (was Re: Bug#603141: dbi-link: fails to install due to incorrect dependencies in init.d LSB header)

2010-11-28 Thread Luca Capello
found 603141 8.4.4-1+b1
fixed 603141 8.4.4-2
thanks

Hi there!

On Thu, 11 Nov 2010 10:31:00 +0100, Holger Levsen wrote:
> during a test with piuparts I noticed your package failed to install due to 
> incorrect dependencies in the init.d LSB header. Some debian notes are 
> available from at http://wiki.debian.org/LSBInitScripts
>
> From the attached log (scroll to the bottom...):
>
>   Setting up postgresql-8.4 (8.4.4-1+b1) ...
   ^^
I could not find this version anymore, not in the postgresql-8.4's
debian/changelog nor in snapshots.d.o, where did it come from?

Please also note that at the time you sent the email, it seems that
squeeze already has 8.4.4-2:

  http://packages.qa.debian.org/p/postgresql-8.4/news/20100730T163913Z.html

>   insserv: script postgresql-8.4: service postgresql already provided!
>   insserv: exiting now!
>   update-rc.d: error: insserv rejected the script header

This was already reported (#585890, hey, by you!), solved in 8.4.4-2 (I
added the versions to the BTS):

--8<---cut here---start->8---
postgresql-8.4 (8.4.4-2) unstable; urgency=low

  * Migrate to a common init script for all server versions, to avoid
providing the "postgresql" service in multiple packages (which causes
insserv to complain bitterly):
- Drop debian/postgresql-8.4.init.
- debian/control: Bump dependency to postgresql-common to ensure we have a
  common /etc/init.d/postgresql init script.
- debian/postgresql-8.4.preinst: Remove/rename our init script on upgrade.  
- debian/postgresql-8.4.prerm: Call stop_version on upgrade.
- debian/rules: Drop dh_installinit arguments.
- (Closes: #585890)
--8<---cut here---end--->8---

> Please keep in mind that this was a test where first the lenny version was 
> installed and then an upgraded was done to squeeze. Also this bug is probably 
> just another duplicate of #603140, if so, please reassign there. (And sorry 
> for the noise.)

And yes, I would also say this was a duplicate of #603140, fixed in
postgresql-common_112.

On Wed, 24 Nov 2010 18:30:26 +0100, Holger Levsen wrote:
> On Mittwoch, 24. November 2010, Alexander Reichle-Schmehl wrote:
>> notfound 603141 2.0.0-3
> [...]
>> I'm quite sure that this is a failse positive, and therefore mark this
>> bug as done.
>
> A false-positive for dbi-link probably, but its a real bug when upgrading 
> from 
> lenny.

I tried to reproduce your upgrade bug, but with no success, both in
piuparts or in a cowbuilder lenny chroot:
=
(lenny)r...@gismo:/# apt-get install dbi-link
(lenny)r...@gismo:/# sed -i -e 's/lenny/squeeze/g' /etc/apt/sources.list
(lenny)r...@gismo:/# apt-get update && apt-get dist-upgrade
[...]
Setting up libyaml-perl (0.71-1) ...
Setting up dbi-link (2.0.0-3) ...
(lenny)r...@gismo:/# dpkg -l postgresql\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name  Version   
+++-=-=-
un  postgresql
un  postgresql-7.4
un  postgresql-8.0
ii  postgresql-8.38.3.12-0lenny1
ii  postgresql-8.48.4.5-0squeeze1
un  postgresql-client 
ii  postgresql-client-8.3 8.3.12-0lenny1
ii  postgresql-client-8.4 8.4.5-0squeeze1
ii  postgresql-client-common  112
ii  postgresql-common 112
un  postgresql-doc-8.3
un  postgresql-doc-8.4
ii  postgresql-plperl-8.3 8.3.12-0lenny1
ii  postgresql-plperl-8.4 8.4.5-0squeeze1
(lenny)r...@gismo:/#
=

However, I would like to note that an upgrade from lenny+backports to
squeeze is not possible, given that the version lenny-backports is
higher that the one in squeeze:
=
(lenny)r...@gismo:/# echo \
 "deb http://backports.debian.org/debian-backports lenny-backports main" \
 >>/etc/apt/sources.list
(lenny)r...@gismo:/# apt-get update
[...]
(lenny)r...@gismo:/# apt-get -t lenny-backports install postgresql-8.4
[...]
(lenny)r...@gismo:/# sed -i -e 's/lenny/squeeze/g' /etc/apt/sources.list
(lenny)r...@gismo:/# apt-get update
[...]
(lenny)r...@gismo:/# apt-cache policy postgresql-8.4
(lenny)r...@gismo:/# apt-cache policy postgresql-8.4
postgresql-8.4:
  Installed: 8.4.5-2~bpo50+1
  Candidate: 8.4.5-2~bpo50+1
  Version table:
 *** 8.4.5-2~bpo50+1 0
  1 http://backports.debian.org lenny-backports/main Packages
100 /var/lib/dpkg/status
 8.4.5-0squeeze1 0
500 http://cdn.debian.net squeeze/main Packages
(lenny)r...@gismo:/#
=

So, for the current title of this bug everything is OK, while for the
upgrade from lenny+backports this is not, I will leave it to the
postgresql-8.4 maintainers ;-)

Thx, bye,
Gismo / Luca


signature.asc
Description: Digital signature


Bug#605261: mindi: Uses /usr/lib/ for varying files (constructs the whole rescue image there)

2010-11-28 Thread Didier Raboud
Package: mindi
Version: 1:2.0.4-1
Severity: serious
Justification: Policy 9.1.1 (FHS)

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi, 

This package uses /usr/lib/mindi as a temporary place for the preparation of
the rescue image, where it should use /var/lib/ instead. This is a violation
of the FHS (and makes it useless for people with /usr mounted as read-only).

Cheers, 

OdyX

- -- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (750, 'unstable'), (700, 'testing-proposed-updates'), (700, 
'testing'), (101, 'testing-proposed-updates'), (101, 'experimental'), (101, 
'unstable'), (101, 'testing')
Architecture: amd64 (x86_64)

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

Versions of packages mindi depends on:
ii  binutils  2.20.1-15  The GNU assembler, linker and bina
ii  bzip2 1.0.5-6high-quality block-sorting file co
ii  dosfstools3.0.9-1utilities for making and checking 
ii  file  5.04-5 Determines file type using "magic"
ii  gawk  1:3.1.7.dfsg-5 GNU awk, a pattern scanning and pr
ii  genisoimage   9:1.1.11-1 Creates ISO-9660 CD-ROM filesystem
pn  mindi-busybox  (no description available)
ii  module-init-tools 3.12-1 tools for managing Linux kernel mo
ii  nano  2.2.5-1small, friendly text editor inspir
ii  parted2.3-4  The GNU Parted disk partition resi
ii  syslinux  2:4.02+dfsg-7  collection of boot loaders

Versions of packages mindi recommends:
ii  cpio  2.11-5 GNU cpio -- a program to manage ar
pn  linux-image-2.6-486 | kernel-  (no description available)
pn  mdadm  (no description available)
ii  ntfsprogs 2.0.0-1+b1 tools for doing neat things in NTF

Versions of packages mindi suggests:
pn  acl(no description available)
pn  afio   (no description available)
pn  attr   (no description available)
ii  eject   2.1.5+deb1+cvs20081104-7 ejects CDs and operates CD-Changer
ii  less436-1pager program similar to more
pn  lilo   (no description available)
pn  lzop   (no description available)
pn  petris (no description available)

- -- Configuration Files:
/etc/mindi/deplist.txt [Errno 2] Aucun fichier ou dossier de ce type: 
u'/etc/mindi/deplist.txt'
/etc/mindi/proliant.files [Errno 2] Aucun fichier ou dossier de ce type: 
u'/etc/mindi/proliant.files'
/etc/mindi/udev.files [Errno 2] Aucun fichier ou dossier de ce type: 
u'/etc/mindi/udev.files'

- -- no debconf information

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

iJwEAQECAAYFAkzyb7oACgkQKA1Vt+jBwDiR8QP/ddTVxSwWCpCS2iQefbDHfOut
jNf3+j2kvKXC6bGWqiyLExJ0fic9Uhu3wa14iR7EczdqczVPEZKQEvQcxyRZ7kLv
r3QnHRAm184IuV4VImk1BaAU7HP8Ze+VeKXHUzBUc1+HWBqUElILivyvTY/V4AX7
vkCK44my7sW5NstVEN0=
=eUs7
-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



Processed: unblock 474913 with 605227

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> unblock 474913 with 605227
Bug #474913 [javascript-common] javascript-common overrides /javascript 
globally in lighttpd
Was blocked by: 605227
Removed blocking bug(s) of 474913: 605227
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
474913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474913
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#604626: marked as done (libmedc-dev and libmed-dev: error when trying to install together)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 14:48:13 +
with message-id 
and subject line Bug#604626: fixed in med-fichier 2.3.6-5
has caused the Debian Bug report #604626,
regarding libmedc-dev and libmed-dev: error when trying to install together
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.)


-- 
604626: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604626
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libmed-dev,libmedc-dev
Version: libmed-dev/2.3.6-4
Version: libmedc-dev/2.3.6-4
Severity: serious
User: trei...@debian.org
Usertags: edos-file-overwrite

Date: 2010-11-23
Architecture: amd64
Distribution: sid

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:


WARNING: The following packages cannot be authenticated!
  libgfortran3 libibverbs1 libnuma1 libtorque2 libopenmpi1.3
  libhdf5-openmpi-1.8.4 libmed1 libmed-dev libmedc1 libmedc-dev
Authentication warning overridden.
Can not write log, openpty() failed (/dev/pts not mounted?)
Selecting previously deselected package libgfortran3.
(Reading database ... 12297 files and directories currently installed.)
Unpacking libgfortran3 (from .../libgfortran3_4.4.5-8_amd64.deb) ...
Selecting previously deselected package libibverbs1.
Unpacking libibverbs1 (from .../libibverbs1_1.1.3-2_amd64.deb) ...
Selecting previously deselected package libnuma1.
Unpacking libnuma1 (from .../libnuma1_2.0.5-1_amd64.deb) ...
Selecting previously deselected package libtorque2.
Unpacking libtorque2 (from .../libtorque2_2.4.8+dfsg-9_amd64.deb) ...
Selecting previously deselected package libopenmpi1.3.
Unpacking libopenmpi1.3 (from .../libopenmpi1.3_1.4.2-4_amd64.deb) ...
Selecting previously deselected package libhdf5-openmpi-1.8.4.
Unpacking libhdf5-openmpi-1.8.4 (from 
.../libhdf5-openmpi-1.8.4_1.8.4-patch1-2_amd64.deb) ...
Selecting previously deselected package libmed1.
Unpacking libmed1 (from .../libmed1_2.3.6-4_amd64.deb) ...
Selecting previously deselected package libmed-dev.
Unpacking libmed-dev (from .../libmed-dev_2.3.6-4_amd64.deb) ...
Selecting previously deselected package libmedc1.
Unpacking libmedc1 (from .../libmedc1_2.3.6-4_amd64.deb) ...
Selecting previously deselected package libmedc-dev.
Unpacking libmedc-dev (from .../libmedc-dev_2.3.6-4_amd64.deb) ...
dpkg: error processing /var/cache/apt/archives/libmedc-dev_2.3.6-4_amd64.deb 
(--unpack):
 trying to overwrite '/usr/include/med_utils.h', which is also in package 
libmed-dev 0:2.3.6-4
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/libmedc-dev_2.3.6-4_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


This is a serious bug as it makes installation fail, and violates
sections 7.6.1 and 10.1 of the policy. An optimal solution would
consist in only one of the packages installing that file, and renaming
or removing the file in the other package. Depending on the
circumstances you might also consider Replace relations or file
diversions. If the conflicting situation cannot be resolved then, as a
last resort, the two packages have to declare a mutual
Conflict. Please take into account that Replaces, Conflicts and
diversions should only be used when packages provide different
implementations for the same functionality.

Here is a list of files that are known to be shared by both packages
(according to the Contents file for sid/amd64, which may be
slightly out of sync):

  /usr/include/MEDerreur.hxx
  /usr/include/med.h
  /usr/include/medC_win_dll.h
  /usr/include/med_proto.h
  /usr/include/med_utils.h

This bug is assigned to both packages. If you, the maintainers of
the two packages in question, have agreed on which of the packages will
resolve the problem please reassign the bug to that package. You may
also register in the BTS that the other package is affected by the bug.

-Ralf.

PS: for more information about the detection of file overwrite errors
of this kind see http://edos.debian.net/file-overwrites/.


--- End Message ---
--- Begin Message ---
Source: med-fichier
Source-Version: 2.3.6-5

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

libmed-dev_2.3.6-5_amd64.deb
  to main/m/med-fichier/libmed-dev_2.3.6-5_amd64.deb
libmed-doc_2.3.6-5_all.deb
  to main/m/med-fichier/libmed-doc_2.3.6-5_all.deb
libmed-tools_2.3.6-5_amd64.deb
  to main/m/med-fichier/libmed-tools_2.3.6-5_amd64.de

Bug#605164: marked as done (guake: Use of PYTHONPATH env var in an insecure way)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 14:47:46 +
with message-id 
and subject line Bug#605163: fixed in guake 0.4.2-3
has caused the Debian Bug report #605163,
regarding guake: Use of PYTHONPATH env var in an insecure way
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.)


-- 
605163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: guake
Version: 0.4.2-2
Severity: grave
Tags: security
User: debian-pyt...@lists.debian.org
Usertags: pythonpath

Jakub Wilk performed an analysis[1] for packages setting PYTHONPATH in
an insecure way. Those packages do something like:

PYTHONPATH=/spam/eggs:$PYTHONPATH

This is wrong, because if PYTHONPATH were originally unset or empty,
current working directory would be added to sys.path.

[1] http://lists.debian.org/debian-python/2010/11/msg00045.html

Your package turns out to have vulnerable scripts in PATH: you can
find a complete log at [2].

[2] http://people.debian.org/~morph/mbf/pythonpath.txt

Some guidelines on how to fix these bugs: in the case given above, you
can use something like

PYTHONPATH=/spam/eggs${PYTHONPATH:+:$PYTHONPATH}

(If you don't known this construct, grep for "Use Alternative Value"
in the bash/dash manpage.)

Also, in cases like

   PYTHONPATH=/usr/lib/python2.5/site-packages/:$PYTHONPATH

or

   PYTHONPATH=$PYTHONPATH:$SPAMDIR exec python $SPAMDIR/spam.py

you shouldn't need to touch PYTHONPATH at all.

Feel free to contact debian-pyt...@lists.debian.org in case of
help.


--- End Message ---
--- Begin Message ---
Source: guake
Source-Version: 0.4.2-3

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

guake_0.4.2-3.diff.gz
  to main/g/guake/guake_0.4.2-3.diff.gz
guake_0.4.2-3.dsc
  to main/g/guake/guake_0.4.2-3.dsc
guake_0.4.2-3_i386.deb
  to main/g/guake/guake_0.4.2-3_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 605...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sylvestre Ledru  (supplier of updated guake 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: Sun, 28 Nov 2010 14:57:37 +0100
Source: guake
Binary: guake
Architecture: source i386
Version: 0.4.2-3
Distribution: unstable
Urgency: high
Maintainer: Sylvestre Ledru 
Changed-By: Sylvestre Ledru 
Description: 
 guake  - A drop-down terminal for GNOME Desktop Environment
Closes: 605163
Changes: 
 guake (0.4.2-3) unstable; urgency=high
 .
   * Fix a security issue in an incorrect usage of PYTHONPATH (Closes: #605163)
Checksums-Sha1: 
 7f90840707b9019e1b19781f2b59aa027425fe5e 1270 guake_0.4.2-3.dsc
 d62f4482219ada135333bc9e287f5f7a9c2ce6e7 3544 guake_0.4.2-3.diff.gz
 fcfff49edcdf1d4551cd46ed35a5358ffa8cfeee 157200 guake_0.4.2-3_i386.deb
Checksums-Sha256: 
 a9d8aa7768a5bae607cb7035990bc3ca751c9f1897d46b6b72a3cc0552f8bc92 1270 
guake_0.4.2-3.dsc
 4af7a301191b4f7c985f7a40111286003cbc88f7b9d8e7f6c43db854ce0eae28 3544 
guake_0.4.2-3.diff.gz
 7a1df538c05019b3c56d88e8b56f239c26eda8033f9cac9f62156fd7fccf2b4c 157200 
guake_0.4.2-3_i386.deb
Files: 
 e2633be0e641c09f2ce5f180b5ecf133 1270 x11 optional guake_0.4.2-3.dsc
 edeb49336e3fc98de762d2eac482becf 3544 x11 optional guake_0.4.2-3.diff.gz
 78c55b7afe9c62ffb65cae65a653f3ae 157200 x11 optional guake_0.4.2-3_i386.deb

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

iEYEARECAAYFAkzyYzAACgkQiOXXM92JlhCPEwCfay9qoo7+AGneaH9Iwww68D0b
sm4AoKSgAjqj4a8ZDHxaDPTxBRhR8QiQ
=nsXy
-END PGP SIGNATURE-


--- End Message ---


Bug#597449: marked as done (pulseaudio over TCP not working on armel due to libasyncns0 failing)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 14:47:54 +
with message-id 
and subject line Bug#566139: fixed in libasyncns 0.3-1.1
has caused the Debian Bug report #566139,
regarding pulseaudio over TCP not working on armel due to libasyncns0 failing
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.)


-- 
566139: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566139
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libpulse0
Version: 0.9.21-3
Severity: grave

libpulse0 fails to connect to a pulseaudio sink when invoked like:

$ PULSE_SERVER=tcp:10.22.0.21 PULSE_LOG=99 paplay -v question.wav
Opening a playback stream with sample specification 's16le 2ch 44100Hz' and 
channel map 'front-left,front-right'.
Using shared memory pool with 1024 slots of size 64.0 KiB each, total size is 
64.0 MiB, maximum usable slot size is 65496
Trying to connect to 10.22.0.21...
Connection failure: Connection refused

It always fails with "Connection refused" but tcpdump reveals that there
is no connection attempt. If a hostname is used, tcpdump shows that the
hostname is successfully resolved, but it results in the same behaviour.

The machine arch is armel:
Linux bernd 2.6.32-5-orion5x #1 Fri Aug 13 06:13:20 UTC 2010 armv5tel GNU/Linux

This problem lies somewhere in the asynchronous dns resolving, because
compiling the Debian package with --disable-asyncns it works. I am not able to
confirm wether this is a armel specific bug, but with the same versions 
installed
on AMD64 it works fine.

Apart from that the error message might be wrong and is misleading.


--- End Message ---
--- Begin Message ---
Source: libasyncns
Source-Version: 0.3-1.1

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

libasyncns-dev_0.3-1.1_amd64.deb
  to main/liba/libasyncns/libasyncns-dev_0.3-1.1_amd64.deb
libasyncns0_0.3-1.1_amd64.deb
  to main/liba/libasyncns/libasyncns0_0.3-1.1_amd64.deb
libasyncns_0.3-1.1.diff.gz
  to main/liba/libasyncns/libasyncns_0.3-1.1.diff.gz
libasyncns_0.3-1.1.dsc
  to main/liba/libasyncns/libasyncns_0.3-1.1.dsc



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 566...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tanguy Ortolo  (supplier of updated libasyncns 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: SHA256

Format: 1.8
Date: Thu, 25 Nov 2010 20:55:54 +0100
Source: libasyncns
Binary: libasyncns-dev libasyncns0
Architecture: source amd64
Version: 0.3-1.1
Distribution: unstable
Urgency: low
Maintainer: CJ van den Berg 
Changed-By: Tanguy Ortolo 
Description: 
 libasyncns-dev - Asyncronous name service query library development files
 libasyncns0 - Asyncronous name service query library
Closes: 566139
Changes: 
 libasyncns (0.3-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * libasyncns/asyncns.c: Fix data alignment issue on armel, backported from
 upstream. (Closes: #566139)
Checksums-Sha1: 
 c3c832514841353fa1abb0036a364f606133e9d8 1285 libasyncns_0.3-1.1.dsc
 e639eee9c98a0904ba3329ef0d39fc2b882c1edf 2441 libasyncns_0.3-1.1.diff.gz
 402e0f2969b93a9814ac3017fcf4b64b013fc65b 14772 libasyncns-dev_0.3-1.1_amd64.deb
 893efeef2c02ec1e7030a84cc13e7e495769b6c4 13274 libasyncns0_0.3-1.1_amd64.deb
Checksums-Sha256: 
 edd924256385ca807df5ca8453c53d6268a39ac5a51469050bb9d5a07d41c54a 1285 
libasyncns_0.3-1.1.dsc
 6a50fef65b422b0b0b6ed1d3e4a35c075f4b741eaeb53044aa4f7c2a24d38ea2 2441 
libasyncns_0.3-1.1.diff.gz
 bf4abd06d43c44bae552c10bcefe99eefeb5da345fd8c9246e5be8ceef19f9f4 14772 
libasyncns-dev_0.3-1.1_amd64.deb
 52b04fa8c64ec0660e8d92abc9abd98959f64fdc202058c1e2d8dfccc6072823 13274 
libasyncns0_0.3-1.1_amd64.deb
Files: 
 a569fc6b04bcc0971c7e827102a35d13 1285 libs optional libasyncns_0.3-1.1.dsc
 7311c8a671498be5a9522159a5982b34 2441 libs optional libasyncns_0.3-1.1.diff.gz
 0023406d11eef18d91550997eeb2496d 14772 libdevel optional 
libasyncns-dev_0.3-1.1_amd64.deb
 5c2f38bbdb90f65d07174034ebd56e9a 13274 libs optional 
libasyncns0_0.3-1.1_amd64.deb

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

iQEVAwUBTPJjx00yN7tZsYcyAQiUIAf/f0kxzpZmkDKEzHnciRwwpeDHqqEmLg77
IKqbLb9gaJEFUGPgTNpRAB

Bug#566139: marked as done (libasyncns0: data alignment issue on armel causes main functionnality breakage)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 14:47:54 +
with message-id 
and subject line Bug#566139: fixed in libasyncns 0.3-1.1
has caused the Debian Bug report #566139,
regarding libasyncns0: data alignment issue on armel causes main functionnality 
breakage
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.)


-- 
566139: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566139
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libasyncns0
Version: 0.3-1
Severity: important


The version of libasyncns0 in Debian, 0.3, has data alignment issues (casts a 
uint8_t buffer to a larger data structure, gcc even warns about it) that cause 
it to break non-obviously (tries to send a 1MB datagram and fails silently) on 
armel. Affects at least telepathy-gabble (resolving Jabber server fails).

The code in the most recent upstream release (0.8) looks like it's been 
modified exactly to deal with this issue. Please update the Debian package 
accordingly (some less recent version might do as well - haven't checked which 
version first contained the fix - but AFAICT these are all bugfix releases 
anyway).

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (600, 'testing')
Architecture: armel (armv5tel)

Kernel: Linux 2.6.32-rc4-flatty-ocf-1-00019-g8b6ae29
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages libasyncns0 depends on:
ii  libc6 2.10.2-2   GNU C Library: Shared libraries

libasyncns0 recommends no packages.

libasyncns0 suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: libasyncns
Source-Version: 0.3-1.1

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

libasyncns-dev_0.3-1.1_amd64.deb
  to main/liba/libasyncns/libasyncns-dev_0.3-1.1_amd64.deb
libasyncns0_0.3-1.1_amd64.deb
  to main/liba/libasyncns/libasyncns0_0.3-1.1_amd64.deb
libasyncns_0.3-1.1.diff.gz
  to main/liba/libasyncns/libasyncns_0.3-1.1.diff.gz
libasyncns_0.3-1.1.dsc
  to main/liba/libasyncns/libasyncns_0.3-1.1.dsc



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 566...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Tanguy Ortolo  (supplier of updated libasyncns 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: SHA256

Format: 1.8
Date: Thu, 25 Nov 2010 20:55:54 +0100
Source: libasyncns
Binary: libasyncns-dev libasyncns0
Architecture: source amd64
Version: 0.3-1.1
Distribution: unstable
Urgency: low
Maintainer: CJ van den Berg 
Changed-By: Tanguy Ortolo 
Description: 
 libasyncns-dev - Asyncronous name service query library development files
 libasyncns0 - Asyncronous name service query library
Closes: 566139
Changes: 
 libasyncns (0.3-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * libasyncns/asyncns.c: Fix data alignment issue on armel, backported from
 upstream. (Closes: #566139)
Checksums-Sha1: 
 c3c832514841353fa1abb0036a364f606133e9d8 1285 libasyncns_0.3-1.1.dsc
 e639eee9c98a0904ba3329ef0d39fc2b882c1edf 2441 libasyncns_0.3-1.1.diff.gz
 402e0f2969b93a9814ac3017fcf4b64b013fc65b 14772 libasyncns-dev_0.3-1.1_amd64.deb
 893efeef2c02ec1e7030a84cc13e7e495769b6c4 13274 libasyncns0_0.3-1.1_amd64.deb
Checksums-Sha256: 
 edd924256385ca807df5ca8453c53d6268a39ac5a51469050bb9d5a07d41c54a 1285 
libasyncns_0.3-1.1.dsc
 6a50fef65b422b0b0b6ed1d3e4a35c075f4b741eaeb53044aa4f7c2a24d38ea2 2441 
libasyncns_0.3-1.1.diff.gz
 bf4abd06d43c44bae552c10bcefe99eefeb5da345fd8c9246e5be8ceef19f9f4 14772 
libasyncns-dev_0.3-1.1_amd64.deb
 52b04fa8c64ec0660e8d92abc9abd98959f64fdc202058c1e2d8dfccc6072823 13274 
libasyncns0_0.3-1.1_amd64.deb
Files: 
 a569fc6b04bcc0971c7e827102a35d13 1285 libs optional libasyncns_0.3-1.1.dsc
 7311c8a671498be5a9522159a5982b34 2441 libs optional libasyncns_0.3-1.1.diff.gz
 0023406d11eef18d91550997eeb2496d 14772 libdevel optional 
libasyncns-dev_0.3-1.1_amd64.deb
 5c2f38bbdb90f65d07174034ebd56e9a 13274 libs optional 
libasyncns0_0.3-1.1_amd64.deb

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

iQEVAwUBTPJjx00yN7tZsYcyAQiUIAf/f0kxzpZmkDKEzHnc

Bug#605163: marked as done (guake: Use of PYTHONPATH env var in an insecure way)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 14:47:46 +
with message-id 
and subject line Bug#605163: fixed in guake 0.4.2-3
has caused the Debian Bug report #605163,
regarding guake: Use of PYTHONPATH env var in an insecure way
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.)


-- 
605163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: guake
Version: 0.4.2-2
Severity: grave
Tags: security
User: debian-pyt...@lists.debian.org
Usertags: pythonpath

Jakub Wilk performed an analysis[1] for packages setting PYTHONPATH in
an insecure way. Those packages do something like:

PYTHONPATH=/spam/eggs:$PYTHONPATH

This is wrong, because if PYTHONPATH were originally unset or empty,
current working directory would be added to sys.path.

[1] http://lists.debian.org/debian-python/2010/11/msg00045.html

Your package turns out to have vulnerable scripts in PATH: you can
find a complete log at [2].

[2] http://people.debian.org/~morph/mbf/pythonpath.txt

Some guidelines on how to fix these bugs: in the case given above, you
can use something like

PYTHONPATH=/spam/eggs${PYTHONPATH:+:$PYTHONPATH}

(If you don't known this construct, grep for "Use Alternative Value"
in the bash/dash manpage.)

Also, in cases like

   PYTHONPATH=/usr/lib/python2.5/site-packages/:$PYTHONPATH

or

   PYTHONPATH=$PYTHONPATH:$SPAMDIR exec python $SPAMDIR/spam.py

you shouldn't need to touch PYTHONPATH at all.

Feel free to contact debian-pyt...@lists.debian.org in case of
help.


--- End Message ---
--- Begin Message ---
Source: guake
Source-Version: 0.4.2-3

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

guake_0.4.2-3.diff.gz
  to main/g/guake/guake_0.4.2-3.diff.gz
guake_0.4.2-3.dsc
  to main/g/guake/guake_0.4.2-3.dsc
guake_0.4.2-3_i386.deb
  to main/g/guake/guake_0.4.2-3_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 605...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sylvestre Ledru  (supplier of updated guake 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: Sun, 28 Nov 2010 14:57:37 +0100
Source: guake
Binary: guake
Architecture: source i386
Version: 0.4.2-3
Distribution: unstable
Urgency: high
Maintainer: Sylvestre Ledru 
Changed-By: Sylvestre Ledru 
Description: 
 guake  - A drop-down terminal for GNOME Desktop Environment
Closes: 605163
Changes: 
 guake (0.4.2-3) unstable; urgency=high
 .
   * Fix a security issue in an incorrect usage of PYTHONPATH (Closes: #605163)
Checksums-Sha1: 
 7f90840707b9019e1b19781f2b59aa027425fe5e 1270 guake_0.4.2-3.dsc
 d62f4482219ada135333bc9e287f5f7a9c2ce6e7 3544 guake_0.4.2-3.diff.gz
 fcfff49edcdf1d4551cd46ed35a5358ffa8cfeee 157200 guake_0.4.2-3_i386.deb
Checksums-Sha256: 
 a9d8aa7768a5bae607cb7035990bc3ca751c9f1897d46b6b72a3cc0552f8bc92 1270 
guake_0.4.2-3.dsc
 4af7a301191b4f7c985f7a40111286003cbc88f7b9d8e7f6c43db854ce0eae28 3544 
guake_0.4.2-3.diff.gz
 7a1df538c05019b3c56d88e8b56f239c26eda8033f9cac9f62156fd7fccf2b4c 157200 
guake_0.4.2-3_i386.deb
Files: 
 e2633be0e641c09f2ce5f180b5ecf133 1270 x11 optional guake_0.4.2-3.dsc
 edeb49336e3fc98de762d2eac482becf 3544 x11 optional guake_0.4.2-3.diff.gz
 78c55b7afe9c62ffb65cae65a653f3ae 157200 x11 optional guake_0.4.2-3_i386.deb

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

iEYEARECAAYFAkzyYzAACgkQiOXXM92JlhCPEwCfay9qoo7+AGneaH9Iwww68D0b
sm4AoKSgAjqj4a8ZDHxaDPTxBRhR8QiQ
=nsXy
-END PGP SIGNATURE-


--- End Message ---


Processed: Merge

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> merge 605164 605163
Bug#605163: guake: Use of PYTHONPATH env var in an insecure way
Bug#605164: guake: Use of PYTHONPATH env var in an insecure way
Merged 605163 605164.

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605163
605164: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605164
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#474913: [Pkg-javascript-devel] Bug#474913: javascript-common: please lower #474913 severity to non-RC

2010-11-28 Thread Thomas Goirand

- Original message -
> Given this bug:
>   - has a workaround as suggested above
>   - is the same as #565738 and #604980
>   - could apply to many other packages (nagios, gitweb, doc-central, etc)
>   - should probably get fixed in apache itself (#605227)
>   - is a release blocker
> 
> I suggest its severity should get lowered.

I would also highlight that "fixing" this would in
fact break many other packages that are expecting
the global alias. I don't think it would be a good
idea to change the current behavior, especially so
close to the release!

Thomas Goirand (zigo)




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



Processed: proposed patch

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 566072 patch
Bug #566072 [util-linux] fsck now failing hard for unavailable filesystems
Added tag(s) patch.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
566072: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566072
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#566072: proposed patch

2010-11-28 Thread Serafeim Zanikolas
tag 566072 patch
thanks

Dear maintainer,

Please consider the attached patch that displays a warning using debconf. Note
that I've added the warning in the postinst script (as opposed to preinst, as
suggested in msg #54 of this bug report) so that it suffices to Depend on
debconf (as opposed to pre-depend).

I'll consider a delayed NMU unless I hear from you real soon now.

Cheers,
Serafeim
diff -Nurp orig/util-linux-2.17.2//debian/changelog 
util-linux-2.17.2//debian/changelog
--- orig/util-linux-2.17.2//debian/changelog2010-11-28 14:52:49.0 
+0100
+++ util-linux-2.17.2//debian/changelog 2010-11-28 15:18:53.0 +0100
@@ -1,3 +1,15 @@
+util-linux (2.17.2-3.4) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * debian/util-linux.postinst, debian/templates: warn user about possible
+fsck failure upon boot, when fstab has entries with "noauto" and a
+non-zero pass number (Closes: #566072)
+  * build-dep on po-debconf, and depend on debconf
+  * Create create debian/po/{POTFILES.in,templates.pot}
+  * debian/rules: call debconf-updatepo in the clean target
+
+ -- Serafeim Zanikolas   Sun, 28 Nov 2010 14:07:07 +0100
+
 util-linux (2.17.2-3.3) unstable; urgency=low
 
   * Non-maintainer upload.
diff -Nurp orig/util-linux-2.17.2//debian/control 
util-linux-2.17.2//debian/control
--- orig/util-linux-2.17.2//debian/control  2010-11-28 14:52:49.0 
+0100
+++ util-linux-2.17.2//debian/control   2010-11-28 15:17:39.0 +0100
@@ -1,5 +1,5 @@
 Source: util-linux
-Build-Depends: libncurses5-dev, libslang2-dev (>=2.0.4), gettext, zlib1g-dev, 
dpkg-dev (>=1.13.12), libselinux1-dev [!kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386], debhelper (>=5), lsb-release, pkg-config
+Build-Depends: libncurses5-dev, libslang2-dev (>=2.0.4), gettext, zlib1g-dev, 
dpkg-dev (>=1.13.12), libselinux1-dev [!kfreebsd-i386 !kfreebsd-amd64 
!hurd-i386], debhelper (>=5), lsb-release, pkg-config, po-debconf
 Section: base
 Priority: required
 Uploaders: Scott James Remnant 
@@ -13,7 +13,7 @@ Architecture: any
 Section: utils
 Priority: required
 Essential: yes
-Depends: lsb-base (>= 3.0-6), tzdata (>=2006c-2), initscripts, dpkg (>= 
1.15.4) | install-info, ${misc:Depends}
+Depends: lsb-base (>= 3.0-6), tzdata (>=2006c-2), initscripts, dpkg (>= 
1.15.4) | install-info, debconf, ${misc:Depends}
 Pre-Depends: ${shlibs:Depends}
 Suggests: util-linux-locales, kbd | console-tools, dosfstools
 Replaces: schedutils, miscutils, setterm, fdisk, linux32, sparc-utils, 
e2fsprogs, ${util-linux:Conflicts}
diff -Nurp orig/util-linux-2.17.2//debian/po/POTFILES.in 
util-linux-2.17.2//debian/po/POTFILES.in
--- orig/util-linux-2.17.2//debian/po/POTFILES.in   1970-01-01 
01:00:00.0 +0100
+++ util-linux-2.17.2//debian/po/POTFILES.in2010-11-28 14:37:44.0 
+0100
@@ -0,0 +1 @@
+[type: gettext/rfc822deb] templates
diff -Nurp orig/util-linux-2.17.2//debian/po/templates.pot 
util-linux-2.17.2//debian/po/templates.pot
--- orig/util-linux-2.17.2//debian/po/templates.pot 1970-01-01 
01:00:00.0 +0100
+++ util-linux-2.17.2//debian/po/templates.pot  2010-11-28 14:38:02.0 
+0100
@@ -0,0 +1,53 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: util-li...@packages.debian.org\n"
+"POT-Creation-Date: 2010-11-28 14:38+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid "Filesystem entries with noauto and non-zero pass number"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid ""
+"It appears that /etc/fstab contains at least one entry that is marked as "
+"\"noauto\" with a non-zero pass number (meaning that the file system should "
+"not be automatically mounted upon boot, yet should be checked by fsck, the "
+"file system check utility)."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid ""
+"From this release onwards, fsck will fail for file systems that have a non-"
+"zero pass number and are not available (eg. because they are unplugged) at "
+"the time fsck runs. This will cause the system to enter file system repair "
+"mode during boot."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../templates:1001
+msgid ""
+"To avoid this problem, please adjust such fstab entries for removable "
+"devices, by either setting their pass number to zero, or adding the \"nofail"
+"\" option. For more details, please see mount(8)."
+msgstr ""
diff -Nurp orig/util-linux-2.17.2//debian/rules util-linux-2.17.2//debian/rules
--- orig/util-linux-2.17.2//debian/rules2010-11-28 14:52:49.

Bug#605218: apt-get dist-upgrade fails to install ia32-libs since version 20101117

2010-11-28 Thread Xavier Oswald
tags 605218 unreproducible

Hi,

The bugreport doesn't contain a lot of informaton. But well, I tried to
reproduce it.

Some test cases:

1) clean lenny chroot
   install ia32-libs
   doing an upgrade  of the package to squeeze
   OK.

2) clean lenny chroot
   install ia32-libs
   doing a dist-upgrade to squeeze
   OK.

3) clean lenny chroot
   install ia32-libs
   doing a package upgrade to sid
   OK.

4) clean lenny chroot
   install ia32-libs
   doing a dist-upgrade to sid
   OK.

5) clean squeeze chroot
   install ia32-libs
   OK

5) clean sid chroot
   install ia32-libs
   OK


Please provide us more information.


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

Kernel: Linux 2.6.36-trunk-amd64 (SMP w/4 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to 
fr_FR.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages ia32-libs depends on:
ii  dpkg1.15.8.6 Debian package management system
ii  lib32asound21.0.23-2.1   shared library for ALSA applicatio
ii  lib32bz2-1.01.0.5-6  high-quality block-sorting file co
ii  lib32gcc1   1:4.4.5-8GCC support library (32 bit Versio
ii  lib32ncurses5   5.7+20100313-4   shared libraries for terminal hand
ii  lib32stdc++64.4.5-8  The GNU Standard C++ Library v3 (3
ii  lib32v4l-0  0.8.1-1  Collection of video4linux support 
ii  lib32z1 1:1.2.3.4.dfsg-3 compression library - 32 bit runti
ii  libc6-i386  2.11.2-7 Embedded GNU C Library: 32-bit sha

ia32-libs recommends no packages.

Versions of packages ia32-libs suggests:
pn  ia32-libs-gtk  (no description available)

-- no debconf information

-- 
Xavier Oswald 
GNU/Linux Debian Developer - http://www.debian.org/
GPG key ID: 0x464B8DE3


signature.asc
Description: Digital signature


Processed: retitle 553173 to javascript-common overrides /javascript globally in apache2, found 553173 in 5

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 553173 javascript-common overrides /javascript globally in apache2
Bug #553173 [javascript-common] javascript-common overrides /javascript 
globally in lighttpd
Changed Bug title to 'javascript-common overrides /javascript globally in 
apache2' from 'javascript-common overrides /javascript globally in lighttpd'
> found 553173 5
Bug #553173 [javascript-common] javascript-common overrides /javascript 
globally in apache2
Bug Marked as found in versions javascript-common/5.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
553173: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=553173
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: unmerging 474913

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> unmerge 474913
Bug#474913: javascript-common overrides /javascript globally in lighttpd
Bug#553173: javascript-common overrides /javascript globally in lighttpd
Disconnected #474913 from all other report(s).

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
553173: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=553173
474913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474913
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#597449: reassing to libasyncns0

2010-11-28 Thread Gaudenz Steinlin
reassign 597449 libasyncns0
retitle 597449 pulseaudio over TCP not working on armel due to libasyncns0 
failing 
merge 597449 566139
Thanks

After some debuging with gdb it turned out that this bug is caused by
libasyncns and that the corresponding bug there is already filed ans
has a patch...

Gaudenz
-- 
Ever tried. Ever failed. No matter.
Try again. Fail again. Fail better.
~ Samuel Beckett ~


signature.asc
Description: PGP signature


Processed: mindi: diff for NMU version 1:2.0.4-1.1

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 559153 + patch
Bug #559153 [mindi] Unable to purge mindi
Added tag(s) patch.
> tags 559153 + pending
Bug #559153 [mindi] Unable to purge mindi
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
559153: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=559153
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: reassing to libasyncns0

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 597449 libasyncns0
Bug #597449 [libpulse0] libpulse0 fails to connect to pulseaudio sink over TCP
Bug reassigned from package 'libpulse0' to 'libasyncns0'.
Bug No longer marked as found in versions pulseaudio/0.9.21-3.
> retitle 597449 pulseaudio over TCP not working on armel due to libasyncns0 
> failing
Bug #597449 [libasyncns0] libpulse0 fails to connect to pulseaudio sink over TCP
Changed Bug title to 'pulseaudio over TCP not working on armel due to 
libasyncns0 failing' from 'libpulse0 fails to connect to pulseaudio sink over 
TCP'
> merge 597449 566139
Bug#566139: libasyncns0: data alignment issue on armel causes main 
functionnality breakage
Bug#597449: pulseaudio over TCP not working on armel due to libasyncns0 failing
Merged 566139 597449.

> Thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
597449: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=597449
566139: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566139
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#559153: mindi: diff for NMU version 1:2.0.4-1.1

2010-11-28 Thread Didier Raboud
tags 559153 + patch
tags 559153 + pending
thanks

Dear maintainer,

I've prepared an NMU for mindi (versioned as 1:2.0.4-1.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.
diff -u mindi-2.0.4/debian/changelog mindi-2.0.4/debian/changelog
--- mindi-2.0.4/debian/changelog
+++ mindi-2.0.4/debian/changelog
@@ -1,3 +1,11 @@
+mindi (1:2.0.4-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Enhance the postrm maintainer script to only remove the files in
+/usr/lib/mindi/ on purge. (Closes: #559153)
+
+ -- Didier Raboud   Sun, 28 Nov 2010 14:31:17 +0100
+
 mindi (1:2.0.4-1) unstable; urgency=high
 
   * New upstream release.
diff -u mindi-2.0.4/debian/postrm mindi-2.0.4/debian/postrm
--- mindi-2.0.4/debian/postrm
+++ mindi-2.0.4/debian/postrm
@@ -7,9 +7,16 @@
 
 MINDI_LIB=/usr/lib/mindi
 
-# Remove configuration files for isolinux and syslinux that are included in
-# upstream but generated on the fly in the Debian package
-( cd $MINDI_LIB && rm -f isolinux-H.cfg isolinux.cfg syslinux-H.cfg 
syslinux.cfg )
+if [ "$1" = purge ] ; then
+
+# Remove configuration files for isolinux and syslinux that are included in
+# upstream but generated on the fly in the Debian package
+rm -f $MINDI_LIB/isolinux-H.cfg
+rm -f $MINDI_LIB/isolinux.cfg
+rm -f $MINDI_LIB/syslinux.cfg
+rm -f $MINDI_LIB/syslinux-H.cfg
+
+fi
 
 # dh_installdeb will replace this with shell code automatically
 # generated by other debhelper scripts.



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



Processed: Re: libmedc-dev: med_exit_if.h missing?

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 599052 2.3.6-4
Bug #599052 {Done: hazel...@debian.org ("Adam C. Powell, IV")} [libmedc-dev] 
libmedc-dev: med_exit_if.h missing?
Bug Marked as found in versions med-fichier/2.3.6-4; no longer marked as fixed 
in versions med-fichier/2.3.6-4 and reopened.
> tags 599052 pending
Bug #599052 [libmedc-dev] libmedc-dev: med_exit_if.h missing?
Added tag(s) pending.
> tags 604626 pending
Bug #604626 [libmed-dev,libmedc-dev] libmedc-dev and libmed-dev: error when 
trying to install together
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
604626: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=604626
599052: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=599052
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#603141: postgresql-8.4 and lenny upgrades (was Re: Bug#603141: dbi-link: fails to install due to incorrect dependencies in init.d LSB header)

2010-11-28 Thread Holger Levsen
Hi,

On Sonntag, 28. November 2010, Luca Capello wrote:
> I could not find this version anymore, not in the postgresql-8.4's
> debian/changelog nor in snapshots.d.o, where did it come from?

it's there: http://snapshot.debian.org/package/postgresql-8.4/8.4.4-1/


cheers,
Holger


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


Bug#604626: libmedc-dev: med_exit_if.h missing?

2010-11-28 Thread Adam C Powell IV
found 599052 2.3.6-4
tags 599052 pending
tags 604626 pending
thanks

I goofed, this is  still a problem for libmedc-dev.  Sorry, rushed
through the fix without thinking about it.

Also fixed 604626 with a versioned conflict against this troublesome
libmed-dev.  The fixes are in alioth and I'm building now.

-Adam

On Mon, 2010-11-22 at 14:28 -0500, Adam C Powell IV wrote:
> Hello,
> 
> I apologize, I am just now seeing this bug.  I have just fixed it,
> included the fix in its alioth git repository, and uploaded a fixed
> version to debian unstable.  Until it's in the archive, you can get it
> from: http://lyre.mit.edu/~powell/salome/ .
> 
> -Adam
-- 
GPG fingerprint: D54D 1AEE B11C CE9B A02B  C5DD 526F 01E8 564E E4B6

Engineering consulting with open source tools
http://www.opennovation.com/


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


Bug#602250: marked as done (jsmin has non free licence, clarify qtobject in debian/copyright)

2010-11-28 Thread Debian Bug Tracking System
Your message dated Sun, 28 Nov 2010 13:50:19 +
with message-id 
and subject line Bug#602250: fixed in typo3-src 4.3.8+dfsg1-1
has caused the Debian Bug report #602250,
regarding jsmin has non free licence, clarify qtobject in 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.)


-- 
602250: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=602250
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: typo3-src-4.3
Version: 4.3.8-1
Severity: serious
Justification: DFSG #6 "No Discrimination Against Fields of Endeavor"

The jsmin licence says "The Software shall be used for Good, not Evil.".
See http://lists.debian.org/debian-legal/2009/09/msg00033.html and
http://lists.debian.org/debian-legal/2010/06/msg1.html for why this is
a problem.

Regards,
S

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

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


--- End Message ---
--- Begin Message ---
Source: typo3-src
Source-Version: 4.3.8+dfsg1-1

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

typo3-database_4.3.8+dfsg1-1_all.deb
  to main/t/typo3-src/typo3-database_4.3.8+dfsg1-1_all.deb
typo3-src-4.3_4.3.8+dfsg1-1_all.deb
  to main/t/typo3-src/typo3-src-4.3_4.3.8+dfsg1-1_all.deb
typo3-src_4.3.8+dfsg1-1.debian.tar.gz
  to main/t/typo3-src/typo3-src_4.3.8+dfsg1-1.debian.tar.gz
typo3-src_4.3.8+dfsg1-1.dsc
  to main/t/typo3-src/typo3-src_4.3.8+dfsg1-1.dsc
typo3-src_4.3.8+dfsg1.orig.tar.gz
  to main/t/typo3-src/typo3-src_4.3.8+dfsg1.orig.tar.gz
typo3_4.3.8+dfsg1-1_all.deb
  to main/t/typo3-src/typo3_4.3.8+dfsg1-1_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 602...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Christian Welzel  (supplier of updated typo3-src 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: Fri, 26 Nov 2010 22:00:00 +0200
Source: typo3-src
Binary: typo3-src-4.3 typo3-database typo3
Architecture: source all
Version: 4.3.8+dfsg1-1
Distribution: unstable
Urgency: low
Maintainer: Christian Welzel 
Changed-By: Christian Welzel 
Description: 
 typo3  - The enterprise level open source WebCMS (Meta)
 typo3-database - TYPO3 - The enterprise level open source WebCMS (Database)
 typo3-src-4.3 - TYPO3 - The enterprise level open source WebCMS (Core)
Closes: 602250
Changes: 
 typo3-src (4.3.8+dfsg1-1) unstable; urgency=low
 .
   * Removed typo3/contrib/jsmin/jsmin.php because of non free license
 (Closes: 602250)
   * Added notice about license of qtobject.js to copyright file.
   * Added README.source.
Checksums-Sha1: 
 bb1a304633e11c134e3dc6bc743fb86dd5122325 1063 typo3-src_4.3.8+dfsg1-1.dsc
 4fda27229a7b5d74a3522fdcdbe2041f3a8284cf 11503415 
typo3-src_4.3.8+dfsg1.orig.tar.gz
 d23899becab271b9c2889b8c7210635fe1d7c955 114235 
typo3-src_4.3.8+dfsg1-1.debian.tar.gz
 35287f98ab896a3540f8b422749ffbcb02073bcc 11261054 
typo3-src-4.3_4.3.8+dfsg1-1_all.deb
 72e53c892ef3aa985f96e4cf9cb46ae2dd945af4 200746 
typo3-database_4.3.8+dfsg1-1_all.deb
 a6d91f7f176ba5aef3bdd4fb5f6990c6416ae093 1252 typo3_4.3.8+dfsg1-1_all.deb
Checksums-Sha256: 
 c9ce56d20fdbb46addbf735d8e6f34e72c48d07c3109a53e76e28708dafc6fbd 1063 
typo3-src_4.3.8+dfsg1-1.dsc
 f11c241a88158712bc070462d3938366f34123e57772848d6a9b53f50cae02ed 11503415 
typo3-src_4.3.8+dfsg1.orig.tar.gz
 7a1940ce4a5b008873c1487ccb8c69aaa402be0790b379191a53e149f589a965 114235 
typo3-src_4.3.8+dfsg1-1.debian.tar.gz
 a2ef6d90453b008d8156e33a8f1eae2d1d1e8f55cb82c9650f9f7ff9a1dda0ed 11261054 
typo3-src-4.3_4.3.8+dfsg1-1_all.deb
 a3abe6374ceacf557f5ebb1d1434f1ba4e3f89ea71caf554b9e2546694086c4b 200746 
typo3-database_4.3.8+dfsg1-1_all.deb
 ec1fc8e44935c3d5bf0976221bab19c52e47af047fb98175d68d276d4d719491 1252 
typo3_4.3.8+dfsg1-1_all.deb
Files: 
 6d93eb0e9bc0ecd9bc265f1cc1906d3f 1063 web optional typo3-src_4.3.8+dfsg1-1.dsc
 60167c9bf99d5ec769aaa3a6159269a8 11503415 web optional 

Bug#604221: hylafax-server: installation fails

2010-11-28 Thread Giuseppe Sacco
Hi Gregor,
I reviewed your patch and I think it does not solve completely the
problem.

When you are in a chroot environment, /proc/mounts show all mounts on
all chroot, so you cannot know for sure if the one you found (and you
may found more than one) is yours.

Just to make and example, when I use schroot to get into a chroot
environment, I have /home mounted inside the chroot. If I look for /home
in /proc/mounts, I get:

giuse...@scarafaggio:~$ sudo schroot -c lenny-backports
scarafaggio:/home/giuseppe# grep home /proc/mounts
/dev/mapper/VG500G-homelv /home ext4 
rw,nosuid,nodev,relatime,user_xattr,acl,commit=600,barrier=1,data=ordered 0 0
/dev/mapper/VG500G-homelv /home ext4 
rw,nosuid,nodev,relatime,user_xattr,acl,commit=600,barrier=1,data=ordered 0 0
scarafaggio:/home/giuseppe# logout
giuse...@scarafaggio:~$ grep home /proc/mounts
/dev/mapper/VG500G-homelv /home ext4 
rw,nosuid,nodev,relatime,user_xattr,acl,commit=600,barrier=1,data=ordered 0 0

and I cannot find what is my current /home. I cannot even know *if* I
have /home as a mounted file system.

/etc/mtab only contains mounted volumes in current system (or chroot),
so using it does solve the problem.

Back to fixing this bug. Probably, I would suggest, when /etc/mtab is
missing, to assume that $SPOOL/etc is not mounted with bind option.

What is your opinion about this?

Thanks,
Giuseppe




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



Processed: notfound 474913 in 5

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> notfound 474913 5
Bug #474913 [javascript-common] javascript-common overrides /javascript 
globally in lighttpd
Bug #553173 [javascript-common] javascript-common overrides /javascript 
globally in lighttpd
Bug No longer marked as found in versions javascript-common/5.
Bug No longer marked as found in versions javascript-common/5.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
474913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474913
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: retitle 474913 to javascript-common overrides /javascript globally in lighttpd

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> retitle 474913 javascript-common overrides /javascript globally in lighttpd
Bug #474913 [javascript-common] javascript-common overrides /javascript 
globally in apache2
Bug #553173 [javascript-common] javascript-common overrides /javascript 
globally in apache2
Changed Bug title to 'javascript-common overrides /javascript globally in 
lighttpd' from 'javascript-common overrides /javascript globally in apache2'
Changed Bug title to 'javascript-common overrides /javascript globally in 
lighttpd' from 'javascript-common overrides /javascript globally in apache2'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
474913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474913
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed (with 3 errors): javascript-common: please lower #474913 severity to non-RC

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> clone 474913 -1
Bug#474913: javascript-common overrides /javascript globally
Bug is marked as being merged with others. Use an existing clone.

> retitle 474913 javascript-common overrides /javascript globally in apache2
Bug #474913 [javascript-common] javascript-common overrides /javascript globally
Bug #553173 [javascript-common] Global /javascript Alias in Apache2 
configuration
Changed Bug title to 'javascript-common overrides /javascript globally in 
apache2' from 'javascript-common overrides /javascript globally'
Changed Bug title to 'javascript-common overrides /javascript globally in 
apache2' from 'Global /javascript Alias in Apache2 configuration'
> retitle -1 javascript-common overrides /javascript globally in lighttpd
Failed to set the title of -1: The 'bug' parameter ("-1") to 
Debbugs::Control::set_title did not pass regex check

Debbugs::Control::set_title('transcript', 'IO::Scalar=GLOB(0x1729f18)', 
'requester', 'Marc Fournier ', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', 
'<20101128133104.gc13...@lonquimay.wrk.lsn.camptocamp.com>', 'request_subject', 
...) called at /usr/lib/debbugs/service line 879
eval {...} called at /usr/lib/debbugs/service line 878

> notfound -1 5
Failed to remove found on -1: The 'bug' parameter ("-1") to 
Debbugs::Control::set_found did not pass regex check

Debbugs::Control::set_found('transcript', 'IO::Scalar=GLOB(0x1729f18)', 
'requester', 'Marc Fournier ', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', 
'<20101128133104.gc13...@lonquimay.wrk.lsn.camptocamp.com>', 'request_subject', 
...) called at /usr/lib/debbugs/service line 649
eval {...} called at /usr/lib/debbugs/service line 648

> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
-1: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=-1
474913: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474913
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Bug#474913: javascript-common: please lower #474913 severity to non-RC

2010-11-28 Thread Marc Fournier
clone 474913 -1
retitle 474913 javascript-common overrides /javascript globally in apache2
retitle -1 javascript-common overrides /javascript globally in lighttpd
notfound -1 5
thanks

Excerpt from /usr/share/doc/apache2.2-common/README.Debian.gz:

If the local administrator is not comfortable with packages
activating their config files by default, it is possible
to change the 'Include /etc/apache2/conf.d/' in apache2.conf
into 'Include /etc/apache2/conf.d.enabled/' and create that
directory. He can then put symlinks to the files in conf.d
which he wants to enable into conf.d.enabled.


Given this bug:
 - has a workaround as suggested above
 - is the same as #565738 and #604980
 - could apply to many other packages (nagios, gitweb, doc-central, etc)
 - should probably get fixed in apache itself (#605227)
 - is a release blocker

I suggest its severity should get lowered.

Furthermore, I'm splitting this bug in:
 - javascript-common overrides /javascript globally in apache2
 - javascript-common overrides /javascript globally in lighttpd

The latter only being in javascript-common/8, it doesn't affect squeeze and
therefore shouldn't be listed in squeeze release blockers.

Many thanks !



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



Bug#604221: hylafax-server: installation fails

2010-11-28 Thread gregor herrmann
On Sun, 28 Nov 2010 14:15:19 +0100, Giuseppe Sacco wrote:

> I reviewed your patch and I think it does not solve completely the
> problem.

That's possible :)
 
> When you are in a chroot environment, /proc/mounts show all mounts on
> all chroot, so you cannot know for sure if the one you found (and you
> may found more than one) is yours.

True.

> /etc/mtab only contains mounted volumes in current system (or chroot),
> so using it does solve the problem.

Except that there are situations where it doesn't exist, and IIRC
there's no guarantee it's up2date and matching reality.
 
> Back to fixing this bug. Probably, I would suggest, when /etc/mtab is
> missing, to assume that $SPOOL/etc is not mounted with bind option.
> 
> What is your opinion about this?

I agree that checking for the existence of /etc/mtab before using it
is a good idea and would solve _this_ bug.

Honestly I don't know if it's correct to base assumptions on it but I
leave this to people actually knowing the software :)


Thanks for your quick reply!

Cheers,
gregor

-- 
 .''`.   http://info.comodo.priv.at/ -- GPG key IDs: 0x8649AA06, 0x00F3CFE4
 : :' :  Debian GNU/Linux user, admin, & developer - http://www.debian.org/
 `. `'   Member of VIBE!AT & SPI, fellow of Free Software Foundation Europe
   `-BOFH excuse #378:  Operators killed by year 2000 bug bite. 


signature.asc
Description: Digital signature


Processed: tagging 605218

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 605218 - d-i
Bug #605218 [ia32-libs] apt-get dist-upgrade fails to install ia32-libs since 
version 20101117
Removed tag(s) d-i.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605218: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605218
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: found 605167 in 2.0.2-1.1

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 605167 2.0.2-1.1
Bug #605167 [gnome-schedule] gnome-schedule: Use of PYTHONPATH env var in an 
insecure way
Bug #605169 [gnome-schedule] gnome-schedule: Use of PYTHONPATH env var in an 
insecure way
Bug Marked as found in versions gnome-schedule/2.0.2-1.1.
Bug Marked as found in versions gnome-schedule/2.0.2-1.1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605167: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605167
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: found 605163 in 0.4.2-1

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 605163 0.4.2-1
Bug #605163 [guake] guake: Use of PYTHONPATH env var in an insecure way
Bug #605164 [guake] guake: Use of PYTHONPATH env var in an insecure way
Bug Marked as found in versions guake/0.4.2-1.
Bug Marked as found in versions guake/0.4.2-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605163: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605163
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: found 605161 in 1.1.0-2

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 605161 1.1.0-2
Bug #605161 [opendnssec-signer] opendnssec-signer: Use of PYTHONPATH env var in 
an insecure way
Bug #605165 [opendnssec-signer] opendnssec-signer: Use of PYTHONPATH env var in 
an insecure way
Bug Marked as found in versions opendnssec-signer/1.1.0-2.
Bug Marked as found in versions opendnssec-signer/1.1.0-2.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605161: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605161
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



Processed: found 605159 in 0.7.9-1

2010-11-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> found 605159 0.7.9-1
Bug #605159 [gnumed-client] gnumed-client: Use of PYTHONPATH env var in an 
insecure way
Bug #605162 [gnumed-client] gnumed-client: Use of PYTHONPATH env var in an 
insecure way
Bug Marked as found in versions gnumed-client/0.7.9-1.
Bug Marked as found in versions gnumed-client/0.7.9-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
605159: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=605159
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


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



  1   2   >