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 BBB42138334 for ; Sun, 18 Aug 2019 08:16:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07464E0858; Sun, 18 Aug 2019 08:16:07 +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 DEAE8E0858 for ; Sun, 18 Aug 2019 08:16:06 +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 ECE0E349D9A for ; Sun, 18 Aug 2019 08:16:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A06826FE for ; Sun, 18 Aug 2019 08:16:04 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1566116149.d67c6fe38d4072006533c6890b7de61ca0faa228.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/ssl-cert.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d67c6fe38d4072006533c6890b7de61ca0faa228 X-VCS-Branch: master Date: Sun, 18 Aug 2019 08:16:04 +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: d7c6044f-eda8-4ad0-8b37-1f05efcf46bd X-Archives-Hash: 09d0113264b8fa16bb5efbe666126aa4 commit: d67c6fe38d4072006533c6890b7de61ca0faa228 Author: Michael Palimaka gentoo org> AuthorDate: Wed Aug 7 09:28:57 2019 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Aug 18 08:15:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d67c6fe3 ssl-cert.eclass: allow EAPI=7 Signed-off-by: Michael Palimaka gentoo.org> eclass/ssl-cert.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/ssl-cert.eclass b/eclass/ssl-cert.eclass index b5b4250ef22..01783b75848 100644 --- a/eclass/ssl-cert.eclass +++ b/eclass/ssl-cert.eclass @@ -18,7 +18,7 @@ case "${EAPI:-0}" in 0) die "${ECLASS}.eclass: EAPI=0 is not supported. Please upgrade to EAPI >= 1." ;; - 1|2|3|4|5|6) + 1|2|3|4|5|6|7) ;; *) die "${ECLASS}.eclass: EAPI=${EAPI} is not supported yet."