Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/catalyst/
Date: Thu, 08 Oct 2020 21:06:22
Message-Id: 1602191167.25c135ab978c7af867351141b73f5a65e49b8aba.mattst88@gentoo
1 commit: 25c135ab978c7af867351141b73f5a65e49b8aba
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 8 20:48:43 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 21:06:07 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25c135ab
7
8 dev-util/catalyst: Drop IUSE=ccache
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 dev-util/catalyst/catalyst-9999.ebuild | 9 ++++++---
13 1 file changed, 6 insertions(+), 3 deletions(-)
14
15 diff --git a/dev-util/catalyst/catalyst-9999.ebuild b/dev-util/catalyst/catalyst-9999.ebuild
16 index 3e307e5f833..2d78bcbe611 100644
17 --- a/dev-util/catalyst/catalyst-9999.ebuild
18 +++ b/dev-util/catalyst/catalyst-9999.ebuild
19 @@ -15,14 +15,14 @@ fi
20 PYTHON_COMPAT=( python3_{7,8} )
21 DISTUTILS_USE_SETUPTOOLS=no
22
23 -inherit distutils-r1 ${SRC_ECLASS}
24 +inherit distutils-r1 optfeature ${SRC_ECLASS}
25
26 DESCRIPTION="Release metatool used for creating releases based on Gentoo Linux"
27 HOMEPAGE="https://wiki.gentoo.org/wiki/Catalyst"
28
29 LICENSE="GPL-2"
30 SLOT="0"
31 -IUSE="ccache doc +iso kernel_linux system-bootloader"
32 +IUSE="doc +iso kernel_linux system-bootloader"
33
34 COMMON_DEPEND="
35 sys-apps/portage[${PYTHON_USEDEP}]
36 @@ -42,7 +42,6 @@ RDEPEND="
37 dev-vcs/git
38 sys-fs/dosfstools
39 sys-fs/squashfs-tools-ng
40 - ccache? ( dev-util/ccache )
41
42 iso? (
43 virtual/cdrtools
44 @@ -96,3 +95,7 @@ python_install_all() {
45 dodoc files/HOWTO.html files/docbook-xsl.css
46 fi
47 }
48 +
49 +pkg_postinst() {
50 + optfeature "ccache support" "dev-util/ccache"
51 +}