Your message dated Thu, 13 Mar 2014 19:48:27 +0000
with message-id <[email protected]>
and subject line Bug#741444: fixed in motion 3.2.12+git20140228-1
has caused the Debian Bug report #741444,
regarding motion: FTBFS against libav10
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 [email protected]
immediately.)


-- 
741444: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741444
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Source: motion
Version: 3.2.12-4
Severity: important
Tags: sid jessie
User: [email protected]
Usertags: libav10
Control: block 739079 by -11

motion fails to build against libav 10 (currently available in experimental):
| x86_64-linux-gnu-gcc -Wall -g -O2 -D_REENTRANT -DHAVE_FFMPEG -I/usr/include 
-DFFMPEG_NEW_INCLUDES -DHAVE_FFMPEG_NEW -I/usr/include/mysql 
-I/usr/include/postgresql -DMOTION_V4L2 -DMOTION_V4L2_OLD -DTYPE_32BIT="int" 
-DHAVE_BSWAP    -Wall -DVERSION=\"3.2.12\" -Dsysconfdir=\"/etc/motion\"    -c 
-o ffmpeg.o ffmpeg.c
| picture.c:121:2: warning: #warning using JPEG_LIB_VERSION >= 70 [-Wcpp]
|  #warning using JPEG_LIB_VERSION >= 70
|   ^
| picture.c:240:2: warning: #warning using JPEG_LIB_VERSION >= 70 [-Wcpp]
|  #warning using JPEG_LIB_VERSION >= 70
|   ^
| picture.c: In function 'put_ppm_bgr24_file':
| picture.c:332:9: warning: variable 'warningkiller' set but not used 
[-Wunused-but-set-variable]
|      int warningkiller;
|          ^
| ffmpeg.c:86:10: warning: #warning 
************************************************** [-Wcpp]
|  #        warning **************************************************
|           ^
| ffmpeg.c:87:10: warning: #warning Your version of FFmpeg is newer than 
version 0.4.8 [-Wcpp]
|  #        warning Your version of FFmpeg is newer than version 0.4.8
|           ^
| ffmpeg.c:88:10: warning: #warning Newer versions of ffmpeg do not support 
MPEG1 with [-Wcpp]
|  #        warning Newer versions of ffmpeg do not support MPEG1 with
|           ^
| ffmpeg.c:89:10: warning: #warning non-standard framerate. MPEG1 will be 
disabled for [-Wcpp]
|  #        warning non-standard framerate. MPEG1 will be disabled for
|           ^
| ffmpeg.c:90:10: warning: #warning normal video output. You can still use 
mpeg4 and [-Wcpp]
|  #        warning normal video output. You can still use mpeg4 and
|           ^
| ffmpeg.c:91:10: warning: #warning and mpeg4ms which are both better in terms 
of size [-Wcpp]
|  #        warning and mpeg4ms which are both better in terms of size
|           ^
| ffmpeg.c:92:10: warning: #warning and quality. MPEG1 is always used for 
timelapse. [-Wcpp]
|  #        warning and quality. MPEG1 is always used for timelapse.
|           ^
| ffmpeg.c:93:10: warning: #warning Please read the Motion Guide for more 
information. [-Wcpp]
|  #        warning Please read the Motion Guide for more information.
|           ^
| ffmpeg.c:94:10: warning: #warning Note that this is not an error message! 
[-Wcpp]
|  #        warning Note that this is not an error message!
|           ^
| ffmpeg.c:95:10: warning: #warning 
************************************************** [-Wcpp]
|  #        warning **************************************************
|           ^
| ffmpeg.c:301:5: warning: #warning av_register_protocolXXX missing [-Wcpp]
|  #   warning av_register_protocolXXX missing
|      ^
| ffmpeg.c:247:5: warning: initialization from incompatible pointer type 
[enabled by default]
|      file_read,
|      ^
| ffmpeg.c:247:5: warning: (near initialization for 'file_protocol.url_open2') 
[enabled by default]
| ffmpeg.c:249:5: warning: initialization from incompatible pointer type 
[enabled by default]
|      file_seek,
|      ^
| ffmpeg.c:249:5: warning: (near initialization for 'file_protocol.url_write') 
[enabled by default]
| ffmpeg.c:250:5: warning: initialization from incompatible pointer type 
[enabled by default]
|      file_close,
|      ^
| ffmpeg.c:250:5: warning: (near initialization for 'file_protocol.url_seek') 
[enabled by default]
| ffmpeg.c: In function 'get_oformat':
| ffmpeg.c:358:31: error: 'CODEC_ID_MSMPEG4V2' undeclared (first use in this 
function)
|              of->video_codec = CODEC_ID_MSMPEG4V2;
|                                ^
| ffmpeg.c:358:31: note: each undeclared identifier is reported only once for 
each function it appears in
| ffmpeg.c:374:27: error: 'CODEC_ID_FLV1' undeclared (first use in this 
function)
|          of->video_codec = CODEC_ID_FLV1;
|                            ^
| ffmpeg.c:385:31: error: 'CODEC_ID_FFV1' undeclared (first use in this 
function)
|              of->video_codec = CODEC_ID_FFV1;
|                                ^
| ffmpeg.c: In function 'ffmpeg_open':
| ffmpeg.c:465:45: error: 'CODEC_ID_NONE' undeclared (first use in this 
function)
|      if (ffmpeg->oc->oformat->video_codec != CODEC_ID_NONE) {
|                                              ^
| ffmpeg.c:486:31: error: 'CODEC_ID_MPEG1VIDEO' undeclared (first use in this 
function)
|      is_mpeg1      = c->codec_id == CODEC_ID_MPEG1VIDEO;
|                                ^
| ffmpeg.c:566:5: warning: 'avcodec_alloc_frame' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:3114) [-Wdeprecated-declarations]
|      ffmpeg->picture = avcodec_alloc_frame();
|      ^
| ffmpeg.c: In function 'ffmpeg_put_frame':
| ffmpeg.c:761:9: warning: implicit declaration of function 
'avcodec_encode_video' [-Wimplicit-function-declaration]
|          out_size = avcodec_encode_video(AVSTREAM_CODEC_PTR(ffmpeg->video_st),
|          ^
| ffmpeg.c: In function 'ffmpeg_prepare_frame':
| ffmpeg.c:808:5: warning: 'avcodec_alloc_frame' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:3114) [-Wdeprecated-declarations]
|      picture = avcodec_alloc_frame();
|      ^
| ffmpeg.c: In function 'ffmpeg_deinterlace':
| ffmpeg.c:848:5: warning: 'avcodec_alloc_frame' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:3114) [-Wdeprecated-declarations]
|      picture = avcodec_alloc_frame();
|      ^
| ffmpeg.c:862:5: warning: 'avpicture_deinterlace' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:3992) [-Wdeprecated-declarations]
|      avpicture_deinterlace((AVPicture *)picture, (AVPicture *)picture, 
PIX_FMT_YUV420P, width, height);
|      ^
| make[1]: *** [ffmpeg.o] Error 1

The full build log is available at
http://people.debian.org/~sramacher/logs/libav10/motion_3.2.12-4_amd64-20140312-1545.log

This bug will become release-critical at some point when the libav10 transition
starts. Migration documentation can be found at
https://wiki.libav.org/Migration/10.

Regards
-- 
Sebastian Ramacher

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: motion
Source-Version: 3.2.12+git20140228-1

We believe that the bug you reported is fixed in the latest version of
motion, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ximin Luo <[email protected]> (supplier of updated motion 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 [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Thu, 13 Mar 2014 19:28:46 +0000
Source: motion
Binary: motion
Architecture: source amd64
Version: 3.2.12+git20140228-1
Distribution: unstable
Urgency: low
Maintainer: Ximin Luo <[email protected]>
Changed-By: Ximin Luo <[email protected]>
Description: 
 motion     - V4L capture program supporting motion detection
Closes: 741444
Changes: 
 motion (3.2.12+git20140228-1) unstable; urgency=low
 .
   * New upstream from source control.
   * Updated to latest Standards-Version 3.9.5.
   * Updated to debhelper 9.
   * Updated to support new libav10 API. (Closes: #741444)
   * Some configuration options have changed!!! See
     
http://www.lavrsen.dk/foswiki/bin/view/Motion/IntuitiveOptionNamesDiscussion
     for an incomplete and not-completely-accurate overview. Hopefully
     dpkg is able to tell you exactly what changed since your installed
     version. A summary of the most important ones:
       * input 8 -> input -1
       * gap -> event_gap
       * output_normal -> output_pictures
       * ffmpeg_cap_new -> ffmpeg_output_movies
       * jpeg_filename -> picture_filename
       * webcam_* -> stream_*
       * control_* -> webcontrol_*
Checksums-Sha1: 
 e052e0132f3eeabc1a5338c5f0d1e7aa051706e6 1897 motion_3.2.12+git20140228-1.dsc
 f42561ffb3220465a5a6a662e7352a287d853868 447217 
motion_3.2.12+git20140228.orig.tar.gz
 e103fb3fda5731383fe9d664d8f454f8dbf23a67 24892 
motion_3.2.12+git20140228-1.debian.tar.xz
 09d0e099230f2abe54c3ef875ff39d0943a95ff1 240788 
motion_3.2.12+git20140228-1_amd64.deb
Checksums-Sha256: 
 a6eab3ea7d3ca08b0437a641eef692f077330990b1213cfe36bc83856aafaa91 1897 
motion_3.2.12+git20140228-1.dsc
 0d0463facc9c3dcb8a6e6e883c44ba391a065b3e17fded32dbfc9b96a758b649 447217 
motion_3.2.12+git20140228.orig.tar.gz
 e411de3178aaa59b48f770c48092f6e71eb99644c837f3d73c877139a9b4a3f9 24892 
motion_3.2.12+git20140228-1.debian.tar.xz
 0d9f35a93b22267f8e5ed5f7430d81fdf03c34bc090d6c568627744122111a09 240788 
motion_3.2.12+git20140228-1_amd64.deb
Files: 
 426836b589e35c3a86935ddb3616ab8a 1897 video optional 
motion_3.2.12+git20140228-1.dsc
 de5707069f9a6ab1c45dbc6539bbbdec 447217 video optional 
motion_3.2.12+git20140228.orig.tar.gz
 b618a4e2c1b84870fd4b2f9140e7d64f 24892 video optional 
motion_3.2.12+git20140228-1.debian.tar.xz
 55a4d5cadd361d57d2594bd195629fee 240788 video optional 
motion_3.2.12+git20140228-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJTIgeUAAoJEIYN7zuPZQt5MbsQAKlPPklSTOoBsfY/Pn3s8LxU
2zwdFRB6+knh9AV3MwkdIxuYqqf3Hqy/gQiC75BDkE5jpoEBn3sWcZwy+5Ys4Mtw
FrZkGMlHpjvPthG4nYAPpH6XV8kyQUQk1wL15HXqpqaj/KXP5BGAMVrv2Wsm8Qkb
rZwMPsgqylvqV5sgHXo/fc3+kHSfw7jU5DRxjHM9TJJeFH82xQChSOHpnzqGlgwT
SbqfD2jfqg+LYLGvOjvq+w5zKssiCz6K5i3Vxnf7ht7crxdYr/8cdOr3vaUbFtH9
s0QDXnH06GdeCZiZ00V3FwnhparoXZe/DOhBCIyZC77ia4HdlOHVfmTvKEc3xNBj
nDnDRKU3rAE7SuPYqNqTqR0zHNSMEoSEfnpmYU1JemtfAwIcpN/x4hL/qI0VhfFI
1k126u3473n1UQo0KsXOrHcXQYzPd00yyJMHvT9xHUpNRwmZ+YO2Dui0iBx1a4BO
kNPTiRiQzXytN7yVlob2qPBYk5OKkDB7FbW6BK2T8sIDwGTDnD1GvFiTdNTSh1//
M+3PYtTKBY2sqlCS7VYfy4nkdBDITl9RlI4tL8uQmyuqcZ5gEMzg/oHc9fvJsFe/
AFWsqrCpLUXYscg14oI83QAthLe/y17pD5GstYLFK4yHWWwHVOYiRhYbVf9ysU0L
QCpEOc4ZBUfp5xz3KNHs
=b20G
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to