Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-concurrency/
Date: Thu, 30 Sep 2021 17:59:26
Message-Id: 1633024641.53ac10e4c76786cdfe758871c76c15fcac4ecfab.arthurzam@gentoo
1 commit: 53ac10e4c76786cdfe758871c76c15fcac4ecfab
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 31 14:51:13 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 30 17:57:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ac10e4
7
8 dev-python/oslo-concurrency: initial import
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/oslo-concurrency/Manifest | 1 +
13 dev-python/oslo-concurrency/metadata.xml | 17 ++++++++++++
14 .../oslo-concurrency/oslo-concurrency-4.4.1.ebuild | 32 ++++++++++++++++++++++
15 3 files changed, 50 insertions(+)
16
17 diff --git a/dev-python/oslo-concurrency/Manifest b/dev-python/oslo-concurrency/Manifest
18 new file mode 100644
19 index 00000000000..6f2a74b2b86
20 --- /dev/null
21 +++ b/dev-python/oslo-concurrency/Manifest
22 @@ -0,0 +1 @@
23 +DIST oslo.concurrency-4.4.1.tar.gz 58399 BLAKE2B ea28cdd53ae124fe458c0d901b305d99b7a5b5525835e6a04ca856177876fa6c6a1eff74842dcf260c78c205d95f353cd1b70f0cb6205e7bec841bae2d6ecd0d SHA512 1b7e6a2cb2e3ee0710f652489522c7a9e47a5292c46041f21a2ffe4c61a6bbae48b43e93507465013704b89778deec860da06fec32b4d3778e05cade9a6d39a1
24
25 diff --git a/dev-python/oslo-concurrency/metadata.xml b/dev-python/oslo-concurrency/metadata.xml
26 new file mode 100644
27 index 00000000000..19a76ec7391
28 --- /dev/null
29 +++ b/dev-python/oslo-concurrency/metadata.xml
30 @@ -0,0 +1,17 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="person">
35 + <email>arthurzam@g.o</email>
36 + <name>Arthur Zamarin</name>
37 + </maintainer>
38 + <maintainer type="project">
39 + <email>python@g.o</email>
40 + <name>Python</name>
41 + </maintainer>
42 + <stabilize-allarches/>
43 + <upstream>
44 + <remote-id type="pypi">oslo.concurrency</remote-id>
45 + <remote-id type="github">openstack/oslo.concurrency</remote-id>
46 + </upstream>
47 +</pkgmetadata>
48
49 diff --git a/dev-python/oslo-concurrency/oslo-concurrency-4.4.1.ebuild b/dev-python/oslo-concurrency/oslo-concurrency-4.4.1.ebuild
50 new file mode 100644
51 index 00000000000..1d4915b303d
52 --- /dev/null
53 +++ b/dev-python/oslo-concurrency/oslo-concurrency-4.4.1.ebuild
54 @@ -0,0 +1,32 @@
55 +# Copyright 2021 Gentoo Authors
56 +# Distributed under the terms of the GNU General Public License v2
57 +
58 +EAPI=8
59 +
60 +PYTHON_COMPAT=( python3_{8..9} )
61 +inherit distutils-r1
62 +
63 +DESCRIPTION="Oslo Concurrency library"
64 +HOMEPAGE="https://pypi.org/project/oslo.concurrency/ https://github.com/openstack/oslo.concurrency"
65 +SRC_URI="mirror://pypi/o/${PN/-/.}/${PN/-/.}-${PV}.tar.gz"
66 +S="${WORKDIR}/${PN/-/.}-${PV}"
67 +
68 +LICENSE="Apache-2.0"
69 +SLOT="0"
70 +KEYWORDS="~amd64 ~x86"
71 +
72 +RDEPEND="
73 + >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
74 + >=dev-python/oslo-config-5.2.0[${PYTHON_USEDEP}]
75 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
76 + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
77 + >=dev-python/fasteners-0.7.0[${PYTHON_USEDEP}]
78 +"
79 +BDEPEND=">dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
80 + test? (
81 + >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
82 + >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
83 + >=dev-python/eventlet-0.19.0[${PYTHON_USEDEP}]
84 + )"
85 +
86 +distutils_enable_tests unittest