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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 344D215800A for ; Sun, 16 Jul 2023 13:41:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07BBBE089F; Sun, 16 Jul 2023 13:40:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BDC71E0877 for ; Sun, 16 Jul 2023 13:40:57 +0000 (UTC) From: Ulrich Mueller To: Maciej =?utf-8?Q?Bar=C4=87?= Cc: gentoo-dev@lists.gentoo.org Subject: Re: [gentoo-dev] [PATCH 1/7] eclass/nuget.eclass: introduce new eclass In-Reply-To: <20230716123830.78932-1-xgqt@gentoo.org> ("Maciej =?utf-8?Q?B?= =?utf-8?Q?ar=C4=87=22's?= message of "Sun, 16 Jul 2023 14:38:03 +0200") References: <20230716123830.78932-1-xgqt@gentoo.org> Date: Sun, 16 Jul 2023 15:40:51 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.3 (gnu/linux) 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-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Archives-Salt: 820671a2-8dfa-48e8-a5b3-3d5122296cac X-Archives-Hash: abf3912123c01ac419469da38cf85add --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable >>>>> On Sun, 16 Jul 2023, Maciej Bar=C4=87 wrote: > +case "${EAPI}" in > + 7 | 8 ) > + : > + ;; > + * ) > + die "${ECLASS}: EAPI ${EAPI} unsupported." > + ;; > +esac The QA team has invested quite some work to unify that case block between different eclasses. So, please stay with the standard style: case ${EAPI} in 7|8) ;; *) die "${ECLASS}: EAPI ${EAPI:-0} not supported" ;; esac --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQFDBAEBCAAtFiEEtDnZ1O9xIP68rzDbUYgzUIhBXi4FAmSz82MPHHVsbUBnZW50 b28ub3JnAAoJEFGIM1CIQV4u2C8IAJnANTVevY2KjFejT21O6vdnGb/JTC/5wbck Z4z4nCgR3ElyGJqE5RhE3IqN9EGD3p8aN82XUAYW4EhMzE0ogtxJ97Rr/wgcOFfW FVfnHkGldNRmpMgu9i3WfMNfZfa7J3xvg8TiQOEqsvYYAsjNLyYSMHF2YtGVyl3X zwd4K6ii94l6oDjMo9ctJGRT4K/iDi9SR15yaXQpRqY/voUxxEusA1hvZXHxmSgh Avu1n0paYth0aWrrklUEXh4Edxtp60zaKB6F8re87wfaRlUBSAuQTtJ6lieskCbr 15SlHvv5I2TiEiOSZXHB3vM3H24jx6oATpeHFMEj+a24bb8Hqko= =XBF0 -----END PGP SIGNATURE----- --=-=-=--