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: Mon, 27 Feb 2017 10:49:23
Message-Id: 1488192548.9824ab0e4cb78459220ff8d5d3eac42938187201.aballier@gentoo
1 commit: 9824ab0e4cb78459220ff8d5d3eac42938187201
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 10:10:22 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 10:49:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9824ab0e
7
8 dev-python/rospkg: remove old
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/rospkg/Manifest | 1 -
13 dev-python/rospkg/rospkg-1.0.41-r1.ebuild | 45 -------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/rospkg/Manifest b/dev-python/rospkg/Manifest
17 index 80ad25c2fe..20f45e721c 100644
18 --- a/dev-python/rospkg/Manifest
19 +++ b/dev-python/rospkg/Manifest
20 @@ -1,2 +1 @@
21 -DIST rospkg-1.0.41.tar.gz 89625 SHA256 19e0ebf751a716e312ad848ab2b545f6634d87573109b6164438db210f1f1c12 SHA512 d831ed5da8c5cf8d01cafcb83c879ef17647bdd8ec40f58e27766c5843bba118553daa932e18d9448120ce0be3e89f20a0ddd728c38ce47b2b3a41fb537123b5 WHIRLPOOL cb1e3a5dec83f0b1612df8dbbf46c845f970916259084fd9c2b8b80d0bb8ea0bc59bf064685461ec64637259c36cedb45f4f431656627beedfddf0c915ad4762
22 DIST rospkg-1.1.0.tar.gz 89282 SHA256 e1a7c0025c565a969a32d75407f4fc9ae51c0676a40aa0d86c65cac7779fc760 SHA512 0b38eb9fec701ff27842870c4d089f2deede1558f41a02004a8f2eb3fb639dac9c744086794f756b94dc108483ca433ffe4bff33be3031f496e90059f3f5c65b WHIRLPOOL 5c89ef46a0e5372725617f17ef3cf5daa474ed6de1c57884e6b1e49069f93d2aebfe6a176ecb0ae5c8d69def5091432b99b481d81b0d69893fb53c3dce9360f6
23
24 diff --git a/dev-python/rospkg/rospkg-1.0.41-r1.ebuild b/dev-python/rospkg/rospkg-1.0.41-r1.ebuild
25 deleted file mode 100644
26 index b1e0b7c703..0000000000
27 --- a/dev-python/rospkg/rospkg-1.0.41-r1.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2017 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,3_5} pypy{,3} )
36 -
37 -SCM=""
38 -if [ "${PV#9999}" != "${PV}" ] ; then
39 - SCM="git-r3"
40 - EGIT_REPO_URI="https://github.com/ros-infrastructure/rospkg"
41 -fi
42 -
43 -inherit ${SCM} distutils-r1
44 -
45 -DESCRIPTION="Standalone Python library for the ROS package system"
46 -HOMEPAGE="http://wiki.ros.org/rospkg"
47 -if [ "${PV#9999}" != "${PV}" ] ; then
48 - SRC_URI=""
49 - KEYWORDS=""
50 - # Needed for tests
51 - S="${WORKDIR}/${PN}"
52 - EGIT_CHECKOUT_DIR="${S}"
53 -else
54 - SRC_URI="http://download.ros.org/downloads/${PN}/${P}.tar.gz
55 - https://github.com/ros-infrastructure/rospkg/archive/${PV}.tar.gz -> ${P}.tar.gz
56 - "
57 - KEYWORDS="~amd64 ~arm"
58 -fi
59 -
60 -LICENSE="BSD"
61 -SLOT="0"
62 -IUSE="test"
63 -
64 -RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
65 -DEPEND="${RDEPEND}
66 - test? (
67 - dev-python/nose[${PYTHON_USEDEP}]
68 - dev-python/coverage[${PYTHON_USEDEP}]
69 - )
70 -"
71 -
72 -python_test() {
73 - nosetests --with-coverage --cover-package=rospkg --with-xunit test || die
74 -}