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/catkin_pkg/
Date: Tue, 28 Feb 2017 11:27:05
Message-Id: 1488281208.d3c785419107ddd7408acaefd0005bbe27e4cccf.aballier@gentoo
1 commit: d3c785419107ddd7408acaefd0005bbe27e4cccf
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 08:23:21 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 11:26:48 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3c78541
7
8 dev-python/catkin_pkg: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/catkin_pkg/catkin_pkg-0.3.1-r1.ebuild | 49 ------------------------
13 1 file changed, 49 deletions(-)
14
15 diff --git a/dev-python/catkin_pkg/catkin_pkg-0.3.1-r1.ebuild b/dev-python/catkin_pkg/catkin_pkg-0.3.1-r1.ebuild
16 deleted file mode 100644
17 index 57cbb8ced9..0000000000
18 --- a/dev-python/catkin_pkg/catkin_pkg-0.3.1-r1.ebuild
19 +++ /dev/null
20 @@ -1,49 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
27 -
28 -SCM=""
29 -if [ "${PV#9999}" != "${PV}" ] ; then
30 - SCM="git-r3"
31 - EGIT_REPO_URI="https://github.com/ros-infrastructure/catkin_pkg"
32 -fi
33 -
34 -inherit ${SCM} distutils-r1
35 -
36 -DESCRIPTION="Standalone Python library for the catkin package system"
37 -HOMEPAGE="http://wiki.ros.org/catkin_pkg"
38 -if [ "${PV#9999}" != "${PV}" ] ; then
39 - SRC_URI=""
40 - KEYWORDS=""
41 -else
42 - SRC_URI="https://github.com/ros-infrastructure/catkin_pkg/archive/${PV}.tar.gz -> ${P}-gh.tar.gz"
43 - KEYWORDS="~amd64 ~arm"
44 -fi
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -IUSE="test"
49 -
50 -RDEPEND="
51 - dev-python/setuptools[${PYTHON_USEDEP}]
52 - dev-python/docutils[${PYTHON_USEDEP}]
53 - dev-python/python-dateutil[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="${RDEPEND}
56 - test? ( dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )
57 -"
58 -PATCHES=( "${FILESDIR}/catkin_prefix.patch" "${FILESDIR}/argparse.patch" )
59 -
60 -python_test() {
61 - nosetests -s --tests test || die
62 -}
63 -
64 -python_install_all() {
65 - distutils-r1_python_install_all
66 - # Avoid recursing in the whole hierarchy
67 - dodir /usr/
68 - touch "${ED}/usr/CATKIN_IGNORE"
69 -}