blob: 3ae4ea036b6ee4e5f882a95a2e8311f00f0e155b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_5 )
inherit distutils-r1
DESCRIPTION="pytest plugin for PyQt4 or PyQt5 applications"
HOMEPAGE="https://pypi.org/project/pytest-qt"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND="
>=dev-python/pytest-2.7.0[${PYTHON_USEDEP}]
|| (
dev-python/PyQt4
dev-python/PyQt5
)
doc? (
dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/sphinx-py3doc-enhanced-theme[${PYTHON_USEDEP}]
)
"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
"
# Test make assumptions about Qt environment
RESTRICT="test"
python_compile_all() {
use doc && sphinx-build -b html docs _build/html
}
python_install_all() {
use doc && HTML_DOCS=( _build/html/. )
distutils-r1_python_install_all
}
|