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/diagnostic_aggregator/
Date: Mon, 12 Oct 2020 17:14:14
Message-Id: 1602522843.24ff6c1b756098292b1ac5bae553d824b4c85203.aballier@gentoo
1 commit: 24ff6c1b756098292b1ac5bae553d824b4c85203
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 17:10:03 2020 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 17:14:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ff6c1b
7
8 dev-ros/diagnostic_aggregator: Bump to 1.10.2.
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ros/diagnostic_aggregator/Manifest | 1 +
14 .../diagnostic_aggregator-1.10.2.ebuild | 36 ++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-ros/diagnostic_aggregator/Manifest b/dev-ros/diagnostic_aggregator/Manifest
18 index db6b048d773..4c635863e79 100644
19 --- a/dev-ros/diagnostic_aggregator/Manifest
20 +++ b/dev-ros/diagnostic_aggregator/Manifest
21 @@ -1 +1,2 @@
22 DIST diagnostics-1.10.1.tar.gz 536607 BLAKE2B 6a69163fbf60820839f1fc7071b6ea9df7b70cc2979b42648ac56d0acce820af69595b2a9e4d11b9752d4d85bd19276ccfcb6a57a523e7d69354fbc64414fec4 SHA512 a45d41a0ba3b879ab3228bc3d3152cd59d7145b96f9a5b1798eb1d9aaba8dbd6234ec3692c1a84289d0f543eed3adb0ca4dcbd1f1b6ceaef54af7866e1ad9ee7
23 +DIST diagnostics-1.10.2.tar.gz 536910 BLAKE2B da4de61798d0022114573ca7360f48afe0a7b62f56ac2e9830182dfd0cdaf2f7985b549807028360d8edd97ec3630465eef0d02c51333ffedf0809f235a11f26 SHA512 5a88cfe6f2bc71ae71e3d7aad6c83c6ac17fb2e072b8ba1ba97b86cb8e6f7373ba2c4b6889d0253f062119c86459880485b1afc682747f91c2eb7acdb9e71d3c
24
25 diff --git a/dev-ros/diagnostic_aggregator/diagnostic_aggregator-1.10.2.ebuild b/dev-ros/diagnostic_aggregator/diagnostic_aggregator-1.10.2.ebuild
26 new file mode 100644
27 index 00000000000..76db5fae27d
28 --- /dev/null
29 +++ b/dev-ros/diagnostic_aggregator/diagnostic_aggregator-1.10.2.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +ROS_REPO_URI="https://github.com/ros/diagnostics"
36 +KEYWORDS="~amd64 ~arm"
37 +ROS_SUBDIR=${PN}
38 +
39 +inherit ros-catkin
40 +
41 +DESCRIPTION="Aggregates ROS diagnostics"
42 +LICENSE="BSD"
43 +SLOT="0"
44 +IUSE=""
45 +
46 +RDEPEND="
47 + dev-ros/pluginlib:=
48 + dev-libs/tinyxml2:=
49 + dev-ros/roscpp
50 + dev-ros/rospy
51 + dev-ros/rostest
52 + dev-ros/xmlrpcpp
53 + dev-ros/bondcpp
54 + dev-libs/boost:=
55 + dev-libs/console_bridge:=
56 + dev-ros/bondpy[${PYTHON_SINGLE_USEDEP}]
57 +"
58 +DEPEND="${RDEPEND}
59 + dev-ros/diagnostic_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
60 + test? ( dev-ros/rostest[${PYTHON_SINGLE_USEDEP}] )"
61 +
62 +src_test() {
63 + export ROS_PACKAGE_PATH="${S}:${ROS_PACKAGE_PATH}"
64 + export CATKIN_PREFIX_PATH="${BUILD_DIR}/devel/:${CATKIN_PREFIX_PATH}"
65 + ros-catkin_src_test
66 +}