blob: b4d2acfa1bc3bde41b4cdf76d9e58bd616a9a679 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7,8} )
DISTUTILS_USE_SETUPTOOLS=rdepend
inherit distutils-r1 udev
DESCRIPTION="Cross-platform tool and drivers for liquid coolers and other devices"
HOMEPAGE="https://github.com/jonasmalacofilho/liquidctl"
SRC_URI="https://github.com/jonasmalacofilho/liquidctl/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/docopt[${PYTHON_USEDEP}]
dev-python/hidapi[${PYTHON_USEDEP}]
dev-python/pyusb[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
src_test() {
# Without this variable, it attempts to write to /var/run and fails
XDG_RUNTIME_DIR="${T}/xdg" distutils-r1_src_test || die
}
python_install_all() {
distutils-r1_python_install_all
dodoc docs/*.md || die
dodoc -r docs/linux/
udev_dorules extra/linux/71-liquidctl.rules
}
|