Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/stevedore/
Date: Wed, 22 Nov 2017 02:00:45
Message-Id: 1511315997.03e786058300ab6a074071fc87baf1a7be95b043.prometheanfire@gentoo
1 commit: 03e786058300ab6a074071fc87baf1a7be95b043
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 22 01:45:30 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 22 01:59:57 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e78605
7
8 dev-python/stevedore: 1.25.1 bup
9
10 Package-Manager: Portage-2.3.14, Repoman-2.3.6
11
12 dev-python/stevedore/Manifest | 1 +
13 dev-python/stevedore/stevedore-1.25.1.ebuild | 63 ++++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/dev-python/stevedore/Manifest b/dev-python/stevedore/Manifest
17 index be8a21e280d..e7555ec9123 100644
18 --- a/dev-python/stevedore/Manifest
19 +++ b/dev-python/stevedore/Manifest
20 @@ -1,2 +1,3 @@
21 DIST stevedore-1.20.1.tar.gz 505908 SHA256 046200a915780b58bf1c84436e86701b741d664893aefa84d8aceadd15ed4734 SHA512 7518fb4cac2ea15867a616373521169fd114152ae7e657deb26dbcf874f2442336824ded480973b4334e9b56c349abd165aab7779defc219f57d7ba7f670048c WHIRLPOOL e67a89733def07e8425750d9bc742388de83f8cb13d95dd0001fba4136449e74c465b847a7218df423633d311f0af0003eda8087eb0a4e071ab4d2e78949fca7
22 DIST stevedore-1.25.0.tar.gz 505985 SHA256 c8a373b90487b7a1b52ebaa3ca5059315bf68d9ebe15b2203c2fa675bd7e1e7e SHA512 d0e01312e75f7166c49bc4b57f5ea54492f6bbb0dbb02ae8cd50ce4e4ba4e71db936715f3076c49e554d9f6cc87a5b0166a1814072c56d69950fb9b6cbecf05c WHIRLPOOL 62454f1b1d349f30d0ce5a0324261e42497a821803491c082b1c4ed4266cdd151b11e0584f1add4e7dd4b50ab83f3991beacc03393d5e7ffa4ea303ae760b869
23 +DIST stevedore-1.25.1.tar.gz 509014 SHA256 4def435de90ba69c69954e641cdf877f5e5d660568c355c5c6805710c15d8504 SHA512 f3d2a7360e783c800c3c2488f6adf6f9f76e34e4a4e6f3fc53d2f1114b889c443c13fdf217ddce65a41922dda2c782f19b2077847807c70e732a522fd2166ff0 WHIRLPOOL 1230a08c09b1a371e29e8eb24a2ded4d098eae3ad968f76f522beabf232a6f2393657dae7ecb80f9659a584062be41fe1e0d816fb1a2e43ac686824c0ea1d88a
24
25 diff --git a/dev-python/stevedore/stevedore-1.25.1.ebuild b/dev-python/stevedore/stevedore-1.25.1.ebuild
26 new file mode 100644
27 index 00000000000..c26032f9df7
28 --- /dev/null
29 +++ b/dev-python/stevedore/stevedore-1.25.1.ebuild
30 @@ -0,0 +1,63 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Manage dynamic plugins for Python applications"
41 +HOMEPAGE="https://github.com/openstack/stevedore https://pypi.python.org/pypi/stevedore"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~x86"
47 +IUSE="doc test"
48 +
49 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
50 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
51 +DEPEND="
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + ${CDEPEND}
54 + test? (
55 + >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
56 + dev-python/nose[${PYTHON_USEDEP}]
57 + >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
58 + !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
59 + >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
60 + >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
61 + !~dev-python/reno-2.3.1[${PYTHON_USEDEP}]
62 + )
63 + doc? (
64 + >=dev-python/pillow-2.4.0[${PYTHON_USEDEP}]
65 + >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
66 + >=dev-python/openstackdocstheme-1.16.0[${PYTHON_USEDEP}]
67 + >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
68 + !~dev-python/reno-2.3.1[${PYTHON_USEDEP}]
69 + )
70 +"
71 +RDEPEND="
72 + ${CDEPEND}
73 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
74 +
75 +python_prepare_all() {
76 + # Delete spurious data in requirements.txt
77 + sed -e '/^pbr/d' -i requirements.txt || die
78 + distutils-r1_python_prepare_all
79 +}
80 +
81 +python_compile_all() {
82 + use doc && esetup.py build_sphinx
83 +}
84 +
85 +python_test() {
86 + nosetests --verbosity=3 stevedore || die
87 +}
88 +
89 +python_install_all() {
90 + use doc && local HTML_DOCS=( doc/build/html/. )
91 +
92 + distutils-r1_python_install_all
93 +}