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: Fri, 07 Aug 2020 15:57:05
Message-Id: 1596815816.10df939c439d88c5311cf916064cd00bfb6710a9.aballier@gentoo
1 commit: 10df939c439d88c5311cf916064cd00bfb6710a9
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 7 15:56:56 2020 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 7 15:56:56 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10df939c
7
8 dev-util/rosdep: Remove old
9
10 Package-Manager: Portage-3.0.1, Repoman-2.3.23
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-util/rosdep/Manifest | 1 -
14 dev-util/rosdep/rosdep-0.15.0.ebuild | 63 ------------------------------------
15 2 files changed, 64 deletions(-)
16
17 diff --git a/dev-util/rosdep/Manifest b/dev-util/rosdep/Manifest
18 index b99141fd4d1..46d0f5d7510 100644
19 --- a/dev-util/rosdep/Manifest
20 +++ b/dev-util/rosdep/Manifest
21 @@ -1,2 +1 @@
22 -DIST rosdep-0.15.0.tar.gz 301659 BLAKE2B c7e5602e78e8f4892f16ef41d7423e653750def24f043c2519646b8c038bcb39b62d60323ef4e8a496a863bb74f51cdce7aebb1b5423120562a34c1988437510 SHA512 d9def23a4c01636a42dbccf99be96b9704eb96641da00db4305c63b18fa0f69de1ae402bcf7fff4030bc20097496086ff9168794d1e5cd44153cb3a84ba18509
23 DIST rosdep-0.19.0.tar.gz 309029 BLAKE2B d4d9f607757c418f848a89987db6ff17a98719d0cacab49250abf45145a9f5b538d9442622ec3a8c3536061e82e624f25c9a7b777662b686167e2fdce88433ec SHA512 3e1d5829689646d583da2eaaf3b8bbddec3cb4ca3dc3941ee2697f6367510a4dcff11984fa1792a400f49132778d7869f0a8274e42bc8c04f2e326e6a663c494
24
25 diff --git a/dev-util/rosdep/rosdep-0.15.0.ebuild b/dev-util/rosdep/rosdep-0.15.0.ebuild
26 deleted file mode 100644
27 index ae19fe69509..00000000000
28 --- a/dev-util/rosdep/rosdep-0.15.0.ebuild
29 +++ /dev/null
30 @@ -1,63 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_6 pypy3 )
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 -RESTRICT="!test? ( test )"
61 -
62 -RDEPEND="
63 - dev-python/catkin_pkg[${PYTHON_USEDEP}]
64 - dev-python/rospkg[${PYTHON_USEDEP}]
65 - dev-python/rosdistro[${PYTHON_USEDEP}]
66 - dev-python/pyyaml[${PYTHON_USEDEP}]"
67 -DEPEND="${RDEPEND}"
68 -BDEPEND="
69 - dev-python/nose[${PYTHON_USEDEP}]
70 - test? (
71 - dev-python/coverage[${PYTHON_USEDEP}]
72 - dev-python/mock[${PYTHON_USEDEP}]
73 - dev-python/flake8[${PYTHON_USEDEP}]
74 - )
75 -"
76 -
77 -python_test() {
78 - nosetests --with-coverage --cover-package=rosdep2 --with-xunit test || die
79 -}
80 -
81 -pkg_postrm() {
82 - if [ "${ROOT:-/}" = "/" ] ; then
83 - einfo "Removing rosdep default sources list."
84 - rm -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list"
85 - fi
86 -}
87 -
88 -pkg_postinst() {
89 - if [ "${ROOT:-/}" = "/" -a ! -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list" ] ; then
90 - einfo "Initializing rosdep"
91 - rosdep init
92 - fi
93 -}