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:23
Message-Id: 1602191168.6ee833c002816350b75e1990f248e22829188a54.mattst88@gentoo
1 commit: 6ee833c002816350b75e1990f248e22829188a54
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 8 20:56:43 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 8 21:06:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ee833c0
7
8 dev-util/catalyst: Remove IUSE=system-bootloader
9
10 I'm honestly not sure what the idea was here. The system's grub has
11 always been needed for producing ISOs on amd64/x86 and catalyst doesn't
12 produce anything else that uses grub. Just fold this into IUSE=iso.
13
14 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
15
16 dev-util/catalyst/catalyst-9999.ebuild | 14 ++++++--------
17 1 file changed, 6 insertions(+), 8 deletions(-)
18
19 diff --git a/dev-util/catalyst/catalyst-9999.ebuild b/dev-util/catalyst/catalyst-9999.ebuild
20 index 0091eacf302..a8df688e16a 100644
21 --- a/dev-util/catalyst/catalyst-9999.ebuild
22 +++ b/dev-util/catalyst/catalyst-9999.ebuild
23 @@ -45,6 +45,9 @@ RDEPEND="
24 iso? (
25 virtual/cdrtools
26
27 + amd64? (
28 + sys-boot/grub[grub_platforms_efi-32,grub_platforms_efi-64]
29 + )
30 alpha? (
31 dev-libs/libisoburn
32 )
33 @@ -65,14 +68,9 @@ RDEPEND="
34 dev-libs/libisoburn
35 sys-boot/grub:2[grub_platforms_ieee1275]
36 )
37 - )
38 -"
39 -PDEPEND="
40 - system-bootloader? (
41 - sys-boot/grub:2
42 -
43 - amd64? ( sys-boot/grub[grub_platforms_efi-32,grub_platforms_efi-64] )
44 - x86? ( sys-boot/grub[grub_platforms_efi-32] )
45 + x86? (
46 + sys-boot/grub[grub_platforms_efi-32]
47 + )
48 )
49 "