Сравнение git-cola-4.2.1 с git-cola-4.3.1
/usr/portage/dev-vcs/git-cola/git-cola-4.3.1.ebuild 2023-10-09 14:52:31.016368389 +0300 | ||
---|---|---|
3 | 3 | |
4 | 4 |
EAPI=8 |
5 | 5 | |
6 |
PYTHON_COMPAT=( python3_{9..11} ) |
|
6 |
PYTHON_COMPAT=( python3_{10..11} ) |
|
7 | 7 |
DISTUTILS_SINGLE_IMPL=true |
8 | 8 |
DISTUTILS_USE_PEP517=setuptools |
9 |
inherit distutils-r1 readme.gentoo-r1 virtualx xdg-utils |
|
9 |
inherit distutils-r1 readme.gentoo-r1 virtualx xdg |
|
10 | 10 | |
11 | 11 |
DESCRIPTION="The highly caffeinated git GUI" |
12 | 12 |
HOMEPAGE="https://git-cola.github.io/" |
... | ... | |
14 | 14 | |
15 | 15 |
LICENSE="GPL-2" |
16 | 16 |
SLOT="0" |
17 |
KEYWORDS="amd64 x86" |
|
18 |
IUSE="test" |
|
19 | ||
20 |
RESTRICT="!test? ( test )" |
|
17 |
KEYWORDS="~amd64 ~x86" |
|
21 | 18 | |
22 | 19 |
RDEPEND=" |
23 | 20 |
$(python_gen_cond_dep ' |
... | ... | |
45 | 42 | |
46 | 43 |
src_prepare() { |
47 | 44 |
sed -i "s|doc/git-cola =|doc/${PF} =|" setup.cfg || die |
45 |
# https://github.com/git-cola/git-cola/pull/1336 |
|
46 |
sed -E -i 's|root \+ os.sep|str\(root\)|' extras/sphinxtogithub/sphinxtogithub.py || die |
|
48 | 47 |
distutils-r1_src_prepare |
49 | 48 |
} |
50 | 49 | |
... | ... | |
66 | 65 |
distutils-r1_src_install |
67 | 66 |
readme.gentoo_create_doc |
68 | 67 |
} |
69 | ||
70 |
pkg_postinst() { |
|
71 |
xdg_desktop_database_update |
|
72 |
} |
|
73 | ||
74 |
pkg_postrm() { |
|
75 |
xdg_desktop_database_update |
|
76 |
} |