blob: 328edaeac79a616c57c2566b67b6f5537130d65a (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1 multiprocessing
TEST_DATA_TAG=test-data-8
DESCRIPTION="A pure-python graphics and GUI library built on PyQt and numpy"
HOMEPAGE="
https://www.pyqtgraph.org/
https://github.com/pyqtgraph/pyqtgraph/
https://pypi.org/project/pyqtgraph/
"
SRC_URI="
https://github.com/pyqtgraph/pyqtgraph/archive/${P}.tar.gz
test? (
https://github.com/pyqtgraph/test-data/archive/${TEST_DATA_TAG}.tar.gz
-> ${PN}-${TEST_DATA_TAG}.tar.gz
)
"
S=${WORKDIR}/${PN}-${P}
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~riscv x86"
IUSE="opengl svg"
REQUIRED_USE="test? ( opengl svg )"
RDEPEND="
>=dev-python/numpy-1.17[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
dev-python/PyQt5[gui,widgets,opengl=,svg=,${PYTHON_USEDEP}]
opengl? ( dev-python/pyopengl[${PYTHON_USEDEP}] )
"
BDEPEND="
test? (
dev-python/h5py[${PYTHON_USEDEP}]
dev-python/PyQt5[testlib,${PYTHON_USEDEP}]
dev-python/pytest-xdist[${PYTHON_USEDEP}]
dev-python/pytest-xvfb[${PYTHON_USEDEP}]
dev-vcs/git
)
"
distutils_enable_sphinx doc/source
distutils_enable_tests pytest
python_prepare_all() {
distutils-r1_python_prepare_all
if ! use opengl; then
rm -r pyqtgraph/opengl || die
fi
}
python_test() {
local EPYTEST_DESELECT=(
# apparently fragile
tests/test_reload.py::test_reload
# TODO
tests/graphicsItems/test_ROI.py::test_PolyLineROI
# pyside2 is normally skipped if not installed but these two
# fail if it is installed
# TODO: this could be due to USE flags, revisit when pyside2
# gains py3.9
'pyqtgraph/examples/test_examples.py::testExamples[ DateAxisItem_QtDesigner.py - PySide2 ]'
'pyqtgraph/examples/test_examples.py::testExamples[ designerExample.py - PySide2 ]'
)
epytest -p xvfb -n "$(makeopts_jobs)"
}
src_test() {
mkdir "${HOME}"/.pyqtgraph || die
mv "${WORKDIR}/test-data-${TEST_DATA_TAG}" \
"${HOME}"/.pyqtgraph/test-data || die
cd "${HOME}"/.pyqtgraph/test-data || die
# we need to fake a git repo
git config --global user.email "you@example.com" || die
git config --global user.name "Your Name" || die
git init -q || die
git commit -q --allow-empty -m "dummy commit" || die
git tag "${TEST_DATA_TAG}" || die
cd - >/dev/null || die
distutils-r1_src_test
}
|