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 89D5C1382C5 for ; Mon, 24 May 2021 06:08:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D56A1E081A; Mon, 24 May 2021 06:08:57 +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 2DF47E081A for ; Mon, 24 May 2021 06:08:56 +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 DC0E7340845 for ; Mon, 24 May 2021 06:08:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9336A78E for ; Mon, 24 May 2021 06:08:53 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1621836500.990e8e2c31b8fbd8c3ff0bdf90fcabf2f473bf73.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/const.py X-VCS-Directories: lib/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 990e8e2c31b8fbd8c3ff0bdf90fcabf2f473bf73 X-VCS-Branch: master Date: Mon, 24 May 2021 06:08:53 +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: 7a8c478f-efbe-4d28-b2fd-b838dbfa5869 X-Archives-Hash: 9ebc1a3f39250a76ffd6f006fe93f8f9 commit: 990e8e2c31b8fbd8c3ff0bdf90fcabf2f473bf73 Author: Michał Górny gentoo org> AuthorDate: Mon May 17 19:55:12 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon May 24 06:08:20 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=990e8e2c Enable EAPI 8 Closes: https://github.com/gentoo/portage/pull/718 Signed-off-by: Michał Górny gentoo.org> Signed-off-by: Zac Medico gentoo.org> lib/portage/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/portage/const.py b/lib/portage/const.py index 76fea8293..896771e14 100644 --- a/lib/portage/const.py +++ b/lib/portage/const.py @@ -210,7 +210,7 @@ SUPPORTED_FEATURES = frozenset([ "xattr", ]) -EAPI = 7 +EAPI = 8 HASHING_BLOCKSIZE = 32768