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/cachelib/
Date: Fri, 25 Jun 2021 21:45:51
Message-Id: 1624657505.73949be2e415bc8ea339f5813a68379b8bd9f4e3.mgorny@gentoo
1 commit: 73949be2e415bc8ea339f5813a68379b8bd9f4e3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 25 21:41:37 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 25 21:45:05 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73949be2
7
8 dev-python/cachelib: Bump to 0.2.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/cachelib/Manifest | 1 +
13 dev-python/cachelib/cachelib-0.2.0.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/cachelib/Manifest b/dev-python/cachelib/Manifest
17 index c95aaa1f639..23172b94e34 100644
18 --- a/dev-python/cachelib/Manifest
19 +++ b/dev-python/cachelib/Manifest
20 @@ -1 +1,2 @@
21 DIST cachelib-0.1.1.tar.gz 10192 BLAKE2B ce1ac03498e331c0df405e99b26f24cf38f21243c60d90ca3b0fab599abce5ac8c59ba8c566216d761fea170d64934c63fd74f9733c50aa3ebe382c54b80bcfa SHA512 865dba727427907227b021ecc5962738c85fb74f898acfe1612e48247ada9eda3eddb72c3c29c700fe4275ed699accc5af9526afbaf0dfbfb3a1a1a6370cc3d6
22 +DIST cachelib-0.2.0.tar.gz 17735 BLAKE2B 737c5083b719b6330df4eab3e256fa64b9bd2292d46a1c0b82c72c6f69f4f2fae6623fd4bc167533101e0ff01b5273a1042f5c1bdf35080a5241358de642cba3 SHA512 4011d9ead4fe27a54508355eba46e91a924ce30ef3d7cdc5a2049f7e0e48f924b64d65f203aebcf9a8729f956b6edde4160cdb7edfa7e63293e2853b94bd6601
23
24 diff --git a/dev-python/cachelib/cachelib-0.2.0.ebuild b/dev-python/cachelib/cachelib-0.2.0.ebuild
25 new file mode 100644
26 index 00000000000..8f80ff98d46
27 --- /dev/null
28 +++ b/dev-python/cachelib/cachelib-0.2.0.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{8..9} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Collection of cache libraries in the same API interface. Extracted from werkzeug"
40 +HOMEPAGE="https://pypi.org/project/cachelib/ https://github.com/pallets/cachelib"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~x86"
46 +
47 +BDEPEND="
48 + test? (
49 + dev-db/redis
50 + dev-python/pylibmc[${PYTHON_USEDEP}]
51 + dev-python/pytest-xprocess[${PYTHON_USEDEP}]
52 + dev-python/redis-py[${PYTHON_USEDEP}]
53 + net-misc/memcached
54 + www-servers/uwsgi[${PYTHON_USEDEP}]
55 + )"
56 +
57 +distutils_enable_tests pytest