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 1D89713933E for ; Fri, 2 Jul 2021 17:37:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 903DBE08F4; Fri, 2 Jul 2021 17:37:09 +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 C9701E08F0 for ; Fri, 2 Jul 2021 17:37:08 +0000 (UTC) Received: (nullmailer pid 15656 invoked by uid 1000); Fri, 02 Jul 2021 17:37:02 -0000 From: William Hubbs To: gentoo-dev@lists.gentoo.org Cc: William Hubbs Subject: [gentoo-dev] [PATCH 1/3] lua-single.eclass: clean up the eapi test Date: Fri, 2 Jul 2021 12:36:30 -0500 Message-Id: <20210702173632.15603-2-williamh@gentoo.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210702173632.15603-1-williamh@gentoo.org> References: <20210702173632.15603-1-williamh@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 X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: bac43d5f-595d-4997-93fb-5a32a0147b26 X-Archives-Hash: 7dbf7d35f41b9b2003c0423c6e6c99b5 Signed-off-by: William Hubbs --- eclass/lua-single.eclass | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eclass/lua-single.eclass b/eclass/lua-single.eclass index 7abe1eb6674..3d7ef974bef 100644 --- a/eclass/lua-single.eclass +++ b/eclass/lua-single.eclass @@ -63,13 +63,10 @@ # @CODE case ${EAPI:-0} in - 0|1|2|3|4|5|6) - die "Unsupported EAPI=${EAPI} (too old) for ${ECLASS}" - ;; 7|8) ;; *) - die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" + die "Unsupported EAPI=${EAPI} for ${ECLASS}" ;; esac -- 2.31.1