From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id EEB4F138BED for ; Sun, 11 Oct 2015 14:35:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DBAD21C008; Sun, 11 Oct 2015 14:35:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4701E083A for ; Sun, 11 Oct 2015 14:35:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1DBD3406C2 for ; Sun, 11 Oct 2015 14:35:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A5AEDE7 for ; Sun, 11 Oct 2015 14:34:59 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1444574061.ec0cc1809a19095e5dd7c25884b7f67310761f3a.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/turtle_tf2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/turtle_tf2/Manifest dev-ros/turtle_tf2/metadata.xml dev-ros/turtle_tf2/turtle_tf2-0.2.2.ebuild dev-ros/turtle_tf2/turtle_tf2-9999.ebuild X-VCS-Directories: dev-ros/turtle_tf2/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: ec0cc1809a19095e5dd7c25884b7f67310761f3a X-VCS-Branch: master Date: Sun, 11 Oct 2015 14:34:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7a53c412-8362-4192-997c-8cc2b912e20f X-Archives-Hash: 1a3a13715121b370ec66661794f2a69b commit: ec0cc1809a19095e5dd7c25884b7f67310761f3a Author: Alexis Ballier gentoo org> AuthorDate: Sun Oct 11 12:02:09 2015 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sun Oct 11 14:34:21 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec0cc180 dev-ros/turtle_tf2: Initial import. Ebuild by me. Package-Manager: portage-2.2.23 dev-ros/turtle_tf2/Manifest | 1 + dev-ros/turtle_tf2/metadata.xml | 5 +++++ dev-ros/turtle_tf2/turtle_tf2-0.2.2.ebuild | 27 +++++++++++++++++++++++++++ dev-ros/turtle_tf2/turtle_tf2-9999.ebuild | 27 +++++++++++++++++++++++++++ 4 files changed, 60 insertions(+) diff --git a/dev-ros/turtle_tf2/Manifest b/dev-ros/turtle_tf2/Manifest new file mode 100644 index 0000000..9605317 --- /dev/null +++ b/dev-ros/turtle_tf2/Manifest @@ -0,0 +1 @@ +DIST geometry_tutorials-0.2.2.tar.gz 15148 SHA256 4b3fdc98bf4cb97ba2f1c40666901fa7d08eb3dfed0d3323de4841de2e3a22cc SHA512 5a6fe2e26d11d3fe8c1fc6979d1d76b13b01df23ef1f0d5e5df094aa0441e1ded33d2402b88be1143a88002ecde2a6bddc3b03efca713bd5521c68de2e054548 WHIRLPOOL b9ce88950911e87d008a19de08fb829e59f0c6e81711859125b3bf377fff907e6054d2229d8dd13c39baf395c3da3d749fcf62144c88caf9eab0d7d76026e518 diff --git a/dev-ros/turtle_tf2/metadata.xml b/dev-ros/turtle_tf2/metadata.xml new file mode 100644 index 0000000..c42ea5b --- /dev/null +++ b/dev-ros/turtle_tf2/metadata.xml @@ -0,0 +1,5 @@ + + + +ros + diff --git a/dev-ros/turtle_tf2/turtle_tf2-0.2.2.ebuild b/dev-ros/turtle_tf2/turtle_tf2-0.2.2.ebuild new file mode 100644 index 0000000..64d8a70 --- /dev/null +++ b/dev-ros/turtle_tf2/turtle_tf2-0.2.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros/geometry_tutorials" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} +PYTHON_COMPAT=( python2_7 ) + +inherit ros-catkin + +DESCRIPTION="Demonstrates how to write a tf2 broadcaster and listener with the turtlesim" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/roscpp + dev-ros/rospy[${PYTHON_USEDEP}] + dev-ros/tf2 + dev-ros/tf2_ros[${PYTHON_USEDEP}] + dev-ros/turtlesim[${PYTHON_USEDEP}] + dev-ros/geometry_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] + dev-ros/std_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" diff --git a/dev-ros/turtle_tf2/turtle_tf2-9999.ebuild b/dev-ros/turtle_tf2/turtle_tf2-9999.ebuild new file mode 100644 index 0000000..64d8a70 --- /dev/null +++ b/dev-ros/turtle_tf2/turtle_tf2-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +ROS_REPO_URI="https://github.com/ros/geometry_tutorials" +KEYWORDS="~amd64 ~arm" +ROS_SUBDIR=${PN} +PYTHON_COMPAT=( python2_7 ) + +inherit ros-catkin + +DESCRIPTION="Demonstrates how to write a tf2 broadcaster and listener with the turtlesim" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/roscpp + dev-ros/rospy[${PYTHON_USEDEP}] + dev-ros/tf2 + dev-ros/tf2_ros[${PYTHON_USEDEP}] + dev-ros/turtlesim[${PYTHON_USEDEP}] + dev-ros/geometry_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] + dev-ros/std_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}"