Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytables/
Date: Tue, 01 Jan 2019 21:09:59
Message-Id: 1546376965.09f51899044592ec6f046c37d815fcd04acd4817.candrews@gentoo
1 commit: 09f51899044592ec6f046c37d815fcd04acd4817
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 30 18:15:21 2018 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 1 21:09:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f51899
7
8 dev-python/pytables: add test dependency on mock
9
10 Closes: https://bugs.gentoo.org/674026
11 Package-Manager: Portage-2.3.53, Repoman-2.3.12
12 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
13
14 dev-python/pytables/pytables-3.4.4.ebuild | 3 ++-
15 1 file changed, 2 insertions(+), 1 deletion(-)
16
17 diff --git a/dev-python/pytables/pytables-3.4.4.ebuild b/dev-python/pytables/pytables-3.4.4.ebuild
18 index 9995427aed4..4d78d0413dc 100644
19 --- a/dev-python/pytables/pytables-3.4.4.ebuild
20 +++ b/dev-python/pytables/pytables-3.4.4.ebuild
21 @@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
22 SLOT="0"
23 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
24 LICENSE="BSD"
25 -IUSE="doc examples"
26 +IUSE="doc examples test"
27
28 RDEPEND="
29 app-arch/bzip2:0=
30 @@ -33,6 +33,7 @@ RDEPEND="
31 "
32 DEPEND="${RDEPEND}
33 >=dev-python/cython-0.21[${PYTHON_USEDEP}]
34 + test? ( dev-python/mock[${PYTHON_USEDEP}] )
35 "
36
37 S="${WORKDIR}/${MY_P}"