media-video/cclive: Fix building against boost 1.70
authorDavid Seifert <soap@gentoo.org>
Tue, 16 Apr 2019 12:22:08 +0000 (14:22 +0200)
committerDavid Seifert <soap@gentoo.org>
Tue, 16 Apr 2019 12:22:08 +0000 (14:22 +0200)
Closes: https://bugs.gentoo.org/671768
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: David Seifert <soap@gentoo.org>
media-video/cclive/cclive-0.9.3-r2.ebuild
media-video/cclive/files/cclive-0.9.3-boost-1.67.patch [new file with mode: 0644]

index 36533f233014d7ad2a8bf12c88ce89a0f37ab9cb..208372b4da9d9152442541e55492afa6cdefadc5 100644 (file)
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 inherit flag-o-matic
 
@@ -27,6 +27,7 @@ DEPEND="${RDEPEND}
 PATCHES=(
        "${FILESDIR}"/${P}-iostream.patch #527658
        "${FILESDIR}"/${P}-boost-ver-check.patch #548310
+       "${FILESDIR}"/${P}-boost-1.67.patch #671768
 )
 
 src_configure() {
diff --git a/media-video/cclive/files/cclive-0.9.3-boost-1.67.patch b/media-video/cclive/files/cclive-0.9.3-boost-1.67.patch
new file mode 100644 (file)
index 0000000..7eecb49
--- /dev/null
@@ -0,0 +1,13 @@
+https://bugs.gentoo.org/671768
+
+--- a/src/cc/progressbar.h
++++ b/src/cc/progressbar.h
+@@ -316,7 +316,7 @@ private:
+   static inline std::string eta_from_seconds(const double s)
+   {
+-    const pt::time_duration& td = pt::seconds(s);
++    const pt::time_duration& td = pt::seconds(long(s));
+     return pt::to_simple_string(td);
+   }