Gentoo Archives: gentoo-commits

From: Ian Delaney <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jaraco-collections/
Date: Fri, 19 Feb 2016 11:05:48
Message-Id: 1455873979.36bc45e63f51ea237448829b2339a4142401ceff.idella4@gentoo
1 commit: 36bc45e63f51ea237448829b2339a4142401ceff
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Thu Feb 18 23:22:36 2016 +0000
4 Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 19 09:26:19 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36bc45e6
7
8 dev-python/jaraco-collections: bump to 1.3.2
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/jaraco-collections/Manifest | 1 +
13 .../jaraco-collections-1.3.2.ebuild | 49 ++++++++++++++++++++++
14 2 files changed, 50 insertions(+)
15
16 diff --git a/dev-python/jaraco-collections/Manifest b/dev-python/jaraco-collections/Manifest
17 index 56ee04d..de2cc2b 100644
18 --- a/dev-python/jaraco-collections/Manifest
19 +++ b/dev-python/jaraco-collections/Manifest
20 @@ -1 +1,2 @@
21 DIST jaraco.collections-1.3.1.tar.gz 8616 SHA256 27e3d67f94372d70be25f46a48796441ca719aedbd4a411835e71e88455bbe66 SHA512 812fbb66543e204f09f4dc35fc43888b3e8e1cbbf4a2a0e75a0589286e1ee5b303dc30b93696d8fc952bb3dddab95d8ed5ddb09ad4511ad4e12069fb87a93386 WHIRLPOOL c8730e3bd1eb1950b523ce62e31f7e2d2fd46bacdcacd7c57b9b55f95cff51e025e47813af1777d362f83401822a4015fdd386e977bbbd26f9c1a130ff7aa65a
22 +DIST jaraco.collections-1.3.2.tar.gz 8965 SHA256 8587fcfa89d81d639687184502cddb4868e3dc5b9a73827ee2bfe8455ab27e57 SHA512 2369e9194fba5b25294ff5977def201b14d1ae72ddce08b5163995fcb530e55046f24354a0144f9272e822c38b468f493f262d56d2d0f6edab315be90f5fca70 WHIRLPOOL adb24717b71bce2f4d4ccae216eb9fd638bd8457a6c465c73fff32e045900ca08e8cc3a2bd49e9f55f6d7897caaae2894a74c10eac343c40498e7ab2a18c712a
23
24 diff --git a/dev-python/jaraco-collections/jaraco-collections-1.3.2.ebuild b/dev-python/jaraco-collections/jaraco-collections-1.3.2.ebuild
25 new file mode 100644
26 index 0000000..300540d
27 --- /dev/null
28 +++ b/dev-python/jaraco-collections/jaraco-collections-1.3.2.ebuild
29 @@ -0,0 +1,49 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_PN="${PN/-/.}"
41 +DESCRIPTION="Models and classes to supplement the stdlib collections module"
42 +HOMEPAGE="https://github.com/jaraco/jaraco.collections"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="test"
49 +
50 +PDEPEND="dev-python/jaraco-text[${PYTHON_USEDEP}]"
51 +RDEPEND="dev-python/jaraco-classes[${PYTHON_USEDEP}]
52 + dev-python/six[${PYTHON_USEDEP}]
53 +"
54 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
55 + >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
56 + test? (
57 + ${RDEPEND}
58 + >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
59 + dev-python/pytest-runner[${PYTHON_USEDEP}]
60 + )
61 +"
62 +
63 +S="${WORKDIR}/${MY_PN}-${PV}"
64 +
65 +python_prepare_all() {
66 + if use test; then
67 + if has_version "${CATEGORY}/${PN}"; then
68 + die "Ensure $PN is not already installed or the test suite will fail"
69 + elif ! has_version "dev-python/jaraco-text"; then
70 + die "Ensure dev-python/jaraco-text is installed or the test suite will fail"
71 + fi
72 + fi
73 + distutils-r1_python_prepare_all
74 +}
75 +
76 +python_test() {
77 + PYTHONPATH=. py.test || die "tests failed with ${EPYTHON}"
78 +}