From a483eb034cafe5d1c17cb37bf7017c8c7f5f8df6 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Wed, 13 May 2020 14:21:54 +0200 Subject: [PATCH] dev-ros/roscpp: fix build with boost 1.73 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Alexis Ballier --- dev-ros/roscpp/files/boost173.patch | 62 +++++++++++++++++++++++++++++ dev-ros/roscpp/roscpp-1.15.4.ebuild | 1 + dev-ros/roscpp/roscpp-9999.ebuild | 1 + 3 files changed, 64 insertions(+) create mode 100644 dev-ros/roscpp/files/boost173.patch diff --git a/dev-ros/roscpp/files/boost173.patch b/dev-ros/roscpp/files/boost173.patch new file mode 100644 index 000000000000..d31f8c8ff246 --- /dev/null +++ b/dev-ros/roscpp/files/boost173.patch @@ -0,0 +1,62 @@ +Index: roscpp/include/ros/timer_manager.h +=================================================================== +--- roscpp.orig/include/ros/timer_manager.h ++++ roscpp/include/ros/timer_manager.h +@@ -349,7 +349,7 @@ int32_t TimerManager::add(const + { + boost::mutex::scoped_lock lock(waiting_mutex_); + waiting_.push_back(info->handle); +- waiting_.sort(boost::bind(&TimerManager::waitingCompare, this, _1, _2)); ++ waiting_.sort(boost::bind(&TimerManager::waitingCompare, this, boost::placeholders::_1, boost::placeholders::_2)); + } + + new_timer_ = true; +@@ -416,7 +416,7 @@ void TimerManager::schedule(con + + waiting_.push_back(info->handle); + // waitingCompare requires a lock on the timers_mutex_ +- waiting_.sort(boost::bind(&TimerManager::waitingCompare, this, _1, _2)); ++ waiting_.sort(boost::bind(&TimerManager::waitingCompare, this, boost::placeholders::_1, boost::placeholders::_2)); + } + + new_timer_ = true; +@@ -490,7 +490,7 @@ void TimerManager::setPeriod(in + // In this case, let next_expected be updated only in updateNext + + info->period = period; +- waiting_.sort(boost::bind(&TimerManager::waitingCompare, this, _1, _2)); ++ waiting_.sort(boost::bind(&TimerManager::waitingCompare, this, boost::placeholders::_1, boost::placeholders::_2)); + } + + new_timer_ = true; +Index: roscpp/src/libros/connection_manager.cpp +=================================================================== +--- roscpp.orig/src/libros/connection_manager.cpp ++++ roscpp/src/libros/connection_manager.cpp +@@ -66,7 +66,7 @@ void ConnectionManager::start() + tcpserver_transport_ = boost::make_shared(&poll_manager_->getPollSet()); + if (!tcpserver_transport_->listen(network::getTCPROSPort(), + MAX_TCPROS_CONN_QUEUE, +- boost::bind(&ConnectionManager::tcprosAcceptConnection, this, _1))) ++ boost::bind(&ConnectionManager::tcprosAcceptConnection, this, boost::placeholders::_1))) + { + ROS_FATAL("Listen on port [%d] failed", network::getTCPROSPort()); + ROS_BREAK(); +@@ -142,7 +142,7 @@ void ConnectionManager::addConnection(co + boost::mutex::scoped_lock lock(connections_mutex_); + + connections_.insert(conn); +- conn->addDropListener(boost::bind(&ConnectionManager::onConnectionDropped, this, _1)); ++ conn->addDropListener(boost::bind(&ConnectionManager::onConnectionDropped, this, boost::placeholders::_1)); + } + + void ConnectionManager::onConnectionDropped(const ConnectionPtr& conn) +@@ -190,7 +190,7 @@ void ConnectionManager::tcprosAcceptConn + ConnectionPtr conn(boost::make_shared()); + addConnection(conn); + +- conn->initialize(transport, true, boost::bind(&ConnectionManager::onConnectionHeaderReceived, this, _1, _2)); ++ conn->initialize(transport, true, boost::bind(&ConnectionManager::onConnectionHeaderReceived, this, boost::placeholders::_1, boost::placeholders::_2)); + } + + bool ConnectionManager::onConnectionHeaderReceived(const ConnectionPtr& conn, const Header& header) diff --git a/dev-ros/roscpp/roscpp-1.15.4.ebuild b/dev-ros/roscpp/roscpp-1.15.4.ebuild index 033a2eb87fd0..8863bf3d38b4 100644 --- a/dev-ros/roscpp/roscpp-1.15.4.ebuild +++ b/dev-ros/roscpp/roscpp-1.15.4.ebuild @@ -27,3 +27,4 @@ RDEPEND=" dev-ros/rosgraph_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] " DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}/boost173.patch" ) diff --git a/dev-ros/roscpp/roscpp-9999.ebuild b/dev-ros/roscpp/roscpp-9999.ebuild index 033a2eb87fd0..8863bf3d38b4 100644 --- a/dev-ros/roscpp/roscpp-9999.ebuild +++ b/dev-ros/roscpp/roscpp-9999.ebuild @@ -27,3 +27,4 @@ RDEPEND=" dev-ros/rosgraph_msgs[${CATKIN_MESSAGES_CXX_USEDEP}] " DEPEND="${RDEPEND}" +PATCHES=( "${FILESDIR}/boost173.patch" ) -- 2.26.2