Bug#685662: vfu: upstream copyright and license information is broken, parts without license to redistribute

2012-08-23 Thread Bart Martens
Package: vfu
Version: 4.10-1
Severity: serious

The file vslib/README contains All files are under the GPL license.

In vslib/vsuti.cpp I read this :

  |  /* adler32.c -- compute the Adler-32 checksum of a data stream
  |   * Copyright (C) 1995-1996 Mark Adler
  |   * For conditions of distribution and use, see copyright notice in zlib.h
  |   */

I didn't find zlib.h in this package.  The file adler32.c in the package zlib
contains this :

  |  /* adler32.c -- compute the Adler-32 checksum of a data stream
  |   * Copyright (C) 1995-2011 Mark Adler
  |   * For conditions of distribution and use, see copyright notice in zlib.h
  |   */

The file zlib.h in the package zlib contains this :

  |  Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler
  |
  |  This software is provided 'as-is', without any express or implied
  |  warranty.  In no event will the authors be held liable for any damages
  |  arising from the use of this software.
  |
  |  Permission is granted to anyone to use this software for any purpose,
  |  including commercial applications, and to alter it and redistribute it
  |  freely, subject to the following restrictions:
  |
  |  1. The origin of this software must not be misrepresented; you must not
  | claim that you wrote the original software. If you use this software
  | in a product, an acknowledgment in the product documentation would be
  | appreciated but is not required.
  |  2. Altered source versions must be plainly marked as such, and must not be
  | misrepresented as being the original software.
  |  3. This notice may not be removed or altered from any source distribution.

So at this point we know that vslib/vsuti.cpp is not GPL, so vslib/README is
not accurate.

Having a look at the other files in vslib/ I found that the file
vslib/getopt2.cpp contains this :

  |  /*
  |   *  $Header: /cvs/vslib/getopt2.cpp,v 1.2 2001/10/28 13:53:02 cade Exp $
  |   *
  |   *  Copyright (C) 1994 Arno Schaefer
  |   *
  |   *  AU: Auswertung der Kommandozeile, der POSIX-Version von getopt ()
  |   *  nachempfunden.
  |   *
  |   *  PO: ANSI C
  |   */

I don't know where that file comes from, and I don't find any license.  We
cannot assume that it's GPL because we know that vslib/README is not accurate.
So we don't have a permission to redistribute vslib/getopt2.cpp.

Regards,

Bart Martens


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



Bug#685631: Bug#685354: unblock: sendfile/2.1b.20080616-5.1

2012-08-23 Thread Andreas Tille
Hi,

from a not so quick but untested look this seems to be reasonable to me.
I could sponsor this patch but I might wait for some comment of the
release team (or Joey but he seems uninterested in this problem - Joey,
don't you think orphaning the package makes sense?)

Kind regards and thanks to Ivo for the patch

  Andreas.

On Wed, Aug 22, 2012 at 09:08:57PM +0200, Ivo De Decker wrote:
 Hi,
 
 On Tue, Aug 21, 2012 at 09:39:20PM +0200, Julien Cristau wrote:
  On Tue, Aug 21, 2012 at 20:51:24 +0200, Ivo De Decker wrote:
  
   The version in squeeze added a line to /etc/profile (which is a policy
   violation). The version currently in wheezy removes that line. If this 
   last
   part is removed from the postinst, the line remains in /etc/profile 
   (where it
   never should have been). Removing the line in the postinst of the package 
   in
   wheezy is a policy violation. Which is preferable:
   - leaving the line in /etc/profile and having a package in wheezy that 
   has no
 policy violations
   - having a package in wheezy that violates policy, but that cleans up the
 changes caused by the policy violation in squeeze
   
  The latter, IMO.
 
 Attaching a patch that should do just that. The patch is against the version
 currently in wheezy (2.1b.20080616-5), not against the version in sid
 (2.1b.20080616-5.1), to ease review and because the version in sid contains
 some unintended changes (Makefile and config.status).
 
 Cheers,
 
 Ivo

 diff -u sendfile-2.1b.20080616/debian/control 
 sendfile-2.1b.20080616/debian/control
 --- sendfile-2.1b.20080616/debian/control
 +++ sendfile-2.1b.20080616/debian/control
 @@ -9,7 +9,7 @@
  Section: net
  Priority: optional
  Architecture: any
 -Depends: ${shlibs:Depends}, openbsd-inetd | inet-superserver, perl | perl5
 +Depends: ${shlibs:Depends}, openbsd-inetd | inet-superserver, perl | perl5, 
 update-inetd, libdpkg-perl
  Suggests: pgp-i
  Description: Simple Asynchronous File Transfer
   Sendfile is an asynchronous file transfer service for the Internet,
 diff -u sendfile-2.1b.20080616/debian/postinst 
 sendfile-2.1b.20080616/debian/postinst
 --- sendfile-2.1b.20080616/debian/postinst
 +++ sendfile-2.1b.20080616/debian/postinst
 @@ -2,20 +2,7 @@
  # post install script for the Debian GNU/Linux sendfile package
  
  require DebianNet;
 -
 -# First modify the services file
 -
 -open(SERVICES, /etc/services);
 -@services=SERVICES;
 -close(SERVICES);
 -
 -if (! grep(/^saft.*/, @services)) {
 -   push (@services, saft487/tcp # simple 
 asynchronous file transfer\n);
 -   open(SERVICES, /etc/services.new);
 -   print SERVICES @services;
 -   close (SERVICES);
 -   system (mv -f /etc/services.new /etc/services);
 -}
 +use Dpkg::Version;
  
  # Now modify the inetd.conf file
  
 @@ -29,30 +16,38 @@
  }
  undef(@inetd);
  
 -for $profile (('/etc/profile')) {
 -open(PROFILE, $profile);
 -@profile=PROFILE;
 -close(PROFILE);
 -
 -open(PROFILE, $profile);
 -printf PROFILE %s, join ('', grep (!/^.*check-sendfile/, @profile));
 -close (PROFILE);
 +# cleanup edits from versions before 2.1b.20080616-5.2
 +# this can be removed after wheezy
 +if (($ARGV[1] ne ) 
 + (version_compare($ARGV[1],2.1b.20080616-5.2)  0)) {
 + 
 + # remove line added by old version of sendfile
 + my $profile = '/etc/profile';
 + if (-e $profile) {
 + open(PROFILE, $profile);
 + @profile=PROFILE;
 + close(PROFILE);
 +
 + open(PROFILE, $profile);
 + printf PROFILE %s, join ('', grep (!/^.*check-sendfile/, 
 @profile));
 + close (PROFILE);
 + }
 +
 + # delete /etc/services with only 1 line created by previous versions of
 + # sendfile
 + my $services = /etc/services;
 + if (-e $services) {
 + open(SERVICES, $services);
 + my @srv = SERVICES;
 + close(SERVICES);
 + my $srv = join('',@srv);
 + my $oldsrv = saft  487/tcp # 
 simple asynchronous file transfer\n;
 + if ($srv eq $oldsrv) {
 + unlink $services;
 + }
 + }
  }
  
 -for $profile (('/etc/csh.login')) {
 -open(PROFILE, $profile);
 -@profile=PROFILE;
 -close(PROFILE);
 -
 -if (grep(/^.*check-sendfile/, @profile)) {
 - open(PROFILE, $profile);
 - printf PROFILE %s, join ('', grep (!/^.*check-sendfile/, @profile));
 - close(PROFILE);
 -}
 -}
 -
 -system /etc/init.d/netbase reload;
 -
  if ($ARGV[0] eq 'configure') {
  if (defined $ARGV[1]  $ARGV[1] =~ 
 /2\.1b(-[67]|\.20080311-|\.20080616-1)/) {
   system chmod 644 /etc/logrotate.d/sendfile;
 diff -u sendfile-2.1b.20080616/debian/postrm 
 sendfile-2.1b.20080616/debian/postrm
 --- sendfile-2.1b.20080616/debian/postrm
 +++ sendfile-2.1b.20080616/debian/postrm
 @@ -3,15 +3,6 @@
  
  set -e
  
 -if [ $1 = remove ]
 -then
 -for profile in /etc/profile 

Bug#685666: jabberd2: CVE-2012-3525

2012-08-23 Thread Moritz Muehlenhoff
Package: jabberd2
Severity: grave
Tags: security
Justification: user security hole

Please see
http://xmpp.org/resources/security-notices/server-dialback/
https://bugzilla.redhat.com/show_bug.cgi?id=850872

Fix:
https://github.com/Jabberd2/jabberd2/commit/aabcffae560d5fd00cd1d2ffce5d760353cf0a4d

Cheers,
Moritz


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



Bug#685667: mesa: CVE-2012-2864

2012-08-23 Thread Moritz Muehlenhoff
Package: mesa
Severity: grave
Tags: security
Justification: user security hole

Unfortunately this report is a bit vague:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-2864

The Google Code Bug is closed, but the following fix was identified
in the Red Hat Bugzilla:
http://www.mail-archive.com/mesa-dev@lists.freedesktop.org/msg25207.html

Cheers,
Moritz


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



Bug#670945: [php-maint] libapache2-mod-php5: Bug #589384 breaks default behaviour for MultiViews

2012-08-23 Thread Ondřej Surý
Hi Stefan,

On Wed, Aug 15, 2012 at 8:31 PM, Stefan Fritsch s...@sfritsch.de wrote:
 FWIW, this bug has been open for 4 months. It would have been nice if
 you (or the php maintainers) could have sent a note to debian-
 apache@l.d.o a bit earlier.

Somehow I have missed this bug report completely :(. Unfortunatelly
I am still only active PHP maintainer in Debian, so please excuse
the occasional hiccups.

 If mod_negotiation requires some mime-type for .php to work, then the
 obvious solution would be to add a non-magic type, for example
 application/x-php.

 IMHO, in order to have the whole php config in one place, this should
 be done with AddType in /etc/apache2/mods-available/php5.conf. Maybe
 like this:

 # mod_negotiation's MultiViews needs php scripts to have a mime
 # type to make negotiation work. These types are added for this
 # purpose, but differently from the magic application/x-httpd-* types,
 # they do not cause php scripts to be executed. That is done by the
 # SetHandler directives above.
 AddType application/x-php php phtml php3
 AddType application/x-php-source  phps

Wouldn't the obvious solution be to implement this back in
mime-support package, where it belongs (e.g. same as python or perl)?

I am going to try to reproduce this and find a solution which would
work for anyone.

O.
-- 
Ondřej Surý ond...@sury.org


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



Bug#685667: mesa: CVE-2012-2864

2012-08-23 Thread Moritz Muehlenhoff
On Thu, Aug 23, 2012 at 09:48:41AM +0200, Moritz Muehlenhoff wrote:
 Package: mesa
 Severity: grave
 Tags: security
 Justification: user security hole
 
 Unfortunately this report is a bit vague:
 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-2864
 
 The Google Code Bug is closed, but the following fix was identified
 in the Red Hat Bugzilla:
 http://www.mail-archive.com/mesa-dev@lists.freedesktop.org/msg25207.html

Stable lacks GLSL support, so it should not be affected. (Unless the code
is in a different source package?)

Cheers,
Moritz


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



Bug#685667: mesa: CVE-2012-2864

2012-08-23 Thread Julien Cristau
Control: found -1 8.0.4-1

On Thu, Aug 23, 2012 at 09:54:31 +0200, Moritz Muehlenhoff wrote:

 On Thu, Aug 23, 2012 at 09:48:41AM +0200, Moritz Muehlenhoff wrote:
  Package: mesa
  Severity: grave
  Tags: security
  Justification: user security hole
  
  Unfortunately this report is a bit vague:
  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-2864
  
  The Google Code Bug is closed, but the following fix was identified
  in the Red Hat Bugzilla:
  http://www.mail-archive.com/mesa-dev@lists.freedesktop.org/msg25207.html
 
 Stable lacks GLSL support, so it should not be affected. (Unless the code
 is in a different source package?)
 
Sounds about right.

Cheers,
Julien


signature.asc
Description: Digital signature


Processed: Re: Bug#685667: mesa: CVE-2012-2864

2012-08-23 Thread Debian Bug Tracking System
Processing control commands:

 found -1 8.0.4-1
Bug #685667 [mesa] mesa: CVE-2012-2864
There is no source info for the package 'mesa' at version '8.0.4-1' with 
architecture ''
Unable to make a source version for version '8.0.4-1'
Marked as found in versions 8.0.4-1.

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


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



Bug#685653: mlterm,mlterm-tiny: missing copyright file after squeeze-wheezy upgrade

2012-08-23 Thread Andreas Beckmann
On 2012-08-23 09:58, أحمد المحمودي wrote:
   The doc dir of both packages is linked to the doc dir of 
   mlterm-common, and both packages depend on mlterm-common

/u/s/d/mlterm{,-tiny} are empty directories after the upgrade from
squeeze - dpkg does not replace directories by symlinks or vice versa.

Andreas


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



Bug#674089: marked as done (mime-support: removed application/x-httpd-* can lead to immense security problems)

2012-08-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Aug 2012 10:14:13 +0200
with message-id 
CALjhHG925g6TX=k-pnpe4nbwy+sxdwzoys9azhc3d2ggyiv...@mail.gmail.com
and subject line 
has caused the Debian Bug report #674089,
regarding mime-support: removed application/x-httpd-* can lead to immense 
security problems
to be marked as done.

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

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


-- 
674089: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674089
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: mime-support
Version: 3.52-1
Severity: critical
Tags: security
Justification: breaks unrelated software


Hi.

In 3.52-1 you removed application/x-httpd-* to close #589384.

This happened without any notice to the NEWS files and I really
wonder whether any though has been spent on which tremendous
security effects this can have.

Given that most people (reasonably) rely on /etc/mime.types
to determine the MIME type for files e.g. with Apache removal
of the above means e.g. that php scripts are no longer determined
as such, but now diretcly shown as text files.

With all secruity effects you can think of and all you even can't
think of.
And of course it breaks countless of working installations
using e.g. php.


a) If you make such a tremendous change you have to announce it
in the release file.


b) Removing the type is definitly the wrong decision.
Apache provides many means to change the handlers and if all that
shouldn't work (which I doubt) on can simply disable the use of
/etc/mime.types.
It's not the business of mime.type to please any specifc user,...
like it seems to me with the aforementioned bug.
Nor should it be mime.type's business to please any software if that
was borken (but as said, apache is not).



Obviously application/x-* are not official flags, but if that was
the reason we'd have to remove much more than just the php ones.



Cheers,
Chris.


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

Kernel: Linux 3.2.17-heisenberg (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_DE.UTF-8, LC_CTYPE=en_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

mime-support depends on no packages.

Versions of packages mime-support recommends:
ii  file  5.11-1

mime-support suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Version: php5/5.4.4-5

This bug was fixed in php5/5.4.4-5.

O.
-- 
Ondřej Surý ond...@sury.org---End Message---


Bug#664691: marked as done (mime-support: Conflict with httpd)

2012-08-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Aug 2012 10:14:13 +0200
with message-id 
CALjhHG925g6TX=k-pnpe4nbwy+sxdwzoys9azhc3d2ggyiv...@mail.gmail.com
and subject line 
has caused the Debian Bug report #674089,
regarding mime-support: Conflict with httpd
to be marked as done.

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

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


-- 
674089: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=674089
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: mime-support
Version: 3.48-1
Severity: normal
Tags: upstream

Dear Maintainer,
*** Please consider answering these questions, where appropriate ***

   * What led up to the situation?
Installation of mime-support 3.52-1 and httpd 2.2.22-1 at the same time.
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
If Apache serves a url of the kind /site/script.php, I can't reach it with
/site/script. Downgraded to 3.48-1 path is served.
   * What outcome did you expect instead?

*** End of the template - remove these lines ***



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

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

mime-support depends on no packages.

Versions of packages mime-support recommends:
ii  file  5.10-1

mime-support suggests no packages.

-- no debconf information


---End Message---
---BeginMessage---
Version: php5/5.4.4-5

This bug was fixed in php5/5.4.4-5.

O.
-- 
Ondřej Surý ond...@sury.org---End Message---


Bug#677995: gjiten: Doesn't show kana/kanji, displays garbage in kanjidic

2012-08-23 Thread Hideki Yamane
Hi Serge,

 I'm glad to hear that :)
 Then, can I close this bug? or downgrade severity and tagged as upstream?


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane


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



Bug#670945: [php-maint] Bug#670945: libapache2-mod-php5: Bug #589384 breaks default behaviour for MultiViews

2012-08-23 Thread Ondřej Surý
reassign 670945 mime-support
retitle 670945 add non-magic mime-types for php
tags 670945 +patch
affects 670945 php5
unmerge 664691
forcemerge 664691 670945
thank you

I have confirmed that adding text/x-php (and text/x-php-source) to
mime-support package fixes the issue. Attached is a patch.

Charles, do you want to do the upload, or you are fine with NMU? (If
you have adopted the package, you might want to do an upload to
unstable anyway, so all bug reports for wheezy ends in your mailbox
and not Brian's.)

O.

On Thu, Aug 23, 2012 at 9:54 AM, Ondřej Surý ond...@debian.org wrote:
 Hi Stefan,

 On Wed, Aug 15, 2012 at 8:31 PM, Stefan Fritsch s...@sfritsch.de wrote:
 FWIW, this bug has been open for 4 months. It would have been nice if
 you (or the php maintainers) could have sent a note to debian-
 apache@l.d.o a bit earlier.

 Somehow I have missed this bug report completely :(. Unfortunatelly
 I am still only active PHP maintainer in Debian, so please excuse
 the occasional hiccups.

 If mod_negotiation requires some mime-type for .php to work, then the
 obvious solution would be to add a non-magic type, for example
 application/x-php.

 IMHO, in order to have the whole php config in one place, this should
 be done with AddType in /etc/apache2/mods-available/php5.conf. Maybe
 like this:

 # mod_negotiation's MultiViews needs php scripts to have a mime
 # type to make negotiation work. These types are added for this
 # purpose, but differently from the magic application/x-httpd-* types,
 # they do not cause php scripts to be executed. That is done by the
 # SetHandler directives above.
 AddType application/x-php php phtml php3
 AddType application/x-php-source  phps

 Wouldn't the obvious solution be to implement this back in
 mime-support package, where it belongs (e.g. same as python or perl)?

 I am going to try to reproduce this and find a solution which would
 work for anyone.

 O.
 --
 Ondřej Surý ond...@sury.org

 ___
 pkg-php-maint mailing list
 pkg-php-ma...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-php-maint



-- 
Ondřej Surý ond...@sury.org


mime-support_5.32-1.1.patch
Description: Binary data


Bug#685653: mlterm,mlterm-tiny: missing copyright file after squeeze-wheezy upgrade

2012-08-23 Thread أحمد المحمودي
On Thu, Aug 23, 2012 at 12:15:52AM +0200, Andreas Beckmann wrote:
 Package: mlterm,mlterm-tiny
 Version: 3.1.2-1

 during an exerimental piuparts test I noticed your package is missing
 the copyright file after a squeeze-wheezy upgrade.
---end quoted text---

  The doc dir of both packages is linked to the doc dir of 
  mlterm-common, and both packages depend on mlterm-common

-- 
 ‎أحمد المحمودي (Ahmed El-Mahmoudy)
  Digital design engineer
 GPG KeyID: 0xEDDDA1B7
 GPG Fingerprint: 8206 A196 2084 7E6D 0DF8  B176 BC19 6A94 EDDD A1B7


signature.asc
Description: Digital signature


Processed: Re: [php-maint] Bug#670945: libapache2-mod-php5: Bug #589384 breaks default behaviour for MultiViews

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 670945 mime-support
Bug #670945 [libapache2-mod-php5] libapache2-mod-php5: Bug #589384 breaks 
default behaviour for MultiViews
Bug reassigned from package 'libapache2-mod-php5' to 'mime-support'.
Ignoring request to alter found versions of bug #670945 to the same values 
previously set
Ignoring request to alter fixed versions of bug #670945 to the same values 
previously set
 retitle 670945 add non-magic mime-types for php
Bug #670945 [mime-support] libapache2-mod-php5: Bug #589384 breaks default 
behaviour for MultiViews
Changed Bug title to 'add non-magic mime-types for php' from 
'libapache2-mod-php5: Bug #589384 breaks default behaviour for MultiViews'
 tags 670945 +patch
Bug #670945 [mime-support] add non-magic mime-types for php
Added tag(s) patch.
 affects 670945 php5
Bug #670945 [mime-support] add non-magic mime-types for php
Added indication that 670945 affects php5
 unmerge 664691
Bug #664691 {Done: Ondřej Surý ond...@sury.org} [mime-support] mime-support: 
Conflict with httpd
Bug #674089 {Done: Ondřej Surý ond...@sury.org} [mime-support] mime-support: 
removed application/x-httpd-* can lead to immense security problems
Disconnected #664691 from all other report(s).
 forcemerge 664691 670945
Bug #664691 {Done: Ondřej Surý ond...@sury.org} [mime-support] mime-support: 
Conflict with httpd
Bug #664691 {Done: Ondřej Surý ond...@sury.org} [mime-support] mime-support: 
Conflict with httpd
Added tag(s) patch.
Bug #670945 [mime-support] add non-magic mime-types for php
Severity set to 'critical' from 'serious'
Marked Bug as done
Removed indication that 670945 affects php5
Marked as found in versions mime-support/3.52-1 and mime-support/3.48-1.
Added tag(s) upstream and security.
Merged 664691 670945
 thank you
Stopping processing here.

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


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



Bug#677995: gjiten: Doesn't show kana/kanji, displays garbage in kanjidic

2012-08-23 Thread eurekafag
Hi Hideki,

Of course, close it. Maybe it would be useful to delete the original
dictionary files after the conversion since they're not quite useful and
may lead to such errors. I don't know, just proposing.

2012/8/23 Hideki Yamane henr...@debian.or.jp

 Hi Serge,

  I'm glad to hear that :)
  Then, can I close this bug? or downgrade severity and tagged as upstream?


 --
 Regards,

  Hideki Yamane henrich @ debian.or.jp/org
  http://wiki.debian.org/HidekiYamane



Processed: reopening 664691

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 664691
Bug #664691 {Done: Ondřej Surý ond...@sury.org} [mime-support] mime-support: 
Conflict with httpd
Bug #670945 {Done: Ondřej Surý ond...@sury.org} [mime-support] add non-magic 
mime-types for php
Bug reopened
Ignoring request to alter fixed versions of bug #664691 to the same values 
previously set
Ignoring request to alter fixed versions of bug #670945 to the same values 
previously set
 thanks
Stopping processing here.

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


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



Processed: notfound 664691 in mime-support/3.48-1

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notfound 664691 mime-support/3.48-1
Bug #664691 [mime-support] mime-support: Conflict with httpd
Bug #670945 [mime-support] add non-magic mime-types for php
No longer marked as found in versions mime-support/3.48-1.
No longer marked as found in versions mime-support/3.48-1.
 thanks
Stopping processing here.

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


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



Processed: found 670945 in mime-support/3.52-1

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 670945 mime-support/3.52-1
Bug #670945 [mime-support] add non-magic mime-types for php
Bug #664691 [mime-support] mime-support: Conflict with httpd
Marked as found in versions mime-support/3.52-1; no longer marked as found in 
versions mime-support/3.52-1.
Marked as found in versions mime-support/3.52-1; no longer marked as found in 
versions mime-support/3.52-1.
 thanks
Stopping processing here.

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


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



Processed: notfound 670945 in mime-support/3.48-1

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 notfound 670945 mime-support/3.48-1
Bug #670945 [mime-support] add non-magic mime-types for php
Bug #664691 [mime-support] mime-support: Conflict with httpd
Ignoring request to alter found versions of bug #670945 to the same values 
previously set
Ignoring request to alter found versions of bug #664691 to the same values 
previously set
 thanks
Stopping processing here.

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


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



Processed: tagging 670945

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 670945 - upstream
Bug #670945 [mime-support] add non-magic mime-types for php
Bug #664691 [mime-support] mime-support: Conflict with httpd
Removed tag(s) upstream.
Removed tag(s) upstream.
 thanks
Stopping processing here.

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


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



Bug#685323: [Pkg-mediawiki-devel] Bug#685323: Re: Bug#685324: Local File Inclusion Vulnerability in contrib script

2012-08-23 Thread Thorsten Glaser
On Tue, 21 Aug 2012, Benny Baumann wrote:

 Given exactly the
 2-3 years this package will be in stable/oldstable is the reason why
 there should be an update to something reasonably recent before the
 package is put into a distribution.

Sorry, it’s now too late for that. In May, something could have
been done, but not now. No new upstream versions, any more.

(That being said, updating it in sid now would be reasonable,
and wheezy users could just pull that package from sid.)

bye,
//mirabilos, Debian Developer
-- 
tarent solutions GmbH
Rochusstraße 2-4, D-53123 Bonn • http://www.tarent.de/
Tel: +49 228 54881-393 • Fax: +49 228 54881-314
HRB 5168 (AG Bonn) • USt-ID (VAT): DE122264941
Geschäftsführer: Boris Esser, Sebastian Mancke


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



Bug#679762: Please give back dolfin (hurd-i386 and i386)

2012-08-23 Thread Johannes Ring
Ping?

Johannes

On Mon, Aug 6, 2012 at 10:28 AM, Johannes Ring joha...@simula.no wrote:
 Hi,

 dolfin 1.0.0-7 failed to build on hurd-i386 and i386 due to a bug in
 gcc-4.7. This bug was fixed in gcc-4.7 4.7.1-6, so please rebuild
 dolfin on those architectures:

   gb dolfin_1.0.0-7 . hurd-i386 i386

 This would clear the FTBFS bug #679762 (CCed).

 Thanks,

 Johannes

 --
 debian-science-maintainers mailing list
 debian-science-maintain...@lists.alioth.debian.org
 http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-science-maintainers


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



Processed: reopening 682138, found 682138 in 0.6.4~dfsg0-2

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reopen 682138
Bug #682138 {Done: Alessio Treglia ales...@debian.org} [libsuil-0-0] 
libsuil-0-0: Where are the Qt and Gtk modules?
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
No longer marked as fixed in versions suil/0.6.4~dfsg0-2.
 found 682138 0.6.4~dfsg0-2
Bug #682138 [libsuil-0-0] libsuil-0-0: Where are the Qt and Gtk modules?
Marked as found in versions 0.6.4~dfsg0-2/.
 thanks
Stopping processing here.

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


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



Bug#677995: gjiten: Doesn't show kana/kanji, displays garbage in kanjidic

2012-08-23 Thread Botond Botyanszki
Hi,

The original dictionary files are not removed because these are part of
other packages (edict, kanjidic) and there are other packages in debian
which depend on these.

Regards,
Botond

On Thu, 23 Aug 2012 12:20:39 +0400
eurekafag eureka...@eureka7.ru wrote:

 Hi Hideki,
 
 Of course, close it. Maybe it would be useful to delete the original
 dictionary files after the conversion since they're not quite useful
 and may lead to such errors. I don't know, just proposing.
 
 2012/8/23 Hideki Yamane henr...@debian.or.jp
 
  Hi Serge,
 
   I'm glad to hear that :)
   Then, can I close this bug? or downgrade severity and tagged as
  upstream?
 
 
  --
  Regards,
 
   Hideki Yamane henrich @ debian.or.jp/org
   http://wiki.debian.org/HidekiYamane
 


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



Bug#685694: libmatio-doc: almost empty PDF

2012-08-23 Thread Sébastien Villemot
Package: libmatio-doc
Version: 1.3.4-3
Severity: grave
Tags: patch
Justification: renders package unusable

Hi,

The libmatio.pdf file shipped under /usr/share/doc is almost empty (only a few
formulas and horizontal lines, the rest is blank). Since this PDF is the only
included documentation file, the package is unusable.

A rebuild fixed the problem on my machine.

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

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

-- no debconf information


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



Bug#682138: marked as done (libsuil-0-0: Where are the Qt and Gtk modules?)

2012-08-23 Thread Debian Bug Tracking System
Your message dated Thu, 23 Aug 2012 14:48:34 +
with message-id e1t4yi2-0003hq...@franck.debian.org
and subject line Bug#682138: fixed in suil 0.6.4~dfsg0-3
has caused the Debian Bug report #682138,
regarding libsuil-0-0: Where are the Qt and Gtk modules?
to be marked as done.

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

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


-- 
682138: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=682138
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libsuil-0-0
Version: 0.6.2~dfsg0-1
Severity: wishlist

Hi,

It would be nice, if you build libsuil against gtk and qt.
Now this modules of libsuil are missing, so I have to build from source
if I want to use lv2 plugins with that need gtk or qt gui.

If you build it against gtk or qt, you normally
have those extra libs:

libsuil_gtk2_in_qt4.so  
libsuil_x11_in_gtk2.so
libsuil_qt4_in_gtk2.so  
libsuil_x11_in_qt4.so


Thank you,
Stijn



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

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

Versions of packages libsuil-0-0 depends on:
ii  libc6  2.13-34
ii  multiarch-support  2.13-33

libsuil-0-0 recommends no packages.

libsuil-0-0 suggests no packages.

-- no debconf information
---End Message---
---BeginMessage---
Source: suil
Source-Version: 0.6.4~dfsg0-3

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

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

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

Debian distribution maintenance software
pp.
Alessio Treglia ales...@debian.org (supplier of updated suil package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 23 Aug 2012 15:35:43 +0200
Source: suil
Binary: libsuil-dev libsuil-0-0 suil-dbg
Architecture: source i386
Version: 0.6.4~dfsg0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libsuil-0-0 - library for loading and wrapping LV2 plugin UIs
 libsuil-dev - Development files for suil
 suil-dbg   - Debugging symbols for suil
Closes: 682138
Changes: 
 suil (0.6.4~dfsg0-3) unstable; urgency=low
 .
   * Pass --gtk2-lib-name=libgtk-x11-2.0.so.0 to configure to avoid
 adding the dependency on libgtk2.0-dev. Thanks to Filipe Lopes for
 pointing out this. (really closes: #682138)
Checksums-Sha1: 
 969dee561cdab90cddb8b4f94b3747cc514939fa 2096 suil_0.6.4~dfsg0-3.dsc
 9893e434839dceb2220af7e87beaf24b930d9778 3781 suil_0.6.4~dfsg0-3.debian.tar.gz
 e2046eca641dad8a6414da35527370ca80d245d9 6454 
libsuil-dev_0.6.4~dfsg0-3_i386.deb
 4b55fb6f810c0e1485d8b6018605e7dd87f39cf0 15696 
libsuil-0-0_0.6.4~dfsg0-3_i386.deb
 3aec0f9bdbc2b86a9c7b67a14eb7c22e9309ed74 177224 suil-dbg_0.6.4~dfsg0-3_i386.deb
Checksums-Sha256: 
 66e9908eee7543554063c07eae16f2c0c2e26b7895e803c8d0884567d6a19bec 2096 
suil_0.6.4~dfsg0-3.dsc
 70d6058c6833df3d63124017e64df31854f19f5defd4180f6c1fc15b574a7995 3781 
suil_0.6.4~dfsg0-3.debian.tar.gz
 1887fcac7ab162a470969286cf6f9e5a122db1b37be7546a51145f7ae1685bad 6454 
libsuil-dev_0.6.4~dfsg0-3_i386.deb
 de3c3411d65321c5f973d9832a78afc128efd5b8eef96be338119b360a87fb1b 15696 
libsuil-0-0_0.6.4~dfsg0-3_i386.deb
 3c41edf6688f85cec7834a24ccdffc87fb0100e9311168a5579b852b591f436d 177224 
suil-dbg_0.6.4~dfsg0-3_i386.deb
Files: 
 ea1f7edd2beb126414803948bd87f641 2096 libs optional suil_0.6.4~dfsg0-3.dsc
 d2f1074bcba0754f835c7fc03089e32d 3781 libs optional 
suil_0.6.4~dfsg0-3.debian.tar.gz
 fb6d3d92bc61465ed27226a86760f4e0 6454 libdevel optional 
libsuil-dev_0.6.4~dfsg0-3_i386.deb
 ae17413fea1d79884d685cc22434b965 15696 libs optional 
libsuil-0-0_0.6.4~dfsg0-3_i386.deb
 62ccda9cca14fce613a5b551cbf94152 177224 debug extra 
suil-dbg_0.6.4~dfsg0-3_i386.deb

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

iQIcBAEBCgAGBQJQNjVSAAoJEOikiuUxHXZaO4IP/RDzrMmGiSvutKbpW15twWdy
G43zrlIdpyhCHuPqy0q+Y+jTIwiArE9oRbqlU+uQu2sGKg3BSZSOCuCTJ76P6M1t

Bug#684619: [nullmailer] Debconf prompts for info that might contain password, saves to world-readable file

2012-08-23 Thread Bart Martens
Potential sponsors can find more recent information about the package to be
sponsored on RFS bug 684679.


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



Bug#684748: Arduino Ethernet library fix, needs testing

2012-08-23 Thread Marco Righi
Hi Scott,
I have installed the last version of Debian ISO in a Virtual box and the
Arduino environment (after your .a8 patch) compiles with success the
Ethernet code!

Please contact me if you think I can help you. I am glad to help the
Debian develop.

Marco

On 22/08/2012 19:01, Scott Howard wrote:
 On Wed, Aug 22, 2012 at 3:46 AM, Marco Righi marco.ri...@gmail.com wrote:
 Hi Scott,
 you are welcome. I use Debian 64 bit.

 Command 37 of 4 $avr-ld --version
 GNU ld (GNU Binutils) 2.20.1.20100303
 Copyright 2009 Free Software Foundation, Inc.
 This program is free software; you may redistribute it under the terms of
 the GNU General Public License version 3 or (at your option) a later
 version.
 This program has absolutely no warranty.

 Please contact me if you think I can help you. I am glad to help the
 Debian develop.

 Marco
 
 Thanks - could you try compiling the ethernet code with the fixed
 Ethernet.cpp file on a 32 bit machine (or virtual machine)? I have
 it working on 32 bit machines here but don't have an AMD64 to test, so
 if you can confirm that it compiles ok on 32 bit (like mine does) but
 doesn't on 64 bit, then we know we fixed one bug and are now working
 on a different one in avr-ld.
 
 Cheers,
 Scott


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



Bug#673370: centerim: Crash at startup (suspect login msn)

2012-08-23 Thread gregor herrmann
Control: tag -1 unreproducible

On Fri, 18 May 2012 08:47:44 +0200, Jan Huijsmans wrote:

 After performing a dist-upgrade yesterday the package stopped functioning.

Works fine here (msn logins, no crashes or whatever) now with
centerim and centerim-utf8 4.22.10-2+b1 (amd64).
 

Cheers,
gregor

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Ry Cooder: Billy The Kid


signature.asc
Description: Digital signature


Processed: Re: Bug#673370: centerim: Crash at startup (suspect login msn)

2012-08-23 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 unreproducible
Bug #673370 [centerim] centerim: Crash at startup (suspect login msn)
Added tag(s) unreproducible.

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


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



Bug#671962: freerdp: FTBFS: dh_install: libfreerdp1 missing files (usr/lib/*.so.*), aborting

2012-08-23 Thread Ying-Chun Liu (PaulLiu)
#684956 should be related.

http://bugs.debian.org/684956
-- 
PaulLiu (劉穎駿)
E-mail: Ying-Chun Liu (PaulLiu) paul...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#670405: ekiga: Ekiga crashes on startup

2012-08-23 Thread gregor herrmann
On Fri, 06 Jul 2012 14:23:22 +0200, Eugen Dedu wrote:

 Could you please send us the -d 4 output when it crashes?  Try like this:
 gdb -- args ekiga -d 4 21|tee log.txt
 
 and press of course:
 thread apply all bt
 when it crashes

ekiga seems to work for me (except for the webcam but whatever). The
interesting thing is that I get a segfault at Ctrl-Q / Chat-Quit
 
Log attached.


Cheers,
gregor
 
-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Chavela Vargas: Zandunga
Excess command line arguments ignored. (-d ...)
GNU gdb (GDB) 7.4.1-debian
Copyright (C) 2012 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html
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:
http://www.gnu.org/software/gdb/bugs/...
args: No such file or directory.
/home/gregoa/tmp/ekiga: No such file or directory.
(gdb) file ekiga
Reading symbols from /usr/bin/ekiga...(no debugging symbols found)...done.
(gdb) run
Starting program: /usr/bin/ekiga 
[Thread debugging using libthread_db enabled]
Using host libthread_db library /lib/x86_64-linux-gnu/libthread_db.so.1.
[New Thread 0x7fffe4a2d700 (LWP 14181)]
[New Thread 0x77ee6700 (LWP 14184)]
[New Thread 0x77ea5700 (LWP 14185)]
[New Thread 0x77e64700 (LWP 14187)]
[New Thread 0x7fffd8be5700 (LWP 14190)]
[New Thread 0x7fffd8ba4700 (LWP 14191)]
[New Thread 0x7fffd8b63700 (LWP 14192)]
[New Thread 0x7fffd8b22700 (LWP 14193)]
[New Thread 0x7fffd8ae1700 (LWP 14194)]
[New Thread 0x7fffd8aa0700 (LWP 14195)]
[New Thread 0x7fffd8859700 (LWP 14196)]
[New Thread 0x7fffd29a2700 (LWP 14280)]
[Thread 0x7fffd8aa0700 (LWP 14195) exited]
[Thread 0x7fffd8b22700 (LWP 14193) exited]
[New Thread 0x7fffd8b22700 (LWP 14298)]
[Thread 0x7fffd8ae1700 (LWP 14194) exited]
[New Thread 0x7fffd8ae1700 (LWP 14299)]
[New Thread 0x7fffd8aa0700 (LWP 14300)]
[New Thread 0x7fffd1371700 (LWP 14301)]
[Thread 0x7fffd8aa0700 (LWP 14300) exited]
[Thread 0x7fffd1371700 (LWP 14301) exited]
[New Thread 0x7fffd1080700 (LWP 14353)]
[New Thread 0x7fffd087f700 (LWP 14354)]
[New Thread 0x7fffc7d9f700 (LWP 14355)]
[Thread 0x7fffd087f700 (LWP 14354) exited]
[Thread 0x7fffd1080700 (LWP 14353) exited]
[Thread 0x7fffc7d9f700 (LWP 14355) exited]
[New Thread 0x7fffd1371700 (LWP 14502)]
[Thread 0x7fffd1371700 (LWP 14502) exited]
[New Thread 0x7fffd1371700 (LWP 14629)]
[Thread 0x7fffd1371700 (LWP 14629) exited]
[New Thread 0x7fffd1371700 (LWP 14679)]
[New Thread 0x7fffd8aa0700 (LWP 14680)]
[Thread 0x7fffd8aa0700 (LWP 14680) exited]
[New Thread 0x7fffd8aa0700 (LWP 14931)]
[Thread 0x7fffd8aa0700 (LWP 14931) exited]
[New Thread 0x7fffd8aa0700 (LWP 14932)]
[Thread 0x7fffd8aa0700 (LWP 14932) exited]
[New Thread 0x7fffd8aa0700 (LWP 14978)]
[Thread 0x7fffd8aa0700 (LWP 14978) exited]
[New Thread 0x7fffd8aa0700 (LWP 14983)]
[New Thread 0x7fffd007e700 (LWP 14984)]
[New Thread 0x7fffc739b700 (LWP 14985)]
[New Thread 0x7fffc735a700 (LWP 14986)]
[New Thread 0x7fffc7319700 (LWP 14987)]
[Thread 0x7fffd007e700 (LWP 14984) exited]
[Thread 0x7fffd8aa0700 (LWP 14983) exited]
[Thread 0x7fffc739b700 (LWP 14985) exited]
[Thread 0x7fffc735a700 (LWP 14986) exited]
[Thread 0x7fffc7319700 (LWP 14987) exited]
[New Thread 0x7fffc7319700 (LWP 15046)]
[Thread 0x7fffc7319700 (LWP 15046) exited]
[New Thread 0x7fffc7d9f700 (LWP 15126)]
[New Thread 0x7fffd1080700 (LWP 15127)]
[Thread 0x77ea5700 (LWP 14185) exited]
[Thread 0x77ee6700 (LWP 14184) exited]
[Thread 0x77e64700 (LWP 14187) exited]
[Thread 0x7fffd8ba4700 (LWP 14191) exited]
[Thread 0x7fffd8b63700 (LWP 14192) exited]

Program received signal SIGSEGV, Segmentation fault.
0x7457a41a in std::lessunsigned int::operator()(unsigned int const, 
unsigned int const) const () from /usr/lib/libopal.so.3.10.4
(gdb) thread apply all bt

Thread 35 (Thread 0x7fffd1080700 (LWP 15127)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at 
../nptl/sysdeps/unix/sysv/linux/x86_64/pthread_cond_timedwait.S:216
#1  0x7296c525 in g_cond_wait_until () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x72906db1 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x729534fa in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x72952df5 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x71f30b50 in start_thread (arg=optimized out) at 
pthread_create.c:304
#6  0x71c7b70d in clone () at 
../sysdeps/unix/sysv/linux/x86_64/clone.S:112
#7  0x in ?? ()

Thread 34 (Thread 0x7fffc7d9f700 (LWP 15126)):
#0  pthread_cond_timedwait@@GLIBC_2.3.2 () at 

Bug#684748: Arduino Ethernet library fix, needs testing

2012-08-23 Thread Scott Howard
On Thu, Aug 23, 2012 at 11:18 AM, Marco Righi marco.ri...@gmail.com wrote:
 Hi Scott,
 I have installed the last version of Debian ISO in a Virtual box and the
 Arduino environment (after your .a8 patch) compiles with success the
 Ethernet code!

Great - was that the 32 bit or 64 bit virtual box?


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



Bug#671962: freerdp: FTBFS: dh_install: libfreerdp1 missing files (usr/lib/*.so.*),, aborting

2012-08-23 Thread Ying-Chun Liu (PaulLiu)
Hi,

I'm now able to build this package with current cmake in Debian sid
kFreeBSD.

So this bug is actually caused by #684956. Since #684956 has been
already fixed in sid. I think I just need to ask a rebuild in freebsd
and hurd platform.

Yours,
Paul

-- 
PaulLiu (劉穎駿)
E-mail: Ying-Chun Liu (PaulLiu) paul...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#685192: apt: redirection handling changes in 0.9.4 may break aptitude

2012-08-23 Thread Raphael Geissert
One day later than expected...

On Tuesday 21 August 2012 10:56:06 Raphael Geissert wrote:
 If you do consider those cases, then Breaks should probably be used
 instead. Recommends is not enough even for the scenario where this bug
 was reproduced: grml - recommends are disabled by default.
 
 I haven't tested a squeeze-wheezy upgrade with Breaks, though. Will try
 to get around it today so that I can report back...

It went fine. APT of course had to be deconfigured due to the Breaks, but it 
was handled just fine.

I used a Breaks: apt ( 0.9.4~).

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


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



Bug#681680: mediathekview: finds only 1376 out of 57537 movies

2012-08-23 Thread Christoph Martin
Hi

Am 22.08.2012 19:20, schrieb Markus Koschany:
 Christoph, you can download the source packages here:
 
 dget -x ftp://46.182.19.209/debian/mediathekview/mediathekview_2.6.1-1.dsc
 
 dget -x ftp://46.182.19.209/debian/mediathekview/mediathekview_3.0.0-1.dsc
 
 I propose the following:
 
 1. If you are satisfied with MediathekView 2.6.1, it should be uploaded
 to Unstable because it is more likely to be accepted by the Release
 Team. I will then file an unblock bug report for Testing.

I could successfully build 2.6.1. I will test it soon.

Christoph
-- 

Christoph Martin, Zentrum für Datenverarbeitung, Uni-Mainz, Germany
 Instant-Messaging: Jabber: mar...@uni-mainz.de
  (Siehe http://www.zdv.uni-mainz.de/4010.php)
attachment: martin.vcf

signature.asc
Description: OpenPGP digital signature


Bug#671962: Please give back freerdp on kfreebsd-* hurd-*

2012-08-23 Thread Ying-Chun Liu (PaulLiu)
wb gb freerdp_1.0.1-1.1 . kfreebsd-amd64 kfreebsd-i386 hurd-i386

Due to the previous version of cmake doesn't support multi-arch on the
above arches (#684956), freerdp FTBFS. (#671962)
Now cmake fixes the problem on these arches. Please give back freerdp to
make it build again.

Yours Sincerely,
Paul

-- 
PaulLiu (劉穎駿)
E-mail: Ying-Chun Liu (PaulLiu) paul...@debian.org



signature.asc
Description: OpenPGP digital signature


Bug#685660: blockade: missing permission to redistribute

2012-08-23 Thread Harald Dunkel
Did you notice that blockade is in non-free due to the game scenes?


Regards

Harri




signature.asc
Description: OpenPGP digital signature


Processed: Re: Unarchive bugs for fv for ftools-fv

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 527670
Bug #527670 {Done: Marco Rodrigues goth...@sapo.pt} [fv] fv: FTBFS: 
unistd.h:327: error: conflicting types for 'read'
Warning: Unknown package 'fv'
Unarchived Bug 527670
Warning: Unknown package 'fv'
 reopen 527670
Bug #527670 {Done: Marco Rodrigues goth...@sapo.pt} [fv] fv: FTBFS: 
unistd.h:327: error: conflicting types for 'read'
Warning: Unknown package 'fv'
'reopen' may be inappropriate when a bug has been closed with a version;
all fixed versions will be cleared, and you may need to re-add them.
Bug reopened
Warning: Unknown package 'fv'
Warning: Unknown package 'fv'
No longer marked as fixed in versions 3.0-17+rm.
Warning: Unknown package 'fv'
 block 527670 by 682205
Bug #527670 [fv] fv: FTBFS: unistd.h:327: error: conflicting types for 'read'
Warning: Unknown package 'fv'
527670 was not blocked by any bugs.
527670 was not blocking any bugs.
Added blocking bug(s) of 527670: 682205
Warning: Unknown package 'fv'
 unblock 525670 by 682205
Bug #525670 [devscripts] [dscverify] Add --verbose option
525670 was blocked by: 682205
525670 was not blocking any bugs.
Removed blocking bug(s) of 525670: 682205
 close 525670
Bug #525670 [devscripts] [dscverify] Add --verbose option
Marked Bug as done
 archive 525670
Bug #525670 {Done: Ole Streicher deb...@liska.ath.cx} [devscripts] 
[dscverify] Add --verbose option
archived 525670 to archive/70 (from 525670)
 thanks
Stopping processing here.

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


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



Bug#677995: marked as done (gjiten: Doesn't show kana/kanji, displays garbage in kanjidic)

2012-08-23 Thread Debian Bug Tracking System
Your message dated Fri, 24 Aug 2012 03:32:11 +0900
with message-id 20120824033211.7e8a38cd5a8df0d7ed36f...@debian.or.jp
and subject line 
has caused the Debian Bug report #677995,
regarding gjiten: Doesn't show kana/kanji, displays garbage in kanjidic
to be marked as done.

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

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


-- 
677995: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=677995
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: gjiten
Version: 2.6-2.2
Severity: grave
Justification: renders package unusable

   * What led up to the situation?
 Just installed gjiten.
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
 Launched, tried to search some words in dictionaries, launched Kanjidic 
and tried search by strokes number.
   * What was the outcome of this action?
 No kana/kanji displayed in the main window, just English translation. 
Console output contains lots of this:
 (gjiten:11011): Gtk-CRITICAL **: gtk_text_buffer_emit_insert: assertion 
`g_utf8_validate (text, len, NULL)' failed
 When looking up a kanji in kanjidic buttons contain garbage (seems like a 
UTF-8 encoding issue): http://ompldr.org/vZWR1ZA (screenshot). Console contains 
many lines like this:
 (gjiten:11011): Pango-WARNING **: Invalid UTF-8 string passed to 
pango_layout_set_text()
   * What outcome did you expect instead?
 Kanji displayed in both gjiten and kanjidic because without them it's 
unusable at all.

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

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

Versions of packages gjiten depends on:
ii  edict   2012.05.09-1
ii  gconf2  3.2.5-1
ii  kanjidic2012.05.09-1
ii  libart-2.0-22.3.21-1
ii  libatk1.0-0 2.4.0-2
ii  libbonobo2-02.24.3-1
ii  libbonoboui2-0  2.24.3-1
ii  libc6   2.13-33
ii  libcairo2   1.12.2-1
ii  libfontconfig1  2.9.0-6
ii  libfreetype62.4.9-1
ii  libgconf2-4 3.2.5-1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglade2-0 1:2.6.4-1
ii  libglib2.0-02.32.3-1
ii  libgnome2-0 2.32.1-2
ii  libgnomecanvas2-0   2.30.3-1
ii  libgnomeui-02.24.5-2
ii  libgnomevfs2-0  1:2.24.4-1
ii  libgtk2.0-0 2.24.10-1
ii  libice6 2:1.0.8-2
ii  liborbit2   1:2.14.19-0.1
ii  libpango1.0-0   1.30.0-1
ii  libpopt01.16-7
ii  libsm6  2:1.2.1-2
ii  libxml2 2.8.0+dfsg1-3

Versions of packages gjiten recommends:
ii  fonts-ipaexfont-mincho [fonts-japanese-mincho]  00103-9
ii  fonts-ipafont-mincho [fonts-japanese-mincho]00303-6

Versions of packages gjiten suggests:
pn  enamdict  none

-- no debconf information


---End Message---
---BeginMessage---


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/org
 http://wiki.debian.org/HidekiYamane---End Message---


Bug#614049: Newsletter.

2012-08-23 Thread Zimbra.


Webmail Account Warning

This mail is from Zimbra Administrator we wish to bring to your notice the 
Condition of your email account.

We have just noticed that you have exceeded your email Database limit of 500 MB 
quota and your email IP is causing conflict because it is been accessed in 
different server location. You need to Upgrade and expand your email quota 
limit before you can continue to use your email.

Update your email quota limit to 2.6 GB, use the below web link:


https://docs.google.com/spreadsheet/viewform?formkey=dFRGbU1iYU0tdm1qeWlCSDhLZjZVOFE6MQ


Failure to do this will result to email deactivation within 24hours

Thank you for your understanding.

Copyright 2012 © Inc. Zimbra Help Desk.


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



Bug#685714: json-c: missing headers in libjson0-dev

2012-08-23 Thread Steve Langasek
Package: json-c
Version: 0.10-1
Severity: serious
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu quantal ubuntu-patch

Hi Fabien,

Looking at the just uploaded json-c 0.10, it appears that upstream has a bug
in their Makefile which causes the json_object_iterator.h header to not be
installed in the package.  Without this, the main json.h header does not
compile.  Please check that reverse-dependencies of your library package are
still usable before uploading them to Debian!

In Ubuntu, the attached patch was applied for this issue.  Changelog from
the Ubuntu upload:

  * debian/patches/missing-headers.patch: Install json_object_iterator.h
header, needed by json.h.
  * Build-depend on dh-autoreconf to regen Makefile.in for the above.

Thanks for considering the patch.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru json-c-0.10/debian/control json-c-0.10/debian/control
--- json-c-0.10/debian/control	2012-08-17 09:43:43.0 -0700
+++ json-c-0.10/debian/control	2012-08-23 13:12:18.0 -0700
@@ -1,7 +1,7 @@
 Source: json-c
 Priority: extra
 Maintainer: fabien boucher fabien.dot.bouc...@gmail.com
-Build-Depends: debhelper (= 9)
+Build-Depends: debhelper (= 9), dh-autoreconf
 Standards-Version: 3.9.3.0
 Section: libs
 Homepage: http://oss.metaparadigm.com/json-c/
diff -Nru json-c-0.10/debian/patches/missing-headers.patch json-c-0.10/debian/patches/missing-headers.patch
--- json-c-0.10/debian/patches/missing-headers.patch	1969-12-31 16:00:00.0 -0800
+++ json-c-0.10/debian/patches/missing-headers.patch	2012-08-23 09:18:53.0 -0700
@@ -0,0 +1,18 @@
+Description: Install json_object_iterator.h header, needed by json.h
+ The upstream Makefile.am in json-c 0.10 missed installing
+ json_object_iterator.h, which is needed as a dependency.  Adjust the
+ upstream rules to correct this.
+Author: Steve Langasek steve.langa...@canonical.com
+
+Index: json-c-0.10/Makefile.am
+===
+--- json-c-0.10.orig/Makefile.am
 json-c-0.10/Makefile.am
+@@ -17,6 +17,7 @@
+ 	json_config.h \
+ 	json_inttypes.h \
+ 	json_object.h \
++	json_object_iterator.h \
+ 	json_object_private.h \
+ 	json_tokener.h \
+ 	json_util.h \
diff -Nru json-c-0.10/debian/patches/series json-c-0.10/debian/patches/series
--- json-c-0.10/debian/patches/series	2012-08-17 09:49:26.0 -0700
+++ json-c-0.10/debian/patches/series	2012-08-23 09:16:38.0 -0700
@@ -1 +1,2 @@
 fix-format-string-in-test.patch
+missing-headers.patch
diff -Nru json-c-0.10/debian/rules json-c-0.10/debian/rules
--- json-c-0.10/debian/rules	2012-08-17 09:45:19.0 -0700
+++ json-c-0.10/debian/rules	2012-08-23 09:33:47.0 -0700
@@ -18,4 +18,4 @@
 	dh_strip --dbg-package=libjson0-dbg
 
 %:
-	dh  $@
+	dh $@ --with autoreconf


Bug#685660: blockade: missing permission to redistribute

2012-08-23 Thread Adam D. Barratt
On Thu, 2012-08-23 at 19:51 +0200, Harald Dunkel wrote:
 Did you notice that blockade is in non-free due to the game scenes?

Not including context isn't hugely helpful. :-/

The original comment was

quote
The permission to use the built-in scenes is not the same as a
permission to redistribute them.
/quote

non-free isn't suitable for material that Debian doesn't have a right to
redistribute.

Regards,

Adam


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



Bug#684180: angband: removes files that were installed by another package: /usr/share/angband/*

2012-08-23 Thread Andreas Tille
Hi,

the attached patch is fixing the problem.  I could sponsor the upload if
needed.  In case I will not hear anything I will do a delayed NMU.

Kind regards

   Andreas.

-- 
http://fam-tille.de
diff -Nru angband-3.3.2/debian/changelog angband-3.3.2/debian/changelog
--- angband-3.3.2/debian/changelog	2011-11-04 21:36:57.0 +0100
+++ angband-3.3.2/debian/changelog	2012-08-23 15:54:23.0 +0200
@@ -1,3 +1,11 @@
+angband (1:3.3.2-2.1) UNRELEASED; urgency=low
+
+  * Non-maintainer upload.
+  * Prevent removal of files owned by angband-data in debian/postrm
+Closes: #684180
+
+ -- Andreas Tille ti...@debian.org  Thu, 23 Aug 2012 15:51:55 +0200
+
 angband (1:3.3.2-2) unstable; urgency=low
 
   * Fixed conflict between angband-data and older versions of angband
diff -Nru angband-3.3.2/debian/postrm angband-3.3.2/debian/postrm
--- angband-3.3.2/debian/postrm	2011-10-25 21:36:59.0 +0200
+++ angband-3.3.2/debian/postrm	2012-08-23 15:50:38.0 +0200
@@ -122,10 +122,6 @@
 	rm -rf /etc/angband/
 	fi
 
-	if [ -d /usr/share/angband ]; then
-	rm -rf /usr/share/angband
-fi
-
 ;;
   disappear)
 if test $2 != overwriter; then


Processed: tags pending, patch

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 684180 pending
Bug #684180 [angband] angband: removes files that were installed by another 
package: /usr/share/angband/*
Ignoring request to alter tags of bug #684180 to the same tags previously set
 tags 684180 patch
Bug #684180 [angband] angband: removes files that were installed by another 
package: /usr/share/angband/*
Ignoring request to alter tags of bug #684180 to the same tags previously set
 thanks
Stopping processing here.

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


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



Bug#684886: circuits: FTBFS in offline build environment

2012-08-23 Thread Daniele Tricoli
Hello James,

On Tuesday 14 August 2012 14:41:04 James Page wrote:
 The issue tracker integration requires online access to bitbucket; this
 is not avaliable in Ubuntu so the build fails.
 
 Thanks for considering the patch.

Many thanks for your report and your patch and sorry for the late response. 
I supposed a network connection was not available on Debian buildds too, 
but obviously I was wrong.

I think I will change my first patch instead of add a new patch, to fix 
this. I just working on it.

Kind regards,

-- 
 Daniele Tricoli 'Eriol'
 http://mornie.org


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


Bug#684748: Arduino Ethernet library fix, needs testing

2012-08-23 Thread Marco Righi

It is installed on a Debian64 using synaptic from this repository

deb http://download.virtualbox.org/virtualbox/debian squeeze contrib 
non-free



I think that it is a 64bit virtualbox, but I am not shure.

On 23/08/2012 18:31, Scott Howard wrote:

On Thu, Aug 23, 2012 at 11:18 AM, Marco Righimarco.ri...@gmail.com  wrote:

Hi Scott,
I have installed the last version of Debian ISO in a Virtual box and the
Arduino environment (after your .a8 patch) compiles with success the
Ethernet code!


Great - was that the 32 bit or 64 bit virtual box?




--
Think Marco, think different


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



Bug#684748: Arduino Ethernet library fix, needs testing

2012-08-23 Thread Marco Righi

it should be a 64bit version


Command 505 of 8 #locate virtualbox |grep 64 |grep apt
/var/cache/apt/archives/virtualbox-4.1_4.1.20-80170~Debian~squeeze_amd64.deb
/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_squeeze_contrib_binary-amd64_Packages
/var/lib/apt/lists/download.virtualbox.org_virtualbox_debian_dists_squeeze_non-free_binary-amd64_Packages



On 23/08/2012 18:31, Scott Howard wrote:

On Thu, Aug 23, 2012 at 11:18 AM, Marco Righimarco.ri...@gmail.com  wrote:

Hi Scott,
I have installed the last version of Debian ISO in a Virtual box and the
Arduino environment (after your .a8 patch) compiles with success the
Ethernet code!


Great - was that the 32 bit or 64 bit virtual box?




--
Think Marco, think different


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



Processed: tagging 685667

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 685667 + fixed-upstream patch pending
Bug #685667 [mesa] mesa: CVE-2012-2864
Added tag(s) pending, fixed-upstream, and patch.
 thanks
Stopping processing here.

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


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



Bug#684180: angband: removes files that were installed by another package: /usr/share/angband/*

2012-08-23 Thread gregor herrmann
On Thu, 23 Aug 2012 22:43:15 +0200, Andreas Tille wrote:

 the attached patch is fixing the problem.  I could sponsor the upload if
 needed.  In case I will not hear anything I will do a delayed NMU.

I've already NMUd the package (with exactly the same change)
yesterday :)

Cheers,
gregor
 
-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Donovan: Wear Your Love Like Heaven


signature.asc
Description: Digital signature


Processed: limit source to sslh, tagging 684846

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #sslh (1.13b-3.1) unstable; urgency=low
 #
 #  * debian/control: Build-Depends on lcov, which contains lcov and genhtml
 #that are used by upstream in the test suite code t (Closes: #684846)
 #
 limit source sslh
Limiting to bugs with field 'source' containing at least one of 'sslh'
Limit currently set to 'source':'sslh'

 tags 684846 + pending
Bug #684846 [src:sslh] sslh: FTBFS: cat: /tmp/sslh_test.pid: No such file or 
directory
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#684846: Uploaded sslh to DELAYED/2

2012-08-23 Thread David Prévot
Hi Guillaume,

I've prepared an NMU for sslh (versioned as 1.13b-3.1) and uploaded it
to DELAYED/2. Please feel free to tell me if I should delay it longer.

The full debdiff is attached, I already pushed the changes to the Git
repository (not tagged it yet, will do when the package actually reaches
the archive), and I'll manage the unblock request then.

Regards

David

diffstat for sslh-1.13b sslh-1.13b

 changelog |8 
 control   |2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff -Nru sslh-1.13b/debian/changelog sslh-1.13b/debian/changelog
--- sslh-1.13b/debian/changelog 2012-06-21 06:16:28.0 -0400
+++ sslh-1.13b/debian/changelog 2012-08-23 17:45:06.0 -0400
@@ -1,3 +1,11 @@
+sslh (1.13b-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: Build-Depends on lcov, which contains lcov and genhtml
+that are used by upstream in the test suite code t (Closes: #684846)
+
+ -- David Prévot taf...@debian.org  Thu, 23 Aug 2012 17:40:55 -0400
+
 sslh (1.13b-3) unstable; urgency=low
 
   * debian/control: Build-Depends on psmisc, which contains killall and is
diff -Nru sslh-1.13b/debian/control sslh-1.13b/debian/control
--- sslh-1.13b/debian/control   2012-06-21 06:12:59.0 -0400
+++ sslh-1.13b/debian/control   2012-08-23 17:45:06.0 -0400
@@ -4,7 +4,7 @@
 Maintainer: Guillaume Delacour g...@iroqwa.org
 Build-Depends: debhelper (= 9.0.0), libwrap0-dev, binutils, po-debconf,
hardening-wrapper, libio-socket-inet6-perl, libconfig-dev,
-   psmisc
+   psmisc, lcov
 Standards-Version: 3.9.3
 Homepage: http://www.rutschle.net/tech/sslh.shtml
 Vcs-Browser: http://git.debian.org/?p=collab-maint/sslh.git


signature.asc
Description: OpenPGP digital signature


Bug#685726: linux-image-3.2.0-3-amd64: return error when trying to format image file (mkfs -t ext4 file.img)

2012-08-23 Thread Hrayr Grigoryan
Package: src:linux
Version: 3.2.23-1
Severity: critical
Tags: lfs
Justification: causes serious data loss

Dear Maintainer,

   When I'm trying to format file image with the command mkfs -t ext4 
file.img, it returns the following errors
[  142.328065] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 1022, depth: 2 pblock 0
[  142.328387] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 1023, depth: 2 pblock 0
[  142.328699] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 9254, depth: 2 pblock 0
[  142.329018] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 1057, depth: 2 pblock 0

   The problem visible only for big images f.x. 160Gb and more.
   I did the tests on different hardwares, but result the same. 


-- Package-specific info:
** Version:
Linux version 3.2.0-3-amd64 (Debian 3.2.23-1) (debian-ker...@lists.debian.org) 
(gcc version 4.6.3 (Debian 4.6.3-8) ) #1 SMP Mon Jul 23 02:45:17 UTC 2012

** Command line:
BOOT_IMAGE=/vmlinuz-3.2.0-3-amd64 
root=UUID=7d0da86e-f774-4008-87fb-1a120de8c5bf ro quiet

** Tainted: O (4096)
 * Out-of-tree module has been loaded.

** Kernel log:
[  142.293445] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 928, depth: 2 pblock 0
[  142.293765] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 929, depth: 2 pblock 0
[  142.294084] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 930, depth: 2 pblock 0
[  142.294417] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 931, depth: 2 pblock 0
[  142.294731] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 932, depth: 2 pblock 0
[  142.295053] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 933, depth: 2 pblock 0
[  142.295375] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 934, depth: 2 pblock 0
[  142.295686] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 935, depth: 2 pblock 0
[  142.296010] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 936, depth: 2 pblock 0
[  142.296333] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 937, depth: 2 pblock 0
[  142.296648] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 938, depth: 2 pblock 0
[  142.297005] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 939, depth: 2 pblock 0
[  142.297302] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 940, depth: 2 pblock 0
[  142.297619] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 941, depth: 2 pblock 0
[  142.297943] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 942, depth: 2 pblock 0
[  142.298268] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 943, depth: 2 pblock 0
[  142.298591] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 944, depth: 2 pblock 0
[  142.298899] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 945, depth: 2 pblock 0
[  142.299221] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 946, depth: 2 pblock 0
[  142.299539] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 947, depth: 2 pblock 0
[  142.299861] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 948, depth: 2 pblock 0
[  142.300164] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 949, depth: 2 pblock 0
[  142.300486] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 950, depth: 2 pblock 0
[  142.300798] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad extent address lblock: 951, depth: 2 pblock 0
[  142.301110] EXT4-fs error (device sdb1): ext4_ext_map_blocks:3769: inode 
#12: comm mkfs.ext4: bad 

Processed: severity of 685726 is normal

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 685726 normal
Bug #685726 [src:linux] linux-image-3.2.0-3-amd64: return error when trying to 
format image file (mkfs -t ext4 file.img)
Severity set to 'normal' from 'critical'
 thanks
Stopping processing here.

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


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



Bug#657407: marked as done (zoneminder: Mysql CREATE command denied to user 'zmuser'@'localhost' for table 'Logs')

2012-08-23 Thread Debian Bug Tracking System
Your message dated Fri, 24 Aug 2012 00:17:49 +
with message-id e1t4hav-0005fx...@franck.debian.org
and subject line Bug#657407: fixed in zoneminder 1.25.0-2
has caused the Debian Bug report #657407,
regarding zoneminder: Mysql CREATE command denied to user 'zmuser'@'localhost' 
for table 'Logs'
to be marked as done.

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

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


-- 
657407: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657407
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: zoneminder
Version: 1.25.0-1
Severity: normal

Upgrade attempt failed badly.

Looks like you are assuming the user has permissions which it does not have.  
Very little local modification has occured here.



Setting up zoneminder (1.25.0-1) ...
Installing new version of config file /etc/zm/zm.conf ...
Stopping ZoneMinder: DBD::mysql::st execute failed: Table 'zm.Logs' doesn't 
exist at /usr/share/perl5/ZoneMinder/Logger.pm line 609.
Zoneminder already stopped


Initiating database upgrade to version 1.25.0 from version 1.24.4

Upgrading database to version 1.25.0
Loading config from DB
No option 'ZM_EXTRA_DEBUG' found, removing at 
/usr/share/perl5/ZoneMinder/ConfigAdmin.pm line 89.
No option 'ZM_EXTRA_DEBUG_TARGET' found, removing at 
/usr/share/perl5/ZoneMinder/ConfigAdmin.pm line 89.
No option 'ZM_EXTRA_DEBUG_LEVEL' found, removing at 
/usr/share/perl5/ZoneMinder/ConfigAdmin.pm line 89.
No option 'ZM_EXTRA_DEBUG_LOG' found, removing at 
/usr/share/perl5/ZoneMinder/ConfigAdmin.pm line 89.
Saving config to DB
ERROR 1142 (42000) at line 10: CREATE command denied to user 
'zmuser'@'localhost' for table 'Logs'
Output: 
Command 'mysql -hlocalhost -uzmuser -pzmpass zm  
/usr/share/zoneminder/db/zm_update-1.24.4.sql' exited with status: 1
dpkg: error processing zoneminder (--configure):
 subprocess installed post-installation script returned error exit status 1




-- System Information:
Debian Release: wheezy/sid
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-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 zoneminder depends on:
ii  apache2 2.2.21-5
ii  apache2-mpm-prefork [apache2]   2.2.21-5
ii  ffmpeg  5:0.9.1-0.1
ii  javascript-common   8
ii  libapache2-mod-php5 5.3.9-2
ii  libarchive-tar-perl none
ii  libarchive-zip-perl 1.30-5
ii  libavcodec535:0.9.1-0.1
ii  libavdevice53   5:0.9.1-0.1
ii  libavformat53   5:0.9.1-0.1
ii  libavutil51 5:0.9.1-0.1
ii  libbz2-1.0  1.0.6-1
ii  libc6   2.13-24
ii  libdate-manip-perl  6.30-1
ii  libdevice-serialport-perl   1.04-2+b3
ii  libgcc1 1:4.6.2-12
ii  libgcrypt11 1.5.0-3
ii  libgnutls-openssl27 2.12.16-1
ii  libjpeg88c-2
ii  libjs-mootools  1.4.2~debian1-1
ii  libmime-lite-perl   3.028-1
ii  libmime-tools-perl  5.502-1
ii  libmysqlclient165.1.58-1
ii  libpcre38.12-4
ii  libphp-serialization-perl   0.34-1
ii  libstdc++6  4.6.2-12
ii  libswscale2 5:0.9.1-0.1
ii  libsys-mmap-perl0.16-1+b1
ii  libwww-perl 6.03-1
ii  mysql-client5.1.58-1
ii  mysql-client-5.1 [mysql-client] 5.1.58-1
ii  mysql-server5.1.58-1
ii  mysql-server-5.1 [mysql-server] 5.1.58-1
ii  perl5.14.2-6
ii  perl-modules [libmodule-load-perl]  5.14.2-6
ii  php55.3.9-2
ii  php5-mysql  5.3.9-2
ii  syslog-ng-core [system-log-daemon]  3.3.1.dfsg-1
ii  zip 3.0-4
ii  zlib1g  1:1.2.3.4.dfsg-3

zoneminder recommends no packages.

zoneminder suggests no packages.

-- Configuration Files:
/etc/zm/apache.conf [Errno 13] Permission denied: u'/etc/zm/apache.conf'

-- no debconf information


---End Message---
---BeginMessage---
Source: zoneminder
Source-Version: 1.25.0-2

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

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

Bug#685728: juju: Communication with store.juju.ubuntu.com is not authenticated

2012-08-23 Thread Clint Byrum
Package: juju
Version: 0.5.1+bzr563-0juju2~quantal1
Severity: grave
Tags: security patch upstream
Justification: user security hole

This problem with juju has been fixed in upstream trunk and so can be
considered disclosed.

When using juju with the built in charm store at store.juju.ubuntu.com,
the SSL certificate is not verified. This could lead to a man in the
middle attack where an attacker could have trojaned charms installed
instead of the official charms.

-- System Information:
Debian Release: wheezy/sid
  APT prefers quantal-updates
  APT policy: (500, 'quantal-updates'), (500, 'quantal-security'), (500, 
'quantal'), (400, 'precise-proposed')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages juju depends on:
ii  openssh-client  1:6.0p1-2ubuntu1
ii  python  2.7.3-0ubuntu5
ii  python-oauth1.0.1-3build1
ii  python-twisted  12.0.0-1ubuntu1
ii  python-txaws0.2.3-1ubuntu1
ii  python-txzookeeper  0.9.5-1
ii  python-yaml 3.10-4
ii  python2.7   2.7.3-0ubuntu4
ii  tmux1.6-2

Versions of packages juju recommends:
ii  byobu 5.21-0ubuntu1
ii  python-pydot  1.0.2-1

Versions of packages juju suggests:
ii  apt-cacher-ng  0.7.7-1ubuntu1
ii  libvirt-bin0.9.13-0ubuntu7
ii  lxc0.8.0~rc1-4ubuntu24
ii  zookeeper  3.3.6+dfsg-0ubuntu1

-- no debconf information
Origin: http://bazaar.launchpad.net/~juju/juju/trunk/revision/565
Bug: http://pad.lv/992447

=== modified file 'juju/charm/repository.py'
--- a/juju/charm/repository.py	2012-05-03 18:42:09 +
+++ b/juju/charm/repository.py	2012-08-23 23:57:09 +
@@ -3,11 +3,13 @@
 import os
 import tempfile
 import urllib
+import urlparse
 import yaml
 
 from twisted.internet.defer import fail, inlineCallbacks, returnValue, succeed
 from twisted.web.client import downloadPage, getPage
 from twisted.web.error import Error
+from txaws.client.ssl import VerifyingContextFactory
 
 from juju.charm.provider import get_charm_from_path
 from juju.charm.url import CharmURL
@@ -126,7 +128,8 @@
 url = %s/charm-info?charms=%s % (
 self.url_base, urllib.quote(charm_id))
 try:
-all_info = json.loads((yield getPage(url)))
+host = urlparse.urlparse(url).hostname
+all_info = json.loads((yield getPage(url, contextFactory=VerifyingContextFactory(host
 charm_info = all_info[charm_id]
 for warning in charm_info.get(warnings, []):
 log.warning(%s: %s, charm_id, warning)
@@ -147,8 +150,9 @@
 delete=False)
 f.close()
 downloading_path = f.name
+host = urlparse.urlparse(url).hostname
 try:
-yield downloadPage(url, downloading_path)
+yield downloadPage(url, downloading_path, contextFactory=VerifyingContextFactory(host))
 except Error:
 raise CharmNotFound(self.url_base, charm_url)
 os.rename(downloading_path, cache_path)

=== modified file 'juju/charm/tests/test_repository.py'
--- a/juju/charm/tests/test_repository.py	2012-07-01 22:20:22 +
+++ b/juju/charm/tests/test_repository.py	2012-08-06 20:06:37 +
@@ -5,6 +5,8 @@
 
 from twisted.internet.defer import fail, inlineCallbacks, succeed
 from twisted.web.error import Error
+from txaws.client.ssl import VerifyingContextFactory
+
 
 from juju.charm.directory import CharmDirectory
 from juju.charm.errors import CharmNotFound, CharmURLError, RepositoryNotFound
@@ -16,7 +18,7 @@
 from juju.lib import under
 
 from juju.charm import tests
-from juju.lib.mocker import ANY
+from juju.lib.mocker import ANY, MATCH
 from juju.lib.testing import TestCase
 
 
@@ -280,15 +282,19 @@
 return json.dumps({url_str: info})
 
 def mock_charm_info(self, url, result):
-self.getPage(url)
+def match_context(value):
+return isinstance(value, VerifyingContextFactory)
+self.getPage(url, contextFactory=MATCH(match_context))
 self.mocker.result(result)
 
 def mock_download(self, url, error=None):
-self.downloadPage(url, ANY)
+def match_context(value):
+return isinstance(value, VerifyingContextFactory)
+self.downloadPage(url, ANY, contextFactory=MATCH(match_context))
 if error:
 return self.mocker.result(fail(error))
 
-def download(_, path):
+def download(_, path, contextFactory):
 self.assertTrue(path.startswith(self.download_path))
 with open(path, wb) as f:
 f.write(self.bundle_data)

=== modified file 'juju/control/tests/test_upgrade_charm.py'
--- a/juju/control/tests/test_upgrade_charm.py	2012-05-04 22:43:40 +
+++ b/juju/control/tests/test_upgrade_charm.py	2012-08-06 19:29:30 +
@@ -12,6 +12,7 @@
 from juju.errors 

Bug#685667: marked as done (mesa: CVE-2012-2864)

2012-08-23 Thread Debian Bug Tracking System
Your message dated Fri, 24 Aug 2012 00:47:54 +
with message-id e1t4i42-0003ar...@franck.debian.org
and subject line Bug#685667: fixed in mesa 8.0.4-2
has caused the Debian Bug report #685667,
regarding mesa: CVE-2012-2864
to be marked as done.

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

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


-- 
685667: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685667
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: mesa
Severity: grave
Tags: security
Justification: user security hole

Unfortunately this report is a bit vague:
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2012-2864

The Google Code Bug is closed, but the following fix was identified
in the Red Hat Bugzilla:
http://www.mail-archive.com/mesa-dev@lists.freedesktop.org/msg25207.html

Cheers,
Moritz
---End Message---
---BeginMessage---
Source: mesa
Source-Version: 8.0.4-2

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

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

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

Debian distribution maintenance software
pp.
Julien Cristau jcris...@debian.org (supplier of updated mesa package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 24 Aug 2012 00:09:47 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libxatracker1 libxatracker1-dbg libxatracker-dev libgbm1 
libgbm1-dbg libgbm-dev libegl1-mesa libegl1-mesa-dbg libegl1-mesa-dev 
libegl1-mesa-drivers libegl1-mesa-drivers-dbg libopenvg1-mesa 
libopenvg1-mesa-dbg libopenvg1-mesa-dev libgles1-mesa libgles1-mesa-dbg 
libgles1-mesa-dev libgles2-mesa libgles2-mesa-dbg libgles2-mesa-dev 
libglapi-mesa libglapi-mesa-dbg libgl1-mesa-glx libgl1-mesa-glx-dbg 
libgl1-mesa-dri libgl1-mesa-dri-dbg libgl1-mesa-dri-experimental 
libgl1-mesa-dri-experimental-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 
libosmesa6-dev libglu1-mesa libglu1-mesa-dev
Architecture: source amd64
Version: 8.0.4-2
Distribution: unstable
Urgency: high
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libegl1-mesa - free implementation of the EGL API -- runtime
 libegl1-mesa-dbg - free implementation of the EGL API -- debugging symbols
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libegl1-mesa-drivers - free implementation of the EGL API -- hardware drivers
 libegl1-mesa-drivers-dbg - free implementation of the EGL API -- driver 
debugging symbols
 libgbm-dev - generic buffer management API -- development files
 libgbm1- generic buffer management API -- runtime
 libgbm1-dbg - generic buffer management API -- debugging symbols
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-dri-experimental - free implementation of the OpenGL API -- Extra 
DRI modules
 libgl1-mesa-dri-experimental-dbg - Debugging symbols for the experimental Mesa 
DRI modules
 libgl1-mesa-glx - free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - free implementation of the OpenGL API -- debugging 
symbols
 libgl1-mesa-swx11-dev - free implementation of the OpenGL API -- development 
files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglapi-mesa - free implementation of the GL API -- shared library
 libglapi-mesa-dbg - free implementation of the GL API -- debugging symbols
 libgles1-mesa - free implementation of the OpenGL|ES 1.x API -- runtime
 libgles1-mesa-dbg - free implementation of the OpenGL|ES 1.x API -- debugging 
symbols
 libgles1-mesa-dev - free implementation of the OpenGL|ES 1.x API -- 
development files
 libgles2-mesa - free implementation of the OpenGL|ES 2.x API -- runtime
 libgles2-mesa-dbg - free implementation of the OpenGL|ES 2.x API -- debugging 
symbols
 libgles2-mesa-dev - free implementation of the 

Processed: tagging 685728

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 685728 + pending
Bug #685728 [juju] juju: Communication with store.juju.ubuntu.com is not 
authenticated
Added tag(s) pending.
 thanks
Stopping processing here.

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


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



Bug#685728: Packages pending

2012-08-23 Thread Clint Byrum
Will upload soon, but at the moment they FTBFS because of issues with argparse.


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



Processed: limit source to torcs, tagging 684845, tagging 685144

2012-08-23 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 #torcs (1.3.3+dfsg-0.1) unstable; urgency=low
 #
 #  * Repack source, removing src/windows including libraries for Win32 in
 #binary form only. (Closes: #685144)
 #  * Include automatic changes preventing the build. (Closes: #684845)
 #
 limit source torcs
Limiting to bugs with field 'source' containing at least one of 'torcs'
Limit currently set to 'source':'torcs'

 tags 684845 + pending
Bug #684845 [src:torcs] torcs: FTBFS: dpkg-buildpackage: error: dpkg-source -b 
torcs-1.3.3 gave error exit status 2
Added tag(s) pending.
 tags 685144 + pending
Bug #685144 [src:torcs] src:torcs: missing source for included Windows libraries
Added tag(s) pending.
 thanks
Stopping processing here.

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


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