blob: eb6e1694c159a88faeb1f0646a649b9e351ea06d (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_11 )
inherit distutils-r1
DESCRIPTION="A daemon to automatically suspend and wake up a system"
HOMEPAGE="
https://github.com/languitar/autosuspend
https://autosuspend.readthedocs.io
"
SRC_URI="
https://github.com/languitar/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz
"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
IUSE="dbus mpd test"
RESTRICT="!test? ( test )"
RDEPEND="
dev-python/portalocker[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
mpd? ( dev-python/python-mpd2[${PYTHON_USEDEP}] )
"
BDEPEND="
test? (
dev-python/freezegun[${PYTHON_USEDEP}]
dev-python/icalendar[${PYTHON_USEDEP}]
dev-python/jsonpath-ng[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
dev-python/pytest-datadir[${PYTHON_USEDEP}]
dev-python/pytest-httpserver[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-python/python-dbusmock[${PYTHON_USEDEP}]
dev-python/python-mpd2[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/tzlocal[${PYTHON_USEDEP}]
)
"
EPYTEST_DESELECT=(
tests/test_checks_util.py::TestNetworkMixin::test_file_url
)
distutils_enable_tests pytest
distutils_enable_sphinx doc/source \
dev-python/furo \
dev-python/recommonmark \
dev-python/sphinx-autodoc-typehints \
dev-python/sphinx-issues \
dev-python/sphinxcontrib-plantuml
python_test() {
# Disable code coverage in tests by setting addopts to the empty value.
epytest -o addopts=
}
src_install() {
distutils-r1_src_install
mv "${ED}/usr/etc" "${ED}/etc" || die
}
|