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: Thu, 09 Feb 2017 17:47:02
Message-Id: 1486662360.d2f59f2fd1aa3cfb65b02d7ce55999300f50bd8c.aballier@gentoo
1 commit: d2f59f2fd1aa3cfb65b02d7ce55999300f50bd8c
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 9 16:32:11 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 9 17:46:00 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f59f2f
7
8 dev-util/rosdep: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-util/rosdep/Manifest | 1 -
13 dev-util/rosdep/rosdep-0.11.4.ebuild | 61 ------------------------------------
14 2 files changed, 62 deletions(-)
15
16 diff --git a/dev-util/rosdep/Manifest b/dev-util/rosdep/Manifest
17 index b903e7924a..0315eea087 100644
18 --- a/dev-util/rosdep/Manifest
19 +++ b/dev-util/rosdep/Manifest
20 @@ -1,2 +1 @@
21 -DIST rosdep-0.11.4.tar.gz 108842 SHA256 ded28bbf4821564feb8b62174f4ecac0031335c8357230e618a224b9ae1e8081 SHA512 0bffe2731e1039da63231bd57a98aa132a22fccfa6a8c3ed1553d51b0cf217d35eaaed524607f76132bd75332aae79187eb69d57ba1df8134159ede0a427953c WHIRLPOOL 4293a4d50d95882dd441e9d94eefc1c42ccb4195ba7faf1acb5081d7f7cae1ffde11842919ee45d7110e04f3a63b1ad4699fc9c768788aa1fe4afe35030c7192
22 DIST rosdep-0.11.5.tar.gz 76136 SHA256 46e072074270a1ea25411829814f4bdc1f34b358c950e9b8a7b75b4a40efd96a SHA512 593ca209714945e79ec878e0e84d086645bea9095bc2fbf0a3ac48b8696c8694990f554f160b8271734e2980d95390dc2dffbd3da765c43c505d8b2e1e05e381 WHIRLPOOL 59b04fbfa5521a8df7c9d556bc7faf0da3d425a56d6dfeafb8583bf24a24f6c762dac7e9f1abb747fa7604c9cb1c621c13537a7eb2dcf88408b50a183ac85da9
23
24 diff --git a/dev-util/rosdep/rosdep-0.11.4.ebuild b/dev-util/rosdep/rosdep-0.11.4.ebuild
25 deleted file mode 100644
26 index af4e2e3e5c..0000000000
27 --- a/dev-util/rosdep/rosdep-0.11.4.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_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 - https://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 - dev-python/nose[${PYTHON_USEDEP}]
68 - test? (
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 -}