Bug#821362: soundconverter: clicking sound

2016-04-17 Thread Ezequiel
Package: soundconverter
Version: 2.1.3-1
Severity: normal

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
   * What exactly did you do (or not do) that was effective (or
 ineffective)?
   * What was the outcome of this action?
   * What outcome did you expect instead?

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



-- System Information:
Debian Release: 8.4
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages soundconverter depends on:
ii  gstreamer0.10-plugins-base  0.10.36-2
ii  gstreamer0.10-plugins-good  0.10.31-3+nmu4+b1
ii  python  2.7.9-1
ii  python-glade2   2.24.0-4
ii  python-gnome2   2.28.1+dfsg-1.1
ii  python-gst0.10  0.10.22-3

soundconverter recommends no packages.

Versions of packages soundconverter suggests:
ii  gstreamer0.10-ffmpeg1:0.10.13-dmo2
ii  gstreamer0.10-plugins-ugly  0.10.19-2.1

-- no debconf information

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#803868: marked as done (vlc: FTBFS with FFmpeg 2.9)

2016-04-17 Thread Debian Bug Tracking System
Your message dated Mon, 18 Apr 2016 00:24:58 +
with message-id 
and subject line Bug#803868: fixed in vlc 2.2.2-6
has caused the Debian Bug report #803868,
regarding vlc: FTBFS with FFmpeg 2.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.)


-- 
803868: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803868
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: vlc
Version: 2.2.1-5
Severity: important
Tags: patch
User: pkg-multimedia-maintainers@lists.alioth.debian.org
Usertags: ffmpeg2.9

Dear Maintainer,

your package fails to build with the upcoming ffmpeg 2.9.
This bug will become release-critical at some point when the
ffmpeg2.9 transition gets closer.

Attached is a patch replacing the deprecated functionality.
It also works with ffmpeg 2.8.
Please apply this patch and forward it upstream, if necessary.

These changes have little regression potential.

Best regards,
Andreas

diff --git a/debian/patches/ffmpeg_2.9.patch b/debian/patches/ffmpeg_2.9.patch
new file mode 100644
index 000..87c022a
--- /dev/null
+++ b/debian/patches/ffmpeg_2.9.patch
@@ -0,0 +1,520 @@
+Description: Replace deprecated FFmpeg API
+Author: Andreas Cadhalpun 
+Last-Update: <2015-11-02>
+
+--- vlc-2.2.1.orig/modules/codec/avcodec/audio.c
 vlc-2.2.1/modules/codec/avcodec/audio.c
+@@ -39,7 +39,7 @@
+ #include 
+ #include 
+ 
+-#include 
++#include 
+ 
+ #include "avcodec.h"
+ 
+--- vlc-2.2.1.orig/modules/codec/avcodec/chroma.c
 vlc-2.2.1/modules/codec/avcodec/chroma.c
+@@ -62,77 +62,77 @@ static const struct
+ } chroma_table[] =
+ {
+ /* Planar YUV formats */
+-{VLC_CODEC_I444, PIX_FMT_YUV444P, 0, 0, 0 },
+-{VLC_CODEC_J444, PIX_FMT_YUVJ444P, 0, 0, 0 },
++{VLC_CODEC_I444, AV_PIX_FMT_YUV444P, 0, 0, 0 },
++{VLC_CODEC_J444, AV_PIX_FMT_YUVJ444P, 0, 0, 0 },
+ 
+-{VLC_CODEC_I440, PIX_FMT_YUV440P, 0, 0, 0 },
+-{VLC_CODEC_J440, PIX_FMT_YUVJ440P, 0, 0, 0 },
++{VLC_CODEC_I440, AV_PIX_FMT_YUV440P, 0, 0, 0 },
++{VLC_CODEC_J440, AV_PIX_FMT_YUVJ440P, 0, 0, 0 },
+ 
+-{VLC_CODEC_I422, PIX_FMT_YUV422P, 0, 0, 0 },
+-{VLC_CODEC_J422, PIX_FMT_YUVJ422P, 0, 0, 0 },
++{VLC_CODEC_I422, AV_PIX_FMT_YUV422P, 0, 0, 0 },
++{VLC_CODEC_J422, AV_PIX_FMT_YUVJ422P, 0, 0, 0 },
+ 
+-{VLC_CODEC_I420, PIX_FMT_YUV420P, 0, 0, 0 },
+-{VLC_CODEC_YV12, PIX_FMT_YUV420P, 0, 0, 0 },
+-{VLC_FOURCC('I','Y','U','V'), PIX_FMT_YUV420P, 0, 0, 0 },
+-{VLC_CODEC_J420, PIX_FMT_YUVJ420P, 0, 0, 0 },
+-{VLC_CODEC_I411, PIX_FMT_YUV411P, 0, 0, 0 },
+-{VLC_CODEC_I410, PIX_FMT_YUV410P, 0, 0, 0 },
+-{VLC_FOURCC('Y','V','U','9'), PIX_FMT_YUV410P, 0, 0, 0 },
+-
+-{VLC_FOURCC('N','V','1','2'), PIX_FMT_NV12, 0, 0, 0 },
+-{VLC_FOURCC('N','V','2','1'), PIX_FMT_NV21, 0, 0, 0 },
+-
+-{VLC_CODEC_I420_9L, PIX_FMT_YUV420P9LE, 0, 0, 0 },
+-{VLC_CODEC_I420_9B, PIX_FMT_YUV420P9BE, 0, 0, 0 },
+-{VLC_CODEC_I420_10L, PIX_FMT_YUV420P10LE, 0, 0, 0 },
+-{VLC_CODEC_I420_10B, PIX_FMT_YUV420P10BE, 0, 0, 0 },
++{VLC_CODEC_I420, AV_PIX_FMT_YUV420P, 0, 0, 0 },
++{VLC_CODEC_YV12, AV_PIX_FMT_YUV420P, 0, 0, 0 },
++{VLC_FOURCC('I','Y','U','V'), AV_PIX_FMT_YUV420P, 0, 0, 0 },
++{VLC_CODEC_J420, AV_PIX_FMT_YUVJ420P, 0, 0, 0 },
++{VLC_CODEC_I411, AV_PIX_FMT_YUV411P, 0, 0, 0 },
++{VLC_CODEC_I410, AV_PIX_FMT_YUV410P, 0, 0, 0 },
++{VLC_FOURCC('Y','V','U','9'), AV_PIX_FMT_YUV410P, 0, 0, 0 },
++
++{VLC_FOURCC('N','V','1','2'), AV_PIX_FMT_NV12, 0, 0, 0 },
++{VLC_FOURCC('N','V','2','1'), AV_PIX_FMT_NV21, 0, 0, 0 },
++
++{VLC_CODEC_I420_9L, AV_PIX_FMT_YUV420P9LE, 0, 0, 0 },
++{VLC_CODEC_I420_9B, AV_PIX_FMT_YUV420P9BE, 0, 0, 0 },
++{VLC_CODEC_I420_10L, AV_PIX_FMT_YUV420P10LE, 0, 0, 0 },
++{VLC_CODEC_I420_10B, AV_PIX_FMT_YUV420P10BE, 0, 0, 0 },
+ #if LIBAVUTIL_VERSION_INT >= AV_VERSION_INT(51,13,0)
+-{VLC_CODEC_I422_9L, PIX_FMT_YUV422P9LE, 0, 0, 0 },
+-{VLC_CODEC_I422_9B, PIX_FMT_YUV422P9BE, 0, 0, 0 },
++{VLC_CODEC_I422_9L, AV_PIX_FMT_YUV422P9LE, 0, 0, 0 },
++{VLC_CODEC_I422_9B, AV_PIX_FMT_YUV422P9BE, 0, 0, 0 },
+ #endif
+-{VLC_CODEC_I422_10L, PIX_FMT_YUV422P10LE, 0, 0, 0 },
+-{VLC_CODEC_I422_10B, PIX_FMT_YUV422P10BE, 0, 0, 0 },
++{VLC_CODEC_I422_10L, AV_PIX_FMT_YUV422P10LE, 0, 0, 0 },
++{VLC_CODEC_I422_10B, AV_PIX_FMT_YUV422P10BE, 0, 0, 0 },
+ 
+-{VLC_CODEC_YUV420A, PIX_FMT_YUVA420P, 0, 0, 0 },
++{VLC_CODEC_YUV420A, AV_PIX_FMT_YUVA420P, 0, 0, 0 },
+ #if LIBAVUTIL_VERSION_CHECK( 51, 45, 0, 74, 100 )
+ {VLC_CODEC_YUV422A, 

vlc_2.2.2-6_source.changes ACCEPTED into unstable

2016-04-17 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Apr 2016 01:00:56 +0200
Source: vlc
Binary: libvlc-dev libvlc5 libvlccore-dev libvlccore8 vlc vlc-data vlc-nox 
vlc-plugin-fluidsynth vlc-plugin-jack vlc-plugin-notify vlc-plugin-sdl 
vlc-plugin-svg vlc-plugin-zvbi vlc-plugin-samba
Architecture: source
Version: 2.2.2-6
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 libvlc-dev - development files for libvlc
 libvlc5- multimedia player and streamer library
 libvlccore-dev - development files for libvlccore
 libvlccore8 - base library for VLC and its modules
 vlc- multimedia player and streamer
 vlc-data   - Common data for VLC
 vlc-nox- multimedia player and streamer (without X support)
 vlc-plugin-fluidsynth - FluidSynth plugin for VLC
 vlc-plugin-jack - Jack audio plugins for VLC
 vlc-plugin-notify - LibNotify plugin for VLC
 vlc-plugin-samba - Samba plugin for VLC
 vlc-plugin-sdl - SDL video and audio output plugin for VLC
 vlc-plugin-svg - SVG plugin for VLC
 vlc-plugin-zvbi - VBI teletext plugin for VLC
Closes: 803868
Changes:
 vlc (2.2.2-6) unstable; urgency=medium
 .
   * Use embedded copy of ffmpeg 2.8.6. (Closes: #803868)
   * debian/rules:
 * Explicitly disable gst-decode.
 * Enable sndio plugin.
 * Drop unnecessary override.
 * Fix noopt handling.
   * debian/vlc{-nox}.install: Filter plugins with a helper script.
   * debian/control: Bump Standards-Version.
   * debian/watch: Update to version 4.
Checksums-Sha1:
 bb70b697c74970075d5680932f57605c374edb3b 5718 vlc_2.2.2-6.dsc
 5720c4204ed0b72513fa2fd6e4dcaed6ebb7f35c 7205300 
vlc_2.2.2.orig-ffmpeg-2-8-6.tar.xz
 608e27ffdcb303e1de8c81e1917dcd573d141aa9 22132140 vlc_2.2.2.orig.tar.xz
 a26460fd5723d6c5726504313bc8916db3457422 72752 vlc_2.2.2-6.debian.tar.xz
Checksums-Sha256:
 4a4c96b110f1cfcb22b760da20b61a3ebb45ef20d5be5581e8dceaa17be7944e 5718 
vlc_2.2.2-6.dsc
 25bcedbdafadac3d09c325c1d46a51f53d858b26a260d5aed6b4f17fea6e07fa 7205300 
vlc_2.2.2.orig-ffmpeg-2-8-6.tar.xz
 7f729245357f337f51f34b91fa896e5b62dd7bd06dc996bab88d9f5623eaedd3 22132140 
vlc_2.2.2.orig.tar.xz
 2fe152057c66cb1f82c24d794d1463a7e4182629bac22f74079c98a91f67578c 72752 
vlc_2.2.2-6.debian.tar.xz
Files:
 77259f8085d3388fdac6ee00d89a4046 5718 video optional vlc_2.2.2-6.dsc
 0cff5dae51375f0a31a651f986ed1534 7205300 video optional 
vlc_2.2.2.orig-ffmpeg-2-8-6.tar.xz
 342fe7d6ae9b0ae1580e18c3326cdca2 22132140 video optional vlc_2.2.2.orig.tar.xz
 ffd1fac29c67e7352667bdd4d65aec22 72752 video optional vlc_2.2.2-6.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXFB8sAAoJEGny/FFupxmTq5UP/Rc2qqOCM24kSapOSJQUbM4f
zcpo9mVjfrDwaC7wCASuR1wRHHd3paiBx2Zpl65G8Q4fRAi3NLhBiobTBESGmiWf
pjQXW5KWU/7uvM8MRGmSvtHHmcLXo/tkfrZM8nKzNRP75GudDQuQFMISemBeQ9Dh
RcOGE/V3cO2n/QE+mhckjaAsbLXqy3uu81Py1YkSaQZo0/a6x/qgJsBUOReqDScW
nW6vt4HFy9cRjosS7dxmJ3D8qK1ThxWMuCoSP4iiRu2Jsha49TcsOK9FpYYN77ad
IgmRDVBZYFYoa9VxUPzOZ6nI5M1hEzDlg3a5mpeDkOgxxF6VBej+B2YsJf1HlNGI
2lR6tA2NHiYQAQRDc+wEqgif/TrnR2Hc3ucXU3Q4hORVYFxE1ok8IvPb6+y+SgNL
zxt8rm0mCkUpBJL0bq1v7bbwPV5Kz0NzM9LKHEfwQWUdE2wGG7uaIGU+TIiOBSK/
sJ4nSLRI9BGMMyG6I+HXV/JraL45BVHep5Hjpkz7/HiAoFVHv3N7OPhenq19q5Dz
QVcqd5dUfYURGNR9CDPgB+LqcVwDaYTdPla3LEngTPueCdXmNkUTygz66odruGj8
FZpRh58z3dpxxOCZZARohfYTN1aPNtSxiJ0iFOtR+sO872lUAud7271bYJQ9vRGj
oy/tswPVsgfYAXIptcRL
=j393
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of vlc_2.2.2-6_source.changes

2016-04-17 Thread Debian FTP Masters
vlc_2.2.2-6_source.changes uploaded successfully to localhost
along with the files:
  vlc_2.2.2-6.dsc
  vlc_2.2.2.orig-ffmpeg-2-8-6.tar.xz
  vlc_2.2.2.orig.tar.xz
  vlc_2.2.2-6.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


vlc_2.2.2-6_amd64.changes REJECTED

2016-04-17 Thread Debian FTP Masters


vlc_2.2.2-6.dsc: Refers to non-existing file 
'vlc_2.2.2.orig-ffmpeg-2-8-6.tar.xz'
Perhaps you need to include the file in your upload?

===

Please feel free to respond to this email if you don't understand why
your files were rejected, or if you upload new files which address our
concerns.


___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of vlc_2.2.2-6_amd64.changes

2016-04-17 Thread Debian FTP Masters
vlc_2.2.2-6_amd64.changes uploaded successfully to localhost
along with the files:
  vlc_2.2.2-6.dsc
  vlc_2.2.2-6.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processed: Bug#803868 marked as pending

2016-04-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tag 803868 pending
Bug #803868 [vlc] vlc: FTBFS with FFmpeg 2.9
Added tag(s) pending.
> thanks
Stopping processing here.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#803844: marked as done (mplayer: FTBFS with FFmpeg 2.9)

2016-04-17 Thread Debian Bug Tracking System
Your message dated Sun, 17 Apr 2016 19:37:08 +
with message-id 
and subject line Bug#803844: fixed in mplayer 2:1.3.0-1
has caused the Debian Bug report #803844,
regarding mplayer: FTBFS with FFmpeg 2.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.)


-- 
803844: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803844
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: mplayer
Version: 1.2-1
Severity: important
Tags: patch
User: pkg-multimedia-maintainers@lists.alioth.debian.org
Usertags: ffmpeg2.9

Dear Maintainer,

your package fails to build with the upcoming ffmpeg 2.9.
This bug will become release-critical at some point when the
ffmpeg2.9 transition gets closer.

Attached is a patch replacing the deprecated functionality.
It also works with ffmpeg 2.8.
Please apply this patch and forward it upstream, if necessary.

These changes are non-trivial and should be runtime-tested.

Best regards,
Andreas

diff --git a/debian/patches/0103_svn37447.patch b/debian/patches/0103_svn37447.patch
new file mode 100644
index 000..b511b5a
--- /dev/null
+++ b/debian/patches/0103_svn37447.patch
@@ -0,0 +1,34 @@
+From: rtogni
+Date: Fri, 14 Aug 2015 19:30:34 +
+Subject: [PATCH] Replace deprecated avctx->request_channels with
+ request_channel_layout
+
+Origin: svn://svn.mplayerhq.hu/mplayer/trunk@37447
+---
+ libmpcodecs/ad_ffmpeg.c | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/libmpcodecs/ad_ffmpeg.c b/libmpcodecs/ad_ffmpeg.c
+index 3abbf64..6def3bd 100644
+--- a/libmpcodecs/ad_ffmpeg.c
 b/libmpcodecs/ad_ffmpeg.c
+@@ -46,6 +46,7 @@ LIBAD_EXTERN(ffmpeg)
+ 
+ #include "libavcodec/avcodec.h"
+ #include "libavutil/dict.h"
++#include "libavutil/channel_layout.h"
+ 
+ struct adctx {
+ int last_samplerate;
+@@ -127,7 +128,7 @@ static int init(sh_audio_t *sh_audio)
+ 	lavc_context->bits_per_coded_sample = sh_audio->wf->wBitsPerSample;
+ }
+ lavc_context->channel_layout = sh_audio->channel_layout;
+-lavc_context->request_channels = audio_output_channels;
++lavc_context->request_channel_layout = av_get_default_channel_layout(audio_output_channels);
+ lavc_context->codec_tag = sh_audio->format; //FOURCC
+ lavc_context->codec_id = lavc_codec->id; // not sure if required, imho not --A'rpi
+ 
+-- 
+2.5.0
+
diff --git a/debian/patches/0104_svn37451.patch b/debian/patches/0104_svn37451.patch
new file mode 100644
index 000..7409000
--- /dev/null
+++ b/debian/patches/0104_svn37451.patch
@@ -0,0 +1,167 @@
+From: rtogni
+Date: Mon, 17 Aug 2015 21:18:31 +
+Subject: [PATCH] Replace deprecated avcodec resamples with libswresample
+ in af_lavcresample
+
+Origin: svn://svn.mplayerhq.hu/mplayer/trunk@37451
+---
+ libaf/af_lavcresample.c | 102 +++-
+ 1 file changed, 41 insertions(+), 61 deletions(-)
+
+diff --git a/libaf/af_lavcresample.c b/libaf/af_lavcresample.c
+index a69e7de..fd7fe0c 100644
+--- a/libaf/af_lavcresample.c
 b/libaf/af_lavcresample.c
+@@ -25,15 +25,20 @@
+ 
+ #include "config.h"
+ #include "af.h"
+-#include "libavcodec/avcodec.h"
+ #include "libavutil/rational.h"
++#include "libswresample/swresample.h"
++#include "libavutil/channel_layout.h"
++#include "libavutil/opt.h"
++#include "libavutil/mem.h"
++#include "libavutil/common.h"
+ 
+ // Data for specific instances of this filter
+ typedef struct af_resample_s{
+-struct AVResampleContext *avrctx;
+-int16_t *in[AF_NCH];
++struct SwrContext *swrctx;
++uint8_t *in[1];
++uint8_t *tmp[1];
+ int in_alloc;
+-int index;
++int tmp_alloc;
+ 
+ int filter_length;
+ int linear;
+@@ -70,8 +75,19 @@ static int control(struct af_instance_s* af, int cmd, void* arg)
+ 
+ if (s->ctx_out_rate != af->data->rate || s->ctx_in_rate != data->rate || s->ctx_filter_size != s->filter_length ||
+ s->ctx_phase_shift != s->phase_shift || s->ctx_linear != s->linear || s->ctx_cutoff != s->cutoff) {
+-if(s->avrctx) av_resample_close(s->avrctx);
+-s->avrctx= av_resample_init(af->data->rate, /*in_rate*/data->rate, s->filter_length, s->phase_shift, s->linear, s->cutoff);
++swr_free(>swrctx);
++if((s->swrctx=swr_alloc()) == NULL) return AF_ERROR;
++av_opt_set_int(s->swrctx, "out_sample_rate", af->data->rate, 0);
++av_opt_set_int(s->swrctx, "in_sample_rate", data->rate, 0);
++av_opt_set_int(s->swrctx, "filter_size", s->filter_length, 0);
++av_opt_set_int(s->swrctx, "phase_shift", s->phase_shift, 0);
++

mplayer_1.3.0-1_amd64.changes ACCEPTED into unstable

2016-04-17 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Apr 2016 21:19:27 +0200
Source: mplayer
Binary: mplayer-gui mencoder mplayer mplayer-doc
Architecture: source
Version: 2:1.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Mateusz Łukasik 
Description:
 mencoder   - MPlayer's Movie Encoder
 mplayer- movie player for Unix-like systems
 mplayer-doc - documentation for MPlayer
 mplayer-gui - movie player for Unix-like systems (GUI variant)
Closes: 803844
Changes:
 mplayer (2:1.3.0-1) unstable; urgency=medium
 .
   [ Mateusz Łukasik ]
   * Team upload.
   * New upstream release.
 - Fix FTBFS with ffmpeg 2.9 (Closes: #803844)
   * Drop mplayer-dbg package.
   * debian/control:
 - Rename Build-Depends-Arch to Build-Depends.
 - Bump Standards-Version to 3.9.8 (no changes needed).
   * debian/copyright:
 - Add missing GPL-2+ license.
   * debian/patches:
 - Refresh patches.
 - Add 0003_fix_spelling_error_in_binary.patch to fix lintian warning
   about spelling error in binary.
   * Update debian/*.lintian-overrides.
   * debian/rules:
 - Enable hardening=+all.
 .
   [ Sebastian Ramacher ]
   * Bump libav* B-Ds to >= 7:3.0~.
Checksums-Sha1:
 1cb3ba28bf87f8a89cc3b7abb2f79fb0da5f43d7 3399 mplayer_1.3.0-1.dsc
 26a52b0e713c9cf140c56b14711f9df28a772a11 5199400 mplayer_1.3.0.orig.tar.xz
 ba433a2aa147a46ea219b7cbf361a0d239d0517b 36632 mplayer_1.3.0-1.debian.tar.xz
Checksums-Sha256:
 00655c9ed00538413d5b6c13b756200569a1e5d42c1bf9c746220fa4520be081 3399 
mplayer_1.3.0-1.dsc
 e836081b1afa0069dcf4a55fce7aad40bf1f1e66ff8993c51e4b7ff790c8355c 5199400 
mplayer_1.3.0.orig.tar.xz
 b0400e5ab24c4d05e430a08e9aff2ad185e6267b3fd8391cfd42fc915c59 36632 
mplayer_1.3.0-1.debian.tar.xz
Files:
 c06e9514d3f9ce39434df6b406c32278 3399 video optional mplayer_1.3.0-1.dsc
 a337a4e5e209663f700fc204ec01533f 5199400 video optional 
mplayer_1.3.0.orig.tar.xz
 5ff2218af311280b284175409cad5420 36632 video optional 
mplayer_1.3.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXE+PoAAoJEGny/FFupxmTOhsP/R/+77vSZPA6XnDzc8j3sfyP
ZtIyyzow3wjMA/N6ZV1yAYPySq8/qjJDPqI0P+COMSRS64nUI46gx036Mc7VZ6uo
cYN8MwdrZeiDEBU1I0DJACEcACRangNcsQ7CKom1rRBHqWKNuD66DpE605/ECHTR
bOr4faPXSmZ02feLer/MpSq73Dgf3qWvuzad9RG1fGLc195QE1HXHs2ooROfuSqR
nQoggEx2Gs+uymWzj71I7AdFGmF6S8WgdIQQjlNBNgZLOUNy7fTkRDJ3PopqYoUi
X7cZLWCrrn4//oZ5A3fMflc0Ppy6wrXV5s/el1iaMVM+Pt9sdwfxPWYXpujOQ93H
CwNaW5mt6Tv3avp1zZKyaXXH7SCIktYymCXODpm9AgAgJJOjC/2uLH4AbtB+0AEJ
gvWj+JfG+iMnc4zFOilMWYAZPh2mlz112jTG3PUiIrYv05JwW8eTsnZXCDlHNVDn
RnJf3hV0KUpV6Ca6VrT6Tm/22SCyVYdQn85rvsp1vT0R/AxbcSRMMmSYZCFqJ28P
Pt3RG1tbvKOh3iRNdd05ad7dUJx1X0IhrtXIaisFc3cFwc9NVRq7vLrRfIpUwBOQ
OG08jVTRf1ChQC3xHFJl/x7zCXK5ID79g2+3YoYPv8l3hihiKHi/A8lRFmWBJgxV
vSVEJqSoqk7gxobVQCgB
=w+mI
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Processing of mplayer_1.3.0-1_amd64.changes

2016-04-17 Thread Debian FTP Masters
mplayer_1.3.0-1_amd64.changes uploaded successfully to localhost
along with the files:
  mplayer_1.3.0-1.dsc
  mplayer_1.3.0.orig.tar.xz
  mplayer_1.3.0-1.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processed: Re: Bug#806046: horgand: FTBFS when built with dpkg-buildpackage -A (No such file or directory)

2016-04-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 806046 + patch
Bug #806046 [src:horgand] horgand: FTBFS when built with dpkg-buildpackage -A 
(No such file or directory)
Added tag(s) patch.
> thanks
Stopping processing here.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#806046: horgand: FTBFS when built with dpkg-buildpackage -A (No such file or directory)

2016-04-17 Thread Santiago Vila
tags 806046 + patch
thanks

>debian/rules override_dh_install
> make[1]: Entering directory '/<>'
> dh_install
> cp debian/horgand.wrapper /<>/debian/horgand/usr/bin/horgand
> cp: cannot create regular file 
> '/<>/debian/horgand/usr/bin/horgand': No such file or directory
> debian/rules:10: recipe for target 'override_dh_install' failed

Explanation: We are creating arch-independent packages only,
so debian/horgand/[...] does not exist because "horgand" is
arch-dependent.

The trivial fix is to override dh_install only when creating
arch-dependent packages.

Patch attached.

Thanks.--- a/debian/rules
+++ b/debian/rules
@@ -6,7 +6,7 @@
 override_dh_auto_configure:
dh_auto_configure -- --bindir=/usr/lib/horgand
 
-override_dh_install:
+override_dh_install-arch:
dh_install
cp debian/horgand.wrapper $(CURDIR)/debian/horgand/usr/bin/horgand
chmod 755 $(CURDIR)/debian/horgand/usr/bin/horgand
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

handbrake_0.10.5+ds1-2_source.changes ACCEPTED into unstable

2016-04-17 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Apr 2016 20:46:08 +0200
Source: handbrake
Binary: handbrake handbrake-cli
Architecture: source
Version: 0.10.5+ds1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 handbrake  - versatile DVD ripper and video transcoder (GTK+ GUI)
 handbrake-cli - versatile DVD ripper and video transcoder (command line)
Changes:
 handbrake (0.10.5+ds1-2) unstable; urgency=medium
 .
   * Upload to unstable.
Checksums-Sha1:
 d18540b88ad53dab6b024d2e4b123476aebde65e 2855 handbrake_0.10.5+ds1-2.dsc
 e4130f5adde95e0b453b02f8032ec22ff3aa3f7a 15516 
handbrake_0.10.5+ds1-2.debian.tar.xz
Checksums-Sha256:
 1ffc816f3a15bb39ae7fd9f6b3682e6150c4a68f509138e6ada9f3465e6a3462 2855 
handbrake_0.10.5+ds1-2.dsc
 50d21243c26f10a75668215ce378ee6cf25057f0fd077209421c84fcedbc1512 15516 
handbrake_0.10.5+ds1-2.debian.tar.xz
Files:
 24eeab56b4bdbbb00536eb449d180b91 2855 graphics optional 
handbrake_0.10.5+ds1-2.dsc
 7b3afefad191ad9d9f19def81bc9d345 15516 graphics optional 
handbrake_0.10.5+ds1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXE90BAAoJEGny/FFupxmT3UgP/iC25y+57V2WAuiJd28wU/lI
FLgZEwrV6sSDIEW0DHhhFRmD/OzOEOa6EghhkweGFaoLT/txx0tGWFHfqoOp4eZn
lyeDyhbw3bduryEEG2C/4qQFwS5HVrQWfME7bRLdvgRvHgIr20qnKODCACunn2qr
KY4PBeg2gmZPZAKAHCnOn9KToqo04Z7x3YWhM484/weMy+HFpYKv7ujtt0JEy/4O
LZddXbgFFW2PWuz+lH4nBfn/4MXbObtYtdh/4RSkUNC1PyGHE8Bcm0fjCI5EgsTT
Xu2q4tr7MRYlsspDsIw1vqiLMs933qZ5O1aB/Tkb3J0DOZ400O/Gr0xMmyukrH4/
kgHEoqAmExJYK6zYtSeB6n0NvEWrwWNfQMyNSmc7KJNsOQIvJy7xkR6LjKiOubL/
qzpFBBwLfgQrbKtIeJkYJ3jBuvWRC47npGag1pSU8Psqyabj7iJt4UYrYV46qk5g
BRvReUHE1yXFkE7BeWuqJv+MgMh4hkiPjYTwVE/Num6HSDt14CRHjp8rivPoplNW
bQTCkdnRkoVpJnuCDsKNJf183lpDk13mNuUSgo5wj3EX76NwEo47aV6v6vNxcbUx
EkN26MzIL/sm1Djbu4/tuWZ3Gfb0wfBXDCyBep1rkO301Xj607Y+EuhafLPFOHYB
/n4nxy4mc7ZDSdapPs5D
=u10Y
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of handbrake_0.10.5+ds1-2_source.changes

2016-04-17 Thread Debian FTP Masters
handbrake_0.10.5+ds1-2_source.changes uploaded successfully to localhost
along with the files:
  handbrake_0.10.5+ds1-2.dsc
  handbrake_0.10.5+ds1-2.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#818035: libva not working

2016-04-17 Thread Sebastian Ramacher
On 2016-04-17 20:35:13, Jürgen Bausa wrote:
> > > 
> > > I get an error running vainfo on plain jessie.
> > 
> > So what was the error?
> 
> Now I reinstalled plain jessie packages. This is the error I get (now I am 
> running backport kernel 4.4. When initially reporting the bug it was 4.3):
> 
> 
> jba@lisa:~$ vainfo
> libva info: VA-API version 0.36.0
> libva info: va_getDriverName() returns 0
> libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
> libva info: Found init function __vaDriverInit_0_36
> libva error: /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so init failed
> libva info: va_openDriver() returns -1
> vaInitialize failed with error code -1 (unknown libva error),exit

Do you get anything more if you run VA_INTEL_DEBUG=1 vainfo?

Regards
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#818035: libva not working

2016-04-17 Thread Jürgen Bausa
> > 
> > I get an error running vainfo on plain jessie.
> 
> So what was the error?

Now I reinstalled plain jessie packages. This is the error I get (now I am 
running backport kernel 4.4. When initially reporting the bug it was 4.3):


jba@lisa:~$ vainfo
libva info: VA-API version 0.36.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_0_36
libva error: /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so init failed
libva info: va_openDriver() returns -1
vaInitialize failed with error code -1 (unknown libva error),exit

> 
> > Therefore I made backports of libva from
> > testing and installed them, but it still doesnt work. I only get a
> > different error message.> 
> Did you also backport intel-vaapi-driver?

Yes.

Regards,

Juergen

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processed: ffmpeg 3.0 is now in unstable

2016-04-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 803833 serious
Bug #803833 [libavg] libavg: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> severity 803868 serious
Bug #803868 [vlc] vlc: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> severity 803835 serious
Bug #803835 [libextractor] libextractor: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> severity 803866 serious
Bug #803866 [vcmi] vcmi: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> severity 807853 serious
Bug #807853 [k3b] k3b: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> severity 803813 serious
Bug #803813 [ffmpegthumbs] ffmpegthumbs: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> severity 803844 serious
Bug #803844 [mplayer] mplayer: FTBFS with FFmpeg 2.9
Severity set to 'serious' from 'important'
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
803813: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803813
803833: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803833
803835: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803835
803844: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803844
803866: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803866
803868: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=803868
807853: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=807853
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#803844: ffmpeg 3.0 is now in unstable

2016-04-17 Thread Sebastian Ramacher
severity 803833 serious
severity 803868 serious
severity 803835 serious
severity 803866 serious
severity 807853 serious
severity 803813 serious
severity 803844 serious
thanks

ffmpeg 3.0 is now in unstable. Raising the severity accordingly.

Regards
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

ffmpeg_3.0.1-3_amd64.changes ACCEPTED into unstable

2016-04-17 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Apr 2016 19:24:37 +0200
Source: ffmpeg
Binary: ffmpeg ffmpeg-doc libavcodec57 libavcodec-extra57 libavcodec-extra 
libavcodec-dev libavdevice57 libavdevice-dev libavfilter6 libavfilter-dev 
libavformat57 libavformat-dev libavresample3 libavresample-dev libavutil55 
libavutil-dev libpostproc54 libpostproc-dev libswresample2 libswresample-dev 
libswscale4 libswscale-dev libav-tools
Architecture: source
Version: 7:3.0.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Sebastian Ramacher 
Description:
 ffmpeg - Tools for transcoding, streaming and playing of multimedia files
 ffmpeg-doc - Documentation of the FFmpeg multimedia framework
 libav-tools - Compatibility links for libav-tools (transitional package)
 libavcodec-dev - FFmpeg library with de/encoders for audio/video codecs - 
developm
 libavcodec-extra - FFmpeg library with extra codecs (metapackage)
 libavcodec-extra57 - FFmpeg library with additional de/encoders for 
audio/video codecs
 libavcodec57 - FFmpeg library with de/encoders for audio/video codecs - runtime
 libavdevice-dev - FFmpeg library for handling input and output devices - 
developmen
 libavdevice57 - FFmpeg library for handling input and output devices - runtime 
fi
 libavfilter-dev - FFmpeg library containing media filters - development files
 libavfilter6 - FFmpeg library containing media filters - runtime files
 libavformat-dev - FFmpeg library with (de)muxers for multimedia containers - 
develo
 libavformat57 - FFmpeg library with (de)muxers for multimedia containers - 
runtim
 libavresample-dev - FFmpeg compatibility library for resampling - development 
files
 libavresample3 - FFmpeg compatibility library for resampling - runtime files
 libavutil-dev - FFmpeg library with functions for simplifying programming - 
devel
 libavutil55 - FFmpeg library with functions for simplifying programming - runti
 libpostproc-dev - FFmpeg library for post processing - development files
 libpostproc54 - FFmpeg library for post processing - runtime files
 libswresample-dev - FFmpeg library for audio resampling, rematrixing etc. - 
developme
 libswresample2 - FFmpeg library for audio resampling, rematrixing etc. - 
runtime f
 libswscale-dev - FFmpeg library for image scaling and various conversions - 
develo
 libswscale4 - FFmpeg library for image scaling and various conversions - runtim
Changes:
 ffmpeg (7:3.0.1-3) unstable; urgency=medium
 .
   * Team upload.
   * Upload to unstable.
Checksums-Sha1:
 8cd13987ffa6a9770739e627f205fda14cdcc5d0 4575 ffmpeg_3.0.1-3.dsc
 2a5da2c8e0eda34a0b46e5174b8230b895674034 40940 ffmpeg_3.0.1-3.debian.tar.xz
Checksums-Sha256:
 43f9e0f07e7664a3b0789f9911afa6eae847ca4509b4cc8c68be56c002e11c00 4575 
ffmpeg_3.0.1-3.dsc
 4fd1130d20ec0df9dbe5c8c0e8904bb4e5e5aa3ef8e91642b15a69ece94c4c4a 40940 
ffmpeg_3.0.1-3.debian.tar.xz
Files:
 b40ee5daa927820180b8dc8c1061a5e8 4575 video optional ffmpeg_3.0.1-3.dsc
 bbd9a3e23c9ac4d173a9ed1318466e6f 40940 video optional 
ffmpeg_3.0.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXE8mxAAoJEGny/FFupxmTXqkP/36xXIne8rFrvIR7AunJCfUn
t7EAu7vbK3sW9NE32fniOI2x7yNp/W7ceMCg5h+qK/Os5guLDKKVG1XzSsgKyYWu
UKToEAhWnHIwsXZ3YQa+W8UGixd/SX6H9u7A1JNP/x2t4N2B7BR3fj6boQbKtnPq
mmd0LTiYodZPYkI+POgtNSQPa2aNZiHX/VDe13koLQZ2lrTQgUmEhDppWeooTh3H
nFPBEZYCKq6XouSxvSDK2yG6KdaeFv/PZN3gwagOMtPNuSYF+zVPOLwg0VQklD7O
4lhbh9x/gKsAZ9qkuKt41L948kSbli34qYvWh749W7H7qvuo2HhX2+mBT1NJcikS
wVw81qo+x6DVnn405H7+DrPi3n1UWEjy0vqBf1xS/spMxQegoC/hjQ7mbcj+G/Q9
dOXpSiE9CkCqwb4WkRaUOSQkh3EbMnyTv7SeD54u/AVEJBC9VccQ72PM78TmhpT0
hNzi3FkUaNgBmi30yPe2efgP3sCdDxfkht2fCJPwwjUHxUkNvCmP0zbVHGvQlkWH
VZQ9iT1x1avYHJ0vCEiuuu7jc2tftoInIe0t3868rYxsjhEMlSLtGI66WTTY74do
hHDLyr/StN3jKoKlYwFgBAAc9//YKI2Hv6Wk4CTCTGyzriJPTizliyJh8s2Oib/5
1kTBxjXqYTW+DF33Kr3j
=qWAG
-END PGP SIGNATURE-


Thank you for your contribution to Debian.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#821325: musescore: new upstream release 2.0.3

2016-04-17 Thread Tobias Frost
Source: musescore
Severity: wishlist

Would be great if you could package it :)


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

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Processing of ffmpeg_3.0.1-3_amd64.changes

2016-04-17 Thread Debian FTP Masters
ffmpeg_3.0.1-3_amd64.changes uploaded successfully to localhost
along with the files:
  ffmpeg_3.0.1-3.dsc
  ffmpeg_3.0.1-3.debian.tar.xz

Greetings,

Your Debian queue daemon (running on host franck.debian.org)

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#820416: kodi: FTBFS in testing (Segmentation fault)

2016-04-17 Thread Balint Reczey
Control: severity -1 normal
Control: tags -1 upstream confirmed

Hi Santiago,

2016-04-16 18:43 GMT+02:00 Santiago Vila :
> I've put the program kodi-test here:
>
> https://people.debian.org/~sanvila/bug-820416/kodi-test.gz
>
> It was built on a stretch chroot today (for amd64).
>
> To reproduce the segfault, just install the build-dependencies for
> kodi, i.e. on a stretch chroot, please do:
>
> apt-get build-dep kodi
>
> then try to execute kodi-test:
>
> ./kodi-test
>
> This is all you need to reproduce the problem.

Thank you for the bug report and the additional information.

I have just created a chroot for reproducing the issue and even after I
set memory limits it did not crash.
I also built kodi-test myself which did not crash either.

root@stretch:/kodi-16.1~rc2+dfsg1# ulimit -a
core file size  (blocks, -c) 0
data seg size   (kbytes, -d) unlimited
scheduling priority (-e) 0
file size   (blocks, -f) unlimited
pending signals (-i) 30616
max locked memory   (kbytes, -l) 64
max memory size (kbytes, -m) 2048000
open files  (-n) 65536
pipe size(512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority  (-r) 0
stack size  (kbytes, -s) 8192
cpu time   (seconds, -t) unlimited
max user processes  (-u) 30616
virtual memory  (kbytes, -v) 4096000
file locks  (-x) unlimited

./kodi-test-dloaded
...
[--] Global test environment tear-down
[==] 574 tests from 89 test cases ran. (9800 ms total)
[  PASSED  ] 574 tests.
Clean shutdown of TestGlobalPattern1

Valgrind found a few issues in Google Test, but nothing extraordinary:
...
==21850== Use of uninitialised value of size 8
==21850==at 0xFAF6201: _itoa_word (in /lib/x86_64-linux-gnu/libc-2.22.so)
==21850==by 0xFAF998C: vfprintf (in /lib/x86_64-linux-gnu/libc-2.22.so)
==21850==by 0xFB23258: vsnprintf (in /lib/x86_64-linux-gnu/libc-2.22.so)
==21850==by 0xFB00D11: snprintf (in /lib/x86_64-linux-gnu/libc-2.22.so)
==21850==by 0x130A48A: testing::(anonymous 
namespace)::PrintByteSegmentInObjectTo(unsigned char const*, unsigned long, 
unsigned long, std::ostream*) [clone .constprop.392] (gtest-printers
.cc:72)
==21850==by 0x130E6EC: PrintBytesInObjectToImpl (gtest-printers.cc:90)
==21850==by 0x130E6EC: testing::internal2::PrintBytesInObjectTo(unsigned 
char const*, unsigned long, std::ostream*) (gtest-printers.cc:112)
==21850==by 0x134E4A2: PrintValue (gtest-printers.h:136)
==21850==by 0x134E4A2: operator<<  
(gtest-printers.h:201)
==21850==by 0x134E4A2: DefaultPrintNonContainerTo 
(gtest-printers.h:245)
==21850==by 0x134E4A2: DefaultPrintTo (gtest-printers.h:338)
==21850==by 0x134E4A2: PrintTo (gtest-printers.h:376)
==21850==by 0x134E4A2: Print (gtest-printers.h:600)
==21850==by 0x134E4A2: UniversalPrint (gtest-printers.h:756)
==21850==by 0x134E4A2: Print (gtest-printers.h:684)
==21850==by 0x134E4A2: PrintToString (gtest-printers.h:849)
==21850==by 0x134E4A2: 
testing::internal::ParameterizedTestCaseInfo::RegisterTests() 
(gtest-param-util.h:508)
==21850==by 0x130BC44: RegisterTests (gtest-param-util.h:602)
==21850==by 0x130BC44: 
testing::internal::UnitTestImpl::RegisterParameterizedTests() (gtest.cc:2290)
==21850==by 0x1322ED8: 
testing::internal::UnitTestImpl::PostFlagParsingInit() (gtest.cc:4125)
==21850==by 0x132C034: void 
testing::internal::InitGoogleTestImpl(int*, char**) (gtest.cc:4991)
==21850==by 0x8461B6: main (xbmc-test.cpp:40)
...

OTOH in a VirtualBox VM limited to 2GB of RAM i was able to
reproduce the crash and got a meaningful backtrace:
...
#0  __GI___pthread_mutex_lock (mutex=mutex@entry=0x140) at 
../nptl/pthread_mutex_lock.c:68
__PRETTY_FUNCTION__ = "__pthread_mutex_lock"
type = 
id = 
#1  0x014b08b4 in XbmcThreads::pthreads::RecursiveMutex::lock 
(this=0x140) at 
/home/vagrant/kodi-16.1~rc2+dfsg1/xbmc/threads/platform/pthreads/CriticalSection.h:49
No locals.
#2  XbmcThreads::CountingLockable::lock 
(this=0x140) at /home/vagrant/kodi-16.1~rc2+dfsg1/xbmc/threads/Lockables.h:60
No locals.
#3  XbmcThreads::UniqueLock::UniqueLock (lockable=..., 
this=) at 
/home/vagrant/kodi-16.1~rc2+dfsg1/xbmc/threads/Lockables.h:127
No locals.
#4  CSingleLock::CSingleLock (cs=..., this=) at 
/home/vagrant/kodi-16.1~rc2+dfsg1/xbmc/threads/SingleLock.h:38
No locals.
#5  XbmcThreads::CEventGroup::Set (child=0x7ffc9df57090, this=0xe0) at 
Event.h:122
No locals.
#6  CEvent::Set (this=this@entry=0x7ffc9df57090) at Event.cpp:80
iter =
l = { = 
{ = {}, mutex = @0x7ffc9df57098, owns 
= true}, }
#7  0x014b2d09 in CThread::staticThread (data=0x7ffc9df56fc0) at 
Thread.cpp:137
pThread = 0x7ffc9df56fc0
name = "AlarmClock"
id = 

Processed: Re: kodi: FTBFS in testing (Segmentation fault)

2016-04-17 Thread Debian Bug Tracking System
Processing control commands:

> severity -1 normal
Bug #820416 [src:kodi] kodi: FTBFS in testing (Segmentation fault)
Severity set to 'normal' from 'serious'
> tags -1 upstream confirmed
Bug #820416 [src:kodi] kodi: FTBFS in testing (Segmentation fault)
Added tag(s) confirmed and upstream.

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

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#821290: streamtuner2: Audacious package missing from dependencies.

2016-04-17 Thread Corcodel Marian
Package: streamtuner2
Version: 2.1.3-1
Severity: normal

Hi

Whithout audacious installed multiple errors message appear but very bad , fail
to start after installation.



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

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

Versions of packages streamtuner2 depends on:
ii  python-glade2 2.24.0-4
ii  python-gtk2   2.24.0-4
ii  python-imaging2.6.1-2+deb8u2
ii  python-keybinder  0.3.0-3
ii  python-lxml   3.4.0-1
ii  python-pyquery1.2.4-1
ii  python-requests   2.4.3-6
pn  python:any

streamtuner2 recommends no packages.

Versions of packages streamtuner2 suggests:
ii  audacious  3.5-2
pn  totem  
pn  vlc

-- no debconf information

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Приветик

2016-04-17 Thread Крупенин Дора
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers