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 8EBDA139336 for ; Sat, 26 Jun 2021 17:11:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C833E087B; Sat, 26 Jun 2021 17:11:16 +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 43330E087B for ; Sat, 26 Jun 2021 17:11:16 +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 9F95C335CD4 for ; Sat, 26 Jun 2021 17:11:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3ACAF7B8 for ; Sat, 26 Jun 2021 17:11:13 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1624727159.d929f33a2b6d44a1a94685ec81eef2a6ccc4b7c8.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/l10n.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: d929f33a2b6d44a1a94685ec81eef2a6ccc4b7c8 X-VCS-Branch: master Date: Sat, 26 Jun 2021 17:11:13 +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: bc0527f9-4724-4887-bc58-82345c7a9170 X-Archives-Hash: 9ac0b891a46587c58330d9fa6b5608bb commit: d929f33a2b6d44a1a94685ec81eef2a6ccc4b7c8 Author: Ulrich Müller gentoo org> AuthorDate: Fri Jun 25 06:52:08 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Jun 26 17:05:59 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d929f33a l10n.eclass: Minor touchup of EAPI conditional Signed-off-by: Ulrich Müller gentoo.org> eclass/l10n.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/l10n.eclass b/eclass/l10n.eclass index 5cf3931b7bf..a9d7d2f76be 100644 --- a/eclass/l10n.eclass +++ b/eclass/l10n.eclass @@ -15,8 +15,8 @@ # determining the cross-section between the user's set LINGUAS and what # is offered by the package. -case ${EAPI:-0} in - [567]) ;; +case ${EAPI} in + 5|6|7) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac