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/rospkg/
Date: Tue, 28 Feb 2017 11:27:28
Message-Id: 1488281211.63f1781cb78eeed47ea74b7f238fcea083b17b63.aballier@gentoo
1 commit: 63f1781cb78eeed47ea74b7f238fcea083b17b63
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 28 11:04:20 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 28 11:26:51 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63f1781c
7
8 dev-python/rospkg: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/rospkg/rospkg-1.1.0.ebuild | 43 -----------------------------------
13 1 file changed, 43 deletions(-)
14
15 diff --git a/dev-python/rospkg/rospkg-1.1.0.ebuild b/dev-python/rospkg/rospkg-1.1.0.ebuild
16 deleted file mode 100644
17 index 56908705af..0000000000
18 --- a/dev-python/rospkg/rospkg-1.1.0.ebuild
19 +++ /dev/null
20 @@ -1,43 +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/rospkg"
32 -fi
33 -
34 -inherit ${SCM} distutils-r1
35 -
36 -DESCRIPTION="Standalone Python library for the ROS package system"
37 -HOMEPAGE="http://wiki.ros.org/rospkg"
38 -if [ "${PV#9999}" != "${PV}" ] ; then
39 - SRC_URI=""
40 - KEYWORDS=""
41 - # Needed for tests
42 - S="${WORKDIR}/${PN}"
43 - EGIT_CHECKOUT_DIR="${S}"
44 -else
45 - SRC_URI="https://github.com/ros-infrastructure/rospkg/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 - KEYWORDS="~amd64 ~arm"
47 -fi
48 -
49 -LICENSE="BSD"
50 -SLOT="0"
51 -IUSE="test"
52 -
53 -RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
54 -DEPEND="${RDEPEND}
55 - test? (
56 - dev-python/nose[${PYTHON_USEDEP}]
57 - dev-python/coverage[${PYTHON_USEDEP}]
58 - )
59 -"
60 -
61 -python_test() {
62 - nosetests --with-coverage --cover-package=rospkg --with-xunit test || die
63 -}