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: Mon, 24 Aug 2020 13:45:22
Message-Id: 1598276682.6954f720051b3373aa2f83ee7613567219c09f89.aballier@gentoo
1 commit: 6954f720051b3373aa2f83ee7613567219c09f89
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 24 13:41:10 2020 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 24 13:44:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6954f720
7
8 dev-ros/rosconsole: bump to 1.14.2
9
10 Package-Manager: Portage-3.0.3, Repoman-3.0.0
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ros/rosconsole/Manifest | 1 +
14 dev-ros/rosconsole/rosconsole-1.14.2.ebuild | 37 +++++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/dev-ros/rosconsole/Manifest b/dev-ros/rosconsole/Manifest
18 index 41025165654..b5f9fd638b5 100644
19 --- a/dev-ros/rosconsole/Manifest
20 +++ b/dev-ros/rosconsole/Manifest
21 @@ -1 +1,2 @@
22 DIST rosconsole-1.14.0.tar.gz 26166 BLAKE2B 79d73e5918eb5f3837e57e4207b3b42cc3222a92e8357265132d2d0848f966fa1e1aed69f8809af30497ef6b1f52c0de0073c20bf6e309010a8d98e0f745fb9c SHA512 68a5d709294b162d5b424bdbcd70fb66a43ccd8512bc60f571fe24bb0150e52f93addc3f22777c2f5810e95492265be58d3cfc6563a4e66665b3261ef161d5cd
23 +DIST rosconsole-1.14.2.tar.gz 26212 BLAKE2B b43f07f920a526c740d1ee8c3f5d7f5724ed617adad409df84001571e0df30df65c200bfc50c4c6a97a24642b3ad61340706ed4b6d14822935256bfb305350a3 SHA512 f1af112ada723195acda17edb64f75969a0abea58504d14507470eb36b0649e028cd675a368e040ddc955216da304dd64416fda8de7bc29dcd73c56c8286f311
24
25 diff --git a/dev-ros/rosconsole/rosconsole-1.14.2.ebuild b/dev-ros/rosconsole/rosconsole-1.14.2.ebuild
26 new file mode 100644
27 index 00000000000..76c9a71eb9d
28 --- /dev/null
29 +++ b/dev-ros/rosconsole/rosconsole-1.14.2.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +ROS_REPO_URI="https://github.com/ros/rosconsole"
37 +KEYWORDS="~amd64 ~arm"
38 +
39 +inherit ros-catkin
40 +
41 +DESCRIPTION="ROS console output library"
42 +LICENSE="BSD"
43 +SLOT="0"
44 +IUSE="+log4cxx glog"
45 +
46 +RDEPEND="
47 + dev-ros/cpp_common
48 + dev-ros/rostime
49 + dev-ros/rosunit
50 + dev-libs/boost:=[threads]
51 + log4cxx? ( dev-libs/log4cxx )
52 + !log4cxx? ( glog? ( dev-cpp/glog ) )
53 +"
54 +DEPEND="${RDEPEND}"
55 +
56 +src_configure() {
57 + local ROSCONSOLE_BACKEND=""
58 + if use log4cxx; then
59 + ROSCONSOLE_BACKEND="log4cxx"
60 + elif use glog; then
61 + ROSCONSOLE_BACKEND="glog"
62 + else
63 + ROSCONSOLE_BACKEND="print"
64 + fi
65 + local mycatkincmakeargs=( "-DROSCONSOLE_BACKEND=${ROSCONSOLE_BACKEND}" )
66 + ros-catkin_src_configure
67 +}