blob: 5ac19be95fdbdc283669d536438099d1817d10b7 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
MY_P=python-livereload-${PV}
DESCRIPTION="livereload server in Python"
HOMEPAGE="
https://github.com/lepture/python-livereload/
https://pypi.org/project/livereload/
"
SRC_URI="
https://github.com/lepture/python-livereload/archive/v${PV}.tar.gz
-> ${MY_P}.gh.tar.gz
"
S=${WORKDIR}/${MY_P}
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
IUSE="examples"
RDEPEND="
dev-python/tornado[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
distutils_enable_sphinx docs \
dev-python/furo \
dev-python/myst-parser \
dev-python/sphinxcontrib-programoutput
python_test() {
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
# tests/test_watcher.py::TestWatcher::test_watch_multiple_dirs
# is extremely flaky
epytest -p rerunfailures --reruns=10
}
python_install_all() {
if use examples; then
docinto examples
dodoc -r example/.
docompress -x /usr/share/doc/${PF}/examples
fi
distutils-r1_python_install_all
}
|