Bug#663332: [3.1 -> 3.2.6] xorg fails to start after kernel upgrade

2012-03-18 Thread Jonathan Nieder
reassign 663332 initramfs-tools 0.101
quit

Johannes Kolb wrote:

> After booting with a bad initrd the sysfs is missing. 
> /proc is mounted as expected, but /sys is missing. Obviously it didn't
> get moved from the initrd-location to the real root.
> So I suppose this is the actual problem with my initrd.

Nice.  Sounds right.

[...]
> | # Chain to real filesystem
> | if command -v switch_root >/dev/null 2>&1; then
> | exec switch_root ${rootmnt} ${init} "$@" <${rootmnt}/dev/console 
> >${rootmnt}/dev/console
> | elif command -v run-init >/dev/null 2>&1; then
> | # Move virtual filesystems over to the real filesystem
[...]
> The "switch_root" command is something new here. If I disable it,
> changing the above lines to
>
> | # Chain to real filesystem
> | if command -v run-init >/dev/null 2>&1; then
> | # Move virtual filesystems over to the real filesystem
[...]
> then my system boots as usual.

What does "dpkg-query -W busybox\*" say?

Jonathan



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



Bug#590582: abot vortex problem

2012-03-18 Thread Jonathan Nieder
Hi Karol,

Karol Szkudlarek wrote:

> No..., I'm not tried 3.x kernel from sid or experimental becuase
> problem considers my home router/server which is need 24h/day...
>
> But I could try for example backported patched a module driver 3c95x
> for my 2.6.32 current debian squeeze version. For me it will be safe
> solution which I can easily revert.

Ok, makes sense.

I've attached a patch to try, following instructions from [1].  The
result should be ABI-compatible with a squeeze kernel, so if all goes
well and you have kept a copy of the unpatched 3c95x driver, you can
unload the patched 3c95x driver and reload the standard one after
testing.  (Of course, it is always possible that testing could go
poorly and e.g. hang the system.)

Hope that helps,
Jonathan

[1] 
http://kernel-handbook.alioth.debian.org/ch-common-tasks.html#s-common-official
or the corresponding page in the debian-kernel-handbook package
From: Jonathan Nieder 
Date: Mon, 19 Mar 2012 01:31:49 -0500
Subject: debugging patch for bug#590582

This patch basically updates the 3c59x driver in squeeze to the
version in the longterm 3.0.y tree.  Some commits making cosmetic
changes have been skipped to make the changes more minimal and
therefore easier to understand.
---
 drivers/net/3c59x.c |   84 +++
 1 file changed, 71 insertions(+), 13 deletions(-)

diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index 447b04a43c89..534f287f7e7b 100644
--- a/drivers/net/3c59x.c
+++ b/drivers/net/3c59x.c
@@ -633,7 +633,11 @@ struct vortex_private {
open:1,
medialock:1,
must_free_region:1, /* Flag: if 
zero, Cardbus owns the I/O region */
-   large_frames:1; /* accept large frames */
+   large_frames:1, /* accept large frames */
+   handling_irq:1; /* private in_irq indicator */
+   /* {get|set}_wol operations are already serialized by rtnl.
+* no additional locking is required for the enable_wol and 
acpi_set_WOL()
+*/
int drv_flags;
u16 status_enable;
u16 intr_enable;
@@ -695,7 +699,8 @@ DEFINE_WINDOW_IO(32)
 #define DEVICE_PCI(dev) NULL
 #endif
 
-#define VORTEX_PCI(vp) (((vp)->gendev) ? DEVICE_PCI((vp)->gendev) : NULL)
+#define VORTEX_PCI(vp) \
+   ((struct pci_dev *) (((vp)->gendev) ? DEVICE_PCI((vp)->gendev) : NULL))
 
 #ifdef CONFIG_EISA
 #define DEVICE_EISA(dev) (((dev)->bus == &eisa_bus_type) ? 
to_eisa_device((dev)) : NULL)
@@ -703,7 +708,8 @@ DEFINE_WINDOW_IO(32)
 #define DEVICE_EISA(dev) NULL
 #endif
 
-#define VORTEX_EISA(vp) (((vp)->gendev) ? DEVICE_EISA((vp)->gendev) : NULL)
+#define VORTEX_EISA(vp)
\
+   ((struct eisa_device *) (((vp)->gendev) ? DEVICE_EISA((vp)->gendev) : 
NULL))
 
 /* The action to take with a media selection timer tick.
Note that we deviate from the 3Com order by checking 10base2 before AUI.
@@ -1020,10 +1026,16 @@ static int __devinit vortex_init_one(struct pci_dev 
*pdev,
ioaddr = pci_iomap(pdev, pci_bar, 0);
if (!ioaddr) /* If mapping fails, fall-back to BAR 0... */
ioaddr = pci_iomap(pdev, 0, 0);
+   if (!ioaddr) {
+   pci_disable_device(pdev);
+   rc = -ENOMEM;
+   goto out;
+   }
 
rc = vortex_probe1(&pdev->dev, ioaddr, pdev->irq,
   ent->driver_data, unit);
if (rc < 0) {
+   pci_iounmap(pdev, ioaddr);
pci_disable_device(pdev);
goto out;
}
@@ -1830,7 +1842,7 @@ vortex_timer(unsigned long data)
ok = 1;
}
 
-   if (!netif_carrier_ok(dev))
+   if (dev->flags & IFF_SLAVE || !netif_carrier_ok(dev))
next_tick = 5*HZ;
 
if (vp->medialock)
@@ -1881,7 +1893,6 @@ leave_media_alone:
mod_timer(&vp->timer, RUN_AT(next_tick));
if (vp->deferred)
iowrite16(FakeIntr, ioaddr + EL3_CMD);
-   return;
 }
 
 static void vortex_tx_timeout(struct net_device *dev)
@@ -1942,7 +1953,7 @@ static void vortex_tx_timeout(struct net_device *dev)
 
/* Issue Tx Enable */
iowrite16(TxEnable, ioaddr + EL3_CMD);
-   dev->trans_start = jiffies;
+   dev->trans_start = jiffies; /* prevent tx timeout */
 }
 
 /*
@@ -2087,7 +2098,6 @@ vortex_start_xmit(struct sk_buff *skb, struct net_device 
*dev)
}
}
 
-   dev->trans_start = jiffies;
 
/* Clear the Tx status stack. */
{
@@ -2128,6 +2138,15 @@ boomerang_start_xmit(struct sk_buff *skb, struct 
net_device *dev)
   dev->name, vp->cur_tx);
}
 
+   /*
+* We can't allow a recursion from our interrupt handler back into the
+* tx routine, as they take the same spin lock, and th

Bug#664583: nautilus crashes when selecting multiple files

2012-03-18 Thread Josselin Mouette
Hi,

Le dimanche 18 mars 2012 à 20:31 -0600, John M. a écrit :
> Selecting multiple files in nautilus triggers a crash, but only after
> nautilus has been running for a while.  Uninstalling all the tracker
> packages (except for sparql), and/or upgrading to nautilus 3.2.1-3 from
> Debian unstable doesn't change anything ---i.e., nautilus still crashes
> for the same reason.
> 
> The backtrace from gdb is attached.  The system information follows.

Could you please try again with libgtk-3-0-dbg installed?

Thanks,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling




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



Bug#664585: [Pkg-xfce-devel] Bug#664585: lightdm-qt-greeter shows a blinking tty cursor, nothing else

2012-03-18 Thread Yves-Alexis Perez
On lun., 2012-03-19 at 04:03 +0100, Richard Hartmann wrote:
> Package: lightdm-qt-greeter
> Version: 1.0.9-1
> Severity: grave
> Justification: renders package unusable
> 
> On a bare system with almost no packages installed, I decided to try
> out lightdm.
> 
> apt-get install lightdm lightdm-qt-greeter

Can you check what is the currently selected greeter
in /etc/lightdm/lightdm.conf (greeter-session).

If it's set to lightdm-gtk-greeter can you try to dpkg-reconfigure
lightdm-qt-greeter and select Qt?

Regards,
-- 
Yves-Alexis


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


Bug#664567: Info received (pu: kdeutils: diff for NMU version 4:4.4.5-1.1)

2012-03-18 Thread Jonathan Wiltshire
I realised during the night that the debdiff has the wrong version number
and misses the series file. Updated diff attached.

-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51

 i have six years of solaris sysadmin experience, from
8->10. i am well qualified to say it is made from bonghits
layered on top of bonghits
diff -Nru kdeutils-4.4.5/debian/changelog kdeutils-4.4.5/debian/changelog
--- kdeutils-4.4.5/debian/changelog 2010-07-21 08:47:03.0 +0100
+++ kdeutils-4.4.5/debian/changelog 2012-03-19 06:07:14.0 +
@@ -1,3 +1,11 @@
+kdeutils (4:4.4.5-1+squeeze1) stable; urgency=low
+
+  * Non-maintainer upload.
+  * CVE-2011-2725: Backport patch for upstream directory traversal in Ark
+Closes: #635541 (thanks to Moritz Muehlenhoff)
+
+ -- Jonathan Wiltshire   Sun, 18 Mar 2012 21:36:25 +
+
 kdeutils (4:4.4.5-1) unstable; urgency=low
 
   [ Modestas Vainius ]
diff -Nru kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch 
kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch
--- kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch   1970-01-01 
01:00:00.0 +0100
+++ kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch   2012-03-18 
21:43:23.0 +
@@ -0,0 +1,27 @@
+Description: fix directory traversal in Ark
+Origin: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635541#32
+Bug-Debian: http://bugs.debian.org/635541
+Author: Moritz Muehlenhoff 
+Reviewed-By: Jonathan Wiltshire 
+Last-Update: 2012-03-18
+
+--- kdeutils-4.4.5.orig/ark/part/part.cpp
 kdeutils-4.4.5/ark/part/part.cpp
+@@ -500,8 +500,15 @@ void Part::slotPreviewExtracted(KJob *jo
+ if (!job->error()) {
+ const ArchiveEntry& entry =
+ m_model->entryForIndex(m_view->selectionModel()->currentIndex());
+-const QString fullName =
+-m_previewDir->name() + '/' + entry[ FileName ].toString();
++
++QString fullName =
++m_previewDir->name() + QLatin1Char('/') + entry[ FileName 
].toString();
++
++// Make sure a maliciously crafted archive with parent folders named 
".." do
++// not cause the previewed file path to be located outside the 
temporary
++// directory, resulting in a directory traversal issue.
++fullName.remove(QLatin1String("../"));
++
+ ArkViewer::view(fullName, widget());
+ } else {
+ KMessageBox::error(widget(), job->errorString());
diff -Nru kdeutils-4.4.5/debian/patches/series 
kdeutils-4.4.5/debian/patches/series
--- kdeutils-4.4.5/debian/patches/series1970-01-01 01:00:00.0 
+0100
+++ kdeutils-4.4.5/debian/patches/series2012-03-19 06:07:36.0 
+
@@ -0,0 +1 @@
+CVE-2011-2725.patch


signature.asc
Description: Digital signature


Bug#583686: [powerpc] Kernel exceptions in ext3/journal subsystem

2012-03-18 Thread Jonathan Nieder
Hi Christoph,

Ben Hutchings wrote:
> On Wed, 2010-06-02 at 14:02 +0200, Christoph Egger wrote:
>>> On Sat, 2010-05-29 at 17:20 +0200, Christoph Egger wrote:

Running sbuild with lvm snapshots seems to hang and the kernel
 is spitting out error messages. Seems it is having some trouble! 
 Unfortunately
 I'm no kernel expert so if you need something please ask.
[...]
>> So
>> I'm not quite sure it's related. Also running the touch / umount snipet
>> From the bug report runs in acceptable time and doesn't spit out loads
>> of kernel traces as debootstrap / sbuild / et all does
> [...]
>
> OK, please make a separate bug report at 
> under product 'File System', component 'ext3'.  Let us know the bug
> number or URL so we can track it.

I'm in suspense now.  Did you report this upstream?

If not:

 - do you still have access to this hardware, and if so are you
   still interested in pursuing this?  ("No" is fine, but please do
   let us know so we can act accordingly.)

 - how do current squeeze kernels behave?

 - how about current 3.x.y kernels from wheezy or sid?  (The only
   packages from outside squeeze that should be needed in order to
   test this on squeeze are the kernel image itself, linux-base,
   and initramfs-tools.)

 - if squeeze kernels do not reproduce the problem, we can declare
   victory.  Yay!

   if squeeze kernels reproduce the problem but 3.x.y does not,
   it would be useful to try a few kernels halfway between to narrow
   down the range to search for a fix.  Historic precompiled kernels
   can be found at .

   if 3.x.y kernels reproduce the problem, please report this upstream
   and let us know the bug number so we can track it.

Hope that helps and sorry for the trouble,
Jonathan



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



Bug#664589: xfonts-encodings: Please mark as Multi-Arch: foreign

2012-03-18 Thread Martin Pitt
Package: xfonts-encodings
Version: 1:1.0.4-1
Severity: minor
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch precise

Hello,

In https://launchpad.net/bugs/957045 it was reported that
xfonts-encodings causes uninstallable build dependencies for some
multi-arch cross builds.

As per the Multi-Arch spec this package should be marked as "foreign".
Simple debdiff attached, by Launchpad user "wookey".

Thanks for considering,

Martin

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)
diff -u xfonts-encodings-1.0.4/debian/control 
xfonts-encodings-1.0.4/debian/control
--- xfonts-encodings-1.0.4/debian/control
+++ xfonts-encodings-1.0.4/debian/control
@@ -20,4 +21,5 @@
 Depends: ${shlibs:Depends}, ${misc:Depends}, x11-common
 Replaces: xfonts-base (<< 1:1.0.0)
+Multi-Arch: foreign
 Description: Encodings for X.Org fonts
  This package contains the encodings that map to specific characters.
diff -u xfonts-encodings-1.0.4/debian/changelog 
xfonts-encodings-1.0.4/debian/changelog
--- xfonts-encodings-1.0.4/debian/changelog
+++ xfonts-encodings-1.0.4/debian/changelog
@@ -1,3 +1,10 @@
+xfonts-encodings (1:1.0.4-1ubuntu1) precise; urgency=low
+
+  * debian/control: Mark as Multi-Arch: foreign to allow using this as
+build dependency for cross-building. (LP: #957045)
+
+ -- Wookey   Thu, 15 Mar 2012 14:15:14 +
+
 xfonts-encodings (1:1.0.4-1) unstable; urgency=low
 
   [ Julien Cristau ]


signature.asc
Description: Digital signature


Bug#628227: Patch for the l10n upload of mirrormagic

2012-03-18 Thread Drew Parsons

On Sat, 17 Mar 2012 08:55:19 +0100, Christian PERRIER wrote:

Quoting Christian PERRIER (bubu...@debian.org):

Quoting Christian PERRIER (bubu...@debian.org):
>
> Dear maintainer of mirrormagic,
>
> On Saturday, February 04, 2012 I sent you a notice announcing my 
intent to upload a
> NMU of your package to fix its pending l10n issues, after an 
initial

> notice sent on Monday, January 30, 2012.
>
> We finally agreed that you would do the update yourself at the end 
of

> the l10n update round.
>
> That time has come.


Ping?





Last ping before I finally NMU.:-)


So busy, sorry (the broken laptop didn't help either)!  Let me push it 
through tonight (I promise!)


Drew



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



Bug#664588: intltool: Please mark as Multi-Arch: foreign

2012-03-18 Thread Martin Pitt
Package: intltool
Version: 0.50.2-1
Severity: minor
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu ubuntu-patch precise

Hello,

In https://launchpad.net/bugs/957094 it was reported that intltool
is one of the major causes of uninstallable build dependencies for
multi-arch cross builds.

As per the Multi-Arch spec this package should be marked as "foreign".
Simple debdiff attached, by Launchpad user "wookey".

Thanks for considering,

Martin

-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)
diff -Nru intltool-0.50.2/debian/changelog intltool-0.50.2/debian/changelog
--- intltool-0.50.2/debian/changelog2012-02-26 20:52:39.0 +0100
+++ intltool-0.50.2/debian/changelog2012-03-19 06:53:45.0 +0100
@@ -1,3 +1,10 @@
+intltool (0.50.2-1ubuntu1) precise; urgency=low
+
+  * debian/control.in: Mark as Multi-Arch: foreign to allow using this as
+build dependency for cross-building. (LP: #957094)
+
+ -- Wookey   Fri, 16 Mar 2012 15:33:20 +
+
 intltool (0.50.2-1) unstable; urgency=low
 
   * New upstream release.
diff -Nru intltool-0.50.2/debian/control intltool-0.50.2/debian/control
--- intltool-0.50.2/debian/control  2012-02-26 20:54:28.0 +0100
+++ intltool-0.50.2/debian/control  2012-03-19 06:53:51.0 +0100
@@ -28,6 +29,7 @@
  libxml-parser-perl,
  file, ${misc:Depends}
 Provides: xml-i18n-tools
+Multi-Arch: foreign
 Description: Utility scripts for internationalizing XML
  Automatically extracts translatable strings from oaf, glade, bonobo
  ui, nautilus theme and other XML files into the po files.
diff -Nru intltool-0.50.2/debian/control.in intltool-0.50.2/debian/control.in
--- intltool-0.50.2/debian/control.in   2012-02-26 20:51:37.0 +0100
+++ intltool-0.50.2/debian/control.in   2012-03-19 06:52:57.0 +0100
@@ -23,6 +24,7 @@
  libxml-parser-perl,
  file, ${misc:Depends}
 Provides: xml-i18n-tools
+Multi-Arch: foreign
 Description: Utility scripts for internationalizing XML
  Automatically extracts translatable strings from oaf, glade, bonobo
  ui, nautilus theme and other XML files into the po files.


signature.asc
Description: Digital signature


Bug#655944: [2.6.37 -> 2.6.38 regression] gpe18 rising many times per second

2012-03-18 Thread Jonathan Nieder
Hi,

James Tocknell wrote:

> This wasn't a regression for me, but I only installed Debian on the
> laptop at the beginning of December. I've tried both the kernel from
> experimental, and the latest one from unstable (3.2), there was no
> change.

Please report this upstream to , product
ACPI, component Config-Interrupts, and let us know the bug number so
we can track it.  Be sure to mention:

 - steps to reproduce, expected result, actual result, and how the
   difference indicates a bug (should be simple here)

 - which kernel versions you have tested and what happened with each

 - full "dmesg" output from booting an affected and an unaffected
   kernel, as (separate, uncompressed) attachments

 - acpidump output, as another attachment

 - /proc/interrupts

 - a link to http://bugs.debian.org/655944 for the backstory

 - what kind of testing you'd be able to perform if needed (can you
   test debugging patches on this machine if provided?  can you
   bisect?)

 - any workarounds or other weird observations

[...]
>   the 2.6.38 kernel had
> slightly higher cpu usage but a high number of interrupts (though
> less than the later kernels), and the 3.* kernels were fairly similar
> in their cpu and interrupts. So this may be a few different
> regressions then.

I'd suggest starting with one for simplicity, and separately solving
any issues that remain once it is addressed.

Thanks very much for your work so far on this.

Sincerely,
Jonathan



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



Bug#664587: new upstream version available

2012-03-18 Thread Dmitry Eremin-Solenikov
Package: instead
Version: 1.6.0-1
Severity: wishlist

There is a new upstream version of INSTEAD - 1.6.2. Please package it.
Thank you!

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

Kernel: Linux 3.2.0-2-686-pae (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/bash

Versions of packages instead depends on:
ii  instead-data1.6.0-1
ii  libc6   2.13-27
ii  libgdk-pixbuf2.0-0  2.24.1-1
ii  libglib2.0-02.30.2-6
ii  libgtk2.0-0 2.24.10-1
ii  liblua5.1-0 5.1.4-12
ii  libsdl-image1.2 1.2.12-1
ii  libsdl-mixer1.2 1.2.12-1
ii  libsdl-ttf2.0-0 2.0.11-2
ii  libsdl1.2debian 1.2.15-2
ii  zlib1g  1:1.2.6.dfsg-2

instead recommends no packages.

instead suggests no packages.

-- no debconf information



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



Bug#649822: libmatchbox: FTBFS: mbpixbuf.c:250:8: error: dereferencing pointer to incomplete type

2012-03-18 Thread Nobuhiro Iwamatsu
tags 649822 patch
thanks

Hi,

I created a patch which revise this bug.
I attached.

Could you check this?

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


libmatchbox-1.9.patch
Description: application/empty


Bug#664471: false positive for hyphen-used-as-minus-sign

2012-03-18 Thread Russ Allbery
retitle 664471 misses hyphen-used-as-minus-sign when preceeded by font change
severity 664471 wishlist
thanks

Iustin Pop  writes:

> Thanks for the well-formed explanation. Then this is an invalid bug
> report, and should be closed (I'm still not quite sure how to close such
> bugs, just email to nnn-done@ ?).

Yes, but actually I'd like to fix the fact that you didn't get the tag
when you removed the space.  So let's leave it open for the moment.

-- 
Russ Allbery (r...@debian.org)   



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



Bug#650572: xine-ui: FTBFS: load.c:64:15: error: dereferencing pointer to incomplete type

2012-03-18 Thread Nobuhiro Iwamatsu
tags 650572 fixed
thanks

Hi,

I checked pakcage build on latst version with libpng15.
The problem that cannot build seems to be revised.
Thanks you.

I do not close the bug and I attach fixed tag and leave this bug.

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6



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



Bug#573745: Please decide on Python interpreter packages maintainership

2012-03-18 Thread Russ Allbery
Okay, this isn't going to make anyone happy, but here goes.

I don't think anything new is happening with this bug, and while I've
argued in the past that keeping things like this open for a while to see
what happens can be useful, I think we've long passed the point of that
here.  We need to not leave this in limbo and just vote on it; I don't
think we're going to get substantially more information than we have
already, and I don't think the situation is changing appreciably over the
situation last March.

The question is, what's the ballot?  Obviously, one ballot option, based
on the previous discussion here, is something like:

A. While several issues with public communication, coordination, and
   collaboration in Python maintenance are very concerning, the Technical
   Committee is unconvinced that the proposed alternatives will be better
   for the project as a whole.  The Technical Committee therefore declines
   to replace the maintainer of the Python interpreter packages, but
   strongly encourages the current Python maintainer to accept
   comaintainers for the package.

I think a second ballot option is Ian's proposal at:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=573745#335

B. The Technical Committee have been petitioned to decide on the
   maintainership of the python packes.  We agree with the substance of
   the complaint, but do not feel able to directly select the replacement
   maintainers.  Therefore:

   We declare that the python packages (full list below) are now orphaned,
   exercising our power in s2 of the Constitution.

   Please would those interested in taking over Python maintenance form an
   appropriate team and take over the package.  If competing teams should
   come forward, the package should be taken over by the largest.

assuming Ian still thinks this is a good idea given Steve's response.
Steve's response proposes a third option, namely:

C. The Technical Committee exercises our power under 6.1.2 of the
   Constitution to remove the current maintainer of the Python interpretor
   packages.  It delegates the task of choosing a new maintenance team for
   the Python packages to the DPL.

I have to admit that I don't like this option at all, and Steve didn't
seem to care for it either.  Unless someone wants to actually advocate for
it, I am inclined to not include it on the ballot.

There's also the option in the original message to the Technical
Committee, which I think should probably be on the ballot in some form:

D. The Technical Committee exercises our power under 6.1.2 of the
   Constitution to designate:

- Luca Falavigna 
- Josselin Mouette 
- Sandro Tosi 
- Bernd Zeimetz 

   as the new maintenace team for the Python interpretor packages.  (This
   of course assumes that all of those people still want to be part of the
   maintenance team; we should ensure we have an accurate list before we
   vote.)

and then

E. Further discussion.

Reactions from the rest of the TC to that ballot and the other issues
listed above?

I would like this to not slip back into limbo again, since it's clear that
the problem is neither going to go away nor is provoking any substantively
new discussion.  I think we should take some time to craft a reasonable
ballot, but I'd like us to start voting on this within a week or two and
reach some sort of conclusion.

-- 
Russ Allbery (r...@debian.org)   



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



Bug#664586: RFS: libqglviewer

2012-03-18 Thread Artur R. Czechowski
Package: sponsorship-requests
Severity: normal

Dear mentors,

  I am looking for a sponsor for my package "libqglviewer"

 * Package name: libqglviewer
   Version : 2.3.15-1
   Upstream Author : Gilles Debune
 * URL : http://www.libqglviewer.com/
 * License : GPL2
   Section : libs

  It builds those binary packages:

 libqglviewer-dev - OpenGL 3D viewer library based on Qt4 - development files
 libqglviewer-doc - OpenGL 3D viewer library - header files and documentation
 libqglviewer-qt3-dev - Dummy package.
 libqglviewer-qt4-2 - Dummy package to install libqglviewer2
 libqglviewer-qt4-dev - Dummy package to install libqglviewer-dev
 libqglviewer2 - OpenGL 3D viewer library based on Qt - runtime library

Package shall be uploaded to experimental. Package will be processed through
NEW queue because of new binary package.

  To access further information about this package, please visit the following 
URL:

  http://mentors.debian.net/package/libqglviewer

  Alternatively, one can download the package with dget using this command:

dget -x 
http://mentors.debian.net/debian/pool/main/libq/libqglviewer/libqglviewer_2.3.15-1.dsc

  Changes since the last upload:

libqglviewer (2.3.15-1) experimental; urgency=low

  * New upstream release:
+ uses CONFIG += no_keywords so that the library can be used with Boost
  (LP: #414975)
+ is compilable with Qt 4.8 (Closes: #662702)
  * Don't build Qt3 version anymore (Closes: #604356)
  * Using upstream name convention: libQGLViewer instead of libqglviewer
  * drop no longer needed patches:
+ 01qt3-qt4
+ 99compile-examples
  * Lintian cleanup:
+ fix descriptions
+ libqglviewer-qt4-2 depends on ${misc:Depends}
+ build-arch and build-indep provided in debian/rules
  * Convert to 3.0 (quilt) format
+ remove dpatch from Build-Deps and all calls from debian/rules
+ update patches in debian/patches
+ replace debian/00list with debian/series
+ remove README.source
+ rename remaining patches - remove NN prefix
  * Update Standards-Version to 3.9.3
+ sort Breaks/Replaces/Provides dependencies for transition
  * Remove all transition related stuff. The dev package is libqglviewer-dev,
the shared library package is libqglviewer2. All needed transition symlinks
are provided in those packages.
  * Headers moved from libqglviewer-dev-common to libqglviewer-dev
  * libqglviewer-dev-common renamed to libqglviewer-doc
  * libqglviewer-qt4-2, libqglviewer-qt3-dev and libqglviewer-qt4-dev are now
dummy transition packages
  * Remove debian/README.Multiflavour and other qt3 related artifacts from
debian/
  * README.Debian cleanup
+ Merge all *.README.Debian into one file - the content is the same
+ Corrected upstream name in README.Debian
+ Updated URL of homepage
  * Provide upstreams GPL_EXCEPTION file, mention it in copyright one.
  * Override lintian warning: libqglviewer-qt4-2: empty-binary-package - it's
empty transition package

 -- Artur R. Czechowski   Mon, 19 Mar 2012 05:13:33 +0100

  Regards,
   Artur R. Czechowski



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



Bug#664302: [Pkg-crosswire-devel] Bug#664302: [PATCH] biblememorizer: Helping to update to packaging format 3.0

2012-03-18 Thread jaalto
On 2012-03-18 21:16, Dmitrijs Ledkovs wrote:
| On 17 March 2012 14:17,   wrote:
| > Let me know if there is anything that needs adjusting
| 
| In the bzr branch I have converted packaging to use 3.0 quilt + dh + qt4.
| But unfortunately the application segvaults upon running.
| I filed a bug request upstream but didn't have a response yet.

Good. In that case, juts close this bug when you upload new version.

Thanks,
Jari



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



Bug#650595: deng: FTBFS: /tmp/buildd/deng-1.9.0-beta6.9+dfsg1/doomsday/engine/portable/src/gl_png.c:122:32: error: dereferencing pointer to incomplete type

2012-03-18 Thread Nobuhiro Iwamatsu
tags 650595 patch
thanks

Hi,

I created a patch which revise this bug.
I attached.
Could you check this?

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


deng-1.9.0-beta6.9+dfsg1.patch
Description: application/empty


Bug#640874: leave: debian/rules is not a Makefile

2012-03-18 Thread Russ Allbery
My impression is that discussion on this bug has wound down, and that it's
unlikely that any new information is going to come up.  To me, that
implies that we should call for a vote.

Based on Ian's last response, I think the ballot has two options plus
further discussion, since I'm quite sure that we're not going to outlaw
dh:

A. debian/rules is not required to be a makefile, only to implement the
   same interface as a debian/rules file implemented as a makefile
   (including handling of arguments and exit status).  Debian Policy
   should be updated to change the requirement to a recommendation, and
   new versions of the leave package should be permitted to be uploaded to
   the archive without changing debian/rules to be a makefile.

B. The Technical Committee affirms the Debian Policy requirement that
   debian/rules must be a makefile.  All packages in the archive,
   including leave, are required to follow this requirement.  This
   makefile may, as is common practice, delegate implementation of its
   targets to a script.

C. Further discussion.

Are there any corrections or modifications to that ballot?  Anything I'm
missing?

If there are no objections, I'll call for a vote on this ballot in a few
days.

-- 
Russ Allbery (r...@debian.org)   



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



Bug#552688: Please decide how Debian should enable hardening build flags

2012-03-18 Thread Russ Allbery
I believe at this point the dpkg-buildflags solution has proven reasonably
successful and is being widely deployed.  I think we should confirm that
the TC agrees with that approach and close out this bug.

I therefore propose the following ballot:

A. The Technical Committee agrees with the dpkg-buildflags approach
   currently in use to enable hardening flags.

B. Further discussion.

I think the remaining open question is whether there is a desire to list
overriding the GCC maintainer and patching GCC to enable the flags for all
compilation on the ballot.  My guess is that there is not; if anyone
disagrees, please speak up and I'll draft a revised ballot including that
option.

If there is no other feedback, I plan to call for a vote on the above
ballot in a few days.

-- 
Russ Allbery (r...@debian.org)   



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



Bug#636783: proposed constitution fix for super-majority within the tech ctte

2012-03-18 Thread Russ Allbery
Ian Jackson  writes:
> Andreas Barth writes:

>> As I got no further comments from other people of the tech ctte, this
>> can only mean that everyone agrees with this version, or is not
>> interessted.

> I think the version I quote (as amended) is the best.

I agree with that proposal and think it would be a worthwhile amendment.
I'd be happy to see someone drive this forward.

Andreas, did you want us to vote on whether to bring this forward as a GR,
or was this bug more in the way of a medium for discussion?

>> So, unless someone proposes another option, I intend to call for votes
>> in a week so that I know better which of the two options it is.

> However, there are a couple of other things that we maybe want to
> think about including in our GR:

Your message seems to have killed all further discussion of this.  :)

I would be happy to go forward with the GR to fix the supermajority rule
by itself, since I think it's uncontroversial and could be easily passed.
However, commenting on the other things you mention:

> * Explicitly being allowed to have private discussions on the subject
>   of who should maintain a particular package.  The options should be:
> - private discussions when we feel it appropriate
> - private discussions only for appointments and maintainerships
> - status quo

This seems like a good idea, and I would tend to vote for private
discussions when we feel it appropriate.  Realistically, I don't see how
one can stop people from having private conversations anyway when they
know each other; it's just a natural thing for people to do, and those
discussions happen in person at DebConf or in other media that isn't
easily recorded even if we wanted to.

> * Possibly increasing the maximum size of the committee.  I would be
>   happy with 12, given the busy nature of the existing members.

If there are people interested in helping drive things to resolution, that
would be helpful, as we're not currently doing a stellar job on that
front.

> * An advisory resolution which gives the project a way to formally
>   give us some guidance on how ready we should be to overrule
>   developers.  A wording something like:

> In the past the Technical Committee have been slow and reluctant
> to overrule a maintainer unless all the members are absolutely
> convinced that the maintainer's decision was wrong.

> Option A: This is the correct approach.

> Option B: TC members should be willing to vote to overrule
> if they feel that the maintainer's decision was wrong;
> the supermajority requirement is sufficient to guard
> against overruling in questionable cases.

Hm.  That's interesting, yes.  I have no idea what the outcome of that
vote would be, and I'd be curious to see how it turned out.  I think this
should be a separate GR, though; I don't think it's really related to the
above procedural issues.

-- 
Russ Allbery (r...@debian.org)   



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



Bug#625509: python-debian: please port to Py3k

2012-03-18 Thread John Wright
On Wed, Mar 14, 2012 at 05:06:51PM +0100, Stefano Zacchiroli wrote:
> On Sun, Jan 22, 2012 at 04:21:41PM -0800, John Wright wrote:
> > On Sun, Jan 22, 2012 at 02:37:55PM +, Colin Watson wrote:
> > > I would very much appreciate review of this branch.  In case it eases
> > > review, I've attached the 31-patch series (!) to this mail.  I've tried
> > > to arrange it roughly in ascending order of complexity.
> > 
> > Wow.  I'll be glad to review them, but I'm not sure when I'll have the
> > opportunity.  I'll try to make time later this week.
> 
> Heya John,
>   do you think you'll have time to do the review in the near future?
> Just a friendly ping because, unfortunately, I haven't yet look in
> enough details to Python 3 to be able to do a review myself.

I also don't know when I'll have time...  I thought I would a couple of
months ago, but things aren't getting any less busy.  :-(  I also need
to take some time to familiarize myself with Python 3.

> Still, I'd love to see python-debian porting to python 3 in the archive
> ... and I'll be happy to test early versions!

I'll see how many patches I can review next weekend.  Maybe it'll be
worth making an upload to experimental for testing beyond our unit
tests.

-- 
John Wright 



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



Bug#649809: tuxpuck: FTBFS: png.c:77:7: error: dereferencing pointer to incomplete type

2012-03-18 Thread Nobuhiro Iwamatsu
Hi,

Attached patch is broken. Please ignore.
I attach new patch.

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


tuxpuck-0.8.2.debdiff
Description: Binary data


Bug#662513: RM: emboss/6.3.1-6

2012-03-18 Thread Charles Plessy
> On Mon, 2012-03-05 at 14:28 +0900, Charles Plessy wrote:
>
> > there is an annoying non-free file in emboss, and resolving that
> > problem delays my other works on this package.
 
Le Tue, Mar 13, 2012 at 08:48:46PM +, Adam D. Barratt a écrit :
>
> Is there a bug report for that?  I couldn't see anything in the BTS.

Hi,

I am asking the FTP team to confirm whether the file is copyrightable
or not before opening a bug.

  http://lists.debian.org/debian-med/2012/03/msg00010.html

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan



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



Bug#664585: lightdm-qt-greeter shows a blinking tty cursor, nothing else

2012-03-18 Thread Richard Hartmann
Package: lightdm-qt-greeter
Version: 1.0.9-1
Severity: grave
Justification: renders package unusable

On a bare system with almost no packages installed, I decided to try out 
lightdm.

apt-get install lightdm lightdm-qt-greeter

will lead to a system without working X login.

apt-get install lightdm-gtk-greeter

on the other hand will result in a working setup.


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

Kernel: Linux 3.2.0-2-486
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 lightdm-qt-greeter depends on:
ii  debconf [debconf-2.0]  1.5.42
ii  libc6  2.13-27
ii  libgcc11:4.6.3-1
ii  liblightdm-qt-1-0  1.0.9-1
ii  libqtcore4 4:4.7.4-2
ii  libqtgui4  4:4.7.4-2
ii  libstdc++6 4.6.3-1

Versions of packages lightdm-qt-greeter recommends:
ii  policykit-1  0.104-2

lightdm-qt-greeter suggests no packages.

-- debconf information:
* shared/lightdm-greeter: lightdm-gtk-greeter
  lightdm-qt-greeter/lightdm-greeter: qt-greeter



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



Bug#658084: libav-extra: Really necessary?

2012-03-18 Thread Andres Mejia
Here is what I propose in order to provide the lib*extra* packages
from the libav source package. [1] It essentially has libav building
the extra packages, thus no longer having to rely on a seperate source
package. This change ensures the regular and the extra packages are
built for all 'flavors' to be built depending on the architecture.

As I said before, as far as building the GPLv3 enabled libraries,
there is no reason to do that with a seperate source package. Building
them separately would not change the fact that the packages are
ultimately distributed through Debian main. The source package will
remain LGPLv2.1+. The binaries will be GPLv2+ for the regular
packages, and GPLv3+ for the extra packages.

Though the build time is increased for libav, ultimately, this change
would be better as the buildd network would not have to cope with
building from two source packages (i.e. setting up and tearing down
for libav and libav-extra for each architecture). Also, in my opinion,
it is easier and less error prone to maintain a single libav package
rather than two of them.

1. 
http://anonscm.debian.org/gitweb/?p=pkg-multimedia/libav.git;a=commitdiff;h=3037cab27717de75a73c77a553ab6dfad04a57da;hp=d78d2e6d0d0f43a6203ee6b78a8c0fefcab7838a

-- 
~ Andres



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



Bug#636433: mirror submission for mirror.ancl.hawaii.edu

2012-03-18 Thread Kevin McCarthy
>> > Do you think it's feasible to provide the mirror at /debian/ ?
>
> Y/N ?

I don't think this is going to happen.

>> > Do you think it's feasible to provide the mirror at /debian-cd/ ?

Again, this is not likely to happen.  Is the path really important?

>> By the way, you should sync this at least weekly.
>> http://mirror.ancl.hawaii.edu/linux/debian-cd/ provides outdated 6.0.2.

Oops, the cronjob for this was broken, I updated it and it's resyncing now.

Kevin



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



Bug#664584: RFS: utouch-evemu/1.0.8-1 [ITP]

2012-03-18 Thread Stephen M. Webb
Package: sponsorship-requests
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

 Dear mentors,

I am looking for a sponsor for my package "utouch-evemu"

* Package name: utouch-evemu
  Version : 1.0.8-1
  Upstream Author : The uTouch Team 
* URL : https://launchpad.net/utouch-evemu
* License : GPL-3
  Section : libs

It builds these binary packages:

  libutouch-evemu-dev - Kernel Device Emulation Library - development files
  libutouch-evemu1 - KernelInput Event Device Emulation Library
  python-utouch-evemu - Kernel Input Event Device Emulation Library (Python 
bindings)
  utouch-evemu-tools - Kernel Device Emulation Library - test tools

To access further information about this package,
please visit the following URL:

  http://mentors.debian.net/package/utouch-evemu

Alternatively, one can download the package with
dget using this command:

  dget -x 
http://mentors.debian.net/debian/pool/main/u/utouch-evemu/utouch-evemu_1.0.8-1.dsc

More information about utouch-evemu can be obtained
from https://launchpad.net/utouch-evemu.


Regards,
  Stephen M. Webb


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

iQIcBAEBCAAGBQJPZpuGAAoJEAoP+EW32zQn8WwP/1NQjTorpLVyd6x9X9Afn29K
Uf9MCLpLrU5nHlaCnZKm3imYyuwyhZW7IotGf2UoJsP0+6IuejlGg7DlxziMn3nf
qnCR3x1H6MaCPwIfcY7xbo6haEdFFiDtFfqyGRtZ51ef8fdgJOBE8lzQSXcioXVv
e44RpsDNAmk2J4sOWJ5tpcZCX2iUKk3ibgM+pHmKuSmgeNJQnc8AgZNVfC8wRoz1
/JnRy6VtNkM8eiQxaou3ImWuj+j9I1N+yuQUH4/B2JLqFLq1gQasI6ILsZtLJ9wm
C9rEFDBJa3a/NYzAon4CCLqDmP0q5MFj69vBqLQXZnjY67oXWGQabHl/YM2MoXp9
8fDMs+hY6UadzTiLn6yobks9LDkTrQ0+dkaa/b5IBj6SGrBTgw7vtxQWc+22SkMw
AXiRatgBA6GDsMOKeNpHlwFrw40AtOxgh8BnoiU45Q1JS4ftxjvsCsAXm8QSrVke
rcgHfKeaGk3xnZtuacHVfVAXE1yVEnd/YEJawmGdahCSjmL3zbc+mAPM4UJWc5VG
tp01msocpdrfV7Rqtp6zaclf3lXCoGydRu8lnUqsX612kildHew6EJ2fCKJpc9TB
jB7MvV+QL9dQtueZC+MWjz0obJSygvJdXm/RL8FeK0fdhjAK9cea87jmWZCVL18D
hqBcfb53AhtIwQPlnIl0
=bwbJ
-END PGP SIGNATURE-



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



Bug#664583: nautilus crashes when selecting multiple files

2012-03-18 Thread John M.
Package: nautilus
Version: 3.2.1-2+b1

Selecting multiple files in nautilus triggers a crash, but only after
nautilus has been running for a while.  Uninstalling all the tracker
packages (except for sparql), and/or upgrading to nautilus 3.2.1-3 from
Debian unstable doesn't change anything ---i.e., nautilus still crashes
for the same reason.

The backtrace from gdb is attached.  The system information follows.

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

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

Versions of packages nautilus depends on:
ii  desktop-file-utils 0.18-1
ii  gsettings-desktop-schemas  3.2.0-2
ii  gvfs   1.10.1-2+b1
ii  libatk1.0-02.2.0-2
ii  libc6  2.13-27
ii  libcairo-gobject2  1.10.2-7
ii  libcairo2  1.10.2-7
ii  libexempi3 2.2.0-1
ii  libexif12  0.6.20-2
ii  libfontconfig1 2.8.0-3.1
ii  libfreetype6   2.4.8-1
ii  libgail-3-03.2.3-1
ii  libgdk-pixbuf2.0-0 2.24.1-1
ii  libglib2.0-0   2.30.2-6
ii  libglib2.0-data2.30.2-6
ii  libgnome-desktop-3-2   3.2.1-3
ii  libgtk-3-0 3.2.3-1
ii  libnautilus-extension1a3.2.1-2+b1
ii  libnotify4 0.7.4-1
ii  libpango1.0-0  1.29.4-2
ii  libselinux12.1.9-2
ii  libtracker-sparql-0.12-0   0.12.10-1
ii  libx11-6   2:1.4.4-4
ii  libxml22.7.8.dfsg-7
ii  nautilus-data  3.2.1-2
ii  shared-mime-info   0.90-1

Versions of packages nautilus recommends:
ii  brasero  3.2.0-3
ii  eject2.1.5+deb1+cvs20081104-10
ii  gnome-sushi  0.2.1-2+b1
ii  gvfs-backends1.10.1-2+b1
ii  librsvg2-common  2.34.2-3

Versions of packages nautilus suggests:
ii  acroread [pdf-viewer]  9.4.7-0.1
ii  eog3.2.2-2+b1
ii  evince [pdf-viewer]3.2.1-1
ii  totem  3.2.1-2+b1
ii  tracker
ii  xdg-user-dirs  0.14-1
ii  xpdf [pdf-viewer]  3.03-9

-- no debconf information
GNU gdb (GDB) 7.4-debian
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
For bug reporting instructions, please see:
...
Reading symbols from /usr/bin/nautilus...Reading symbols from 
/usr/lib/debug/usr/bin/nautilus...done.
done.
(gdb) handle SIG33 pass nostop noprint
SignalStop  Print   Pass to program Description
SIG33 NoNo  Yes Real-time event 33
(gdb) set pagination 0
(gdb) run
Starting program: /usr/bin/nautilus 
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[New Thread 0x7fffec18b700 (LWP 18648)]
[New Thread 0x7fffeb98a700 (LWP 18649)]
[New Thread 0x7fffeaf81700 (LWP 18650)]
Initializing nautilus-open-terminal extension
Initializing nautilus-image-converter extension
Initializing nautilus-gdu extension
[New Thread 0x7fffd1ec3700 (LWP 18651)]
[New Thread 0x7fffcbbe8700 (LWP 18652)]
[New Thread 0x7fffcb3e7700 (LWP 18654)]
[Thread 0x7fffd1ec3700 (LWP 18651) exited]
[Thread 0x7fffcbbe8700 (LWP 18652) exited]
[Thread 0x7fffeb98a700 (LWP 18649) exited]
[New Thread 0x7fffcbbe8700 (LWP 18657)]
[Thread 0x7fffcbbe8700 (LWP 18657) exited]
[New Thread 0x7fffcbbe8700 (LWP 18665)]
[New Thread 0x7fffeb98a700 (LWP 18666)]
[Thread 0x7fffeb98a700 (LWP 18666) exited]
[Thread 0x7fffcbbe8700 (LWP 18665) exited]
[New Thread 0x7fffcbbe8700 (LWP 18667)]
[New Thread 0x7fffeb98a700 (LWP 18668)]
[New Thread 0x7fffd1ec3700 (LWP 18669)]
[New Thread 0x7fffcabe6700 (LWP 18670)]
[Thread 0x7fffcb3e7700 (LWP 18654) exited]
[Thread 0x7fffeb98a700 (LWP 18668) exited]
[Thread 0x7fffcbbe8700 (LWP 18667) exited]
[Thread 0x7fffd1ec3700 (LWP 18669) exited]
[New Thread 0x7fffd1ec3700 (LWP 18671)]
[New Thread 0x7fffcbbe8700 (LWP 18672)]
[New Thread 0x7fffeb98a700 (LWP 18673)]
[Thread 0x7fffcabe6700 (LWP 18670) exited]
[Thread 0x7fffd1ec3700 (LWP 18671) exited]
[Thread 0x7fffeb98a700 (LWP 18673) exited]
[New Thread 0x7fffeb98a700 (LWP 18674)]
[New Thread 0x7fffd1ec3700 (LWP 18675)]
[Thread 0x7fffcbbe8700 (LWP 18672) exited]
[Thread 0x7fffd1ec3700 (LWP 18675) exited]
[New Thread 0x7fffd1ec3700 (LWP 18676)]
[Thread 0x7fffd1ec3700 (LWP 18676) exited]
[New Thread 0x7fffd1ec3700 (LWP 18677)]
[Thread 0x7fffd1ec3700 (LWP 18677) exited]
[New Thread 0x7fffd1ec3700 (LWP 18678)]
[New Thread 0x7fffcbbe8700 (L

Bug#664582: ITP: lxappearance-obconf -- LXAppearance ObConf plugin

2012-03-18 Thread imacat
Package: wnpp
Severity: wishlist
Owner: "Yang Shih-Ching (imacat)" 


* Package name: lxappearance-obconf
  Version : 0.0.1
  Upstream Author : Hong Jen Yee (PCMan) 
* URL : http://lxde.org/
* License : GPL
  Programming Lang: C
  Description : LXAppearance ObConf plugin

ObConf is a program used to configure OpenBox window manager developed
by Dana Jansens, Tim Riley, and Javeed Shaikh. LXAppearance is a tool
used to configure look and feels of the desktop written by Hong Jen Yee
for LXDE project. This plugin is derived from ObConf as an attempt to
integrate obconf with LXAppearance to provide a better user experience.
Most of the source code are taken from ObConf written by its authors
with some modifications added by LXAppearance developers to make it a
plugin.



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



Bug#649800: xsane: FTBFS: xsane-save.c:4932:7: error: dereferencing pointer to incomplete type

2012-03-18 Thread Nobuhiro Iwamatsu
tags 649800 patch
thnaks

Hi,

I created a patch which revise this bug.
I attached.

Could you check this?

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


xsane-0.998.debdiff
Description: Binary data


Bug#636776: libfreetype6: Line height squeezed in GNU Emacs

2012-03-18 Thread Vincent Cheng
tag 636776 patch
thanks

Dear Maintainer,

I've attached a patch (the same one that's in Adam Sjøgren's freetype
source package) for your convenience.

Regards,
Vincent
Index: freetype-2.4.8/src/truetype/ttdriver.c
===
--- freetype-2.4.8.orig/src/truetype/ttdriver.c	2011-07-14 09:03:20.0 +0200
+++ freetype-2.4.8/src/truetype/ttdriver.c	2012-03-17 21:13:08.297142205 +0100
@@ -246,10 +246,7 @@
 FT_Request_Metrics( size->face, req );
 
 if ( FT_IS_SCALABLE( size->face ) )
-{
   error = tt_size_reset( ttsize );
-  ttsize->root.metrics = ttsize->metrics;
-}
 
 return error;
   }


Bug#634412: ext3grep build failure

2012-03-18 Thread peter green

Philippe De Swert wrote:


I can confirm the patch attached fixes #654201 too.
It fixes the build error both on amd64 and armhf (I expect on i586 a
rebuild would fail too but I have not tested it) Would be nice to see
this going into a release since it hits several architectures.
  
Do you actually use ext3grep and if so can you confirm if the patched 
package
actually works? (I see no reason why it shouldn't but I also have no 
idea how

to test it).



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



Bug#664557: dpkg tar dependency

2012-03-18 Thread Jonathan Nieder
forcemerge 642802 664557
quit

Hi László,

Szalma László wrote:

> Upgrading dpkg 1.15.8.12 to dpkg_1.16.1.2_i386.deb breaks all
> package installation, because further package install fail with:
>
> tar: "--warning=no-timestamp" switch unknown (translated back to English)

Yes, this is .  Note that mixing
packages from lenny and wheezy is not supported in general.

Thanks and hope that helps,
Jonathan



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



Bug#649947: irrlicht: FTBFS: CImageLoaderPNG.cpp:31:17: error: invalid use of incomplete type 'png_struct {aka struct png_struct_def}'

2012-03-18 Thread Nobuhiro Iwamatsu
tags 649947 patch
thanks

Hi,

I created a patch which revise this bug.
I attached.
Could you check this?

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


irrlicht-1.7.2+dfsg1.debdiff
Description: Binary data


Bug#664580: xmonad: debian menu entry

2012-03-18 Thread Kevin Ryde
Package: xmonad
Version: 0.10-3+b2
Severity: wishlist

It'd be good if xmonad was in the debian window managers menu to switch
to it from another window manager.

It may be as simple as chucking the menu file below into the sources as
a debian/menu file, which dh_installmenu should then automatically
install as /usr/share/menu/xmonad.

The menu can have an icon pixmap to show if desired.  Maybe
/usr/share/icons/xmonad.png could be adapted or converted to the menu
requirements -- xpm format and no bigger than 32x32 (per
/usr/share/doc/menu/menu.txt.gz section 3.7).


?package(xmonad):needs="wm" \
section="Window Managers" \
title="Xmonad" \
command="/usr/bin/xmonad"


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

Kernel: Linux 2.6.32-5-486
Locale: LANG=en_AU, LC_CTYPE=en_AU (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages xmonad depends on:
ii  libc6 2.13-10
ii  libffi5   3.0.10-3
ii  libgmp10  2:5.0.4+dfsg-1
ii  libx11-6  2:1.4.4-4
ii  libxext6  2:1.3.0-3
ii  libxinerama1  2:1.1.1-3
ii  x11-utils 7.6+4

Versions of packages xmonad recommends:
ii  libghc-xmonad-dev  
ii  libghc-xmonad-doc  
ii  xfonts-base1:1.0.3

Versions of packages xmonad suggests:
ii  suckless-tools [dmenu]  38-1

-- no debconf information


Bug#664064: 4 messages every minute in syslog from netlink

2012-03-18 Thread Jonathan Nieder
tags 664064 - moreinfo
quit

Reinhard Karcher wrote:
> Am 18.03.2012 20:11, schrieb Jonathan Nieder:

>> # version number is a guess
>> reassign 664064 ntrack-module-rtnetlink-0 016-1.1
[...]
> version number is the one I had the problems with.

Thanks much.



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



Bug#664542: Workaround - create a separate 'changelog_opener'

2012-03-18 Thread Dominique Brazziel
The basic idea is to create a second 'changelog opener'
in the same place in which the opener including proxy_support 
is created (UpdateManager/Frontend/Gtk/utils.py):

# Create a changelog URL opener
LOG.debug("Creating changelog URL opener.")
changelog_opener = urllib2.build_opener()

then reference
that opener in method '_do_fetch' of
UpdateManager/DistSpecific/changelog.py:

 # changelog_opener support
 from UpdateManager.Frontend.Gtk.utils import init_proxy
 ...
 #connection = urllib2.urlopen(url)
 connection = changelog_opener.open(url)





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



Bug#660193: developers-reference: please suggest debian/rules target name for preparing source

2012-03-18 Thread Carsten Hey
* Russ Allbery [2012-03-16 19:05 -0700]:
> Charles Plessy  writes:
> > Le Fri, Feb 17, 2012 at 02:46:15PM +0100, Carsten Hey a écrit :
>
> >> In general, debian/README.source does not contain information how to
> >> run, for example, autoconf and friends to convert a clean VCS checkout
> >> into a source tree that can be built using dpkg-buildpackage (there are
> >> packages that require this).
>
> > perhaps the Policy could be modified to allow such information
> > in debian/README.source ?  There is an open bug on this subject.
>
> >   http://bugs.debian.org/495233
>
> I've always been a little surprised that people think that Policy doesn't
> allow such information in README.source ...

This section is structured like this:

if $condition README.source should explain:

* enumeration about what should be explained

remark regarding above explanation

an other remark regarding above explanation

mention possible additional content

After scanning the first two paragraphs below of the enumeration for
useful information, people might skip reading the last paragraph because
they do expect it to only contain further information regarding the
enumeration above.

The section's last paragraph can be displayed in a browser in a way that
easily could be mixed up with a page's footer out of the corner of one's
eyes.  There are two reasons for this (one of them alone wouldn't have
this effect), one is that the sections last paragraph is also the last
of this chapter (and thus on the displayed web page) and the other one
is that, depending on the used browser font and window size, there can
be two lines, both starting with the same long and partly uppercased
string, resulting in a structure typically found in footers or copyright
notices, but hardly in body text.

A possible fix for both is to move the last paragraph up, so that the
section starts with this paragraph (which would require minor wording
changes).


Carsten



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



Bug#622701: HTTP error 403 when run on apt-cacher-ng client configured with proxy

2012-03-18 Thread Dominique Brazziel
I just found out a case where the changelog viewer fails to download
the changelog when '/etc/apt/apt.conf.d/NNproxy' is set, as can be seen
in the apt-cacher-ng server access log, i.e.:

403 Forbidden file type or location:
http://packages.debian.org/changelogs/pool/main/b/bluez/bluez_4.99-1/changelog.txt

When proxy support was added to update-manager (see 
sourcetree/UpdateManager/Frontend/Gtk/utils.py), the default
url handler uses the proxy for downloading changelogs as well as the
package debs.  See also -

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





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



Bug#533627: Ietadm

2012-03-18 Thread Patrik Schindler

Hello,

perhaps, ietadm can be of some help until configfile-rereading is  
implemented?


:wq! PoC





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



Bug#664517: gnome-doc-utils: removal of mallard.rng makes other packages FTBFS

2012-03-18 Thread Alberto Garcia
On Mon, Mar 19, 2012 at 01:19:13AM +0100, Michael Biebl wrote:

> From the 121 packages which have gnome-doc-utils as build
> dependency, the following packages FTBFS due to the missing
> mallard.rng file:
> 
> banshee-community-extensions_2.2.0-3
> conduit_0.3.17-1
> frogr_0.6.1-1
> gmpc_11.8.16-2
> gnote_0.8.2-1
> gthumb_2.14.2-1
> ocrfeeder_0.7.7-2

Those are much less than I expected, I maintain frogr and ocrfeeder
and know personally the upstream developers so I can handle them.

Thanks for verifying this!

Berto



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



Bug#664517: gnome-doc-utils: removal of mallard.rng makes other packages FTBFS

2012-03-18 Thread Michael Biebl
On 18.03.2012 18:30, Michael Biebl wrote:
> I'll probably do a test-rebuild of all reverse b-deps of
> gnome-doc-utils, to see how many packages are affected by this.

From the 121 packages which have gnome-doc-utils as build dependency,
the following packages FTBFS due to the missing mallard.rng file:

banshee-community-extensions_2.2.0-3
conduit_0.3.17-1
frogr_0.6.1-1
gmpc_11.8.16-2
gnote_0.8.2-1
gthumb_2.14.2-1
ocrfeeder_0.7.7-2
-- 
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


Bug#664579: nvi: versioned backups are broken for vi

2012-03-18 Thread Jeffrey Sheinberg
Package: nvi
Version: 1.81.6-8.1
Severity: normal

Hi,

Using 'set backup=N%.~', nvi does not write the backup and emits the
error message 'No filename to substitute for #'.

Using 'set backup=%~' does the same as the above, and sometimes nvi
instead just dumps core.

Curiously, the correct backups are written when I invoke 'nex' using the
same set backup values as above.

Thanks,
Jeffrey Sheinberg


-- System Information:
Debian Release: 6.0.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'proposed-updates'), (500, 
'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-0.bpo.2-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash

Versions of packages nvi depends on:
ii  libc6 2.11.3-3   Embedded GNU C Library: Shared lib
ii  libdb4.7  4.7.25-9   Berkeley v4.7 Database Libraries [
ii  libncursesw5  5.7+20100313-5 shared libraries for terminal hand

Versions of packages nvi recommends:
ii  nvi-doc   1.81.6-8.1 4.4BSD re-implementation of vi - d

nvi suggests no packages.

-- no debconf information



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



Bug#661790: [wxmaxima] no keyboard input after closing a dialog

2012-03-18 Thread Frank S. Thomas
Hi,

On Saturday 03 March 2012 23:50:00 Mate Miklos wrote:
> I now found that changing to an other window and back gets keyboard back.
> This might be a bug in kde-window-manager.

Have you tried it with another window manager?

Cheers,
Frank



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



Bug#649555: dvdisaster: FTBFS: pngio.c:207:45: error: 'Z_BEST_COMPRESSION' undeclared (first use in this function)

2012-03-18 Thread Nobuhiro Iwamatsu
tags 649555 patch
thanks

Hi,

I created a patch which revise this bug.
I attached.
Could you check the patch?

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6


dvdisaster-0.72.3.patch
Description: application/empty


Bug#646607: ITP: atheme-services -- modular IRC services daemon

2012-03-18 Thread Mike Mestnik
On 03/18/12 12:28, Mike Mestnik wrote:
> Here is a ?partially? working .git tree containing a debian pkg for
> atheme-services_6.0.9.
>
> The atheme channel users were not nice to me so I want nothing more to
> do with them or there code.  However I put some of my time into making
> this pkg and I'd like to see it make some one else happy.
>
> I'll assist where I can with atheme-services debian packaging.
>
> http://mikemestnik.net/wine/atheme-services-6.0.9-debian.tar.bz
> http://mikemestnik.net/wine/atheme-services-6.0.9_diff-cleaner-distclean.txt.bz2
Ignore these, they were built off of false information.

You might want to look at:
http://anonscm.debian.org/viewvc/pkg-irc/README?view=markup
http://anonscm.debian.org/viewvc/pkg-irc/packages/atheme-services/trunk/debian/

These go up-to 5.0.1 and if I had based my work off of these then it
might have been better.  So I'm starting over.  Now that I got myself
all fixed up.

I can get a little crabby in the morning, but I don't regret anything.

> Thank you.
>




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



Bug#664578: xserver-xorg-video-radeon: Screen/memory corruption with RS690M (X1200) when scrolling in applications

2012-03-18 Thread Josselin Mouette
Package: xserver-xorg-video-radeon
Version: 1:6.14.3-2
Severity: important


Hi,

I’ve experienced screen corruption on my RS690M for quite a while; I 
should have reported that earlier, but waited for new versions of the 
driver; and while the symptoms have been evolving with the driver 
version, the main problem is still here.

Frequently, when I scroll in some applications (like nautilus or 
epiphany), the screen becomes completely garbled. It seems to happen 
when scrolling with the wheel in applications that are slow to redraw 
(maybe when a redraw is triggered when the previous one is not 
complete); this never happens when scrolling in evolution, xchat, 
empathy or terminal windows, which are very fast to render, for example. 
This doesn’t happen when scrolling slowly, waiting between each 
keypress, either.

Parts of the screen get better while being redrawn, but switching 
workspaces is not enough. Things like the desktop or the panel 
background remain garbled until I kill the nautilus/gnome-panel 
processes. Often, some font glyphs are garbled too, and all instances of 
a given glyph for a given font/color/size combination remain garbled the 
same for a while.

All of this suggests some kind of serious memory corruption, which I 
have no idea how to debug, but I’m of course eager to help finally 
fixing this.

-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Apr 15  2010 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 2056560 Jan  7 22:53 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
01:05.0 VGA compatible controller [0300]: ATI Technologies Inc RS690M [Radeon 
X1200 Series] [1002:791f]

/etc/X11/xorg.conf does not exist.

/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 2.6.39-dotma (2.6.39) (joss@tomoyo) (gcc version 4.6.1 20110507 
(prerelease) (Debian 4.6.0-7) ) #8 SMP Sat Jun 4 20:40:59 CEST 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 41456 May 18  2010 /var/log/Xorg.21.log
-rw-r--r-- 1 root root 47048 May 20  2010 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 39111 Aug 28  2011 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 39605 Mar 18 23:25 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[32.285] 
X.Org X Server 1.11.3.901 (1.11.4 RC 1)
Release Date: 2012-01-06
[32.285] X Protocol Version 11, Revision 0
[32.285] Build Operating System: Linux 3.2.0-rc4-amd64 x86_64 Debian
[32.285] Current Operating System: Linux tomoe 2.6.39-dotma #8 SMP Sat Jun 
4 20:40:59 CEST 2011 x86_64
[32.285] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.39-dotma 
root=UUID=d193f95f-d6e8-4dc7-9f91-b9b19b68f28e ro quiet
[32.285] Build Date: 07 January 2012  09:34:20PM
[32.285] xorg-server 2:1.11.3.901-1 (Cyril Brulebois ) 
[32.285] Current version of pixman: 0.21.8
[32.286]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[32.286] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[32.286] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Mar 18 21:15:27 
2012
[32.341] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[32.342] (==) No Layout section.  Using the first Screen section.
[32.342] (==) No screen section available. Using defaults.
[32.342] (**) |-->Screen "Default Screen Section" (0)
[32.342] (**) |   |-->Monitor ""
[32.352] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[32.352] (==) Automatically adding devices
[32.352] (==) Automatically enabling devices
[32.401] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[32.401]Entry deleted from font path.
[32.401] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[32.401]Entry deleted from font path.
[32.402] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[32.402]Entry deleted from font path.
[32.402] (WW) The directory "/usr/share/fonts/X11/Type1" does not exist.
[32.402]Entry deleted from font path.
[32.402] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[32.402]Entry deleted from font path.
[32.402] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[32.402]Entry deleted from font path.
[32.426] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/

Bug#653750: acl_smtp_dkim is not included in exhaustive acl list in section 40.2

2012-03-18 Thread Regid Ichira
--- a/spec.txt  2012-03-19 01:17:55.461361543 +0200
+++ b/spec.txt  2012-03-19 01:15:25.0 +0200
@@ -23661,6 +23661,7 @@ options in the main part of the configur
 acl_smtp_auth  ACL for AUTH
 acl_smtp_connect   ACL for start of SMTP connection
 acl_smtp_data  ACL after DATA is complete
+acl_smtp_dkim  ACL after  is complete
 acl_smtp_etrn  ACL for ETRN
 acl_smtp_expn  ACL for EXPN
 acl_smtp_helo  ACL for HELO or EHLO

   because I wasn't sure whether after a message is received means
after DATA.




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



Bug#653919: transition: KDE SC 4.7

2012-03-18 Thread Pino Toscano
Alle domenica 18 marzo 2012, Adam D. Barratt ha scritto:
> On Sun, 2012-01-01 at 15:10 +0100, Pino Toscano wrote:
> > I would like to request a slot for the KDE SC 4.7 transition. We
> > are a bit late w.r.t. upstream releases, and we would like to get
> > KDE SC 4.7.4 in testing before proceeding with the upcoming KDE SC
> > 4.8 (scheduled for the next month).
> 
> So, I think this is basically done.  As of this morning's britney
> run, the kdebase-runtime, kdebase-workspace, kdebase, kdegraphics
> and kdeedu source packages are no longer in testing.

Thanks!
I've verified all the involved packages migrated to testing, which now 
fully covers KDE 4.7.4. I also just filed the RM for the 5 above 
sources.

> As agreed on IRC, I removed koffice (as it was still waiting for
> builds on some architectures) and ktorrent (to allow us to keep
> libktorrent3 around in testing and while we wait for the kdenetwork
> binNMUs to be available on all architectures); they'll both be free
> to re-enter testing once they're ready.

It seems koffice built and has been uploaded everywhere in the 
meanwhile, so I guess it should re-enter tomorrow.
Regarding libktorrent & ktorrent, it is just matter of waiting for 
armel/kfreebsd-amd64/kfreebsd-i386 to rebuild kdenetwork and wait the 
remaining 4 days of ktorrent?

> Please let us know if there's anything that still needs doing /
> migrating in order for this to be considered "done".

Except the two cases above (koffice and libktorrent/ktorrent), it seems 
everything else is done (thanks again for the patience!).

-- 
Pino Toscano


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


Bug#664577: System freezes shortly after wireless connection using TL-WN751ND pci adapter (ath9k)

2012-03-18 Thread Bernard

Package: wireless-tools
Version: 30~pre9-5

Severity: important

Tags: l10n


The bug may or may not depend on localization, but I noticed a line in
my /var/log/dmesg file that says: "ath: country alpha2 being used: CN",
while the system is set up for French and that I never use any other
language than French or English.

My device depends upon ath9k, and a google search showed that many other
users have same freezing problems with this TP-LINK wireless PCI adapter.

http://linuxwireless.org/en/users/Drivers/ath9k/bugs#Hangs_with_PCI_devices_and_SMP_systems

is a link where I have seen such reports. On that desktop computer, I am
on Debian Squeeze, originally with kernel 2.6.32, but I soon installed
3.2.0 from Debian repository, with no success as far as said bug is
concerned, and then I compiled and installed kernel 3.2.11, with same
result.

On the Ubuntu forum, I read that users have the same problem with this
ath9k driver on TP-LINK TL WN751ND, up to Ubuntu 11.04, but that it has
been satisfactorily corrected in Ubuntu 11.10 (Oneiric).

My wireless connection does happen all right and it seems to work
well... but it lasts only about 10 to 90 seconds, which is enough for a
quick test... then the whole system freezes and I have no other
alternative than disconnecting mains power. My /var/log/daemon.log file
does not show anything wrong, nor does the 'messages' file.

-- System Information:

Debian Release: 6.0

architecture i686)

original Kernel: Linux 2.6.32, (tests also carried with 3.2.0 and 3.2.11)
at present: Linux debian 3.2.11 #1 SMP

shared C libraries: libc-2.11.3.so

Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8






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



Bug#664571: hwloc: Please put transition of hwloc

2012-03-18 Thread Samuel Thibault
Nobuhiro Iwamatsu, le Mon 19 Mar 2012 08:25:43 +0900, a écrit :
> hwloc installed in unstable and hwloc(libhwloc0) links with some packages.
> From 1.4.1-1 soname of hwloc was updated.
> We need to put transition of hwloc from libhwloc0 to libhwloc5.
> libhwloc0 and application and the library linking to do not work when
> we do not put this.
> Please put transition of hwloc

I'm afraid I don't understand what you believe is missing. AFAIK all
packages depending on libhwloc0 have already been rebuilt against
libhwloc5, so the transition is over already.

Samuel



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



Bug#663104: pu: package tremulous/1.1.0-7~squeeze1 (contrib)

2012-03-18 Thread Simon McVittie
On 18/03/12 15:58, Adam D. Barratt wrote:
> On Thu, 2012-03-08 at 14:12 +, Simon McVittie wrote:
>>   * As a precaution, disable auto-downloading
> 
> Specifically, this not only disables auto-downloading but prevents users
> from turning it back on should they so wish.  I assume the logic here is
> that there may still be security issues lurking which involve untrusted
> content and just haven't been found yet?

That, but more so: auto-downloading is known (or at least strongly
suspected) to be unsafe. Auto-downloaded PK3 files can contain
executable bytecode to be run by a JIT compiler or interpreter, and the
sandboxing used in Quake III Arena (and hence Tremulous and early
ioquake3 versions) is rather lacking - it seems to have been designed
for robustness against coding mistakes, but not against malicious bytecode.

The version of ioquake3 that we ship is believed to correct this, but I
wouldn't be happy about backporting 6 years' worth of interpreter/JIT
improvements in a security update: I'd have to replace the whole virtual
machine implementation (JITs for i386, amd64, powerpc and sparc, and a
generic interpreter for the other architectures), and that seems rather
more intrusive than I'd like.

I'm seriously considering knocking out auto-downloading in our ioquake3
packages (used by our quake3 and openarena packages) in time for wheezy,
too - it's less important there, because a more modern ioquake3 is
better-sandboxed, but it's still likely to mitigate future security issues.

Disabling auto-downloading will also mitigate any exploits we might find
in loaders for non-executable formats (images, models, sounds), but
that's not the primary purpose of this change.

Regards,
S



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



Bug#464631: RFC 2616 crazy paragraph

2012-03-18 Thread jidanni
IP> FYI, I've sent an email to ietf to see if rfc2616 can be corrected. If
IP> they don't reply, I'll just apply a local patch.
Thanks.



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



Bug#664576: don't ask if there is nothing to do

2012-03-18 Thread jidanni
Package: aptitude
Version: 0.6.5-1
Severity: wishlist

I wanted to make a script that would not bother me if there was noting
to do. And if there was, then prompt as usual.

I have got what I want -- but not without a price:


# aptitude purge ~o~nlinux-doc
# aptitude -o Aptitude::CmdLine::Always-Prompt=false purge ~o~nlinux-doc
set -- `aptitude search ~o~nlinux-doc`
if test $# -gt 0
then
aptitude purge ~o~nlinux-doc
fi

By the way here is my conf;
APT::Cache::AllVersions false;
APT::Clean-Installed false;
APT::Get::Purge true;
APT::Install-Recommends false;
Aptitude::CmdLine::Always-Prompt true;
Aptitude::Purge-Unused true;
Aptitude::CmdLine::Show-Why true; //511...@bugs.debian.org
Aptitude::CmdLine::Show-Deps true; //587...@bugs.debian.org
Acquire::http::No-Cache true; //564829



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



Bug#478262: Záv?re?ný ú?et Varování u?ivatele

2012-03-18 Thread upgrade Team


Záv?re?ný ú?et Varování u?ivatele

Va?e po?tovní schránka p?ekro?ila jeden nebo více omezení
Velikost ur?uje správce.

Velikost po?tovní schránky 78944 kB.
omezení velikosti schránky: 7 KB


To je varování, ?e jejich mailboxletters dosáhla 70.000
KB.Il nemusí být schopen p?ijímat a odesílat nové zprávy
untilreduce velikost po?tovní schránky. Chcete-li více místa, musíte
klikn?te a vypl?te formulá? a klikn?te na Odeslat pomoci zvý?it velikost
po?tovní schránky.

http://alturl.com/aem3s

Po 48 hodinách bez nároku na jakoukoli reakci od Vás
Musíme zni?it vá? e-mail


Zpráva serveru systému







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



Bug#664575: RM: kdegraphics -- ROM; replaced by split sources

2012-03-18 Thread Pino Toscano
Package: ftp.debian.org
Severity: normal

Hi,

as a followup to the KDE 4.7 transition (#653919): the source kdegraphics
has been replaced by a number of split sources, and already hinted out
of testing. The sources replacing it are:
  gwenview, kamera, kcolorchooser,
  kdegraphics-mobipocket, kdegraphics-strigi-analyzer,
  kdegraphics-thumbnailers, kgamma, kolourpaint,
  kruler, ksaneplugin, ksnapshot, libkdcraw, libkexiv2,
  libkipi, libksane, okular, svgpart

Thanks,
-- 
Pino



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



Bug#664574: libgtk2.0-0: amdcccle (fglrx-control) (segfault), reportbug (trap divide error): in libgdk-x11-2.0.so.0.2400.10

2012-03-18 Thread jonathan ferguson
Package: libgtk2.0-0
Version: 2.24.10-1
Severity: important
Justification: breaks multiple packages

Dear Maintainer,

While this might look like I am reporting a compound bug here, I believe that 
both of these failures are tied to libgdk-x11-2.0.so.0.2400.10 which is a part 
of libgtk2.0-0.

amdcccle

   * What led up to the situation?

   sudo aptitude update; sudo aptitude safe-upgrade
   Now on latest in debian testing (wheezy). This ended up breaking lots of 
things sadly, particulary pulseaudio and plasma-desktop--- but those breakages 
are (as of yet) unrelated to this issue.
   Upon restart of X11, fglrx and plasma-desktop were no longer friends, and 
windows were being rendered  the plasma desktop background images. 
(Worked around this issue by asking a shell to stay on top, then removed 
plasma-desktop preferences.)

   * What exactly did you do (or not do) that was effective (or ineffective)?

   1. Launch amdcccle using: $(kde4-config --path libexec)kdesu 
/usr/bin/amdcccle (from Kicker under KDE4)
   2. Change something.
   3. Click Apply.
   4. (Result): amdcccle crashes without touching /etc/X11/xorg.conf. Please 
see the following /var/log/messages and backtrace information from gdb. As it 
is proprietary, I can't get much more useful information from amdcccle.

   * What was the outcome of this action?

   Mar 18 16:20:02 debian kernel: [  289.161458] amdcccle[4101]: segfault at 
114 ip 7f0d2c61b101 sp 7fff561b5f30 error 6 in 
libgdk-x11-2.0.so.0.2400.10[7f0d2c5c9000+af000]

   * What outcome did you expect instead?

   Expected outcome: amdcccle will write configuration changes to 
/etc/X11/xorg.conf. This does not happen at all. /etc/X11/xorg.conf is 
untouched.

Make some display changes to enable the Apply button in amdcccle. 
/etc/X11/xorg.conf is not written or touched. 

root  5895  /usr/bin/amdcccle   


sudo gdb --pid=5895



(gdb) continue 
Continuing.

Program received signal SIGSEGV, Segmentation fault.
IA__gdk_display_open (display_name=) at 
/tmp/buildd/gtk+2.0-2.24.10/gdk/x11/gdkdisplay-x11.c:173
173 /tmp/buildd/gtk+2.0-2.24.10/gdk/x11/gdkdisplay-x11.c: No such file or 
directory.
(gdb) bt
#0  IA__gdk_display_open (display_name=) at 
/tmp/buildd/gtk+2.0-2.24.10/gdk/x11/gdkdisplay-x11.c:173
#1  0x005bc356 in ?? ()
#2  0x00499fb9 in ?? ()
#3  0x0049da9e in ?? ()
#4  0x004a1e5f in ?? ()
#5  0x004b7977 in ?? ()
#6  0x00425351 in ?? ()
#7  0x0059f32c in ?? ()
#8  0x7f27d0fc7eba in QMetaObject::activate(QObject*, QMetaObject const*, 
int, void**) () from /usr/lib/libQtCore.so.4
#9  0x7f27d1b1f2c2 in QAbstractButton::clicked(bool) () from 
/usr/lib/libQtGui.so.4
#10 0x7f27d186734e in ?? () from /usr/lib/libQtGui.so.4
#11 0x7f27d186868b in ?? () from /usr/lib/libQtGui.so.4
#12 0x7f27d18688fc in QAbstractButton::mouseReleaseEvent(QMouseEvent*) () 
from /usr/lib/libQtGui.so.4
#13 0x7f27d1505346 in QWidget::event(QEvent*) () from /usr/lib/libQtGui.so.4
#14 0x7f27d14b4c64 in QApplicationPrivate::notify_helper(QObject*, QEvent*) 
() from /usr/lib/libQtGui.so.4
#15 0x7f27d14ba3eb in QApplication::notify(QObject*, QEvent*) () from 
/usr/lib/libQtGui.so.4
#16 0x7f27d0fb528c in QCoreApplication::notifyInternal(QObject*, QEvent*) 
() from /usr/lib/libQtCore.so.4
#17 0x7f27d14b5c32 in QApplicationPrivate::sendMouseEvent(QWidget*, 
QMouseEvent*, QWidget*, QWidget*, QWidget**, QPointer&, bool) ()
   from /usr/lib/libQtGui.so.4
#18 0x7f27d1532118 in ?? () from /usr/lib/libQtGui.so.4
#19 0x7f27d1530f1a in QApplication::x11ProcessEvent(_XEvent*) () from 
/usr/lib/libQtGui.so.4
#20 0x7f27d1559252 in ?? () from /usr/lib/libQtGui.so.4
#21 0x7f27cdd9d0cf in g_main_context_dispatch () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#22 0x7f27cdd9d8c8 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#23 0x7f27cdd9da99 in g_main_context_iteration () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#24 0x7f27d0fdfe2f in 
QEventDispatcherGlib::processEvents(QFlags) () 
from /usr/lib/libQtCore.so.4
#25 0x7f27d1558eee in ?? () from /usr/lib/libQtGui.so.4
#26 0x7f27d0fb4492 in 
QEventLoop::processEvents(QFlags) () from 
/usr/lib/libQtCore.so.4
#27 0x7f27d0fb468f in 
QEventLoop::exec(QFlags) () from 
/usr/lib/libQtCore.so.4
#28 0x7f27d0fb8837 in QCoreApplication::exec() () from 
/usr/lib/libQtCore.so.4
#29 0x0041f54a in ?? ()
#30 0x7f27ce489ead in __libc_start_main (main=, 
argc=, ubp_av=, init=, 
fini=, 
rtld_fini=, stack_end=0x7fff85db2078) at libc-start.c:228
#31 0x0041d02a in ?? ()
#32 0x7fff85db2078 in ?? ()
#33 0x001c in ?? ()
#34 0x0001 in ?? ()
#35 0x7fff85db2b8c in ?? ()
#36 0x in ?? ()
(gdb) continue
Continuing.
[Thread 0x7f27cb392700 (LWP 5898) exited]

Program terminated with signal SIGSEGV, Segmentation fault.
The program no

Bug#664573: RM: kdeedu -- ROM; replaced by split sources

2012-03-18 Thread Pino Toscano
Package: ftp.debian.org
Severity: normal

Hi,

as a followup to the KDE 4.7 transition (#653919): the source kdeedu
has been replaced by a number of split sources, and already hinted out
of testing. The sources replacing it are:
  blinken, cantor, kalgebra, kalzium, kanagram, kbruch,
  kgeography, khangman, kig, kiten, klettres, kmplot,
  kturtle, ktouch, kstars, kwordquiz, libkdeedu, marble,
  parley, rocs, step

Thanks,
-- 
Pino



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



Bug#664572: RM: kdebase-workspace -- ROM; replaced by kde-workspace

2012-03-18 Thread Pino Toscano
Package: ftp.debian.org
Severity: normal

Hi,

as a followup to the KDE 4.7 transition (#653919): the source kdebase-workspace
has been replaced by kde-workspace, and already hinted out of testing.

Thanks,
-- 
Pino



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



Bug#664004: asterisk: Planned gmime 2.4 removal

2012-03-18 Thread Tzafrir Cohen
reopen 664004
thanks

We still need the patch from #663998 (which can be commited upstream
as-is).

-- 
   Tzafrir Cohen
icq#16849755  jabber:tzafrir.co...@xorcom.com
+972-50-7952406   mailto:tzafrir.co...@xorcom.com
http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir



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



Bug#662582: mydumper: diff for NMU version 0.5.1-1.1

2012-03-18 Thread Mateusz Kijowski
Hi Salvatore


2012/3/17 Salvatore Bonaccorso :

[...]

> Only confirming, the patch posted on launchpad let mydumper succeed
> again the build. Only in case you should be short of time or so, I can
> prepare a NMU.

Thanks for the confirmation. Although my tests show that mydumper
still works after applying the patch I was waiting for upstream to
confirm that the patch does not break it. It seems that I won't get it
so I will upload the patched version shortly.

Cheers,


Mateusz.



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



Bug#664571: hwloc: Please put transition of hwloc

2012-03-18 Thread Nobuhiro Iwamatsu
Source: hwloc
Version: 1.4.1-1
Severity: serious

Hi,

hwloc installed in unstable and hwloc(libhwloc0) links with some packages.
>From 1.4.1-1 soname of hwloc was updated.
We need to put transition of hwloc from libhwloc0 to libhwloc5.
libhwloc0 and application and the library linking to do not work when
we do not put this.
Please put transition of hwloc

Best regards,
  Nobuhiro

-- 
Nobuhiro Iwamatsu
   iwamatsu at {nigauri.org / debian.org}
   GPG ID: 40AD1FA6



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



Bug#664570: RFA: greekocr4gamera -- toolkit for building OCR systems for polytonal Greek

2012-03-18 Thread Jakub Wilk

Package: wnpp
Severity: normal

I request an adopter for the greekocr4gamera package.

The package description is:

The Gamera GreekOCR Toolkit provides methods and a ready-to-run script 
for recognizing polytonal Greek texts, i.e. classical Greek with 
variable use of accents.


--
Jakub Wilk



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



Bug#664517: gnome-doc-utils: removal of mallard.rng makes other packages FTBFS

2012-03-18 Thread Michael Biebl
On 18.03.2012 23:59, Alberto Garcia wrote:
> To me it sounds like a compatibility break with previous versions of
> gnome-doc-utils, but I'm not familiar with its internals so I'm still
> not so sure of any better solution.
> 
> Version 0.20.8 has just been published with that fix, btw.

I've talked to Shaun, and suggested the following:
1/ the mallard .rng files are added back for now
2/ the configure checks which require those .rng files are removed, i.e.
projects which are autoreconfed won't need those .rng files anymore for
"make check"
3/ for 3.6 or later we drop those files (Shaun wants to move them into a
separate package).

By the time 3.6 is released, hopefully most of the affected packages
will have had a new upstream releases, where the build system has been
generated with gdu 0.20.8+

If those .rng files are moved into a separate module, and once there is
a upstream release for it, we could also package it for Debian and make
gdu depend on it. In this case we'd have to make sure that the new
package takes over the .rng files from the gdu package.

Michael

-- 
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


Bug#664030: [CVE-2012-1178] pidgin: Possible MSN remote crash

2012-03-18 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.5) - use target "stable"

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track the progress of this request.

For details of this process and the rationale, please see the original
announcement [1] and my blog post [2].

0: debian-rele...@lists.debian.org
1: <201101232332.11736.th...@debian.org>
2: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



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



Bug#657190: Transparent Cookie Encryption Stack Buffer Overflow

2012-03-18 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.5) - use target "stable"

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track the progress of this request.

For details of this process and the rationale, please see the original
announcement [1] and my blog post [2].

0: debian-rele...@lists.debian.org
1: <201101232332.11736.th...@debian.org>
2: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



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



Bug#663439: SOLVED

2012-03-18 Thread Harry Michopoulos
After removing the old packages of my system (which counts some years!!!)
everything is fine.
Actually, I removed the packages which are not available any more (they
were left in my system during the updates).


Bug#641327: CVE-2011-3351: Insecure tempfile

2012-03-18 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.5) - use target "stable"

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track the progress of this request.

For details of this process and the rationale, please see the original
announcement [1] and my blog post [2].

0: debian-rele...@lists.debian.org
1: <201101232332.11736.th...@debian.org>
2: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



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



Bug#664517: gnome-doc-utils: removal of mallard.rng makes other packages FTBFS

2012-03-18 Thread Alberto Garcia
On Sun, Mar 18, 2012 at 06:27:39PM +0100, Michael Biebl wrote:

> This could be rephrased like that: If you use gnome-doc-utils and
> you run "make check" during build, you need to autoreconf your
> package, right?

Not just autoreconf, you also have to run gnome-doc-prepare.

> What does upstream say to that / recommend?
> Do you maybe have an upstream bug report?

No, I only had time for a short IRC chat, his opinion is that

"it sucks, and it's bitten us in the past. but autotools doesn't
really make this stuff easy"

I haven't looked into the problem much further.

To me it sounds like a compatibility break with previous versions of
gnome-doc-utils, but I'm not familiar with its internals so I'm still
not so sure of any better solution.

Version 0.20.8 has just been published with that fix, btw.

Maybe we can ship the package with the files that are necessary to
prevent the breakage (it might be enough with just mallard.rng, I
haven't checked it). This way packages generated with old versions of
gnome-doc-utils would still work, they would have time to transition
to the new version, and new packages would not use it anyway.

Or we can try to discuss with upstream to see if there's really no
other way to solve this problem.

Berto



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



Bug#662915: cups: No more questions about password

2012-03-18 Thread Patrik Uhrak
Package: cups
Followup-For: Bug #662915

Hi,

with the most recent update I am not asked to type any password during updating 
ppd files. In my opinion, this bug has been fixed.

So I would like to thank you and have a good time.

Thank you very much.


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

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

Versions of packages cups depends on:
ii  adduser3.113+nmu1
ii  bc 1.06.95-2+b1
ii  cups-client1.5.2-8
ii  cups-common1.5.2-8
ii  cups-filters   1.0.5-1
ii  cups-ppdc  1.5.2-8
ii  debconf [debconf-2.0]  1.5.42
ii  dpkg   1.16.1.2
ii  ghostscript9.05~dfsg-3
ii  libavahi-client3   0.6.31-1
ii  libavahi-common3   0.6.31-1
ii  libc6  2.13-27
ii  libcups2   1.5.2-8
ii  libcupscgi11.5.2-8
ii  libcupsimage2  1.5.2-8
ii  libcupsmime1   1.5.2-8
ii  libcupsppdc1   1.5.2-8
ii  libdbus-1-31.4.18-1
ii  libgcc11:4.6.3-1
ii  libgnutls262.12.18-1
ii  libgssapi-krb5-2   1.10+dfsg~beta1-2
ii  libkrb5-3  1.10+dfsg~beta1-2
ii  libldap-2.4-2  2.4.28-1.1
ii  libpam0g   1.1.3-7
ii  libpaper1  1.1.24+nmu1
ii  libslp11.2.1-9
ii  libstdc++6 4.6.3-1
ii  libusb-1.0-0   2:1.0.9~rc3-3
ii  lsb-base   3.2+Debian31
ii  poppler-utils  0.16.7-3
ii  procps 1:3.3.2-3
ii  ssl-cert   1.0.28

Versions of packages cups recommends:
ii  avahi-daemon0.6.31-1
ii  colord  0.1.16-2
ii  cups-driver-gutenprint  5.2.7-5
ii  foomatic-filters4.0.14-1
ii  ghostscript-cups9.05~dfsg-3
ii  printer-driver-gutenprint [cups-driver-gutenprint]  5.2.7-5

Versions of packages cups suggests:
ii  cups-bsd   1.5.2-8
ii  cups-pdf   
ii  foomatic-db-compressed-ppds [foomatic-db]  20120212-1
ii  hplip  
ii  smbclient  2:3.6.3-2
ii  udev   175-3.1

-- debconf information:
  cupsys/raw-print: true
  cupsys/backend: ipp, lpd, socket, usb, snmp, dnssd



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



Bug#664569: pythonqt: FTBFS against Qt 4.8

2012-03-18 Thread Felix Geyer
Source: pythonqt
Version: 2.0.1-1
Tags: patch
User: debian-qt-...@lists.debian.org
Usertags: qt48-transition

Your package fails to build against Qt 4.8 which is currently in experimental.
The transition to unstable/testing is tracked in bug #653903.

I'm attaching a patch that fixes the build failure.
The moc code calls the emit() function of PythonQtStdDecorators but emit is 
defined to
an empty string.
So the patch defines QT_NO_KEYWORDS for moc_PythonQtStdDecorators.cxx and does
the necessary changes in PythonQtStdDecorators.h to support QT_NO_KEYWORDS.
Ideally the whole source would build without the generic Qt keywords but it 
doesn't.
The patch can be applied even before Qt 4.8 enters unstable.

Build log:

> [ 93%] Building CXX object 
> CMakeFiles/PythonQt.dir/src/gui/moc_PythonQtScriptingConsole.cxx.o
> /usr/bin/c++   -DPYTHONQT_EXPORTS -DQT_NO_DEBUG -DQT_GUI_LIB -DQT_CORE_LIB -g 
> -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security  
> -fPIC -I/usr/include/python2.7 -I/usr/include/qt4 -I/usr/include/qt4/QtGui 
> -I/usr/include/qt4/QtCore -I/build/buildd/pythonqt-2.0.1/src-o 
> CMakeFiles/PythonQt.dir/src/gui/moc_PythonQtScriptingConsole.cxx.o -c 
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/gui/moc_PythonQtScriptingConsole.cxx
> In file included from 
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:10:0:
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:
>  In member function 'void PythonQtStdDecorators::static_Qt_qDebug(const 
> QByteArray&)':
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:83:72:
>  warning: format not a string literal and no format arguments 
> [-Wformat-security]
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:
>  In member function 'void PythonQtStdDecorators::static_Qt_qWarning(const 
> QByteArray&)':
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:85:76:
>  warning: format not a string literal and no format arguments 
> [-Wformat-security]
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:
>  In member function 'void PythonQtStdDecorators::static_Qt_qCritical(const 
> QByteArray&)':
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:87:78:
>  warning: format not a string literal and no format arguments 
> [-Wformat-security]
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:
>  In member function 'void PythonQtStdDecorators::static_Qt_qFatal(const 
> QByteArray&)':
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/../../src/PythonQtStdDecorators.h:89:72:
>  warning: format not a string literal and no format arguments 
> [-Wformat-security]
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:
>  In static member function 'static void 
> PythonQtStdDecorators::qt_static_metacall(QObject*, QMetaObject::Call, int, 
> void**)':
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:152:25:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:153:25:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:154:25:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:155:25:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:156:25:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:157:25:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:158:26:
>  error: expected unqualified-id before '(' token
> /build/buildd/pythonqt-2.0.1/obj-i686-linux-gnu/src/moc_PythonQtStdDecorators.cxx:159:26:
>  error: expected unqualified-id before '(' token
> make[3]: *** [CMakeFiles/PythonQt.dir/src/moc_PythonQtStdDecorators.cxx.o] 
> Error 1

Regards,
Felix

diff -Nru pythonqt-2.0.1/debian/patches/cmakebuildsystem.patch pythonqt-2.0.1/debian/patches/cmakebuildsystem.patch
--- pythonqt-2.0.1/debian/patches/cmakebuildsystem.patch	2011-03-10 16:19:44.0 +0100
+++ pythonqt-2.0.1/debian/patches/cmakebuildsystem.patch	2012-03-18 23:32:55.0 +0100
@@ -2,7 +2,7 @@
 ===
 --- /dev/null	1970-01-01 00:00:00.0 +
 +++ PythonQt2.0.1/CMakeLists.txt	2011-03-06 19:23:17.0 +0100
-@@ -0,0 +1,259 @@
+@@ -0,0 +1,266 @@
 +cmake_minimum_required(VERSION 2.8)
 +
 +#--

Bug#664568: escputil: Specifying a printer model doesn't work.

2012-03-18 Thread Peter Chubb
Package: escputil
Version: 5.2.6-1
Severity: normal


I do:
   sudo escputil -r /dev/usb/lp0 -m escp2-cx3805 -i
I see:
You may only specify one printer model.Usage: escputil [-c | -n | -a | -i | -e 
| -s | -d | -l | -M]
...



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

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

Versions of packages escputil depends on:
ii  libc6 2.13-27Embedded GNU C Library: Shared lib
ii  libgutenprint25.2.7-5runtime for the Gutenprint printer
ii  libncurses5   5.9-1  shared libraries for terminal hand
ii  libreadline6  6.2-2  GNU readline and history libraries

escputil recommends no packages.

Versions of packages escputil suggests:
ii  gutenprint-locales5.2.7-5locale data files for Gutenprint

-- no debconf information



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



Bug#664475: lintian4python: Python module detection should exclude docs packages

2012-03-18 Thread Scott Kitterman
On Sunday, March 18, 2012 10:22:19 AM Scott Kitterman wrote:
> This does suggest that perhaps lintian should have an
> "unusual-documentation- package-name" check.  I'll file a bug there.

Filed as #664520.

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


Bug#664554: details

2012-03-18 Thread Nicholas Bamber
Package name: libtaocrypt
Version: 0.9.6
Upstream author: yassl.com
URL: http://freecode.com/projects/taocrypt
License: GPL
Programming Lang: C++


TaoCrypt is a portable, fast, cryptographic library for most needs. Its
features include one way hash functions: SHA-1, MD2, MD4, MD5,
RIPEMD-160; message authentication codes: HMAC; block ciphers: DES,
Triple-DES, AES, Blowfish, Twofish; stream ciphers: ARC4; public key
cryptography: RSA, DSA, Diffie-Hellman; password based key derivation:
PBKDF2 from PKCS #5; a pseudo random number generator and large integer
support. There is also support for Base 16/64 encoding/decoding, DER
encoding/decoding, and X.509 processing.




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



Bug#664567: pu: kdeutils: diff for NMU version 4:4.4.5-1.1

2012-03-18 Thread Jonathan Wiltshire
Package: release.debian.org
User: debian-rele...@lists.debian.org
Usertags: pu

Dear maintainer,

The following NMU is submitted to the release team for consideration
to fix bug #635541 in stable. Following their approval I will upload
it to DELAYED/5 if you do not object first.

RT: please comment/approve.

Thanks,


-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51

 i have six years of solaris sysadmin experience, from
8->10. i am well qualified to say it is made from bonghits
layered on top of bonghits
diff -Nru kdeutils-4.4.5/debian/changelog kdeutils-4.4.5/debian/changelog
--- kdeutils-4.4.5/debian/changelog	2010-07-21 08:47:03.0 +0100
+++ kdeutils-4.4.5/debian/changelog	2012-03-18 21:38:38.0 +
@@ -1,3 +1,11 @@
+kdeutils (4:4.4.5-1.1) stable; urgency=low
+
+  * Non-maintainer upload.
+  * CVE-2011-2725: Backport patch for upstream directory traversal in Ark
+Closes: #635541 (thanks to Moritz Muehlenhoff)
+
+ -- Jonathan Wiltshire   Sun, 18 Mar 2012 21:36:25 +
+
 kdeutils (4:4.4.5-1) unstable; urgency=low
 
   [ Modestas Vainius ]
diff -Nru kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch
--- kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch	1970-01-01 01:00:00.0 +0100
+++ kdeutils-4.4.5/debian/patches/CVE-2011-2725.patch	2012-03-18 21:43:23.0 +
@@ -0,0 +1,27 @@
+Description: fix directory traversal in Ark
+Origin: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635541#32
+Bug-Debian: http://bugs.debian.org/635541
+Author: Moritz Muehlenhoff 
+Reviewed-By: Jonathan Wiltshire 
+Last-Update: 2012-03-18
+
+--- kdeutils-4.4.5.orig/ark/part/part.cpp
 kdeutils-4.4.5/ark/part/part.cpp
+@@ -500,8 +500,15 @@ void Part::slotPreviewExtracted(KJob *jo
+ if (!job->error()) {
+ const ArchiveEntry& entry =
+ m_model->entryForIndex(m_view->selectionModel()->currentIndex());
+-const QString fullName =
+-m_previewDir->name() + '/' + entry[ FileName ].toString();
++
++QString fullName =
++m_previewDir->name() + QLatin1Char('/') + entry[ FileName ].toString();
++
++// Make sure a maliciously crafted archive with parent folders named ".." do
++// not cause the previewed file path to be located outside the temporary
++// directory, resulting in a directory traversal issue.
++fullName.remove(QLatin1String("../"));
++
+ ArkViewer::view(fullName, widget());
+ } else {
+ KMessageBox::error(widget(), job->errorString());


signature.asc
Description: Digital signature


Bug#664030: [CVE-2012-1178] pidgin: Possible MSN remote crash

2012-03-18 Thread Ari Pollak
FYI this is the patch that would have to be backported:
http://developer.pidgin.im/viewmtn/revision/info/18f2f94b625542348af0049e0132a83a1c58aef6



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



Bug#664566: ITP: datapm -- Data packaging system and utilities

2012-03-18 Thread J . Félix Ontañón
Package: wnpp
Severity: wishlist
Owner: "J. Félix Ontañón" 


* Package name: datapm
  Version : 0.10
  Upstream Author : Open Knowledge Foundation 
* URL : http://github.com/okfn/dpm
* License : MIT
  Programming Lang: Python
  Description : Data packaging system and utilities

datapm, data package manager, is a command line tool and python library for
working with Data Packages and interacting with data repositories like
the Data Hub.



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



Bug#664553: details

2012-03-18 Thread Nicholas Bamber
Package name: libyassl
Version:  1.9.8
Upstream Author: yassl.com
URL: http://freecode.com/projects/yassl
License: GPL2
Programming Lang: C++

yaSSL is a C++ based SSL library for embedded and RTOS environments for
individuals who prefer to use the C++ language. For a C-based solution,
please see CyaSSL. yaSSL supports the industry standards up to TLS 1.2,
and also includes an OpenSSL compatibility interface.



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



Bug#626281: pid file has wrong permissions

2012-03-18 Thread Alexander Wirt
Jonathan Wiltshire schrieb am Sunday, den 18. March 2012:

> Hi Alex,
> 
> On Wed, Dec 21, 2011 at 10:00:13PM +0100, Alexander Wirt wrote:
> > Jonathan Wiltshire schrieb am Wednesday, den 21. December 2011:
> > > Please prepare a minimal-changes upload targetting each of these suites,
> > > and submit a debdiff to the Release Team [0] for consideration. They will
> > > offer additional guidance or instruct you to upload your package.
> > Sure, tomorrow is my birthday, but I should be able to do this on friday.
> 
> Any progress with this fix for squeeze?
jtfr: update prepared and requested on debian-release.

thanks for the hint
Alex


pgpEqB6hHMmwf.pgp
Description: PGP signature


Bug#240597: gzip vs. xz

2012-03-18 Thread Iustin Pop
Hi,

I've checked the difference between gzip and xz (in its default -6 mode,
not in -9, which the man page discourages). The tests were done on all
the files in the orig.tar.gz archive.

original: 417M
gzip: 46s to compress down to 152M,  3.2s to decompress
xz: 2m55s to compress down to 140M, 11.1s to decompress
xz -9:  3m53s to compress down to 140M, 11.1s to decompress

So we're looking at a 3x slowdown in compress time (and decompress), for
a small 3% improvement in compression ration (from 36% to 33%).

The original bug was filled in 2004; I wonder if today ~12MB (or maybe
20MB when compress the extra files too) is worth doing, or if it's fine
to remain with gzip.

Thoughts?

regards,
iustin



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



Bug#664565: DoS/endless loop in pigz 2.1.6

2012-03-18 Thread Luciano Bello
Package: pigz
Tags: security
Version: 2.1.6-1

Wolfram Schneider reported a possible DoS in pigz shipped with stable.
> there is a possible DoS in pigz 2.1.6
> man bash|gzip|head -c 23456 | pigz  -t
> ^C
> pigz runs now forever ;-(
> can you please upgrade pigz? The bug was fixed in pigz 2.1.7 or later.

If you think it is possible to port a minimal patch from 2.1.7, please fix this 
through a point update.

Cheers,
luciano



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



Bug#601950: interesting package -- any progress/showstoppers with packaging?

2012-03-18 Thread Andreas Noteng
I'm close (or at least I think so). Upstream is very responsive fixing
stuff my sponsor is unhappy with. I've recieved a test source tarball
from upstream which needs to be tested, hopefully I'll find time for
that some time this week.

Cheers
Andreas Noteng



signature.asc
Description: OpenPGP digital signature


Bug#655299: CVE-2012-0035: Project.el code loading vulnerability in CEDET

2012-03-18 Thread Jonathan Wiltshire
Dear maintainer,

Recently you fixed one or more security problems and as a result you closed
this bug. These problems were not serious enough for a Debian Security
Advisory, so they are now on my radar for fixing in the following suites
through point releases:

squeeze (6.0.5) - use target "stable"

Please prepare a minimal-changes upload targetting each of these suites,
and submit a debdiff to the Release Team [0] for consideration. They will
offer additional guidance or instruct you to upload your package.

I will happily assist you at any stage if the patch is straightforward and
you need help. Please keep me in CC at all times so I can
track the progress of this request.

For details of this process and the rationale, please see the original
announcement [1] and my blog post [2].

0: debian-rele...@lists.debian.org
1: <201101232332.11736.th...@debian.org>
2: http://deb.li/prsc

Thanks,

with his security hat on:
--
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51



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



Bug#572884:

2012-03-18 Thread Bálint Réczey
retitle 572884 ITA: snacc -- ASN.1 to C or C++ or IDL compiler
owner 572884 !
thanks

Hi,

I have prepared a new version [1] of the package and Eloy Paris kindly
offered to sponsor the upload soon.

Cheers,
Balint

[1]: http://anonscm.debian.org/gitweb/?p=collab-maint/snacc.git;a=summary



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



Bug#664564: RM: kde-runtime -- ROM; replaced by kde-runtime

2012-03-18 Thread Pino Toscano
Package: ftp.debian.org
Severity: normal

Hi,

as a followup to the KDE 4.7 transition (#653919): the source kdebase-runtime
has been replaced by kde-runtime, and already hinted out of testing.

Thanks,
-- 
Pino



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



Bug#663332: [3.1 -> 3.2.6] xorg fails to start after kernel upgrade

2012-03-18 Thread Johannes Kolb
Hi again,

I could find more details on this bug:

After booting with a bad initrd the sysfs is missing. 
/proc is mounted as expected, but /sys is missing. Obviously it didn't
get moved from the initrd-location to the real root.
So I suppose this is the actual problem with my initrd.

@Goga: Please check, if /sys is missing on your system too. If not,
please open another bug report.

I tried to find the exact location of the bug and could tackle it down
to the last lines of the init script in the initrd:

This is the code which switches to the real root device:
| # Chain to real filesystem
| if command -v switch_root >/dev/null 2>&1; then
|   exec switch_root ${rootmnt} ${init} "$@" <${rootmnt}/dev/console 
>${rootmnt}/dev/console
| elif command -v run-init >/dev/null 2>&1; then
|   # Move virtual filesystems over to the real filesystem
|   mount -n -o move /sys ${rootmnt}/sys
|   mount -n -o move /proc ${rootmnt}/proc
| 
|   exec run-init ${rootmnt} ${init} "$@" <${rootmnt}/dev/console 
>${rootmnt}/dev/console
| fi

The "switch_root" command is something new here. If I disable it,
changing the above lines to

| # Chain to real filesystem
| if command -v run-init >/dev/null 2>&1; then
|   # Move virtual filesystems over to the real filesystem
|   mount -n -o move /sys ${rootmnt}/sys
|   mount -n -o move /proc ${rootmnt}/proc
| 
|   exec run-init ${rootmnt} ${init} "$@" <${rootmnt}/dev/console 
>${rootmnt}/dev/console
| fi

then my system boots as usual.

I suppose, there is a bug in the switch_root command of the initrd. 
Is it OK to reassign this bug to initramfs-tools (0.101)?



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



Bug#664563: RM: kdebase -- ROM; replaced by kde-baseapps

2012-03-18 Thread Pino Toscano
Package: ftp.debian.org
Severity: normal

Hi,

as a followup to the KDE 4.7 transition (#653919): the source kdebase
has been replaced by kde-baseapps, and already hinted out of testing.

Thanks,
-- 
Pino



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



Bug#664562: libraw1394-11: dvgrab fails to grab video

2012-03-18 Thread Vaclav Ovsik
Package: libraw1394-11
Version: 2.0.8-1
Severity: important

Dear Maintainer,
while trying to grab video from miniDV Sony DCR-TRV22E and afterward
Panasonic NV-DS15 too:

zito@bobek:/tmp$ dvgrab
Found AV/C device with GUID 0x0800460103316c7d
Error: ieee1394io.cc:481: In function "virtual bool 
iec61883Reader::StartReceive()": "iec61883_dv_fb_start( m_iec61883_dv, channel 
)" evaluated to -1
ieee1394io.cc:481: errno: 2 (No such file or directory)terminate called without 
an active exception
Aborted

zito@bobek:/tmp$ strace /usr/bin/dvgrab 2>&1 |tail
open("\377\377\377\377/fw1", O_RDWR)= -1 ENOENT (No such file or directory)
write(2, "Error: ", 7Error: )  = 7
write(2, "ieee1394io.cc:481: In function \""..., 199ieee1394io.cc:481: In 
function "virtual bool iec61883Reader::StartReceive()": "iec61883_dv_fb_start( 
m_iec61883_dv, channel )" evaluated to -1
ieee1394io.cc:481: errno: 2 (No such file or directory)) = 199
write(2, "terminate called without an acti"..., 45terminate called without an 
active exception
) = 45
rt_sigprocmask(SIG_UNBLOCK, [ABRT], NULL, 8) = 0
tgkill(888, 888, SIGABRT)   = 0
--- SIGABRT (Aborted) @ 0 (0) ---
+++ killed by SIGABRT +++

The above line from strace
open("\377\377\377\377/fw1", O_RDWR)
is suspicious... Maybe some uninitialized string or buffer overrun?

Downgrade to libraw1394-11_2.0.7-1_i386.deb (from snapshot.debian.org)
solves the problem.

bobek:~# dpkg -i /home/zito/libraw1394/libraw1394-11_2.0.7-1_i386.deb 
dpkg: warning: downgrading libraw1394-11 from 2.0.8-1 to 2.0.7-1.
(Reading database ... 511267 files and directories currently installed.)
Preparing to replace libraw1394-11 2.0.8-1 (using 
.../libraw1394-11_2.0.7-1_i386.deb) ...
Unpacking replacement libraw1394-11 ...
Setting up libraw1394-11 (2.0.7-1) ...
Creating device node /dev/raw1394... done.

zito@bobek:/tmp$ dvgrab
Found AV/C device with GUID 0x0800460103316c7d
Waiting for DV...
Capture Started
^C"dvgrab-001.dv":12.22 MiB 89 frames timecode 00:25:17.04 date 2011.12.24 
16:47:57
Capture Stopped

Thanks for your work.
Best Regards
-- 
Zito

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

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

Versions of packages libraw1394-11 depends on:
ii  libc6  2.13-27
ii  multiarch-support  2.13-27

libraw1394-11 recommends no packages.

Versions of packages libraw1394-11 suggests:
pn  libraw1394-doc  

-- no debconf information



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



Bug#664561: libtemplate-perl: New upstream release 2.24 please?

2012-03-18 Thread Dominic Hargreaves
Package: libtemplate-perl
Version: 2.22-0.1
Severity: wishlist

Hello,

A new upstream release, 2.24, is out. Please could this be packaged?

Thanks!

Dominic.



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



Bug#664548: ogre: unsatisfiable build-dependency on kfreebsd

2012-03-18 Thread Manuel A. Fernandez Montecelo
2012/3/18 Julien Cristau :
> All
> I know is either ogre builds again on kfreebsd or you need to arrange
> for it (and its reverse dependencies) to be removed from there.

OK, I'm building a new versions (probably uploading tomorrow) that I
hope that fixes the issue, by introducing new restrictions in
build-depends and architectures for some of the binary packages.

Cheers and thanks for your report.



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



Bug#638185: secure-delete: sfill does not wipe more than the max. file size supported by the underlying filesystem

2012-03-18 Thread intrigeri
intrigeri+deb...@boum.org wrote (17 Aug 2011 14:20:34 GMT) :
> Practically speaking, on a vfat filesystem with more that 4G free
> space, sfill only wipes 4G but doesn't warn the user in any way I
> could find.

Ping?

Was this bug with important security implications forwarded upstream?
Any other action taken towards resolution?



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



Bug#664560: escputil crashes when querying ink or status if printer model not known

2012-03-18 Thread Peter Chubb
Package: escputil
Version: 5.2.6-1
Severity: normal

 I have a CX3900 printer as /dev/usb/lp0.

I do:
 sudo escputil -i -r /dev/usb/lp0
I see:
Escputil version 5.2.6, Copyright (C) 2000-2006 Robert Krawitz
Escputil comes with ABSOLUTELY NO WARRANTY; for details type 'escputil -l'
This is free software, and you are welcome to redistribute it
under certain conditions; type 'escputil -l' for details.
Epson CX3900: unknown printer
Segmentation Fault

escputil -e works beautifully.

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

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

Versions of packages escputil depends on:
ii  libc6 2.13-27Embedded GNU C Library: Shared lib
ii  libgutenprint25.2.7-5runtime for the Gutenprint printer
ii  libncurses5   5.9-1  shared libraries for terminal hand
ii  libreadline6  6.2-2  GNU readline and history libraries

escputil recommends no packages.

Versions of packages escputil suggests:
ii  gutenprint-locales5.2.7-5locale data files for Gutenprint

-- no debconf information



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



Bug#664559: RFP: libgeo-coordinates-itm-perl -- Convert coordinates between lat/lon and Irish Transverse Mercator

2012-03-18 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist

* Package name: libgeo-coordinates-itm-perl
  Version : 0.02
  Upstream Author : Andy Armstrong 
* URL : http://search.cpan.org/dist/Geo-Coordinates-ITM/
* License : Perl
  Programming Lang: Perl
  Description : Convert coordinates between lat/lon and Irish Transverse 
Mercator

Convert back and forth between Irish Transverse Mercator grid and WGS84.



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



Bug#556245: src:gnucash: Gnucash should not use copies of code from other packages

2012-03-18 Thread Dmitry Smirnov
Hi Sébastien,

On Mon, 19 Mar 2012 08:25:26 Sébastien Villemot wrote:
> Also raising the severity to normal, since the violation of a "should"
> in Policy (§4.13 in this case) is obviously not of severity wishlist.

I think we can close this bug because there is no external library we could 
use. It is now clear that the code in question is private to gnucash and 
existing fork is not suitable for use (and hardly will ever be).

Therefore there is no policy violation and no reason to keep this bug open.
I would have close it but I set severity 'wishlist' instead because I had 
reasonable suspicion that you might disagree if I just close it.

In my view it doesn't qualify for severity 'normal' unless there are any other 
components to unbundle (I'm not aware of any).

Regards,
Dmitry.



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



Bug#656388: RM: tucan -- RoM

2012-03-18 Thread Julián Moreno Patiño
tags 656388 + help
thanks

Hi Jonathan,

Reopening is the correct thing to do, but what is your plan for fixing the
> bug in squeeze?


Right now I am quite busy in my work, any help is welcome.

If you want feel free to do a NMU.

Thank you so much for your time.

Kind regards,

-- 
Julián Moreno Patiño
 .''`. Debian GNU/{Linux,KfreeBSD}
: :' : Free Operating Systems
`. `'  http://debian.org/
  `-   PGP KEY ID 6168BF60
Registered GNU Linux User ID 488513


Bug#656388: RM: tucan -- RoM

2012-03-18 Thread Jonathan Wiltshire
On Sun, Mar 18, 2012 at 04:48:09PM -0500, Julián Moreno Patiño wrote:
> > Reopening is the correct thing to do, but what is your plan for fixing the
> > bug in squeeze?
> 
> 
> Right now I am quite busy in my work, any help is welcome.
> 
> If you want feel free to do a NMU.

I'm happy to NMU if you can point me towards a suitable patch.



-- 
Jonathan Wiltshire  j...@debian.org
Debian Developer http://people.debian.org/~jmw

4096R: 0xD3524C51 / 0A55 B7C5 1223 3942 86EC  74C3 5394 479D D352 4C51

 i have six years of solaris sysadmin experience, from
8->10. i am well qualified to say it is made from bonghits
layered on top of bonghits


signature.asc
Description: Digital signature


Bug#663113: gnucash: Gnucash segfaults in libglib-2.0 while trying to edit scheduled transaction

2012-03-18 Thread Sébastien Villemot
adam  writes:

> W dniu 08.03.2012 19:35, Sébastien Villemot pisze:
>> adam  writes:
>>
>>> Package: gnucash
>>> Version: 1:2.4.10-2
>>> Severity: important
>>>
>>> Dear Maintainer,
>>>
>>> Gnucash segfaults while trying to edit existing scheduled transaction. To 
>>> case
>>> this, one can only open scheduled transaction window and then click ok. It 
>>> has
>>> been confirmed on 2 debian testing systems and ubuntu. This appeared for the
>>> first time in 2.6.10-1 version, but even upgrading gnucash and 
>>> gnucach-common
>>> to 2.6.10-2 didn't solved this problem. Message is dmesg is always the same:
>>> gnucash[28817]: segfault at 2c ip b6db5e1c sp bf8116c0 error 4 in
>>> libglib-2.0.so.0.3000.2[b6d82000+fa000]
>> Thanks for your report.
>>
>> Did you check that your problem is not a duplicate of #652373 ? It looks
>> very similar.
>>
>> It would also be helpful if you provided a full gdb trace.
>>
>> Best,
>>
> I somehow missed  #652373 bug while going through the list.. It indeed
> looks the same - while I try to edit transaction which is active, there
> is no segfault. Below I enclose gdb trace, if it need to be done with
> different that default options please write.

Thanks.

Actually this is not a full GDB backtrace (it only shows the function in
which the crash occurs: g_hash_table_foreach from glib).

See http://live.gnome.org/GettingTraces for getting useful traces. Use
bug-buddy or, from GDB, type "backtrace" after the crash. Don't forget
to install the debug packages before.

Also, can you tell if your crash concerns a scheduled transaction that
has run a finite number of times, as in #652373? If yes, this is
probably the same bug (since the crash is in the same function) and we
should merge the two.

Also note that you replied only to me (and not to the bug). I am cc:ing
this message to the bug in order to keep a log of the discussion.

Best,

> gdb trace:
> $ gdb gnucash
> GNU gdb (GDB) 7.4-debian
> Copyright (C) 2012 Free Software Foundation, Inc.
> License GPLv3+: GNU GPL version 3 or later
> 
> This is free software: you are free to change and redistribute it.
> There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
> and "show warranty" for details.
> This GDB was configured as "i486-linux-gnu".
> For bug reporting instructions, please see:
> ...
> Reading symbols from /usr/bin/gnucash...(no debugging symbols found)...done.
> (gdb) run
> Starting program: /usr/bin/gnucash
> [Thread debugging using libthread_db enabled]
> Using host libthread_db library
> "/lib/i386-linux-gnu/i686/cmov/libthread_db.so.1".
> gnc.bin-Message: main: binreloc relocation support was disabled at
> configure time.
>
> WARNING: gnome-keyring:: couldn't connect to:
> /tmp/keyring-fMWjjc/pkcs11: Nie ma takiego pliku ani katalogu
> [New Thread 0xa8337b70 (LWP 5274)]
> Found Finance::Quote version 1.17
>
> Program received signal SIGSEGV, Segmentation fault.
> 0xb7648e1c in g_hash_table_foreach () from
> /lib/i386-linux-gnu/libglib-2.0.so.0

-- 
Sébastien Villemot
Researcher in Economics & Debian Maintainer
http://www.dynare.org/sebastien
Phone: +33-1-40-77-84-04 - GPG Key: 4096R/381A7594


pgpa6uy8DLrAQ.pgp
Description: PGP signature


Bug#630893: ax25-apps: Should be removed from main

2012-03-18 Thread Jeff White
I release all of my code from the rip-2 project (including ripdump.c) under
the BSD license.

The old ghq.com domain was sold many years ago.  I am N0POY as you can find
myself in the FCC database.

On Sun, Mar 18, 2012 at 4:41 PM, Patrick Ouellette wrote:

> Sam,
>
> I just talked to Jeff on the telephone.  The email is from him.
> He does wish to release the code under a BSD license.
>
> I have included in the Cc list of this message Jeff, the maintainers of
> the upstream ax25-apps, ax25-tools, and libax25 (Ralf and Thomas).
> I would expect an email from Jeff (reply all) stating his intention that
> the code he contributed to ripdump.c in 4/1993 be released under a BSD
> license should be sufficient.  It would be good if the email were signed by
> a gpg or pgp key owned by Jeff if possible.  If something else needs to be
> done, someone else needs to let Jeff know.
>
> I want to thank Jeff again for agreeing to release the code under a license
> that allows it to remain in the main Debian free software repository.
>
> Pat
>
> On Sun, Mar 18, 2012 at 01:37:35PM +0100, Sam Geeraerts wrote:
> > Date: Sun, 18 Mar 2012 13:37:35 +0100
> > From: Sam Geeraerts 
> > Subject: Re: Bug#630893: ax25-apps: Should be removed from main
> > To: Patrick Ouellette 
> > CC: Sebastian Muszynski 
> >
> > Patrick Ouellette wrote:
> > >We are working on a resolution to the issue.
> >
> > Hi Patrick,
> >
> > Have you been in contact with Jeff White? I believe Sebastian didn't
> > get a response with his attempt in June 2011.
> >
> > I was contacted by a Jeff White, saying he wants to re-release under
> > BSD license (see attachment). I don't know if this is the actual
> > copyright holder's email address. There's a chance this could be
> > some dude trying to be funny.
> >
> > I don't know what you're working on with respect to this bug, so I
> > thought I'd consult you on how to proceed further. Any suggestions?
> > I thought to reply with the 3-clause BSD license, asking him to
> > agree to it for ripdump.c and CC both bugs, but that wouldn't verify
> > his identity.
> >
> > Regards,
> > Sam Geeraerts
>
> > Date: Fri, 16 Mar 2012 09:05:05 -0500
> > From: Jeff White 
> > Subject: RIP Dump license
> > To: sam...@elmundolibre.be
> >
> > I am N0POY.  I saw on a search engine you were looking for a license
> > release on the code I wrote a long long time ago.  How can I re-release
> the
> > code with a BSD license?
> >
> > --
> > Jeff White
> > jwh...@white.nu
>
>
> --
>
> ,-.
> > Patrick Ouellette|  If you have men who will exclude any of
> God's   <
> > pat(at)flying-gecko.net  |  creatures from the shelter of compassion
> and<
> > Amateur Radio: NE4PO |  pity, you will have men who will deal
> likewise  <
> >  |  with their fellow men.  -- Francis of Assisi
><
>
> `-'
>



-- 
Jeff White
jwh...@white.nu


Bug#664558: RFP: libgeo-coordinates-osgb-perl -- Convert coordinates between Lat/Lon and the British National Grid

2012-03-18 Thread Dominic Hargreaves
Package: wnpp
Severity: wishlist

* Package name: libgeo-coordinates-osgb-perl
  Version : 2.04
  Upstream Author : Toby Thurston 
* URL : http://search.cpan.org/dist/Geo-Coordinates-OSGB/
* License : Perl
  Programming Lang: Perl
  Description : Convert coordinates between Lat/Lon and the British 
National Grid

An implementation of co-ordinate conversion for England, Wales, and
Scotland based on formulae published by the Ordnance Survey of Great Britain.

These modules will convert accurately between an OSGB national grid
reference and lat/lon coordinates based on the OSGB geoid model.



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



  1   2   3   4   >