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 9F899138334 for ; Fri, 8 Jun 2018 07:09:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 50B57E0BB1; Fri, 8 Jun 2018 07:09:38 +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 2AB04E0BB1 for ; Fri, 8 Jun 2018 07:09:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8D00B335CBF for ; Fri, 8 Jun 2018 07:09:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 138D729E for ; Fri, 8 Jun 2018 07:09:33 +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: <1528441708.7f72da569334e2e7c0af86eb7362ca54c0d2ff48.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/readme.gentoo-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7f72da569334e2e7c0af86eb7362ca54c0d2ff48 X-VCS-Branch: master Date: Fri, 8 Jun 2018 07:09:33 +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-Archives-Salt: 9f69c20b-dbe2-44d9-9cf4-5125b51400c8 X-Archives-Hash: 51d53234eb08cc375ff6f5b2a3adc37f commit: 7f72da569334e2e7c0af86eb7362ca54c0d2ff48 Author: Ulrich Müller gentoo org> AuthorDate: Sun Jun 3 06:52:16 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Fri Jun 8 07:08:28 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f72da56 readme.gentoo-r1.eclass: Support EAPI 7. No changes appear to be necessary, other than updating the case statement. eclass/readme.gentoo-r1.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/readme.gentoo-r1.eclass b/eclass/readme.gentoo-r1.eclass index a9f91cb10e3..78cbead639d 100644 --- a/eclass/readme.gentoo-r1.eclass +++ b/eclass/readme.gentoo-r1.eclass @@ -23,7 +23,7 @@ case "${EAPI:-0}" in 0|1|2|3) die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" ;; - 4|5|6) + 4|5|6|7) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}"