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 0EFFD138334 for ; Fri, 21 Sep 2018 16:08:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A53DE077A; Fri, 21 Sep 2018 16:08:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 4C1FCE06CC for ; Fri, 21 Sep 2018 16:08:00 +0000 (UTC) Received: from localhost (unknown [IPv6:2404:e800:e600:402:a043:dee9:8fe1:5766]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: perfinion) by smtp.gentoo.org (Postfix) with ESMTPSA id 52223335CC8 for ; Fri, 21 Sep 2018 16:07:58 +0000 (UTC) Date: Sat, 22 Sep 2018 00:07:54 +0800 From: Jason Zaman To: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [PATCH 1/3] check-reqs.eclass: update to EAPI7 Message-ID: <20180921160754.GA56214@baraddur.perfinion.com> References: <20180918063817.19338-1-perfinion@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20180918063817.19338-1-perfinion@gentoo.org> User-Agent: Mutt/1.10.1 (2018-07-13) X-Archives-Salt: 0016fde4-736e-451b-b3b1-3f64affb7a37 X-Archives-Hash: b1408a8e4a6b8ef1c412d8a1b11c43af All three of these patches are now in the tree :) -- Jason On Tue, Sep 18, 2018 at 02:38:15PM +0800, Jason Zaman wrote: > Signed-off-by: Jason Zaman > --- > eclass/check-reqs.eclass | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass > index d1ed395c8b1..689944c8770 100644 > --- a/eclass/check-reqs.eclass > +++ b/eclass/check-reqs.eclass > @@ -7,7 +7,7 @@ > # @AUTHOR: > # Bo Ørsted Andresen > # Original Author: Ciaran McCreesh > -# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 > +# @SUPPORTED_EAPIS: 0 1 2 3 4 5 6 7 > # @BLURB: Provides a uniform way of handling ebuild which have very high build requirements > # @DESCRIPTION: > # This eclass provides a uniform way of handling ebuilds which have very high > @@ -63,7 +63,7 @@ if [[ ! ${_CHECK_REQS_ECLASS_} ]]; then > EXPORT_FUNCTIONS pkg_setup > case "${EAPI:-0}" in > 0|1|2|3) ;; > - 4|5|6) EXPORT_FUNCTIONS pkg_pretend ;; > + 4|5|6|7) EXPORT_FUNCTIONS pkg_pretend ;; > *) die "EAPI=${EAPI} is not supported" ;; > esac > > -- > 2.16.4 > >