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: Sun, 28 Jan 2018 12:54:47
Message-Id: 1517144071.883046fc8b7dbdf7f66ab8f2995651695d4bb5b8.aballier@gentoo
1 commit: 883046fc8b7dbdf7f66ab8f2995651695d4bb5b8
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 28 09:41:30 2018 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 28 12:54:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=883046fc
7
8 dev-python/rosdistro: Remove old
9
10 Package-Manager: Portage-2.3.20, Repoman-2.3.6
11
12 dev-python/rosdistro/Manifest | 1 -
13 dev-python/rosdistro/rosdistro-0.6.3.ebuild | 44 -----------------------------
14 2 files changed, 45 deletions(-)
15
16 diff --git a/dev-python/rosdistro/Manifest b/dev-python/rosdistro/Manifest
17 index e164f3a9040..372bc819cde 100644
18 --- a/dev-python/rosdistro/Manifest
19 +++ b/dev-python/rosdistro/Manifest
20 @@ -1,2 +1 @@
21 -DIST rosdistro-0.6.3.tar.gz 48789 BLAKE2B f26da2b2624501321033390d554559a0b807b224c35e96ff1643d6060e0225b9de6e2f9df354c5f6f13d277ba5b46453fe5db10d31cd5b05f50a78360d2b03dd SHA512 9fe50a9ed67d5772912ad7d15c60179894f3d775b593e4f42fff6c5221a77ea89176c9239ac0e962d2997eb6b1b365ad47da1080f69e62a4c75e1ea3f26294f0
22 DIST rosdistro-0.6.4.tar.gz 58603 BLAKE2B 9eed482987826b69eba51f1776df0d2285c496130d500f082f82fe7fbbb8e8d5767dcaec93582328a33c164a862ac2a46ac6d0ed0f770ebb16b25e680dc1e9af SHA512 92365b556cc6615245bd69cce35efb2fe879fe42fb4aafef08b2472c67b43e14e3088c1186e8b1d4f5f3781bfebbe826b3c361a9435ce27745a3506d20d40f85
23
24 diff --git a/dev-python/rosdistro/rosdistro-0.6.3.ebuild b/dev-python/rosdistro/rosdistro-0.6.3.ebuild
25 deleted file mode 100644
26 index e9ccf8b2beb..00000000000
27 --- a/dev-python/rosdistro/rosdistro-0.6.3.ebuild
28 +++ /dev/null
29 @@ -1,44 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
35 -
36 -SCM=""
37 -if [ "${PV#9999}" != "${PV}" ] ; then
38 - SCM="git-r3"
39 - EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdistro"
40 -fi
41 -
42 -inherit ${SCM} distutils-r1
43 -
44 -DESCRIPTION="Tools to work with catkinized rosdistro files"
45 -HOMEPAGE="http://wiki.ros.org/rosdistro"
46 -if [ "${PV#9999}" != "${PV}" ] ; then
47 - SRC_URI=""
48 - KEYWORDS=""
49 -else
50 - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
51 - https://github.com/ros-infrastructure/rosdistro/archive/${PV}.tar.gz -> ${P}.tar.gz
52 - "
53 - KEYWORDS="~amd64 ~arm"
54 -fi
55 -
56 -LICENSE="BSD"
57 -SLOT="0"
58 -IUSE="test"
59 -
60 -RDEPEND="
61 - dev-python/catkin_pkg[${PYTHON_USEDEP}]
62 - dev-python/rospkg[${PYTHON_USEDEP}]
63 - dev-python/pyyaml[${PYTHON_USEDEP}]
64 - dev-python/setuptools[${PYTHON_USEDEP}]"
65 -DEPEND="${RDEPEND}
66 - test? (
67 - dev-python/nose[${PYTHON_USEDEP}]
68 - )
69 -"
70 -
71 -python_test() {
72 - nosetests --with-xunit test || die
73 -}