Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/repoze-lru/
Date: Thu, 09 Feb 2017 16:02:50
Message-Id: 1486656105.61c9103becd32de558e93c6197254f007c19eb27.mrueg@gentoo
1 commit: 61c9103becd32de558e93c6197254f007c19eb27
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 9 16:01:45 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 9 16:01:45 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c9103b
7
8 dev-python/repoze-lru: Add missing dependency on setuptools
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild | 29 ++++++++++++++++++++++++++
13 1 file changed, 29 insertions(+)
14
15 diff --git a/dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild b/dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild
16 new file mode 100644
17 index 0000000000..bc97037760
18 --- /dev/null
19 +++ b/dev-python/repoze-lru/repoze-lru-0.6-r2.ebuild
20 @@ -0,0 +1,29 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
28 +
29 +inherit distutils-r1
30 +
31 +MY_PN=${PN/-/.}
32 +MY_P=${MY_PN}-${PV}
33 +
34 +DESCRIPTION="A tiny LRU cache implementation and decorator"
35 +HOMEPAGE="http://www.repoze.org"
36 +SRC_URI="mirror://pypi/${P:0:1}/${MY_PN}/${MY_P}.tar.gz"
37 +
38 +LICENSE="repoze"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~arm64 ~x86"
41 +IUSE=""
42 +
43 +S=${WORKDIR}/${MY_P}
44 +
45 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
46 +
47 +python_test() {
48 + esetup.py test
49 +}