From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE9F61382C5 for ; Thu, 22 Apr 2021 19:50:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E802E088C; Thu, 22 Apr 2021 19:50:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 20E65E088C for ; Thu, 22 Apr 2021 19:50:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 722A1341269 for ; Thu, 22 Apr 2021 19:50:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CF804647 for ; Thu, 22 Apr 2021 19:50:30 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1619120944.c7bc3f0d07449fe4f86c9065cf9ffa5f2644a02d.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/grub/grub-9999.ebuild X-VCS-Directories: sys-boot/grub/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: c7bc3f0d07449fe4f86c9065cf9ffa5f2644a02d X-VCS-Branch: master Date: Thu, 22 Apr 2021 19:50:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 28544c90-47d1-4edd-b81d-e01f9193824d X-Archives-Hash: b74253904acb568ec822478056b53dec commit: c7bc3f0d07449fe4f86c9065cf9ffa5f2644a02d Author: Mike Gilbert gentoo org> AuthorDate: Thu Apr 22 19:49:04 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Thu Apr 22 19:49:04 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7bc3f0d sys-boot/grub: move eclass vars before first inherit Signed-off-by: Mike Gilbert gentoo.org> sys-boot/grub/grub-9999.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild index 4f50f14c6ff..8046d169817 100644 --- a/sys-boot/grub/grub-9999.ebuild +++ b/sys-boot/grub/grub-9999.ebuild @@ -8,13 +8,14 @@ if [[ ${PV} == 9999 ]]; then GRUB_BOOTSTRAP=1 fi +PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} ) +WANT_LIBTOOL=none + if [[ -n ${GRUB_AUTOGEN} || -n ${GRUB_BOOTSTRAP} ]]; then - PYTHON_COMPAT=( python{2_7,3_{6,7,8,9}} ) inherit python-any-r1 fi if [[ -n ${GRUB_AUTORECONF} ]]; then - WANT_LIBTOOL=none inherit autotools fi