Сравнение catalyst-3.0.22-r1 с catalyst-3.0.22-r3
/usr/portage/dev-util/catalyst/catalyst-3.0.22-r3.ebuild 2023-10-09 14:52:30.948368387 +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 | 6 |
if [[ ${PV} == *9999* ]]; then |
7 | 7 |
SRC_ECLASS="git-r3" |
... | ... | |
13 | 13 |
fi |
14 | 14 | |
15 | 15 |
PYTHON_COMPAT=( python3_{9..11} ) |
16 |
DISTUTILS_USE_SETUPTOOLS=no |
|
16 |
DISTUTILS_USE_PEP517=setuptools |
|
17 | 17 | |
18 | 18 |
inherit distutils-r1 ${SRC_ECLASS} |
19 | 19 | |
... | ... | |
60 | 60 |
distutils-r1_python_prepare_all |
61 | 61 |
} |
62 | 62 | |
63 |
python_compile_all() { |
|
63 |
# Build man pages here so as to not clobber default src_compile |
|
64 |
src_configure() { |
|
64 | 65 |
# build the man pages and docs |
65 | 66 |
emake |
66 | 67 |
} |
... | ... | |
71 | 72 |
dodoc files/HOWTO.html files/docbook-xsl.css |
72 | 73 |
fi |
73 | 74 |
} |
75 | ||
76 |
src_install() { |
|
77 |
distutils-r1_src_install |
|
78 | ||
79 |
doman files/catalyst.1 files/catalyst-config.5 files/catalyst-spec.5 |
|
80 |
insinto /etc/catalyst |
|
81 |
doins etc/* |
|
82 |
} |