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/roslib/
Date: Mon, 12 Oct 2020 19:08:55
Message-Id: 1602529723.d30029b01fbbbe6323ceff6aa871f86d9325904e.aballier@gentoo
1 commit: d30029b01fbbbe6323ceff6aa871f86d9325904e
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 12 18:53:23 2020 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 12 19:08:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30029b0
7
8 dev-ros/roslib: Bump to 1.15.7.
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/roslib/Manifest | 1 +
14 dev-ros/roslib/roslib-1.15.7.ebuild | 32 ++++++++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/dev-ros/roslib/Manifest b/dev-ros/roslib/Manifest
18 index 5e99ca56e73..fbd51ec223a 100644
19 --- a/dev-ros/roslib/Manifest
20 +++ b/dev-ros/roslib/Manifest
21 @@ -1 +1,2 @@
22 DIST ros-1.15.6.tar.gz 178270 BLAKE2B dccadd6c3b59b54d732d94a173c40e940f2e7effad5bc8f835bbf56f2b7f3d6b7a80183d1e4826edd566697ffc22ae77b5b75d792493220c0fc04603b3c33f85 SHA512 740727c68113d7a84583a85f4fc3f575aea05067d1aa3b96d5636d3454dba09a4730413c92f49cb7800f26bae15ab02496bd5f91f964b28511e8b8cd3cb116a6
23 +DIST ros-1.15.7.tar.gz 178451 BLAKE2B 970b736c2ead0ca63e5b9ac5c47ef306ed22e5e6205e7529efd8bc8847f3ac0e73d5cdb55c00827e644e35e3ed49c534e797a8382bdd45451ba1f95a3af9634a SHA512 163a9c677d0213cea85f0d7c82d7a8da7f9423155f19857a8146f29c7b2b3a5ecd800f49d1e9b63b45da33544163acb6f32f7525602f249a30841e140654144a
24
25 diff --git a/dev-ros/roslib/roslib-1.15.7.ebuild b/dev-ros/roslib/roslib-1.15.7.ebuild
26 new file mode 100644
27 index 00000000000..26e633c4c21
28 --- /dev/null
29 +++ b/dev-ros/roslib/roslib-1.15.7.ebuild
30 @@ -0,0 +1,32 @@
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/ros"
37 +KEYWORDS="~amd64 ~arm"
38 +ROS_SUBDIR=core/${PN}
39 +
40 +inherit ros-catkin
41 +
42 +DESCRIPTION="Base dependencies and support libraries for ROS"
43 +LICENSE="BSD"
44 +SLOT="0"
45 +IUSE=""
46 +
47 +RDEPEND="
48 + $(python_gen_cond_dep ">=dev-python/rospkg-1.0.37[\${PYTHON_USEDEP}]")
49 + dev-libs/boost:=[threads]
50 + dev-ros/rospack
51 + dev-ros/ros_environment
52 +"
53 +DEPEND="${RDEPEND}
54 + test? (
55 + dev-cpp/gtest
56 + $(python_gen_cond_dep "dev-python/nose[\${PYTHON_USEDEP}]")
57 + )"
58 +
59 +src_test() {
60 + export ROS_PACKAGE_PATH="${S}/../../"
61 + ros-catkin_src_test
62 +}