Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-utils/
Date: Thu, 28 Apr 2022 08:31:10
Message-Id: 1651133618.20f9c5c94acfc8df10709c721562879b2cab3017.mgorny@gentoo
1 commit: 20f9c5c94acfc8df10709c721562879b2cab3017
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 28 07:10:45 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 28 08:13:38 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f9c5c9
7
8 dev-python/oslo-utils: Bump to 4.13.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/oslo-utils/Manifest | 1 +
13 dev-python/oslo-utils/oslo-utils-4.13.0.ebuild | 63 ++++++++++++++++++++++++++
14 2 files changed, 64 insertions(+)
15
16 diff --git a/dev-python/oslo-utils/Manifest b/dev-python/oslo-utils/Manifest
17 index db024b0c6c4a..02910c6154d0 100644
18 --- a/dev-python/oslo-utils/Manifest
19 +++ b/dev-python/oslo-utils/Manifest
20 @@ -1 +1,2 @@
21 DIST oslo.utils-4.12.2.tar.gz 101505 BLAKE2B fb2d56c767e8ed100ba789560e6b50dfecf8528de2a2717a9660e3dc8ceb93838137d59f1c2e3f05ccb99b95ea1ec86870e22160fb670a8cfb2dd9d6783f1d0f SHA512 fa56225f1991b031e2122cf08cd0992d8a9bfacd9a83d590f87ff86c495d51763ac06f65076c746a59563a60f886601d00ea9536dfcc927fca94c5a1431bcf67
22 +DIST oslo.utils-4.13.0.tar.gz 101834 BLAKE2B 9d3457ee9ce1746869120bf66d83495b4e1f2b4ca005285fa121ff4c176e85148662cd1de52bdaf93dc18d85478f2cbfde9b310e748b895f01c77ef82019dc0e SHA512 1d97fdaab79cc6c4cc34efdafca7263a2679e60d446aadc46fe31d7fdda2051b37f9df79d149644d914c7274e7fa2d9ef6a1c1aeafad8a1333221dcbe65f4723
23
24 diff --git a/dev-python/oslo-utils/oslo-utils-4.13.0.ebuild b/dev-python/oslo-utils/oslo-utils-4.13.0.ebuild
25 new file mode 100644
26 index 000000000000..b991aafb859e
27 --- /dev/null
28 +++ b/dev-python/oslo-utils/oslo-utils-4.13.0.ebuild
29 @@ -0,0 +1,63 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=${P/-/.}
41 +DESCRIPTION="Oslo Utility library"
42 +HOMEPAGE="https://launchpad.net/oslo"
43 +SRC_URI="mirror://pypi/${PN::1}/${PN/-/.}/${MY_P}.tar.gz"
44 +S="${WORKDIR}/${MY_P}"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~x86"
49 +
50 +RDEPEND="
51 + >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
52 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
53 + >=dev-python/pytz-2013.6[${PYTHON_USEDEP}]
54 + >=dev-python/netaddr-0.7.18[${PYTHON_USEDEP}]
55 + >=dev-python/netifaces-0.10.4[${PYTHON_USEDEP}]
56 + >=dev-python/debtcollector-1.2.0[${PYTHON_USEDEP}]
57 + >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
58 + >=dev-python/packaging-20.4[${PYTHON_USEDEP}]
59 +"
60 +BDEPEND="
61 + >=dev-python/pbr-2.2.0[${PYTHON_USEDEP}]
62 + test? (
63 + $(python_gen_cond_dep '
64 + >=dev-python/eventlet-0.23.0[${PYTHON_USEDEP}]
65 + ' python3_{8..9})
66 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
67 + >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
68 + >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
69 + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
70 + >=dev-python/ddt-1.0.1[${PYTHON_USEDEP}]
71 + )
72 +"
73 +
74 +distutils_enable_tests unittest
75 +
76 +src_prepare() {
77 + # spurious rdep
78 + sed -i -e '/pbr/d' requirements.txt || die
79 + distutils-r1_src_prepare
80 +}
81 +
82 +python_compile() {
83 + distutils-r1_python_compile
84 + if ! has "${EPYTHON}" python3.{8..9}; then
85 + find "${BUILD_DIR}"/install -name '*eventletutils*.py' -delete || die
86 + fi
87 +}
88 +
89 +python_test() {
90 + cd "${BUILD_DIR}/install$(python_get_sitedir)" || die
91 + eunittest
92 +}