Your message dated Sun, 21 Feb 2016 18:24:17 +0000
with message-id <[email protected]>
and subject line Bug#810953: fixed in cclive 0.9.3-0.1
has caused the Debian Bug report #810953,
regarding cclive: Prepare for libquvi-0.9 transition
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.)


-- 
810953: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=810953
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: cclive
Version: 0.9.3
Severity: normal

The attached patch includes the changes needed to build against libquvi-0.9.


-- System Information:
Debian Release: stretch/sid
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.3.0-5-generic (SMP w/4 CPU cores)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
diff -Nru cclive-0.7.16/debian/changelog cclive-0.9.3/debian/changelog
--- cclive-0.7.16/debian/changelog	2015-07-09 18:51:00.000000000 +1000
+++ cclive-0.9.3/debian/changelog	2016-01-14 18:05:06.000000000 +1100
@@ -1,3 +1,13 @@
+cclive (0.9.3-1) UNRELEASED; urgency=medium
+
+  * New upstream release for libquvi-0.9 support
+  * debian/control.in:
+    - Add build-deps on libglib2.0-dev and libglibmm-2.4-dev
+    - Bump build-deps on libquvi-0.9-dev and libboost
+  * d/p/fix-FTBFS-missing-includes.patch: fix build failure due to missing includes
+
+ -- Tim Lunn <[email protected]>  Thu, 14 Jan 2016 15:18:18 +1100
+
 cclive (0.7.16-2.1) unstable; urgency=medium
 
   * Non maintainer upload.
diff -Nru cclive-0.7.16/debian/control cclive-0.9.3/debian/control
--- cclive-0.7.16/debian/control	2014-05-12 07:21:51.000000000 +1000
+++ cclive-0.9.3/debian/control	2016-01-14 15:47:00.000000000 +1100
@@ -6,12 +6,14 @@
 Build-Depends: debhelper (>= 9),
  dh-autoreconf,
  libcurl4-gnutls-dev,
+ libglib2.0-dev,
+ libglibmm-2.4-dev,
  libpcre3-dev,
- libquvi-dev (>= 0.2.16.1),
- libboost-filesystem-dev,
- libboost-iostreams-dev,
- libboost-program-options-dev,
- libboost-date-time-dev,
+ libquvi-0.9-dev,
+ libboost-filesystem-dev (>= 1.49),
+ libboost-iostreams-dev (>= 1.49),
+ libboost-program-options-dev (>= 1.49),
+ libboost-date-time-dev (>= 1.49),
  asciidoc,
  pkg-config
 Standards-Version: 3.9.5
diff -Nru cclive-0.7.16/debian/patches/fix-FTBFS-missing-includes.patch cclive-0.9.3/debian/patches/fix-FTBFS-missing-includes.patch
--- cclive-0.7.16/debian/patches/fix-FTBFS-missing-includes.patch	1970-01-01 10:00:00.000000000 +1000
+++ cclive-0.9.3/debian/patches/fix-FTBFS-missing-includes.patch	2016-01-14 16:53:16.000000000 +1100
@@ -0,0 +1,48 @@
+Index: cclive-0.9.3/src/cc/error.h
+===================================================================
+--- cclive-0.9.3.orig/src/cc/error.h
++++ cclive-0.9.3/src/cc/error.h
+@@ -29,6 +29,7 @@
+ #include <boost/exception/errinfo_errno.hpp>
+ #include <boost/tuple/tuple.hpp>
+ #include <cerrno>
++#include <iostream>
+ 
+ namespace cc
+ {
+Index: cclive-0.9.3/src/cc/options.h
+===================================================================
+--- cclive-0.9.3.orig/src/cc/options.h
++++ cclive-0.9.3/src/cc/options.h
+@@ -38,6 +38,7 @@
+ #include <boost/foreach.hpp>
+ #include <boost/format.hpp>
+ #include <fstream>
++#include <iostream>
+ 
+ #include <ccerror>
+ #include <ccre>
+Index: cclive-0.9.3/src/cc/sig.h
+===================================================================
+--- cclive-0.9.3.orig/src/cc/sig.h
++++ cclive-0.9.3/src/cc/sig.h
+@@ -28,6 +28,7 @@
+ #include <unistd.h>
+ #include <csignal>
+ #include <cstdio>
++#include <iostream>
+ 
+ namespace cc
+ {
+Index: cclive-0.9.3/src/cc/error.cpp
+===================================================================
+--- cclive-0.9.3.orig/src/cc/error.cpp
++++ cclive-0.9.3/src/cc/error.cpp
+@@ -20,7 +20,6 @@
+ 
+ #include <ccinternal>
+ 
+-#include <iostream>
+ #include <climits>
+ #include <cstring>
+ #include <cerrno>
diff -Nru cclive-0.7.16/debian/patches/fix-rpath.diff cclive-0.9.3/debian/patches/fix-rpath.diff
--- cclive-0.7.16/debian/patches/fix-rpath.diff	2014-05-12 07:21:51.000000000 +1000
+++ cclive-0.9.3/debian/patches/fix-rpath.diff	2016-01-14 15:21:22.000000000 +1100
@@ -6,11 +6,13 @@
 Do not set rpath for Boost libraries.  While at it, also disable silent rules
 to make finding problems easier.
 
---- a/configure.ac
-+++ b/configure.ac
-@@ -17,8 +17,8 @@
- AC_DEFINE_UNQUOTED([CANONICAL_TARGET], "$target", [...])
- AC_DEFINE_UNQUOTED([CANONICAL_HOST], "$host", [...])
+Index: cclive-0.9.3/configure.ac
+===================================================================
+--- cclive-0.9.3.orig/configure.ac
++++ cclive-0.9.3/configure.ac
+@@ -17,8 +17,8 @@ AC_USE_SYSTEM_EXTENSIONS
+ AC_DEFINE_UNQUOTED([CANONICAL_TARGET], "$target",
+   [Define to canonical target])
  
 -AM_INIT_AUTOMAKE([1.11.1 -Wall -Werror dist-xz no-dist-gzip tar-ustar])
 -AM_SILENT_RULES([yes])
@@ -19,9 +21,11 @@
  
  # GNU Automake 1.12 requires this macro. Earlier versions do not
  # recognize this macro. Work around this.
---- a/m4/boost.m4
-+++ b/m4/boost.m4
-@@ -421,7 +421,7 @@
+Index: cclive-0.9.3/m4/boost.m4
+===================================================================
+--- cclive-0.9.3.orig/m4/boost.m4
++++ cclive-0.9.3/m4/boost.m4
+@@ -421,7 +421,7 @@ dnl generated only once above (before we
            LDFLAGS=$boost_save_LDFLAGS
            LIBS=$boost_save_LIBS
            ])
diff -Nru cclive-0.7.16/debian/patches/series cclive-0.9.3/debian/patches/series
--- cclive-0.7.16/debian/patches/series	2015-07-09 18:48:07.000000000 +1000
+++ cclive-0.9.3/debian/patches/series	2016-01-14 16:54:51.000000000 +1100
@@ -1,2 +1,3 @@
 fix-rpath.diff
 gcc5.diff
+fix-FTBFS-missing-includes.patch

--- End Message ---
--- Begin Message ---
Source: cclive
Source-Version: 0.9.3-0.1

We believe that the bug you reported is fixed in the latest version of
cclive, 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.
Andreas Henriksson <[email protected]> (supplier of updated cclive 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, 18 Feb 2016 17:24:49 +0100
Source: cclive
Binary: cclive
Architecture: source amd64
Version: 0.9.3-0.1
Distribution: unstable
Urgency: medium
Maintainer: Alejandro Garrido Mota <[email protected]>
Changed-By: Andreas Henriksson <[email protected]>
Description:
 cclive     - lightweight command line video extraction tool
Closes: 810953
Changes:
 cclive (0.9.3-0.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
 .
   [ Andreas Henriksson ]
   * Update debian/watch to scan for all versions, not just 0.7.x.
   * New upstream release (Closes: #810953)
     - includes libquvi 0.9 support.
   * Update debian/copyright for GPLv3+ -> AGPLv3+ change.
 .
   [ Tim Lunn ]
   * debian/control.in:
     - Add build-deps on libglib2.0-dev and libglibmm-2.4-dev
     - Bump build-deps on libquvi-0.9-dev and libboost
   * Add d/p/fix-FTBFS-missing-includes.patch
     - fix build failure due to missing includes
Checksums-Sha1:
 eb0c273f5097f0183ea562b0e5402f02c77d1e55 2095 cclive_0.9.3-0.1.dsc
 bdcc87b3f03ed24dfe39a06159b565df7fdce875 296720 cclive_0.9.3.orig.tar.xz
 9db9771e81527583a3c67df7e56d9f73e26b3451 4784 cclive_0.9.3-0.1.debian.tar.xz
 deca3ccee24f9f45204a9d89d59c4cfec183e215 2086934 
cclive-dbgsym_0.9.3-0.1_amd64.deb
 11e5e39d7abcd800ea440c748b04a16aa98a2214 154148 cclive_0.9.3-0.1_amd64.deb
Checksums-Sha256:
 be23915d42e2040adb6e7ac985039354623d9439d102a66ce5351fdfc383c617 2095 
cclive_0.9.3-0.1.dsc
 2edeaf5d76455723577e0b593f0322a97f1e0c8b0cffcc70eca8b5d17374a495 296720 
cclive_0.9.3.orig.tar.xz
 e3bddae72155969980ba3c7847c335ad58d72d6a6c971510e67268664a5dc627 4784 
cclive_0.9.3-0.1.debian.tar.xz
 2ac8d0b5e9646239545d5cfbb97bcf1d40641d158f99057da1e25a7a8c3e0d52 2086934 
cclive-dbgsym_0.9.3-0.1_amd64.deb
 b1f2a7b026eb256afa4b589970ba1229615c813c1a1285fb2ef2a31e389cdece 154148 
cclive_0.9.3-0.1_amd64.deb
Files:
 7071eea63235c9b0b68a1e5233682d48 2095 video optional cclive_0.9.3-0.1.dsc
 c336f97e29327d92ead62765a0ef0b65 296720 video optional cclive_0.9.3.orig.tar.xz
 518a47bcce1889f65e44dcc782cffe4b 4784 video optional 
cclive_0.9.3-0.1.debian.tar.xz
 f8dd0b32d06d5ece3d5e3c321cbd1fa6 2086934 debug extra 
cclive-dbgsym_0.9.3-0.1_amd64.deb
 915c7c8ecc2160b616d6b1b73007e721 154148 video optional 
cclive_0.9.3-0.1_amd64.deb

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

iQIcBAEBCgAGBQJWxfIrAAoJEAvEfcZNE1MG3/UP/2YUR4fGJ81clvh8EOADLFMe
/mcc/wtwlpmhYvE3oQvx+tO2Oou164AymugVBrmrghqjNq2xtGU3aJF7QsBHvKQs
QVL4GW0DKZqZdTBeeIKPlAV+zRm19BW4oLWmH9KJ+94xm2S/fBGpvUQtYPa/y2zd
F3fZaLtOhRvI1ekr7rUcWMoZ6d4XZdFM4/FaOcJcNmFBzp7DIrvWPfCGqdCBW+2Y
+tuYioq5hnjg1Y+yLrdUy2Ah8+TE4Wz8LDxDjuRnlYwMzPI+ex1qvuO9/XYzzmeC
TK4kxP2hmLW974AVwjHAk3N3foFxaXivaBCekLr+1E3vl0ES8N4cN8WMyVxeFNDF
t4VQ94P+aH0FhVW7olMcQxqFf+XU4V3nKkrgbZh3T6SEwN5hcLidqXVbj9z3nQNK
xrxcpdRW0oL7umBcHsLfxx+rzsp9seODcXM9NXfFuiWQwN+6XAVF7sTAYwPHpinF
fZNjC/qV3DmDKNX0TZ8jend6pyxJXSiEm7FPO3GFdgiDtLDS1uUqj2CaJLmH/3w5
AlXzytF9HUIs5kiqmtN/Iw+gqpQ0oU3KPmp+SfE8S92P+b/mAlqPORtyghmgmcFp
zzKdqmSaDCZxJGiQ9UG4+IczDUXqNARjeHIjZTkbh5HLZC2J7Lg+DlJXZxla3yJT
dnYykIeHBSTbaYcDz8Kl
=Bg0m
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to