Сравнение btrfs-progs-6.3.1 с btrfs-progs-6.3.2
/usr/portage/sys-fs/btrfs-progs/btrfs-progs-6.3.2.ebuild 2023-10-09 14:52:35.504368502 +0300 | ||
---|---|---|
3 | 3 | |
4 | 4 |
EAPI=8 |
5 | 5 | |
6 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
7 | ||
6 |
PYTHON_COMPAT=( python3_{10..11} ) |
|
8 | 7 |
inherit bash-completion-r1 python-single-r1 udev |
9 | 8 | |
10 | 9 |
libbtrfs_soname=0 |
... | ... | |
14 | 13 |
SRC_URI="https://www.kernel.org/pub/linux/kernel/people/kdave/${PN}/${PN}-${MY_PV}.tar.xz" |
15 | 14 | |
16 | 15 |
if [[ ${PV} != *_rc* ]] ; then |
17 |
KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv ~sparc x86" |
|
16 |
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" |
|
18 | 17 |
fi |
19 | 18 | |
20 | 19 |
S="${WORKDIR}"/${PN}-${MY_PV} |
... | ... | |
26 | 25 |
fi |
27 | 26 | |
28 | 27 |
DESCRIPTION="Btrfs filesystem utilities" |
29 |
HOMEPAGE="https://btrfs.wiki.kernel.org https://btrfs.readthedocs.io/en/latest/" |
|
28 |
HOMEPAGE="https://btrfs.readthedocs.io/en/latest/" |
|
30 | 29 | |
31 | 30 |
LICENSE="GPL-2" |
32 | 31 |
SLOT="0/${libbtrfs_soname}" |
... | ... | |
136 | 135 |
cd libbtrfsutil/python || die |
137 | 136 | |
138 | 137 |
local -x LD_LIBRARY_PATH="${S}:libbtrfsutil/python:${LD_LIBRARY_PATH}" |
139 |
${EPYTHON} -m unittest tests/test_*.py || die |
|
138 |
${EPYTHON} -m unittest tests/test_*.py || die "Tests failed with ${EPYTHON}" |
|
140 | 139 |
fi |
141 | 140 |
} |
142 | 141 | |
143 | 142 |
src_install() { |
144 | 143 |
local makeargs=( |
145 |
$(usex python install_python '') |
|
146 |
$(usex static install-static '') |
|
144 |
$(usev python install_python) |
|
145 |
$(usev static install-static) |
|
147 | 146 |
) |
148 | 147 | |
149 | 148 |
emake V=1 DESTDIR="${D}" install "${makeargs[@]}" |