Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/test_diagnostic_aggregator/, dev-ros/test_diagnostic_aggregator/files/
Date: Fri, 14 Oct 2016 13:52:47
Message-Id: 1476453156.64d31fdfd7b6ee7958478876aeadec300e25980c.aballier@gentoo
1 commit: 64d31fdfd7b6ee7958478876aeadec300e25980c
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 14 13:52:29 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 14 13:52:36 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d31fdf
7
8 dev-ros/test_diagnostic_aggregator: fix build with gcc6, bug #594192
9
10 Package-Manager: portage-2.3.2
11
12 dev-ros/test_diagnostic_aggregator/files/gcc6.patch | 13 +++++++++++++
13 .../test_diagnostic_aggregator-1.8.10.ebuild | 1 +
14 2 files changed, 14 insertions(+)
15
16 diff --git a/dev-ros/test_diagnostic_aggregator/files/gcc6.patch b/dev-ros/test_diagnostic_aggregator/files/gcc6.patch
17 new file mode 100644
18 index 00000000..2819dec
19 --- /dev/null
20 +++ b/dev-ros/test_diagnostic_aggregator/files/gcc6.patch
21 @@ -0,0 +1,13 @@
22 +Index: test_diagnostic_aggregator/CMakeLists.txt
23 +===================================================================
24 +--- test_diagnostic_aggregator.orig/CMakeLists.txt
25 ++++ test_diagnostic_aggregator/CMakeLists.txt
26 +@@ -9,7 +9,7 @@ catkin_package(DEPENDS diagnostic_aggreg
27 + LIBRARIES ${PROJECT_NAME}
28 + )
29 +
30 +-include_directories(SYSTEM ${catkin_INCLUDE_DIRS})
31 ++include_directories(${catkin_INCLUDE_DIRS})
32 + include_directories(include)
33 +
34 + add_library(test_diagnostic_aggregator
35
36 diff --git a/dev-ros/test_diagnostic_aggregator/test_diagnostic_aggregator-1.8.10.ebuild b/dev-ros/test_diagnostic_aggregator/test_diagnostic_aggregator-1.8.10.ebuild
37 index 79de6b7..a8d941f 100644
38 --- a/dev-ros/test_diagnostic_aggregator/test_diagnostic_aggregator-1.8.10.ebuild
39 +++ b/dev-ros/test_diagnostic_aggregator/test_diagnostic_aggregator-1.8.10.ebuild
40 @@ -23,3 +23,4 @@ RDEPEND="
41 dev-ros/rostest
42 "
43 DEPEND="${RDEPEND}"
44 +PATCHES=( "${FILESDIR}/gcc6.patch" )