Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/
Date: Thu, 22 Apr 2021 19:50:35
Message-Id: 1619120944.c7bc3f0d07449fe4f86c9065cf9ffa5f2644a02d.floppym@gentoo
1 commit: c7bc3f0d07449fe4f86c9065cf9ffa5f2644a02d
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 22 19:49:04 2021 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 22 19:49:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7bc3f0d
7
8 sys-boot/grub: move eclass vars before first inherit
9
10 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
11
12 sys-boot/grub/grub-9999.ebuild | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild
16 index 4f50f14c6ff..8046d169817 100644
17 --- a/sys-boot/grub/grub-9999.ebuild
18 +++ b/sys-boot/grub/grub-9999.ebuild
19 @@ -8,13 +8,14 @@ if [[ ${PV} == 9999 ]]; then
20 GRUB_BOOTSTRAP=1
21 fi
22
23 +PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} )
24 +WANT_LIBTOOL=none
25 +
26 if [[ -n ${GRUB_AUTOGEN} || -n ${GRUB_BOOTSTRAP} ]]; then
27 - PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} )
28 inherit python-any-r1
29 fi
30
31 if [[ -n ${GRUB_AUTORECONF} ]]; then
32 - WANT_LIBTOOL=none
33 inherit autotools
34 fi