Your message dated Wed, 03 Aug 2022 16:15:45 +0000
with message-id <e1ojh29-000qvw...@fasolo.debian.org>
and subject line Bug#1004640: fixed in unpaper 7.0.0-0.1
has caused the Debian Bug report #1004640,
regarding unpaper: FTBFS with ffmpeg 5.0
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.)


-- 
1004640: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1004640
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: unpaper
Version: 6.1-2
Severity: important
X-Debbugs-Cc: sramac...@debian.org
Tags: sid bookworm ftbfs
Usertags: ffmpeg5.0

unpaper FTBFS with ffmpeg 5.0 (available in experimental):
| gcc -DPACKAGE_NAME=\"unpaper\" -DPACKAGE_TARNAME=\"unpaper\" 
-DPACKAGE_VERSION=\"6.1\" -DPACKAGE_STRING=\"unpaper\ 6.1\" 
-DPACKAGE_BUGREPORT=\"https://github.com/Flameeyes/unpaper/issues\"; 
-DPACKAGE_URL=\"https://github.com/Flameeyes/unpaper\"; -DPACKAGE=\"unpaper\" 
-DVERSION=\"6.1\" -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 
-DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 
-DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DHAVE_WCHAR_H=1 -DSTDC_HEADERS=1 
-D_ALL_SOURCE=1 -D_DARWIN_C_SOURCE=1 -D_GNU_SOURCE=1 
-D_HPUX_ALT_XOPEN_SOCKET_API=1 -D_NETBSD_SOURCE=1 -D_OPENBSD_SOURCE=1 
-D_POSIX_PTHREAD_SEMANTICS=1 -D__STDC_WANT_IEC_60559_ATTRIBS_EXT__=1 
-D__STDC_WANT_IEC_60559_BFP_EXT__=1 -D__STDC_WANT_IEC_60559_DFP_EXT__=1 
-D__STDC_WANT_IEC_60559_FUNCS_EXT__=1 -D__STDC_WANT_IEC_60559_TYPES_EXT__=1 
-D__STDC_WANT_LIB_EXT2__=1 -D__STDC_WANT_MATH_SPEC_FUNCS__=1 -D_TANDEM_SOURCE=1 
-D__EXTENSIONS__=1 -DHAVE__BOOL=1 -DHAVE_STDBOOL_H=1 -I.   -Wdate-time 
-D_FORTIFY_SOURCE=2 -I/usr/include/x86_64-linux-gnu -g -O2 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong -Wformat 
-Werror=format-security -c -o unpaper-file.o `test -f 'file.c' || echo 
'./'`file.c
| file.c: In function ‘loadImage’:
| file.c:68:22: error: ‘AVStream’ has no member named ‘codec’
|    68 |     if (s->streams[0]->codec->codec_type != AVMEDIA_TYPE_VIDEO)
|       |                      ^~
| file.c:71:11: warning: implicit declaration of function 
‘avcodec_copy_context’; did you mean ‘avcodec_free_context’? 
[-Wimplicit-function-declaration]
|    71 |     ret = avcodec_copy_context(avctx, s->streams[0]->codec);
|       |           ^~~~~~~~~~~~~~~~~~~~
|       |           avcodec_free_context
| file.c:71:52: error: ‘AVStream’ has no member named ‘codec’
|    71 |     ret = avcodec_copy_context(avctx, s->streams[0]->codec);
|       |                                                    ^~
| file.c:77:11: warning: assignment discards ‘const’ qualifier from pointer 
target type [-Wdiscarded-qualifiers]
|    77 |     codec = avcodec_find_decoder(avctx->codec_id);
|       |           ^
| file.c:103:11: warning: implicit declaration of function 
‘avcodec_decode_video2’; did you mean ‘avcodec_decode_subtitle2’? 
[-Wimplicit-function-declaration]
|   103 |     ret = avcodec_decode_video2(avctx, frame, &got_frame, &pkt);
|       |           ^~~~~~~~~~~~~~~~~~~~~
|       |           avcodec_decode_subtitle2
| file.c: In function ‘saveImage’:
| file.c:158:9: warning: assignment discards ‘const’ qualifier from pointer 
target type [-Wdiscarded-qualifiers]
|   158 |     fmt = av_guess_format("image2", NULL, NULL);
|       |         ^
| file.c:170:21: error: ‘AVFormatContext’ has no member named ‘filename’
|   170 |     snprintf(out_ctx->filename, sizeof(out_ctx->filename), "%s", 
filename);
|       |                     ^~
| file.c:170:47: error: ‘AVFormatContext’ has no member named ‘filename’
|   170 |     snprintf(out_ctx->filename, sizeof(out_ctx->filename), "%s", 
filename);
|       |                                               ^~
| file.c:197:11: warning: assignment discards ‘const’ qualifier from pointer 
target type [-Wdiscarded-qualifiers]
|   197 |     codec = avcodec_find_encoder(output_codec);
|       |           ^
| file.c:207:25: error: ‘AVStream’ has no member named ‘codec’
|   207 |     codec_ctx = video_st->codec;
|       |                         ^~
| file.c:232:5: warning: ‘av_init_packet’ is deprecated 
[-Wdeprecated-declarations]
|   232 |     av_init_packet(&pkt);
|       |     ^~~~~~~~~~~~~~
| In file included from /usr/include/x86_64-linux-gnu/libavcodec/avcodec.h:45,
|                  from file.c:28:
| /usr/include/x86_64-linux-gnu/libavcodec/packet.h:506:6: note: declared here
|   506 | void av_init_packet(AVPacket *pkt);
|       |      ^~~~~~~~~~~~~~
| file.c:235:11: warning: implicit declaration of function 
‘avcodec_encode_video2’; did you mean ‘avcodec_encode_subtitle’? 
[-Wimplicit-function-declaration]
|   235 |     ret = avcodec_encode_video2(video_st->codec, &pkt, image, 
&got_packet);
|       |           ^~~~~~~~~~~~~~~~~~~~~
|       |           avcodec_encode_subtitle
| file.c:235:41: error: ‘AVStream’ has no member named ‘codec’
|   235 |     ret = avcodec_encode_video2(video_st->codec, &pkt, image, 
&got_packet);
|       |                                         ^~
| file.c:228:5: warning: ignoring return value of ‘avformat_write_header’ 
declared with attribute ‘warn_unused_result’ [-Wunused-result]
|   228 |     avformat_write_header(out_ctx, NULL);
|       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
| make[2]: *** [Makefile:678: unpaper-file.o] Error 1

Cheers
-- 
Sebastian Ramacher

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: unpaper
Source-Version: 7.0.0-0.1
Done: Nicholas Guriev <guriev...@ya.ru>

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

Debian distribution maintenance software
pp.
Nicholas Guriev <guriev...@ya.ru> (supplier of updated unpaper 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: Thu, 30 Jun 2022 18:15:10 +0300
Source: unpaper
Architecture: source
Version: 7.0.0-0.1
Distribution: unstable
Urgency: medium
Maintainer: Thomas Koch <tho...@koch.ro>
Changed-By: Nicholas Guriev <guriev...@ya.ru>
Closes: 1004640
Changes:
 unpaper (7.0.0-0.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * New upstream release.
     - Fixes build against FFmpeg 5.0 (Closes: #1004640)
   * Patches:
     - remove no longer needed fix_ffmpeg_incompatibility.patch
     - apply post-release doc fixes
   * Update build dependencies:
     - new: meson (>= 0.57), sphinx (>= 3.4)
     - deleted: dh-autoreconf, xsltproc
   * Update d/rules to the new version.
   * Increase debhelper compatibility level to 13.
   * Update standards version to 4.6.1.
     - Implement the `nodoc` build option.
     - Use secure scheme in copyright format.
     - Commit armored OpenPGP upstream signature.
     - Secure homepage link.
     - Add the Rules-Requires-Root filed.
   * Update d/watch version to 4.
   * Remove repeated doc/ folder.
 .
   [Ondřej Nový]
   * d/copyright: Use https protocol in Format field
   * d/changelog: Remove trailing whitespaces
   * d/control: Set Vcs-* to salsa.debian.org
 .
   [ Tobias Frost ]
   * Fix d/watch for 7.0 -- there is no signature for this release.
Checksums-Sha1:
 35ced40a7503bb59618b7a8a86243336f95dcc42 1940 unpaper_7.0.0-0.1.dsc
 81970c456bea397570a6703ebb3761c3b6dde416 4430572 unpaper_7.0.0.orig.tar.xz
 4033334d32164c10ad8aef72d566778ddc36f3be 8296 unpaper_7.0.0-0.1.debian.tar.xz
 466969e93bfdd1d1a811f10722f0b85b6a9bf453 9066 
unpaper_7.0.0-0.1_source.buildinfo
Checksums-Sha256:
 8e23bae583ccd801e5c6a7280b98518e0062570ec25fc3e34baf27f2bbc051d5 1940 
unpaper_7.0.0-0.1.dsc
 2575fbbf26c22719d1cb882b59602c9900c7f747118ac130883f63419be46a80 4430572 
unpaper_7.0.0.orig.tar.xz
 96c4910f87bd08ade90c0e51aa57efa9a5eda6df3dc5c7f5ecaf97f5f423256f 8296 
unpaper_7.0.0-0.1.debian.tar.xz
 573374e37e82b7b9ab484f473877ce1a0a65d1fbe1cd15c1559eaf88f7a80870 9066 
unpaper_7.0.0-0.1_source.buildinfo
Files:
 afa60a098614bee40c5d934c52f876e3 1940 graphics optional unpaper_7.0.0-0.1.dsc
 24be66b049a27b6f841cc7444ceff9cc 4430572 graphics optional 
unpaper_7.0.0.orig.tar.xz
 6ef7cdb832302f86609c716c95df8190 8296 graphics optional 
unpaper_7.0.0-0.1.debian.tar.xz
 344e2a875cd014ba88f7997f0590557b 9066 graphics optional 
unpaper_7.0.0-0.1_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEE/d0M/zhkJ3YwohhskWT6HRe9XTYFAmLWwlMACgkQkWT6HRe9
XTY4FA/9EZxYK4Lmo86AX5V/dGR6ubANHTOrqj/vy6EjQ7qwFCJwwqA4WRVshLPn
Ah60G7+6VWdf3Tq2OZo5T7HNQZbiUlV++ZMIBbK+816ooG1sZuuD80hydJNHMB9H
tQ+KbRUvBlrWk3rclYgDb3oMSA0SNs6RTPGff+bTLhB7rSe/Td8yXeV8M1fOXXq0
tEFVY1/uZLzSqJCM5OhxOpKMYz98v2c/Sx0cVc12xnnTJ8+fM8smzYA7VChD595w
lnWn5bAra+6dg+tpotmeaUZyfVvjfdpJpprBoSC20TMB3u2n/NIcgbX8LZ2wMz6q
2YxeLPh9Mp9l+sEGxYnE3SOgEfJ6r5D1UKsWLsmcE6b3QzIlwJ0jKrPbyKsEQf8E
D0O6CasoIWpKrl/of+70n1GYvn+zBg13b6oid6TwJOAvAcODpPmiPeE9zc8JT2k4
7xv6SSi7bqB512hAbLbt41Hm9U/HnWp5tDKYIsc2f3WK5yJvmz91iBQCA41gS40c
I1AxhJwXaiKgo0AVzO7bhbdN/HTsGxLU9iiAKYIGVESasV73Bb5Tkp0+eLd7m4l4
anAAcQ2cphy0XrFjYwgpuRz8xJRklKVOfy4f6LWwrHmNxLn3RMTVufviHZRYWxPy
OUafZNATRhuHOQVJB7VSR0p6XTdxToJvidmrx47y7+3iud91Nww=
=v+H1
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to