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/oslo-concurrency/
Date: Thu, 30 Aug 2018 17:09:24
Message-Id: 1535648945.051cfb622a4fd95b919a2b6c193a106befa7b848.prometheanfire@gentoo
1 commit: 051cfb622a4fd95b919a2b6c193a106befa7b848
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 30 16:48:28 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 30 17:09:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=051cfb62
7
8 dev-python/oslo-concurrency: 3.27.0 bump
9
10 Package-Manager: Portage-2.3.48, Repoman-2.3.10
11
12 dev-python/oslo-concurrency/Manifest | 1 +
13 .../oslo-concurrency-3.27.0.ebuild | 56 ++++++++++++++++++++++
14 2 files changed, 57 insertions(+)
15
16 diff --git a/dev-python/oslo-concurrency/Manifest b/dev-python/oslo-concurrency/Manifest
17 index 7ebec75ff6f..ec9fef31ba5 100644
18 --- a/dev-python/oslo-concurrency/Manifest
19 +++ b/dev-python/oslo-concurrency/Manifest
20 @@ -1 +1,2 @@
21 DIST oslo.concurrency-3.25.1.tar.gz 49218 BLAKE2B 95fccb051ef782a0b6cd01801e9b44272a8b04ca52fd0f00f91a2aa3514885c302a3f251885f59c32303708c91331f3f59ee06ebdce4751d013559a0e7d19b16 SHA512 5c306e742c652d66209a3218ccdc1d1f957ec6fde0b0bcb9411a71e470e8c0402c4cc1a40a05094ce591942ed16b8e0a7b456d60a64e0299ef32a257b37c8388
22 +DIST oslo.concurrency-3.27.0.tar.gz 49604 BLAKE2B 04a7ed66c6d7cf37014080113bd3782cf186f57f486d6834fd28f3d518141f8dcac6f5e67ffb5ef894bc6f5085a90aa41a041e35b72325c645f7567dd743a912 SHA512 fb2e1377a8bbad451ef0a2713dfbcd58ec06d455e97fc4d8acf8bfde8eb27d59826d68dd3411bd60b6d6b5e68ff629f0e6e4781b17dd4349bc5b87f17c8b9d52
23
24 diff --git a/dev-python/oslo-concurrency/oslo-concurrency-3.27.0.ebuild b/dev-python/oslo-concurrency/oslo-concurrency-3.27.0.ebuild
25 new file mode 100644
26 index 00000000000..3793ae78565
27 --- /dev/null
28 +++ b/dev-python/oslo-concurrency/oslo-concurrency-3.27.0.ebuild
29 @@ -0,0 +1,56 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
35 +
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="library for running multi-thread, multi-process applications"
39 +HOMEPAGE="https://pypi.org/project/oslo.concurrency/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/oslo.concurrency/oslo.concurrency-${PV}.tar.gz"
41 +S="${WORKDIR}/oslo.concurrency-${PV}"
42 +
43 +LICENSE="Apache-2.0"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm64 ~x86"
46 +IUSE="test"
47 +
48 +CDPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
49 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
51 + ${CDEPEND}
52 + test? (
53 + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
54 + >=dev-python/coverage-4.0[${PYTHON_USEDEP}]
55 + !~dev-python/coverage-4.4[${PYTHON_USEDEP}]
56 + virtual/python-futures[${PYTHON_USEDEP}]
57 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
58 + >=dev-python/sphinx-1.6.2[${PYTHON_USEDEP}]
59 + !~dev-python/sphinx-1.6.6[${PYTHON_USEDEP}]
60 + !~dev-python/sphinx-1.6.7[${PYTHON_USEDEP}]
61 + >=dev-python/openstackdocstheme-1.18.1[${PYTHON_USEDEP}]
62 + >=dev-python/reno-2.5.0[${PYTHON_USEDEP}]
63 + >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
64 + !~dev-python/eventlet-0.20.1[${PYTHON_USEDEP}]
65 + >=dev-python/bandit-1.1.0[${PYTHON_USEDEP}]
66 + )"
67 +RDEPEND="
68 + ${CDEPEND}
69 + virtual/python-enum34[${PYTHON_USEDEP}]
70 + >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
71 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
72 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
73 + >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
74 + >=dev-python/fasteners-0.7.0[${PYTHON_USEDEP}]
75 +"
76 +
77 +python_prepare_all() {
78 + sed -i '/^futures/d' test-requirements.txt || die
79 + sed -i '/^hacking/d' test-requirements.txt || die
80 + distutils-r1_python_prepare_all
81 +}
82 +
83 +python_test() {
84 + nosetests ${PN/-/_}/tests/ || die "test failed under ${EPYTHON}"
85 +}