Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-cache/
Date: Tue, 02 Jun 2020 18:40:49
Message-Id: 1591123237.a9b254fbb9df8b488c487df528c33f1c56c5194c.prometheanfire@gentoo
1 commit: a9b254fbb9df8b488c487df528c33f1c56c5194c
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 2 18:39:59 2020 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 2 18:40:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9b254fb
7
8 dev-python/oslo-cache: 2.3.0 bump
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/oslo-cache/Manifest | 1 +
14 dev-python/oslo-cache/oslo-cache-2.3.0.ebuild | 42 +++++++++++++++++++++++++++
15 2 files changed, 43 insertions(+)
16
17 diff --git a/dev-python/oslo-cache/Manifest b/dev-python/oslo-cache/Manifest
18 index 05d4069412e..e2123a7248b 100644
19 --- a/dev-python/oslo-cache/Manifest
20 +++ b/dev-python/oslo-cache/Manifest
21 @@ -1 +1,2 @@
22 DIST oslo-cache-1.33.3.tar.gz 56098 BLAKE2B b3d2ab549a2b2066ffdfc5d9b680da35501818719a8c6f460be1520c2d6342f1c41f0f1aa20ffdcc45958e83e242515a3ec8bf69ce1273ab47a8a26e648069c8 SHA512 7edc1d8ceb00f2989093ec1809120f2aa552de2d5ce6176c9af56278040d652fc0d627e0f7f427b9bacaaa24cec7b0fe24568316d90a4e52054357bc9b9e30e2
23 +DIST oslo-cache-2.3.0.tar.gz 57209 BLAKE2B aa34c4deb0206c86181e629b1ccedaa3b0b7a503f4648b9ffb23dcba84c98658017a720701176776652a2a58447c54662314dd4853ec6ccf6c2acebb4b559325 SHA512 c3ad9c326fa71985d4546bd20bcb8aa9508808c8eae2a9e3dac1c014d148bfa8f5a847eb2ca8d1a204cce07b6d640f9541491dd41c7c6169e993e408786358af
24
25 diff --git a/dev-python/oslo-cache/oslo-cache-2.3.0.ebuild b/dev-python/oslo-cache/oslo-cache-2.3.0.ebuild
26 new file mode 100644
27 index 00000000000..617334205e5
28 --- /dev/null
29 +++ b/dev-python/oslo-cache/oslo-cache-2.3.0.ebuild
30 @@ -0,0 +1,42 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=( python3_{6,7} )
36 +
37 +inherit distutils-r1
38 +
39 +MY_PN=${PN/-/.}
40 +
41 +DESCRIPTION="Oslo Caching around dogpile.cache"
42 +HOMEPAGE="https://launchpad.net/oslo"
43 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +S="${WORKDIR}/${MY_PN}-${PV}"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
50 +
51 +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
52 + !~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"
53 +DEPEND="
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 + ${CDEPEND}
56 +"
57 +RDEPEND="
58 + ${CDEPEND}
59 + >=dev-python/dogpile-cache-0.6.2[${PYTHON_USEDEP}]
60 + >=dev-python/oslo-config-5.1.0[${PYTHON_USEDEP}]
61 + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
62 + >=dev-python/oslo-log-3.30.0[${PYTHON_USEDEP}]
63 + >=dev-python/oslo-utils-3.31.0[${PYTHON_USEDEP}]
64 +"
65 +
66 +PATCHES=(
67 +)
68 +
69 +python_prepare_all() {
70 + sed -i '/^hacking/d' test-requirements.txt || die
71 + distutils-r1_python_prepare_all
72 +}