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-python/rosdistro/
Date: Tue, 23 Feb 2016 18:50:03
Message-Id: 1456252731.1dc9532f2a15132f5ccf9624328eb5b3d2648872.aballier@gentoo
1 commit: 1dc9532f2a15132f5ccf9624328eb5b3d2648872
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 23 18:38:51 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 23 18:38:51 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc9532f
7
8 dev-python/rosdistro: remove old
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-python/rosdistro/Manifest | 1 -
14 dev-python/rosdistro/rosdistro-0.4.2.ebuild | 45 -----------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
18 index bb60f19..37e89e5 100644
19 --- a/dev-python/rosdistro/Manifest
20 +++ b/dev-python/rosdistro/Manifest
21 @@ -1,2 +1 @@
22 -DIST rosdistro-0.4.2.tar.gz 50857 SHA256 3d5bf062bd0ecbfef272456f1862a6bb7a4100d8f2ac9b4ce7792dbdcfed7a84 SHA512 24dd08a959918fa44faa465acd22bd8d157b792391a2701ee40997028ea90dd13848f72abf1098930cd4e7b8a162cea1ab28ceb0d82df74167c85c0ef014ad65 WHIRLPOOL 8207d60268282d9075655ec3676179b1e6a7d8b1ee571c5df90d4680f54c345175788d7abbf3c2b78504c491a7453193490574f8e68ca2bdba270b5db8983e2b
23 DIST rosdistro-0.4.4.tar.gz 40001 SHA256 1c7c6886c2e61dd8143d3c08f5690f30e9d4e081d348c78bb0b2e8d32773c57b SHA512 4f6b79d88687f6e6147b95bef484a1555639d65044d01812af60eb072579345b5233bcda8fba251f0685a28b756addff7468c34978b0cc04c871ce4fe30fbe2c WHIRLPOOL 99a29b8c7ef475cd4599d2d9e8e28210af2a9d50b280dc9c315f16b3ae3be8b85e4da55a1c8cb6af55795b98207601307e7e846c0a8cdae6a5b4af356ff7b044
24
25 diff --git a/dev-python/rosdistro/rosdistro-0.4.2.ebuild b/dev-python/rosdistro/rosdistro-0.4.2.ebuild
26 deleted file mode 100644
27 index e6da9fa..0000000
28 --- a/dev-python/rosdistro/rosdistro-0.4.2.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2014 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI=5
36 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
37 -
38 -SCM=""
39 -if [ "${PV#9999}" != "${PV}" ] ; then
40 - SCM="git-r3"
41 - EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro"
42 -fi
43 -
44 -inherit ${SCM} distutils-r1
45 -
46 -DESCRIPTION="Tools to work with catkinized rosdistro files"
47 -HOMEPAGE="http://wiki.ros.org/rosdistro"
48 -if [ "${PV#9999}" != "${PV}" ] ; then
49 - SRC_URI=""
50 - KEYWORDS=""
51 -else
52 - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
53 - http://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> ${P}.tar.gz
54 - "
55 - KEYWORDS="~amd64 ~arm"
56 -fi
57 -
58 -LICENSE="BSD"
59 -SLOT="0"
60 -IUSE="test"
61 -
62 -RDEPEND="
63 - dev-python/catkin_pkg[${PYTHON_USEDEP}]
64 - dev-python/rospkg[${PYTHON_USEDEP}]
65 - dev-python/pyyaml[${PYTHON_USEDEP}]
66 - dev-python/setuptools[${PYTHON_USEDEP}]"
67 -DEPEND="${RDEPEND}
68 - test? (
69 - dev-python/nose[${PYTHON_USEDEP}]
70 - )
71 -"
72 -
73 -python_test() {
74 - nosetests --with-xunit test || die
75 -}