aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2024-06-20 08:01:36 +0200
committerUlrich Müller <ulm@gentoo.org>2024-09-09 20:04:38 +0200
commite5569b2dbd97ee804ee37ec17c74ae64ec8826b6 (patch)
treea6f5906d61bd6e972be879b1cdd0a360fd44fc8c /lib
parentasyncio: Avoid _wrap_loop prior to create_subprocess_exec (diff)
downloadportage-e5569b2dbd97ee804ee37ec17c74ae64ec8826b6.tar.gz
portage-e5569b2dbd97ee804ee37ec17c74ae64ec8826b6.tar.bz2
portage-e5569b2dbd97ee804ee37ec17c74ae64ec8826b6.zip
eapi.py: Sort _eapi_attrs alphabetically
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/portage/eapi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/portage/eapi.py b/lib/portage/eapi.py
index 2c1701870..ee691d311 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",
),
)