From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-dev+bounces-95308-garchives=archives.gentoo.org@lists.gentoo.org> 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 18C37158F59 for <garchives@archives.gentoo.org>; Mon, 16 Aug 2021 20:48:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3FB8E0F2A; Mon, 16 Aug 2021 16:47:25 +0000 (UTC) Received: from mail-ed1-f54.google.com (mail-ed1-f54.google.com [209.85.208.54]) (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 BC48FE0F1E for <gentoo-dev@lists.gentoo.org>; Mon, 16 Aug 2021 16:47:24 +0000 (UTC) Received: by mail-ed1-f54.google.com with SMTP id i22so8669635edq.11 for <gentoo-dev@lists.gentoo.org>; Mon, 16 Aug 2021 09:47:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=hG2xeGVisU0V+z7HkK93cvKh2aNo2ow/I8r85LLTMvw=; b=CvccDm/V2bvnMgjwhaQdNNGYMy/G2OYvjRoNpSNfVIv9mZbVip1OVlm102wYnblNjy /fxgDW41DbLtIL3csq/Eev8DDeYGVsbPFHsq8UoSfEt2nHMGdhxSeGl5rwKkOP1w+VfK I4aZHZK1enc7YNGidZA/n8J5b7v43rMY3apGZY7pQtgqrSCuIcUgAdWlg1Mm8gl1dSaq XJqFCprEAuyejjmSWvelTTcvK+9qUzpWiUeBG4E79vQ0LvNekQS25/fEjn1g3k47JlnO 0NnhJeK4BYLGqTQI1kdaqTbjy4sBLLnap2SAOfk1MWjRlTSfKwr0jRgf/9tNfirXgo+M UnEA== X-Gm-Message-State: AOAM531uWsaaYwJur1FvnVVphSI/50/0LMW+i81PPMF7Z7lub111XWtJ X/ue/J4xAt9O+/nCnOjdD5U= X-Google-Smtp-Source: ABdhPJz0TyvO2fkUjUjdMswKJMcmRTywvWfn7gO8Sufk5mdziAU9CiQRdoXv8eaoVw3OTaPXXfHK7g== X-Received: by 2002:a05:6402:1157:: with SMTP id g23mr11365895edw.90.1629132443720; Mon, 16 Aug 2021 09:47:23 -0700 (PDT) Received: from ?IPv6:2003:e7:c74b:9a00:76d0:2bff:fe9d:5e43? (p200300e7c74b9a0076d02bfffe9d5e43.dip0.t-ipconnect.de. [2003:e7:c74b:9a00:76d0:2bff:fe9d:5e43]) by smtp.gmail.com with ESMTPSA id m25sm5089042edv.81.2021.08.16.09.47.23 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 16 Aug 2021 09:47:23 -0700 (PDT) Subject: Re: [gentoo-dev] [PATCH 3/3] chromium-2.eclass: enable EAPI 8 To: Ulrich Mueller <ulm@gentoo.org> Cc: gentoo-dev@lists.gentoo.org, chromium@gentoo.org References: <20210811152804.28320-1-sultan@gentoo.org> <20210811152804.28320-4-sultan@gentoo.org> <uv94anca9@gentoo.org> From: Stephan Hartmann <sultan@gentoo.org> Message-ID: <06a96b8d-c1a2-b2b5-f09c-43ea4216aadc@googlemail.com> Date: Mon, 16 Aug 2021 18:47:22 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 Precedence: bulk List-Post: <mailto:gentoo-dev@lists.gentoo.org> List-Help: <mailto:gentoo-dev+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-dev+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-dev+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-dev.gentoo.org> 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 In-Reply-To: <uv94anca9@gentoo.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Archives-Salt: 52d9de77-06a0-41c6-a256-0daa31708307 X-Archives-Hash: 3383aa09ef006a7e838145c687d8a97c On 8/12/21 1:16 PM, Ulrich Mueller wrote: > >> case ${EAPI} in >> - 7) ;; >> + 7|8) ;; >> *) die "EAPI=${EAPI:-0} is not supported" ;; > > Nitpick: Add "${ECLASS}: " at the beginning of the die message. Thanks. Fixed locally. > >> esac