From: Jan Palus Date: Mon, 3 Jun 2019 20:54:34 +0000 (+0200) Subject: fix build with new boost; rel 2 X-Git-Tag: auto/th/ceph-0.94.10-2~1 X-Git-Url: http://git.pld-linux.org/?p=packages%2Fceph.git;a=commitdiff_plain;h=c1965bc21142921f374c333196678ce884fe7044 fix build with new boost; rel 2 --- diff --git a/boost.patch b/boost.patch new file mode 100644 index 0000000..c121512 --- /dev/null +++ b/boost.patch @@ -0,0 +1,44 @@ +Regressed by https://github.com/boostorg/date_time/commit/f9f2aaf5216c + +src/rbd_replay/Replayer.cc:353:65: error: no matching conversion for functional-style cast from 'float' to 'boost::posix_time::microseconds' (aka 'subsecond_duration') + boost::system_time sub_release_time(action_completed_time + boost::posix_time::microseconds(dep.time_delta * m_latency_multiplier / 1000)); + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/usr/local/include/boost/date_time/time_duration.hpp:270:30: note: candidate constructor (the implicit copy constructor) not viable: no known conversion from 'float' to 'const boost::date_time::subsecond_duration' for 1st argument + class BOOST_SYMBOL_VISIBLE subsecond_duration : public base_duration + ^ +/usr/local/include/boost/date_time/time_duration.hpp:270:30: note: candidate constructor (the implicit move constructor) not viable: no known conversion from 'float' to 'boost::date_time::subsecond_duration' for 1st argument +/usr/local/include/boost/date_time/time_duration.hpp:286:59: note: candidate template ignored: disabled by 'enable_if' [with T = float] + typename boost::enable_if, void>::type* = 0) : + ^ + +src/test/librbd/test_mock_Journal.cc:485:42: error: reference to '_1' is ambiguous + std::bind(&invoke_replay_complete, _1, 0)); + ^ +/usr/local/include/boost/bind/placeholders.hpp:46:38: note: candidate found by name lookup is 'boost::placeholders::_1' +BOOST_STATIC_CONSTEXPR boost::arg<1> _1; + ^ +/usr/include/c++/v1/functional:2021:21: note: candidate found by name lookup is 'std::__1::placeholders::_1' +constexpr __ph<1> _1{}; + ^ + +--- src/rbd_replay/Replayer.cc.orig 2018-02-26 21:47:18 UTC ++++ src/rbd_replay/Replayer.cc +@@ -350,7 +350,7 @@ void Replayer::wait_for_actions(const action::Dependen + dout(DEPGRAPH_LEVEL) << "Finished waiting for " << dep.id << " after " << micros << " microseconds" << dendl; + // Apparently the nanoseconds constructor is optional: + // http://www.boost.org/doc/libs/1_46_0/doc/html/date_time/details.html#compile_options +- boost::system_time sub_release_time(action_completed_time + boost::posix_time::microseconds(dep.time_delta * m_latency_multiplier / 1000)); ++ boost::system_time sub_release_time(action_completed_time + boost::posix_time::microseconds(long(dep.time_delta * m_latency_multiplier / 1000))); + if (sub_release_time > release_time) { + release_time = sub_release_time; + } +--- ceph-0.94.10/src/mon/MDSMonitor.cc.orig 2019-06-03 22:46:11.352201283 +0200 ++++ ceph-0.94.10/src/mon/MDSMonitor.cc 2019-06-03 22:46:23.110188378 +0200 +@@ -14,6 +14,7 @@ + + #include + #include ++#include + + #include "MDSMonitor.h" + #include "Monitor.h" diff --git a/ceph.spec b/ceph.spec index f5227c9..2dffd52 100644 --- a/ceph.spec +++ b/ceph.spec @@ -23,7 +23,7 @@ Summary: User space components of the Ceph file system Summary(pl.UTF-8): Działające w przestrzeni użytkownika elementy systemu plików Ceph Name: ceph Version: 0.94.10 -Release: 1 +Release: 2 License: LGPL v2.1 (libraries), GPL v2 (some programs) Group: Base Source0: http://download.ceph.com/tarballs/%{name}-%{version}.tar.gz @@ -39,6 +39,7 @@ Source15: ceph.tmpfiles Patch0: %{name}-init-fix.patch Patch1: %{name}.logrotate.patch Patch2: cxx.patch +Patch3: boost.patch URL: http://ceph.com/ %{?with_accelio:BuildRequires: accelio-devel} BuildRequires: autoconf >= 2.59 @@ -215,6 +216,7 @@ Agenci OCF do monitorowania procesów Cepha. %patch0 -p1 %patch1 -p1 %patch2 -p1 +%patch3 -p0 %build %{__libtoolize} @@ -359,8 +361,9 @@ fi %attr(755,root,root) /sbin/ceph-disk-udev %attr(755,root,root) /sbin/mount.ceph %attr(755,root,root) /sbin/mount.fuse.ceph +%dir %{_libexecdir}/ceph +%attr(755,root,root) %{_libexecdir}/ceph/ceph-osd-prestart.sh %dir %{_libdir}/ceph -%attr(755,root,root) %{_libdir}/ceph/ceph-osd-prestart.sh %{_libdir}/ceph/ceph_common.sh %dir %{_libdir}/ceph/erasure-code %attr(755,root,root) %{_libdir}/ceph/erasure-code/libec_example.so*