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, 30 May 2017 07:00:21
Message-Id: 1496127384.c5c45f176c8c72b3a5c89f57b811579ba4d9e94f.aballier@gentoo
1 commit: c5c45f176c8c72b3a5c89f57b811579ba4d9e94f
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 29 08:00:30 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue May 30 06:56:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5c45f17
7
8 dev-python/catkin_pkg: bump to 0.3.4
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-python/catkin_pkg/Manifest | 1 +
13 dev-python/catkin_pkg/catkin_pkg-0.3.4.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 245b5000fe3..807f0aa1742 100644
18 --- a/dev-python/catkin_pkg/Manifest
19 +++ b/dev-python/catkin_pkg/Manifest
20 @@ -1,2 +1,3 @@
21 DIST catkin_pkg-0.3.1-gh.tar.gz 46399 SHA256 3bfd1973c04db96f181ba2eb46a5eaf14620bb8db7aebc7ec8f2135c65a9d584 SHA512 be4e825ee45a68de3a3cb8eed337649a2f9b117054e24238cf4909fd11900698bdc59812e02e90c01fb3148d12713751e1afbea24531965eeb3fcbd2c36b014c WHIRLPOOL 433749f306e3b02dc2b87d5930423ed174ea133352caab8bb034295da6b9a9471b4f187d21784aebc130a56a0d4849565c2e0925649858615166bae7e0260249
22 DIST catkin_pkg-0.3.3-gh.tar.gz 47229 SHA256 83da42ca2ffa13b17882bafe7ea62948a238b5a5e52ff108946d793980950acb SHA512 3dd13105577ceff1b83a8c4c1e6f2cb6e235fd8a44b06e7b80e8b5c929f851a3c907b94985f8d392c776c5ef840eed84c1d770cb991863edcdc4f6cca8c9a3e5 WHIRLPOOL 6d12ac1432642fe9c5f1f323879bbf5531f93c542104a5a34334fc3ce7ad09def179977385d53a2b5e65449020a5082c27bcc4725997b194b7b7f4c2e60a7a9d
23 +DIST catkin_pkg-0.3.4-gh.tar.gz 47286 SHA256 e57164c46c20a2de338112beab65095717fa459526e42c37390b392a1480d7ce SHA512 857ed23534a8fd4a3bcfeac5173041b71e57566606f206e588caf76dfbfbb49d9cdd938345979a63c79069a73a087bf8371154650c3694768ea0f53b6c80ba06 WHIRLPOOL 35c08a08f049ace703ea20b1c80a2e47278acc131968825aaee9cd21bb1237d24058fc69883106e318038d7c0c7922b47755276a4656d9667b114e989335881a
24
25 diff --git a/dev-python/catkin_pkg/catkin_pkg-0.3.4.ebuild b/dev-python/catkin_pkg/catkin_pkg-0.3.4.ebuild
26 new file mode 100644
27 index 00000000000..28e56139aea
28 --- /dev/null
29 +++ b/dev-python/catkin_pkg/catkin_pkg-0.3.4.ebuild
30 @@ -0,0 +1,46 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=5
35 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
36 +
37 +SCM=""
38 +if [ "${PV#9999}" != "${PV}" ] ; then
39 + SCM="git-r3"
40 + EGIT_REPO_URI="https://github.com/ros-infrastructure/catkin_pkg"
41 +fi
42 +
43 +inherit ${SCM} distutils-r1
44 +
45 +DESCRIPTION="Standalone Python library for the catkin package system"
46 +HOMEPAGE="http://wiki.ros.org/catkin_pkg"
47 +if [ "${PV#9999}" != "${PV}" ] ; then
48 + SRC_URI=""
49 + KEYWORDS=""
50 +else
51 + SRC_URI="https://github.com/ros-infrastructure/catkin_pkg/archive/${PV}.tar.gz -> ${P}-gh.tar.gz"
52 + KEYWORDS="~amd64 ~arm"
53 +fi
54 +
55 +LICENSE="BSD"
56 +SLOT="0"
57 +IUSE="test"
58 +
59 +RDEPEND="
60 + dev-python/setuptools[${PYTHON_USEDEP}]
61 + dev-python/docutils[${PYTHON_USEDEP}]
62 + dev-python/python-dateutil[${PYTHON_USEDEP}]
63 +"
64 +DEPEND="${RDEPEND}
65 + test? ( dev-python/mock[${PYTHON_USEDEP}] dev-python/nose[${PYTHON_USEDEP}] )
66 +"
67 +PATCHES=(
68 + "${FILESDIR}/catkin_prefix.patch"
69 + "${FILESDIR}/argparse.patch"
70 + "${FILESDIR}/ros_packages.patch"
71 + "${FILESDIR}/infinite_loop.patch"
72 +)
73 +
74 +python_test() {
75 + nosetests -s --tests test || die
76 +}