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/rosconsole/
Date: Tue, 01 Nov 2016 12:54:05
Message-Id: 1478004830.426190f78cbdabcfbec017ce9b156e435579286f.aballier@gentoo
1 commit: 426190f78cbdabcfbec017ce9b156e435579286f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 12:42:44 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 12:53:50 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=426190f7
7
8 dev-ros/rosconsole: Bump to 1.12.6.
9
10 Package-Manager: portage-2.3.2
11
12 dev-ros/rosconsole/Manifest | 1 +
13 dev-ros/rosconsole/rosconsole-1.12.6.ebuild | 39 +++++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-ros/rosconsole/Manifest b/dev-ros/rosconsole/Manifest
17 index 19393e5..fad38b8 100644
18 --- a/dev-ros/rosconsole/Manifest
19 +++ b/dev-ros/rosconsole/Manifest
20 @@ -1 +1,2 @@
21 DIST ros_comm-1.12.5.tar.gz 966478 SHA256 a53039f5106133b67689ba579e29c9045e3b1468713019cf72b848ce979b6964 SHA512 0d97eac0b0cf200a1e217597176d55c82249e2e7b9f3c4706dce84068a65c6642e099fb16c69d33b62d6c780d2c2775b7330fb497bc936f9d4bc73a2b5ba12ca WHIRLPOOL 3f1c8239ef146a0915b8f2c183c68eda094f480fa099846c6b152325bd1e8574114ecbb4a5bcd609bf1323f29767dc8110e175c79b07183cc8ff9e51f9a62b19
22 +DIST ros_comm-1.12.6.tar.gz 967763 SHA256 8585d952b1168d2011949b38c68160180b1f3ee1648a506bcb5989f9807335ca SHA512 1987c6362ae0c7c019a226223c73a7aefdc14a3fc66469ab6cdf9c41e9efdf4d7b7d4932af2a52f2082d716342a307b2e415c0ab45f77dfd9a7c1e4274deab5c WHIRLPOOL a719bb81da6b1b7e2f253d3bf6c8db8339333b4fa7f89a18d0fa734e9ff1700e1dac7b537f154015b4ada7455a6673c1715a89e2fdd3da9bbbb70081fc2943cd
23
24 diff --git a/dev-ros/rosconsole/rosconsole-1.12.6.ebuild b/dev-ros/rosconsole/rosconsole-1.12.6.ebuild
25 new file mode 100644
26 index 00000000..39a48ae
27 --- /dev/null
28 +++ b/dev-ros/rosconsole/rosconsole-1.12.6.ebuild
29 @@ -0,0 +1,39 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +ROS_REPO_URI="https://github.com/ros/ros_comm"
37 +KEYWORDS="~amd64 ~arm"
38 +ROS_SUBDIR=tools/${PN}
39 +
40 +inherit ros-catkin
41 +
42 +DESCRIPTION="ROS console output library"
43 +LICENSE="BSD"
44 +SLOT="0"
45 +IUSE="+log4cxx glog"
46 +
47 +RDEPEND="
48 + dev-ros/cpp_common
49 + dev-ros/rostime
50 + dev-ros/rosunit
51 + dev-libs/boost:=[threads]
52 + log4cxx? ( dev-libs/log4cxx )
53 + !log4cxx? ( glog? ( dev-cpp/glog ) )
54 +"
55 +DEPEND="${RDEPEND}"
56 +
57 +src_configure() {
58 + local ROSCONSOLE_BACKEND=""
59 + if use log4cxx; then
60 + ROSCONSOLE_BACKEND="log4cxx"
61 + elif use glog; then
62 + ROSCONSOLE_BACKEND="glog"
63 + else
64 + ROSCONSOLE_BACKEND="print"
65 + fi
66 + local mycatkincmakeargs=( "-DROSCONSOLE_BACKEND=${ROSCONSOLE_BACKEND}" )
67 + ros-catkin_src_configure
68 +}