Your message dated Tue, 17 Sep 2013 21:06:44 +0000
with message-id <e1vm2ts-0008fm...@franck.debian.org>
and subject line Bug#721026: fixed in renpy 6.15.7-1
has caused the Debian Bug report #721026,
regarding renpy: FTBFS with libav 9: error: unknown type name 'ByteIOContext'
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.)


-- 
721026: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=721026
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: renpy
Version: 6.13.12-1
Severity: serious
Tags: sid jessie
Control: block 706798 by -1

renpy FTBFS against libav 9:
| x86_64-linux-gnu-gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 
-Wall -Wstrict-prototypes -fPIC -I. -I/usr/include -I/usr/include/SDL 
-I/usr/include/freetype2 -I/usr/include/python2.7 -c ffdecode.c -o 
build/temp.linux-x86_64-2.7/ffdecode.o -Wno-unused-function
| ffdecode.c:197:5: error: unknown type name 'ByteIOContext'
|      ByteIOContext *io_context;
|      ^
| ffdecode.c:245:32: error: 'FF_ER_CAREFUL' undeclared here (not in a function)
|  static int error_recognition = FF_ER_CAREFUL;
|                                 ^
| ffdecode.c:287:1: error: unknown type name 'ByteIOContext'
|  static ByteIOContext *rwops_open(SDL_RWops *rw) {
|  ^
| ffdecode.c: In function 'rwops_open':
| ffdecode.c:290:5: error: unknown type name 'ByteIOContext'
|      ByteIOContext *rv = av_alloc_put_byte(
|      ^
| ffdecode.c:290:5: warning: implicit declaration of function 
'av_alloc_put_byte' [-Wimplicit-function-declaration]
| ffdecode.c:290:25: warning: initialization makes pointer from integer without 
a cast [enabled by default]
|      ByteIOContext *rv = av_alloc_put_byte(
|                          ^
| ffdecode.c: In function 'video_thread':
| ffdecode.c:1315:9: warning: variable 'len1' set but not used 
[-Wunused-but-set-variable]
|      int len1, got_picture;
|          ^
| ffdecode.c: In function 'subtitle_thread':
| ffdecode.c:1374:9: warning: variable 'len1' set but not used 
[-Wunused-but-set-variable]
|      int len1, got_subtitle;
|          ^
| ffdecode.c: In function 'audio_decode_frame':
| ffdecode.c:1539:13: warning: 'avcodec_decode_audio3' is deprecated (declared 
at /usr/include/libavcodec/avcodec.h:3608) [-Wdeprecated-declarations]
|              len1 = avcodec_decode_audio3(dec,
|              ^
| ffdecode.c:1561:59: error: 'SAMPLE_FMT_S16' undeclared (first use in this 
function)
|                  (dec->channels != 2 || dec->sample_fmt != SAMPLE_FMT_S16)) {
|                                                            ^
| ffdecode.c:1561:59: note: each undeclared identifier is reported only once 
for each function it appears in
| ffdecode.c:1563:17: warning: 'av_audio_resample_init' is deprecated (declared 
at /usr/include/libavcodec/avcodec.h:4109) [-Wdeprecated-declarations]
|                  is->reformat_ctx = av_audio_resample_init(
|                  ^
| ffdecode.c:1584:17: warning: implicit declaration of function 
'av_get_bits_per_sample_format' [-Wimplicit-function-declaration]
|                  int len = data_size / 
(av_get_bits_per_sample_format(dec->sample_fmt) / 8);
|                  ^
| ffdecode.c:1587:17: warning: 'audio_resample' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:4117) [-Wdeprecated-declarations]
|                  len = audio_resample(is->reformat_ctx, (short *) 
is->audio_buf2, (short *) is->audio_buf1, len);
|                  ^
| ffdecode.c: In function 'stream_component_open':
| ffdecode.c:1812:5: warning: 'lowres' is deprecated (declared at 
/usr/include/libavcodec/avcodec.h:2718) [-Wdeprecated-declarations]
|      enc->lowres = lowres;
|      ^
| ffdecode.c:1819:8: error: 'AVCodecContext' has no member named 
'error_recognition'
|      enc->error_recognition= error_recognition;
|         ^
| ffdecode.c:1828:5: warning: implicit declaration of function 'avcodec_open' 
[-Wimplicit-function-declaration]
|      err = avcodec_open(enc, codec);
|      ^
| ffdecode.c:1837:9: warning: implicit declaration of function 
'avcodec_thread_init' [-Wimplicit-function-declaration]
|          avcodec_thread_init(enc, thread_count);
|          ^
| ffdecode.c: In function 'stream_component_close':
| ffdecode.c:1896:13: warning: 'audio_resample_close' is deprecated (declared 
at /usr/include/libavcodec/avcodec.h:4126) [-Wdeprecated-declarations]
|              audio_resample_close(is->reformat_ctx);
|              ^
| ffdecode.c: In function 'dump_stream_info':
| ffdecode.c:1956:5: error: unknown type name 'AVMetadataTag'
|      AVMetadataTag *tag = NULL;
|      ^
| ffdecode.c:1957:5: warning: implicit declaration of function 
'av_metadata_get' [-Wimplicit-function-declaration]
|      while 
((tag=av_metadata_get(s->metadata,"",tag,AV_METADATA_IGNORE_SUFFIX)))
|      ^
| ffdecode.c:1957:52: error: 'AV_METADATA_IGNORE_SUFFIX' undeclared (first use 
in this function)
|      while 
((tag=av_metadata_get(s->metadata,"",tag,AV_METADATA_IGNORE_SUFFIX)))
|                                                     ^
| ffdecode.c:1958:40: error: request for member 'key' in something not a 
structure or union
|          fprintf(stderr, "%s: %s\n", tag->key, tag->value);
|                                         ^
| ffdecode.c:1958:50: error: request for member 'value' in something not a 
structure or union
|          fprintf(stderr, "%s: %s\n", tag->key, tag->value);
|                                                   ^
| ffdecode.c: In function 'decode_thread':
| ffdecode.c:1971:5: error: unknown type name 'AVFormatParameters'
|      AVFormatParameters params, *ap = &params;
|      ^
| ffdecode.c:1975:5: error: unknown type name 'ByteIOContext'
|      ByteIOContext *pb;
|      ^
| ffdecode.c:1995:7: error: request for member 'width' in something not a 
structure or union
|      ap->width = frame_width;
|        ^
| ffdecode.c:1996:7: error: request for member 'height' in something not a 
structure or union
|      ap->height= frame_height;
|        ^
| ffdecode.c:1997:7: error: request for member 'time_base' in something not a 
structure or union
|      ap->time_base= (AVRational){1, 25};
|        ^
| ffdecode.c:1998:7: error: request for member 'pix_fmt' in something not a 
structure or union
|      ap->pix_fmt = frame_pix_fmt;
|        ^
| ffdecode.c:2010:13: warning: implicit declaration of function 'get_buffer' 
[-Wimplicit-function-declaration]
|              pd->buf_size = get_buffer(pb, pd->buf, probe_size);
|              ^
| ffdecode.c:2014:13: warning: implicit declaration of function 'url_fseek' 
[-Wimplicit-function-declaration]
|              if (url_fseek(pb, 0, SEEK_SET) < 0) {
|              ^
| ffdecode.c:2032:5: warning: implicit declaration of function 
'av_open_input_stream' [-Wimplicit-function-declaration]
|      err = av_open_input_stream(
|      ^
| ffdecode.c:2053:5: warning: implicit declaration of function 
'av_find_stream_info' [-Wimplicit-function-declaration]
|      err = av_find_stream_info(ic);
|      ^
| ffdecode.c:2104:9: warning: implicit declaration of function 'dump_format' 
[-Wimplicit-function-declaration]
|          dump_format(ic, 0, is->filename, 0);
|          ^
| ffdecode.c:2214:9: warning: implicit declaration of function 'url_feof' 
[-Wimplicit-function-declaration]
|          if(url_feof(ic->pb)) {
|          ^
| ffdecode.c:2273:9: warning: implicit declaration of function 
'av_close_input_stream' [-Wimplicit-function-declaration]
|          av_close_input_stream(is->ic);
|          ^
| ffdecode.c:2281:27: error: request for member 'buffer' in something not a 
structure or union
|      av_free(is->io_context->buffer);
|                            ^
| ffdecode.c:1976:9: warning: variable 'signalled_start' set but not used 
[-Wunused-but-set-variable]
|      int signalled_start = 0;
|          ^
| In file included from ffdecode.c:22:0:
| ffdecode.c: At top level:
| /usr/include/python2.7/pygame/pygame.h:678:14: warning: 'PyGAME_C_API' 
defined but not used [-Wunused-variable]
|  static void* PyGAME_C_API[PYGAMEAPI_TOTALSLOTS] = { NULL };
|               ^
| ffdecode.c:230:12: warning: 'seek_by_bytes' defined but not used 
[-Wunused-variable]
|  static int seek_by_bytes;
|             ^
| error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
| make: *** [build-python2.7] Error 1

The full build log is available from
http://people.debian.org/~sramacher/logs/renpy_6.13.12-1_amd64-20130826-1836.log

-- 
Sebastian Ramacher

Attachment: signature.asc
Description: Digital signature


--- End Message ---
--- Begin Message ---
Source: renpy
Source-Version: 6.15.7-1

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

Debian distribution maintenance software
pp.
Miriam Ruiz <mir...@debian.org> (supplier of updated renpy 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: Fri, 30 Aug 2013 22:10:15 +0200
Source: renpy
Binary: renpy python-renpy renpy-doc renpy-demo renpy-thequestion
Architecture: source all i386
Version: 6.15.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team <pkg-games-de...@lists.alioth.debian.org>
Changed-By: Miriam Ruiz <mir...@debian.org>
Description: 
 python-renpy - framework for developing visual-novel type games - Python module
 renpy      - framework for developing visual-novel type games
 renpy-demo - framework for developing visual-novel type games - demo
 renpy-doc  - framework for developing visual-novel type games - doc
 renpy-thequestion - simple and complete Ren'Py game
Closes: 721026
Changes: 
 renpy (6.15.7-1) unstable; urgency=low
 .
   [ Evgeni Golov ]
   * Correct Vcs-* URLs to point to anonscm.debian.org
 .
   [ Miriam Ruiz ]
   * New Upstream Release. Closes: #721026
   * Upgraded Standards-Version from 3.9.3 to 3.9.4
   * Upgraded compat level to 9
   * Fortified the building of the module
Checksums-Sha1: 
 7c38b3404806fa6edc3bb1b301252fc42500fe3f 1838 renpy_6.15.7-1.dsc
 f4fbd02f21f2f8518415d5f716cf86515df482f1 10421736 renpy_6.15.7.orig.tar.bz2
 6789e502707b9e063836c30a7dca5a3c14df9c04 24817 renpy_6.15.7-1.debian.tar.bz2
 760e5efcc68c49f331d801ad89a23d1fad8d3a70 1245222 renpy_6.15.7-1_all.deb
 da23123de4c76777bb2868a60e2666c36de2ecdf 540922 renpy-doc_6.15.7-1_all.deb
 0b271af864a25bbb631a1e8636ad29813345f9fd 5481898 renpy-demo_6.15.7-1_all.deb
 8802f414493b41a82b394092f2e84899a68b543e 1396184 
renpy-thequestion_6.15.7-1_all.deb
 201e0ac07d80aa5c36aa8ce855a7b619abdbad8f 325018 python-renpy_6.15.7-1_i386.deb
Checksums-Sha256: 
 5781e770d5d9148d059c692bd2f87265c67e2f1b1f16dd442d75ca7804f43f76 1838 
renpy_6.15.7-1.dsc
 b4280b62f7c8f730a37c7e567b16216b4578fc3640fbcdf5df7c65a73ae52e52 10421736 
renpy_6.15.7.orig.tar.bz2
 c965704e272ad4db538e3d68cecdc85431f3546ff189a743cdfd246a91df7810 24817 
renpy_6.15.7-1.debian.tar.bz2
 c926c6fc26b630418e0894da06493169a7f1888eac05ceef66a07cd55889b56f 1245222 
renpy_6.15.7-1_all.deb
 fe4045ea7f761f601c1d3fdac83f0891f473ace8b3b414d9b1ba80958fc1c442 540922 
renpy-doc_6.15.7-1_all.deb
 42e6ad763173683d8699ce4e7a5f4a4db4e4541db0b3349ab60054527ba9d18b 5481898 
renpy-demo_6.15.7-1_all.deb
 bd833bc7d6a371db305a9af5c5701278ffa09cc3609f21575d839b3d01799c96 1396184 
renpy-thequestion_6.15.7-1_all.deb
 5fa7cf809ed23f2f3ae456f257ccb0d83c9b257c52276d621074e3a194de7985 325018 
python-renpy_6.15.7-1_i386.deb
Files: 
 6e0add9dd765a8d18e66243e87ee7b00 1838 games optional renpy_6.15.7-1.dsc
 19e25809c9635b9701ae20b6cb0fadad 10421736 games optional 
renpy_6.15.7.orig.tar.bz2
 21e4ed06413b6b9b1b67d05c8d5743ac 24817 games optional 
renpy_6.15.7-1.debian.tar.bz2
 424080a5d8faf54e66b8444cfd1ea82e 1245222 games optional renpy_6.15.7-1_all.deb
 331f956cce03419676d4319fb7dc590b 540922 doc optional renpy-doc_6.15.7-1_all.deb
 34f2e55466c130922c905b7dd7ef2a15 5481898 games optional 
renpy-demo_6.15.7-1_all.deb
 6c3cd07f2930c104ade9c476ad4246ec 1396184 games optional 
renpy-thequestion_6.15.7-1_all.deb
 fb41a82799d0c69718660121fba0305d 325018 python optional 
python-renpy_6.15.7-1_i386.deb

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

iEYEARECAAYFAlI4vxoACgkQfbltLjbuCGHZtwCghzVodw5CVfBvlAzdGsVI8AvP
dEYAniI5u4zZX6MdVAhp5HSwVweIq6uo
=BaX2
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to