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: Sat, 14 Oct 2017 11:41:49
Message-Id: 1507980696.c9e9bc84987cc2c62a547be30a453c7bfc347b7f.aballier@gentoo
1 commit: c9e9bc84987cc2c62a547be30a453c7bfc347b7f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 14 11:31:36 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 14 11:31:36 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9e9bc84
7
8 dev-python/rospkg: bump to 1.1.4
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 dev-python/rospkg/Manifest | 1 +
13 dev-python/rospkg/rospkg-1.1.4.ebuild | 43 +++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/rospkg/Manifest b/dev-python/rospkg/Manifest
17 index 1acf60b32f4..a544e3688c0 100644
18 --- a/dev-python/rospkg/Manifest
19 +++ b/dev-python/rospkg/Manifest
20 @@ -1 +1,2 @@
21 DIST rospkg-1.1.3.tar.gz 89534 SHA256 ba0948fbb3be14082f9e83763cbe3a12857127eb78e142748c9d16d41ab4479c SHA512 2bb0521fbb87492dbc83d2582a8de3034f2e5548c1a464cfc558915157f3ef9d34d6166a4378d5e5cb226f2c8f714df86879220f7041d37b58a9ad33be2ce3cd WHIRLPOOL 77082d0927626a5350300c556fd15eceb3527ee3a64239ade75aa2758288c1835e3f7797425ea6921674cab187593ec494406717a8daa88093dea874efad95d0
22 +DIST rospkg-1.1.4.tar.gz 89554 SHA256 9d93bbf646c3db7e5ffd9814a879fe76cf45d2aa0a0bb210f44e807ea41a4c70 SHA512 1758dcbe28c18c834a60bbda2e5e6be34629b3dd4f6519f24dfa1324ff9fc59fb7d0ae9d324c002eee06ff672309627e48f97119b36601390b24a24ae196d5c5 WHIRLPOOL ab3eedf4df5bac5cfb19c50e8452928c8a879fc506a13e1ff2f92cb37afdd610ade43efd367d5c5cf09fbbc331177e42d79f8825da23ed05fae2f9f3953b4ab2
23
24 diff --git a/dev-python/rospkg/rospkg-1.1.4.ebuild b/dev-python/rospkg/rospkg-1.1.4.ebuild
25 new file mode 100644
26 index 00000000000..dff594067af
27 --- /dev/null
28 +++ b/dev-python/rospkg/rospkg-1.1.4.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
35 +
36 +SCM=""
37 +if [ "${PV#9999}" != "${PV}" ] ; then
38 + SCM="git-r3"
39 + EGIT_REPO_URI="https://github.com/ros-infrastructure/rospkg"
40 +fi
41 +
42 +inherit ${SCM} distutils-r1
43 +
44 +DESCRIPTION="Standalone Python library for the ROS package system"
45 +HOMEPAGE="http://wiki.ros.org/rospkg"
46 +if [ "${PV#9999}" != "${PV}" ] ; then
47 + SRC_URI=""
48 + KEYWORDS=""
49 + # Needed for tests
50 + S="${WORKDIR}/${PN}"
51 + EGIT_CHECKOUT_DIR="${S}"
52 +else
53 + SRC_URI="https://github.com/ros-infrastructure/rospkg/archive/${PV}.tar.gz -> ${P}.tar.gz"
54 + KEYWORDS="~amd64 ~arm"
55 +fi
56 +
57 +LICENSE="BSD"
58 +SLOT="0"
59 +IUSE="test"
60 +
61 +RDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
62 +DEPEND="${RDEPEND}
63 + test? (
64 + dev-python/nose[${PYTHON_USEDEP}]
65 + dev-python/coverage[${PYTHON_USEDEP}]
66 + )
67 +"
68 +PATCHES=( "${FILESDIR}/gentoo.patch" )
69 +
70 +python_test() {
71 + nosetests --with-coverage --cover-package=rospkg --with-xunit test || die
72 +}