Сравнение seekwatcher-0.13 с seekwatcher-0.14
/usr/portage/sys-block/seekwatcher/seekwatcher-0.14.ebuild 2023-10-09 14:52:35.440368500 +0300 | ||
---|---|---|
1 | 1 |
# Copyright 1999-2023 Gentoo Authors |
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 |
DISTUTILS_EXT=1 |
|
6 | 7 |
DISTUTILS_SINGLE_IMPL=1 |
7 |
DISTUTILS_USE_SETUPTOOLS=no |
|
8 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
8 |
PYTHON_COMPAT=( python3_{10..11} ) |
|
9 | 9 | |
10 | 10 |
inherit distutils-r1 |
11 | 11 | |
12 |
DESCRIPTION="generates graphs from blktrace to help visualize IO patterns and performance" |
|
12 |
DESCRIPTION="Generates graphs from blktrace to help visualize IO patterns and performance" |
|
13 | 13 |
HOMEPAGE="https://github.com/trofi/seekwatcher" |
14 | 14 |
SRC_URI="https://github.com/trofi/seekwatcher/archive/v${PV}.tar.gz -> ${P}.tar.gz" |
15 | 15 | |
16 | 16 |
LICENSE="GPL-2" |
17 | 17 |
SLOT="0" |
18 |
KEYWORDS="amd64 x86" |
|
19 |
IUSE="" |
|
18 |
KEYWORDS="~amd64 ~x86" |
|
20 | 19 | |
21 |
BDEPEND="$(python_gen_cond_dep ' |
|
20 |
BDEPEND=" |
|
21 |
$(python_gen_cond_dep ' |
|
22 | 22 |
dev-python/cython[${PYTHON_USEDEP}] |
23 | 23 |
') |
24 | 24 |
" |
25 | ||
26 | 25 |
RDEPEND=" |
27 | 26 |
$(python_gen_cond_dep ' |
28 | 27 |
dev-python/matplotlib[${PYTHON_USEDEP}] |
... | ... | |
30 | 29 |
') |
31 | 30 |
sys-block/blktrace |
32 | 31 |
" |
33 | ||
34 |
REQUIRED_USE="${PYTHON_REQUIRED_USE}" |