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-util/rosdep/
Date: Tue, 06 Oct 2015 08:41:26
Message-Id: 1444120842.05d290729a574b869fd80dbe2a1b56d56224df91.aballier@gentoo
1 commit: 05d290729a574b869fd80dbe2a1b56d56224df91
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 6 08:40:42 2015 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 6 08:40:42 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05d29072
7
8 dev-util/rosdep: remove old.
9
10 Package-Manager: portage-2.2.22
11
12 dev-util/rosdep/Manifest | 1 -
13 dev-util/rosdep/rosdep-0.11.2.ebuild | 61 ------------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/dev-util/rosdep/Manifest b/dev-util/rosdep/Manifest
17 index 3b5b02d..ff2b584 100644
18 --- a/dev-util/rosdep/Manifest
19 +++ b/dev-util/rosdep/Manifest
20 @@ -1,2 +1 @@
21 -DIST rosdep-0.11.2.tar.gz 106456 SHA256 89da05bdc082005815a9679dc34509a16647374d746a9e636c4238dd8f7aed9e SHA512 55057bb478dce1a7be3025d52fa6fb616b2de95017981ead934d7965282fa6ceb81780b7825d914531f87af492f3b5ce91ecf2607e6bddb65e13744e8a8d6743 WHIRLPOOL 37407d99d58f62c00a54b94a5820cab599c7700be355132e5d7b9d277faa220f89d68c9950cd386e984c64a1f0c493d53db15b31082f485d4786aff232f73d34
22 DIST rosdep-0.11.4.tar.gz 108842 SHA256 ded28bbf4821564feb8b62174f4ecac0031335c8357230e618a224b9ae1e8081 SHA512 0bffe2731e1039da63231bd57a98aa132a22fccfa6a8c3ed1553d51b0cf217d35eaaed524607f76132bd75332aae79187eb69d57ba1df8134159ede0a427953c WHIRLPOOL 4293a4d50d95882dd441e9d94eefc1c42ccb4195ba7faf1acb5081d7f7cae1ffde11842919ee45d7110e04f3a63b1ad4699fc9c768788aa1fe4afe35030c7192
23
24 diff --git a/dev-util/rosdep/rosdep-0.11.2.ebuild b/dev-util/rosdep/rosdep-0.11.2.ebuild
25 deleted file mode 100644
26 index 7e6194f..0000000
27 --- a/dev-util/rosdep/rosdep-0.11.2.ebuild
28 +++ /dev/null
29 @@ -1,61 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=5
35 -PYTHON_COMPAT=( python{2_7,3_3,3_4} )
36 -
37 -SCM=""
38 -if [ "${PV#9999}" != "${PV}" ] ; then
39 - SCM="git-r3"
40 - EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdep"
41 -fi
42 -
43 -inherit ${SCM} distutils-r1
44 -
45 -DESCRIPTION="Command-line tool for installing ROS system dependencies"
46 -HOMEPAGE="http://wiki.ros.org/rosdep"
47 -if [ "${PV#9999}" != "${PV}" ] ; then
48 - SRC_URI=""
49 - KEYWORDS=""
50 -else
51 - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
52 - http://github.com/ros-infrastructure/rosdep/archive/${PV}.tar.gz -> ${P}.tar.gz
53 - "
54 - KEYWORDS="~amd64 ~arm"
55 -fi
56 -
57 -LICENSE="BSD"
58 -SLOT="0"
59 -IUSE="test"
60 -
61 -RDEPEND="
62 - dev-python/catkin_pkg[${PYTHON_USEDEP}]
63 - dev-python/rospkg[${PYTHON_USEDEP}]
64 - dev-python/rosdistro[${PYTHON_USEDEP}]
65 - dev-python/pyyaml[${PYTHON_USEDEP}]"
66 -DEPEND="${RDEPEND}
67 - test? (
68 - dev-python/nose[${PYTHON_USEDEP}]
69 - dev-python/coverage[${PYTHON_USEDEP}]
70 - dev-python/mock[${PYTHON_USEDEP}]
71 - )
72 -"
73 -
74 -python_test() {
75 - nosetests --with-coverage --cover-package=rosdep2 --with-xunit test || die
76 -}
77 -
78 -pkg_postrm() {
79 - if [ "${ROOT:-/}" = "/" ] ; then
80 - einfo "Removing rosdep default sources list."
81 - rm -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list"
82 - fi
83 -}
84 -
85 -pkg_postinst() {
86 - if [ "${ROOT:-/}" = "/" -a ! -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list" ] ; then
87 - einfo "Initializing rosdep"
88 - rosdep init
89 - fi
90 -}