From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB436138330 for ; Fri, 14 Oct 2016 14:00:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E0ACE0C10; Fri, 14 Oct 2016 14:00:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 35785E0C10 for ; Fri, 14 Oct 2016 14:00:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACB65341059 for ; Fri, 14 Oct 2016 14:00:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B959A2EF for ; Fri, 14 Oct 2016 14:00:15 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1476453587.b7ae1aa5fb650f8113a925327124c581a72723e9.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/interval_intersection/files/, dev-ros/interval_intersection/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/interval_intersection/files/gcc6.patch dev-ros/interval_intersection/interval_intersection-0.10.14.ebuild X-VCS-Directories: dev-ros/interval_intersection/ dev-ros/interval_intersection/files/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: b7ae1aa5fb650f8113a925327124c581a72723e9 X-VCS-Branch: master Date: Fri, 14 Oct 2016 14:00:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fb0e3c29-d1d5-4282-862f-2015830f2f1c X-Archives-Hash: 47039802d753b5199abae4f98cd5d08c commit: b7ae1aa5fb650f8113a925327124c581a72723e9 Author: Alexis Ballier gentoo org> AuthorDate: Fri Oct 14 13:59:47 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Fri Oct 14 13:59:47 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7ae1aa5 dev-ros/interval_intersection: backport upstream fix to build with gcc6, bug #594378, patch by Peter Levine. Package-Manager: portage-2.3.2 dev-ros/interval_intersection/files/gcc6.patch | 31 ++++++++++++++++++++++ .../interval_intersection-0.10.14.ebuild | 3 ++- 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/dev-ros/interval_intersection/files/gcc6.patch b/dev-ros/interval_intersection/files/gcc6.patch new file mode 100644 index 00000000..6323836 --- /dev/null +++ b/dev-ros/interval_intersection/files/gcc6.patch @@ -0,0 +1,31 @@ +commit c23ddb86367fc43c2d15e08a452ad2dc1a62041b +Author: Hodorgasm +Date: Mon Sep 19 19:11:57 2016 -0400 + + Fix "stdlib.h: No such file or directory" errors in GCC-6 + + Including '-isystem /usr/include' breaks building with GCC-6. + See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70129 + +diff --git a/interval_intersection/CMakeLists.txt b/interval_intersection/CMakeLists.txt +index 9bfd103..73bc0ac 100644 +--- a/interval_intersection/CMakeLists.txt ++++ b/interval_intersection/CMakeLists.txt +@@ -4,7 +4,7 @@ project(interval_intersection) + find_package(Boost REQUIRED thread) + find_package(catkin REQUIRED actionlib actionlib_msgs calibration_msgs geometry_msgs rosconsole roscpp roscpp_serialization rostime std_msgs) + +-include_directories(SYSTEM ${catkin_INCLUDE_DIRS}) ++include_directories(${catkin_INCLUDE_DIRS}) + include_directories(include) + + # generate the messages +@@ -35,7 +35,7 @@ add_executable(interval_intersection_node src/interval_intersection_node.cpp) + target_link_libraries(interval_intersection_node ${PROJECT_NAME}) + add_dependencies(interval_intersection_node calibration_msgs_gencpp) + +-include_directories(SYSTEM ${BOOST_INCLUDE_DIRS}) ++include_directories(${BOOST_INCLUDE_DIRS}) + add_executable(interval_intersection_action src/interval_intersection_action.cpp) + target_link_libraries(interval_intersection_action ${Boost_LIBRARIES} + ${catkin_LIBRARIES} diff --git a/dev-ros/interval_intersection/interval_intersection-0.10.14.ebuild b/dev-ros/interval_intersection/interval_intersection-0.10.14.ebuild index 273edb7..c6766d0 100644 --- a/dev-ros/interval_intersection/interval_intersection-0.10.14.ebuild +++ b/dev-ros/interval_intersection/interval_intersection-0.10.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -28,3 +28,4 @@ RDEPEND=" " DEPEND="${RDEPEND} test? ( dev-cpp/gtest )" +PATCHES=( "${FILESDIR}/gcc6.patch" )