Your message dated Wed, 22 May 2024 17:34:50 +0000
with message-id <e1s9prw-00grfc...@fasolo.debian.org>
and subject line Bug#1071541: fixed in obs-source-clone 0.1.5-1
has caused the Debian Bug report #1071541,
regarding FTBFS: obs-source-clone/audio-wrapper.c:134:25: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
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.)


-- 
1071541: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1071541
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: obs-source-clone
Version: 0.1.4-1
Severity: serious
Tags: upstream
Justification: FTBFS

When rebuilding the plugin over amd64 architecture, we got the following error:

[ 66%] Building C object CMakeFiles/source-clone.dir/audio-wrapper.c.o
/usr/bin/cc -DHAVE_OBSCONFIG_H -Dsource_clone_EXPORTS -isystem /usr/include/obs 
-g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/PKGS/obs-source-clone2/obs-source-clone-0.1.4=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wno-psabi 
-Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -Werror -Wextra -Wvla -Wformat 
-Wformat-security -Wswitch -Wunused-parameter -Wno-unused-function 
-Wno-missing-field-initializers -fno-strict-aliasing 
-Werror-implicit-function-declaration -Wno-missing-braces -MD -MT 
CMakeFiles/source-clone.dir/source-clone.c.o -MF 
CMakeFiles/source-clone.dir/source-clone.c.o.d -o 
CMakeFiles/source-clone.dir/source-clone.c.o -c 
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c
/usr/bin/cc -DHAVE_OBSCONFIG_H -Dsource_clone_EXPORTS -isystem /usr/include/obs 
-g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/PKGS/obs-source-clone2/obs-source-clone-0.1.4=. 
-fstack-protector-strong -Wformat -Werror=format-security -Wno-psabi 
-Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -Werror -Wextra -Wvla -Wformat 
-Wformat-security -Wswitch -Wunused-parameter -Wno-unused-function 
-Wno-missing-field-initializers -fno-strict-aliasing 
-Werror-implicit-function-declaration -Wno-missing-braces -MD -MT 
CMakeFiles/source-clone.dir/audio-wrapper.c.o -MF 
CMakeFiles/source-clone.dir/audio-wrapper.c.o.d -o 
CMakeFiles/source-clone.dir/audio-wrapper.c.o -c 
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/audio-wrapper.c
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/audio-wrapper.c: In function 
‘audio_wrapper_render’:
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/audio-wrapper.c:129:33: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
  129 |                                 circlebuf_push_back(
      |                                 ^~~~~~~~~~~~~~~~~~~
In file included from 
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.h:6,
                 from 
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/audio-wrapper.c:3:
/usr/include/obs/util/circlebuf.h:150:1: note: declared here
  150 | circlebuf_push_back(struct circlebuf *cb, const void *data, size_t size)
      | ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/audio-wrapper.c:134:25: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
  134 |                         circlebuf_push_back(&clone->audio_frames, 
&frames,
      |                         ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:150:1: note: declared here
  150 | circlebuf_push_back(struct circlebuf *cb, const void *data, size_t size)
      | ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/audio-wrapper.c:136:25: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
  136 |                         circlebuf_push_back(&clone->audio_timestamps,
      |                         ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:150:1: note: declared here
  150 | circlebuf_push_back(struct circlebuf *cb, const void *data, size_t size)
      | ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c: In function 
‘source_clone_audio_callback’:
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:33:17: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
   33 |                 circlebuf_push_back(&context->audio_data[i],
      |                 ^~~~~~~~~~~~~~~~~~~
In file included from 
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.h:6,
                 from 
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:1:
/usr/include/obs/util/circlebuf.h:150:1: note: declared here
  150 | circlebuf_push_back(struct circlebuf *cb, const void *data, size_t size)
      | ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:36:9: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
   36 |         circlebuf_push_back(&context->audio_frames, &audio_data->frames,
      |         ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:150:1: note: declared here
  150 | circlebuf_push_back(struct circlebuf *cb, const void *data, size_t size)
      | ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:38:9: error: 
‘circlebuf_push_back’ is deprecated [-Werror=deprecated-declarations]
   38 |         circlebuf_push_back(&context->audio_timestamps, 
&audio_data->timestamp,
      |         ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:150:1: note: declared here
  150 | circlebuf_push_back(struct circlebuf *cb, const void *data, size_t size)
      | ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c: In function 
‘source_clone_destroy’:
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:88:17: error: 
‘circlebuf_free’ is deprecated [-Werror=deprecated-declarations]
   88 |                 circlebuf_free(&context->audio_data[i]);
      |                 ^~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:46:35: note: declared here
   46 | OBS_DEPRECATED static inline void circlebuf_free(struct circlebuf *cb)
      |                                   ^~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:90:9: error: 
‘circlebuf_free’ is deprecated [-Werror=deprecated-declarations]
   90 |         circlebuf_free(&context->audio_frames);
      |         ^~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:46:35: note: declared here
   46 | OBS_DEPRECATED static inline void circlebuf_free(struct circlebuf *cb)
      |                                   ^~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:91:9: error: 
‘circlebuf_free’ is deprecated [-Werror=deprecated-declarations]
   91 |         circlebuf_free(&context->audio_timestamps);
      |         ^~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:46:35: note: declared here
   46 | OBS_DEPRECATED static inline void circlebuf_free(struct circlebuf *cb)
      |                                   ^~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c: In function 
‘source_clone_video_tick’:
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:588:17: error: 
‘circlebuf_pop_front’ is deprecated [-Werror=deprecated-declarations]
  588 |                 circlebuf_pop_front(&context->audio_frames, 
&audio.frames,
      |                 ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:291:35: note: declared here
  291 | OBS_DEPRECATED static inline void circlebuf_pop_front(struct circlebuf 
*cb,
      |                                   ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:590:17: error: 
‘circlebuf_pop_front’ is deprecated [-Werror=deprecated-declarations]
  590 |                 circlebuf_pop_front(&context->audio_timestamps,
      |                 ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:291:35: note: declared here
  291 | OBS_DEPRECATED static inline void circlebuf_pop_front(struct circlebuf 
*cb,
      |                                   ^~~~~~~~~~~~~~~~~~~
/PKGS/obs-source-clone2/obs-source-clone-0.1.4/source-clone.c:598:25: error: 
‘circlebuf_pop_front’ is deprecated [-Werror=deprecated-declarations]
  598 |                         circlebuf_pop_front(&context->audio_data[i], 
NULL,
      |                         ^~~~~~~~~~~~~~~~~~~
/usr/include/obs/util/circlebuf.h:291:35: note: declared here
  291 | OBS_DEPRECATED static inline void circlebuf_pop_front(struct circlebuf 
*cb,
      |                                   ^~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
make[3]: *** [CMakeFiles/source-clone.dir/build.make:93: 
CMakeFiles/source-clone.dir/audio-wrapper.c.o] Error 1
make[3]: *** Waiting for unfinished jobs....
cc1: all warnings being treated as errors
make[3]: *** [CMakeFiles/source-clone.dir/build.make:79: 
CMakeFiles/source-clone.dir/source-clone.c.o] Error 1
make[3]: Leaving directory 
'/PKGS/obs-source-clone2/obs-source-clone-0.1.4/obj-i686-linux-gnu'
make[2]: *** [CMakeFiles/Makefile2:86: CMakeFiles/source-clone.dir/all] Error 2
make[2]: Leaving directory 
'/PKGS/obs-source-clone2/obs-source-clone-0.1.4/obj-i686-linux-gnu'
make[1]: *** [Makefile:159: all] Error 2
make[1]: Leaving directory 
'/PKGS/obs-source-clone2/obs-source-clone-0.1.4/obj-i686-linux-gnu'
dh_auto_build: error: cd obj-i686-linux-gnu && make -j16 "INSTALL=install 
--strip-program=true" VERBOSE=1 returned exit code 2
make: *** [debian/rules:17: binary] Error 25

Eriberto

--- End Message ---
--- Begin Message ---
Source: obs-source-clone
Source-Version: 0.1.5-1
Done: Joao Eriberto Mota Filho <eribe...@debian.org>

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

Debian distribution maintenance software
pp.
Joao Eriberto Mota Filho <eribe...@debian.org> (supplier of updated 
obs-source-clone 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: Wed, 22 May 2024 12:29:45 -0300
Source: obs-source-clone
Architecture: source
Version: 0.1.5-1
Distribution: unstable
Urgency: medium
Maintainer: Joao Eriberto Mota Filho <eribe...@debian.org>
Changed-By: Joao Eriberto Mota Filho <eribe...@debian.org>
Closes: 1071541
Changes:
 obs-source-clone (0.1.5-1) unstable; urgency=medium
 .
   * New upstream version 0.1.5. (Closes: #1071541)
   * debian/copyright: updated upstream and packaging copyright years.
   * debian/patches/:
       - Removed the following patches because the upstream fixed the source
         code (thanks):
           ~ 010_add-pt-BR.patch
           ~ 020_add-EOF.patch]
       - 010_update_pt-BR.patch: created to updated pt-BR translation.
Checksums-Sha1:
 c62d95a7e4c119009b131935587ef6f423330dcc 2017 obs-source-clone_0.1.5-1.dsc
 5527f5045e87fb27b70bb9980694c15c153a74cc 55192 
obs-source-clone_0.1.5.orig.tar.gz
 56e07f24990092dacdfc3187c047a62a8c03ff0a 4068 
obs-source-clone_0.1.5-1.debian.tar.xz
 ef322ed8879558b949a4cec4ae4bb93b51b267a3 11672 
obs-source-clone_0.1.5-1_source.buildinfo
Checksums-Sha256:
 b64ae64f2ca067ae1ac64bac2f72273e05bf00803b1c8ac34ec5900bca6889d2 2017 
obs-source-clone_0.1.5-1.dsc
 8ed7224bd8760a49016397a5afee3002926cb4c0f83a3466ba5ac3ca9a5f4f6d 55192 
obs-source-clone_0.1.5.orig.tar.gz
 0c05f6ee2cf4f5a40cdd9829b4f994b5886d54f5ef26fdad86f3ae323db2dea2 4068 
obs-source-clone_0.1.5-1.debian.tar.xz
 1647d1c54129059ac23715253bf7ef572a0aeafa6218e3cde64238ba0556de52 11672 
obs-source-clone_0.1.5-1_source.buildinfo
Files:
 00de8091871265e27e3c9cc7a1a0c351 2017 video optional 
obs-source-clone_0.1.5-1.dsc
 4a6816be3ddeb4bc90b79108f0c6b67d 55192 video optional 
obs-source-clone_0.1.5.orig.tar.gz
 b1e54eb9cc88236944656614f936da36 4068 video optional 
obs-source-clone_0.1.5-1.debian.tar.xz
 d1761bb5caf0215fe345b0ffb8e3f43c 11672 video optional 
obs-source-clone_0.1.5-1_source.buildinfo

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

iQIzBAEBCgAdFiEENX3LDuyVoBrrofDS3mO5xwTr6e8FAmZOJzMACgkQ3mO5xwTr
6e/wAg/+JL5aOnLbifiriobMMh24Skhtmg3pUFgoU369HD8DOPfnS9vd0iPf+VWH
QhucwwAneDcpjMu56hhASNVK34+bhYyezW3mReiqMtIzJItg9b874iGDq856Kr/l
BnXlUpKP6xdfBqjjiaHJuK7N5zgqz482sJogyxhgVegqO23x8BgDHRIq86FsrGl1
L8NfCtgpymZ76Nxv0ncqe7R9IZ8x88hdV9xSEkz0bOJZOc3b8EL+1sU9xau+TvWO
D7v9ZheysvA0FUxsbFEZB2cGwAag2wlRCvZ1B6CUoUyD9KoS/qEiQWFwesG31VZo
MdBwt5YEz8yn+SdErkwdrETM227KwPGn30eZyMgTGLl+hBlkYZbG5sH1wKH0Fh+7
5uZ0bfWH/hfkmIChKE4x9VSqgjMbUFpSFBZW6PyuxnkuLCC99KD1WO00of24kG3n
d3N+LHb79q1NzdbQlCBwyEXLQWrZfUuI0iGXEC2gkc2n4ZPxTVZm0Ap3J2LqYjA5
8uy2LUV1DCdUPIOXWjGoxt39ZTVTC01PEwk+i8px6jM5PxCNt81H4fJgvo+mJvw/
Cg4G6xX20NrBvlHnlVVeRX9mgX9t5aX0UsgvOuuKAYhCOkpGxriL3hKUDcI/AqbD
+c+5KYfr+kheg3P53LbYZoT/L7QLoXg6jiJ41r/mPTwN7j0AcUE=
=pLbf
-----END PGP SIGNATURE-----

Attachment: pgpNNY_0kAuob.pgp
Description: PGP signature


--- End Message ---

Reply via email to