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/rospy/
Date: Mon, 06 Jun 2016 11:14:53
Message-Id: 1465211571.665cc7bd2c8859f0d851a8b4c772e7121f94afca.aballier@gentoo
1 commit: 665cc7bd2c8859f0d851a8b4c772e7121f94afca
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jun 6 10:46:28 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Jun 6 11:12:51 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=665cc7bd
7
8 dev-ros/rospy: Bump to 1.12.2.
9
10 Package-Manager: portage-2.3.0_rc1
11
12 dev-ros/rospy/Manifest | 1 +
13 dev-ros/rospy/rospy-1.12.2.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-ros/rospy/Manifest b/dev-ros/rospy/Manifest
17 index fb51249..a65cd50 100644
18 --- a/dev-ros/rospy/Manifest
19 +++ b/dev-ros/rospy/Manifest
20 @@ -4,3 +4,4 @@ DIST ros_comm-1.11.16.tar.gz 947310 SHA256 b8f48c57d58b623c0b9828476fd8fc7855702
21 DIST ros_comm-1.11.17.tar.gz 950987 SHA256 a7222b849d709e47ab9c491e491f6b90dcf12db1780382c9cd294e4410839eb2 SHA512 2dfb95feafa6976c62d2d31f2c6586636e534f39cfce20bc6dfa22731ee256ab8a0c0050a672098123d4d7d32702203bf15c7f323b897f74201bb41bd823ebf7 WHIRLPOOL 0c0d55a2119503b2e0b0b218ce99862815b7070c66127ace51929cda91267fdb33f50012936f1da784ac9c82ace86c41059b3b919effb6b767b7617ff4d33c09
22 DIST ros_comm-1.12.0.tar.gz 951540 SHA256 511894fde55a1150a88023ecd9d7a3f0557b90df5fbe375941db0071ba63ae43 SHA512 6e429b6b34ccdf1f17b4998b59518975290f0e6e431750f6172f5c86c35d48ae5f21de293d283ed952f142af3c03500f55d27172055a026b2f17e1cfbb4777d0 WHIRLPOOL 411b5a1106f96008ac2cac72c209dc0806bc5134ffe5d8b87d652d76efba0c7e32e388994598c5aecfabfdf700ba9e9f785eecb02e40c493e631a45dab13be39
23 DIST ros_comm-1.12.1.tar.gz 954159 SHA256 cc9fddd81b01808f8b95505b3bb16cd2e212de41212dac84c3a2f8f0e648c374 SHA512 1ba58f5a512e3c7b9be6896254abca735d8a887259fd350110666208b673fad4d2a723b79ed5909868fb8d99430ab4af42e946ca4d4f0b681afd072617376c38 WHIRLPOOL 19aaa77e9b549b8488bdb684ce189b0ab7ca346792f5e65e7f458244d1cbf90ec39fc769754090127eb6718f967f5f13ca0d461413aee3b605c9b7df088ae6d2
24 +DIST ros_comm-1.12.2.tar.gz 956358 SHA256 693f5ed4fbaf537f104f7d279e267af5046b017126e6e2dd3ecb999192af80a7 SHA512 37489f4378386318284295f9ada52c04268ae1879b0c9f0ac5401efa0cb14e4f430aa205d7a3f0975626de8a7441d24f68c981c21693a493f8fd71d75bfe09e6 WHIRLPOOL eec6b6954617b85146f5b2dd6ba60e8df13c5843f3ef34615a96324fdc4f13e181551cde10af69a7a45d81e68e73f3cc9c72a6ffac323d8c36153af789652b5d
25
26 diff --git a/dev-ros/rospy/rospy-1.12.2.ebuild b/dev-ros/rospy/rospy-1.12.2.ebuild
27 new file mode 100644
28 index 0000000..5dd4e45
29 --- /dev/null
30 +++ b/dev-ros/rospy/rospy-1.12.2.ebuild
31 @@ -0,0 +1,32 @@
32 +# Copyright 1999-2016 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +ROS_REPO_URI="https://github.com/ros/ros_comm"
39 +KEYWORDS="~amd64 ~arm"
40 +CATKIN_HAS_MESSAGES=yes
41 +PYTHON_COMPAT=( python2_7 )
42 +ROS_SUBDIR=clients/${PN}
43 +
44 +inherit ros-catkin
45 +
46 +DESCRIPTION="Python client library for ROS"
47 +LICENSE="BSD"
48 +SLOT="0"
49 +IUSE=""
50 +
51 +RDEPEND="
52 + dev-ros/roslib[${PYTHON_USEDEP}]
53 + dev-ros/rosgraph[${PYTHON_USEDEP}]
54 + dev-python/rospkg[${PYTHON_USEDEP}]
55 +"
56 +DEPEND="${RDEPEND}"
57 +
58 +src_install() {
59 + ros-catkin_src_install
60 + # Other tests need these nodes
61 + exeinto /usr/share/${PN}
62 + doexe test_nodes/*
63 +}