Processed: fixed 783601 in 0.6.6-1

2015-05-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 fixed 783601 0.6.6-1
Bug #783601 {Done: Philipp Kern pk...@debian.org} [libinfinity] gobby 
silently accepts expired certificates
There is no source info for the package 'libinfinity' at version '0.6.6-1' with 
architecture ''
Unable to make a source version for version '0.6.6-1'
Marked as fixed in versions 0.6.6-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
783601: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783601
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#786661: apt-cacher: Does not work in inetd mode - fails to create /var/run/apt-cacher

2015-05-24 Thread Robert Luberda
Package: apt-cacher
Version: 1.7.10
Severity: serious
Justification: Policy 9.1.4

In inetd mode apt-cacher is run as www-data user, who does not
have permission to create /var/run/apt-cacher directory. This
makes apt-cacher die() in /usr/share/apt-cacher/lib/apt-cacher.pl:429:

foreach my $dir (@dir) {
if (!-d $dir) {
warn Info: $dir missing. Doing mkdir -p $dir\n;
File::Path::make_path($dir, {user = $uid,
 group = $gid}) || die Unable to 
create $dir: $!;
}

Debian Policy 9.1.4 suggests that the directory should be created via
init script instead:

  The directory /run is cleared at boot, normally by being a mount point
  for a temporary file system. Packages therefore must not assume that any
  files or directories under /run other than /run/lock exist unless the
  package has arranged to create those files or directories since the last
  reboot. Normally, this is done by the package via an init script. See
  Writing the scripts, Section 9.3.2 for more information.

  Packages must not include files or directories under /run, or under the
  older /var/run and /var/lock paths. The latter paths will normally be
  symlinks or other redirections to /run for backwards compatibility. 


Regards,
robert

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

Kernel: Linux 3.16-3-686-pae (SMP w/1 CPU core)
Locale: LANG=pl_PL.UTF-8, LC_CTYPE=pl_PL.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages apt-cacher depends on:
ii  debconf [debconf-2.0]  1.5.56
ii  ed 1.10-2
ii  libdpkg-perl   1.17.25
ii  libfilesys-df-perl 0.92-5+b1
ii  libfreezethaw-perl 0.5001-1
ii  libio-interface-perl   1.07-2+b1
ii  libipc-shareable-perl  0.61-1
ii  libnetaddr-ip-perl 4.075+dfsg-1+b1
ii  libsys-syscall-perl0.25-2
ii  libwww-curl-perl   4.17-1+b1
ii  libwww-perl6.08-1
ii  lsb-base   4.1+Debian13+nmu1
ii  perl   5.20.2-6
ii  ucf3.0030
ii  update-inetd   4.43

Versions of packages apt-cacher recommends:
ii  libberkeleydb-perl  0.55-1

Versions of packages apt-cacher suggests:
ii  libio-socket-inet6-perl  2.72-1

-- Configuration Files:
/etc/apt-cacher/apache.conf changed [not included]
/etc/apt-cacher/apt-cacher.conf changed [not included]
/etc/cron.d/apt-cacher changed [not included]
/etc/default/apt-cacher afc7a4b065275465c1eeb5a09c985bde [Errno 2] Nie ma 
takiego pliku ani katalogu: u'/etc/default/apt-cacher 
afc7a4b065275465c1eeb5a09c985bde'

-- debconf information:
* apt-cacher/mode: inetd


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



Bug#786661: apt-cacher: Does not work in inetd mode - fails to create /var/run/apt-cacher

2015-05-24 Thread Mark Hindley
On Sun, May 24, 2015 at 11:27:09AM +0200, Robert Luberda wrote:
 Package: apt-cacher
 Version: 1.7.10
 Severity: serious
 Justification: Policy 9.1.4
 
 In inetd mode apt-cacher is run as www-data user, who does not
 have permission to create /var/run/apt-cacher directory. This
 makes apt-cacher die() in /usr/share/apt-cacher/lib/apt-cacher.pl:429:

Thanks.

Yes, I had already noticed this. I already had a fix queued which is to fallback
to /tmp/apt-cacher if /var/run is not writable (inetd or CGI mode).

I think this might have been the underlying cause of bug #760141 as well.

Try this:


diff --git a/lib/apt-cacher.pl b/lib/apt-cacher.pl
index ff56a08..d8524cc 100755
--- a/lib/apt-cacher.pl
+++ b/lib/apt-cacher.pl
@@ -18,6 +18,7 @@ use IO::Uncompress::AnyUncompress qw($AnyUncompressError);
 use Module::Load::Conditional;
 use File::Spec;
 use File::Path ();
+use List::Util;
 use Carp::Always;
 use Carp;
 our $cfg;
@@ -53,7 +54,7 @@ sub read_config {
  generate_reports = 1,
  group = eval {my $g = $); $g =~ s/\s.*$//; $g},
  http_proxy = '',
- libcurl_socket = '/var/run/apt-cacher/libcurl.socket',
+ libcurl_socket = (List::Util::first { -w || -w 
(File::Spec-splitpath($_))[1] } glob('{/var/run,/tmp}/apt-cacher')) . 
'/libcurl.socket',
  limit = 0,
  limit_global = 0,
  log_dir = '/var/log/apt-cacher',


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



Bug#786673: FTBFS: Package libbase58 was not found in the pkg-config search path

2015-05-24 Thread Jonathan Wiltshire
Package: bfgminer
Version: 4.7.0+dfsg-2
Severity: serious
Justification: FTBFS, but did so in the past

Hi,

A binary-only rebuild of bfgminer for the libblkmaker transition failed to
build.

Relevant part of the build log:

configure:11948: checking for libblkmaker
configure:11955: $PKG_CONFIG --exists --print-errors libblkmaker_jansson-0.1
Package libbase58 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libbase58.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libbase58', required by 'libblkmaker_jansson-0.1', not found
configure:11958: $? = 1
configure:11972: $PKG_CONFIG --exists --print-errors libblkmaker_jansson-0.1
Package libbase58 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libbase58.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libbase58', required by 'libblkmaker_jansson-0.1', not found
configure:11975: $? = 1
configure:11989: result: no
Package 'libbase58', required by 'libblkmaker_jansson-0.1', not found
configure:12006: error: Could not find system libblkmaker


This seems to be because libbase58-0 does not contain a .pc file, so pkg-config
fails to find it when required as a dependency of libblkmaker.

To confirm this I created a local libbase58.pc file and the build succeeded.

I'm not sure if this is a bug in libbase58 for not carrying a .pc file, or in
libblkmaker which grew the dependency on it, or bfgminer for failing when
pkg-config fails. Please double-check my diagnosis and reassign as appropriate.

Thanks.

-- System Information:
Debian Release: 8.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'proposed-updates'), (500, 'unstable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)


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



Processed: reassign 783601 to libinfinity

2015-05-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 783601 libinfinity
Bug #783601 {Done: Philipp Kern pk...@debian.org} [gobby] gobby silently 
accepts expired certificates
Bug reassigned from package 'gobby' to 'libinfinity'.
No longer marked as found in versions gobby-infinote/0.5.0-4.
No longer marked as fixed in versions libinfinity/0.6.6-1.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
783601: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783601
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#786667: marked as done (libcatalyst-plugin-authentication-credential-openid-perl: FTBFS: Bareword use_test_base not allowed)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 11:19:09 +
with message-id e1ywtvx-0003dg...@franck.debian.org
and subject line Bug#786667: fixed in 
libcatalyst-plugin-authentication-credential-openid-perl 0.03+rp-3
has caused the Debian Bug report #786667,
regarding libcatalyst-plugin-authentication-credential-openid-perl: FTBFS: 
Bareword use_test_base not allowed
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.)


-- 
786667: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786667
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libcatalyst-plugin-authentication-credential-openid-perl
Version: 0.03+rp-2
Severity: serious
User: debian-p...@lists.debian.org
Usertags: bcn2015

As noticed by the reproducible builds team, this package fails to
build on current sid.

  perl Makefile.PL INSTALLDIRS=vendor
  Bareword use_test_base not allowed while strict subs in use at 
Makefile.PL line 10.
  Execution of Makefile.PL aborted due to compilation errors.
  include 
/«BUILDDIR»/libcatalyst-plugin-authentication-credential-openid-perl-0.03+rp/inc/Module/Install.pm
  dh_auto_configure: perl Makefile.PL INSTALLDIRS=vendor returned exit code 255
  make: *** [build] Error 2
  debian/rules:4: recipe for target 'build' failed
 
-- 
Niko Tyni   nt...@debian.org
---End Message---
---BeginMessage---
Source: libcatalyst-plugin-authentication-credential-openid-perl
Source-Version: 0.03+rp-3

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

Debian distribution maintenance software
pp.
gregor herrmann gre...@debian.org (supplier of updated 
libcatalyst-plugin-authentication-credential-openid-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: SHA512

Format: 1.8
Date: Sun, 24 May 2015 12:58:25 +0200
Source: libcatalyst-plugin-authentication-credential-openid-perl
Binary: libcatalyst-plugin-authentication-credential-openid-perl
Architecture: source all
Version: 0.03+rp-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description:
 libcatalyst-plugin-authentication-credential-openid-perl - OpenID credential 
for Catalyst::Auth framework
Closes: 786667
Changes:
 libcatalyst-plugin-authentication-credential-openid-perl (0.03+rp-3) unstable; 
urgency=medium
 .
   * Team upload.
 .
   [ Salvatore Bonaccorso ]
   * Update Vcs-Browser URL to cgit web frontend
 .
   [ gregor herrmann ]
   * Add patch to fix Makefile.PL breakage. (Closes: #786667)
   * Declare compliance with Debian Policy 3.9.6.
   * Mark package as autopkgtest-able.
Checksums-Sha1:
 fc7df07d027481fc1b170c1590cd0eb768540851 2800 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3.dsc
 d088c5fa536d0a68d49606f024ba9c98a7df9054 2364 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3.debian.tar.xz
 4fd4c4dbf74e0e99f4f5d9e00ceea93e0b70261a 8440 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3_all.deb
Checksums-Sha256:
 a8e2f5b39056403a999a1d5dffddce099bd1eb53359d65ce8ae5279c96741043 2800 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3.dsc
 e00d128d2bd0abb2c7b8bc23098fe10ed1fb9928d499429ea90a70811adb1bfe 2364 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3.debian.tar.xz
 a324d16382bdd318d665542967e80602e0ae69a0e2a6cbd57e2b6d1e014d5286 8440 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3_all.deb
Files:
 f24d4a1ec41a9431b139b44cc2997b2c 2800 perl optional 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3.dsc
 2c68e940c521c2b905a54c4eebe2d699 2364 perl optional 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3.debian.tar.xz
 f07bc1568ab3fdbf9b9344569df5bdaa 8440 perl optional 
libcatalyst-plugin-authentication-credential-openid-perl_0.03+rp-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJVYa77XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w

Bug#785557: perl: FTBFS on i386 and amd64: itimer problems on buildds?

2015-05-24 Thread Niko Tyni
On Sun, May 24, 2015 at 02:55:00PM +0800, Paul Wise wrote:
 On Sat, 2015-05-23 at 19:10 +0200, Dominic Hargreaves wrote:
 
  This is rather strange; any ideas from DSA?
 
 The underlying hosts do not have the same issue.
 
 All of the guests use the same virtual CPU version/flags.
 
 All of the guests use the same Linux kernel version.

Thanks for the update.

 I guess diving into the Linux implementation of times(2) for clues would
 be the next step for figuring out what the issue is here.

I'm taking the kernel maintainers in the loop. The status here is that
times(2) seems to be misbehaving on some i386 and amd64 debian.org virtual
hosts running jessie (under ganeti/qemu, with jessie on the underlying
hosts too). These hosts include at least barriere and x86-grnet-01.

The misbehaviour is that user time stays at zero all the time, as seen
for example with 'time yes'. This is making perl fail to build from
source due to test failures, and I'd expect it to affect other things too.

Any help is appreciated.
-- 
Niko Tyni   nt...@debian.org


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



Bug#786667: libcatalyst-plugin-authentication-credential-openid-perl: FTBFS: Bareword use_test_base not allowed

2015-05-24 Thread Niko Tyni
Package: libcatalyst-plugin-authentication-credential-openid-perl
Version: 0.03+rp-2
Severity: serious
User: debian-p...@lists.debian.org
Usertags: bcn2015

As noticed by the reproducible builds team, this package fails to
build on current sid.

  perl Makefile.PL INSTALLDIRS=vendor
  Bareword use_test_base not allowed while strict subs in use at 
Makefile.PL line 10.
  Execution of Makefile.PL aborted due to compilation errors.
  include 
/«BUILDDIR»/libcatalyst-plugin-authentication-credential-openid-perl-0.03+rp/inc/Module/Install.pm
  dh_auto_configure: perl Makefile.PL INSTALLDIRS=vendor returned exit code 255
  make: *** [build] Error 2
  debian/rules:4: recipe for target 'build' failed
 
-- 
Niko Tyni   nt...@debian.org


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



Bug#784092: marked as done (open-iscsi: udebs for some archs completely empty)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 13:32:15 +
with message-id e1yww0l-0002ll...@franck.debian.org
and subject line Bug#784092: fixed in open-iscsi 2.0.873+git0.3b4b4500-8+deb8u1
has caused the Debian Bug report #784092,
regarding open-iscsi: udebs for some archs completely 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.)


-- 
784092: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=784092
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: open-iscsi
Version: 2.0.873+git0.3b4b4500-8

(I'm reporting this to keep track of the issue. I've found this by
chance while improving the packaging.)

udebs are currently only built for select architectures. Unfortunately,
there are two separate lists that have gotten out of sync.

The first list is in debian/control and tells Debian's build tools for
which architectures the udeb should be built at all. The list of
architectures there is:

amd64 arm64 i386 ia64 mips mipsel powerpc s390x ppc64el ppc64 armhf

The second list is in debian/rules. It is used to make the
determination whether to populate the udeb or not. That list only
contains the following architectures:

amd64 arm64 i386 ia64 mips mipsel powerpc

This means that for the following 4 architectures the udeb is built but
never populated during build: s390x ppc64el ppc64 armhf

You can see that if you look at the package sizes for different
architectures:
https://packages.debian.org/unstable/open-iscsi-udeb
Most udebs are a few 100 K large, on those 4 archictectures they are
less than 1 K large (which is probably just useless metadata).

@Ritesh:

I've already fixed this in my local packaging (will push to git on
alioth soon), where I have gotten rid of the separate list in
debian/rules (making it impossible for the bug to resurface), but two
questions remain for me:

 1. I think we should ask the release team to make a stable update for
Jessie's first point release, because this is really bad. The
installer won't be able to provide iSCSI on those 4 architectures
at all.

If you agree, we should do an upload to unstable first with my
packaging changes that also fix the bug (we need to fix it in
unstable first before a PU will be accepted) and then prepare a
targeted fix for Jessie (by just adding the missing archs to
debian/rules). Normally I would not have suggested an unstable
upload so soon already (I would have liked to have more changes in
git beforehand), but this bug seems rather nasty to me.

So if you are onboard, I'll run gbp dch on just my packaging
changes so far in unstable so that a finished -9 package is in git.
You can then do an unstable upload, I'll prepare a targeted upload
for Jessie, push that into git, ask the release team for approval
(which my guess is they'll grant for this type of bug) and then you
could upload the specifically fixed version to jessie-p-u.

 2. Is there a reason why the udeb is not Architecture: any instead of
the specific ones? I mean, the binaries are the same ones as in the
normal deb package (no separate build), so I don't see why one
needs this in the first place? Is this perhaps a relic from the
time where the package still built kernel modules?

Because I'd really like to get rid of the specific architecture
list in general, that will reduce the maintenance burden in the
long run - so ideally I'd change that to any or linux-any or so.

Thoughts?

Christian
---End Message---
---BeginMessage---
Source: open-iscsi
Source-Version: 2.0.873+git0.3b4b4500-8+deb8u1

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

Debian distribution maintenance software
pp.
Ritesh Raj Sarraf r...@debian.org (supplier of updated open-iscsi 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: Wed, 13 May 2015 20:01:02 +0200
Source: open-iscsi
Binary: open-iscsi open-iscsi-udeb
Architecture: source amd64
Version: 2.0.873+git0.3b4b4500-8+deb8u1
Distribution: stable
Urgency: medium
Maintainer: 

Bug#783082: marked as done (video players using libav crash with 'illegal instruction' on i586)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 13:32:10 +
with message-id e1yww0g-0002jh...@franck.debian.org
and subject line Bug#783082: fixed in libav 6:11.3-1+deb8u1
has caused the Debian Bug report #783082,
regarding video players using libav crash with 'illegal instruction' on i586
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.)


-- 
783082: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783082
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: src:linux
Version: 3.16.7-ckt9-2
Severity: critical
Justification: breaks unrelated software

Dear Maintainer,

in advance:
I'm aware that the kernel is most likely not the correct package for this 
report. But with respect to the intended Jessie release date and because I 
trust you are much more qualified to track this down than I am I file this as 
some general 'architecture bug'.
Please feel free to re-assign, downgrade or ignore this matter alltogether if 
you think 'video' is of no concern in i586 anyway.

I recently dist-upgraded a PC with an AMD K6-2 CPU and found that video players 
(mplayer2, vlc) crash with an 'illegal instruction' message when trying to play 
a video. Web browsers (midori (from Wheezy), qupzilla, xombrero) also crash 
with the same message when trying to load a multimedia-heavy website (e.g. 
youtube).
I also verified this on another computer with an Intel Pentium MMX CPU and with 
a LinuxBBQ 'Popcorn Lite' Live CD, which is mostly a Sid Live CD from September 
2014 running an i486 kernel. [1]
This problem might or might not be similar to bug #742154.

To reproduce this, install Jessie on any i586 hardware (note: installing the 
i586 kernel on i686 hardware will not reveal this problem), install one of the 
video players mentioned above and try to play a video. The player window will 
appear and the program will crash once the first image should be displayed.
Example for vlc:

$ vlc bigbuckbunny240p.flv
VLC media player 2.2.0-rc2 Weatherwax (revision 2.2.0-rc1-118-g22fda39)
[08b4c1b8] pulse audio output error: PulseAudio server connection failure: 
Connection refused
[08ab48f8] core libvlc: VLC wird mit dem Standard-Interface ausgeführt. 
Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
Failed to open VDPAU backend libvdpau_r200.so: Kann die Shared-Object-Datei 
nicht öffnen: Datei oder Verzeichnis nicht gefunden
Ungültiger Maschinenbefehl


Example for mplayer2 is here [2].


Alternatively install one of the browsers I mentioned and surf to youtube.com.
The browser window will start, large parts of the website will be loaded and 
displayed and once video images are or should be displayed (depending on 
browser), the brower will crash. No video has to actually be played (nor can 
it).
Example for qupzilla:

$ qupzilla youtube.com
QupZilla: 0 extensions loaded
Ungültiger Maschinenbefehl


For completeness /proc/cpuinfo [3] for the AMD K6-2 and /proc/cpuinfo and lspci 
-v for the Pentium MMX [4].
I opened a thread for this in the unofficial German Debianforum [5], up to now 
to no avail.


[1] http://linuxbbq.org/
[2] https://debianforum.de/forum/pastebin.php?mode=views=38467
[3] https://debianforum.de/forum/pastebin.php?mode=views=38472
[4] https://debianforum.de/forum/pastebin.php?mode=views=38471
[5] https://debianforum.de/forum/viewtopic.php?f=13t=154969


-- Package-specific info:
** Version:
Linux version 3.16.0-4-586 (debian-ker...@lists.debian.org) (gcc version 4.8.4 
(Debian 4.8.4-1) ) #1 Debian 3.16.7-ckt9-2 (2015-04-13)

** Command line:
BOOT_IMAGE=/boot/vmlinuz-3.16.0-4-586 
root=UUID=b936e1d7-6fb6-44ce-a4c5-9603100f15a1 ro quiet

** Not tainted

** Kernel log:
[6.212359] sd 1:0:0:0: [sdb] 16841664 512-byte logical blocks: (8.62 
GB/8.03 GiB)
[6.213594] sd 1:0:0:0: [sdb] Write Protect is off
[6.213621] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[6.214106] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, 
doesn't support DPO or FUA
[6.223536] sr1: scsi3-mmc drive: 32x/32x writer cd/rw xa/form2 cdda tray
[6.225713] sr 1:0:1:0: Attached scsi CD-ROM sr1
[6.248276]  sdb: sdb1
[6.261562] sd 0:0:0:0: Attached scsi generic sg0 type 0
[6.262232]  sda: sda1 sda2
[6.266956] sd 0:0:0:0: [sda] Attached SCSI disk
[6.267071] sd 1:0:0:0: [sdb] Attached SCSI disk
[6.271222] sr 0:0:1:0: Attached scsi generic sg1 type 5
[6.274027] sd 1:0:0:0: Attached scsi generic sg2 type 0
[6.277511] sr 1:0:1:0: Attached scsi generic sg3 type 5
[6.509067] ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
[6.509166] ata1.00: BMDMA stat 0x65
[

Bug#785778: marked as done (ipsec-tools: CVE-2015-4047: null pointer dereference crash in racoon)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 13:32:35 +
with message-id e1yww15-0002pt...@franck.debian.org
and subject line Bug#785778: fixed in ipsec-tools 1:0.8.0-14+deb7u1
has caused the Debian Bug report #785778,
regarding ipsec-tools: CVE-2015-4047: null pointer dereference crash in racoon
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.)


-- 
785778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785778
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: ipsec-tools
Version: 1:0.8.0-14
Severity: grave
Tags: security upstream

Hi

Marked as severity grave as this could lead to denial of service, see
the following for details:

http://www.openwall.com/lists/oss-security/2015/05/20/1

No CVE is assigned yet (will update the bug once assigned).

Regards,
Salvatore
---End Message---
---BeginMessage---
Source: ipsec-tools
Source-Version: 1:0.8.0-14+deb7u1

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

Debian distribution maintenance software
pp.
Salvatore Bonaccorso car...@debian.org (supplier of updated ipsec-tools 
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: Fri, 22 May 2015 08:05:50 +0200
Source: ipsec-tools
Binary: ipsec-tools racoon
Architecture: source amd64
Version: 1:0.8.0-14+deb7u1
Distribution: wheezy-security
Urgency: high
Maintainer: Matthew Grant matthewgra...@gmail.com
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 ipsec-tools - IPsec utilities
 racoon - IPsec Internet Key Exchange daemon
Closes: 785778
Changes: 
 ipsec-tools (1:0.8.0-14+deb7u1) wheezy-security; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Add bug785778-null-pointer-deref.patch patch.
 CVE-2015-4047: Fix NULL pointer dereference in racoon in gssapi.c
 leading to a possible crash and denial of service attack. (Closes: #785778)
Checksums-Sha1: 
 2fd0dbf067d47aa1ac94caa683812343e5586000 2051 ipsec-tools_0.8.0-14+deb7u1.dsc
 2f8057f12cc8b0697fc0cc6826df1bccd2292291 1057292 ipsec-tools_0.8.0.orig.tar.gz
 9cdbf36c6f91e48470b6af6cab6864abab2f9622 69081 
ipsec-tools_0.8.0-14+deb7u1.debian.tar.gz
 37afc0cf3243db2bcec675c2033691ab38efcaaa 103060 
ipsec-tools_0.8.0-14+deb7u1_amd64.deb
 34beced4df183a97d8c4def760c7cbb901e83de5 457602 
racoon_0.8.0-14+deb7u1_amd64.deb
Checksums-Sha256: 
 c8b78d505a5be3282b5c9d0441537dd933a894b238a0ade59897967278f6c854 2051 
ipsec-tools_0.8.0-14+deb7u1.dsc
 985297bd91c73eeb83e60cea7b6404e12fc4d93b215ded8232a5c1c230332c4f 1057292 
ipsec-tools_0.8.0.orig.tar.gz
 6221bacdbbfbcd01e2a4a0493f6e38aa1ea2278808da522380035d06f43c5972 69081 
ipsec-tools_0.8.0-14+deb7u1.debian.tar.gz
 4246c486814fd8dca4b01cd082e8b2d7c1803e162755fe0e4dc835d7129383b9 103060 
ipsec-tools_0.8.0-14+deb7u1_amd64.deb
 ba113f7295a6e2546804d2b3f519edb3bf3bde2aedf9b29f8f8cc8ea6ec20649 457602 
racoon_0.8.0-14+deb7u1_amd64.deb
Files: 
 fb5cb35e145ec5d49b4e0c44f0ca8c1d 2051 net extra ipsec-tools_0.8.0-14+deb7u1.dsc
 c9a318cdbc0946f4e51464866d529739 1057292 net extra 
ipsec-tools_0.8.0.orig.tar.gz
 0b2f25e5cb845afecf6550567102788e 69081 net extra 
ipsec-tools_0.8.0-14+deb7u1.debian.tar.gz
 6b47a45ae0cf4ebf908b26a236d6806d 103060 net extra 
ipsec-tools_0.8.0-14+deb7u1_amd64.deb
 5646804899ce8c67b849a4973a47d16b 457602 net extra 
racoon_0.8.0-14+deb7u1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVXt+rAAoJEAVMuPMTQ89EiqcP/jmKD9vWxFYqH31jVydDTGZ5
F6v+sv01HtknERkq4+ZNgAHZ8dKUggEasoAEewm+XlDqHbLhE3XTkvSLkGRA
1ADrLDn0IMiqpUAxNbVDYR00K2f4CUUPTKPt2dMdwUfT3kQR3094QULtkwcT3ene
VKh5/V55cfGx1fhgt1k/z58B2h9l3r0H0mLTWjJdLU3jTYocp+DsCE/N7+Q13X51
q44vXdV2ZnnaydLpk7albK040ZSX6oI66LIydzoW4THt3VA+fXr+lpRy973wPL27
Yb50Sk1awIKDV/qd4jGekfXAUWcTOW1HZ4j6AH0wwGojyTsEs4UzanzNoTLDnYgR
NXufCa3xl1kNyT2unoS/kd3BEueaByUfhhMF0lDBz1e2DMJIBasbFB7O/iZblz1S
+oK5s/bWiVdysb8YCsTWIQA9FtfIdxv34cHaKftlAu0YpJleIGsEMqZWdYyuVrBN
YHhh/rfbJXgnpHRIPwZANYWkXjkmqkoRs1O1epdO/r1yXEyEKN7dLNyRY4k7AuMw
BEoOm8V8BWAqsQkAmUYMaSdQoK18claOlR3XlpjjFrZQI31ZOzXe5MpgxflDJQPu

Bug#785778: marked as done (ipsec-tools: CVE-2015-4047: null pointer dereference crash in racoon)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 13:32:06 +
with message-id e1yww0c-0002if...@franck.debian.org
and subject line Bug#785778: fixed in ipsec-tools 1:0.8.2+20140711-2+deb8u1
has caused the Debian Bug report #785778,
regarding ipsec-tools: CVE-2015-4047: null pointer dereference crash in racoon
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.)


-- 
785778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785778
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: ipsec-tools
Version: 1:0.8.0-14
Severity: grave
Tags: security upstream

Hi

Marked as severity grave as this could lead to denial of service, see
the following for details:

http://www.openwall.com/lists/oss-security/2015/05/20/1

No CVE is assigned yet (will update the bug once assigned).

Regards,
Salvatore
---End Message---
---BeginMessage---
Source: ipsec-tools
Source-Version: 1:0.8.2+20140711-2+deb8u1

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

Debian distribution maintenance software
pp.
Salvatore Bonaccorso car...@debian.org (supplier of updated ipsec-tools 
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: Fri, 22 May 2015 09:59:27 +0200
Source: ipsec-tools
Binary: ipsec-tools racoon
Architecture: source
Version: 1:0.8.2+20140711-2+deb8u1
Distribution: jessie-security
Urgency: high
Maintainer: pkg-ipsec-tools team pkg-ipsec-tools-de...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description:
 ipsec-tools - IPsec utilities
 racoon - IPsec Internet Key Exchange daemon
Closes: 785778
Changes:
 ipsec-tools (1:0.8.2+20140711-2+deb8u1) jessie-security; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Add bug785778-null-pointer-deref.patch patch.
 CVE-2015-4047: Fix NULL pointer dereference in racoon in gssapi.c
 leading to a possible crash and denial of service attack. (Closes: #785778)
Checksums-Sha1:
 46cbcebf6a2e6f02960db63f3643e667ecd61ccf 2289 
ipsec-tools_0.8.2+20140711-2+deb8u1.dsc
 f342ec3e0d5d0eb505f06f6772b31100cacac8bf 1102890 
ipsec-tools_0.8.2+20140711.orig.tar.gz
 5ea8d7980eedaf4f3274519b228f48b36a47ac0c 61896 
ipsec-tools_0.8.2+20140711-2+deb8u1.debian.tar.xz
Checksums-Sha256:
 7f27da9988cedc5a9afbf5943748a59aad80955e35754beaba11e174f38e1b44 2289 
ipsec-tools_0.8.2+20140711-2+deb8u1.dsc
 5e702549103d4cffb73d5bcd3a9b4cb75c398e7988f2421b2901cc0e15915785 1102890 
ipsec-tools_0.8.2+20140711.orig.tar.gz
 72be17c43042f161a0cf6256d73560b9c6f120d97f258e86f0098b953f02713f 61896 
ipsec-tools_0.8.2+20140711-2+deb8u1.debian.tar.xz
Files:
 88107427cd9dea31d1a39d25a005073b 2289 net extra 
ipsec-tools_0.8.2+20140711-2+deb8u1.dsc
 8c222aedb897820e946aac203113b650 1102890 net extra 
ipsec-tools_0.8.2+20140711.orig.tar.gz
 63a681a83ccd55f3d78470e98d91032a 61896 net extra 
ipsec-tools_0.8.2+20140711-2+deb8u1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJVXuVLAAoJEAVMuPMTQ89EmisP+gNUMHGJ0qk/ywhSqe8u+dua
9ne3OQ9wut1ni+DMtPUB7H4/YZNC0igEGxARGou7JRF7tM8JxciljersqvIzfiFK
FYTLCWIbmcyJxyW1yte4Cpw5Ud74FypiCcsCWeV5HlABIVnt6lQXvSvj89kuKOYY
JLUEMmoe1W47a/gnu5EofB/DVPknjx6QYaoKMZoUqIwZeX1W5up87gLr7Xzdh+hL
ftdMkFwTVkPYzVI985DIoTnlDebtBAmE2PE+nJVwTI/W9zMFnRMWpwVeEc55wZR+
d6MBL8GsU31dnbzDuOZXMlJxp9C9aXaTN9OtFhkg1I37HK22eO8ZiYHy65zad9rY
zPir8zpS9FTPpgnB8CVxj1JLwheUewCgpdSsZ2/TG0LtdQ1Vk8TbUeUuWNehE0qe
gZR5o9SIcm24g31jMQf0qniCZQsVM17ksrTlep+nt5DPi9BOHfnjdkZz+UmF73JA
kxBzg2F0sNG9umBoyJ3XphNzW7PYJM6XR7PHL9GgC3hV9cJlKuHvZi7weS33KLNA
h8VYH1PfR4qOeKuOZ0z0Ou4pbTYVDTRDHMW6jG3KoHZ4tQOYVhsFftCp6XNAz4Fu
57yxxa7CtgpojHRAngdcNdnOvbIxRLx7sG/NvjhOnvjn5KHLxwNWFfjTQ84oP0sK
ZRTChxCN1T8DRyFn+w0h
=guGp
-END PGP SIGNATUREEnd Message---


Bug#785502: marked as done (libi18n-charset-perl: Cannot find blib ...)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 13:32:10 +
with message-id e1yww0g-0002k0...@franck.debian.org
and subject line Bug#785502: fixed in libi18n-charset-perl 1.412-1+deb8u1
has caused the Debian Bug report #785502,
regarding libi18n-charset-perl: Cannot find blib ...
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.)


-- 
785502: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785502
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: libi18n-charset-perl
Version: 1.412-1
Severity: normal

% echo 'use I18N::Charset;' | perl
Cannot find blib even in /home/frank/work/../../../../..
BEGIN failed--compilation aborted at /usr/share/perl5/I18N/Charset.pm line 12.
Compilation failed in require at - line 1.
BEGIN failed--compilation aborted at - line 1.

It seems to search for directories called blib, blib/arch and
blib/lib in the current directory and its parents.

If I create those directories manually, the error disappears, but I
don't think I'm supposed to have such directories in every directory
I want to run Perl scripts from.

Note: I don't know much about Perl. I don't know what blib is, what
it's needed for, or what those directories should do. I don't even
want to use this module directly, but it's used by another program
I'm trying to use.

Telling from its name, I18N::Charset should be a rather commonly
used module, so there seems to be something fundamentally broken if
it fails this way.

In wheezy, where the error didn't occur, I18N::Charset didn't use
blib.

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

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

Versions of packages libi18n-charset-perl depends on:
ii  libio-string-perl  1.08-3
ii  perl   5.20.2-3+deb8u1

libi18n-charset-perl recommends no packages.

Versions of packages libi18n-charset-perl suggests:
pn  libjcode-pm-perl none
pn  libunicode-map-perl  none
ii  libunicode-map8-perl 0.13+dfsg-4+b1
pn  libunicode-maputf8-perl  none

-- no debconf information
---End Message---
---BeginMessage---
Source: libi18n-charset-perl
Source-Version: 1.412-1+deb8u1

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

Debian distribution maintenance software
pp.
Niko Tyni nt...@debian.org (supplier of updated libi18n-charset-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: SHA256

Format: 1.8
Date: Sun, 17 May 2015 14:59:47 +0300
Source: libi18n-charset-perl
Binary: libi18n-charset-perl
Architecture: source all
Version: 1.412-1+deb8u1
Distribution: jessie
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Niko Tyni nt...@debian.org
Description:
 libi18n-charset-perl - Perl module for mapping character set names to IANA 
names
Closes: 785502
Changes:
 libi18n-charset-perl (1.412-1+deb8u1) jessie; urgency=medium
 .
   * Team upload.
   * Remove a stray 'use blib' line. (Closes: #785502)
Checksums-Sha1:
 a880bb7860bd742c7ab34adb711ab8a2cae2581b 2349 
libi18n-charset-perl_1.412-1+deb8u1.dsc
 83865cd8587bac486e8c56a81e25a6123801b6c5 5296 
libi18n-charset-perl_1.412-1+deb8u1.debian.tar.xz
 bed27e2edffd3bc41bb5d9c3e76ec10791180a0d 32246 
libi18n-charset-perl_1.412-1+deb8u1_all.deb
Checksums-Sha256:
 7a82405b29cbac2ee4c2fb38d5e1c9117f421c0cb64924050bb9d254e8e938a1 2349 
libi18n-charset-perl_1.412-1+deb8u1.dsc
 8eefd65b7bf7ab04f24f72766339104c14acff0065247eb21967619adfaf51ea 5296 
libi18n-charset-perl_1.412-1+deb8u1.debian.tar.xz
 2cad2c628f3959915352efe20827c78e057efe39d6c3c222f1a9f96c49294ac9 32246 
libi18n-charset-perl_1.412-1+deb8u1_all.deb
Files:
 620b37934bf588b5ae6c74717f961b32 2349 perl optional 
libi18n-charset-perl_1.412-1+deb8u1.dsc
 c9341ab20a7667a024baeaf47c7a1950 5296 perl optional 
libi18n-charset-perl_1.412-1+deb8u1.debian.tar.xz
 

Bug#786673: [Pkg-bitcoin-devel] Bug#786673: FTBFS: Package libbase58 was not found in the pkg-config search path

2015-05-24 Thread Dmitry Smirnov
Control: tags -1 pending

On Sun, 24 May 2015 12:04:27 Jonathan Wiltshire wrote:
 A binary-only rebuild of bfgminer for the libblkmaker transition failed to
 build.

Thanks for keeping an eye on the package. However you have filed this bug so 
fast (~24 hours since upload of libblkmaker) that I simply did not manage to 
move bfgminer from experimental to unstable in time...


 This seems to be because libbase58-0 does not contain a .pc file, so
 pkg-config fails to find it when required as a dependency of libblkmaker.
 
 To confirm this I created a local libbase58.pc file and the build succeeded.

Not sure what are you talking about as libbase58-dev contains libbase58.pc


 I'm not sure if this is a bug in libbase58 for not carrying a .pc file,

Definitely not it.


 or in libblkmaker which grew the dependency on it,

It is true that libblkmaker needs libbase58.


 or bfgminer for failing when pkg-config fails.

It is something in bfgminer -- whatever it is new upstream release fixes 
that.


 Please double-check my diagnosis and reassign as appropriate.

No worries and thanks.

-- 
All the best,
 Dmitry Smirnov
 GPG key : 4096R/53968D1B

---

If you focus your mind on the freedom and community that you can build
by staying firm, you will find the strength to do it. Stand for
something, or you will fall for nothing.
-- Richard Stallman



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


Processed: bug 786667 is forwarded to https://rt.cpan.org/Ticket/Display.html?id=104656

2015-05-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 forwarded 786667 https://rt.cpan.org/Ticket/Display.html?id=104656
Bug #786667 [libcatalyst-plugin-authentication-credential-openid-perl] 
libcatalyst-plugin-authentication-credential-openid-perl: FTBFS: Bareword 
use_test_base not allowed
Set Bug forwarded-to-address to 
'https://rt.cpan.org/Ticket/Display.html?id=104656'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
786667: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786667
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#786602: marked as done (FTBFS: build-depends on libsimgear-dev = 3.0.99 but it has been superceded)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 11:34:05 +
with message-id e1ywuap-oy...@franck.debian.org
and subject line Bug#786602: fixed in flightgear 3.4.0-1
has caused the Debian Bug report #786602,
regarding FTBFS: build-depends on libsimgear-dev = 3.0.99 but it has been 
superceded
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.)


-- 
786602: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786602
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: flightgear
Version: 3.0.0-5
Severity: serious
Justification: FTBFS, but did so in the past

Hi,

A binary rebuild of flighgear for the simgear transition fails to build on all
architectures, because it has a strict build-dependency on the old library
version. libsimgear3.4.0 is now in sid.

Thanks.

-- System Information:
Debian Release: 8.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'proposed-updates'), (500, 'unstable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages flightgear depends on:
pn  flightgear-data-all   none
pn  freeglut3 none
ii  libc6 2.19-18
ii  libdbus-1-3   1.8.16-1
ii  libgcc1   1:4.9.2-10
ii  libgl1-mesa-glx [libgl1]  10.3.2-1
ii  libglu1-mesa [libglu1]9.0.0-2
ii  libgsm1   1.0.13-4
ii  libice6   2:1.0.9-1+b1
ii  libjpeg8  8d1-2
ii  libopenal11:1.15.1-5
pn  libopenscenegraph99   none
pn  libopenthreads14  none
pn  libplib1  none
ii  libpng12-01.2.50-2+b2
pn  libsimgearcore3.0.0   none
pn  libsimgearscene3.0.0  none
ii  libsm62:1.2.2-1+b1
ii  libspeex1 1.2~rc1.2-1
ii  libspeexdsp1  1.2~rc1.2-1
ii  libsqlite3-0  3.8.7.1-1+deb8u1
ii  libstdc++64.9.2-10
ii  libudev1  215-17
ii  libx11-6  2:1.6.2-3
ii  libxext6  2:1.3.3-1
ii  libxi62:1.7.4-1+b2
ii  libxmu6   2:1.1.2-1
ii  zlib1g1:1.2.8.dfsg-2+b1

flightgear recommends no packages.

flightgear suggests no packages.
---End Message---
---BeginMessage---
Source: flightgear
Source-Version: 3.4.0-1

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

Debian distribution maintenance software
pp.
Markus Wanner mar...@bluegap.ch (supplier of updated flightgear 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: Sun, 24 May 2015 09:29:10 +0200
Source: flightgear
Binary: flightgear flightgear-dbg
Architecture: source
Version: 3.4.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian FlightGear Crew pkg-fgfs-c...@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description:
 flightgear - Flight Gear Flight Simulator
 flightgear-dbg - Flight Gear Flight Simulator - debugging symbols
Closes: 786602
Changes:
 flightgear (3.4.0-1) unstable; urgency=medium
 .
   * Upload to unstable. Closes: #786602.
   * Change public-domain short names to avoid a lintian warning.
   * Refresh patch 6a30e7.patch.
   * Add patch add-x11-lib.patch to fix the build on sid.
Checksums-Sha1:
 bc524c6361a0497f3605fefc49e342bd5053b898 3330 flightgear_3.4.0-1.dsc
 5f9ed1215b0e65b1182e7b4cdf5e1fd9986032a9 17840 flightgear_3.4.0-1.debian.tar.xz
Checksums-Sha256:
 b3dcdd627ed02744132ff3c1830fef5cbc5af90c5c2d82ba98679a3c4f26f74c 3330 
flightgear_3.4.0-1.dsc
 f3f912b66120dff7b12c31d23eda1027213a281d02f876465bed91f08fa492a2 17840 
flightgear_3.4.0-1.debian.tar.xz
Files:
 d4728019b72f29951accb3bace0ec063 3330 games extra flightgear_3.4.0-1.dsc
 21d5cfc83eee2c19a94c5cdc88787570 17840 games extra 
flightgear_3.4.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

Processed: Re: [Pkg-bitcoin-devel] Bug#786673: FTBFS: Package libbase58 was not found in the pkg-config search path

2015-05-24 Thread Debian Bug Tracking System
Processing control commands:

 tags -1 pending
Bug #786673 [bfgminer] FTBFS: Package libbase58 was not found in the pkg-config 
search path
Added tag(s) pending.

-- 
786673: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786673
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#786673: marked as done (FTBFS: Package libbase58 was not found in the pkg-config search path)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 13:34:15 +
with message-id e1yww2h-0002e9...@franck.debian.org
and subject line Bug#786673: fixed in bfgminer 5.1.0+dfsg-2
has caused the Debian Bug report #786673,
regarding FTBFS: Package libbase58 was not found in the pkg-config search path
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.)


-- 
786673: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786673
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: bfgminer
Version: 4.7.0+dfsg-2
Severity: serious
Justification: FTBFS, but did so in the past

Hi,

A binary-only rebuild of bfgminer for the libblkmaker transition failed to
build.

Relevant part of the build log:

configure:11948: checking for libblkmaker
configure:11955: $PKG_CONFIG --exists --print-errors libblkmaker_jansson-0.1
Package libbase58 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libbase58.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libbase58', required by 'libblkmaker_jansson-0.1', not found
configure:11958: $? = 1
configure:11972: $PKG_CONFIG --exists --print-errors libblkmaker_jansson-0.1
Package libbase58 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libbase58.pc'
to the PKG_CONFIG_PATH environment variable
Package 'libbase58', required by 'libblkmaker_jansson-0.1', not found
configure:11975: $? = 1
configure:11989: result: no
Package 'libbase58', required by 'libblkmaker_jansson-0.1', not found
configure:12006: error: Could not find system libblkmaker


This seems to be because libbase58-0 does not contain a .pc file, so pkg-config
fails to find it when required as a dependency of libblkmaker.

To confirm this I created a local libbase58.pc file and the build succeeded.

I'm not sure if this is a bug in libbase58 for not carrying a .pc file, or in
libblkmaker which grew the dependency on it, or bfgminer for failing when
pkg-config fails. Please double-check my diagnosis and reassign as appropriate.

Thanks.

-- System Information:
Debian Release: 8.0
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'stable-updates'), (500, 
'proposed-updates'), (500, 'unstable'), (500, 'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.0.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
---End Message---
---BeginMessage---
Source: bfgminer
Source-Version: 5.1.0+dfsg-2

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

Debian distribution maintenance software
pp.
Dmitry Smirnov only...@debian.org (supplier of updated bfgminer 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: Sun, 24 May 2015 21:45:59 +1000
Source: bfgminer
Binary: bfgminer
Architecture: source amd64
Version: 5.1.0+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Bitcoin Packaging Team 
pkg-bitcoin-de...@lists.alioth.debian.org
Changed-By: Dmitry Smirnov only...@debian.org
Description:
 bfgminer   - multi-threaded multi-pool ASIC, FPGA and GPU bitcoin miner
Closes: 786673
Changes:
 bfgminer (5.1.0+dfsg-2) unstable; urgency=medium
 .
   * Upload to unstable (Closes: #786673).
Checksums-Sha1:
 6af4e0750cce0577a208cc049d6b4a62770befcc 2213 bfgminer_5.1.0+dfsg-2.dsc
 c69a08006fdb370f114873f3565d789b3cfc80fa 12176 
bfgminer_5.1.0+dfsg-2.debian.tar.xz
 beb6912995920130d3ae6b30fed79c215e9f4bb1 628338 bfgminer_5.1.0+dfsg-2_amd64.deb
Checksums-Sha256:
 818c9b211e89cc5c8d50a0565d7a5ab26a5f06ffb42fbc3e504c2e6d533e6b28 2213 
bfgminer_5.1.0+dfsg-2.dsc
 78d65fc2bf7f2b19d778e33f2c32aad36be0cb3e0880af00237a10db2e85b1fe 12176 
bfgminer_5.1.0+dfsg-2.debian.tar.xz
 7d28186bec9a3097598e93f1464e4a1bdff0541f9b31ae2d9eca3625020d46df 628338 
bfgminer_5.1.0+dfsg-2_amd64.deb
Files:
 e5c5ae276fd7860dc6205d3c5c5b5b61 2213 net optional bfgminer_5.1.0+dfsg-2.dsc
 a782460124846226cc5c88f4576c9c31 12176 net optional 

Bug#786602: [pkg-fgfs-crew] Bug#786602: FTBFS: build-depends on libsimgear-dev = 3.0.99 but it has been superceded

2015-05-24 Thread Markus Wanner
Oh, I thought I uploaded flightgear-3.4.0, already. Apparently that's
not the case. An upload will follow. Thanks for the reminder.

Regards

Markus Wanner



signature.asc
Description: OpenPGP digital signature


Bug#786669: ruby-celluloid: tests sometimes fail, causing ftbfs sometimes

2015-05-24 Thread Holger Levsen
source: ruby-celluloid
version: 0.16.0-1
Severity: serious
User: reproducible-bui...@lists.alioth.debian.org
Usertags: randomness
x-debbugs-cc: reproducible-bui...@lists.alioth.debian.org

Hi,

While working on the “reproducible builds” effort [1], we have noticed
that ruby-celluloid sometimes fails on it's testsuite, causing a ftbfs like 
this:

Failures:

  1) Probe on boot should capture system actor spawn
 Failure/Error: while ev = client.buffer.shift
 Timeout::Error:
   execution expired
 # ./lib/celluloid/mailbox.rb:62:in `sleep'
 # ./lib/celluloid/mailbox.rb:62:in `wait'
 # ./lib/celluloid/mailbox.rb:62:in `block in check'
 # ./lib/celluloid/mailbox.rb:57:in `check'
 # ./lib/celluloid/mailbox.rb:75:in `block in receive'
 # ./lib/celluloid/mailbox.rb:74:in `receive'
 # ./lib/celluloid/calls.rb:97:in `block in wait'
 # ./lib/celluloid/calls.rb:96:in `loop'
 # ./lib/celluloid/calls.rb:96:in `wait'
 # ./lib/celluloid.rb:116:in `suspend'
 # ./lib/celluloid/calls.rb:88:in `response'
 # ./lib/celluloid/calls.rb:92:in `value'
 # ./lib/celluloid/proxies/sync_proxy.rb:33:in `method_missing'
 # ./spec/celluloid/probe_spec.rb:53:in `block (5 levels) in top 
(required)'
 # ./spec/celluloid/probe_spec.rb:51:in `loop'
 # ./spec/celluloid/probe_spec.rb:51:in `block (4 levels) in top 
(required)'
 # ./spec/celluloid/probe_spec.rb:50:in `block (3 levels) in top 
(required)'


See the attached log for an example of a 1st build, which succeeds and a 2nd 
build which failed. (We've also had 1st builds that failed.)

This is the build history of the package in our setup:

4013|ruby-celluloid|0.15.2-2|testing|amd64|FTBFS|2015-03-12 14:14|2
4036|ruby-celluloid|0.15.2-2|testing|amd64|reproducible|2015-03-12 14:50|213
9265|ruby-celluloid|0.15.2-2|unstable|amd64|reproducible|2015-03-17 22:47|213
28535|ruby-celluloid|0.15.2-2|testing|amd64|reproducible|2015-04-01 00:37|293
83493|ruby-celluloid|0.15.2-2|testing|amd64|reproducible|2015-05-15 06:24|215
85249|ruby-celluloid|0.15.2-2|unstable|amd64|FTBFS|2015-05-16 00:36|51
98671|ruby-celluloid|0.16.0-1|unstable|amd64|reproducible|2015-05-24 08:57|472
98686|ruby-celluloid|0.16.0-1|unstable|amd64|FTBFS|2015-05-24 09:05|521
98695|ruby-celluloid|0.16.0-1|unstable|amd64|reproducible|2015-05-24 09:22|288
98713|ruby-celluloid|0.16.0-1|unstable|amd64|FTBFS|2015-05-24 10:12|172
98721|ruby-celluloid|0.16.0-1|unstable|amd64|FTBFS|2015-05-24 10:17|112
98735|ruby-celluloid|0.16.0-1|unstable|amd64|FTBFS|2015-05-24 10:22|239


cheers,
Holger

 [1]: https://wiki.debian.org/ReproducibleBuilds
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Started by timer
Building in workspace /var/lib/jenkins/jobs/reproducible_builder_delta/workspace
[workspace] $ /bin/sh -xe /tmp/hudson3224051211266062223.sh
+ /srv/jenkins/bin/reproducible_build.sh


Sun May 24 10:22:23 UTC 2015 - running job reproducible_builder_delta now.

To understand what this job does, clone git.debian.org/git/qa/jenkins.debian.net.git
and then have a look at bin/reproducible_build.sh

This invocation of the script has been called using  as arguments.


Sun May 24 10:22:23 UTC 2015 - start running /srv/jenkins/bin/reproducible_build.sh as /tmp/jenkins-script-VFTM8MDQ.

=
Trying to reproducibly build ruby-celluloid in unstable on amd64 now. 
=
Starting to build ruby-celluloid/unstable on 2015-05-24 10:22
The jenkins build log is/was available at https://jenkins.debian.net/job/reproducible_builder_delta/12880//console
Reading package lists...
Building dependency tree...
NOTICE: 'ruby-celluloid' packaging is maintained in the 'Git' version control system at:
git://anonscm.debian.org/pkg-ruby-extras/ruby-celluloid.git
Need to get 55.4 kB of source archives.
Get:1 http://ftp.de.debian.org/debian/ unstable/main ruby-celluloid 0.16.0-1 (dsc) [2112 B]
Get:2 http://ftp.de.debian.org/debian/ unstable/main ruby-celluloid 0.16.0-1 (tar) [50.3 kB]
Get:3 http://ftp.de.debian.org/debian/ unstable/main ruby-celluloid 0.16.0-1 (diff) [3024 B]
Fetched 55.4 kB in 0s (4552 kB/s)
Download complete and in download only mode
-BEGIN PGP SIGNED 

Processed: found

2015-05-24 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 786669 0.15.2-2
Bug #786669 [src:ruby-celluloid] ruby-celluloid: tests sometimes fail, causing 
ftbfs sometimes
Marked as found in versions ruby-celluloid/0.15.2-2.

End of message, stopping processing here.

Please contact me if you need assistance.
-- 
786669: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786669
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#786673: [Pkg-bitcoin-devel] Bug#786673: FTBFS: Package libbase58 was not found in the pkg-config search path

2015-05-24 Thread Tristan Seligmann
On 24 May 2015 at 13:04, Jonathan Wiltshire j...@debian.org wrote:
 configure:11948: checking for libblkmaker
 configure:11955: $PKG_CONFIG --exists --print-errors libblkmaker_jansson-0.1
 Package libbase58 was not found in the pkg-config search path.
 Perhaps you should add the directory containing `libbase58.pc'
 to the PKG_CONFIG_PATH environment variable

 This seems to be because libbase58-0 does not contain a .pc file, so 
 pkg-config
 fails to find it when required as a dependency of libblkmaker.

libbase58.pc is contained in libbase58-dev, which I believe is the
correct build-dependency, not libbase58-0.
-- 
mithrandi, i Ainil en-Balandor, a faer Ambar


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



Bug#785557: perl: FTBFS on i386 and amd64: itimer problems on buildds?

2015-05-24 Thread Apollon Oikonomopoulos
On 16:38 Sun 24 May , Ben Hutchings wrote:
 On Sun, 2015-05-24 at 14:09 +0300, Niko Tyni wrote:
  On Sun, May 24, 2015 at 02:55:00PM +0800, Paul Wise wrote:
   On Sat, 2015-05-23 at 19:10 +0200, Dominic Hargreaves wrote:
   
This is rather strange; any ideas from DSA?
   
   The underlying hosts do not have the same issue.
   
   All of the guests use the same virtual CPU version/flags.
   
   All of the guests use the same Linux kernel version.
  
  Thanks for the update.
  
   I guess diving into the Linux implementation of times(2) for clues would
   be the next step for figuring out what the issue is here.
  
  I'm taking the kernel maintainers in the loop. The status here is that
  times(2) seems to be misbehaving on some i386 and amd64 debian.org virtual
  hosts running jessie (under ganeti/qemu, with jessie on the underlying
  hosts too). These hosts include at least barriere and x86-grnet-01.
  
  The misbehaviour is that user time stays at zero all the time, as seen
  for example with 'time yes'. This is making perl fail to build from
  source due to test failures, and I'd expect it to affect other things too.
  
  Any help is appreciated.
 
 I can't reproduce this, but wonder if it's related to #784960?

There seems to be something fundamentally broken in 
barriere.debian.org's CPU time accounting, not related to times(2) per 
se. Just issuing

  yes /dev/null

and firing up top -d1 gives the following interesting results:

  - `yes' shows up taking 100% CPU time as expected, but
  - pressing `1' shows that all CPUs are idle (!)

htop OTOH displays all CPUs as constantly 100% busy, which is 
inconsistent with the system's load average (~0.8 at that point).

Also watching the output of `cat /proc/$(pidof yes)/stat | awk '{ print 
$14, $15 }'' ($14 is utime, $15 is stime per proc(5)) indeed shows 100% 
system time and 0 user time.

If you look at the `top' stats for all CPUs of barriere.debian.org, it 
looks as if the only thing that's correctly being accounted for is 
iowait time.

Cheers,
Apollon


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



Bug#760853: jitsi uninstallable in sid

2015-05-24 Thread Kurt Roeckx
On Sun, May 24, 2015 at 06:42:03AM +0200, Christoph Anton Mitterer wrote:
 What's the status here?

It's been sitting in the new queue for at leats 7 months.


Kurt


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



Bug#785557: perl: FTBFS on i386 and amd64: itimer problems on buildds?

2015-05-24 Thread Ben Hutchings
On Sun, 2015-05-24 at 14:09 +0300, Niko Tyni wrote:
 On Sun, May 24, 2015 at 02:55:00PM +0800, Paul Wise wrote:
  On Sat, 2015-05-23 at 19:10 +0200, Dominic Hargreaves wrote:
  
   This is rather strange; any ideas from DSA?
  
  The underlying hosts do not have the same issue.
  
  All of the guests use the same virtual CPU version/flags.
  
  All of the guests use the same Linux kernel version.
 
 Thanks for the update.
 
  I guess diving into the Linux implementation of times(2) for clues would
  be the next step for figuring out what the issue is here.
 
 I'm taking the kernel maintainers in the loop. The status here is that
 times(2) seems to be misbehaving on some i386 and amd64 debian.org virtual
 hosts running jessie (under ganeti/qemu, with jessie on the underlying
 hosts too). These hosts include at least barriere and x86-grnet-01.
 
 The misbehaviour is that user time stays at zero all the time, as seen
 for example with 'time yes'. This is making perl fail to build from
 source due to test failures, and I'd expect it to affect other things too.
 
 Any help is appreciated.

I can't reproduce this, but wonder if it's related to #784960?

Ben.

-- 
Ben Hutchings
Experience is what causes a person to make new mistakes instead of old ones.


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


Bug#785778: squeeze update of ipsec-tools?

2015-05-24 Thread Salvatore Bonaccorso
Hi!

On Fri, May 22, 2015 at 12:03:59PM +0200, Raphael Hertzog wrote:
 Control: found -1 1:0.7.3-12
 
 Hello dear maintainer(s),
 
 the Debian LTS team would like to fix the security issues which are
 currently open in the Squeeze version of ipsec-tools:
 https://security-tracker.debian.org/tracker/CVE-2015-4047

I prepared an update for these in squeeze-lts, and uploaded packages
to test to https://people.debian.org/~carnil/tmp/ipsec-tools/ . The
fix is straightforward as well for the squeeze version. But in case
you have it in production and want to test the packages test feedback
is welcome before releasing them.

Regards,
Salvatore


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



Bug#786715: stellarium: Uses private copies of external headers

2015-05-24 Thread Sune Vuorela
Source: stellarium
Version: 0.13.3-1
Severity: serious

Dear Maintainer,

Stellarium has a copy of qzipreader/writer header files taken out of Qt,
and uses the internal, but unfortuantely available, symbols out of Qt
Gui. It can be directly seen due to the dependency on the internal qt
versioning as in qtbase-abi-5-3-2 which is generally a sign of doing
something dirty, and will require a rebuild on each new Qt upload.

If the QZipReader/writer classes changes (they can do that, they are an
internal thing to Qt), stellarium will not work or maybe even crash
randomly.

I'd suggest one of the following solutions:

1) Use an actual public zipping library. KArchive and quazip are two
currently available in Debian

2) Copy out the relevant bits from Qt *and rename* them (like add a
namespace or something).  (The current qzip.cpp found in the external
directory could be used, but needs to actually be built. Hint: ! is not
a valid negation operator in cmake)

3) much discouraged, but still better than status quo. Use the privately
exposed headers in qtbase5-private-dev of qzipreader_p.h and
qzipwriter_p.h to at least ensure that things are in sync. This also
requires changes to the build system.

4) convince Qt upstream to make QZip* public api. That's likely not
going to happen, and even if it was, we would need a interrim solution.

Getting something going soon would be nice to detangle stellarium from
the next qt upload. And 3) doesn't solve that.

I do somewhere have a quick and dirty patch for 2), but I really think
you should consider 1).

/Sune


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

Kernel: Linux 3.16.0-4-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
Init: systemd (via /run/systemd/system)


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



Bug#760853: jitsi uninstallable in sid

2015-05-24 Thread Christoph Anton Mitterer
On Sun, 2015-05-24 at 20:00 +0200, Kurt Roeckx wrote: 
 It's been sitting in the new queue for at leats 7 months.
Sure but what's the status there,... what keeps that blocking?


smime.p7s
Description: S/MIME cryptographic signature


Processed: Re: Bug#786723: adwaita-icon-theme: non-FHS directory /usr/locale

2015-05-24 Thread Debian Bug Tracking System
Processing control commands:

 severity -1 serious
Bug #786723 [adwaita-icon-theme] adwaita-icon-theme: non-FHS directory 
/usr/locale
Severity set to 'serious' from 'normal'

-- 
786723: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=786723
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#786494: libgit2: loss of libssh2 functionality; please add pkg-config to Build-Depends

2015-05-24 Thread Russell Sim
Hi Dmitry,

Dmitry Smirnov only...@debian.org writes:

 Just uploaded libgit2 introduced serious regression due to loss of bindings 
 with libssh2 which causes loss of symbols in dependent library libgit2-glib 
 and then in turn FTBFS in gitg.

 Quoting CHANGELOG.md:

 * The search for libssh2 is now done via pkg-config instead of a
   custom search of a few directories.

 Because libgit2 do not depend on pkg-config new upstream release fails to 
 detect libssh library and builds without SSH support.

 After adding pkg-config to Build-Depends the following should appear in 
 build log:

 -- checking for module 'libssh2' 
 --   found libssh2, version 1.5.0

 and libgit2-22 will Depend on libssh2-1.

 Please add pkg-config to Build-Depends.

Thanks for the thorougher details. :)

-- 
Cheers,
Russell


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



Bug#785778: marked as done (ipsec-tools: CVE-2015-4047: null pointer dereference crash in racoon)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 06:34:05 +
with message-id e1ywpu5-0006un...@franck.debian.org
and subject line Bug#785778: fixed in ipsec-tools 1:0.8.2+20140711-3
has caused the Debian Bug report #785778,
regarding ipsec-tools: CVE-2015-4047: null pointer dereference crash in racoon
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.)


-- 
785778: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=785778
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Source: ipsec-tools
Version: 1:0.8.0-14
Severity: grave
Tags: security upstream

Hi

Marked as severity grave as this could lead to denial of service, see
the following for details:

http://www.openwall.com/lists/oss-security/2015/05/20/1

No CVE is assigned yet (will update the bug once assigned).

Regards,
Salvatore
---End Message---
---BeginMessage---
Source: ipsec-tools
Source-Version: 1:0.8.2+20140711-3

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

Debian distribution maintenance software
pp.
no...@debian.org (supplier of updated ipsec-tools 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: Wed, 20 May 2015 10:46:55 -0700
Source: ipsec-tools
Binary: ipsec-tools racoon
Architecture: source amd64
Version: 1:0.8.2+20140711-3
Distribution: unstable
Urgency: medium
Maintainer: pkg-ipsec-tools team pkg-ipsec-tools-de...@lists.alioth.debian.org
Changed-By: no...@debian.org
Description:
 ipsec-tools - IPsec utilities
 racoon - IPsec Internet Key Exchange daemon
Closes: 785778
Changes:
 ipsec-tools (1:0.8.2+20140711-3) unstable; urgency=medium
 .
   * Fix null pointer dereference leading to a possible crash and
 denial of service attack. (Closes: 785778)
Checksums-Sha1:
 f8da82ef687313514a117f2257ebf863b4ef22d8 2253 ipsec-tools_0.8.2+20140711-3.dsc
 b959808e868a10116b15d9edee53d4d50280eb06 61704 
ipsec-tools_0.8.2+20140711-3.debian.tar.xz
 8f306268a4e27a149c401ce41ddd66c5f2f8644a 92514 
ipsec-tools_0.8.2+20140711-3_amd64.deb
 3a08539466d0e38cfbf1fd2e6a69fa4335634fd8 367322 
racoon_0.8.2+20140711-3_amd64.deb
Checksums-Sha256:
 21b803026d0d7841373373e559ab4c828827b0e06519f8eed004149d22199a56 2253 
ipsec-tools_0.8.2+20140711-3.dsc
 f14528fade5be38811af7a5e3f0e167c334dea56e5a9c9a9604daef156b74350 61704 
ipsec-tools_0.8.2+20140711-3.debian.tar.xz
 d8b37ed64c7a078ea669ffada2fa79abefca8a5223cdd9e88f32d874912c1954 92514 
ipsec-tools_0.8.2+20140711-3_amd64.deb
 3d18e375274dcbaac698ff362824e7cbec9336c6602b108d8d075d01327b8ac6 367322 
racoon_0.8.2+20140711-3_amd64.deb
Files:
 a795b1f88b722788f411ddd5ed2e78df 2253 net extra 
ipsec-tools_0.8.2+20140711-3.dsc
 42a498a8ccd7e18300681cb05b7e53a9 61704 net extra 
ipsec-tools_0.8.2+20140711-3.debian.tar.xz
 13cc0bb3950bb89b5687987ef2abaff4 92514 net extra 
ipsec-tools_0.8.2+20140711-3_amd64.deb
 a677aab2f0058430af8de5dcd6d38d14 367322 net extra 
racoon_0.8.2+20140711-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVWFvZvYw89L1q13TAQgylw/8DyJvjkp8bhlRTn2A69k8s9tXjROBU/OT
8x2bTJ6q7Hiuso6UA9R9rz0rJOyZyQSGHkiAVdYdmygsG3KENZf9Kz2TxdT5CoUS
WLNtHBBQic49R7NE3VCnStxi/XzPdXgzRtce1PZeOM+AgN92K6HOcQXTdTFPs578
n+MlvZj/B0cXVQOB/1Lg6idnmzW72SoLCfqJVDgfujWg+Z2GagNANVjc3uHz+yCp
/scK/RBZWNGzIiT9UuEXrApIvddkM2k73AaP4D5uBWL/5oMWSHoFlKMlu3Iw0t/J
IxGHgvndWUMFVU+u7pkgMNm8SKsZqsVw8Tp8iVTVUqLFhwurJmOn6hMsgHUPud4E
FvR5oIHjf0s7KUAsuFSIivqerh4AhFWAwfB1Tx8roL5En/t4UWOTt+Ql5fDR4/UC
qMQn0fC/DWxvA5oI8tXmM2aDnn/WdFkbv5y2i9tDsHvWX7fWiBt/0Mu3TijrZxDs
NqkZ9sIgJE/Tb6HZbd4bSfVcG2Sr/Ln5bSUAHPMs6TFM1IrDn30FIZVlyJuGQwL4
Wv9AsyOfYQWHkj9fdkJcU/j9H/U7gJo3Rt8DYf3C46OQ4wKGYI7MFKXmFVp8fOQY
PqJurbxMVQqc4K05+aR/xJyU1uqr19ApBfKF0iB6rygzDwKsaRa6hHBWt8WGYRqB
+w6vCRrh/LQ=
=zEqS
-END PGP SIGNATUREEnd Message---


Bug#785557: perl: FTBFS on i386 and amd64: itimer problems on buildds?

2015-05-24 Thread Paul Wise
On Sat, 2015-05-23 at 19:10 +0200, Dominic Hargreaves wrote:

 This is rather strange; any ideas from DSA?

The underlying hosts do not have the same issue.

All of the guests use the same virtual CPU version/flags.

All of the guests use the same Linux kernel version.

I guess diving into the Linux implementation of times(2) for clues would
be the next step for figuring out what the issue is here.

-- 
bye,
pabs

https://wiki.debian.org/PaulWise



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


Bug#784316: Please upgrade to hoauth2

2015-05-24 Thread Joachim Breitner
Hi,

Am Samstag, den 23.05.2015, 16:37 -0500 schrieb John Goerzen:
 I am super busy right now (taking flying lessons) and will not likely
 have the chance to look at this soon, unfortunately.  I would happily
 accept patches if anybody else has the time to do so.

heh, good reason. I’m flying myself, although “only” paragliders.


I’ll see if I can keep hoauth in a shape suitable for migration to
testing, so that this bug does at least not hold up the testing
migration... looks like with a small patch, hoauth compiles. That’s all
we want from a Haskell program, is it :-)

Greetings,
Joachim



-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: F0FBF51F
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


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


Bug#785472: marked as done (parcellite: Parcellite fails to start after upgrading to Jessie)

2015-05-24 Thread Debian Bug Tracking System
Your message dated Sun, 24 May 2015 10:16:49 +0200
with message-id 20150524081649.ga4...@hugo6390.home
and subject line Non-bug
has caused the Debian Bug report #785472,
regarding parcellite: Parcellite fails to start after upgrading to Jessie
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.)


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

-- System Information:
Debian Release: 8.0
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 3.16.0-4-686-pae (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
Init: systemd (via /run/systemd/system)

Versions of packages parcellite depends on:
ii  libappindicator1 0.4.92-3.1
ii  libatk1.0-0  2.14.0-1
ii  libc62.19-18
ii  libcairo21.14.0-2.1
ii  libdbusmenu-glib412.10.2-1
ii  libfontconfig1   2.11.0-6.3
ii  libfreetype6 2.5.2-3
ii  libgdk-pixbuf2.0-0   2.31.1-2+b1
ii  libglib2.0-0 2.42.1-1
ii  libgtk2.0-0  2.24.25-3
ii  libpango-1.0-0   1.36.8-3
ii  libpangocairo-1.0-0  1.36.8-3
ii  libpangoft2-1.0-01.36.8-3
ii  libx11-6 2:1.6.2-3

parcellite recommends no packages.

parcellite suggests no packages.

-- no debconf information
---End Message---
---BeginMessage---
This bug is a non-bug. So, I close it.

-- 
  Hugo Lefeuvre (hugo6390)|www.hugo6390.org
4096/ ACB7 B67F 197F 9B32 1533 431C AC90 AC3E C524 065E


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