Processed: retitle 870959 to RM: pearpc -- RoQA; missed both jessie and stretch, tagging 852235 ...

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

> retitle 870959 RM: pearpc -- RoQA; missed both jessie and stretch
Bug #870959 [ftp.debian.org] RM: pearpc -- RoQA
Changed Bug title to 'RM: pearpc -- RoQA; missed both jessie and stretch' from 
'RM: pearpc -- RoQA'.
> tags 852235 - moreinfo
Bug #852235 [ftp.debian.org] RM: autoconf2.59 -- RoM; not used anymore
Removed tag(s) moreinfo.
> severity 831549 serious
Bug #831549 [src:gnash] gnash: mtasc removal
Severity set to 'serious' from 'important'
> found 831549 0.8.11~git20160608-1.3
Bug #831549 [src:gnash] gnash: mtasc removal
Marked as found in versions gnash/0.8.11~git20160608-1.3.
> tags 831549 + sid buster
Bug #831549 [src:gnash] gnash: mtasc removal
Added tag(s) sid and buster.
> severity 831551 serious
Bug #831551 [src:soundmanager2] soundmanager2: mtasc removal
Severity set to 'serious' from 'important'
> found 831551 2.97a.20150601+dfsg2-1
Bug #831551 [src:soundmanager2] soundmanager2: mtasc removal
Marked as found in versions soundmanager2/2.97a.20150601+dfsg2-1.
> tags 831551 + sid buster
Bug #831551 [src:soundmanager2] soundmanager2: mtasc removal
Added tag(s) buster and sid.
> severity 831550 serious
Bug #831550 [src:libjs-swfobject] libjs-swfobject: mtasc removal
Severity set to 'serious' from 'important'
> found 831550 2.2+dfsg-2
Bug #831550 [src:libjs-swfobject] libjs-swfobject: mtasc removal
Marked as found in versions libjs-swfobject/2.2+dfsg-2.
> tags 831550 + sid buster
Bug #831550 [src:libjs-swfobject] libjs-swfobject: mtasc removal
Added tag(s) buster and sid.
> severity 831548 serious
Bug #831548 [src:dojo] dojo: mtasc removal
Severity set to 'serious' from 'important'
> found 831548 1.11.0+dfsg-1
Bug #831548 [src:dojo] dojo: mtasc removal
Marked as found in versions dojo/1.11.0+dfsg-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
831548: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831548
831549: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831549
831550: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831550
831551: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=831551
852235: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=852235
870959: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870959
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#870676: marked as done (ffmpeg requires NEON on armhf, which is not part of the ARMv7 ABI)

2017-08-08 Thread Debian Bug Tracking System
Your message dated Wed, 09 Aug 2017 02:49:15 +
with message-id 
and subject line Bug#870622: fixed in ffmpeg 7:3.3.3-2
has caused the Debian Bug report #870622,
regarding ffmpeg requires NEON on armhf, which is not part of the ARMv7 ABI
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.)


-- 
870622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870622
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: ffmpeg
Version: 7:3.3.3-1
Severity: important
Tags: patch
User: ubuntu-de...@lists.ubuntu.com
Usertags: origin-ubuntu artful ubuntu-patch autopkgtest

Dear maintainers,

The latest release of ffmpeg enables NEON support by default when building
on armhf; however, NEON support is not a standard part of the ARMv7 ABI, and
Debian supports running armhf on chips that do not implement NEON.

Using NEON based on runtime detection of support for it is fine, but the
existing ffmpeg implementation doesn't appear to do this, instead using NEON
based on build-time configuration with no fallback.

This issue was noticed in Ubuntu only because the autopkgtests for ffmpeg
and x264 triggered an unaligned access in the NEON code, which is *also* not
a portable assumption on armhf; however, if the NEON code had not had any
unaligned access, the fact that NEON was used would have gone unnoticed on
Ubuntu infrastructure.

  http://autopkgtest.ubuntu.com/packages/f/ffmpeg/artful/armhf
  http://autopkgtest.ubuntu.com/packages/x/x264/artful/armhf

(And if upstream does fix their code to support runtime detection of NEON
support, then there will be a different bug for us to worry about fixing!)

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org
diff -Nru ffmpeg-3.3.3/debian/rules ffmpeg-3.3.3/debian/rules
--- ffmpeg-3.3.3/debian/rules   2017-08-01 07:33:41.0 -0700
+++ ffmpeg-3.3.3/debian/rules   2017-08-03 17:43:44.0 -0700
@@ -127,6 +127,14 @@
--enable-libiec61883
 endif
 
+# upstream does not implement runtime detection of NEON support at runtime;
+# therefore NEON must be disabled at build time.  (This also works around
+# the fact that the NEON implementation does unaligned access, which is not
+# a portable assumption for armhf.)
+ifeq ($(DEB_HOST_ARCH),armhf)
+   CONFIG += --disable-neon
+endif
+
 # Some build-dependencies are not installable on some architectures.
 ifeq (,$(filter $(DEB_HOST_ARCH),powerpcspe))
CONFIG_extra += --enable-netcdf
--- End Message ---
--- Begin Message ---
Source: ffmpeg
Source-Version: 7:3.3.3-2

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

Debian distribution maintenance software
pp.
James Cowgill  (supplier of updated ffmpeg 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: Tue, 08 Aug 2017 21:53:47 -0400
Source: ffmpeg
Binary: ffmpeg ffmpeg-doc libavcodec57 libavcodec-extra57 libavcodec-extra 
libavcodec-dev libavdevice57 libavdevice-dev libavfilter6 libavfilter-extra6 
libavfilter-extra 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.3.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
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
 

Bug#870622: marked as done (ffmpeg: autopkgtest SIGBUS on armhf with binutils 2.29)

2017-08-08 Thread Debian Bug Tracking System
Your message dated Wed, 09 Aug 2017 02:49:15 +
with message-id 
and subject line Bug#870622: fixed in ffmpeg 7:3.3.3-2
has caused the Debian Bug report #870622,
regarding ffmpeg: autopkgtest SIGBUS on armhf with binutils 2.29
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.)


-- 
870622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870622
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: ffmpeg
Version: 7:3.3.3-1
Severity: important
Tags: sid buster
X-Debbugs-CC: debian-...@lists.debian.org, binut...@packages.debian.org

Hi,

I was looking at the Ubuntu proposed migration pages for ffmpeg and
noticed that the autopkgtest failed on armhf:
https://objectstorage.prodstack4-5.canonical.com/v1/AUTH_77e2ada1e7a84929a74ba3b87153c0ac/autopkgtest-artful/artful/armhf/f/ffmpeg/20170803_033623_bd98d@/log.gz

It fails with SIGBUS when running the h264 tests.

> (gdb) bt 
> #0  0xf6456e12 in ff_h264_idct_add_neon () at 
> src/libavcodec/arm/h264idct_neon.S:24
> #1  0xf6456f3c in ff_h264_idct_add16_neon () at 
> src/libavcodec/arm/h264idct_neon.S:118
> #2  0xf659c88c in hl_decode_mb_idct_luma (p=, 
> dest_y=, linesize=, block_offset= out>, pixel_shift=0, transform_bypass=0, simple=1,
> mb_type=, sl=, h=) at 
> src/libavcodec/h264_mb.c:778
> #3  hl_decode_mb_444_simple_8 (h=0xaab6ea00, sl=) at 
> src/libavcodec/h264_mb_template.c:349
> #4  0xf65a471e in ff_h264_hl_decode_mb (h=h@entry=0xaab6ea00, 
> sl=sl@entry=0xaab7a080) at src/libavcodec/h264_mb.c:810
> #5  0xf65b3670 in decode_slice (avctx=, 
> arg=arg@entry=0xaab7a080) at src/libavcodec/h264_slice.c:2553
> #6  0xf65b45a6 in ff_h264_execute_decode_slices (h=h@entry=0xaab6ea00) at 
> src/libavcodec/h264_slice.c:2728
> #7  0xf65b954a in decode_nal_units (buf_size=20, buf=0xaab35f00 "", 
> h=0xaab6ea00) at src/libavcodec/h264dec.c:715
> #8  h264_decode_frame (avctx=0xaab0d850, data=0xaab0dc70, 
> got_frame=0xaab38a2c, avpkt=) at src/libavcodec/h264dec.c:1016
> #9  0xf679c8e2 in frame_worker_thread (arg=0xaab38908) at 
> src/libavcodec/pthread_frame.c:199
> #10 0xf61895e8 in start_thread () from 
> /lib/arm-linux-gnueabihf/libpthread.so.0
> #11 0xf612a57c in ?? () from /lib/arm-linux-gnueabihf/libc.so.6

> (gdb) print $pc
> $1 = (void (*)()) 0xf6456e12 

> (gdb) disassemble
> Dump of assembler code for function ff_h264_idct_add_neon:
>0xf6456e10 <+0>: vld1.64 {d0-d3}, [r1 :128]
>0xf6456e14 <+4>: vmov.i16q15, #0 ; 0x
>0xf6456e18 <+8>: vswpd1, d2
>0xf6456e1c <+12>:vst1.16 {d30-d31}, [r1 :128]!

Notice that the program counter is misaligned - there is no instruction
at 0xf6456e12.

Since nothing has been changed in h264idct_neon.S for > 2 years, I
guessed a toolchain issue and sure enough there is a difference
between compiling the same file with binutils 2.28 and 2.29:

> --- h264idct_neon-binutils-2.28-5   2017-08-03 12:48:07.560036237 +
> +++ h264idct_neon-binutils-2.29-3   2017-08-03 12:47:43.666083113 +
> @@ -89,8 +89,8 @@
>   118:  f04f 0e00   movne.w lr, #0
>   11c:  f1be 0f00   cmp.w   lr, #0
>   120:  bf14ite ne
> - 122:  f2af 0e7f   subwne  lr, pc, #127; 0x7f
> - 126:  f2af 1e27   subweq  lr, pc, #295; 0x127
> + 122:  f2af 0e7e   subwne  lr, pc, #126; 0x7e
> + 126:  f2af 1e26   subweq  lr, pc, #294; 0x126
>   12a:  47f0blx lr
>   12c:  f1bc 0c01   subs.w  ip, ip, #1
>   130:  f101 0120   add.w   r1, r1, #32
[...]

Could the ARM porters look and see if the assembly in h264idct_neon.S is
sane? If it is, this is probably a binutils bug.

Thanks,
James



signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
Source: ffmpeg
Source-Version: 7:3.3.3-2

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

Debian distribution maintenance software
pp.
James Cowgill  (supplier of updated ffmpeg 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 

ffmpeg_3.3.3-2_source.changes ACCEPTED into unstable

2017-08-08 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 08 Aug 2017 21:53:47 -0400
Source: ffmpeg
Binary: ffmpeg ffmpeg-doc libavcodec57 libavcodec-extra57 libavcodec-extra 
libavcodec-dev libavdevice57 libavdevice-dev libavfilter6 libavfilter-extra6 
libavfilter-extra 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.3.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: James Cowgill 
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
 libavfilter-extra - FFmpeg library with extra filters (metapackage)
 libavfilter-extra6 - FFmpeg library with extra media filters - runtime 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
Closes: 870622
Changes:
 ffmpeg (7:3.3.3-2) unstable; urgency=medium
 .
   * Team upload.
   * Add 0005-arm-thumb2-blx.patch to fix SIGBUS on armhf.
 Thanks to Jiong Wang. (Closes: #870622)
Checksums-Sha1:
 b0eb1a93505c24d0a1ee5642d70a0d544da5756d 4892 ffmpeg_3.3.3-2.dsc
 e063bf40c292de222187d5a92530ddfa42855ccf 44460 ffmpeg_3.3.3-2.debian.tar.xz
 0a9519e703600f86d9a9f49eb2d5ee036198b38b 13346 ffmpeg_3.3.3-2_source.buildinfo
Checksums-Sha256:
 c36555e20532a13bc1f6db87f711597d41f0a5d37255130b7d1b01fd131cee7e 4892 
ffmpeg_3.3.3-2.dsc
 e74fee0034fb29d03a245b66907e1a798c437beafc1591bbff044b57a086ad13 44460 
ffmpeg_3.3.3-2.debian.tar.xz
 f80d489337b2ab0cc1a7c0ca0be12c71bc856101e6fbca0c8339855785380ca2 13346 
ffmpeg_3.3.3-2_source.buildinfo
Files:
 f44cba52f09806488609fc780048bf4d 4892 video optional ffmpeg_3.3.3-2.dsc
 48eb8edc0b2ab5cf1311604245813435 44460 video optional 
ffmpeg_3.3.3-2.debian.tar.xz
 a607980552991640e859d362e2c61dfb 13346 video optional 
ffmpeg_3.3.3-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJIBAEBCgAyFiEE+Ixt5DaZ6POztUwQx/FnbeotAe8FAlmKa2gUHGpjb3dnaWxs
QGRlYmlhbi5vcmcACgkQx/FnbeotAe+znA//cNLf1ekuPn1kfSLlDVvPvF6psD3D
Ef1mMmtpVYZ6XMwf7Kh6ZyEGmlJykdTJs9NPFS/seg6KDJLxAE/dpfvSzSlKo0wn
CIyrsrK2b5+NSsjf3Egy5jspPZ613vcsVkiqSvyVnVqGadqJ8mIAnSIunN2CdecN
vL3OrfjXTDmwQGqNsqK36MX2osACEeT1Na+4v3iitrfRgh9x9uAv+zOI8h4+zf1d
W5dNQDCnFe+GST8zC7hfNQL8Y9MdyKhzdXbuS/QQV1WFJr/HrBfTzr0bh/UzlnX/
1ZFGf+P0uAFJMNDCpsYIUC0rtWljgUvKB8fkk4n6SwM0yrZ9mhs42tMcFXuLVlgD
KmGgC6zUKJ8JvNvI4xGbS1J4I+Tl8kQPSW9LkEWqvXYJKevhtntBmh0uHHxndq6Y
lYOnTdV5DapIQG4IgT8RNC+3j3tBPTL2HurVIhIiltVGcLCimUV5AzGJCJxJH2Cd
rcIuDK+zSG8JK0e9LAdtIjfnk4OODxqmeYllCrsmXY2/Qyn0OZ17CmDH8pMbmM3w
FpEuVrejJtut3Nwvf1UqwnUV+m0bNAUwPJIoisSbq+GOe+dJQGT7h013FyZ9mGlj
bKl4M8b5LUVCKolbuT2apSfYB895t2yJObkytWHVDWM6bSafqxVLi0lAG4q4Fn9F
xA+9cMIzhsDqicY=
=YCRw
-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 ffmpeg_3.3.3-2_source.changes

2017-08-08 Thread Debian FTP Masters
ffmpeg_3.3.3-2_source.changes uploaded successfully to localhost
along with the files:
  ffmpeg_3.3.3-2.dsc
  ffmpeg_3.3.3-2.debian.tar.xz
  ffmpeg_3.3.3-2_source.buildinfo

Greetings,

Your Debian queue daemon (running on host usper.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#870622 marked as pending

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

> tag 870622 pending
Bug #870622 [src:ffmpeg] ffmpeg: autopkgtest SIGBUS on armhf with binutils 2.29
Bug #870676 [src:ffmpeg] ffmpeg requires NEON on armhf, which is not part of 
the ARMv7 ABI
Added tag(s) pending.
Added tag(s) pending.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
870622: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870622
870676: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870676
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#870676: ffmpeg requires NEON on armhf, which is not part of the ARMv7 ABI

2017-08-08 Thread James Cowgill
Hi,

On 06/08/17 04:01, Edmund Grimley Evans wrote:
> As far as I know, the best way to implement run-time detection of
> hardware capabilities is with getauxval(AT_HWCAP) and
> getauxval(AT_HWCAP2).
> 
> There is some kind of NEON detection in ffmeg. See, for example:
> 
> https://sources.debian.net/src/ffmpeg/7:3.3.3-1/libavutil/arm/cpu.c/
> 
> That code appears to use /proc rather than getauxval. Is there a good
> reason for that?

I guess you would have to ask upstream to get an answer to this
question.

> In case someone reading this has access to hardware (or a simulator)
> without NEON but is not familiar with ffmpeg, what is a quick and easy
> way of checking whether ffmpeg is working?

I think the runtime is working, but this is the testcase from the SIGBUS
bug which you can use:

ffmpeg -f lavfi -i testsrc=s=32x32:d=0.1 -strict -2 -c:v libx264rgb -f avi 
libx264rgb.avi -y -hide_banner -nostdin
ffmpeg -strict -2 -i libx264rgb.avi -t 1 -c:v rawvideo -c:a pcm_s32le -f nut 
/dev/null -y -hide_banner -nostdin

Since the SIGBUS bug occurs in NEON code, if the runtime detection is
working, this will _only_ fail on machines with NEON and work on
non-NEON machines.

Thanks,
James



signature.asc
Description: OpenPGP digital 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

Processed: closing 870809

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

> close 870809 3.99.5+repack1-6
Bug #870809 [src:lame] lame: CVE-2017-11720
Ignoring request to alter fixed versions of bug #870809 to the same values 
previously set
Bug #870809 [src:lame] lame: CVE-2017-11720
Marked Bug as done
> thanks
Stopping processing here.

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


Processed: Re: Bug#870809: lame: CVE-2017-11720: duplicate, already fixed in all versions

2017-08-08 Thread Debian Bug Tracking System
Processing control commands:

> notfound -1 3.99.5+repack1-7
Bug #870809 [src:lame] lame: CVE-2017-11720
No longer marked as found in versions lame/3.99.5+repack1-7.
> found -1 3.99.5+repack1-3
Bug #870809 [src:lame] lame: CVE-2017-11720
Marked as found in versions lame/3.99.5+repack1-3.
> fixed -1 3.99.5+repack1-3+deb7u1
Bug #870809 [src:lame] lame: CVE-2017-11720
Marked as fixed in versions lame/3.99.5+repack1-3+deb7u1.
> fixed -1 3.99.5+repack1-6
Bug #870809 [src:lame] lame: CVE-2017-11720
Marked as fixed in versions lame/3.99.5+repack1-6.

-- 
870809: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870809
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#870809: lame: CVE-2017-11720: duplicate, already fixed in all versions

2017-08-08 Thread Salvatore Bonaccorso
Control: notfound -1 3.99.5+repack1-7
Control: found -1 3.99.5+repack1-3
Control: fixed -1 3.99.5+repack1-3+deb7u1
Control: fixed -1 3.99.5+repack1-6

Hi

On Tue, Aug 08, 2017 at 03:53:35PM -0400, Hugo Lefeuvre wrote:
> Hi,
> 
> This bug is a duplicate of #777159, which is already fixed in all debian
> versions of lame.

In meanwhile the reporter indeed has provided the password for the
report_poc.zip in public (was unfortunately not the case until 2 days
ago ...), so that could be verified and you are correct.

Regards,
Salvatore

___
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#867115: more information on the #867115 bug

2017-08-08 Thread bug . reporter
Hi maintainer, 

I'm running debian stable (Stretch) and have had problems with 
SMPlayer ever since I upgraded to Stretch. I'm running the older 
versions of xorg and xserver, in case that makes any difference. 

I'm seeing the bug reported as #867115, and I'm forwarding this 
copy of the mplayer log as this doesn't seem to be reported 
thus far. I note there may be differences in how the option is 
reported "noquiet", "-noquiet" and "--noquiet" 

==
/usr/bin/mplayer -noquiet -slave -identify -nofs -sub-fuzziness 1 -vo xv, -ao 
pulse, -nodr -double -nomouseinput -input nodefault-bindings:conf=/dev/null 
-nokeepaspect -wid 46137378 -monitorpixelaspect 1 -subfont-osd-scale 3 -ass 
-embeddedfonts -ass-line-spacing 0 -ass-font-scale 1 -noflip-hebrew -ass-styles 
/home/richard/.config/smplayer/styles.ass -subcp ISO-8859-1 -subpos 100 -volume 
47 -osdlevel 0 -prefer-ipv4 -vf-add 
screenshot=/home/richard/Pictures/smplayer_screenshots/shot -noslices -channels 
2 -af-add scaletempo -af-add equalizer=0:0:0:0:0:0:0:0:0:0 -softvol 
-softvol-max 110 /home/Library/Media/Video/George.Webb/Day 2021 HillaryHillarys 
Awan Brothers Saga Deepens Part 1.

Error parsing option noquiet (option not found)
Setting command line option '--noquiet=' failed.

Exiting... (Fatal error)

=

I'd be happy to test modifications to this command line, 
but as I'm unfamiliar with the application, I thought 
I should seek advice first. 

regards

Richard

___
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#870809: lame: CVE-2017-11720: duplicate, already fixed in all versions

2017-08-08 Thread Hugo Lefeuvre
Hi,

This bug is a duplicate of #777159, which is already fixed in all debian
versions of lame.

Regards,
 Hugo

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


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#870859: marked as done (jaaa FTCBFS: hardcodes the build architecture compiler in one place)

2017-08-08 Thread Debian Bug Tracking System
Your message dated Tue, 08 Aug 2017 07:50:02 +
with message-id 
and subject line Bug#870859: fixed in jaaa 0.8.4-4
has caused the Debian Bug report #870859,
regarding jaaa FTCBFS: hardcodes the build architecture compiler in one place
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.)


-- 
870859: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=870859
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: jaaa
Version: 0.8.4-3
Tags: patch
User: helm...@debian.org
Usertags: rebootstrap

jaaa fails to cross build from source, because its final link step hard
codes the build architecture compiler (g++) in the upstream build
system. After making that substitutable, it cross builds successfully.
Please consider applying the attached patch.

Helmut
diff --minimal -Nru jaaa-0.8.4/debian/changelog jaaa-0.8.4/debian/changelog
--- jaaa-0.8.4/debian/changelog 2016-12-22 13:52:44.0 +0100
+++ jaaa-0.8.4/debian/changelog 2017-08-05 21:53:50.0 +0200
@@ -1,3 +1,10 @@
+jaaa (0.8.4-3.1) UNRELEASED; urgency=medium
+
+  * Non-maintainer upload.
+  * Fix FTCBFS: Do not hard code g++. (Closes: #-1)
+
+ -- Helmut Grohne   Sat, 05 Aug 2017 21:53:50 +0200
+
 jaaa (0.8.4-3) unstable; urgency=medium
 
   * Set dh 10.
diff --minimal -Nru jaaa-0.8.4/debian/patches/jaaa-rzr.patch 
jaaa-0.8.4/debian/patches/jaaa-rzr.patch
--- jaaa-0.8.4/debian/patches/jaaa-rzr.patch2013-08-12 21:34:53.0 
+0200
+++ jaaa-0.8.4/debian/patches/jaaa-rzr.patch2017-08-05 21:53:31.0 
+0200
@@ -4,11 +4,11 @@
  Makefile |   10 +-
  1 file changed, 5 insertions(+), 5 deletions(-)
 
 Index: jaaa/source/Makefile
 ===
 --- jaaa.orig/source/Makefile  2013-08-07 13:38:13.937342777 +0200
 +++ jaaa/source/Makefile   2013-08-07 14:01:17.176201895 +0200
-@@ -19,13 +19,13 @@
+@@ -19,26 +19,27 @@
  #  --
  
  
@@ -25,7 +25,14 @@
  LDFLAGS += -L/usr/X11R6/$(LIBDIR)
  LDLIBS += -lzita-alsa-pcmi -lclthreads -lclxclient -lpthread -lfftw3f -ljack 
-lasound -lpthread -lXft -lX11 -lrt
  
-@@ -39,6 +39,7 @@
+ 
+ JAAA_O = jaaa.o styles.o spectwin.o audio.o rngen.o
+ jaaa: $(JAAA_O)
+-  g++ $(LDFLAGS) -o $@ $(JAAA_O) $(LDLIBS)
++  $(CXX) $(LDFLAGS) -o $@ $(JAAA_O) $(LDLIBS)
+ 
+ $(JAAA_O):
+ -include $(JAAA_O:%.o=%.d)
  
  
  install:  jaaa
--- End Message ---
--- Begin Message ---
Source: jaaa
Source-Version: 0.8.4-4

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

Debian distribution maintenance software
pp.
Jaromír Mikeš  (supplier of updated jaaa package)

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


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 Aug 2017 03:59:31 +0200
Source: jaaa
Binary: jaaa
Architecture: source amd64
Version: 0.8.4-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 jaaa   - audio signal generator and spectrum analyser
Closes: 870859
Changes:
 jaaa (0.8.4-4) unstable; urgency=medium
 .
   * .gitignore file by postclone script.
   * Add patch to fix cross build (Closes: #870859).
   * Numbered patches.
   * Update copyright file.
   * Patch forwarded.
   * Tune dh version.
   * Bump Standards.
   * Append flags rather to LDFLAGS.
Checksums-Sha1:
 5a62d28c9bbaf2b256397a27895cbbcfb1ea724e 2145 jaaa_0.8.4-4.dsc
 77602a1a9bc781aa7dfda41764dc0601438173f1 10304 jaaa_0.8.4-4.debian.tar.xz
 ca5e126c26743c89f1eafc4d96f30b32e5f8afd4 112100 jaaa-dbgsym_0.8.4-4_amd64.deb
 21e0b1be965138c8e85b5f8d46643d56c07e9640 7149 jaaa_0.8.4-4_amd64.buildinfo
 7a4df0d0dcb90a32124dda89ce76608fc9741580 39550 jaaa_0.8.4-4_amd64.deb
Checksums-Sha256:
 bfc7f6cc9655162a43d0ea9344775747f0f859637fb0fc1af9bcf77222d40c2b 2145 
jaaa_0.8.4-4.dsc
 9ff7af5294980dbcedb82609b3ae5de94f4a3ff5430bb86e50fbb3c358433aa6 10304 

jaaa_0.8.4-4_amd64.changes ACCEPTED into unstable

2017-08-08 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 Aug 2017 03:59:31 +0200
Source: jaaa
Binary: jaaa
Architecture: source amd64
Version: 0.8.4-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 

Changed-By: Jaromír Mikeš 
Description:
 jaaa   - audio signal generator and spectrum analyser
Closes: 870859
Changes:
 jaaa (0.8.4-4) unstable; urgency=medium
 .
   * .gitignore file by postclone script.
   * Add patch to fix cross build (Closes: #870859).
   * Numbered patches.
   * Update copyright file.
   * Patch forwarded.
   * Tune dh version.
   * Bump Standards.
   * Append flags rather to LDFLAGS.
Checksums-Sha1:
 5a62d28c9bbaf2b256397a27895cbbcfb1ea724e 2145 jaaa_0.8.4-4.dsc
 77602a1a9bc781aa7dfda41764dc0601438173f1 10304 jaaa_0.8.4-4.debian.tar.xz
 ca5e126c26743c89f1eafc4d96f30b32e5f8afd4 112100 jaaa-dbgsym_0.8.4-4_amd64.deb
 21e0b1be965138c8e85b5f8d46643d56c07e9640 7149 jaaa_0.8.4-4_amd64.buildinfo
 7a4df0d0dcb90a32124dda89ce76608fc9741580 39550 jaaa_0.8.4-4_amd64.deb
Checksums-Sha256:
 bfc7f6cc9655162a43d0ea9344775747f0f859637fb0fc1af9bcf77222d40c2b 2145 
jaaa_0.8.4-4.dsc
 9ff7af5294980dbcedb82609b3ae5de94f4a3ff5430bb86e50fbb3c358433aa6 10304 
jaaa_0.8.4-4.debian.tar.xz
 312d82c91e687bce2b4f28167d4f5b1cd67f7385533c578f7fa05360c92018d0 112100 
jaaa-dbgsym_0.8.4-4_amd64.deb
 d7ca44b1f1c71b51b9497a7d15b098fbe7403f6f9f52c9fc35f7d410262773fd 7149 
jaaa_0.8.4-4_amd64.buildinfo
 eb66a17d0e391b35cca64a608e3a3b61678479fc0124b3542641b6a575c9fac7 39550 
jaaa_0.8.4-4_amd64.deb
Files:
 d245696c88adfd2935c6173aab77fc3c 2145 sound optional jaaa_0.8.4-4.dsc
 01eebf9e27c9fecda6a889a9b163029a 10304 sound optional 
jaaa_0.8.4-4.debian.tar.xz
 e7760c4b8f5473da40cfcc3b944318fc 112100 debug extra 
jaaa-dbgsym_0.8.4-4_amd64.deb
 dcbea25940c5b719192c5b4de7b5 7149 sound optional 
jaaa_0.8.4-4_amd64.buildinfo
 e995dc3ae631757cbd0a29de8328c2ee 39550 sound optional jaaa_0.8.4-4_amd64.deb

-BEGIN PGP SIGNATURE-

iQJJBAEBCAAzFiEESlQ1E9LfY1GoF46jWwGUVeK4T6UFAlmJaEoVHG1pcmEubWlr
ZXNAc2V6bmFtLmN6AAoJEFsBlFXiuE+l/X4P/3/nlHTGK/R5iU3Tw48K+YVU6645
pZZTUn2QVxMg13qqI/+tX8ULSBO4UA4+Xk3GtReAdQMvcF6522o41EdqY2QMCAXT
Hg2EPCtRAYXB3BNtVn73GRYlZsym3Q/0eRDRcWVydeoLGges8qdXr3zgML66IUP8
zFJbUeYmbur4NRz+mTV/OFvuaO94k7CO/8rGJLeTzjD1466lgRcUouzQj1lYl7s3
LGSFyMOMTWA7cWe1PaWAlI/7c+uvbe5Kwm9k8WQVsCFVhsHSRxcq4stmenT7QN+D
oHZ9R+gw6KQtS8otzaaVYWjm9gtL8PsEtYYC67W+1vzBTTd2mmrTwAOUXMxEdk02
v9gCg8Sj4CRXub8FBOp7HYd5oPH0tsvTSsqFvLcNNBCaHB6LMRxuM34OrlOQDWPU
HHxHyiOqKklPXTrwc0YGsy/XSZGOYVE6tE9MfrkQv+qXPuhdYQvCnQHc4qCFMCCi
4XQ+Xx88+b5vsoOuBlmW3FaLGwJYmnYKlKuB2GI0I/ZyCEn6+GMewvffrAxs+pJK
8drrI6IdBjAIkSREvBqoGa6gJOHmd+qpkU8jQi4B2iSw1ybZKLi8G7hHKdERmwEq
FzsdYIOxt+wEnTrC6pMorveHHMJk5wCjS7gzhB2FVmL8MGPFgFAF3HRk2bDExvwT
+ti3jmlLpJp2hLqv
=TUYe
-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 jaaa_0.8.4-4_amd64.changes

2017-08-08 Thread Debian FTP Masters
jaaa_0.8.4-4_amd64.changes uploaded successfully to localhost
along with the files:
  jaaa_0.8.4-4.dsc
  jaaa_0.8.4-4.debian.tar.xz
  jaaa-dbgsym_0.8.4-4_amd64.deb
  jaaa_0.8.4-4_amd64.buildinfo
  jaaa_0.8.4-4_amd64.deb

Greetings,

Your Debian queue daemon (running on host usper.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#870859 marked as pending

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

> tag 870859 pending
Bug #870859 [src:jaaa] jaaa FTCBFS: hardcodes the build architecture compiler 
in one place
Added tag(s) pending.
> thanks
Stopping processing here.

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