Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pytest-qt/
Date: Mon, 01 Jan 2018 18:26:29
Message-Id: 1514831166.0c1858a2fd801a0a84f7ab04bf6d2ff52acbf1c1.blueness@gentoo
1 commit: 0c1858a2fd801a0a84f7ab04bf6d2ff52acbf1c1
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 18:26:06 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 1 18:26:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c1858a2
7
8 dev-python/pytest-qt: add RESTRICT=test and fix minor white space
9
10 Package-Manager: Portage-2.3.13, Repoman-2.3.3
11
12 dev-python/pytest-qt/pytest-qt-2.3.0.ebuild | 5 ++++-
13 1 file changed, 4 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-python/pytest-qt/pytest-qt-2.3.0.ebuild b/dev-python/pytest-qt/pytest-qt-2.3.0.ebuild
16 index 631c78f70ae..f99801f9628 100644
17 --- a/dev-python/pytest-qt/pytest-qt-2.3.0.ebuild
18 +++ b/dev-python/pytest-qt/pytest-qt-2.3.0.ebuild
19 @@ -10,7 +10,7 @@ DESCRIPTION="pytest plugin for PyQt4 or PyQt5 applications"
20 HOMEPAGE="https://pypi.python.org/pypi/pytest-qt"
21 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
22
23 -LICENSE=" MIT"
24 +LICENSE="MIT"
25 SLOT="0"
26 KEYWORDS="~amd64 ~x86"
27 IUSE="doc"
28 @@ -31,6 +31,9 @@ DEPEND="
29 dev-python/setuptools[${PYTHON_USEDEP}]
30 "
31
32 +# Test make assumptions about Qt environment
33 +RESTRICT="test"
34 +
35 python_compile_all() {
36 use doc && sphinx-build -b html docs _build/html
37 }