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, 15 Jan 2019 10:46:59
Message-Id: 1547549206.3bad0ab2b585d22bd586af9576a21be61b33f7e3.aballier@gentoo
1 commit: 3bad0ab2b585d22bd586af9576a21be61b33f7e3
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 15 10:43:11 2019 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 15 10:46:46 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bad0ab2
7
8 dev-util/rosdep: Remove old
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-util/rosdep/Manifest | 2 --
14 dev-util/rosdep/rosdep-0.12.1.ebuild | 61 ------------------------------------
15 dev-util/rosdep/rosdep-0.12.2.ebuild | 61 ------------------------------------
16 3 files changed, 124 deletions(-)
17
18 diff --git a/dev-util/rosdep/Manifest b/dev-util/rosdep/Manifest
19 index fe487c6fd75..97181a88fbf 100644
20 --- a/dev-util/rosdep/Manifest
21 +++ b/dev-util/rosdep/Manifest
22 @@ -1,3 +1 @@
23 -DIST rosdep-0.12.1.tar.gz 117102 BLAKE2B 42b0f6e7b6b0c2a4219bce24ff74ec01efb61ac0799a89baa5dc7f6b698e8f69a1578f744179252e7123c87c9fb0368b43a9a293609b28f6bfbc32c87b5f4627 SHA512 031bdfb4877865cacfab63a4494807ecf157d8514e89c7ab15e38fcbd4664df1247874975d7b1af42a8a1fc24cb62a558bd6b43732946f3122ffa6448a7631da
24 -DIST rosdep-0.12.2.tar.gz 118343 BLAKE2B 98163feef406707772a54bf6d1825900ac593113d635de92adcac0ae7ce201c2e312116104c76c13b9c1e3b1847ef4dcc0cfb4fd1edcb2795c6b323fa9cc7167 SHA512 0932a5ff9874bbdffa1160fe0a391d27eef9a2f2435d7a89fa3b5e4eab0fc08205d4417aaea1254ab7bfe679cfeb61a6f1b199f06d65154b30505e2a280c0b61
25 DIST rosdep-0.13.0.tar.gz 301327 BLAKE2B 39c39903bb2e6c07dfd4e3aa9546acf434498db518c3bda04ef79c46ed5d13b7cd55978c78bea8294d8e5b84ddddef22814436566f3f958d91d3964650399a08 SHA512 c42aa17ee9b31f7013415e99a484a66a7a7fb52abef4cc9045658150ce0c36b475f2885ebfff537f9ce9f8fd5eeaef5482226c5bff5b4a3df03cc72b149db07a
26
27 diff --git a/dev-util/rosdep/rosdep-0.12.1.ebuild b/dev-util/rosdep/rosdep-0.12.1.ebuild
28 deleted file mode 100644
29 index 842ec4941e9..00000000000
30 --- a/dev-util/rosdep/rosdep-0.12.1.ebuild
31 +++ /dev/null
32 @@ -1,61 +0,0 @@
33 -# Copyright 1999-2018 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=5
37 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
38 -
39 -SCM=""
40 -if [ "${PV#9999}" != "${PV}" ] ; then
41 - SCM="git-r3"
42 - EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdep"
43 -fi
44 -
45 -inherit ${SCM} distutils-r1
46 -
47 -DESCRIPTION="Command-line tool for installing ROS system dependencies"
48 -HOMEPAGE="http://wiki.ros.org/rosdep"
49 -if [ "${PV#9999}" != "${PV}" ] ; then
50 - SRC_URI=""
51 - KEYWORDS=""
52 -else
53 - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
54 - https://github.com/ros-infrastructure/rosdep/archive/${PV}.tar.gz -> ${P}.tar.gz
55 - "
56 - KEYWORDS="~amd64 ~arm"
57 -fi
58 -
59 -LICENSE="BSD"
60 -SLOT="0"
61 -IUSE="test"
62 -
63 -RDEPEND="
64 - dev-python/catkin_pkg[${PYTHON_USEDEP}]
65 - dev-python/rospkg[${PYTHON_USEDEP}]
66 - dev-python/rosdistro[${PYTHON_USEDEP}]
67 - dev-python/pyyaml[${PYTHON_USEDEP}]"
68 -DEPEND="${RDEPEND}
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 -}
94
95 diff --git a/dev-util/rosdep/rosdep-0.12.2.ebuild b/dev-util/rosdep/rosdep-0.12.2.ebuild
96 deleted file mode 100644
97 index 842ec4941e9..00000000000
98 --- a/dev-util/rosdep/rosdep-0.12.2.ebuild
99 +++ /dev/null
100 @@ -1,61 +0,0 @@
101 -# Copyright 1999-2018 Gentoo Foundation
102 -# Distributed under the terms of the GNU General Public License v2
103 -
104 -EAPI=5
105 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
106 -
107 -SCM=""
108 -if [ "${PV#9999}" != "${PV}" ] ; then
109 - SCM="git-r3"
110 - EGIT_REPO_URI="https://github.com/ros-infrastructure/rosdep"
111 -fi
112 -
113 -inherit ${SCM} distutils-r1
114 -
115 -DESCRIPTION="Command-line tool for installing ROS system dependencies"
116 -HOMEPAGE="http://wiki.ros.org/rosdep"
117 -if [ "${PV#9999}" != "${PV}" ] ; then
118 - SRC_URI=""
119 - KEYWORDS=""
120 -else
121 - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
122 - https://github.com/ros-infrastructure/rosdep/archive/${PV}.tar.gz -> ${P}.tar.gz
123 - "
124 - KEYWORDS="~amd64 ~arm"
125 -fi
126 -
127 -LICENSE="BSD"
128 -SLOT="0"
129 -IUSE="test"
130 -
131 -RDEPEND="
132 - dev-python/catkin_pkg[${PYTHON_USEDEP}]
133 - dev-python/rospkg[${PYTHON_USEDEP}]
134 - dev-python/rosdistro[${PYTHON_USEDEP}]
135 - dev-python/pyyaml[${PYTHON_USEDEP}]"
136 -DEPEND="${RDEPEND}
137 - dev-python/nose[${PYTHON_USEDEP}]
138 - test? (
139 - dev-python/coverage[${PYTHON_USEDEP}]
140 - dev-python/mock[${PYTHON_USEDEP}]
141 - dev-python/flake8[${PYTHON_USEDEP}]
142 - )
143 -"
144 -
145 -python_test() {
146 - nosetests --with-coverage --cover-package=rosdep2 --with-xunit test || die
147 -}
148 -
149 -pkg_postrm() {
150 - if [ "${ROOT:-/}" = "/" ] ; then
151 - einfo "Removing rosdep default sources list."
152 - rm -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list"
153 - fi
154 -}
155 -
156 -pkg_postinst() {
157 - if [ "${ROOT:-/}" = "/" -a ! -f "${EPREFIX}/etc/ros/rosdep/sources.list.d/20-default.list" ] ; then
158 - einfo "Initializing rosdep"
159 - rosdep init
160 - fi
161 -}