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 A3E601382C5 for ; Sat, 6 Mar 2021 09:18:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB3B1E07FA; Sat, 6 Mar 2021 09:18:55 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D10E9E07FA for ; Sat, 6 Mar 2021 09:18:55 +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 CCBD4340D06 for ; Sat, 6 Mar 2021 09:18:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7A78353 for ; Sat, 6 Mar 2021 09:18: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: <1615022272.67cf9c2b05042de37f36f5b6840c450128a065bd.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/__init__.py X-VCS-Directories: lib/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 67cf9c2b05042de37f36f5b6840c450128a065bd X-VCS-Branch: master Date: Sat, 6 Mar 2021 09:18: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: 5f65b9cd-2480-4e10-afcc-c126c57e0c2b X-Archives-Hash: 727afd03f30be38ea88a86e362865938 commit: 67cf9c2b05042de37f36f5b6840c450128a065bd Author: Matt Turner gentoo org> AuthorDate: Thu Mar 4 19:35:17 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Mar 6 09:17:52 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=67cf9c2b Mark EAPIs "4-python" and "5-progress" as deprecated Signed-off-by: Matt Turner gentoo.org> Signed-off-by: Zac Medico gentoo.org> lib/portage/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/portage/__init__.py b/lib/portage/__init__.py index d33792a77..1d202f557 100644 --- a/lib/portage/__init__.py +++ b/lib/portage/__init__.py @@ -465,16 +465,16 @@ def abssymlink(symlink, target=None): _doebuild_manifest_exempt_depend = 0 _testing_eapis = frozenset([ - "4-python", - "5-progress", ]) _deprecated_eapis = frozenset([ + "3_pre1", + "3_pre2", "4_pre1", + "4-python", "4-slot-abi", - "3_pre2", - "3_pre1", "5_pre1", "5_pre2", + "5-progress", "6_pre1", "7_pre1", ])