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-cache/
Date: Mon, 27 Feb 2017 02:16:53
Message-Id: 1488161720.ad7a827eb76c0e56ff9720c4d4719c5b8a374282.prometheanfire@gentoo
1 commit: ad7a827eb76c0e56ff9720c4d4719c5b8a374282
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 01:29:56 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 02:15:20 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad7a827e
7
8 dev-python/oslo-cache: bup
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/oslo-cache/Manifest | 1 +
13 dev-python/oslo-cache/oslo-cache-1.17.0.ebuild | 39 ++++++++++++++++++++++++++
14 2 files changed, 40 insertions(+)
15
16 diff --git a/dev-python/oslo-cache/Manifest b/dev-python/oslo-cache/Manifest
17 index a2c4f57ae3..10f73ca6c0 100644
18 --- a/dev-python/oslo-cache/Manifest
19 +++ b/dev-python/oslo-cache/Manifest
20 @@ -1,2 +1,3 @@
21 DIST oslo-cache-1.14.0.tar.gz 45780 SHA256 3ba84b421f80c5a6609789cf17b1da86aab465a96e68298620e839fafec3f0be SHA512 b3638e1cec577bc3779595288ff323baef7b08e534050771ffef80aed9d61e1cb6fc9c034c753768e401f313fba8f7aa0b2f6a3354f272e2498d3972abbcdfd0 WHIRLPOOL 966bde82c0aefe8ea09e8e984ea6c769c983b5ce38d9b4a3b6e4921b66a8b261d81f8dfde4295099234da97bd887c0b00714bf454e634f356d81ba6a574557ca
22 +DIST oslo-cache-1.17.0.tar.gz 47178 SHA256 bd74257b5bc781112af8862ebd6d41cf58359bc78ccd421cc47f0a79d5337c64 SHA512 0ae55959a46624bd0b50cc8161f9428b3f61669f726ebc05d944f7e049c5172a1d9c83778c9632e8b2a21f047884d90d15b95c0e23a0dd19cb78f8d62f06d00e WHIRLPOOL 28c346d092cf8538a0408e4cd60d48959432090cdbb4bb00ea43524b49dceb84afa786b5456aa71a6938d99c195f940a6741ef3d06e380c5c3fe2607223a5ad0
23 DIST oslo-cache-1.6.0.tar.gz 36037 SHA256 c357671fb642822924d063b8151e132a6e7a65189c6c35c3f22c64ae0b0bdda8 SHA512 48ea43142d8221a61556ccccbb3c64e8708a1af04514b28dc22049a84d00e14253c9577d05321ef6de62ddc9120789942a82f231f1d7eeca2e5adf2d92ae04d5 WHIRLPOOL 8d06791e971fd6d9e3f49ade330b3c2ad780b162f953a5f9f04d40568efac7b38ae997f53ba315c38af59715d8be95cbab3dd3df051fa1b685b763476bbaf5a6
24
25 diff --git a/dev-python/oslo-cache/oslo-cache-1.17.0.ebuild b/dev-python/oslo-cache/oslo-cache-1.17.0.ebuild
26 new file mode 100644
27 index 0000000000..0de9648650
28 --- /dev/null
29 +++ b/dev-python/oslo-cache/oslo-cache-1.17.0.ebuild
30 @@ -0,0 +1,39 @@
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=( python{2_7,3_{4,5}} )
37 +
38 +inherit distutils-r1 vcs-snapshot
39 +
40 +MY_PN=${PN/-/.}
41 +
42 +DESCRIPTION="Oslo Caching around dogpile.cache"
43 +HOMEPAGE="https://launchpad.net/oslo"
44 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="Apache-2.0"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
49 +
50 +CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
51 +DEPEND="
52 + dev-python/setuptools[${PYTHON_USEDEP}]
53 + ${CDEPEND}
54 +"
55 +RDEPEND="
56 + ${CDEPEND}
57 + >=dev-python/dogpile-cache-0.6.2[${PYTHON_USEDEP}]
58 + >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
59 + >=dev-python/oslo-config-3.14.0[${PYTHON_USEDEP}]
60 + !~dev-python/oslo-config-3.18.0[${PYTHON_USEDEP}]
61 + >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
62 + >=dev-python/oslo-log-3.11.0[${PYTHON_USEDEP}]
63 + >=dev-python/oslo-utils-3.18.0[${PYTHON_USEDEP}]
64 +"
65 +
66 +python_prepare_all() {
67 + sed -i '/^hacking/d' test-requirements.txt || die
68 + distutils-r1_python_prepare_all
69 +}