Bug#752052: kde4libs: CVE-2014-3494: POP3 kioslave silently accepted invalid SSL certificates

2014-06-19 Thread Salvatore Bonaccorso
Source: kde4libs
Version: 4:4.13.1-1
Severity: grave
Tags: security upstream fixed-upstream
Justification: user security hole

Hi

See http://www.kde.org/info/security/advisory-20140618-1.txt for
further reference.

From the advisory only 4.10.95 to 4.13.2 are affected.

Regards,
Salvatore


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



Processed: Reducing severity

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 severity 750187 wishlist
Bug #750187 [libvtk6] Use system installed alglib
Severity set to 'wishlist' from 'serious'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750187: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750187
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#750187: Reducing severity

2014-06-19 Thread Anton Gladky
severity 750187 wishlist
thanks

===
2014/06/12. After discussing this issue with upstream,
I decided to disable this patch for the moment.
There is no backport compatibility between
Alglib 1.0 and 3.*. This patch compiles, but no
guarantee, that it works witn 3.x normally.
===

http://anonscm.debian.org/gitweb/?p=debian-science/packages/vtk6.git;a=commit;h=bc645d1a5c0dc7d3ab780777fcd2fd65847699f2

Anton


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



Bug#752053: haskell-simple-sendfile: FTBFS on kfreebsd hurd

2014-06-19 Thread Samuel Thibault
Source: haskell-simple-sendfile
Version: 0.2.11-2
Severity: serious
Justification: FTBFS

Hello,

haskell-simple-sendfile is currently bd-uninstallable on kfreebsd  hurd
arches because it build-depends on libghc-conduit-dev ( 1.1), and the
current version of haskell-conduit is 1.1.6.

haskell-simple-sendfile happens to build wine with haskell-conduit
1.1.6, so I guess it is a matter of reuploading haskell-simple-sendfile
build-depending on libghc-conduit-dev ( 1.2)?

Samuel

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.15.0 (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/bash

-- 
Samuel
I once witnessed a long-winded, month-long flamewar over the use of
mice vs. trackballs...It was very silly.
(By Matt Welsh)


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



Bug#752040: pysol fails to run

2014-06-19 Thread Michael Sebastian
Package: pysolfc
Version: 2.0-3
Followup-For: Bug #752040

Dear Maintainer,

Pysol was working fine this morning.
Today I did an update.
Now Pysol does not work.
I get exactly the same message as the bug reporter.

Regards,
Michael Sebastian

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

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

Versions of packages pysolfc depends on:
ii  python2.7.6-2
ii  python-configobj  4.7.2+ds-5
ii  python-pygame 1.9.1release+dfsg-10
ii  python-tk 2.7.7-1

Versions of packages pysolfc recommends:
ii  python-pil.imagetk [python-imaging-tk]  2.3.0-2+b1
pn  tk-tile none

Versions of packages pysolfc suggests:
pn  freecell-solver   none
ii  pysolfc-cardsets  2.0+dfsg2-1

-- 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#752057: python-tk: importing matplotlib does not work anymore

2014-06-19 Thread Mathias Palm
Package: python-tk
Version: 2.7.7-2
Severity: grave
Justification: renders package unusable

Dear Maintainer,

   * What led up to the situation?

importing matplotlib into ipython


   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?

mathias@spits:~$ ipython 
Python 2.7.7 (default, Jun  3 2014, 16:16:56) 
Type copyright, credits or license for more information.

IPython 2.1.0 -- An enhanced Interactive Python.
? - Introduction and overview of IPython's features.
%quickref - Quick reference.
help  - Python's own help system.
object?   - Details about 'object', use 'object??' for extra details.

In [1]: import matplotlib.pyplot as plt
---
ImportError   Traceback (most recent call last)
ipython-input-1-eff513f636fd in module()
 1 import matplotlib.pyplot as plt

/usr/lib/pymodules/python2.7/matplotlib/pyplot.py in module()
 96 
 97 from matplotlib.backends import pylab_setup
--- 98 _backend_mod, new_figure_manager, draw_if_interactive, _show = 
pylab_setup()
 99 
100 

/usr/lib/pymodules/python2.7/matplotlib/backends/__init__.pyc in pylab_setup()
 26 # imports. 0 means only perform absolute imports.
 27 backend_mod = __import__(backend_name,
--- 28  globals(),locals(),[backend_name],0)
 29 
 30 # Things we pull in from all backends

/usr/lib/pymodules/python2.7/matplotlib/backends/backend_tkagg.py in module()
  9 
 10 # Paint image to Tk photo blitter extension
--- 11 import matplotlib.backends.tkagg as tkagg
 12 
 13 from matplotlib.backends.backend_agg import FigureCanvasAgg

/usr/lib/pymodules/python2.7/matplotlib/backends/tkagg.py in module()
  1 from __future__ import print_function
 2 from matplotlib.backends import _tkagg
  3 import Tkinter as Tk
  4 
  5 def blit(photoimage, aggimage, bbox=None, colormode=1):

ImportError: cannot import name _tkagg




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

Kernel: Linux 3.14-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 python-tk depends on:
ii  blt2.4z-9
ii  libc6  2.19-1
ii  libtcl8.6  8.6.1-6
ii  libtk8.6   8.6.1-5
ii  libx11-6   2:1.6.2-2
ii  python 2.7.6-2

python-tk recommends no packages.

Versions of packages python-tk suggests:
pn  python-tk-dbg  none
pn  tixnone

-- 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#752047: latter half of Chinese lines now injured suddenly

2014-06-19 Thread Vincent Lefevre
On 2014-06-19 13:14:36 +0800, 積丹尼 Dan Jacobson wrote:
 Do this:
 while sleep 1; do echo 歡迎收看「小姐愛魔術」; done
 Notice how only half of the chars appear?

On my machine, I see no differences with xterm 306-1, and it looks OK.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: https://www.vinc17.net/
100% accessible validated (X)HTML - Blog: https://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


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



Bug#752057: python-tk: importing matplotlib does not work anymore

2014-06-19 Thread Matthias Klose
Control: tag -1 + moreinfo
Control: severity -1 important

Am 19.06.2014 09:17, schrieb Mathias Palm:
 Package: python-tk
 Version: 2.7.7-2
 Severity: grave
 Justification: renders package unusable

works for me, still able to start e.g. idle.

 Dear Maintainer,
 
* What led up to the situation?
 
 importing matplotlib into ipython
 
 
* What exactly did you do (or not do) that was effective (or
  ineffective)?
* What was the outcome of this action?
 
 mathias@spits:~$ ipython 
[...]
 ImportError: cannot import name _tkagg

so why is this an issue with python-tk?


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



Processed: Re: Bug#752057: python-tk: importing matplotlib does not work anymore

2014-06-19 Thread Debian Bug Tracking System
Processing control commands:

 tag -1 + moreinfo
Bug #752057 [python-tk] python-tk: importing matplotlib does not work anymore
Added tag(s) moreinfo.
 severity -1 important
Bug #752057 [python-tk] python-tk: importing matplotlib does not work anymore
Severity set to 'important' from 'grave'

-- 
752057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752057
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#752047: latter half of Chinese lines now injured suddenly

2014-06-19 Thread Thomas Dickey
On Thu, Jun 19, 2014 at 01:14:36PM +0800, 積丹尼 Dan Jacobson wrote:
 Package: xterm
 Version: 307-1
 Severity: important
 
 Do this:
 while sleep 1; do echo 歡迎收看「小姐愛魔術」; done
 Notice how only half of the chars appear?
 Now switch to another window and then back.
 Notice how the older lines are now OK looking?

I don't see the indicated behavior in a quick check.
However, problems in this area can be hard to duplicate :-(

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#752047: latter half of Chinese lines now injured suddenly

2014-06-19 Thread Thomas Dickey
On Thu, Jun 19, 2014 at 04:20:06AM -0400, Thomas Dickey wrote:
 On Thu, Jun 19, 2014 at 01:14:36PM +0800, 積丹尼 Dan Jacobson wrote:
  Package: xterm
  Version: 307-1
  Severity: important
  
  Do this:
  while sleep 1; do echo 歡迎收看「小姐愛魔術」; done
  Notice how only half of the chars appear?
  Now switch to another window and then back.
  Notice how the older lines are now OK looking?
 
 I don't see the indicated behavior in a quick check.
 However, problems in this area can be hard to duplicate :-(

now that my attention is called to it, I found a different
test (in the ncurses test-driver, menu O) which is probably
related.  I'll investigate that...

thanks

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Processed: Re: Bug#752048: funny-manpages and lintian: error when trying to install together

2014-06-19 Thread Debian Bug Tracking System
Processing control commands:

 reassign -1 funny-manpages 1.3-5
Bug #752048 [lintian,funny-manpages] funny-manpages and lintian: error when 
trying to install together
Bug reassigned from package 'lintian,funny-manpages' to 'funny-manpages'.
Ignoring request to alter found versions of bug #752048 to the same values 
previously set
Ignoring request to alter fixed versions of bug #752048 to the same values 
previously set
Bug #752048 [funny-manpages] funny-manpages and lintian: error when trying to 
install together
There is no source info for the package 'funny-manpages' at version '1.3-5' 
with architecture ''
Unable to make a source version for version '1.3-5'
Marked as found in versions 1.3-5.
 forcemerge 269703 -1
Bug #269703 [funny-manpages] funny-manpages: installs 
/usr/share/lintian/overrides/lintian
Bug #752048 [funny-manpages] funny-manpages and lintian: error when trying to 
install together
Added indication that 752048 affects lintian
Added tag(s) patch.
Merged 269703 752048

-- 
269703: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=269703
752048: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752048
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#752048: funny-manpages and lintian: error when trying to install together

2014-06-19 Thread Axel Beckert
Control: reassign -1 funny-manpages 1.3-5
Control: forcemerge 269703 -1

Dear Ralf,

Ralf Treinen wrote:
 Package: lintian,funny-manpages
[...]
 automatic installation tests of packages that share a file and at the
 same time do not conflict by their package dependency relationships has
 detected the following problem:
[...]
 Unpacking lintian (2.5.23.1) ...
 dpkg: error processing archive 
 /var/cache/apt/archives/lintian_2.5.23.1_all.deb (--unpack):
  trying to overwrite '/usr/share/lintian/overrides/lintian', which is also in 
 package funny-manpages 1.3-5
[...]
 This bug has been filed against both packages. If you, the maintainers of
 the two packages in question, have agreed on which of the packages will
 resolve the problem please reassign the bug to that package. You may then
 also register in the BTS that the other package is affected by the bug.

It's obvious that this issue is _not_ a bug in lintian but solely a
bug in funny-manpages. Besides, it was already reported 10 years ago
with severity minor (but set to serious after it caused a file
conflict).

Merging accordingly.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


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



Processed: reassign 749808 to libscalar-does-perl, fixed 749808 in 0.202-1

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 749808 libscalar-does-perl
Bug #749808 [perlrdf] perlrdf: FTBFS - Base class package Exporter::TypeTiny 
is empty
Bug reassigned from package 'perlrdf' to 'libscalar-does-perl'.
No longer marked as found in versions perlrdf/0.004-3.
Ignoring request to alter fixed versions of bug #749808 to the same values 
previously set
 # At Jonas request on #debian-perl
 fixed 749808 0.202-1
Bug #749808 [libscalar-does-perl] perlrdf: FTBFS - Base class package 
Exporter::TypeTiny is empty
Marked as fixed in versions libscalar-does-perl/0.202-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
749808: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749808
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#752066: lazarus: source package fails to unpack

2014-06-19 Thread Colin Watson
Package: lazarus
Version: 1.2.2+dfsg-1
Severity: serious

merge@shedu:/srv/patches.ubuntu.com/pool/debian/l/lazarus$ dpkg-source -x 
lazarus_1.2.2+dfsg-1.dsc
gpgv: Signature made Sat 17 May 2014 06:34:44 UTC using RSA key ID 05BD750A
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./lazarus_1.2.2+dfsg-1.dsc
dpkg-source: info: extracting lazarus in lazarus-1.2.2+dfsg
dpkg-source: info: unpacking lazarus_1.2.2+dfsg.orig.tar.gz
dpkg-source: info: unpacking lazarus_1.2.2+dfsg-1.debian.tar.gz
dpkg-source: info: applying default_config.diff
dpkg-source: info: applying lcl-with-multple-widget-sets.diff
dpkg-source: info: applying spell_errors.diff
dpkg-source: info: applying add-revision-inc.diff
dpkg-source: info: applying add_proper_shbang_to_scripts.patch
dpkg-source: error: expected ^--- in line 5 of diff 
`lazarus-1.2.2+dfsg/debian/patches/add_proper_shbang_to_scripts.patch'
merge@shedu:/srv/patches.ubuntu.com/pool/debian/l/lazarus$ echo $?
25

Looking at the patch by hand shows it is indeed malformed (-- instead
of ---).  I noticed this because it broke merges.ubuntu.com.

Thanks,

-- 
Colin Watson   [cjwat...@ubuntu.com]


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



Bug#728319: gworkspace.app: Preview.app fails with an error

2014-06-19 Thread Yavor Doganov
tags 728319 + patch
thanks

Yavor Doganov wrote:
 It seems like Preview is not capable of opening images.

Attached is a trivial patch that fixes this.  These methods were
removed in 2005 (it's even in the upstream ChangeLog), but apparently
he forgot to remove the code that registers the notification
observers.  Somehow we got away with it, but not with -base 1.22 or
newer.

The bad news is that stable is affected so an update has to be
prepared.
Description: Fix exception while loading an image.
 Don't register observers for non-existing notifications/selectors.
Author: Yavor Doganov ya...@gnu.org
Bug-Debian: http://bugs.debian.org/728319
Forwarded: no
Last-Update: 2014-06-19
---
 
--- preview.app.orig/Document.m
+++ preview.app/Document.m
@@ -291,16 +291,6 @@
  name: @TEST
  object: imageView];
 
-[[NSNotificationCenter defaultCenter] addObserver: self
- selector: @selector(_notifyMouseDown:)
- name: @MOUSEDOWN
- object: nil];
-
-[[NSNotificationCenter defaultCenter] addObserver: self
- selector: @selector(_notifyMouseUp:)
- name: @MOUSEUP
- object: nil];
-
   }
 
 


Bug#269703: NMU pending

2014-06-19 Thread Klaus Ethgen
Hello,

here is the diff I prepared for NMU upload. Axel Beckert will be so kind
and sponsor this upload later on.

Regards
   Klaus
-- 
Klaus Ethgen  http://www.ethgen.ch/
pub  4096R/4E20AF1C 2011-05-16   Klaus Ethgen kl...@ethgen.de
Fingerprint: 85D4 CA42 952C 949B 1753  62B3 79D0 B06F 4E20 AF1C


funny-manpages_1.3-5.1.diff.gz
Description: application/gzip


signature.asc
Description: Digital signature


Processed: Re: Bug#728319: gworkspace.app: Preview.app fails with an error

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 728319 + patch
Bug #728319 [preview.app] gworkspace.app: Preview.app fails with an error
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
728319: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=728319
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: Two bugs

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 clone 751900 -1
Bug #751900 [quota] quota: Fails to install or upgrade if no file system with 
quota is found
Bug 751900 cloned as bug 752067
 retitle -1 quotarpc init scripts stops with error
Bug #752067 [quota] quota: Fails to install or upgrade if no file system with 
quota is found
Changed Bug title to 'quotarpc init scripts stops with error' from 'quota: 
Fails to install or upgrade if no file system with quota is found'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
751900: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751900
752067: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752067
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#749808: marked as done (perlrdf: FTBFS - Base class package Exporter::TypeTiny is empty)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 10:06:48 +0100
with message-id 20140619090648.gc8...@survex.com
and subject line 
has caused the Debian Bug report #749808,
regarding perlrdf: FTBFS - Base class package Exporter::TypeTiny is empty
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.)


-- 
749808: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749808
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: perlrdf
Version: 0.004-3
Severity: serious
Usertags: goto-cc

During a rebuild of all packages in a clean sid chroot (and cowbuilder+pbuilder)
the build failed with the following error.

[...]
make[1]: Entering directory 
'/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004'
PERL_DL_NONLAZY=1 /usr/bin/perl -MExtUtils::Command::MM -e test_harness(1, 
'inc', 'blib/lib', 'blib/arch') t/01basic.t t/02translate.t

#   Failed test 'use App::perlrdf;'
#   at t/01basic.t line 2.
# Tried to use 'App::perlrdf'.
# Error:  Base class package Exporter::TypeTiny is empty.
# (Perhaps you need to 'use' the module which defines that package first,
# or make that module available in @INC (@INC contains: 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/inc 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/blib/lib 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/blib/arch 
/etc/perl /usr/local/lib/perl/5.18.2 /usr/local/share/perl/5.18.2 
/usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.18 /usr/share/perl/5.18 
/usr/local/lib/site_perl .).
#  at /usr/share/perl5/Scalar/Does.pm line 72.
# BEGIN failed--compilation aborted at /usr/share/perl5/Scalar/Does.pm line 72.
# Compilation failed in require at /usr/share/perl5/Role/Commons.pm line 9.
# BEGIN failed--compilation aborted at /usr/share/perl5/Role/Commons.pm line 9.
# Compilation failed in require at /usr/share/perl5/Object/AUTHORITY.pm line 6.
# BEGIN failed--compilation aborted at /usr/share/perl5/Object/AUTHORITY.pm 
line 6.
# Compilation failed in require at 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/blib/lib/App/perlrdf/Command.pm
 line 14.
# BEGIN failed--compilation aborted at 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/blib/lib/App/perlrdf/Command.pm
 line 14.
# Compilation failed in require at 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/blib/lib/App/perlrdf.pm
 line 13.
# BEGIN failed--compilation aborted at 
/srv/jenkins-slave/workspace/sid-goto-cc-perlrdf/perlrdf-0.004/blib/lib/App/perlrdf.pm
 line 15.
# Compilation failed in require at (eval 4) line 2.
# BEGIN failed--compilation aborted at (eval 4) line 2.
# Looks like you failed 1 test of 1.
t/01basic.t .. 
1..1
not ok 1 - use App::perlrdf;


The full build log is attached.

Best,
Michael



perlrdf-build-log.txt.gz
Description: application/gunzip


pgpU6sxIqTEa_.pgp
Description: PGP signature
---End Message---
---BeginMessage---
libscalar-does-perl (0.202-1) unstable; urgency=medium

  [ upstream ]
  * New release.
+ Use Dist::Inkt for packaging.
+ Use Exporter::Tiny instead of Exporter::TypeTiny.
+ Fix make t/iod-02filehandles.t clean up after itself.

  [ Jonas Smedegaard ]
  * Update package relations:
+ Tighten build-dependency on libtest-requires-perl, and
  build-depend on either recent perl or recent libtest-simple-perl:
  Needed by testsuite since 0.201.
+ (Build-)depend on libexporter-tiny-perl: Needed since 0.201.
  * Bump standards-version to 3.9.5.
  * Update copyright info:
+ Extend coverage for main author and for packaging.
+ Drop notes on no longer included convenience code copies.

 -- Jonas Smedegaard d...@jones.dk  Sat, 10 May 2014 16:59:27 +0200---End Message---


Bug#752066: marked as done (lazarus: source package fails to unpack)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 10:06:03 +0100
with message-id 20140619090603.gz5...@riva.ucam.org
and subject line Re: Bug#752066: Acknowledgement (lazarus: source package fails 
to unpack)
has caused the Debian Bug report #752066,
regarding lazarus: source package fails to unpack
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.)


-- 
752066: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752066
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: lazarus
Version: 1.2.2+dfsg-1
Severity: serious

merge@shedu:/srv/patches.ubuntu.com/pool/debian/l/lazarus$ dpkg-source -x 
lazarus_1.2.2+dfsg-1.dsc
gpgv: Signature made Sat 17 May 2014 06:34:44 UTC using RSA key ID 05BD750A
gpgv: Can't check signature: public key not found
dpkg-source: warning: failed to verify signature on ./lazarus_1.2.2+dfsg-1.dsc
dpkg-source: info: extracting lazarus in lazarus-1.2.2+dfsg
dpkg-source: info: unpacking lazarus_1.2.2+dfsg.orig.tar.gz
dpkg-source: info: unpacking lazarus_1.2.2+dfsg-1.debian.tar.gz
dpkg-source: info: applying default_config.diff
dpkg-source: info: applying lcl-with-multple-widget-sets.diff
dpkg-source: info: applying spell_errors.diff
dpkg-source: info: applying add-revision-inc.diff
dpkg-source: info: applying add_proper_shbang_to_scripts.patch
dpkg-source: error: expected ^--- in line 5 of diff 
`lazarus-1.2.2+dfsg/debian/patches/add_proper_shbang_to_scripts.patch'
merge@shedu:/srv/patches.ubuntu.com/pool/debian/l/lazarus$ echo $?
25

Looking at the patch by hand shows it is indeed malformed (-- instead
of ---).  I noticed this because it broke merges.ubuntu.com.

Thanks,

-- 
Colin Watson   [cjwat...@ubuntu.com]
---End Message---
---BeginMessage---
Source: lazarus
Source-Version: 1.2.2+dfsg1-1

Sorry, I just noticed that this is fixed in 1.2.2+dfsg1-1 (I was
confused for a while by the subtly different version numbers).  I'll
just clear out the broken version from our pool and move on.

Thanks,

-- 
Colin Watson   [cjwat...@ubuntu.com]---End Message---


Bug#751969: gir1.2-goocanvas-2.0: Introspection file installed in the wrong directory

2014-06-19 Thread Alberto Garcia
 I think the fix should be as simple as this (I haven't tested it,
 though):

More details in the upstream bug report:

https://bugzilla.gnome.org/show_bug.cgi?id=731839

Berto


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



Bug#751900: marked as done (quota: Fails to install or upgrade if no file system with quota is found)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 11:17:51 +0200
with message-id 20140619091751.ga15...@feivel.credativ.lan
and subject line Re: Bug#751900: closed by Michael Meskes mes...@debian.org 
(Bug#751900: fixed in quota 4.01-5)
has caused the Debian Bug report #751900,
regarding quota: Fails to install or upgrade if no file system with quota is 
found
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.)


-- 
751900: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751900
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: quota
Version: 4.01-4
Severity: serious

Dear Michael,

unfortunately quota 4.01-4 fails to upgrade or install on machines where
no quota is present in /etc/fstab. It also does not care if the word
quota appears in an actuall file system line or in a comment.

I've added a set +x to /var/lib/dpkg/info/quota.postinst to get the
following traces:

Without the string quota anywhere in /etc/fstab:

# dpkg --configure --pending
Setting up quota (4.01-4) ...
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/quota.postinst configure 
4.01-3
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ '[' '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ '[' '!' -f /etc/warnquota.conf ']'
+ '[' '!' -f /etc/default/quota ']'
+ db_stop
+ echo STOP
+ case $1 in
+ test '!' -f /var/run/quota.upgrade
+ '[' -f /etc/fstab ']'
++ grep -v quota=off
++ grep quota /etc/fstab
+ fs=
dpkg: error processing package quota (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 quota
# 

With quota in a comment:

# dpkg --configure --pending
Setting up quota (4.01-4) ...
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/quota.postinst configure 
4.01-3
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ '[' '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ '[' '!' -f /etc/warnquota.conf ']'
+ '[' '!' -f /etc/default/quota ']'
+ db_stop
+ echo STOP
+ case $1 in
+ test '!' -f /var/run/quota.upgrade
+ '[' -f /etc/fstab ']'
++ grep -v quota=off
++ grep quota /etc/fstab
+ fs='# quota'
+ '[' '# quota' ']'
++ which invoke-rc.d
+ '[' -x /usr/sbin/invoke-rc.d ']'
+ invoke-rc.d quota start
+ touch /var/lib/quota/new
+ '[' -d /var/state/quota ']'
+ test -f /var/run/quota.upgrade
+ rm -f /var/run/quota.upgrade
+ deb-systemd-helper unmask quota.service
+ deb-systemd-helper --quiet was-enabled quota.service
+ deb-systemd-helper enable quota.service
+ deb-systemd-helper unmask quota.service
+ deb-systemd-helper --quiet was-enabled quota.service
+ deb-systemd-helper enable quota.service
+ '[' -x /etc/init.d/quota ']'
+ update-rc.d quota defaults
+ '[' -x /etc/init.d/quotarpc ']'
+ update-rc.d quotarpc defaults
+ invoke-rc.d quotarpc start
Job for quotarpc.service failed. See 'systemctl status quotarpc.service' and 
'journalctl -xn' for details.
invoke-rc.d: initscript quotarpc, action start failed.
+ exit 1
dpkg: error processing package quota (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 quota
#

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'testing'), (400, 'stable'), (110, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages quota depends on:
ii  debconf [debconf-2.0]  1.5.53
ii  e2fslibs   1.42.10-1
ii  init-system-helpers1.19
ii  libc6  2.19-1
ii  libcomerr2 1.42.10-1
ii  libdbus-1-31.8.4-1
ii  libldap-2.4-2  2.4.39-1
ii  libnl-3-2003.2.24-2
ii  libnl-genl-3-200   3.2.24-2
ii  libtirpc1  0.2.3-1
ii  libwrap0   7.6.q-25
ii  lsb-base   4.1+Debian13

quota recommends no packages.

Versions of packages quota suggests:
ii  libnet-ldap-perl1:0.6300+dfsg-1
ii  postfix [mail-transport-agent]  2.11.1-1
pn  rpcbind  

Bug#751900: closed by Michael Meskes mes...@debian.org (Bug#751900: fixed in quota 4.01-5)

2014-06-19 Thread Michael Meskes
 My current suspicion is that the non-executable
 /usr/share/quota/quotarpc.sh causes systemd to barf when trying to run
 it.

Yes, that cannot work. The reason why I didn't see that is rather simple, too:

michael@feivel:~$ (dpkg -c quota_4.01-5_amd64.deb ; dpkg -c 
quota_4.01-5_i386.deb )|grep quotarpc.sh
-rwxr-xr-x root/root  1012 2014-06-18 12:20 ./usr/share/quota/quotarpc.sh
-rw-r--r-- root/root  1012 2014-06-18 12:59 ./usr/share/quota/quotarpc.sh

New upload on its way.

Michael
-- 
Michael Meskes
Michael at Fam-Meskes dot De, Michael at Meskes dot (De|Com|Net|Org)
Michael at BorussiaFan dot De, Meskes at (Debian|Postgresql) dot Org
Jabber: michael.meskes at gmail dot com
VfL Borussia! Força Barça! Go SF 49ers! Use Debian GNU/Linux, PostgreSQL


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



Processed: notfound 751900 in 4.01-5, fixed 751900 in 4.01-5

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # fix the versions, too
 notfound 751900 4.01-5
Bug #751900 {Done: Michael Meskes mes...@debian.org} [quota] quota: Fails to 
install or upgrade if no file system with quota is found
No longer marked as found in versions quota/4.01-5.
 fixed 751900 4.01-5
Bug #751900 {Done: Michael Meskes mes...@debian.org} [quota] quota: Fails to 
install or upgrade if no file system with quota is found
Marked as fixed in versions quota/4.01-5.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
751900: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751900
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#751900: closed by Michael Meskes mes...@debian.org (Re: Bug#751900: closed by Michael Meskes mes...@debian.org (Bug#751900: fixed in quota 4.01-5))

2014-06-19 Thread Axel Beckert
Hi Michael,

Debian Bug Tracking System wrote:
  Debian Bug Tracking System wrote:
  * Improve recognition of quota enabled filesystems. (Closes: #751900)
  
  .. it's better, and though still fails. Now only later in the postinst:
 
 Actually this is a different bug. Therefore I cloned the report and close 
 this one.

That's fine for me. :-) Actually, I wasn't really sure if it is a
completely different issue or just a not fully fixed issue. The
symptomes were the same.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


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



Processed (with 1 errors): reassign 752057 to matplotlib, severity of 752057 is grave, forcibly merging 750630 752057

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 752057 matplotlib 1.3.1-1+b1
Bug #752057 [python-tk] python-tk: importing matplotlib does not work anymore
Bug reassigned from package 'python-tk' to 'matplotlib'.
No longer marked as found in versions python-stdlib-extensions/2.7.7-2.
Ignoring request to alter fixed versions of bug #752057 to the same values 
previously set
Bug #752057 [matplotlib] python-tk: importing matplotlib does not work anymore
There is no source info for the package 'matplotlib' at version '1.3.1-1+b1' 
with architecture ''
Unable to make a source version for version '1.3.1-1+b1'
Marked as found in versions 1.3.1-1+b1.
 severity 752057 grave
Bug #752057 [matplotlib] python-tk: importing matplotlib does not work anymore
Severity set to 'grave' from 'important'
 forcemerge 750630 752057
Bug #750630 [python-matplotlib] python-matplotlib: Default backend 'tkagg' 
broken
Bug #751385 [python-matplotlib] newer python interfers with matplotlib
Bug #751692 [python-matplotlib] cannot import matplotlib.backends.tkagg 
(missing _tkagg.so)
Unable to merge bugs because:
package of #752057 is 'matplotlib' not 'python-matplotlib'
Failed to forcibly merge 750630: Did not alter merged bugs
Debbugs::Control::set_merged('transcript', 'GLOB(0x2783e08)', 
'requester', 'Julian Taylor jtaylor.deb...@googlemail.com', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', 
'1403171950-2397-bts-jtay...@ubuntu.com', 'request_subject', ...) called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 552
eval {...} called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 551
Debbugs::Control::Service::control_line('line', 'forcemerge 750630 
752057', 'clonebugs', 'HASH(0x26af0b8)', 'limit', 'HASH(0x26aeaa0)', 
'common_control_options', 'ARRAY(0x26aeae8)', 'errors', ...) called at 
/usr/lib/debbugs/service line 474

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750630: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750630
751385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751385
751692: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751692
752057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752057
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: reassign 752057 to python-matplotlib, forcibly merging 750630 752057

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 752057 python-matplotlib 1.3.1-1+b1
Bug #752057 [matplotlib] python-tk: importing matplotlib does not work anymore
Bug reassigned from package 'matplotlib' to 'python-matplotlib'.
No longer marked as found in versions 1.3.1-1+b1.
Ignoring request to alter fixed versions of bug #752057 to the same values 
previously set
Bug #752057 [python-matplotlib] python-tk: importing matplotlib does not work 
anymore
Marked as found in versions matplotlib/1.3.1-1.
 forcemerge 750630 752057
Bug #750630 [python-matplotlib] python-matplotlib: Default backend 'tkagg' 
broken
Bug #751385 [python-matplotlib] newer python interfers with matplotlib
Bug #751692 [python-matplotlib] cannot import matplotlib.backends.tkagg 
(missing _tkagg.so)
Bug #751385 [python-matplotlib] newer python interfers with matplotlib
Added tag(s) moreinfo.
Added tag(s) moreinfo.
Added tag(s) moreinfo.
Bug #752057 [python-matplotlib] python-tk: importing matplotlib does not work 
anymore
751055 was blocked by: 751385 751692 750630
751055 was not blocking any bugs.
Added blocking bug(s) of 751055: 752057
Bug #751692 [python-matplotlib] cannot import matplotlib.backends.tkagg 
(missing _tkagg.so)
Merged 750630 751385 751692 752057
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750630: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750630
751055: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751055
751385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751385
751692: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751692
752057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752057
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 750630

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 750630 - moreinfo
Bug #750630 [python-matplotlib] python-matplotlib: Default backend 'tkagg' 
broken
Bug #751385 [python-matplotlib] newer python interfers with matplotlib
Bug #751692 [python-matplotlib] cannot import matplotlib.backends.tkagg 
(missing _tkagg.so)
Bug #752057 [python-matplotlib] python-tk: importing matplotlib does not work 
anymore
Removed tag(s) moreinfo.
Removed tag(s) moreinfo.
Removed tag(s) moreinfo.
Removed tag(s) moreinfo.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750630: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750630
751385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751385
751692: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751692
752057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752057
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 750630

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 750630 + patch
Bug #750630 [python-matplotlib] python-matplotlib: Default backend 'tkagg' 
broken
Bug #751385 [python-matplotlib] newer python interfers with matplotlib
Bug #751692 [python-matplotlib] cannot import matplotlib.backends.tkagg 
(missing _tkagg.so)
Bug #752057 [python-matplotlib] python-tk: importing matplotlib does not work 
anymore
Added tag(s) patch.
Added tag(s) patch.
Added tag(s) patch.
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750630: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750630
751385: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751385
751692: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751692
752057: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752057
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: pysol fails to run

2014-06-19 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 moreinfo
Bug #752040 [pysol] pysol fails to run
Added tag(s) moreinfo.
 severity -1 important
Bug #752040 [pysol] pysol fails to run
Severity set to 'important' from 'grave'

-- 
752040: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752040
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#752040: pysol fails to run

2014-06-19 Thread Markus Koschany
Control: tags -1 moreinfo
Control: severity -1 important

Hi,

I can't reproduce this issue here on a freshly updated Debian testing
system. I see that python-tk 2.7.7-1 is installed on your system but the
latest version in testing is 2.7.7-2. Could you verify and report back
if an upgrade to 2.7.7-2 solves your issue?

Thanks

Markus



signature.asc
Description: OpenPGP digital signature


Bug#752075: daemontools-run: Add systemd support

2014-06-19 Thread Joern Heissler
Package: daemontools-run
Version: 1:0.76-3
Severity: grave
Justification: renders package unusable

Hi,
Debian decided to use systemd.

I'm using a local dnscache (djbdns) for recursive dns lookups, but this
service isn't started automatically. I assume that it's because
daemontools-run only supports sysvinit's inittab.

Please add systemd support,
Cheers!


-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.14-1-amd64 (SMP w/4 CPU cores)
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 daemontools-run depends on:
ii  daemontools  1:0.76-3

daemontools-run recommends no packages.

daemontools-run suggests no packages.

-- no debconf information


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



Bug#752067: marked as done (quotarpc init scripts stops with error)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 11:19:48 +
with message-id e1wxang-9r...@franck.debian.org
and subject line Bug#752067: fixed in quota 4.01-6
has caused the Debian Bug report #752067,
regarding quotarpc init scripts stops with error
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.)


-- 
752067: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752067
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: quota
Version: 4.01-4
Severity: serious

Dear Michael,

unfortunately quota 4.01-4 fails to upgrade or install on machines where
no quota is present in /etc/fstab. It also does not care if the word
quota appears in an actuall file system line or in a comment.

I've added a set +x to /var/lib/dpkg/info/quota.postinst to get the
following traces:

Without the string quota anywhere in /etc/fstab:

# dpkg --configure --pending
Setting up quota (4.01-4) ...
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/quota.postinst configure 
4.01-3
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ '[' '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ '[' '!' -f /etc/warnquota.conf ']'
+ '[' '!' -f /etc/default/quota ']'
+ db_stop
+ echo STOP
+ case $1 in
+ test '!' -f /var/run/quota.upgrade
+ '[' -f /etc/fstab ']'
++ grep -v quota=off
++ grep quota /etc/fstab
+ fs=
dpkg: error processing package quota (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 quota
# 

With quota in a comment:

# dpkg --configure --pending
Setting up quota (4.01-4) ...
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' '' ']'
++ PERL_DL_NONLAZY=1
++ export PERL_DL_NONLAZY
++ '[' '' ']'
++ exec /usr/share/debconf/frontend /var/lib/dpkg/info/quota.postinst configure 
4.01-3
+ set -e
+ '[' configure = configure ']'
+ . /usr/share/debconf/confmodule
++ '[' '!' 1 ']'
++ '[' -z '' ']'
++ exec
++ '[' '' ']'
++ exec
++ DEBCONF_REDIR=1
++ export DEBCONF_REDIR
+ '[' '!' -f /etc/warnquota.conf ']'
+ '[' '!' -f /etc/default/quota ']'
+ db_stop
+ echo STOP
+ case $1 in
+ test '!' -f /var/run/quota.upgrade
+ '[' -f /etc/fstab ']'
++ grep -v quota=off
++ grep quota /etc/fstab
+ fs='# quota'
+ '[' '# quota' ']'
++ which invoke-rc.d
+ '[' -x /usr/sbin/invoke-rc.d ']'
+ invoke-rc.d quota start
+ touch /var/lib/quota/new
+ '[' -d /var/state/quota ']'
+ test -f /var/run/quota.upgrade
+ rm -f /var/run/quota.upgrade
+ deb-systemd-helper unmask quota.service
+ deb-systemd-helper --quiet was-enabled quota.service
+ deb-systemd-helper enable quota.service
+ deb-systemd-helper unmask quota.service
+ deb-systemd-helper --quiet was-enabled quota.service
+ deb-systemd-helper enable quota.service
+ '[' -x /etc/init.d/quota ']'
+ update-rc.d quota defaults
+ '[' -x /etc/init.d/quotarpc ']'
+ update-rc.d quotarpc defaults
+ invoke-rc.d quotarpc start
Job for quotarpc.service failed. See 'systemctl status quotarpc.service' and 
'journalctl -xn' for details.
invoke-rc.d: initscript quotarpc, action start failed.
+ exit 1
dpkg: error processing package quota (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 quota
#

-- System Information:
Debian Release: jessie/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (600, 'testing'), (400, 'stable'), (110, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages quota depends on:
ii  debconf [debconf-2.0]  1.5.53
ii  e2fslibs   1.42.10-1
ii  init-system-helpers1.19
ii  libc6  2.19-1
ii  libcomerr2 1.42.10-1
ii  libdbus-1-31.8.4-1
ii  libldap-2.4-2  2.4.39-1
ii  libnl-3-2003.2.24-2
ii  libnl-genl-3-200   3.2.24-2
ii  libtirpc1  0.2.3-1
ii  libwrap0   7.6.q-25
ii  lsb-base   4.1+Debian13

quota recommends no packages.

Versions of packages quota suggests:
ii  libnet-ldap-perl1:0.6300+dfsg-1
ii  postfix [mail-transport-agent]  2.11.1-1
pn  rpcbind none

-- debconf information:
  quota/cc_before:
  quota/subject:
  quota/group_message:

Bug#752078: missing license in debian/copyright

2014-06-19 Thread Thorsten Alteholz

Package: zope.deprecation
Version: 4.1.1-1
Severity: serious
User: alteh...@debian.org
Usertags: ftp
X-Debbugs-CC: ftpmas...@ftp-master.debian.org
thanks

Dear Maintainer,

please add the missing licenses of:
 zope.deprecation-4.1.1/docs/_build/html/_static/*
to debian/copyright.

Thanks!
  Thorsten


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



Bug#752079: Please upgrade to 6.0.4

2014-06-19 Thread David Prévot
Package: owncloud
Version: 6.0.4~beta1+dfsg-1
Severity: serious

Filling an RC bug to avoid the beta version to migrate into testing.

The next version is expected Monday 23 June, but I might be unable to
upload a package next week. If someone is willing to do a team upload,
that should be a pretty straightforward one.

Regards

David


signature.asc
Description: Digital signature


Bug#705757: marked as done (rapicorn: FTBFS on non-x86: Unrecognized opcode: `lfence')

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 12:01:52 +
with message-id e1wxb2o-0005eo...@franck.debian.org
and subject line Bug#752076: Removed package(s) from unstable
has caused the Debian Bug report #705757,
regarding rapicorn: FTBFS on non-x86: Unrecognized opcode: `lfence'
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.)


-- 
705757: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705757
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: rapicorn
Version: 13.03.0~ds0-1
Severity: serious
Justification: fails to build from source

Builds of rapicorn for non-x86 processors fail because it insists on
using the x86 lfence opcode:

  ../rcore/threadlib.hh: Assembler messages:
  ../rcore/threadlib.hh:18: Error: Unrecognized opcode: `lfence'

Could you please take a look?

Thanks!
---End Message---
---BeginMessage---
Version: 13.03.0~ds0-1+rm

Dear submitter,

as the package rapicorn has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/752076

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)---End Message---


Bug#752080: missing license in debian/copyright

2014-06-19 Thread Thorsten Alteholz

Package: python-passlib
Version: 1.6.1-1.2
Severity: serious
User: alteh...@debian.org
Usertags: ftp
X-Debbugs-CC: ftpmas...@ftp-master.debian.org
thanks

Dear Maintainer,

please add the missing licenses mentioned in LICENSE to debian/copyright.

Thanks!
  Thorsten


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



Bug#710610: marked as done (rapicorn: FTBFS: quicktimer.cc:35: undefined reference to `timer_settime')

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 12:01:52 +
with message-id e1wxb2o-0005eo...@franck.debian.org
and subject line Bug#752076: Removed package(s) from unstable
has caused the Debian Bug report #710610,
regarding rapicorn: FTBFS: quicktimer.cc:35: undefined reference to 
`timer_settime'
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.)


-- 
710610: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=710610
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: rapicorn
Version: 13.03.0~ds0-1
Severity: serious
Tags: jessie sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20130529 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part:
 ldconfig deferred processing now taking place
 Processing triggers for ca-certificates ...
 Updating certificates in /etc/ssl/certs... 158 added, 0 removed; done.
 Running hooks in /etc/ca-certificates/update.ddone.
 
 ┌──┐
 │ Build environment   
  │
 └──┘
 
 Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
 Toolchain package versions: binutils_2.22-8 dpkg-dev_1.16.10 g++-4.6_4.6.4-2 
 g++-4.7_4.7.3-4 gcc-4.6_4.6.4-2 gcc-4.7_4.7.3-4 libc6-dev_2.17-3 
 libstdc++6_4.8.0-8 libstdc++6-4.6-dev_4.6.4-2 libstdc++6-4.7-dev_4.7.3-4 
 linux-libc-dev_3.8.13-1
 Package versions: apt_0.9.8.1 autoconf_2.69-1 automake_1:1.11.6-1 
 autotools-dev_20120608.1 base-files_7.2 base-passwd_3.5.26 bash_4.2+dfsg-1 
 binutils_2.22-8 bison_2:2.7.1.dfsg-1 bsdmainutils_9.0.5 bsdutils_1:2.20.1-5.4 
 build-essential_11.6 bzip2_1.0.6-4 ca-certificates_20130119 coreutils_8.20-3 
 cpp_4:4.7.2-1 cpp-4.6_4.6.4-2 cpp-4.7_4.7.3-4 dash_0.5.7-3 debconf_1.5.50 
 debconf-i18n_1.5.50 debfoster_2.7-1.2 debhelper_9.20130518 
 debian-archive-keyring_2012.4 debianutils_4.3.4 diffutils_1:3.2-8 
 dpkg_1.16.10 dpkg-dev_1.16.10 e2fslibs_1.42.5-1.1 e2fsprogs_1.42.5-1.1 
 fakeroot_1.19-2 file_1:5.14-2 findutils_4.4.2-5 flex_2.5.35-10.1 
 fontconfig_2.9.0-7.1 fontconfig-config_2.9.0-7.1 
 fonts-dejavu-core_2.33+svn2514-3 g++_4:4.7.2-1 g++-4.6_4.6.4-2 
 g++-4.7_4.7.3-4 gcc_4:4.7.2-1 gcc-4.4-base_4.4.7-4 gcc-4.5-base_4.5.4-1 
 gcc-4.6_4.6.4-2 gcc-4.6-base_4.6.4-2 gcc-4.7_4.7.3-4 gcc-4.7-base_4.7.3-4 
 gcc-4.8-base_4.8.0-8 gettext_0.18.1.1-10 gettext-base_0.18.1.1-10 
 gir1.2-atk-1.0_2.8.0-2 gir1.2-freedesktop_1.36.0-2+b1 
 gir1.2-gdkpixbuf-2.0_2.28.1-1 gir1.2-glib-2.0_1.36.0-2+b1 
 gir1.2-gtk-2.0_2.24.18-1 gir1.2-pango-1.0_1.32.5-5 gnupg_1.4.12-7 
 gpgv_1.4.12-7 grep_2.14-2 groff-base_1.22.2-3 gzip_1.5-1.1 hostname_3.12 
 html2text_1.3.2a-16 initscripts_2.88dsf-41 insserv_1.14.0-5 intltool_0.50.2-2 
 intltool-debian_0.35.0+20060710.1 libacl1_2.2.52-1 libapt-pkg4.12_0.9.8.1 
 libasprintf-dev_0.18.1.1-10 libasprintf0c2_0.18.1.1-10 libatk1.0-0_2.8.0-2 
 libatk1.0-data_2.8.0-2 libatk1.0-dev_2.8.0-2 libattr1_1:2.4.47-1 
 libavahi-client3_0.6.31-2 libavahi-common-data_0.6.31-2 
 libavahi-common3_0.6.31-2 libbison-dev_2:2.7.1.dfsg-1 libblkid1_2.20.1-5.4 
 libbz2-1.0_1.0.6-4 libc-bin_2.17-3 libc-dev-bin_2.17-3 libc6_2.17-3 
 libc6-dev_2.17-3 libcairo-gobject2_1.12.14-4 
 libcairo-script-interpreter2_1.12.14-4 libcairo2_1.12.14-4 
 libcairo2-dev_1.12.14-4 libcap2_1:2.22-1.2 libclass-isa-perl_0.36-5 
 libcloog-ppl1_0.16.1-2 libcomerr2_1.42.5-1.1 libcroco3_0.6.8-2 
 libcups2_1.5.3-5 libdatrie1_0.2.6-2 libdb5.1_5.1.29-5 libdbus-1-3_1.6.10-1 
 libdpkg-perl_1.16.10 libelfg0_0.8.13-3 libencode-locale-perl_1.03-1 
 libexpat1_2.1.0-3 libexpat1-dev_2.1.0-3 libffi6_3.0.13-4 
 libfile-fcntllock-perl_0.14-2 libfile-listing-perl_6.04-1 
 libfontconfig1_2.9.0-7.1 libfontconfig1-dev_2.9.0-7.1 libfreetype6_2.4.9-1.1 
 libfreetype6-dev_2.4.9-1.1 libgc1c2_1:7.1-9.1 libgcc-4.7-dev_4.7.3-4 
 libgcc1_1:4.8.0-8 libgcrypt11_1.5.0-5 libgdbm3_1.8.3-11 
 libgdk-pixbuf2.0-0_2.28.1-1 libgdk-pixbuf2.0-common_2.28.1-1 
 libgdk-pixbuf2.0-dev_2.28.1-1 libgettextpo-dev_0.18.1.1-10 
 libgettextpo0_0.18.1.1-10 libgirepository-1.0-1_1.36.0-2+b1 
 libglib2.0-0_2.36.1-2build1 libglib2.0-bin_2.36.1-2build1 
 libglib2.0-data_2.36.1-2build1 libglib2.0-dev_2.36.1-2build1 
 libgmp10_2:5.1.2+dfsg-1 libgmpxx4ldbl_2:5.1.2+dfsg-1 libgnutls26_2.12.23-5 
 libgomp1_4.8.0-8 libgpg-error0_1.10-3.1 libgpm2_1.20.4-6 
 libgssapi-krb5-2_1.10.1+dfsg-6 libgtk2.0-0_2.24.18-1 
 libgtk2.0-common_2.24.18-1 libgtk2.0-dev_2.24.18-1 libharfbuzz-dev_0.9.17-4 
 libharfbuzz0_0.9.17-4 

Bug#705756: marked as done (rapicorn: FTBFS on 32-bit systems: expects 64-bit size_t)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 12:01:52 +
with message-id e1wxb2o-0005eo...@franck.debian.org
and subject line Bug#752076: Removed package(s) from unstable
has caused the Debian Bug report #705756,
regarding rapicorn: FTBFS on 32-bit systems: expects 64-bit size_t
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.)


-- 
705756: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705756
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: rapicorn
Version: 13.03.0~ds0-1
Severity: serious
Justification: fails to build from source

Builds of rapicorn on 32-bit systems fail because it expects uint32_t
and size_t to be distinct types:

  aida.hh:400:15: error: 'void 
Rapicorn1303::Aida::FieldBuffer::operator=(uint32_t)' cannot be overloaded
  aida.hh:397:15: error: with 'void 
Rapicorn1303::Aida::FieldBuffer::operator=(size_t)'
  aida.hh:456:15: error: 'void 
Rapicorn1303::Aida::FieldReader::operator=(uint32_t)' cannot be overloaded
  aida.hh:453:15: error: with 'void 
Rapicorn1303::Aida::FieldReader::operator=(size_t)'

Could you please take a look and arrange to suppress the redundant
definitions on 32-bit systems?

Thanks!
---End Message---
---BeginMessage---
Version: 13.03.0~ds0-1+rm

Dear submitter,

as the package rapicorn has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/752076

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)---End Message---


Bug#705755: marked as done (rapicorn: FTBFS on non-Linux: needs eventfd and NPTL)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 12:01:52 +
with message-id e1wxb2o-0005eo...@franck.debian.org
and subject line Bug#752076: Removed package(s) from unstable
has caused the Debian Bug report #705755,
regarding rapicorn: FTBFS on non-Linux: needs eventfd and NPTL
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.)


-- 
705755: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705755
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: rapicorn
Version: 13.03.0~ds0-1
Severity: serious
Justification: fails to build from source

Builds of rapicorn on kFreeBSD and the Hurd fail because they lack
eventfd and (at least in the case of kFreeBSD) use a port of legacy
Linuxthreads rather than NPTL.  Depending on how fundamentally it
needs eventfd and NPTL, you might have to restrict its Architecture
setting to linux-any.

Specifically, the hurd-i386 and kfreebsd-i386 builds both fail with

  aida.cc:17:57: fatal error: sys/eventfd.h: No such file or directory

and the kfreebsd-amd64 build (which for some reason compiles sources
in a different order) fails with

  thread.hh: In constructor 'constexpr Rapicorn1303::Cond::Cond()':
  thread.hh:155:65: error: no matching function for call to 
'pthread_cond_t::pthread_cond_t(brace-enclosed initializer list)'

and moreover

  thread.cc: In function 'int Rapicorn1303::ThisThread::affinity()':
  thread.cc:249:66: error: 'pthread_getaffinity_np' was not declared in this 
scope
  thread.cc: In function 'void Rapicorn1303::ThisThread::affinity(int)':
  thread.cc:275:70: error: 'pthread_setaffinity_np' was not declared in this 
scope

Could you please take a look?

Thanks!
---End Message---
---BeginMessage---
Version: 13.03.0~ds0-1+rm

Dear submitter,

as the package rapicorn has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/752076

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)---End Message---


Processed: lasi: diff for NMU version 1.1.0-1.1

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 733405 + pending
Bug #733405 [src:lasi] lasi: FTBFS: drawGlyph.cpp:9:30: fatal error: 
freetype/ftoutln.h: No such file or directory
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
733405: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=733405
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#751264: Confirmation

2014-06-19 Thread Marcin Kulisz
I can confirm that behaviour on fully updated (at the time of sending this
emai) sid with awscli_1.2.9-2.
-- 

|_|0|_|  |
|_|_|0| Heghlu'Meh QaQ jajVam  |
|0|0|0|  kuLa -  |

gpg --keyserver pgp.mit.edu --recv-keys 0x58C338B3
3DF1 A4DF C732 4688 38BC F121 6869 30DD  58C3 38B3


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



Bug#733405: lasi: diff for NMU version 1.1.0-1.1

2014-06-19 Thread Angel Abad
tags 733405 + pending
thanks

Dear maintainer,

I've prepared an NMU for lasi (versioned as 1.1.0-1.1) and
uploaded it to DELAYED/7. Please feel free to tell me if I
should delay it longer.

Regards.
diff -Nru lasi-1.1.0/debian/changelog lasi-1.1.0/debian/changelog
--- lasi-1.1.0/debian/changelog 2014-06-19 14:01:01.0 +0200
+++ lasi-1.1.0/debian/changelog 2014-06-19 13:49:25.0 +0200
@@ -1,3 +1,12 @@
+lasi (1.1.0-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Use 3.0 (quilt) format
+  * debian/patches/fix-freetype-ftbfs (Closes: #733405):
+- Include Freetype headers in recommended way, fix FTBFS
+
+ -- Angel Abad an...@debian.org  Thu, 19 Jun 2014 13:36:38 +0200
+
 lasi (1.1.0-1) unstable; urgency=low
 
   [ Andrew Ross ]
diff -Nru lasi-1.1.0/debian/patches/fix-freetype-ftbfs 
lasi-1.1.0/debian/patches/fix-freetype-ftbfs
--- lasi-1.1.0/debian/patches/fix-freetype-ftbfs1970-01-01 
01:00:00.0 +0100
+++ lasi-1.1.0/debian/patches/fix-freetype-ftbfs2014-06-19 
13:45:54.0 +0200
@@ -0,0 +1,99 @@
+Description: Include Freetype headers in recommended way.
+ This change should fix https://sourceforge.net/p/lasi/bugs/2/. The
+ change goes a bit beyond the macports patch for the problem linked in
+ that bug report which was incomplete. (I searched for all occurrences
+ of #include and freetype in the code base and changed to the standard
+ form.)
+ .
+ Tested on Linux with Freetype version 2.4.9 which implies this change
+ does not disrupt anything for that Freetype version. A further test
+ for Freetype version 2.5.1 (which previously could not be used with
+ libLASi because of the non-standard #includes in the old version
+ of that code) has been requested.
+Author: Alan W. Irwin
+Origin: http://sourceforge.net/p/lasi/code/182/
+Bug: http://sourceforge.net/p/lasi/bugs/2/
+Bug-Debian: http://bugs.debian.org/733405
+Reviewed-By: Juhani Numminen juhaninummin...@gmail.com 
+
+--- lasi-1.1.0.orig/include/LASi.h
 lasi-1.1.0/include/LASi.h
+@@ -11,7 +11,8 @@
+ #include sstream
+ #include map
+ #include pango/pango.h
+-#include freetype/ftglyph.h
++#include ft2build.h
++#include FT_GLYPH_H
+ 
+ class FreetypeGlyphMgr;
+ class ContextMgr;
+--- lasi-1.1.0.orig/src/drawGlyph.cpp
 lasi-1.1.0/src/drawGlyph.cpp
+@@ -6,7 +6,8 @@
+  */
+ 
+ #include ostream
+-#include freetype/ftoutln.h
++#include ft2build.h
++#include FT_OUTLINE_H
+ #include algorithm
+ #include LASi.h
+ #include config.h
+--- lasi-1.1.0.orig/src/drawGlyph.h
 lasi-1.1.0/src/drawGlyph.h
+@@ -10,7 +10,8 @@
+ 
+ #include iostream
+ #include pango/pango.h
+-#include freetype/freetype.h
++#include ft2build.h
++#include FT_FREETYPE_H
+ 
+ /** Generate the Postscript commands to draw the glyph
+   * using the font in pPangoCtx.
+--- lasi-1.1.0.orig/src/glyphMgr.cpp
 lasi-1.1.0/src/glyphMgr.cpp
+@@ -10,8 +10,7 @@
+ 
+ #include ft2build.h
+ #include FT_FREETYPE_H
+-
+-#include freetype/ftglyph.h
++#include FT_GLYPH_H
+ 
+ #include cassert
+ #include util.h
+--- lasi-1.1.0.orig/src/glyphMgr.h
 lasi-1.1.0/src/glyphMgr.h
+@@ -15,8 +15,7 @@
+ 
+ #include ft2build.h
+ #include FT_FREETYPE_H
+-
+-#include freetype/ftglyph.h
++#include FT_GLYPH_H
+ 
+ /** Manage FT_Glyph by insuring that FT_Glyph is handled correctly.
+  */
+--- lasi-1.1.0.orig/src/util.cpp
 lasi-1.1.0/src/util.cpp
+@@ -11,7 +11,6 @@
+ 
+ #include ft2build.h
+ #include FT_FREETYPE_H
+-//#include freetype/freetype.h
+ 
+ using namespace std;
+ 
+--- lasi-1.1.0.orig/src/util.h
 lasi-1.1.0/src/util.h
+@@ -18,7 +18,7 @@
+ 
+ #include ft2build.h
+ #include FT_FREETYPE_H
+-#include freetype/ftglyph.h
++#include FT_GLYPH_H
+ 
+ std::ostream operator(std::ostream, const FT_Library);
+ std::ostream operator(std::ostream, const FT_Face);
diff -Nru lasi-1.1.0/debian/patches/series lasi-1.1.0/debian/patches/series
--- lasi-1.1.0/debian/patches/series1970-01-01 01:00:00.0 +0100
+++ lasi-1.1.0/debian/patches/series2014-06-19 13:47:21.0 +0200
@@ -0,0 +1 @@
+fix-freetype-ftbfs
diff -Nru lasi-1.1.0/debian/source/format lasi-1.1.0/debian/source/format
--- lasi-1.1.0/debian/source/format 1970-01-01 01:00:00.0 +0100
+++ lasi-1.1.0/debian/source/format 2014-06-19 13:37:41.0 +0200
@@ -0,0 +1 @@
+3.0 (quilt)


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



Processed: tagging 745672

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 745672 + unreproducible
Bug #745672 [ruby-em-http-request] FTBFS: ERROR: ./spec/dns_spec.rb:16 # 
EventMachine::HttpRequest should fail GET on
Added tag(s) unreproducible.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
745672: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=745672
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#745672: em-http-request build failiure - can someone reproduce it?

2014-06-19 Thread Cédric Boutillier
Hi,

On Tue, Jun 17, 2014 at 07:46:57PM +0530, Pirate Praveen wrote:
 Hi,

 I'm not able to reproduce this failure. Can anyone try building it?


I was not able to reproduce it either with sbuild and with/without
network access. I tagged the bug as unreproducible for the moment. If
noone can reproduce it, we can close it.

Cheers,

Cédric



signature.asc
Description: Digital signature


Bug#751888: Fwd: Bug#751888: glusterfs-server: creating symlinks generates errors

2014-06-19 Thread Patrick Matthäi
Hello gluster list,

could you have got a look on this bug?
You can access all information on http://bugs.debian.org/751888

I am on vacation from now on for nearly three weeks so I could not take
care of it :-(


 Weitergeleitete Nachricht 
Betreff: Bug#751888: glusterfs-server: creating symlinks generates errors
Weitersenden-Datum: Wed, 18 Jun 2014 09:39:02 +
Weitersenden-Von: Matteo Checcucci matteo.checcu...@arnone.de.unifi.it
Weitersenden-An: debian-bugs-d...@lists.debian.org
Weitersenden-CC: Patrick Matthäi pmatth...@debian.org
Datum: Wed, 18 Jun 2014 10:53:12 +0200
Von: Matteo Checcucci matteo.checcu...@arnone.de.unifi.it
Antwort an: Matteo Checcucci matteo.checcu...@arnone.de.unifi.it,
751...@bugs.debian.org
An: 751...@bugs.debian.org

On 06/17/2014 04:14 PM, Patrick Matthäi wrote:

 Am 17.06.2014 15:29, schrieb Matteo Checcucci:
 ls -l, cp -a, ...).
 An especially troublesome consequence is that if I


 What is the output of:
 strace /bin/ls -l foobar?

 Anything in your server/client logs?


Hello.
Thanks for your quick reply.
I reproduced the bug on a newly created gluster volume (connection IP
over Ethernet) with gluster 3.5.0-1:

~
SERVER: host07
CLIENT: host01 , host02 , host03 , host04

root@host07:~# service glusterfs-server start
root@host07:~# gluster peer status
root@host07:~# gluster peer probe host01
root@host07:~# gluster peer probe host02
root@host07:~# gluster peer probe host03
root@host07:~# gluster peer probe host04

root@host07:~# pdsh -w 'host[01-04]' gluster peer probe host07
host01: peer probe: success.
host02: peer probe: success.
host03: peer probe: success.
host04: peer probe: success.

root@host07:~# gluster peer status
root@host07:~# gluster volume create scratch01-04 stripe 4
host01:/data/brick1 host02:/data/brick1 host03:/data/brick1
host04:/data/brick1
root@host07:~# gluster volume start scratch01-04
root@host07:~# mkdir -p /storage/scratch01-04
root@host07:~# mount -t glusterfs host07:/scratch01-04 /storage/scratch01-04

root@host01:~# mkdir -p /storage/scratch01-04
root@host01:~# mount -t glusterfs host07:/scratch01-04 /storage/scratch01-04

root@host01:/storage/scratch01-04# ls
root@host01:/storage/scratch01-04# mkdir test
root@host01:/storage/scratch01-04# cd test/
root@host01:/storage/scratch01-04/test# touch foo
root@host01:/storage/scratch01-04/test# ln -s foo my_link
root@host01:/storage/scratch01-04/test# ls -ltr
ls: cannot read symbolic link my_link: No such file or directory
total 0
-rw-r--r-- 1 root root 0 Jun 18 10:07 foo
lrwxrwxrwx 1 root root 3 Jun 18 10:08 my_link


root@host01:~# strace /bin/ls -l foo 2 output_strace_foo
root@host01:~# strace /bin/ls -l my_link 2 output_strace_my_link
~

The strace output and the logs of the server and client are attached.
I hope this is useful to pinpoint the problem.
Bye







test-gluster-3.5.0-1.tar.gz
Description: application/gzip


signature.asc
Description: OpenPGP digital signature


Bug#751888: Fwd: Fwd: Bug#751888: glusterfs-server: creating symlinks generates errors

2014-06-19 Thread Patrick Matthäi
Hello gluster list,

could you have got a look on this bug?
You can access all information on http://bugs.debian.org/751888

I am on vacation from now on for nearly three weeks so I could not take
care of it :-(


 Weitergeleitete Nachricht 
Betreff: Bug#751888: glusterfs-server: creating symlinks generates errors
Weitersenden-Datum: Wed, 18 Jun 2014 09:39:02 +
Weitersenden-Von: Matteo Checcucci matteo.checcu...@arnone.de.unifi.it
Weitersenden-An: debian-bugs-d...@lists.debian.org
Weitersenden-CC: Patrick Matthäi pmatth...@debian.org
Datum: Wed, 18 Jun 2014 10:53:12 +0200
Von: Matteo Checcucci matteo.checcu...@arnone.de.unifi.it
Antwort an: Matteo Checcucci matteo.checcu...@arnone.de.unifi.it,
751...@bugs.debian.org
An: 751...@bugs.debian.org

On 06/17/2014 04:14 PM, Patrick Matthäi wrote:

 Am 17.06.2014 15:29, schrieb Matteo Checcucci:
 ls -l, cp -a, ...).
 An especially troublesome consequence is that if I


 What is the output of:
 strace /bin/ls -l foobar?

 Anything in your server/client logs?


Hello.
Thanks for your quick reply.
I reproduced the bug on a newly created gluster volume (connection IP
over Ethernet) with gluster 3.5.0-1:

~
SERVER: host07
CLIENT: host01 , host02 , host03 , host04

root@host07:~# service glusterfs-server start
root@host07:~# gluster peer status
root@host07:~# gluster peer probe host01
root@host07:~# gluster peer probe host02
root@host07:~# gluster peer probe host03
root@host07:~# gluster peer probe host04

root@host07:~# pdsh -w 'host[01-04]' gluster peer probe host07
host01: peer probe: success.
host02: peer probe: success.
host03: peer probe: success.
host04: peer probe: success.

root@host07:~# gluster peer status
root@host07:~# gluster volume create scratch01-04 stripe 4
host01:/data/brick1 host02:/data/brick1 host03:/data/brick1
host04:/data/brick1
root@host07:~# gluster volume start scratch01-04
root@host07:~# mkdir -p /storage/scratch01-04
root@host07:~# mount -t glusterfs host07:/scratch01-04 /storage/scratch01-04

root@host01:~# mkdir -p /storage/scratch01-04
root@host01:~# mount -t glusterfs host07:/scratch01-04 /storage/scratch01-04

root@host01:/storage/scratch01-04# ls
root@host01:/storage/scratch01-04# mkdir test
root@host01:/storage/scratch01-04# cd test/
root@host01:/storage/scratch01-04/test# touch foo
root@host01:/storage/scratch01-04/test# ln -s foo my_link
root@host01:/storage/scratch01-04/test# ls -ltr
ls: cannot read symbolic link my_link: No such file or directory
total 0
-rw-r--r-- 1 root root 0 Jun 18 10:07 foo
lrwxrwxrwx 1 root root 3 Jun 18 10:08 my_link


root@host01:~# strace /bin/ls -l foo 2 output_strace_foo
root@host01:~# strace /bin/ls -l my_link 2 output_strace_my_link
~

The strace output and the logs of the server and client are attached.
I hope this is useful to pinpoint the problem.
Bye










test-gluster-3.5.0-1.tar.gz
Description: application/gzip


signature.asc
Description: OpenPGP digital signature


Bug#747441: marked as done (billiard: FTBFS on kfreebsd)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 13:33:30 +
with message-id e1wxct4-0004io...@franck.debian.org
and subject line Bug#747441: fixed in billiard 3.3.0.17-2
has caused the Debian Bug report #747441,
regarding billiard: FTBFS on kfreebsd
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.)


-- 
747441: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=747441
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
package: billiard
version: 3.3.0.17-1
severity: serious

Hi,

The latest upload of billiard fails on kfreebsd-*, but built successfully
before:

https://buildd.debian.org/status/package.php?p=billiard

Cheers,

Ivo
---End Message---
---BeginMessage---
Source: billiard
Source-Version: 3.3.0.17-2

We believe that the bug you reported is fixed in the latest version of
billiard, 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 747...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Michael Fladischer fladischermich...@fladi.at (supplier of updated billiard 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 14 Jun 2014 20:41:08 +0200
Source: billiard
Binary: python-billiard python3-billiard python-billiard-doc
Architecture: source amd64 all
Version: 3.3.0.17-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Michael Fladischer fladischermich...@fladi.at
Description:
 python-billiard - Multiprocessing Pool Extensions for Python
 python-billiard-doc - Multiprocessing Pool Extensions for Python 
(Documentation)
 python3-billiard - Multiprocessing Pool Extensions for Python (Python3 version)
Closes: 747441
Changes:
 billiard (3.3.0.17-2) unstable; urgency=medium
 .
   * Add gnukfreebsd.patch to make setup.py recognize GNU/kFreeBSD as a
 FreeBSD platform (Closes: #747441).
Checksums-Sha1:
 e161ebb97e10bc588e3dd1fe7c367a37ece9b995 2381 billiard_3.3.0.17-2.dsc
 7fd0677559cfb88b5f538d349ca1805e2aab46ef 7052 billiard_3.3.0.17-2.debian.tar.xz
 ea1f0817a9ed014bd878627a1b22dab431ffaf41 76926 
python-billiard_3.3.0.17-2_amd64.deb
 441b72f48815cfdffa69d7fb6de1fbf28c5c08d5 70392 
python3-billiard_3.3.0.17-2_amd64.deb
 403eb0c7930e51cd8ff28fe862f80c0390cdf917 80538 
python-billiard-doc_3.3.0.17-2_all.deb
Checksums-Sha256:
 7fe23cbdd2094b8c89415419e4f59de812de45ea815dc149ca8735b73deedf64 2381 
billiard_3.3.0.17-2.dsc
 361be941b5f00a9489ae569349192c8ee9c6f0ba3951d690e55320a8091c5cbb 7052 
billiard_3.3.0.17-2.debian.tar.xz
 f2b5f055414edede8daee9433741b48201fc35ac5471fcfbe5630820a1537dfc 76926 
python-billiard_3.3.0.17-2_amd64.deb
 6e220f5af8f51495cae7eacc16e34fbbe4e291ffe0055932cabaeb7eefb5cb2c 70392 
python3-billiard_3.3.0.17-2_amd64.deb
 9074231d264ef2694aec0efb721d257e12baf1229454972f2e753a85f569def8 80538 
python-billiard-doc_3.3.0.17-2_all.deb
Files:
 274c176f7291fb603bf621bc2293ba1b 76926 python optional 
python-billiard_3.3.0.17-2_amd64.deb
 42077aa629d3d21e604e6fc745ea8ebe 70392 python optional 
python3-billiard_3.3.0.17-2_amd64.deb
 2cf0a511c343a7e26564b2f6eed4 80538 doc optional 
python-billiard-doc_3.3.0.17-2_all.deb
 4119ca6c545fb5e9b29b1cb8e13ba710 2381 python optional billiard_3.3.0.17-2.dsc
 7c8083a33bf7c7157ce3083917a56d72 7052 python optional 
billiard_3.3.0.17-2.debian.tar.xz

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

iQIcBAEBCAAGBQJTouTuAAoJEBLZsEqQy9jk5tAP/1W9pz8Uff2U/l35IA9fgZC/
Y77hCH5JSFe0OnxpVmxuQlyB+Pg5YKwMYY9pRJyjaeQZKWXRn4Af9jsy5hhnHK/z
uJKiAWtRpUWmXTaJICgMhSZl/lFAQC6So2GLEoNOcxxOr1xHALWrr1uZloRnSW/Q
IFk0g5iMHzBgoKYDCrGdP2zheRFgTtp3sx3A4aPf9S9XD0MGQVdNOaArCzZ3hT90
5TcbR1dlLrk7nkuP0puEG/6BUEBVMAZPh6asXOhC6+o1fjNi09ZF2txP+DDdqn9l
92R1jbNuXKgTVLDp1fdA4nn6mrukISRyEfK7d860V7qfmiD/BZWneQW2p4CIuJv/
ype1kvjMJ2niyABJrM1eeJOH/9GMCVYpHVn7vbQVH7fznUSvrvgfAYRqFBks8Jnz
JHKkEHeJRdUZuTWMasmRU/dtTuaItfDCSXjBbwvsVV7DZKw70cK2jwID3L7cQErk
5FNyV/ip0+BmiZSo4bzWaaJz8qNJUc4Bl41O/Efh4DGtI1ZKDpdh5nf3ZfOSNS/z
3aV90Ei4oOzmeYt2FrE7NJ+NkrDrAuXvt82FCazfDXUljmSRgj8GH3yD8c4Iae1X
suKbfrDyYuAjCJ/06UQ28uCHw4dJ0NxxLOau6fY83XCee0DErN8J3QwNfDgFKzII
cRB0eDWZ7tFFv056LF0W
=S0yU
-END PGP SIGNATUREEnd Message---

Bug#738493: LWPx::ParanoidAgent still broken

2014-06-19 Thread Antoine Beaupré
Control: reopen -1
Control: notfixed -1 1.10-2

This is still broken:

anarcat@marcos:~$ dpkg -l liblwpx-paranoidagent-perl
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| 
État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ NomVersion  Architecture Description
+++-==---=
ii  liblwpx-parano 1.10-2   all  a paranoid subclass of LWP::Use
anarcat@marcos:~$ PERL_LWP_SSL_CA_PATH=/etc/ssl/certs perl 
-MLWPx::ParanoidAgent -e 'print 
LWPx::ParanoidAgent-new-get(https://www.google.com;)-status_line'
500 Can't connect to www.google.com:443 (Net::SSL from Crypt-SSLeay can't 
verify hostnames; either install IO::Socket::SSL or turn off verification by 
setting the PERL_LWP_SSL_VERIFY_HOSTNAME environment variable to 0)
anarcat@marcos:~$ dpkg -l '*io-socket-ssl*'
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| 
État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ NomVersion  Architecture Description
+++-==---=
ii  libio-socket-s 1.992-1  all  Perl module implementing object o

-- 
The idea that Bill Gates has appeared like a knight in shining armour to
lead all customers out of a mire of technological chaos neatly ignores
the fact that it was he who, by peddling second-rate technology, led
them into it in the first place. - Douglas Adams (1952-2001)


pgpPdZuyOwePF.pgp
Description: PGP signature


Processed: LWPx::ParanoidAgent still broken

2014-06-19 Thread Debian Bug Tracking System
Processing control commands:

 reopen -1
Bug #738493 {Done: Hilko Bengen ben...@debian.org} 
[liblwpx-paranoidagent-perl] liblwpx-paranoidagent-perl: can't verify hostnames
'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 liblwpx-paranoidagent-perl/1.10-2.
 notfixed -1 1.10-2
Bug #738493 [liblwpx-paranoidagent-perl] liblwpx-paranoidagent-perl: can't 
verify hostnames
Ignoring request to alter fixed versions of bug #738493 to the same values 
previously set

-- 
738493: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738493
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#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed because of perl issues

2014-06-19 Thread Deniz Akcal
Hello, Jeremy.
Does running apt-get install -y perl-base (without the quotes) first make the 
upgrade work?

 Subject: Bug#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed 
 because of perl issues
 From: hol...@layer-acht.org
 To: org-debi...@jeremykister.com; 752...@bugs.debian.org
 Date: Thu, 19 Jun 2014 12:46:11 +0200
 
 Hi Jeremy,
 
 please don't use service like pastebin.com, jsut post the entire log to the 
 bug iteself. Thanks!
 
 Log attached now.
 
 Also your /etc/apt/sources.list would be helpful...
 
 
 cheers,
   Holger
  

Bug#752023: confirm an patch

2014-06-19 Thread Tobias Scherer
Hi,

I can confirm the mentioned behaviour.

The attached patch fixes this for me, I hope it is useful.

Kind Regards,
Tobias--- get-upstream-version.pl.old	2014-06-19 16:28:23.556045397 +0200
+++ get-upstream-version.pl	2014-06-19 16:29:50.776457731 +0200
@@ -46,7 +46,7 @@
 my $url = http://www.adobe.com/;;
 $page = read_page( $ARGV[0], $url );
 die failed to read $url if( $page eq  );
-if( $page !~ m,a href=([^]+)Adobe Flash Player/a,s )
+if( $page !~ m,a class=globalnav__sitemap__item__link href=([^]+flashplayer[^]+),s )
 {
 	if( -d /var/cache/flashplugin-nonfree )
 	{
@@ -59,7 +59,7 @@
 
 my $link_to_flash = $1;
 
-if( $link_to_flash =~ m%^http://get\d*\.adobe\.com/flashplayer/\?promoid=[A-Z]+$% )
+if( $link_to_flash =~ m%^https://get\d*\.adobe\.com/flashplayer\?promoid=[A-Z]+$% )
 {
 	$url = $link_to_flash;
 }


Processed: reassign 749808 to libscalar-does-perl

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 749808 libscalar-does-perl
Bug #749808 {Done: Olly Betts o...@survex.com} [libscalar-does-perl] perlrdf: 
FTBFS - Base class package Exporter::TypeTiny is empty
Ignoring request to reassign bug #749808 to the same package
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
749808: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749808
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: block 695563 with 751417

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 block 695563 with 751417
Bug #695563 [src:liblinux-prctl-perl] liblinux-prctl-perl: FTBFS on mips and 
mipsel
695563 was not blocked by any bugs.
695563 was not blocking any bugs.
Added blocking bug(s) of 695563: 751417
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
695563: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=695563
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#752053: marked as done (haskell-simple-sendfile: FTBFS on kfreebsd hurd)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 15:35:17 +
with message-id e1wxemv-0001dw...@franck.debian.org
and subject line Bug#752053: fixed in haskell-simple-sendfile 0.2.14-1
has caused the Debian Bug report #752053,
regarding haskell-simple-sendfile: FTBFS on kfreebsd  hurd
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.)


-- 
752053: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752053
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: haskell-simple-sendfile
Version: 0.2.11-2
Severity: serious
Justification: FTBFS

Hello,

haskell-simple-sendfile is currently bd-uninstallable on kfreebsd  hurd
arches because it build-depends on libghc-conduit-dev ( 1.1), and the
current version of haskell-conduit is 1.1.6.

haskell-simple-sendfile happens to build wine with haskell-conduit
1.1.6, so I guess it is a matter of reuploading haskell-simple-sendfile
build-depending on libghc-conduit-dev ( 1.2)?

Samuel

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.15.0 (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/bash

-- 
Samuel
I once witnessed a long-winded, month-long flamewar over the use of
mice vs. trackballs...It was very silly.
(By Matt Welsh)
---End Message---
---BeginMessage---
Source: haskell-simple-sendfile
Source-Version: 0.2.14-1

We believe that the bug you reported is fixed in the latest version of
haskell-simple-sendfile, 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 752...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Clint Adams cl...@debian.org (supplier of updated haskell-simple-sendfile 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 19 Jun 2014 10:38:00 -0400
Source: haskell-simple-sendfile
Binary: libghc-simple-sendfile-dev libghc-simple-sendfile-prof 
libghc-simple-sendfile-doc
Architecture: source all amd64
Version: 0.2.14-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description:
 libghc-simple-sendfile-dev - Cross platform library for the sendfile system 
call${haskell:Shor
 libghc-simple-sendfile-doc - Cross platform library for the sendfile system 
call${haskell:Shor
 libghc-simple-sendfile-prof - Cross platform library for the sendfile system 
call${haskell:Shor
Closes: 752053
Changes:
 haskell-simple-sendfile (0.2.14-1) unstable; urgency=medium
 .
   [ Joachim Breitner ]
   * Adjust watch file to new hackage layout
 .
   [ Clint Adams ]
   * New upstream version.
 - should fix FTBFS on kfreebsd/hurd.  closes: #752053.
   * Enable testsuite.
Checksums-Sha1:
 68dc06d0d2244004486c1b3c9af8a716d238d59a 3173 
haskell-simple-sendfile_0.2.14-1.dsc
 1e07da116e633ac39116615191c019565c99e95c 7322 
haskell-simple-sendfile_0.2.14.orig.tar.gz
 4686482ebf28b1e11ad0bd272b2cc5f072e9644e 287668 
haskell-simple-sendfile_0.2.14-1.debian.tar.xz
 8843785c87c2d5aeffd408120b3833eac9bdbe51 32162 
libghc-simple-sendfile-doc_0.2.14-1_all.deb
 492e0990e8272de4ef05d80b418af4e649b32e7f 17718 
libghc-simple-sendfile-dev_0.2.14-1_amd64.deb
 7e352baee44741ca00f6c67831b590b4ba6e8659 17876 
libghc-simple-sendfile-prof_0.2.14-1_amd64.deb
Checksums-Sha256:
 c9a3bb7ad12b378b6e701a0210731ebd6c45b20c64639b18032d81ef453247d6 3173 
haskell-simple-sendfile_0.2.14-1.dsc
 d10a91766250d67fdc9386efbb3f4401f4890cb9c885b34240c49f0e99626902 7322 
haskell-simple-sendfile_0.2.14.orig.tar.gz
 5fd42dd9bf800b9e5b3bba46b853fbeede8ccd10f1a444bc2c86dd2db7bdaf9c 287668 
haskell-simple-sendfile_0.2.14-1.debian.tar.xz
 de27b411d2a00f4d9d4a500068c49dfcfe904896be826537c572418a142669f3 32162 
libghc-simple-sendfile-doc_0.2.14-1_all.deb
 c00c35baa78a3be027bfd873836d0573f7d51c4ceb870c26ac0269045111f0ae 17718 
libghc-simple-sendfile-dev_0.2.14-1_amd64.deb
 4070f58b6425c45433debe5b0284029db8c29ea1b85213a936d0889a6b10ea2c 17876 

Bug#738493: LWPx::ParanoidAgent still broken

2014-06-19 Thread Hilko Bengen
* Antoine Beaupré:

 This is still broken:

I have just uploaded a fix for your example. It turns out that simply
loading Net::SSL caused Net::HTTPS to use that.

What a mess.

Cheers,
-Hilko


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



Bug#750813: marked as done (pyzmq: FTBFS on kfreebsd* and mips*)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 15:36:44 +
with message-id e1wxeok-000277...@franck.debian.org
and subject line Bug#750813: fixed in pyzmq 14.3.1-1
has caused the Debian Bug report #750813,
regarding pyzmq: FTBFS on kfreebsd* and mips*
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.)


-- 
750813: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750813
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: pyzmq
Version: 14.3.0-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

The current pymzq upload FTBFS on the mentioned architectures.  The mips*
failures are different than the kfreebsd* failures.  This package is part
of the transition to remove python3.3 from the archive.
---End Message---
---BeginMessage---
Source: pyzmq
Source-Version: 14.3.1-1

We believe that the bug you reported is fixed in the latest version of
pyzmq, 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 750...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julian Taylor jtaylor.deb...@googlemail.com (supplier of updated pyzmq 
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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Jun 2014 23:23:35 +0200
Source: pyzmq
Binary: python-zmq python-zmq-dbg python3-zmq python3-zmq-dbg pypy-zmq
Architecture: source amd64
Version: 14.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Julian Taylor jtaylor.deb...@googlemail.com
Description:
 pypy-zmq   - PyPy bindings for 0MQ library
 python-zmq - Python bindings for 0MQ library
 python-zmq-dbg - Python bindings for 0MQ library - debugging files
 python3-zmq - Python3 bindings for 0MQ library
 python3-zmq-dbg - Python3 bindings for 0MQ library - debugging files
Closes: 750813
Changes:
 pyzmq (14.3.1-1) unstable; urgency=medium
 .
   * New upstream release
   * monitor-test.patch: fix test logic for synchronous connects on freebsd
   * ignore test results on mips, hard to debug race condition, no reason to
 delay testing migration (Closes: #750813)
Checksums-Sha1:
 3077dc25d7eee86c473efb67c50cb974afd8d6c2 2484 pyzmq_14.3.1-1.dsc
 5b6b810f85f073bca2ff1ec836a0dddee4b1b9ff 416215 pyzmq_14.3.1.orig.tar.gz
 d4bc737bd61f855d60f85bef6431110202502dcf 7592 pyzmq_14.3.1-1.debian.tar.xz
 8904c8e9e53b5fe9fb46fa9e0cddfa913ed4723e 178856 python-zmq_14.3.1-1_amd64.deb
 0159f4e13d56345c4acc057657a9347af86d6829 122282 
python-zmq-dbg_14.3.1-1_amd64.deb
 e4d67972d4b64088d7a5b207f527ef528f834ba2 176574 python3-zmq_14.3.1-1_amd64.deb
 52f9b0d43443daf4112676ebf8f3936941bdc9fb 120558 
python3-zmq-dbg_14.3.1-1_amd64.deb
 bd10f7a1801a6c4a072d3c20cbf30e2440618e7b 93782 pypy-zmq_14.3.1-1_amd64.deb
Checksums-Sha256:
 610978a779742cf500c9941b1e9bfb1f7ff393bcfd6635b02a84d45509857c4d 2484 
pyzmq_14.3.1-1.dsc
 81fcd978424f177e8120eabe03c6c94296becfdff7f9658190ef85f8fc7d1413 416215 
pyzmq_14.3.1.orig.tar.gz
 cebd5a1e5f8820b681db9069de486265b25a6cdf1e0044fd157a8c55232de06c 7592 
pyzmq_14.3.1-1.debian.tar.xz
 a0c4dd7df41fc890d2eb699d294fcf56a94f7455bfc47e5a67babd4066a0b28d 178856 
python-zmq_14.3.1-1_amd64.deb
 26d8c90bb2e87e9a715b2b4eacb3a87bcc676cd52f8d74ed4aec06a5fce529eb 122282 
python-zmq-dbg_14.3.1-1_amd64.deb
 a0c04bb29a999d05d203a76c4216c61ca0bccdb81730b5ca097fd999b849fbd5 176574 
python3-zmq_14.3.1-1_amd64.deb
 105822ded0ce0de9275c3753ef6c05def86e5a1db26ac2ac08279061f1d3de28 120558 
python3-zmq-dbg_14.3.1-1_amd64.deb
 18de82d01fc515771b4862f9311813d1cc52f3f7c1dfac71c1ab3b56831a9644 93782 
pypy-zmq_14.3.1-1_amd64.deb
Files:
 2f93b94e90cb52ae89d3f84de346d028 178856 python optional 
python-zmq_14.3.1-1_amd64.deb
 f219ff6473a4b28ab188a75768aca01d 122282 debug extra 
python-zmq-dbg_14.3.1-1_amd64.deb
 d802515df50ebf83d0356c88c4d34406 176574 python optional 
python3-zmq_14.3.1-1_amd64.deb
 1a7b1bbf9f9a7190c4a0149d7cea3e41 120558 debug extra 
python3-zmq-dbg_14.3.1-1_amd64.deb
 d17f906d01ade629ac61aaa6329bac73 93782 python optional 
pypy-zmq_14.3.1-1_amd64.deb
 ab6e707c1756d243d8e6f0334d5e9ed3 2484 python optional pyzmq_14.3.1-1.dsc
 078a1ca9f96d3510b85fcce195dbac36 

Bug#751294: chromium: Does not display any web page or settings (Aw, Snap)

2014-06-19 Thread Raphael Kubo da Costa
Hi all,

Given that GCC 4.9 is related here, I believe this is the same bug that
has caused problems for other distros that have switched to GCC 4.9.

The root cause is very likely to be
https://code.google.com/p/angleproject/issues/detail?id=651, which I
reported a while ago and has been fixed in Chromium trunk.

There is also a merge request for the fix to be merged into Chromium's
beta channel (M36) in
https://code.google.com/p/chromium/issues/detail?id=385729, but upstream
was reluctant to include this into M35 (the stable channel).

It might be useful to try applying the M36 patch into the M35 tarball
currently being packaged in Debian nonetheless to get rid of the
problem.


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



Bug#752023: flashplugin bug stable debian

2014-06-19 Thread Piotrek Walaszczyk
same problem

root@pietia-host:/home/pietia# aptitude install flashplugin-nonfree
Następujące NOWE pakiety zostaną zainstalowane:
  flashplugin-nonfree
0 pakietów aktualizowanych, 1 instalowanych, 0 do usunięcia i 0
nieaktualizowanych.
Do pobrania 0 B/20,1 kB archiwów. Zajęte po rozpakowaniu: 181 kB.
Wybieranie wcześniej niewybranego pakietu flashplugin-nonfree.
(Odczytywanie bazy danych ... 118845 plików i katalogów obecnie
zainstalowanych.)
Rozpakowywanie pakietu flashplugin-nonfree (z
.../flashplugin-nonfree_1%3a3.2_i386.deb) ...
Przetwarzanie wyzwalaczy pakietu man-db...
Przetwarzanie wyzwalaczy pakietu desktop-file-utils...
Przetwarzanie wyzwalaczy pakietu hicolor-icon-theme...
Konfigurowanie pakietu flashplugin-nonfree (1:3.2) ...
link to Adobe Flash Player not found on http://www.adobe.com/ at
get-upstream-version.pl line 57.
ERROR: failed to get upstream version
More information might be available at:
  http://wiki.debian.org/FlashPlayer


Processed: darkice: diff for NMU version 1.2-0.1

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 647000 + patch
Bug #647000 [darkice] darkice: Please include mp3 support
Added tag(s) patch.
 tags 723068 + patch
Bug #723068 [darkice] darkice won't start: Cannot connect to server socket err 
= No such file or directory
Added tag(s) patch.
 tags 740870 + patch
Bug #740870 [darkice] darkice: Please package Darkice 1.2
Added tag(s) patch.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
647000: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647000
723068: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=723068
740870: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=740870
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#738493: marked as done (liblwpx-paranoidagent-perl: can't verify hostnames)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 16:03:45 +
with message-id e1wxeot-0006m9...@franck.debian.org
and subject line Bug#738493: fixed in liblwpx-paranoidagent-perl 1.10-3
has caused the Debian Bug report #738493,
regarding liblwpx-paranoidagent-perl: can't verify hostnames
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.)


-- 
738493: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738493
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: liblwpx-paranoidagent-perl
Version: 1.10-1
Severity: normal
Tags: upstream


PERL_LWP_SSL_CA_PATH=/etc/ssl/certs perl -MLWPx::ParanoidAgent -e 'print 
LWPx::ParanoidAgent-new-get(https://www.google.com;)-status_line'

500 Can't connect to www.google.com:443 (Net::SSL from Crypt-SSLeay can't 
verify hostnames; either install IO::Socket::SSL or turn off verification by 
setting the PERL_LWP_SSL_VERIFY_HOSTNAME environment variable to 0)%

The problem is LWPx::ParanoidAgent started to force Net::SSL with
version 1.10. Forcing IO::Socket::SSL is not working either, so I am
a bit lost at the moment but would be happy to help troubleshooting.

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

Kernel: Linux 3.12-1-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 liblwpx-paranoidagent-perl depends on:
ii  libcrypt-ssleay-perl  0.58-1+b1
ii  libnet-dns-perl   0.68-1.2
ii  libwww-perl   6.05-2
ii  perl  5.18.2-2

liblwpx-paranoidagent-perl recommends no packages.

liblwpx-paranoidagent-perl suggests no packages.

-- no debconf information

--
---End Message---
---BeginMessage---
Source: liblwpx-paranoidagent-perl
Source-Version: 1.10-3

We believe that the bug you reported is fixed in the latest version of
liblwpx-paranoidagent-perl, 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 738...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Hilko Bengen ben...@debian.org (supplier of updated 
liblwpx-paranoidagent-perl package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 19 Jun 2014 17:28:12 +0200
Source: liblwpx-paranoidagent-perl
Binary: liblwpx-paranoidagent-perl
Architecture: source all
Version: 1.10-3
Distribution: unstable
Urgency: medium
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description:
 liblwpx-paranoidagent-perl - a paranoid subclass of LWP::UserAgent
Closes: 738493
Changes:
 liblwpx-paranoidagent-perl (1.10-3) unstable; urgency=medium
 .
   * Updated HTTPS patch (Closes: #738493)
Checksums-Sha1:
 413ad66eb80fd143c204293c02cc5724ad3a0d53 1250 
liblwpx-paranoidagent-perl_1.10-3.dsc
 e64b298802e9aec5db05ba9461f024ca7c1f4b47 2828 
liblwpx-paranoidagent-perl_1.10-3.debian.tar.xz
 79e4dd47aedc652edd5b8d4da9e5e90f5cf1ea02 18342 
liblwpx-paranoidagent-perl_1.10-3_all.deb
Checksums-Sha256:
 c798e5dd2a6e0a66f2974c5278d8516cf6652355fd9e256f6fa0de8e3aaf7ebe 1250 
liblwpx-paranoidagent-perl_1.10-3.dsc
 846f77a608b1436aa8e35cee8720b186a8dab8da1c5a0ef165c0d813e381f6df 2828 
liblwpx-paranoidagent-perl_1.10-3.debian.tar.xz
 e97d2385302ead7bea7ba7a70f33edeab43d0e7de0ca41f8533face3a53d109c 18342 
liblwpx-paranoidagent-perl_1.10-3_all.deb
Files:
 8b3208de94b06d6401c7f746169b51af 18342 perl optional 
liblwpx-paranoidagent-perl_1.10-3_all.deb
 37ff3da6c5682a580b3936fe846bdd8a 1250 perl optional 
liblwpx-paranoidagent-perl_1.10-3.dsc
 192fdf50f4bc059175b520ead8da5dea 2828 perl optional 
liblwpx-paranoidagent-perl_1.10-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlOjAtwACgkQUCgnLz/SlGiN3gCg2gAfy08wcJaL5Jp/+EJL9r5s
37IAnRu+L3KrU89vCEyNjrqTGhsSiuGn
=oqlP
-END PGP SIGNATUREEnd Message---


Bug#723068: marked as done (darkice won't start: Cannot connect to server socket err = No such file or directory)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 16:03:32 +
with message-id e1wxeog-0006fw...@franck.debian.org
and subject line Bug#723068: fixed in darkice 1.2-0.1
has caused the Debian Bug report #723068,
regarding darkice won't start: Cannot connect to server socket err = No such 
file or directory
to be marked as done.

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

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


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

Dear Maintainer,

This will be a bit long.  And, though I mention two Debian derivatives, the
issue is also present in Debian.  Thanks for your time and effort.

* What led up to the situation?
I am running Ubuntu Studio on a system at my church, using Ardour and Jack for
recording and as a public address system.  I plan on adding streaming audio,
using icecast2 and darkice, so I can connect to Jack to extract the audio to
send to the icecast server.

I have Debian 7.1 installed on my laptop, and Linux Mint on my desktop.

I tried to set up a proof of concept on the desktop.  I first set up icecast2
and ices2, to be sure my icecast configuration worked.  After verifying it, I
set up darkice, configured to use 'jack' as the source.  But darkice failed to
run.  I tried using 'jack-auto' but it also failed.

I then set up the same on the Ubuntu system, where I know Jack works, but
darkice fails to run there as well.

I then decided to download and compile darkice myself, to see if a newer
version made any difference.  The only change was in the error message wording.

The next thing was to set up my laptop for darkice.  Because the problem was
getting darkice to run at all, I did not install icecast.  I did install jack
and qjackctl.  Attempting to run darkice using 'jack' as the source results in
this output:

$ sudo darkice
DarkIce 1.0 live audio streamer, http://code.google.com/p/darkice/
Copyright (c) 2000-2007, Tyrell Hungary, http://tyrell.hu/
Copyright (c) 2008-2010, Akos Maroy and Rafael Diniz
This is free software, and you are welcome to redistribute it
under the terms of The GNU General Public License version 3 or
any later version.

Using config file: /etc/darkice.cfg
Using JACK audio server as input device.
Using POSIX real-time scheduling, priority 98
jack_client_new: deprecated
Cannot connect to server socket err = No such file or directory
Cannot connect to server request channel
jack server is not running or cannot be started
DarkIce: JackDspSource.cpp:216: JACK server not running? [0]

This is the same message for all three systems.  Yet, on the Ubuntu machine,
Ardour, JackEQ and VLC all interact without any problems with Jack.  It is only
darkice that fails to find and open a 'server socket'.

The bottom line is that I can't create the audio stream to broadcast and my
project is dead in the water.

It is quite possible I have some sort of a configuration problem, but I have
compared my darkice config with the example, and other examples I've found
around the web, and I don't see anything glaringly obvious.  In fact, it looks
to me like it should be fine.

Also, at least from my perspective, this is hugh problem, as darkice fails
completely, hence the choices I made for severity, etc.



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

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

Versions of packages darkice depends on:
ii  libasound21.0.25-4
ii  libc6 2.13-38
ii  libgcc1   1:4.7.2-5
ii  libjack-jackd2-0 [libjack-0.116]  1.9.8~dfsg.4+20120529git007cdc37-5
ii  libogg0   1.3.0-4
ii  libsamplerate00.1.8-5
ii  libstdc++64.7.2-5
ii  libtwolame0   0.3.13-1
ii  libvorbis0a   1.3.2-1.3
ii  libvorbisenc2 1.3.2-1.3
ii  lsb-base  4.1+Debian8+deb7u1

darkice recommends no packages.

Versions of packages darkice suggests:
pn  darksnow  none

-- no debconf information
---End Message---
---BeginMessage---
Source: darkice
Source-Version: 1.2-0.1

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

A summary of the changes between this version 

Bug#752023: flashplugin-nonfree: Can cornfirm for both stable and testing.

2014-06-19 Thread Michel L.
Package: flashplugin-nonfree
Version: 1:3.4
Followup-For: Bug #752023

Reporting from a testing system. Get the same on a stable system.


link to Adobe Flash Player not found on http://www.adobe.com/ at 
get-upstream-version.pl line 57.
ERROR: failed to get upstream version
More information might be available at:
  http://wiki.debian.org/FlashPlayer


Thanks,
Michel


-- Package-specific info:
Debian version: jessie/sid
Architecture: amd64
Package version: 1:3.4
Adobe Flash Player version: LNX 11,2,202,378
MD5 checksums:
4c5df993023740d135bcf21227745307  
/var/cache/flashplugin-nonfree/adobewebpage.html
9cfeb8c86b471e72e8ff3046a11225a9  
/var/cache/flashplugin-nonfree/install_flash_player_11_linux.x86_64.tar.gz
38a8435b29f18cf40df64a87417c6329  
/usr/lib/flashplugin-nonfree/libflashplayer.so
Alternatives:
flash-mozilla.so - auto mode
  link currently points to 
/usr/lib/flashplugin-nonfree/libflashplayer.so
/usr/lib/flashplugin-nonfree/libflashplayer.so - priority 50
Current 'best' version is 
'/usr/lib/flashplugin-nonfree/libflashplayer.so'.
lrwxrwxrwx 1 root root 34 Dec 19 09:58 
/usr/lib/mozilla/plugins/flash-mozilla.so - /etc/alternatives/flash-mozilla.so
/usr/lib/mozilla/plugins/flash-mozilla.so: symbolic link to 
`/etc/alternatives/flash-mozilla.so'

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

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

Versions of packages flashplugin-nonfree depends on:
ii  binutils   2.24.51.20140604-3
ii  debconf [debconf-2.0]  1.5.53
ii  gnupg  1.4.16-1.1
ii  libatk1.0-02.12.0-1
ii  libcairo2  1.12.16-2
ii  libcurl3-gnutls7.37.0-1+b1
ii  libfontconfig1 2.11.0-5
ii  libfreetype6   2.5.2-1
ii  libgcc11:4.9.0-6
ii  libglib2.0-0   2.40.0-3
ii  libgtk2.0-02.24.23-1
ii  libnspr4   2:4.10.6-1
ii  libnss32:3.16.1-1
ii  libpango1.0-0  1.36.3-1
ii  libstdc++6 4.9.0-6
ii  libx11-6   2:1.6.2-2
ii  libxext6   2:1.3.2-1
ii  libxt6 1:1.1.4-1
ii  wget   1.15-1+b1

flashplugin-nonfree recommends no packages.

Versions of packages flashplugin-nonfree suggests:
ii  fonts-dejavu   2.34-1
pn  halnone
pn  iceweasel  none
pn  konqueror-nspluginsnone
ii  ttf-mscorefonts-installer  3.5
pn  ttf-xfree86-nonfreenone

-- 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#751583: marked as done (missing license in debian/copyright)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 16:19:54 +
with message-id e1wxf46-0008mx...@franck.debian.org
and subject line Bug#751583: fixed in node-lodash 2.4.1+dfsg-3
has caused the Debian Bug report #751583,
regarding missing license in debian/copyright
to be marked as done.

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

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


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

Package: node-lodash
Version: 2.4.1+dfsg-1
Severity: serious
User: alteh...@debian.org
Usertags: ftp
X-Debbugs-CC: ftpmas...@ftp-master.debian.org
thanks

Dear Maintainer,

please mention the AFL of vendor/dojo/* in debian/copyright.

Thanks!
  Thorsten
---End Message---
---BeginMessage---
Source: node-lodash
Source-Version: 2.4.1+dfsg-3

We believe that the bug you reported is fixed in the latest version of
node-lodash, 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 751...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Valentin OVD valentin@live.fr (supplier of updated node-lodash 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 19 Jun 2014 17:08:03 +0200
Source: node-lodash
Binary: node-lodash libjs-lodash
Architecture: source all
Version: 2.4.1+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Valentin OVD valentin@live.fr
Description:
 libjs-lodash - Lo-dash is a Javascript utility library
 node-lodash - Lo-dash is a Node.js utility library
Closes: 751583
Changes:
 node-lodash (2.4.1+dfsg-3) unstable; urgency=low
 .
   * Add the missing licence (Closes: #751583)
Checksums-Sha1:
 d08f50d2c1d68535d55b009f0367d655d17ec083 2121 node-lodash_2.4.1+dfsg-3.dsc
 f719c76aebe3160bd5c54a68e1e74b6dae74dacd 6372 
node-lodash_2.4.1+dfsg-3.debian.tar.xz
 70ce85a8abb3cf6ad8e40feed1feb48c1934138e 48874 node-lodash_2.4.1+dfsg-3_all.deb
 965c699470603645c7491330b41442b488830bad 55080 
libjs-lodash_2.4.1+dfsg-3_all.deb
Checksums-Sha256:
 4627e2354cd1f92320d2b6e9f6d6685e920edb0abafaaa8f41145808c4219336 2121 
node-lodash_2.4.1+dfsg-3.dsc
 01d03a1bfd190b467b21649122fa3920d8e0b8c0cbdf9d61cb9d888be57821cf 6372 
node-lodash_2.4.1+dfsg-3.debian.tar.xz
 04e324f4fc7d130c42f6468ab72ae1c153a27e0c0465dd42fa3cfe3f57b0ea1d 48874 
node-lodash_2.4.1+dfsg-3_all.deb
 eef6cac25b6f24d0011e65d407eeb0741e7179453d786a27507ec1d1fd47a77c 55080 
libjs-lodash_2.4.1+dfsg-3_all.deb
Files:
 78c37b2454e1be64b034b1d0b0317fec 48874 web optional 
node-lodash_2.4.1+dfsg-3_all.deb
 8d45878ae9e4b9b1507e091db0e443bd 55080 web optional 
libjs-lodash_2.4.1+dfsg-3_all.deb
 746bb674218f0907aa8a9177ffa89e78 2121 web optional node-lodash_2.4.1+dfsg-3.dsc
 73889d3a3e63fa16967231226ea6ff66 6372 web optional 
node-lodash_2.4.1+dfsg-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBU6MJSdMN7NJZkyL8AQpSGg/9F+ag5iaGnhyboP17nzaApUSagGgk7LOD
1+Ds8OVkAkfU0/uMnUW3sxNsjtQasK/qyt8EafyQVoqaoVpL3mVoVVTCxe9Pp2sW
R1MsDNmcBFWW5ypBBs4SgBxwN9YPHY3FwxxFEXUFXD4+Pd8OCBIUOzLgfGaj38RM
oJycjjlUEQ+A0ksoC4CmWwF+mJyjgkSFfVQ7SacG5FDDz5p2LPxZDwrlmNU8V3cb
f/OClpBFvIIFvKBHDbobiQrk3vL+nHsrqnQ5QzGrJ0xykqwirNLL/Ra6fp7ctFPy
XjMALQXZl8BrZS7miOtbad3PmI/mjchNTLQK692nxr7uHYIOL9uPvvWulkDmHk3s
JnXcSyqoU7T+9dOrIkeH9daqOZB5jNSNCllnk5EjwrWJGqU5r/lmg+59X3SxFmu2
0ZhztHBsXDWaoGKsX/KRx9sLpfe51uP3oniRHvNjzGQleosqorOsx1apsB5mQiOc
GmwQlE3VY5HdLsCvfU/IT4h5PRl0j5M5+rOSnzGp2AGAkIL2xihdimgw+fGObIU2
0eJPHdIsqKFX56/p5qVUYqCNOgzsDLxj1M5RYHjxZyFy8iWDBOHBgD8CJMprYN9B
gtWhuDHL6l4HvtGN0RsyZRS07HnY7gUSjN/kkPfK1cXyq0KiZdWAwQ55GjFIguFh
fTQT+OVdM8A=
=pQA+
-END PGP SIGNATUREEnd Message---


Processed: tagging 269703

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 269703 + pending
Bug #269703 [funny-manpages] funny-manpages: installs 
/usr/share/lintian/overrides/lintian
Bug #752048 [funny-manpages] funny-manpages and lintian: error when trying to 
install together
Added tag(s) pending.
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
269703: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=269703
752048: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752048
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#752107: libguestfs: FTBFS on mips

2014-06-19 Thread Scott Kitterman
Source: libguestfs
Version: 1:1.26.3
Severity: serious
Justification: fails to build from source (but built successfully in the past)

After the recent binutils fix, it still fails on mips and mipsel.


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



Bug#752107: libguestfs: FTBFS on mips

2014-06-19 Thread Emilio Pozuelo Monfort
On 19/06/14 18:45, Scott Kitterman wrote:
 Source: libguestfs
 Version: 1:1.26.3
 Severity: serious
 Justification: fails to build from source (but built successfully in the past)
 
 After the recent binutils fix, it still fails on mips and mipsel.

The chroots had the old binutils installed. I'm giving it back with a dependency
on the new binutils so it gets updated. Let's see how it goes.

Emilio


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



Bug#752107: libguestfs: FTBFS on mips

2014-06-19 Thread Scott Kitterman
On Thursday, June 19, 2014 18:54:50 Emilio Pozuelo Monfort wrote:
 On 19/06/14 18:45, Scott Kitterman wrote:
  Source: libguestfs
  Version: 1:1.26.3
  Severity: serious
  Justification: fails to build from source (but built successfully in the
  past)
  
  After the recent binutils fix, it still fails on mips and mipsel.
 
 The chroots had the old binutils installed. I'm giving it back with a
 dependency on the new binutils so it gets updated. Let's see how it goes.

Thanks,

Scott K


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



Bug#752023: flashplugin-nonfree: Fix for package script

2014-06-19 Thread Christian Mesh
Package: flashplugin-nonfree
Version: 1:3.4
Followup-For: Bug #752023


Found a workaround/possible fix:

The update-flashplugin script fetches
http://people.debian.org/~bartm/flashplugin-nonfree/get-upstream-version.pl.gz.pgp
and runs it.
This is done in /usr/sbin/update-flashplugin-nonfree around line 200.

This perl script is no longer valid for adobe's new landing site.
The script scrapes Adobe.com for a link to Adobe Flash Plugin and
then verifies the link is valid.
Next the script scrapes the link it found for the latest adobe version
and prints it to the console.

I have created a patch for that file as shown below.

The easiest fix would be to have Bart Martens update his
get-upstream-version.pl.gz.pgp on his debian people page to account
for this.

--- get-upstream-version.pl 2014-06-19 12:53:02.526905033 -0400
+++ test/get-upstream-version.pl 2014-06-19 12:57:55.630909576 -0400
@@ -46,8 +46,7 @@
 my $url = http://www.adobe.com/;;
 $page = read_page( $ARGV[0], $url );
 die failed to read $url if( $page eq  );
-
-if( $page !~ m,a class=globalnav__sitemap__item__link
href=(https://get\.adobe\.com/flashplayer\?promoid=[^]+),s )
+if( $page !~ m,a href=([^]+)Adobe Flash Player/a,s )
 {
  if( -d /var/cache/flashplugin-nonfree )
  {
@@ -60,14 +59,14 @@

 my $link_to_flash = $1;

-if( $link_to_flash =~
m%^https://get\d*\.adobe\.com/flashplayer\?promoid=[A-Z]+$% )
+if( $link_to_flash =~
m%^http://get\d*\.adobe\.com/flashplayer/\?promoid=[A-Z]+$% )
 {
  $url = $link_to_flash;
 }
 else
 {
  $link_to_flash =~ s,^/,,;
- die link to flash contains invalid characters: '$link_to_flash'
if( $link_to_flash !~ m%^[a-zA-Z0-9_/=?]+$% );
+ die link to flash contains invalid characters: $link_to_flash if(
$link_to_flash !~ m%^[a-zA-Z0-9_/=?]+$% );
  $url = http://www.adobe.com/$link_to_flash;;
 }



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

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

Versions of packages flashplugin-nonfree depends on:
ii  binutils   2.24.51.20140604-3
ii  debconf [debconf-2.0]  1.5.53
ii  gnupg  1.4.16-1.1
ii  libatk1.0-02.12.0-1
ii  libcairo2  1.12.16-2
ii  libcurl3-gnutls7.37.0-1+b1
ii  libfontconfig1 2.11.0-5
ii  libfreetype6   2.5.2-1
ii  libgcc11:4.9.0-6
ii  libglib2.0-0   2.40.0-3
ii  libgtk2.0-02.24.23-1
ii  libnspr4   2:4.10.6-1
ii  libnss32:3.16.1-1
ii  libpango1.0-0  1.36.3-1
ii  libstdc++6 4.9.0-6
ii  libx11-6   2:1.6.2-2
ii  libxext6   2:1.3.2-1
ii  libxt6 1:1.1.4-1
ii  wget   1.15-1+b1

flashplugin-nonfree recommends no packages.

Versions of packages flashplugin-nonfree suggests:
ii  fonts-dejavu   2.34-1
pn  halnone
pn  iceweasel  none
pn  konqueror-nspluginsnone
ii  ttf-mscorefonts-installer  3.5
pn  ttf-xfree86-nonfreenone

-- 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#750167: marked as done (proxy-suite: FTBFS - ftp-proxy.pdf: PS2PDF not available)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 18:03:46 +
with message-id e1wxggc-0003xl...@franck.debian.org
and subject line Bug#750167: fixed in proxy-suite 1.9.2.4-10
has caused the Debian Bug report #750167,
regarding proxy-suite: FTBFS - ftp-proxy.pdf: PS2PDF not available
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.)


-- 
750167: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750167
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: proxy-suite
Version: 1.9.2.4-9
Severity: serious
Usertags: goto-cc

During a rebuild of all Debian packages in a clean sid chroot (using cowbuilder
and pbuilder) the build failed with the following error.

[...]
Output written on ftp-proxy.dvi (11 pages, 55040 bytes).
Transcript written on ftp-proxy.log.
dvips: ! Couldn't find header file: cm-super-t1.enc
ftp-proxy.pdf: PS2PDF not available
Processing file src/ftp-proxy.sgml
make[1]: Leaving directory 
'/srv/jenkins-slave/workspace/sid-goto-cc-proxy-suite/proxy-suite-1.9.2.4/doc'
dh_installdocs -pftp-proxy-doc ./AUTHORS 
cp: cannot stat 'doc/ftp-proxy.pdf': No such file or directory
dh_installdocs: cp -a doc/ftp-proxy.pdf 
debian/ftp-proxy-doc/usr/share/doc/ftp-proxy-doc returned exit code 1
/usr/share/cdbs/1/rules/debhelper.mk:211: recipe for target 
'binary-install/ftp-proxy-doc' failed
make: *** [binary-install/ftp-proxy-doc] Error 2

It seems the build dependencies need to be adjusted. The full build log is
attached.

Best,
Michael



proxy-suite-build-log.txt.gz
Description: application/gunzip


pgpMN9xLZtR1w.pgp
Description: PGP signature
---End Message---
---BeginMessage---
Source: proxy-suite
Source-Version: 1.9.2.4-10

We believe that the bug you reported is fixed in the latest version of
proxy-suite, 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 750...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Roberto Lumbreras ro...@debian.org (supplier of updated proxy-suite 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 19 Jun 2014 19:02:14 +0200
Source: proxy-suite
Binary: ftp-proxy ftp-proxy-doc
Architecture: source all amd64
Version: 1.9.2.4-10
Distribution: unstable
Urgency: medium
Maintainer: Roberto Lumbreras ro...@debian.org
Changed-By: Roberto Lumbreras ro...@debian.org
Description:
 ftp-proxy  - application level proxy for the FTP protocol
 ftp-proxy-doc - documentation for ftp-proxy
Closes: 485932 750167
Changes:
 proxy-suite (1.9.2.4-10) unstable; urgency=medium
 .
   * Fix FTBFS: added build-dependency on cm-super-minimal. (Closes: #750167)
   * Added missing documentation files. (Closes: #485932)
Checksums-Sha1:
 8894e6989e9a9dd51696aeaf0049c782a1fa3e09 1280 proxy-suite_1.9.2.4-10.dsc
 1e69efd6d5f06b290ea9e3cc3a8fe6f757593730 8948 
proxy-suite_1.9.2.4-10.debian.tar.xz
 a569f0f55e898f2f0acfcae562daa6f53045aaf3 138386 
ftp-proxy-doc_1.9.2.4-10_all.deb
 459a161a07e412b31a7631cb1e54ebe3641c3915 60878 ftp-proxy_1.9.2.4-10_amd64.deb
Checksums-Sha256:
 0c8581f800be70b486c3a27127ea8490176983b619286f823787fddc8ae0bef6 1280 
proxy-suite_1.9.2.4-10.dsc
 031d9de67f555c8d1e751e51a32a4712aab215399acb6a72202f6bdf8107a618 8948 
proxy-suite_1.9.2.4-10.debian.tar.xz
 842e21a4c44dc2693db7a1fa7c11695c3cf585c188c250f90325ee9ac0bd318f 138386 
ftp-proxy-doc_1.9.2.4-10_all.deb
 0dd34f281ea742115a51bd3707ede6808fa88852a23a8ef22ccc1ffd1c36e303 60878 
ftp-proxy_1.9.2.4-10_amd64.deb
Files:
 1dda0ee6e2fa9b92942c8a2ee5777099 138386 doc optional 
ftp-proxy-doc_1.9.2.4-10_all.deb
 d78216d3f57ca68a5253893eab288c58 60878 net optional 
ftp-proxy_1.9.2.4-10_amd64.deb
 23a1692863c19245b1916e345c760afb 1280 net optional proxy-suite_1.9.2.4-10.dsc
 fa455f482e858447bc39c87969a0e114 8948 net optional 
proxy-suite_1.9.2.4-10.debian.tar.xz

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

iD8DBQFToyKxfIEQE/XJcI0RAuZ3AJ9yJ3RQNmXHkPe3qmuDw1eHtPg4ZgCfcido
b+ZaFiQ2DH9AW7h+Y71/+LM=
=Rs2M
-END PGP SIGNATUREEnd Message---


Bug#746906: marked as done (sdcc: ftbfs with GCC-4.9)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 19:57:12 +0200
with message-id 1940798.ce1lq049Ql@fessender
and subject line sdcc: ftbfs with GCC-4.9
has caused the Debian Bug report #746906,
regarding sdcc: ftbfs with GCC-4.9
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.)


-- 
746906: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746906
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:sdcc
Version: 3.3.0+dfsg-1
Severity: important
Tags: sid jessie
User: debian-...@lists.debian.org
Usertags: ftbfs-gcc-4.9

The package fails to build in a test rebuild on at least amd64 with
gcc-4.9/g++-4.9, but succeeds to build with gcc-4.8/g++-4.8. The
severity of this report may be raised before the jessie release.

The full build log can be found at:
http://people.debian.org/~doko/logs/failed-gcc49/sdcc_3.3.0+dfsg-1_unstable_gcc49.log
The last lines of the build log are at the end of this report.

To build with GCC 4.9, either set CC=gcc-4.9 CXX=g++-4.9 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t experimental install g++ 

Common build failures are new warnings resulting in build failures
with -Werror turned on, or new/dropped symbols in Debian symbols
files.  For other C/C++ related build failures see the porting guide
at http://gcc.gnu.org/gcc-4.9/porting_to.html

[...]
bfd.h:529:65: error: right-hand operand of comma expression has no effect 
[-Werror=unused-value]
 #define bfd_set_cacheable(abfd,bool) (((abfd)-cacheable = bool), TRUE)
 ^
opncls.c:257:5: note: in expansion of macro 'bfd_set_cacheable'
 bfd_set_cacheable (nbfd, TRUE);
 ^
libtool: compile:  x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I. 
-I./../include -DHAVE_as_vec -DBINDIR=\/usr/bin\ -D_FORTIFY_SOURCE=2 
-D_FORTIFY_SOURCE=2 -I. -I. -I././support/util -I. -W -Wall -Wstrict-prototypes 
-Wmissing-prototypes -Wshadow -Werror -g -O2 -fstack-protector 
--param=ssp-buffer-size=4 -Wformat -Werror=format-security -MT section.lo -MD 
-MP -MF .deps/section.Tpo -c section.c -o section.o
mv -f .deps/bfd.Tpo .deps/bfd.Plo
mv -f .deps/format.Tpo .deps/format.Plo
/bin/bash ./libtool --tag=CC   --mode=compile x86_64-linux-gnu-gcc 
-DHAVE_CONFIG_H -I. -I. -I. -I./../include  -DHAVE_as_vec  
-DBINDIR='/usr/bin' -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2  -I. -I. 
-I././support/util -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wshadow -Werror -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -MT syms.lo -MD -MP -MF .deps/syms.Tpo -c -o syms.lo 
syms.c
/bin/bash ./libtool --tag=CC   --mode=compile x86_64-linux-gnu-gcc 
-DHAVE_CONFIG_H -I. -I. -I. -I./../include  -DHAVE_as_vec  
-DBINDIR='/usr/bin' -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2  -I. -I. 
-I././support/util -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wshadow -Werror -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -MT targets.lo -MD -MP -MF .deps/targets.Tpo -c -o 
targets.lo -DDEFAULT_VECTOR=as_vec -DSELECT_VECS='as_vec' 
-DSELECT_ARCHITECTURES='bfd_z80_arch' ./targets.c
libtool: compile:  x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I. 
-I./../include -DHAVE_as_vec -DBINDIR=\/usr/bin\ -D_FORTIFY_SOURCE=2 
-D_FORTIFY_SOURCE=2 -I. -I. -I././support/util -I. -W -Wall -Wstrict-prototypes 
-Wmissing-prototypes -Wshadow -Werror -g -O2 -fstack-protector 
--param=ssp-buffer-size=4 -Wformat -Werror=format-security -MT syms.lo -MD -MP 
-MF .deps/syms.Tpo -c syms.c -o syms.o
libtool: compile:  x86_64-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I. -I. 
-I./../include -DHAVE_as_vec -DBINDIR=\/usr/bin\ -D_FORTIFY_SOURCE=2 
-D_FORTIFY_SOURCE=2 -I. -I. -I././support/util -I. -W -Wall -Wstrict-prototypes 
-Wmissing-prototypes -Wshadow -Werror -g -O2 -fstack-protector 
--param=ssp-buffer-size=4 -Wformat -Werror=format-security -MT targets.lo -MD 
-MP -MF .deps/targets.Tpo -c -DDEFAULT_VECTOR=as_vec 
-DSELECT_VECS=as_vec -DSELECT_ARCHITECTURES=bfd_z80_arch ./targets.c 
-o targets.o
mv -f .deps/libbfd.Tpo .deps/libbfd.Plo
/bin/bash ./libtool --tag=CC   --mode=compile x86_64-linux-gnu-gcc 
-DHAVE_CONFIG_H -I. -I. -I. -I./../include  -DHAVE_as_vec  
-DBINDIR='/usr/bin' -D_FORTIFY_SOURCE=2 -D_FORTIFY_SOURCE=2  -I. -I. 
-I././support/util -I. -W -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wshadow -Werror -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat 
-Werror=format-security -MT hash.lo -MD -MP -MF .deps/hash.Tpo -c -o hash.lo 
hash.c
libtool: compile:  

Bug#752078: (no subject)

2014-06-19 Thread Barry Warsaw
I think it's better to prune the files in that directory from the orig
tarball, using a Files-Excluded header in d/copyright.  The reason for this is
that, even though the package does not currently contain the documentation, if
it ever does, it's better to rebuild the docs from scratch using
`--with sphinxdocs` than using the pre-build html.

I'm not sure my 4.1.1-2 upload with this change will be accepted or not.  It
doesn't look like 4.1.1-1 made it to the NEW queue, so I'm guessing it got
rejected although I did not see a notification.  If that's true, then the
un-repacked 4.1.1 orig tarball isn't in the archive, and this new one can get
uploaded.  If it did, then it'll probably be rejected, in which case the next
new upstream should get the proper tarball.

In the meantime, I'm crossing my fingers and giving it a go.  4.1.1-2 will
close this bug.


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



Processed: your mail

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tag 752078 pending
Bug #752078 [zope.deprecation] missing license in debian/copyright
Added tag(s) pending.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
752078: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=752078
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#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed because of perl issues

2014-06-19 Thread Jeremy Kister

On 6/19/2014 6:46 AM, Holger Levsen wrote:

Also your /etc/apt/sources.list would be helpful...



pbx1 cat /etc/apt/sources.list
deb http://ftp.us.debian.org/debian/ squeeze main contrib non-free
deb-src http://ftp.us.debian.org/debian/ squeeze main contrib non-free

deb http://ftp.us.debian.org/debian/ squeeze-updates main contrib non-free
deb-src http://ftp.us.debian.org/debian/ squeeze-updates main contrib 
non-free


deb http://security.debian.org/ squeeze/updates main non-free
deb-src http://security.debian.org/ squeeze/updates main non-free
pbx1

during the upgrade process, i simply s/squeeze/wheezy/


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



Bug#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed because of perl issues

2014-06-19 Thread Jeremy Kister

On 6/19/2014 10:31 AM, Deniz Akcal wrote:

Does running apt-get install -y perl-base (without the quotes) first
make the upgrade work?


The machine was restored via backup.  I can retry this evening.

would you like me to 'apt-get install -y perl-base' after 'apt-get 
upgrade' and before 'apt-get dist-upgrade', or after 'apt-get 
dist-upgrade' breaks ?



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



Bug#584162: ssmtp: Partial loss of message body, sending message to wrong recipicients

2014-06-19 Thread Daniel Richard G.
Well, sSMTP is my dumb forwarder of choice, and as the original
reporter appears to have moved on, and sSMTP has been dropped from
testing due to this bug, and no one else seems to care, it looks like
I'll have to step in.

Attached is a patch against the original 2.64 source that should address
this bug, and hopefully not break anything. An overview of my changes:

* Added code to standarise() to drop the trailing '\r' if the line
  originally ended with \r\n.

* Added a check to header_parse() that effectively converts an \r\n in
  the input into '\n'.

* Added a conditional so that header_parse() doesn't pass the empty
  string to header_save()---a behavior I observed in testing, at the end
  of a header block with \r\n line endings.

* Simplified the last if(in_header) conditional in header_parse(),
  because it erroneously assumes that if in_header == True, then c could
  have some value other than EOF. (See the condition on the previous
  while loop, and the lack of any other way to exit said loop.)

  header_parse() will now properly grab a header if fed a message
  without a body (i.e. no \n\n ending the header block), although this
  code will still drop a header if there is no newline at the end.


Christoph, thank you for your excellent analysis, and the test cases. I
made use of them, and with my changes sSMTP appears to do the right
thing. I hope we can still count you as a Debian user, four years on!

Aníbal, please test this patch and let me know if there are any issues.
If everything looks good, I have two requests:

1. Convert all instances of (char)NULL in the source to '\0'. The former
   is silly, and if you add -Wall -Wextra to CFLAGS, GCC complains about
   it voluminously. (I followed that convention in my patch, but only so
   that this change could be applied across the board.)

2. Integrate all/most of debian/patches/* into the original upstream
   source, and bump the version to = 2.65. It's about time.
--- ssmtp-2.64/ssmtp.c.orig	2009-11-23 04:55:11.0 -0500
+++ ssmtp-2.64/ssmtp.c	2014-06-19 01:21:01.907825184 -0400
@@ -365,6 +365,12 @@
 	if((p = strchr(str, '\n'))) {
 		*p = (char)NULL;
 		*linestart = True;
+
+		/* If the line ended in \r\n, then drop the '\r' too */
+		sl = strlen(str);
+		if(sl = 1  str[sl - 1] == '\r') {
+			str[sl - 1] = (char)NULL;
+		}
 	}
 	return(leadingdot);
 }
@@ -758,6 +764,14 @@
 		}
 		len++;
 
+		if(l == '\r'  c == '\n') {
+			/* Properly handle input that already has \r\n
+			   line endings; see https://bugs.debian.org/584162 */
+			l = (len = 2 ? *(q - 2) : '\n');
+			q--;
+			len--;
+		}
+
 		if(l == '\n') {
 			switch(c) {
 case ' ':
@@ -780,7 +794,9 @@
 		if((q = strrchr(p, '\n'))) {
 			*q = (char)NULL;
 		}
-		header_save(p);
+		if(len  0) {
+			header_save(p);
+		}
 
 		q = p;
 		len = 0;
@@ -790,35 +806,12 @@
 
 		l = c;
 	}
-	if(in_header) {
-		if(l == '\n') {
-			switch(c) {
-case ' ':
-case '\t':
-		/* Must insert '\r' before '\n's embedded in header
-		   fields otherwise qmail won't accept our mail
-		   because a bare '\n' violates some RFC */
-		
-		*(q - 1) = '\r';	/* Replace previous \n with \r */
-		*q++ = '\n';		/* Insert \n */
-		len++;
-		
-		break;
-
-case '\n':
-		in_header = False;
-
-default:
-		*q = (char)NULL;
-		if((q = strrchr(p, '\n'))) {
-			*q = (char)NULL;
-		}
-		header_save(p);
-
-		q = p;
-		len = 0;
-			}
+	if(in_header  l == '\n') {
+		/* Got EOF while reading the header */
+		if((q = strrchr(p, '\n'))) {
+			*q = (char)NULL;
 		}
+		header_save(p);
 	}
 	(void)free(p);
 }


Bug#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed because of perl issues

2014-06-19 Thread Deniz Akcal
Before both of the upgrade commands you mentioned.

 Subject: Bug#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed 
 because of perl issues
 Date: Thu, 19 Jun 2014 14:37:38 -0400
 From: org-debi...@jeremykister.com
 To: 752...@bugs.debian.org
 
 On 6/19/2014 10:31 AM, Deniz Akcal wrote:
  Does running apt-get install -y perl-base (without the quotes) first
  make the upgrade work?
 
 The machine was restored via backup.  I can retry this evening.
 
 would you like me to 'apt-get install -y perl-base' after 'apt-get 
 upgrade' and before 'apt-get dist-upgrade', or after 'apt-get 
 dist-upgrade' breaks ?
 
 
 -- 
 To UNSUBSCRIBE, email to debian-testing-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: https://lists.debian.org/53a32df2.9050...@jeremykister.com
 
  

Bug#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed because of perl issues

2014-06-19 Thread Don Armstrong
Control: severity -1 minor
Control: retitle -1 upgrade from squeeze to wheezy fails because of locally 
installed perl modules in @INC

 Can't locate feature.pm in @INC (@INC contains: /etc/perl 
 /usr/local/lib/perl/5.10.1 /usr/local/share/perl/5.10.1 /usr/lib/perl5 
 /usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 
 /usr/local/lib/site_perl /usr/local/lib/perl/5.10.0 
 /usr/local/share/perl/5.10.0 .) at /usr/local/share/perl/5.10.1/Text/Wrap.pm 
 line 13.
 BEGIN failed--compilation aborted at 
 /usr/local/share/perl/5.10.1/Text/Wrap.pm line 13.
 BEGIN failed--compilation aborted at 
 /usr/local/share/perl/5.10.1/Text/Wrap.pm line 13.
 Compilation failed in require at /usr/share/perl5/Debconf/Template.pm line 10.
 BEGIN failed--compilation aborted at /usr/share/perl5/Debconf/Template.pm 
 line 10.
 Compilation failed in require at /usr/share/perl5/Debconf/Question.pm line 8.
 BEGIN failed--compilation aborted at /usr/share/perl5/Debconf/Question.pm 
 line 8.
 Compilation failed in require at /usr/share/perl5/Debconf/Config.pm line 7.
 BEGIN failed--compilation aborted at /usr/share/perl5/Debconf/Config.pm line 
 7.
 Compilation failed in require at /usrconfigured to not write apport reports

You've installed a local copy of Text::Wrap into /usr/local/share/perl
which is not compatible with perl 5.14.

Either remove it, fix @INC, or otherwise move it out of the search path.

[There's also little point to installing local modules like this; use
the modules that Debian packages.]


-- 
Don Armstrong  http://www.donarmstrong.com

If a nation values anything more than freedom, it will lose its
freedom; and the irony of it is that if it is comfort or money it
values more, it will lose that, too.
 -- W. Somerset Maugham


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



Processed: Re: Bug#752050: upgrade-reports: Upgrade from Squeeze to Wheezy failed because of perl issues

2014-06-19 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 minor
Bug #752050 [upgrade-reports] upgrade-reports: Upgrade from Squeeze to Wheezy 
failed because of perl issues
Severity set to 'minor' from 'grave'
 retitle -1 upgrade from squeeze to wheezy fails because of locally installed 
 perl modules in @INC
Bug #752050 [upgrade-reports] upgrade-reports: Upgrade from Squeeze to Wheezy 
failed because of perl issues
Changed Bug title to 'upgrade from squeeze to wheezy fails because of locally 
installed perl modules in @INC' from 'upgrade-reports: Upgrade from Squeeze to 
Wheezy failed because of perl issues'

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


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



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

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 729054 https://bugs.freedesktop.org/show_bug.cgi?id=71342
Bug #729054 [xserver-xspice] Xspice fails to start (segfaults)
Set Bug forwarded-to-address to 
'https://bugs.freedesktop.org/show_bug.cgi?id=71342'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
729054: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=729054
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#750339: marked as done (libconfig-model-backend-augeas-perl: FTBFS: Tests failures)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 19:33:38 +
with message-id e1wxi5a-0005wo...@franck.debian.org
and subject line Bug#750339: fixed in libconfig-model-backend-augeas-perl 
0.117-1
has caused the Debian Bug report #750339,
regarding libconfig-model-backend-augeas-perl: FTBFS: Tests failures
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.)


-- 
750339: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750339
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: libconfig-model-backend-augeas-perl
Version: 0.116-1
Severity: serious
Tags: jessie sid
User: debian...@lists.debian.org
Usertags: qa-ftbfs-20140601 qa-ftbfs
Justification: FTBFS on amd64

Hi,

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

Relevant part (hopefully):
  debian/rules build
 dh build
dh_testdir
dh_auto_configure
 Note: Augeas integration tests require Augeas library  0.3.3
 
 Created MYMETA.yml and MYMETA.json
 Creating new 'Build' script for 'Config-Model-Backend-Augeas' version '0.116'
dh_auto_build
 Building Config-Model-Backend-Augeas
dh_auto_test
 experience parameter is deprecated at t/test_model.pl line 38.
 2014/06/01 23:10:44 write backend augeas 
 Config::Model::Backend::Augeas::write failed: 
 Config::Model::ObjTreeScanner-new: unexpected parameter: experience at 
 /«PKGBUILDDIR»/blib/lib/Config/Model/Backend/Augeas.pm line 462.
 
 #   Failed test 'check that backup config file wr_root/etc/hosts.augsave was 
 written'
 #   at t/augeas_backend.t line 99.
 
 #   Failed test 'check content of wr_root/etc/hosts'
 #   at t/augeas_backend.t line 108.
 # Structures begin differing at:
 #  $got-[0] = '127.0.0.1 localhost localhost
 # '
 # $expected-[0] = '192.168.0.1 buildbot
 # '
 
 #   Failed test 'Check nb of hosts in Augeas'
 #   at t/augeas_backend.t line 115.
 #  got: '2'
 # expected: '4'
 2014/06/01 23:10:44 write backend augeas 
 Config::Model::Backend::Augeas::write failed: 
 Config::Model::ObjTreeScanner-new: unexpected parameter: experience at 
 /«PKGBUILDDIR»/blib/lib/Config/Model/Backend/Augeas.pm line 462.
 
 #   Failed test 'Check nb of hosts in Augeas after deletion'
 #   at t/augeas_backend.t line 123.
 #  got: '2'
 # expected: '3'
 
 #   Failed test 'check content of wr_root/etc/hosts after deletion of goner'
 #   at t/augeas_backend.t line 127.
 # Structures begin differing at:
 #  $got-[0] = '127.0.0.1 localhost localhost
 # '
 # $expected-[0] = '192.168.0.1 buildbot
 # '
 2014/06/01 23:10:45 write backend augeas 
 Config::Model::Backend::Augeas::write failed: 
 Config::Model::ObjTreeScanner-new: unexpected parameter: experience at 
 /«PKGBUILDDIR»/blib/lib/Config/Model/Backend/Augeas.pm line 462.
 
 #   Failed test 'check that backup config file 
 wr_root/etc/ssh/sshd_config.augsave was written'
 #   at t/augeas_backend.t line 216.
 
 #   Failed test 'check content of wr_root/etc/ssh/sshd_config'
 #   at t/augeas_backend.t line 226.
 # Structures begin differing at:
 #  $got-[2] = 'HostbasedAuthentication no
 # '
 # $expected-[2] = 'HostbasedAuthentication yes
 # '
 2014/06/01 23:10:45 write backend augeas 
 Config::Model::Backend::Augeas::write failed: 
 Config::Model::ObjTreeScanner-new: unexpected parameter: experience at 
 /«PKGBUILDDIR»/blib/lib/Config/Model/Backend/Augeas.pm line 462.
 
 #   Failed test 'check content of wr_root/etc/ssh/sshd_config after Match~1'
 #   at t/augeas_backend.t line 243.
 # Structures begin differing at:
 #  $got-[2] = 'HostbasedAuthentication no
 # '
 # $expected-[2] = 'HostbasedAuthentication yes
 # '
 2014/06/01 23:10:45 write backend augeas 
 Config::Model::Backend::Augeas::write failed: 
 Config::Model::ObjTreeScanner-new: unexpected parameter: experience at 
 /«PKGBUILDDIR»/blib/lib/Config/Model/Backend/Augeas.pm line 462.
 
 #   Failed test 'check content of wr_root/etc/ssh/sshd_config after Match:2 
 ...'
 #   at t/augeas_backend.t line 256.
 # Structures begin differing at:
 #  $got-[2] = 'HostbasedAuthentication no
 # '
 # $expected-[2] = 'HostbasedAuthentication yes
 # '
 2014/06/01 23:10:45 write backend augeas 
 Config::Model::Backend::Augeas::write failed: 
 Config::Model::ObjTreeScanner-new: unexpected parameter: experience at 
 /«PKGBUILDDIR»/blib/lib/Config/Model/Backend/Augeas.pm line 462.
 
 #   Failed test 'check content of wr_root/etc/ssh/sshd_config after Match:2 
 AllowTcpForwarding=yes'
 #   at t/augeas_backend.t line 269.
 # Structures begin 

Bug#752078: marked as done (missing license in debian/copyright)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 19:33:53 +
with message-id e1wxi5p-0005ai...@franck.debian.org
and subject line Bug#752078: fixed in zope.deprecation 4.1.1-2
has caused the Debian Bug report #752078,
regarding missing license in debian/copyright
to be marked as done.

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

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


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

Package: zope.deprecation
Version: 4.1.1-1
Severity: serious
User: alteh...@debian.org
Usertags: ftp
X-Debbugs-CC: ftpmas...@ftp-master.debian.org
thanks

Dear Maintainer,

please add the missing licenses of:
 zope.deprecation-4.1.1/docs/_build/html/_static/*
to debian/copyright.

Thanks!
  Thorsten
---End Message---
---BeginMessage---
Source: zope.deprecation
Source-Version: 4.1.1-2

We believe that the bug you reported is fixed in the latest version of
zope.deprecation, 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 752...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Barry Warsaw ba...@debian.org (supplier of updated zope.deprecation 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 19 Jun 2014 14:34:48 -0400
Source: zope.deprecation
Binary: python-zope.deprecation python3-zope.deprecation
Architecture: source all
Version: 4.1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian/Ubuntu Zope Team 
pkg-zope-develop...@lists.alioth.debian.org
Changed-By: Barry Warsaw ba...@debian.org
Description:
 python-zope.deprecation - Zope Deprecation Infrastructure
 python3-zope.deprecation - Zope Deprecation Infrastructure
Closes: 752078
Changes:
 zope.deprecation (4.1.1-2) unstable; urgency=medium
 .
   * Team upload.
   * debian/copyright: Add Files-Excluded to prune pre-build Sphinx
 artifacts in docs/_build/html/_static from the original tarball.
 Closes: #752078
Checksums-Sha1:
 3e60be34f31b2eb3e4f11de106b5319e533eb9f4 2194 zope.deprecation_4.1.1-2.dsc
 60ed1cf256400576079e97a7ec797405b7c0e784 2972 
zope.deprecation_4.1.1-2.debian.tar.xz
 8c14b20896ee2f82773ab0ee8138691616df4f2d 9136 
python-zope.deprecation_4.1.1-2_all.deb
 20f779bb68fdf67d4ab6823524916a56d84caa65 9140 
python3-zope.deprecation_4.1.1-2_all.deb
Checksums-Sha256:
 c1f059f4f5c6fd26778271576ba0f605b7d38fcb08daec8a59b0c79c43c19e8a 2194 
zope.deprecation_4.1.1-2.dsc
 efd4e608ecf6c7c0e6b34d16370d5c5cda1cd60f8c46861a974a5540de5ed995 2972 
zope.deprecation_4.1.1-2.debian.tar.xz
 912d6c834c6a1852b817ae584a4d60cbb6e2d410807c39089d8afed609ec74b0 9136 
python-zope.deprecation_4.1.1-2_all.deb
 be310eb9b273fe6892a75e3820ccc13562afda60180f45c2a75c5bab44cb61d5 9140 
python3-zope.deprecation_4.1.1-2_all.deb
Files:
 de881bca5ea32b7f78e49d9fb4f6e78e 9136 zope extra 
python-zope.deprecation_4.1.1-2_all.deb
 f196e5a709f6ebd44eb176b5bd790507 9140 zope extra 
python3-zope.deprecation_4.1.1-2_all.deb
 07ef412b73eadf54af843dd037d3ae87 2194 zope extra zope.deprecation_4.1.1-2.dsc
 0b5ce6c8315ce78c231de1429f3713c4 2972 zope extra 
zope.deprecation_4.1.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTozicAAoJEBJutWOnSwa/+p8P/2gH++B4tE73f143o8sbKnI2
D/D+pwMQqL9F9BStwKtWLCMSF+7txU8VicUm90CLjSTxlIJorZPL2LjompzkRZ78
Chk3XwI6oywbMGNg9EakFm0cLyVUjJNyHQWC6O7qUujInAvXB/HmHlAHKm3JaSLs
netzPCI4Hsywqep3MkpWsJKShG9opZMtrnEeESg/hbl7v/vRc0/hqdkZ8oxCOX4u
ey3hPjcPSve2f+XkHYgWtyqq4nZlI8shIh/rPgjvsZiteNcChhWilNqN0KIi54Rr
1/rplmsivr6ntecHRd1jbn5EoUXA6dxTv6YZZNzqpuF+cPrVjwY8AMcY/BdHECzW
HEKS8kn2OCuV98LId1fdRXdj60D5X+inE1LxvB+8eujjAJNTUAtG4oegojwuOqRb
vFZYdSno9viOJYRUzrcNX6Tad9kBYFsQogxxk2vfNhwWMItonOQXDA9IJP/7MWBp
nQtNzWAkhOm9XxiKjYKAiON/dtX88EIJyxBB/lrWJH5bQ0LUmyQ/lPsxyY7yG01n
nPMmUhe7OjIHaT82MpT0a/sSwZsw9Pwe5FgeYXVnN9EhWA9/jW6/GgwI0s82hisQ
5vT9vA13UE6+QRoPPS/uef8uqTSKERknTQDX57lkUeQV/2onV2bYIbdwN7aYm46K
6Ol/wRLkDRjQn9AnmsP1
=bxlI
-END PGP SIGNATUREEnd Message---


Processed: unarchiving 741822

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 unarchive 741822
Bug #741822 {Done: Stefano Rivera stefa...@debian.org} [src:objgraph] 
objgraph: FTBFS: Tests failures
Unarchived Bug 741822
 thanks
Stopping processing here.

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


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



Processed (with 1 errors): forcibly merging 741822 734586

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forcemerge 741822 734586
Bug #741822 {Done: Stefano Rivera stefa...@debian.org} [src:objgraph] 
objgraph: FTBFS: Tests failures
Unable to merge bugs because:
package of #734586 is 'objgraph' not 'src:objgraph'
Failed to forcibly merge 741822: Did not alter merged bugs
Debbugs::Control::set_merged('transcript', 'GLOB(0x34c0520)', 
'requester', 'Stefano Rivera stefa...@debian.org', 'request_addr', 
'cont...@bugs.debian.org', 'request_msgid', 
'1403212053-3117-bts-stefa...@debian.org', 'request_subject', ...) called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 552
eval {...} called at 
/usr/local/lib/site_perl/Debbugs/Control/Service.pm line 551
Debbugs::Control::Service::control_line('line', undef, 'clonebugs', 
'HASH(0x34380b8)', 'limit', 'HASH(0x3437aa0)', 'common_control_options', 
'ARRAY(0x3437ae8)', 'errors', ...) called at /usr/lib/debbugs/service line 474

 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
734586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734586
741822: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741822
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: reassign 734586 to src:objgraph, forcibly merging 741822 734586

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 734586 src:objgraph
Bug #734586 [objgraph] objgraph docs/uncollectable.txt test fails with Python 
3.4
Bug reassigned from package 'objgraph' to 'src:objgraph'.
No longer marked as found in versions 1.7.2-2.
Ignoring request to alter fixed versions of bug #734586 to the same values 
previously set
 forcemerge 741822 734586
Bug #741822 {Done: Stefano Rivera stefa...@debian.org} [src:objgraph] 
objgraph: FTBFS: Tests failures
Bug #734586 [src:objgraph] objgraph docs/uncollectable.txt test fails with 
Python 3.4
Unset Bug forwarded-to-address
Severity set to 'serious' from 'normal'
Marked Bug as done
Marked as fixed in versions objgraph/1.8.0-1.
Marked as found in versions objgraph/1.7.2-2.
Added tag(s) sid, jessie, fixed-upstream, and patch.
Merged 734586 741822
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
734586: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734586
741822: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741822
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#751737: marked as done (Package overwrites files from libssh2-php)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 21:36:11 +
with message-id e1wxk0b-00034k...@franck.debian.org
and subject line Bug#751737: fixed in php-ssh2 0.12-3
has caused the Debian Bug report #751737,
regarding Package overwrites files from libssh2-php
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.)


-- 
751737: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=751737
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: php5-ssh2
Version: 0.12-2
Severity: serious

When upgrading from libssh2-php the package does not conflict on the package and
thus dpkg tries to install libssh2-php and php5-ssh2 at the same time.

Please add a proper stanza to the dependencies to indicate that php5-ssh2
superseeds libssh2-php and upgrade works more smoothly.

Kind regards,
Benny Baumann

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (750, 'experimental'), (700, 
'unstable'), (500, 'oldstable')
Architecture: amd64 (x86_64)

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

Versions of packages php5-ssh2 depends on:
ii  libc6  2.19-1
ii  libssh2-1  1.4.3-3
ii  php-pear   5.6.0~beta4+dfsg-3
ii  php5-common [phpapi-20131226]  5.6.0~beta4+dfsg-3

php5-ssh2 recommends no packages.

php5-ssh2 suggests no packages.

-- no debconf information
---End Message---
---BeginMessage---
Source: php-ssh2
Source-Version: 0.12-3

We believe that the bug you reported is fixed in the latest version of
php-ssh2, 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 751...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mathieu Parent sath...@debian.org (supplier of updated php-ssh2 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 19 Jun 2014 22:06:51 +0200
Source: php-ssh2
Binary: php5-ssh2 libssh2-php
Architecture: source i386 all
Version: 0.12-3
Distribution: unstable
Urgency: medium
Maintainer: Debian PHP PECL Maintainers pkg-php-p...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description:
 libssh2-php - transitional dummy package for php5-ssh2
 php5-ssh2  - ${phppear:summary}
Closes: 750081 751737
Changes:
 php-ssh2 (0.12-3) unstable; urgency=medium
 .
   * Remove excess initialisers (Closes: #750081)
   * php5-ssh2 breaks and replaces previous libssh2-php (Closes: #751737)
Checksums-Sha1:
 f6408c651e72f09a8dfa1cbd923de9567305193f 2075 php-ssh2_0.12-3.dsc
 d3f34ef02fe1a0c2ec3de39f0e7a620d693adf9f 4236 php-ssh2_0.12-3.debian.tar.xz
 fa11f3090ee9409b25869c16bfe13d8e2127c600 31774 php5-ssh2_0.12-3_i386.deb
 b7fa7a00b40c7f48371321afd1922b8e2877f920 3548 libssh2-php_0.12-3_all.deb
Checksums-Sha256:
 e90d0c8bfd16360ab9fd1ae382121d558d5fc8520351f13493e2396596cba874 2075 
php-ssh2_0.12-3.dsc
 c8d8f20635d46d03a21cca54a382028bd280c0f2f261e8264983b68b1cf32bf4 4236 
php-ssh2_0.12-3.debian.tar.xz
 94a13ceea49f0de00b64de30b56163765c9c297bec2fc01cdcda5e5d910fe4f2 31774 
php5-ssh2_0.12-3_i386.deb
 526589e03ef781b061f430f81c636d8a14c41aed29b7e3b09c49797118f5c5d6 3548 
libssh2-php_0.12-3_all.deb
Files:
 004610e0a22bfb508d88fd0f5567d5d1 31774 php extra php5-ssh2_0.12-3_i386.deb
 d6b1c9e1445bd38245ad276e06bb32bc 3548 oldlibs extra libssh2-php_0.12-3_all.deb
 3313aab70f85bf0abf0c1fd04b83cda7 2075 php extra php-ssh2_0.12-3.dsc
 e84334828cfa218fd893114081c7d310 4236 php extra php-ssh2_0.12-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTo0duAAoJEKfHKhx4K4w/N84QAIRdmaqE3ccdzfgEpsKzjtAI
4cyv0zaZ9/+mLIW+26sKnW0nq1WB738QHM+mHXzKfeE7L91ZRk1FCvTMSAA+Jhde
BfJNsn5fCJwu9WwzGYjrgrD4rZd176wr/pfd8+cqEcGJLA7aceAJPwF8r5VUgk7D
yXJyPjbuDqfEaV370TdZAUtP/kkVHW57oD/qJMk2Nclo9poMVJ2DzSihXE/pugfK
P3/7ZboSjwrjReK2uB/zzudy+vlRmUOOeGMx5kYnZnEP2T1KsfGGnT/O4UAtzBca
Te8RBEHLHSQcfDNh5VYl4mSXzDOTBMLn6B/hwiskSt46w0iRSp3mGD7ZU1y91mh2
UZ6kdh4hKZgmQ6HZ8ugVaRIwbUsEgwV3zFCV0cxT9IV7+wLUTsQBuyzu7N+Agzo2
deEjxroonM4g23OQy/Xjpovar8HQEcwCIb0hRwtH6rgS1eYdwMrTjQ+Q+ulQ2D/j

Bug#752047: latter half of Chinese lines now injured suddenly

2014-06-19 Thread 積丹尼 Dan Jacobson
Anyway in all cases the final character of what does show is deformed.
Still displays but is deformed.


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



Bug#738744: marked as done (xserver-xorg-video-qxl: FTBFS on i386)

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 22:04:43 +
with message-id e1wxkrn-0006bg...@franck.debian.org
and subject line Bug#738744: fixed in xserver-xorg-video-qxl 0.1.1-2
has caused the Debian Bug report #738744,
regarding xserver-xorg-video-qxl: FTBFS on i386
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.)


-- 
738744: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738744
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: xserver-xorg-video-qxl
Version: 0.1.1-1
Severity: serious
Justification: fails to build from source (but built successfully in the past)

From a build log on i386:

   CC   spiceqxl_drv_la-spiceqxl_display.lo
 ../../src/spiceqxl_display.c: In function 'spiceqxl_display_monitors_config':
 ../../src/spiceqxl_display.c:353:56: error: cast from pointer to integer of 
 different size [-Werror=pointer-to-int-cast]
  spice_qxl_monitors_config_async(qxl-display_sin, 
 (QXLPHYSICAL)qxl-monitors_config,
 ^
 cc1: some warnings being treated as errors
 make[4]: *** [spiceqxl_drv_la-spiceqxl_display.lo] Error 1

Cheers,
Julien


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Source: xserver-xorg-video-qxl
Source-Version: 0.1.1-2

We believe that the bug you reported is fixed in the latest version of
xserver-xorg-video-qxl, 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 738...@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 
xserver-xorg-video-qxl 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...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 19 Jun 2014 22:03:36 +0200
Source: xserver-xorg-video-qxl
Binary: xserver-xorg-video-qxl xserver-xorg-video-qxl-dbg
Architecture: source amd64
Version: 0.1.1-2
Distribution: sid
Urgency: medium
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description:
 xserver-xorg-video-qxl - X.Org X server -- QXL display driver
 xserver-xorg-video-qxl-dbg - X.Org X server -- QXL display driver (debugging 
symbols)
Closes: 729053 729054 738744
Changes:
 xserver-xorg-video-qxl (0.1.1-2) unstable; urgency=medium
 .
   * Remove Liang Guo and Cyril Brulebois from Uploaders.
   * Back to source format 1.0.
   * Stop building/shipping Xspice (closes: #738744, #729054, #729053)
   * Use verbose build rules.
   * Add patch to fix misdetection of xextproto.
Checksums-Sha1:
 1c43a5e8ac061f53eab8ec5c1d1338e5ff5bcc1d 2352 
xserver-xorg-video-qxl_0.1.1-2.dsc
 1ced22c0d0a73ddaa067d3a225c593f6fdad50ad 556395 
xserver-xorg-video-qxl_0.1.1.orig.tar.gz
 64c4ddd18ca0fcaf63ea4bd0bab6f793d4d81934 5328 
xserver-xorg-video-qxl_0.1.1-2.diff.gz
 79762af573f00b025e512355dcb338870823a40d 125378 
xserver-xorg-video-qxl_0.1.1-2_amd64.deb
 c19d6ec665475e463e640f370f4511ed6b7db6c3 332490 
xserver-xorg-video-qxl-dbg_0.1.1-2_amd64.deb
Checksums-Sha256:
 194013bd1c1fc6c9f0c1250d2b361272fbe7f125a6cb11f3a729202e94cabc2f 2352 
xserver-xorg-video-qxl_0.1.1-2.dsc
 08bdcb13bf6bb928f50649f13a2fae4a81ebc4e86f17e51d597c8ee1dce5c981 556395 
xserver-xorg-video-qxl_0.1.1.orig.tar.gz
 2aaed32cb5f36b2e8976c92d78c107f1cf55402cfcbcdaefd622c3d4d053e522 5328 
xserver-xorg-video-qxl_0.1.1-2.diff.gz
 a211f924ea46336bedec0d366fd321878d83657b828530d711d2c741d0ca7226 125378 
xserver-xorg-video-qxl_0.1.1-2_amd64.deb
 5fe423e6de5fe44b48e9bff51998a6cbaf3cbec621fc0a4f1b618db13d4ce572 332490 
xserver-xorg-video-qxl-dbg_0.1.1-2_amd64.deb
Files:
 ca089f03d0ec9a5889b013b68b22941a 125378 x11 optional 
xserver-xorg-video-qxl_0.1.1-2_amd64.deb
 8993f18533900632ef6fcdc667276e7e 332490 debug extra 
xserver-xorg-video-qxl-dbg_0.1.1-2_amd64.deb
 6f1384bae64f749c7c81d57d4994ea30 2352 x11 optional 
xserver-xorg-video-qxl_0.1.1-2.dsc
 f2d93b5501e4c2691fb1fb1086132ed8 556395 x11 optional 
xserver-xorg-video-qxl_0.1.1.orig.tar.gz
 32c96c4faf788789a0f11f76b63fbdc1 5328 x11 optional 
xserver-xorg-video-qxl_0.1.1-2.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJTo1kUAAoJEDEBgAUJBeQMjAoQAPbd1YWpPbasxIUWIXMaAcCB

Bug#729054: marked as done (Xspice fails to start (segfaults))

2014-06-19 Thread Debian Bug Tracking System
Your message dated Thu, 19 Jun 2014 22:04:43 +
with message-id e1wxkrn-0006ba...@franck.debian.org
and subject line Bug#729054: fixed in xserver-xorg-video-qxl 0.1.1-2
has caused the Debian Bug report #729054,
regarding Xspice fails to start (segfaults)
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.)


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

Package: xserver-xspice
Version: 0.1.1-1
Severity: grave

Dear maintainer,

on my test setup Xspice fails to start completely. See below output  
for details.


If you need any help with this, let me know what is needed to debug this.

Mike


mike@sid:~$ sudo Xspice --auto --port 5900 --disable-ticketing --tls-port 0 :1

X.Org X Server 1.14.3
Release Date: 2013-09-12
X Protocol Version 11, Revision 0
Build Operating System: Linux 3.10-2-amd64 x86_64 Debian
Current Operating System: Linux sid.das-netzwerkteam.de 3.2.0-3-amd64  
#1 SMP Mon Jul 23 02:45:17 UTC 2012 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-3-amd64  
root=UUID=3b38a6e6-4ac2-4925-9acd-9b4020fb1282 ro quiet

Build Date: 05 October 2013  02:04:26PM
xorg-server 2:1.14.3-4 (Julien Cristau jcris...@debian.org)
Current version of pixman: 0.30.2
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(++) Log file: /tmp/Xspice-H528gi.log, Time: Fri Nov  8 10:15:32 2013
(++) Using config file: /tmp/Xspice-H528gi
(==) Using system config directory /usr/share/X11/xorg.conf.d
Initializing built-in extension Generic Event Extension
Initializing built-in extension SHAPE
Initializing built-in extension MIT-SHM
Initializing built-in extension XInputExtension
Initializing built-in extension XTEST
Initializing built-in extension BIG-REQUESTS
Initializing built-in extension SYNC
Initializing built-in extension XKEYBOARD
Initializing built-in extension XC-MISC
Initializing built-in extension SECURITY
Initializing built-in extension XINERAMA
Initializing built-in extension XFIXES
Initializing built-in extension RENDER
Initializing built-in extension RANDR
Initializing built-in extension COMPOSITE
Initializing built-in extension DAMAGE
Initializing built-in extension MIT-SCREEN-SAVER
Initializing built-in extension DOUBLE-BUFFER
Initializing built-in extension RECORD
Initializing built-in extension DPMS
Initializing built-in extension X-Resource
Initializing built-in extension XVideo
Initializing built-in extension XVideo-MotionCompensation
Initializing built-in extension SELinux
Initializing built-in extension XFree86-VidModeExtension
Initializing built-in extension XFree86-DGA
Initializing built-in extension XFree86-DRI
Initializing built-in extension DRI2
Loading extension GLX
resizing surface0 to 16777216
memory space from 0x7f39244b0010 to 0x7f392b4ad010
memory space from 0x7f391b4af010 to 0x7f39234af010
resizing surface0 to 16777216
memory space from 0x7f39244b0010 to 0x7f392b4ad010
memory space from 0x7f391b4af010 to 0x7f39234af010
(EE)
(EE) Backtrace:
(EE) 0: /usr/bin/Xorg (xorg_backtrace+0x3d) [0x7f39301df30d]
(EE) 1: /usr/bin/Xorg (0x7f393003e000+0x1a5079) [0x7f39301e3079]
(EE) 2: /lib/x86_64-linux-gnu/libpthread.so.0 (0x7f392f13c000+0xf210)  
[0x7f392f14b210]
(EE) 3: /usr/lib/x86_64-linux-gnu/libspice-server.so.1  
(0x7f392c486000+0x20ccc) [0x7f392c4a6ccc]
(EE) 4: /usr/lib/x86_64-linux-gnu/libspice-server.so.1  
(0x7f392c486000+0x2106c) [0x7f392c4a706c]
(EE) 5: /usr/lib/xorg/modules/drivers/spiceqxl_drv.so  
(0x7f392c7a3000+0x9460) [0x7f392c7ac460]
(EE) 6: /usr/lib/x86_64-linux-gnu/libspice-server.so.1  
(0x7f392c486000+0x22d7e) [0x7f392c4a8d7e]
(EE) 7: /usr/lib/x86_64-linux-gnu/libspice-server.so.1  
(spice_server_add_interface+0x3a6) [0x7f392c4cf1f6]
(EE) 8: /usr/lib/xorg/modules/drivers/spiceqxl_drv.so  
(0x7f392c7a3000+0xb8ab) [0x7f392c7ae8ab]

(EE) 9: /usr/bin/Xorg (AddScreen+0x71) [0x7f3930092fe1]
(EE) 10: /usr/bin/Xorg (InitOutput+0x3df) [0x7f39300d34bf]
(EE) 11: /usr/bin/Xorg (0x7f393003e000+0x440db) [0x7f39300820db]
(EE) 12: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xf5)  
[0x7f392dd95995]

(EE) 13: /usr/bin/Xorg (0x7f393003e000+0x4460f) [0x7f393008260f]
(EE)
(EE) Segmentation fault at address 0xd8
(EE)
Fatal server error:
(EE) Caught signal 11 (Segmentation fault). Server aborting
(EE)
(EE)
Please consult the The X.Org Foundation 

Bug#752107: libguestfs: FTBFS on mips

2014-06-19 Thread Emilio Pozuelo Monfort
On 19/06/14 18:54, Emilio Pozuelo Monfort wrote:
 On 19/06/14 18:45, Scott Kitterman wrote:
 Source: libguestfs
 Version: 1:1.26.3
 Severity: serious
 Justification: fails to build from source (but built successfully in the 
 past)

 After the recent binutils fix, it still fails on mips and mipsel.
 
 The chroots had the old binutils installed. I'm giving it back with a 
 dependency
 on the new binutils so it gets updated. Let's see how it goes.

The segfaults are gone as expected, but it failed with a different error:

supermin: build: 11964 files, after removing unreadable files
supermin: build: 7930 files, after matching excludefiles
supermin: build: 7938 files, after adding hostfiles
supermin: build: 7940 files, after munging
supermin: kernel: picked kernel vmlinux-3.14-1-4kc-malta
supermin: kernel: picked modules path /lib/modules/3.14-1-4kc-malta
supermin: kernel: kernel_version 3.14-1-4kc-malta
supermin: kernel: modules /lib/modules/3.14-1-4kc-malta
supermin: ext2: creating empty ext2 filesystem
'/«PKGBUILDDIR»/debian/build-default/tmp/.guestfs-2952/appliance.d.4spykqxr/root'
Could not open
/«PKGBUILDDIR»/debian/build-default/tmp/.guestfs-2952/appliance.d.4spykqxr/root:
Value too large for defined data type
supermin: /sbin/mke2fs -t ext2 -Fq
'/«PKGBUILDDIR»/debian/build-default/tmp/.guestfs-2952/appliance.d.4spykqxr/root':
command failed, see earlier errors
libguestfs: error: /usr/bin/supermin exited with error status 1, see debug
messages above
libguestfs-test-tool: failed to launch appliance
libguestfs: closing guestfs handle 0xa63e98 (state 0)
libguestfs: command: run: rm
libguestfs: command: run: \ -rf
/«PKGBUILDDIR»/debian/build-default/tmp/libguestfsSIzt24
make[2]: *** [quickcheck] Error 1

Cheers,
Emilio


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



Bug#269703: NMU pending

2014-06-19 Thread Axel Beckert
Hi,

Klaus Ethgen wrote:
 here is the diff I prepared for NMU upload. Axel Beckert will be so kind
 and sponsor this upload later on.

Here's the real debdiff between the current package and the soon to be
uploaded NMU:

diff -u funny-manpages-1.3/debian/changelog funny-manpages-1.3/debian/changelog
--- funny-manpages-1.3/debian/changelog
+++ funny-manpages-1.3/debian/changelog
@@ -1,3 +1,11 @@
+funny-manpages (1.3-5.1) unstable; urgency=medium
+
+  * Non-maintainer upload.
+  * Moved lintian overwrite to package named file. (Thanks to Stephen Rueger)
+(Closes: #269703) (Closes: #752048)
+
+ -- Klaus Ethgen kl...@ethgen.de  Thu, 19 Jun 2014 09:26:15 +0100
+
 funny-manpages (1.3-5) unstable; urgency=low
 
   * Added lintian override to remove reports of missing manpage for woman (as
diff -u funny-manpages-1.3/debian/rules funny-manpages-1.3/debian/rules
--- funny-manpages-1.3/debian/rules
+++ funny-manpages-1.3/debian/rules
@@ -46,7 +46,7 @@
 #  $(MAKE) install DESTDIR=`pwd`/debian/tmp
ln -s grope.1fun.gz 
debian/funny-manpages/usr/share/man/man1/egrope.1fun.gz
ln -s grope.1fun.gz 
debian/funny-manpages/usr/share/man/man1/fgrope.1fun.gz
-   cp debian/lintian 
debian/funny-manpages/usr/share/lintian/overrides/$(package)
+   cp debian/lintian 
debian/funny-manpages/usr/share/lintian/overrides/funny-manpages
 
 
 # Build architecture-independent files here.

This upload doesn't fix #737395 which IMHO is nothing an NMU can fix
easily. The main goal and reason for the NMU is to regain
co-installability with lintian.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


signature.asc
Description: Digital signature


Bug#752047: latter half of Chinese lines now injured suddenly

2014-06-19 Thread Thomas Dickey
On Fri, Jun 20, 2014 at 05:38:13AM +0800, 積丹尼 Dan Jacobson wrote:
 Anyway in all cases the final character of what does show is deformed.
 Still displays but is deformed.

I isolated a cause for the problem that I was able to reproduce, and will
be uploading #308...

-- 
Thomas E. Dickey dic...@invisible-island.net
http://invisible-island.net
ftp://invisible-island.net


signature.asc
Description: Digital signature


Bug#269703: NMU pending

2014-06-19 Thread Axel Beckert
Hi,

Axel Beckert wrote:
 Here's the real debdiff between the current package and the soon to be
 uploaded NMU:

I've uploaded the NMU to DELAYED/2.

I would have uploaded it to unstable directly, but since there are
still several issues around the override whose file name the NMU
fixes, I wanted others to give the chance to object:

 + cp debian/lintian 
 debian/funny-manpages/usr/share/lintian/overrides/funny-manpages

The installed override is irrelevant:

I: funny-manpages: unused-override link-to-undocumented-manpage 
usr/share/man/man6/woman.6fun.gz
W: funny-manpages source: dh_undocumented-is-obsolete line 70

Because the previous upload, which added this lintian override
actually removed /usr/share/man/man6/woman.6fun.gz because the back
then newly deprecated dh_undocumented which was used to install the
symlink became a no-op and woman.6fun.gz no more got installed despite
there's now a lintian override for it. *sigh* See also
https://bugs.debian.org/358276

So there are two ways to fix that dilemma: Reinclude the woman.6fun.gz
symlink manually (instead of using dh_undocumented) after 10 years and
keep the override -- or remove the override.

But that's nothing an NMU should decide. So I'm fine with Klaus' NMU
which just fixes the bare minimum -- and uploaded it.

Regards, Axel
-- 
 ,''`.  |  Axel Beckert a...@debian.org, http://people.debian.org/~abe/
: :' :  |  Debian Developer, ftp.ch.debian.org Admin
`. `'   |  1024D: F067 EA27 26B9 C3FC 1486  202E C09E 1D89 9593 0EDE
  `-|  4096R: 2517 B724 C5F6 CA99 5329  6E61 2FF9 CD59 6126 16B5


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



Processed: severity of 749993 is serious

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # blocks the on-going wxwidgets3.0 transition
 severity 749993 serious
Bug #749993 [src:multiget] multiget: Please update to use wxwidgets3.0
Severity set to 'serious' from 'important'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
749993: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749993
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: severity of 749870 is serious

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # blocks the on-going wxwidgets3.0 transition
 severity 749870 serious
Bug #749870 [objcryst-fox] objcryst-fox: Please update to use wxwidgets3.0
Severity set to 'serious' from 'normal'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
749870: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749870
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: severity of 750087 is serious

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # blocks the on-going wxwidgets3.0 transition
 severity 750087 serious
Bug #750087 [src:plee-the-bear] plee-the-bear: Please update to use wxwidgets3.0
Severity set to 'serious' from 'important'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750087: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750087
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: severity of 750084 is serious

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # blocks the on-going wxwidgets3.0 transition
 severity 750084 serious
Bug #750084 [trustedqsl] trustedqsl: Please update to use wxwidgets3.0
Severity set to 'serious' from 'important'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
750084: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750084
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: severity of 749978 is serious

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # blocks the on-going wxwidgets3.0 transition
 severity 749978 serious
Bug #749978 [src:guayadeque] guayadeque: Please update to use wxwidgets3.0
Severity set to 'serious' from 'important'
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
749978: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=749978
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: severity of 749976 is serious

2014-06-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # blocks the on-going wxwidgets3.0 transition
 severity 749976 serious
Bug #749976 [src:codelite] codelite: Please update to use wxwidgets3.0
Severity set to 'serious' from 'important'
 thanks
Stopping processing here.

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


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



  1   2   >