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 237AA138BEF for ; Sun, 11 Oct 2015 14:35:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E4F0E07F2; Sun, 11 Oct 2015 14:35:02 +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 BF7F4E07F2 for ; Sun, 11 Oct 2015 14:35:01 +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 A911E3406A7 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 E9AD0B0A for ; Sun, 11 Oct 2015 14:34:58 +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.bfb845dc01e46e28afeca501c99efedb9e19ccd0.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ros/turtle_tf/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ros/turtle_tf/Manifest dev-ros/turtle_tf/metadata.xml dev-ros/turtle_tf/turtle_tf-0.2.2.ebuild dev-ros/turtle_tf/turtle_tf-9999.ebuild X-VCS-Directories: dev-ros/turtle_tf/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: bfb845dc01e46e28afeca501c99efedb9e19ccd0 X-VCS-Branch: master Date: Sun, 11 Oct 2015 14:34:58 +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: e9d32f7d-0370-41f1-80af-80387b545c1e X-Archives-Hash: 97a3985557852a6005d12106490a352f commit: bfb845dc01e46e28afeca501c99efedb9e19ccd0 Author: Alexis Ballier gentoo org> AuthorDate: Sun Oct 11 11:59:39 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=bfb845dc dev-ros/turtle_tf: Initial import. Ebuild by me. Package-Manager: portage-2.2.23 dev-ros/turtle_tf/Manifest | 1 + dev-ros/turtle_tf/metadata.xml | 5 +++++ dev-ros/turtle_tf/turtle_tf-0.2.2.ebuild | 26 ++++++++++++++++++++++++++ dev-ros/turtle_tf/turtle_tf-9999.ebuild | 26 ++++++++++++++++++++++++++ 4 files changed, 58 insertions(+) diff --git a/dev-ros/turtle_tf/Manifest b/dev-ros/turtle_tf/Manifest new file mode 100644 index 0000000..9605317 --- /dev/null +++ b/dev-ros/turtle_tf/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_tf/metadata.xml b/dev-ros/turtle_tf/metadata.xml new file mode 100644 index 0000000..c42ea5b --- /dev/null +++ b/dev-ros/turtle_tf/metadata.xml @@ -0,0 +1,5 @@ + + + +ros + diff --git a/dev-ros/turtle_tf/turtle_tf-0.2.2.ebuild b/dev-ros/turtle_tf/turtle_tf-0.2.2.ebuild new file mode 100644 index 0000000..4b85c5e --- /dev/null +++ b/dev-ros/turtle_tf/turtle_tf-0.2.2.ebuild @@ -0,0 +1,26 @@ +# 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 tf broadcaster and listener with the turtlesim" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/geometry_msgs[${PYTHON_USEDEP}] + dev-ros/roscpp + dev-ros/rospy[${PYTHON_USEDEP}] + dev-ros/std_msgs[${PYTHON_USEDEP}] + dev-ros/tf[${PYTHON_USEDEP}] + dev-ros/turtlesim[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}" diff --git a/dev-ros/turtle_tf/turtle_tf-9999.ebuild b/dev-ros/turtle_tf/turtle_tf-9999.ebuild new file mode 100644 index 0000000..4b85c5e --- /dev/null +++ b/dev-ros/turtle_tf/turtle_tf-9999.ebuild @@ -0,0 +1,26 @@ +# 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 tf broadcaster and listener with the turtlesim" +LICENSE="BSD" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-ros/geometry_msgs[${PYTHON_USEDEP}] + dev-ros/roscpp + dev-ros/rospy[${PYTHON_USEDEP}] + dev-ros/std_msgs[${PYTHON_USEDEP}] + dev-ros/tf[${PYTHON_USEDEP}] + dev-ros/turtlesim[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND}"