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/pygit2/
Date: Thu, 28 Mar 2019 13:49:57
Message-Id: 1553780988.b051a290fe10bcb4435d9dbd23e3fa24de6217c2.mgorny@gentoo
1 commit: b051a290fe10bcb4435d9dbd23e3fa24de6217c2
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 28 13:48:46 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 28 13:49:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b051a290
7
8 dev-python/pygit2: pytest is needed for tests only
9
10 Closes: https://bugs.gentoo.org/681876
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/pygit2/pygit2-0.27.4.ebuild | 5 ++++-
14 1 file changed, 4 insertions(+), 1 deletion(-)
15
16 diff --git a/dev-python/pygit2/pygit2-0.27.4.ebuild b/dev-python/pygit2/pygit2-0.27.4.ebuild
17 index bc0bb7e5f0a..fee4feb2136 100644
18 --- a/dev-python/pygit2/pygit2-0.27.4.ebuild
19 +++ b/dev-python/pygit2/pygit2-0.27.4.ebuild
20 @@ -13,6 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
21 LICENSE="GPL-2-with-linking-exception"
22 SLOT="0"
23 KEYWORDS="~amd64 ~x86"
24 +IUSE="test"
25
26 RDEPEND="
27 =dev-libs/libgit2-$(ver_cut 1-2)*
28 @@ -20,7 +21,9 @@ RDEPEND="
29 dev-python/six[${PYTHON_USEDEP}]
30 "
31 DEPEND="${RDEPEND}
32 - dev-python/pytest[${PYTHON_USEDEP}]"
33 + test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
34 +
35 +RESTRICT="!test? ( test )"
36
37 python_prepare_all() {
38 sed -i -e '/pycparser/s:<2.18::' setup.py || die