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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8C96415808B for ; Mon, 9 Sep 2024 18:08:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95523E2A04; Mon, 9 Sep 2024 18:08:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7BEEFE2A04 for ; Mon, 9 Sep 2024 18:08:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8BA00342F8D for ; Mon, 9 Sep 2024 18:08:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 208D714D0 for ; Mon, 9 Sep 2024 18:08:35 +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: <1725905078.e5569b2dbd97ee804ee37ec17c74ae64ec8826b6.ulm@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/eapi.py X-VCS-Directories: lib/portage/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e5569b2dbd97ee804ee37ec17c74ae64ec8826b6 X-VCS-Branch: master Date: Mon, 9 Sep 2024 18:08:35 +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: 29c539ef-7079-4783-a1c5-0fcab9c3fc44 X-Archives-Hash: 1da6be1cc511af28300c79c0893873b1 commit: e5569b2dbd97ee804ee37ec17c74ae64ec8826b6 Author: Ulrich Müller gentoo org> AuthorDate: Thu Jun 20 06:01:36 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Sep 9 18:04:38 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e5569b2d eapi.py: Sort _eapi_attrs alphabetically Signed-off-by: Ulrich Müller gentoo.org> lib/portage/eapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/portage/eapi.py b/lib/portage/eapi.py index 2c17018709..ee691d311d 100644 --- a/lib/portage/eapi.py +++ b/lib/portage/eapi.py @@ -150,6 +150,7 @@ _eapi_attrs = collections.namedtuple( "allows_package_provided", "bdepend", "broot", + "empty_groups_always_true", "exports_AA", "exports_EBUILD_PHASE_FUNC", "exports_ECLASSDIR", @@ -172,10 +173,9 @@ _eapi_attrs = collections.namedtuple( "slot_deps", "src_uri_arrows", "strong_blocks", + "sysroot", "use_deps", "use_dep_defaults", - "empty_groups_always_true", - "sysroot", ), )