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: Sun, 28 Jan 2018 12:54:46
Message-Id: 1517144071.0e457e5782ac264f664c437fb38c5db97568ec1d.aballier@gentoo
1 commit: 0e457e5782ac264f664c437fb38c5db97568ec1d
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 28 09:40:54 2018 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 28 12:54:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e457e57
7
8 dev-python/catkin_pkg: bump to 0.4.1
9
10 Package-Manager: Portage-2.3.20, Repoman-2.3.6
11
12 dev-python/catkin_pkg/Manifest | 1 +
13 dev-python/catkin_pkg/catkin_pkg-0.4.1.ebuild | 46 +++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-python/catkin_pkg/Manifest b/dev-python/catkin_pkg/Manifest
17 index 905762dde6f..bdeeb5ed96a 100644
18 --- a/dev-python/catkin_pkg/Manifest
19 +++ b/dev-python/catkin_pkg/Manifest
20 @@ -1 +1,2 @@
21 DIST catkin_pkg-0.3.9-gh.tar.gz 48290 BLAKE2B fbba89008946433007f1016addeb73e44108b057609d52d693e80024460c5d77686bde241331845d36068b23e87a4ac33dcc0c6c29af95c4e86e8a30bbe52918 SHA512 39c7dbd7b3bb7d0fd7f37e6931e5de8c76c28ca329db5783d1cf0b01e9a7f58079c45434d937a8edcf29cbdebdcfb4b18480508d688dcefdf58c218838af65c8
22 +DIST catkin_pkg-0.4.1-gh.tar.gz 50886 BLAKE2B 03a5205271fd3f12e4a3bcd093d8e1811d3a1e3197292004e9dd4e255fa10741fdb90a754df4a1fd6705f305e524413cdb7a8dc9f5174a162a20ffa95cfc3b2e SHA512 d7802bbfd0187f1411d36fbecca2afa43dc55f54441a6e0ddc54c2153bf1c553cfa76e5a3d1d08a92fe765c530d1668a762eaaf45e1f68b61c2cf6d1ec49e4a7
23
24 diff --git a/dev-python/catkin_pkg/catkin_pkg-0.4.1.ebuild b/dev-python/catkin_pkg/catkin_pkg-0.4.1.ebuild
25 new file mode 100644
26 index 00000000000..0d20a2330bb
27 --- /dev/null
28 +++ b/dev-python/catkin_pkg/catkin_pkg-0.4.1.ebuild
29 @@ -0,0 +1,46 @@
30 +# Copyright 1999-2018 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/catkin_pkg"
40 +fi
41 +
42 +inherit ${SCM} distutils-r1
43 +
44 +DESCRIPTION="Standalone Python library for the catkin package system"
45 +HOMEPAGE="http://wiki.ros.org/catkin_pkg"
46 +if [ "${PV#9999}" != "${PV}" ] ; then
47 + SRC_URI=""
48 + KEYWORDS=""
49 +else
50 + SRC_URI="https://github.com/ros-infrastructure/catkin_pkg/archive/${PV}.tar.gz -> ${P}-gh.tar.gz"
51 + KEYWORDS="~amd64 ~arm"
52 +fi
53 +
54 +LICENSE="BSD"
55 +SLOT="0"
56 +IUSE="test"
57 +
58 +RDEPEND="
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + dev-python/docutils[${PYTHON_USEDEP}]
61 + dev-python/python-dateutil[${PYTHON_USEDEP}]
62 +"
63 +DEPEND="${RDEPEND}
64 + test? ( dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )
65 +"
66 +PATCHES=(
67 + "${FILESDIR}/catkin_prefix.patch"
68 + "${FILESDIR}/argparse.patch"
69 + "${FILESDIR}/ros_packages.patch"
70 + "${FILESDIR}/infinite_loop2.patch"
71 +)
72 +
73 +python_test() {
74 + nosetests -s --tests test || die
75 +}