From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 23E721384B4 for ; Sat, 2 Jan 2016 10:41:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40EA221C01B; Sat, 2 Jan 2016 10:41:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 82E6721C01F for ; Sat, 2 Jan 2016 10:41:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C8FFC340666 for ; Sat, 2 Jan 2016 10:41:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 70CDACFE for ; Sat, 2 Jan 2016 10:41:33 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1451731286.108d345c6fdd60f0f561b3ad144e269626cf26d8.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/check-reqs.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 108d345c6fdd60f0f561b3ad144e269626cf26d8 X-VCS-Branch: master Date: Sat, 2 Jan 2016 10:41: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: 3e66e2a3-5dee-4de7-a178-8389790702d7 X-Archives-Hash: fa2dd8826c35ab7f8efe94a0d78fc2c4 commit: 108d345c6fdd60f0f561b3ad144e269626cf26d8 Author: Justin Lecher gentoo org> AuthorDate: Sun Dec 27 09:36:22 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Jan 2 10:41:26 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=108d345c check-reqs.eclass: Enable EAPI 6 support Signed-off-by: Justin Lecher gentoo.org> eclass/check-reqs.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/check-reqs.eclass b/eclass/check-reqs.eclass index 793a730..c004be7 100644 --- a/eclass/check-reqs.eclass +++ b/eclass/check-reqs.eclass @@ -65,7 +65,7 @@ inherit eutils EXPORT_FUNCTIONS pkg_setup case "${EAPI:-0}" in 0|1|2|3) ;; - 4|5) EXPORT_FUNCTIONS pkg_pretend ;; + 4|5|6) EXPORT_FUNCTIONS pkg_pretend ;; *) die "EAPI=${EAPI} is not supported" ;; esac